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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0828f13f11fd41cfb4e77979d5f83e5d8fa46669 | 1893667a55bd570d28ccba6fea81a86cd0c69d73 | /WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.h | 1b880e6694de88af452033d3a2218628d2dbadc6 | [
"BSD-2-Clause"
] | permissive | pelegri/WebKit-PlayBook | 0abf47b5a48f58cc1d84f66ffa83b87fec547b0d | e52f66977fbc1f6a1a259feb0ff97bd68b2299b7 | refs/heads/master | 2021-01-17T23:07:26.330729 | 2012-01-16T23:35:57 | 2012-01-20T02:30:04 | 3,226,843 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,369 | h | /*
* Copyright (C) 2006 Zack Rusin <zack@kde.org>
* Copyright (C) 2006 Apple Computer, Inc. All rights reserved.
* Copyright (C) 2008 Collabora Ltd. All rights reserved.
* Copyright (C) 2008 INdT - Instituto Nokia de Tecnologia
* Copyright (C) 2009-2010 ProFUSION embedded systems
* Copyright (C) 2009-2010 Samsung Electronics
*
* 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.
*
* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef FrameLoaderClientEfl_h
#define FrameLoaderClientEfl_h
#include "EWebKit.h"
#include "FrameLoaderClient.h"
#include "PluginView.h"
#include "ResourceResponse.h"
namespace WebCore {
class FormState;
class FrameLoaderClientEfl : public FrameLoaderClient {
public:
explicit FrameLoaderClientEfl(Evas_Object *view);
virtual ~FrameLoaderClientEfl() { }
virtual void frameLoaderDestroyed();
void setWebFrame(Evas_Object *frame) { m_frame = frame; }
Evas_Object* webFrame() const { return m_frame; }
Evas_Object* webView() const { return m_view; }
void setCustomUserAgent(const String &agent);
const String& customUserAgent() const;
virtual bool hasWebView() const;
virtual bool hasFrameView() const;
void callPolicyFunction(FramePolicyFunction function, PolicyAction action);
virtual void makeRepresentation(DocumentLoader*);
virtual void forceLayout();
virtual void forceLayoutForNonHTML();
virtual void setCopiesOnScroll();
virtual void detachedFromParent2();
virtual void detachedFromParent3();
virtual void loadedFromCachedPage();
virtual void assignIdentifierToInitialRequest(unsigned long identifier, DocumentLoader*, const ResourceRequest&);
virtual void dispatchWillSendRequest(DocumentLoader*, unsigned long identifier, ResourceRequest&, const ResourceResponse& redirectResponse);
virtual bool shouldUseCredentialStorage(DocumentLoader*, unsigned long identifier);
virtual void dispatchDidReceiveAuthenticationChallenge(DocumentLoader*, unsigned long identifier, const AuthenticationChallenge&);
virtual void dispatchDidPushStateWithinPage();
virtual void dispatchDidPopStateWithinPage();
virtual void dispatchDidReplaceStateWithinPage();
virtual void dispatchDidAddBackForwardItem(WebCore::HistoryItem*) const;
virtual void dispatchDidRemoveBackForwardItem(WebCore::HistoryItem*) const;
virtual void dispatchDidChangeBackForwardIndex() const;
virtual void dispatchDidClearWindowObjectInWorld(WebCore::DOMWrapperWorld*);
virtual void dispatchDidCancelAuthenticationChallenge(DocumentLoader*, unsigned long identifier, const AuthenticationChallenge&);
virtual void dispatchDidReceiveResponse(DocumentLoader*, unsigned long identifier, const ResourceResponse&);
virtual void dispatchDidReceiveContentLength(DocumentLoader*, unsigned long identifier, int lengthReceived);
virtual void dispatchDidFinishLoading(DocumentLoader*, unsigned long identifier);
virtual void dispatchDidFailLoading(DocumentLoader*, unsigned long identifier, const ResourceError&);
virtual bool dispatchDidLoadResourceFromMemoryCache(DocumentLoader*, const ResourceRequest&, const ResourceResponse&, int length);
virtual void dispatchDidLoadResourceByXMLHttpRequest(unsigned long identifier, const String& sourceString);
virtual void dispatchDidHandleOnloadEvents();
virtual void dispatchDidReceiveServerRedirectForProvisionalLoad();
virtual void dispatchDidCancelClientRedirect();
virtual void dispatchWillPerformClientRedirect(const KURL&, double, double);
virtual void dispatchDidChangeLocationWithinPage();
virtual void dispatchWillClose();
virtual void dispatchDidReceiveIcon();
virtual void dispatchDidStartProvisionalLoad();
virtual void dispatchDidReceiveTitle(const String&);
virtual void dispatchDidChangeIcons();
virtual void dispatchDidCommitLoad();
virtual void dispatchDidFailProvisionalLoad(const ResourceError&);
virtual void dispatchDidFailLoad(const ResourceError&);
virtual void dispatchDidFinishDocumentLoad();
virtual void dispatchDidFinishLoad();
virtual void dispatchDidFirstLayout();
virtual void dispatchDidFirstVisuallyNonEmptyLayout();
virtual Frame* dispatchCreatePage();
virtual void dispatchShow();
virtual void dispatchDecidePolicyForMIMEType(FramePolicyFunction, const String& MIMEType, const ResourceRequest&);
virtual void dispatchDecidePolicyForNewWindowAction(FramePolicyFunction, const NavigationAction&, const ResourceRequest&, WTF::PassRefPtr<FormState>, const String& frameName);
virtual void dispatchDecidePolicyForNavigationAction(FramePolicyFunction, const NavigationAction&, const ResourceRequest&, WTF::PassRefPtr<FormState>);
virtual void cancelPolicyCheck();
virtual void dispatchUnableToImplementPolicy(const ResourceError&);
virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) { }
virtual void dispatchWillSubmitForm(FramePolicyFunction, WTF::PassRefPtr<FormState>);
virtual void dispatchDidLoadMainResource(DocumentLoader*);
virtual void revertToProvisionalState(DocumentLoader*);
virtual void setMainDocumentError(DocumentLoader*, const ResourceError&);
virtual void postProgressStartedNotification();
virtual void postProgressEstimateChangedNotification();
virtual void postProgressFinishedNotification();
virtual PassRefPtr<Frame> createFrame(const KURL& url, const String& name, HTMLFrameOwnerElement* ownerElement,
const String& referrer, bool allowsScrolling, int marginWidth, int marginHeight);
virtual void didTransferChildFrameToNewDocument(Page*);
virtual PassRefPtr<Widget> createPlugin(const IntSize&, HTMLPlugInElement*, const KURL&, const WTF::Vector<String>&, const WTF::Vector<String>&, const String&, bool);
virtual void redirectDataToPlugin(Widget* pluginWidget);
virtual PassRefPtr<Widget> createJavaAppletWidget(const IntSize&, HTMLAppletElement*, const KURL& baseURL, const WTF::Vector<String>& paramNames, const WTF::Vector<String>& paramValues);
virtual String overrideMediaType() const;
virtual void windowObjectCleared();
virtual void documentElementAvailable();
virtual void didPerformFirstNavigation() const;
virtual void registerForIconNotification(bool);
virtual ObjectContentType objectContentType(const KURL& url, const String& mimeType);
virtual void setMainFrameDocumentReady(bool);
virtual void startDownload(const ResourceRequest&);
virtual void willChangeTitle(DocumentLoader*);
virtual void didChangeTitle(DocumentLoader*);
virtual void committedLoad(DocumentLoader*, const char*, int);
virtual void finishedLoading(DocumentLoader*);
virtual void updateGlobalHistory();
virtual void updateGlobalHistoryRedirectLinks();
virtual bool shouldGoToHistoryItem(HistoryItem*) const;
virtual void didDisplayInsecureContent();
virtual void didRunInsecureContent(SecurityOrigin*);
virtual ResourceError cancelledError(const ResourceRequest&);
virtual ResourceError blockedError(const ResourceRequest&);
virtual ResourceError cannotShowURLError(const ResourceRequest&);
virtual ResourceError interruptForPolicyChangeError(const ResourceRequest&);
virtual ResourceError cannotShowMIMETypeError(const ResourceResponse&);
virtual ResourceError fileDoesNotExistError(const ResourceResponse&);
virtual ResourceError pluginWillHandleLoadError(const ResourceResponse&);
virtual bool shouldFallBack(const ResourceError&);
virtual bool canHandleRequest(const ResourceRequest&) const;
virtual bool canShowMIMEType(const String&) const;
virtual bool canShowMIMETypeAsHTML(const String& MIMEType) const;
virtual bool representationExistsForURLScheme(const String&) const;
virtual String generatedMIMETypeForURLScheme(const String&) const;
virtual void frameLoadCompleted();
virtual void saveViewStateToItem(HistoryItem*);
virtual void restoreViewState();
virtual void provisionalLoadStarted();
virtual void didFinishLoad();
virtual void prepareForDataSourceReplacement();
virtual WTF::PassRefPtr<DocumentLoader> createDocumentLoader(const ResourceRequest&, const SubstituteData&);
virtual void setTitle(const String& title, const KURL&);
virtual String userAgent(const KURL&);
virtual void savePlatformDataToCachedFrame(CachedFrame*);
virtual void transitionToCommittedFromCachedFrame(CachedFrame*);
virtual void transitionToCommittedForNewPage();
virtual bool canCachePage() const;
virtual void download(ResourceHandle*, const ResourceRequest&, const ResourceRequest&, const ResourceResponse&);
virtual PassRefPtr<WebCore::FrameNetworkingContext> createNetworkingContext();
private:
Evas_Object *m_view;
Evas_Object *m_frame;
ResourceResponse m_response;
String m_userAgent;
String m_customUserAgent;
ResourceError m_loadError;
// Plugin view to redirect data to
PluginView* m_pluginView;
bool m_hasSentResponseToPlugin;
};
}
#endif // FrameLoaderClientEfl_h
| [
"sdevitt@rim.com"
] | sdevitt@rim.com |
c786f6ebb7c4ae0a68803bb356108bef72e2f237 | 11eb8f95449d6dff9ded2e7b775965b21f1b69e7 | /src/vw/Mosaic/QuadTreeConfig.cc | f325ece642e3d9045528f36f84b589979a0b0d93 | [
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"LicenseRef-scancode-public-domain"
] | permissive | deleted/visionworkbench | 1e15055fc4ee6ab6bcbfa0137e08a8b370395a4b | 4dcd68927215a5602fb6eff9c93ff48c0b62fba0 | refs/heads/master | 2020-04-03T18:53:50.400467 | 2012-01-10T00:09:36 | 2012-01-10T00:09:36 | 1,461,965 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,290 | cc | // __BEGIN_LICENSE__
// Copyright (C) 2006-2011 United States Government as represented by
// the Administrator of the National Aeronautics and Space Administration.
// All Rights Reserved.
// __END_LICENSE__
#include <vw/Mosaic/QuadTreeConfig.h>
#include <vw/Mosaic/CelestiaQuadTreeConfig.h>
#include <vw/Mosaic/GigapanQuadTreeConfig.h>
#include <vw/Mosaic/GMapQuadTreeConfig.h>
#include <vw/Mosaic/KMLQuadTreeConfig.h>
#include <vw/Mosaic/TMSQuadTreeConfig.h>
#include <vw/Mosaic/UniviewQuadTreeConfig.h>
using namespace vw;
using namespace vw::mosaic;
boost::shared_ptr<QuadTreeConfig> QuadTreeConfig::make(const std::string& type) {
typedef boost::shared_ptr<QuadTreeConfig> ptr_t;
std::string utype = boost::to_upper_copy(type);
if (utype == "CELESTIA")
return ptr_t(new CelestiaQuadTreeConfig());
else if (utype == "GIGAPAN" || utype == "GIGAPAN_NOPROJ")
return ptr_t(new GigapanQuadTreeConfig());
else if (utype == "GMAP")
return ptr_t(new GMapQuadTreeConfig());
else if (utype == "KML")
return ptr_t(new KMLQuadTreeConfig());
else if (utype == "TMS")
return ptr_t(new TMSQuadTreeConfig());
else if (utype == "UNIVIEW")
return ptr_t(new UniviewQuadTreeConfig());
else
vw_throw(NoImplErr() << "Unknown quad tree type: " << utype);
}
| [
"mike@fluffypenguin.org"
] | mike@fluffypenguin.org |
3fc839fd3935e3d2bbe42330c1952532d3afa219 | 84897b6a25f876b21246c2c7e1404c9c411be987 | /src/src/compress/rar/RCRar3VmMemBitDecoder.h | d79aae2755802912d75fc3ee6f84eef0b79ee107 | [] | no_license | drivestudy/HaoZip | 07718a53e38bc5893477575ddf3fccfb3b18c5fd | 9e0564b4a11870224543357004653b798fd625e0 | refs/heads/master | 2021-07-24T06:33:24.651453 | 2017-11-05T01:19:18 | 2017-11-05T01:19:18 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,293 | h | /********************************************************************************
* 版权所有(C)2008,2009,2010,好压软件工作室,保留所有权利。 *
********************************************************************************
* 作者 : HaoZip *
* 版本 : 1.7 *
* 联系方式: haozip@gmail.com *
* 官方网站: www.haozip.com *
********************************************************************************/
#ifndef __RCRar3VmMemBitDecoder_h_
#define __RCRar3VmMemBitDecoder_h_ 1
#include "base/RCDefs.h"
BEGIN_NAMESPACE_RCZIP
class RCRar3VmMemBitDecoder
{
public:
/** 默认构造函数
*/
RCRar3VmMemBitDecoder() ;
/** 默认析构函数
*/
~RCRar3VmMemBitDecoder() ;
public:
void Init(const byte_t *data, uint32_t byteSize) ;
uint32_t ReadBits(int32_t numBits) ;
uint32_t ReadBit() ;
bool Avail() const ;
private:
const byte_t* _data ;
uint32_t _bitSize ;
uint32_t _bitPos ;
};
END_NAMESPACE_RCZIP
#endif //__RCRar3VmMemBitDecoder_h_
| [
"zhou_jiafeng@aliyun.com"
] | zhou_jiafeng@aliyun.com |
6e0f2209e46697d69ddf794308cb71f707c85ba0 | d8cea961e0ad4aa6e0f53ec77b76f4b162a186a6 | /JASP-Desktop/widgets/tableviewmenueditor.cpp | 2c292fb4e2f4f003051933c956b2c5ff6d867776 | [] | no_license | HelenSteingroever/jasp-desktop | b938945feb41007d7221fdf225302d047cb0ac0d | 4ab10ddfb2d87d861253162014d61b48a4a2b374 | refs/heads/master | 2020-12-28T03:17:28.338102 | 2014-04-29T15:19:13 | 2014-04-29T15:19:13 | 18,171,335 | 0 | 0 | null | 2017-07-13T13:15:48 | 2014-03-27T09:56:26 | C++ | UTF-8 | C++ | false | false | 1,225 | cpp | #include "tableviewmenueditor.h"
#include <QPaintEvent>
#include <QPainter>
TableViewMenuEditor::TableViewMenuEditor(QWidget *parent) :
QWidget(parent)
{
_menu = new QMenu(this);
}
QString TableViewMenuEditor::selected()
{
return _selected;
}
void TableViewMenuEditor::setMenuContent(QStringList menuItems, QString selected)
{
_menu->clear();
QAction *active;
foreach (QString item, menuItems)
{
QAction *added = _menu->addAction(item);
if (selected == item)
active = added;
}
_menu->setActiveAction(active);
connect(_menu, SIGNAL(triggered(QAction*)), this, SLOT(itemSelected(QAction*)));
}
void TableViewMenuEditor::showEvent(QShowEvent *)
{
QPoint pos(rect().left() + 20, rect().top() - 5);
_menu->popup(mapToGlobal(pos), _menu->activeAction());
}
void TableViewMenuEditor::paintEvent(QPaintEvent *event)
{
QPainter painter(this);
QPainterPath path;
path.moveTo(5, 20 / 5);
path.lineTo(16, 20 / 2);
path.lineTo(5, 20 * 4 / 5);
QBrush black(QColor(0x80, 0x80, 0x80));
QBrush white(Qt::white);
painter.fillRect(event->rect(), white);
painter.fillPath(path, black);
}
void TableViewMenuEditor::itemSelected(QAction *action)
{
_selected = action->text();
emit editingFinished();
}
| [
"jon@thon.cc"
] | jon@thon.cc |
0296705aaa1c2864e6e8437999e7436305e5507c | 5f3e499510173815d802fab0004166e62725fb4b | /ENCORE/src/scene/PointLightPrim.h | 789baa716e4a9adf807c7b41780bf9d32cc84c55 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | digideskio/ENCORE | 191c710c5123804c8de7603442c0434ab141d880 | 8ede6dcf19d02851118ba5a85dd70d1548b905c8 | refs/heads/master | 2020-05-02T09:26:30.616898 | 2013-12-08T05:38:54 | 2013-12-08T05:38:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,055 | h | #pragma once
#include "Primitive.h"
#include "Emissive.h"
using encore::Color;
using encore::IEmissive;
class PointLightPrim :
public encore::IEmissive,
public IPrimitive
{
public:
PointLightPrim( void );
PointLightPrim( const Point3& l_Position, const Color& l_Color );
PointLightPrim( float x, float y, float z, float r, float g, float b );
~PointLightPrim( void );
// IEmissive Interface
virtual Ray EmitPhoton();
virtual Point3 GetPointOfEmission( void ) { return m_Position; }
// IPrimitive Interface
bool intersect(Ray& l_Ray, HitInfo* pHitInfo);
bool intersectAABB(AABB l_Box) { return l_Box.Contains( m_Position ); }
AABB getAABB( void ) const { return AABB( m_Position, m_Position ); }
std::list<Triangle*>* getNewTesselation ( void ) { return new std::list<Triangle*>(); } // returns no triangles
// PointLightPrim Public Methods
Point3 GetPosition(){ return m_Position; }
void SetPosition(Point3 position){ m_Position = position; }
private:
Point3 m_Position;
};
| [
"brandon.light@gmail.com"
] | brandon.light@gmail.com |
c6d0ed4f59614f6690484a782b1881c02b130ff5 | 69a94a9316bf97d8ae783d880c5688f52f11c0aa | /mame/src/mame/includes/tceptor.h | 0d83489cc3de38ef17df3c286f10fd656893e549 | [] | no_license | bradparks/UME-Core | 530fd1dee865453f8a7c00ca2d7c9b2b5b59d34e | ed48bd0e86f701e0f1a22150445ae42ac57aa4aa | refs/heads/master | 2021-01-22T23:57:48.291810 | 2015-11-10T08:43:50 | 2015-11-10T08:44:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,208 | h | #include "namcos2.h"
#include "sound/dac.h"
class tceptor_state : public driver_device
{
public:
tceptor_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_tile_ram(*this, "tile_ram"),
m_tile_attr(*this, "tile_attr"),
m_bg_ram(*this, "bg_ram"),
m_m68k_shared_ram(*this, "m68k_shared_ram"),
m_sprite_ram(*this, "sprite_ram"),
m_c45_road(*this, "c45_road") ,
m_maincpu(*this, "maincpu"),
m_dac(*this, "dac") { }
UINT8 m_m6809_irq_enable;
UINT8 m_m68k_irq_enable;
UINT8 m_mcu_irq_enable;
required_shared_ptr<UINT8> m_tile_ram;
required_shared_ptr<UINT8> m_tile_attr;
required_shared_ptr<UINT8> m_bg_ram;
required_shared_ptr<UINT8> m_m68k_shared_ram;
required_shared_ptr<UINT16> m_sprite_ram;
int m_sprite16;
int m_sprite32;
int m_bg;
tilemap_t *m_tx_tilemap;
tilemap_t *m_bg1_tilemap;
tilemap_t *m_bg2_tilemap;
INT32 m_bg1_scroll_x;
INT32 m_bg1_scroll_y;
INT32 m_bg2_scroll_x;
INT32 m_bg2_scroll_y;
bitmap_ind16 m_temp_bitmap;
UINT16 *m_sprite_ram_buffered;
int m_is_mask_spr[1024/16];
DECLARE_READ16_MEMBER(m68k_shared_word_r);
DECLARE_WRITE16_MEMBER(m68k_shared_word_w);
DECLARE_WRITE8_MEMBER(m6809_irq_enable_w);
DECLARE_WRITE8_MEMBER(m6809_irq_disable_w);
DECLARE_WRITE16_MEMBER(m68k_irq_enable_w);
DECLARE_WRITE8_MEMBER(mcu_irq_enable_w);
DECLARE_WRITE8_MEMBER(mcu_irq_disable_w);
DECLARE_READ8_MEMBER(dsw0_r);
DECLARE_READ8_MEMBER(dsw1_r);
DECLARE_READ8_MEMBER(input0_r);
DECLARE_READ8_MEMBER(input1_r);
DECLARE_READ8_MEMBER(readFF);
DECLARE_WRITE8_MEMBER(tceptor_tile_ram_w);
DECLARE_WRITE8_MEMBER(tceptor_tile_attr_w);
DECLARE_WRITE8_MEMBER(tceptor_bg_ram_w);
DECLARE_WRITE8_MEMBER(tceptor_bg_scroll_w);
void tile_mark_dirty(int offset);
DECLARE_WRITE8_MEMBER(voice_w);
optional_device<namco_c45_road_device> m_c45_road;
TILE_GET_INFO_MEMBER(get_tx_tile_info);
TILE_GET_INFO_MEMBER(get_bg1_tile_info);
TILE_GET_INFO_MEMBER(get_bg2_tile_info);
virtual void machine_start();
virtual void machine_reset();
virtual void video_start();
virtual void palette_init();
UINT32 screen_update_tceptor_2d(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
UINT32 screen_update_tceptor_3d_left(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
UINT32 screen_update_tceptor_3d_right(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void screen_eof_tceptor(screen_device &screen, bool state);
INTERRUPT_GEN_MEMBER(m6809_vb_interrupt);
INTERRUPT_GEN_MEMBER(m68k_vb_interrupt);
INTERRUPT_GEN_MEMBER(mcu_vb_interrupt);
inline int get_tile_addr(int tile_index);
void decode_bg(const char * region);
void decode_sprite(int gfx_index, const gfx_layout *layout, const void *data);
void decode_sprite16(const char * region);
void decode_sprite32(const char * region);
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect, int sprite_priority);
inline UINT8 fix_input0(UINT8 in1, UINT8 in2);
inline UINT8 fix_input1(UINT8 in1, UINT8 in2);
required_device<cpu_device> m_maincpu;
required_device<dac_device> m_dac;
};
| [
"conrad@kramerapps.com"
] | conrad@kramerapps.com |
03d029abf5fb8a1ea8ba0e1073cbd66f633d2bc5 | 0907388046fb08add6b7e379f0ff3d024ccfb1fe | /cpp/16-strings.cpp | 78ed24298dbf4fbcb602c3ae78225f598a1b553e | [
"MIT",
"GPL-3.0-only"
] | permissive | mbassale/computer-science | 158efbad7ddc4cd2148d2ac4f3419d020dbdaa43 | 1d6cf98752036ec80a2c9516a98f620b6fa346be | refs/heads/master | 2023-09-01T00:07:02.505625 | 2023-08-20T06:38:13 | 2023-08-20T06:38:13 | 237,537,038 | 0 | 0 | MIT | 2022-06-22T04:58:49 | 2020-02-01T00:02:39 | C++ | UTF-8 | C++ | false | false | 7,283 | cpp | #define CATCH_CONFIG_MAIN
#include "catch.hpp"
#include <string>
TEST_CASE("std::string supports constructing") {
SECTION("empty strings") {
std::string cheese;
REQUIRE(cheese.empty());
}
SECTION("repeated characters") {
std::string roadside_assistance(3, 'A');
REQUIRE(roadside_assistance == "AAA");
}
}
TEST_CASE("std::string supports constructing substrings") {
auto word = "gobbledygook";
REQUIRE(std::string(word) == "gobbledygook");
REQUIRE(std::string(word, 6) == "gobble");
}
TEST_CASE("std::string supports") {
std::string word("catawampus");
SECTION("copy constructing") {
REQUIRE(std::string(word) == "catawampus");
}
SECTION("move constructing") {
REQUIRE(std::string(std::move(word)) == "catawampus");
}
SECTION("constructing from substrings") {
REQUIRE(std::string(word, 0, 3) == "cat");
REQUIRE(std::string(word, 4) == "wampus");
}
}
TEST_CASE("constructing a string with") {
SECTION("std::string(char*) stops at embedded nulls") {
std::string str("idioglossia\0ellohay!");
REQUIRE(str.length() == 11);
}
SECTION("operator\"\"s incorporates embedded nulls") {
using namespace std::string_literals;
auto str_lit = "idioglossia\0ellohay!"s;
REQUIRE(str_lit.length() == 20);
}
}
TEST_CASE("string's c_str method makes null-terminated strings") {
std::string word("horripilation");
auto as_cstr = word.c_str();
REQUIRE(as_cstr[0] == 'h');
REQUIRE(as_cstr[1] == 'o');
REQUIRE(as_cstr[11] == 'o');
REQUIRE(as_cstr[12] == 'n');
REQUIRE(as_cstr[13] == '\0');
}
TEST_CASE("std::string supports comparison with") {
using namespace std::literals::string_literals;
std::string word("allusion");
SECTION("operator== and !=") {
REQUIRE(word == "allusion");
REQUIRE(word == "allusion"s);
REQUIRE(word != "Allusion"s);
REQUIRE(word != "illusion"s);
REQUIRE_FALSE(word == "illusion"s);
}
SECTION("operator<") {
REQUIRE(word < "illusion");
REQUIRE(word < "illusion"s);
REQUIRE(word > "Illusion"s);
}
}
TEST_CASE("std::string supports appending with") {
std::string word("butt");
SECTION("push_back") {
word.push_back('e');
REQUIRE(word == "butte");
}
SECTION("operator+=") {
word += "erfinger";
REQUIRE(word == "butterfinger");
}
SECTION("append char") {
word.append(1, 's');
REQUIRE(word == "butts");
}
SECTION("append char*") {
word.append("stockings", 5);
REQUIRE(word == "buttstock");
}
SECTION("append (half-open range)") {
std::string other("onomatopoeia");
word.append(other.begin(), other.begin() + 2);
REQUIRE(word == "button");
}
}
TEST_CASE("std::string supports removal with") {
std::string word("therein");
SECTION("pop_back") {
word.pop_back();
word.pop_back();
REQUIRE(word == "there");
}
SECTION("clear") {
word.clear();
REQUIRE(word.empty());
}
SECTION("erase using half-open range") {
word.erase(word.begin(), word.begin() + 3);
REQUIRE(word == "rein");
}
SECTION("erase using an index and length") {
word.erase(5, 2);
REQUIRE(word == "there");
}
}
TEST_CASE("std::string replace works with") {
std::string word("substitution");
SECTION("a range and a char*") {
word.replace(word.begin() + 9, word.end(), "e");
REQUIRE(word == "substitute");
}
SECTION("two ranges") {
std::string other("innuendo");
word.replace(word.begin(), word.begin() + 3, other.begin(), other.begin() + 2);
REQUIRE(word == "institution");
}
SECTION("an index/length and a string") {
std::string other("vers");
word.replace(3, 6, other);
REQUIRE(word == "subversion");
}
}
TEST_CASE("std::string resize") {
std::string word("shamp");
SECTION("can remove elements") {
word.resize(4);
REQUIRE(word == "sham");
}
SECTION("can add elements") {
word.resize(7, 'o');
REQUIRE(word == "shampoo");
}
}
TEST_CASE("std::string substr with") {
std::string word("hobbits");
SECTION("no arguments copies the string") {
REQUIRE(word.substr() == "hobbits");
}
SECTION("position takes the raminder") {
REQUIRE(word.substr(3) == "bits");
}
SECTION("position/index takes a substring") {
REQUIRE(word.substr(3, 3) == "bit");
}
}
TEST_CASE("std::string find") {
using namespace std::literals::string_literals;
std::string word("pizzazz");
SECTION("locates substrings from strings") {
REQUIRE(word.find("zz"s) == 2);
}
SECTION("accepts a position argument") {
REQUIRE(word.find("zz"s, 3) == 5);
}
SECTION("locates substrings from char*") {
REQUIRE(word.find("zaz") == 3);
}
SECTION("returns npos when not found") {
REQUIRE(word.find('x') == std::string::npos);
}
}
TEST_CASE("std::string rfind") {
using namespace std::literals::string_literals;
std::string word("pizzazz");
SECTION("locates substrings from strings") {
REQUIRE(word.rfind("zz"s) == 5);
}
SECTION("accepts a position argument") {
REQUIRE(word.rfind("zz"s, 3) == 2);
}
SECTION("locates substrings from char*") {
REQUIRE(word.rfind("zaz") == 3);
}
SECTION("returns npos when not found") {
REQUIRE(word.rfind('x') == std::string::npos);
}
}
TEST_CASE("std::string find_first_of") {
using namespace std::literals::string_literals;
std::string sentence("I am a Zizzer-Zazzer-Zuzz as you can plainly see.");
SECTION("locates characters within another string") {
REQUIRE(sentence.find_first_of("Zz"s) == 7);
}
SECTION("accepts a position argument") {
REQUIRE(sentence.find_first_of("Zz"s, 11) == 14);
}
SECTION("returns npos when not found") {
REQUIRE(sentence.find_first_of("Xx"s) == std::string::npos);
}
}
TEST_CASE("STL number to string conversion functions") {
using namespace std::literals::string_literals;
SECTION("to_string") {
REQUIRE("8675309"s == std::to_string(8675309));
}
SECTION("to_wstring") {
REQUIRE(L"109951.162778"s == std::to_wstring(109951.1627776));
}
}
TEST_CASE("STL string to number conversion functions") {
using namespace std::literals::string_literals;
SECTION("stoi") {
REQUIRE(std::stoi("8675309"s) == 8675309);
}
SECTION("stoi") {
REQUIRE_THROWS_AS(std::stoi("1099511627776"s), std::out_of_range);
}
SECTION("stoul with all valid characters") {
size_t last_index{};
const auto result = std::stoul("0xD3C34C3D"s, &last_index, 16);
REQUIRE(result == 0xD3C34C3D);
REQUIRE(last_index == 10);
}
SECTION("stoul") {
size_t last_index{};
const auto result = std::stoul("42six"s, &last_index);
REQUIRE(result == 42);
REQUIRE(last_index == 2);
}
SECTION("stod") {
REQUIRE(std::stod("2.7182818"s) == Approx(2.7182818));
}
}
| [
"bassaletti@gmail.com"
] | bassaletti@gmail.com |
129315402fcf86dcabbd4af936c113c6eccfc7ea | b43ce540528598d96855e8218ae6857ec6d21858 | /DirectX9_3D_3/Engine/Resources/Code/HeliCol.cpp | ed17b6bf1b1d093745b4d8a95fc5f5cbb4e9acb5 | [] | no_license | costa0217/portfolio_codes | db249293ae1e662753c1f9e8f5f0067464165a16 | c52cb36a84ef10e6c7680b34fc12872f4361a027 | refs/heads/master | 2020-03-28T08:01:47.715789 | 2018-09-08T14:44:51 | 2018-09-08T14:44:51 | 147,941,305 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,613 | cpp | #include "HeliCol.h"
Engine::CHeliCol::CHeliCol(LPDIRECT3DDEVICE9 pDevice)
: CVIBuffer(pDevice)
{
}
Engine::CHeliCol::~CHeliCol(void)
{
}
Engine::CResources* Engine::CHeliCol::CloneResource(void)
{
++(*m_pwRefCnt);
return new CHeliCol(*this);
}
HRESULT Engine::CHeliCol::CreateBuffer(int iAllVtxCnt, vector<VTXCOL>& vecVTX)
{
if(vecVTX.empty())
return E_FAIL;
m_dwVtxSize = sizeof(VTXCOL);
m_dwVtxCnt = iAllVtxCnt;
m_dwFVF = VTXCOL_FVF;
m_dwIdxSize = sizeof(INDEX16);
m_dwTriCnt = iAllVtxCnt / 2;
m_IdxFmt = D3DFMT_INDEX16;
FAILED_CHECK(CVIBuffer::CreateBuffer());
VTXCOL* pVertex = NULL;
m_pVB->Lock(0, 0, (void**)&pVertex, 0);
for(int i = 0; i < iAllVtxCnt; ++i)
{
D3DXVECTOR3 vPos = vecVTX[i].vPos;
DWORD dwColor = vecVTX[i].dwColor;
pVertex[i].vPos = vPos;
pVertex[i].dwColor = dwColor;
}
m_pVB->Unlock();
int iTriCnt = 0;
INDEX16* pIndex = NULL;
m_pIB->Lock(0, 0, (void**)&pIndex, 0);
for(int j = 0; j < iAllVtxCnt / 4; ++j)
{
pIndex[iTriCnt]._1 = 0 + iTriCnt * 2;
pIndex[iTriCnt]._2 = 1 + iTriCnt * 2;
pIndex[iTriCnt]._3 = 3 + iTriCnt * 2;
++iTriCnt;
pIndex[iTriCnt]._1 = 1 + ((iTriCnt- 1) * 2);
pIndex[iTriCnt]._2 = 2 + ((iTriCnt- 1) * 2);
pIndex[iTriCnt]._3 = 3 + ((iTriCnt- 1) * 2);
++iTriCnt;
}
m_pIB->Unlock();
return S_OK;
}
Engine::CHeliCol* Engine::CHeliCol::Create(LPDIRECT3DDEVICE9 pDevice
, int iAllVtxCnt
, vector<VTXCOL>& vecVTX)
{
CHeliCol* pBuffer = new CHeliCol(pDevice);
if(FAILED(pBuffer->CreateBuffer(iAllVtxCnt, vecVTX)))
Engine::Safe_Delete(pBuffer);
return pBuffer;
}
| [
"choga0217@gmail.com"
] | choga0217@gmail.com |
0266ee05e33048eac36c4f37cfe6dd82508cb702 | 80315f1bba85314018587f46ee309a00638d14d4 | /GatewayServer/Packet/Processor.cpp | 1e3d57362289457294f74dbf3487678538886391 | [] | no_license | pope88/Servers | e54ae276ca4979bccd4043e823f0c7e56a444075 | 332960c5878a733fd6daf77c15a856d7570c8b5b | refs/heads/master | 2021-01-10T22:05:07.995636 | 2013-12-18T11:59:52 | 2013-12-18T11:59:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,999 | cpp | #include "Config.h"
#include "Processor.h"
//#include "PlayerManager.h"
#include "../Object/Server.h"
#include "Handler.h"
extern "C"
{
#include <libtaomee/log.h>
}
namespace Packet
{
Processor _processor;
void decryptPacket(UInt32 key, UInt16& op, UInt32 size, UInt8 * buf)
{
}
Processor::Processor()
{
}
int parsePlayer(void *buffer, Object::Player *player)
{
return 0;
}
int Processor::parseServer(void *buffer, int len, int fd)
{
return 0;
}
int Processor::getPakcetLen(int fd, const void* availData, int availLen, int isParent)
{
if (availLen < 6)
{
return 0;
}
UInt32 len = 0;
#pragma pack(push, 1)
struct PktHdr
{
UInt32 size;
UInt16 op;
}ATTR_PACKED();
#pragma pack(pop)
if (isParent > 0)
{
const PktHdr *hdr = reinterpret_cast<const PktHdr*>(availData);
len = hdr->size & 0x00FFFFFF;
//UInt32 key = hdr->size >> 24;
if (static_cast<int>(len) + 6 > availLen || static_cast<int>(len) + 6 > maxProtoLen)
{
return -1;
}
}
else
{
const PktHdr *hdr = reinterpret_cast<const PktHdr*>(availData);
len = hdr->size & 0x00FFFFFF;
//UInt32 key = hdr->size >> 24;
if (static_cast<int>(len) + 6 > availLen || static_cast<int>(len) + 6 > maxProtoLen)
{
return -1;
}
}
return len;
}
int Processor::parseInit(void *buffer, fdsession_t *fdsession)
{
DEBUG_LOG("fdsession_t---fd--%u", fdsession->fd);
DEBUG_LOG("fdsession_t---id--%u", fdsession->id);
DEBUG_LOG("fdsession_t---remoteip--%u", fdsession->remote_ip);
DEBUG_LOG("fdsession_t---port--%u", fdsession->remote_port);
#pragma pack(push, 1)
struct PktHdr
{
UInt32 size;
UInt16 op;
}ATTR_PACKED();
#pragma pack(pop)
PktHdr *hdr = reinterpret_cast<PktHdr*>(buffer);
UInt32 sz = hdr->size & 0x00FFFFFF;
UInt32 key = hdr->size >> 24;
UInt8 *buf = new(std::nothrow) UInt8[sz];
if (buf == NULL)
{
return -1;
}
else
{
memcpy(buf, (UInt8*)buffer, sz);
UInt16 op = hdr->op;
//decryptPacket(key, op, sz, buf);
doProcessInit(fdsession, op, sz, buf);
delete[] buf;
}
return 0;
}
int doProcessInit(fdsession_t *fdsession, UInt16 op, UInt32 sz, const UInt8 *buf)
{
switch (op)
{
case : 2
{
Packet::CSUserLogin_0x02 pkt;
const UInt8 * bufExt = buf;
size_t szExt = size;
if(!pkt.unpackBuffer(bufExt, szExt))
{
_tcp->disconnect(sid);
return;
}
size_t pos = pkt.id().find_last_of('@');
if (pos == std::string::npos)
{
sv = (*_serverMan)["soushentest_s1"];
}
else
{
sv = (*_serverMan)[pkt.id().substr(pos+1)];
}
if (sv == NULL)
{
close_client_conn(fdsession->fd);
return 1;
}
Object::Player *player = new(std::nothrow) Object::Player(sv, sid);
if (player == NULL)
{
close_client_conn(fdsession->fd);
return 1;
}
player->setPFDS(fdsession);
sv->addPlayer(player);
sv->pendPacket(sid, op | 0x8000, buf, size);
}
break;
}
return 0;
}
} | [
"pope@fanersai.com"
] | pope@fanersai.com |
0e3d133b15dc0cac951d0646f1a90705a0629c07 | 432fdb991b1edb73457fdcb1a817fe6d3a5afef5 | /content/child/child_process_sandbox_support_impl_mac.h | e7a2b15a448cf163b9870d871b4683abe79f4aad | [
"BSD-3-Clause"
] | permissive | nampud/chromium | 40c431d53e5877f2a12b7fbb81253c6dcbc268b0 | 365dd0bd81d7ee32bcab0e4ede6e704ab6a2358c | refs/heads/master | 2023-02-25T04:35:03.566375 | 2019-09-22T20:17:03 | 2019-09-22T20:17:03 | 210,211,364 | 0 | 1 | BSD-3-Clause | 2019-09-22T20:40:56 | 2019-09-22T20:40:56 | null | UTF-8 | C++ | false | false | 1,534 | h | // Copyright 2018 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_CHILD_CHILD_PROCESS_SANDBOX_SUPPORT_IMPL_MAC_H_
#define CONTENT_CHILD_CHILD_PROCESS_SANDBOX_SUPPORT_IMPL_MAC_H_
#include <CoreText/CoreText.h>
#include "base/memory/read_only_shared_memory_region.h"
#include "base/memory/shared_memory_mapping.h"
#include "content/common/sandbox_support_mac.mojom.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "third_party/blink/public/platform/mac/web_sandbox_support.h"
namespace service_manager {
class Connector;
}
namespace content {
// Implementation of the interface used by Blink to upcall to the privileged
// process (browser) for handling requests for data that are not allowed within
// the sandbox.
class WebSandboxSupportMac : public blink::WebSandboxSupport {
public:
explicit WebSandboxSupportMac(service_manager::Connector* connector);
~WebSandboxSupportMac() override;
// blink::WebSandboxSupport:
bool LoadFont(CTFontRef font, CGFontRef* out, uint32_t* font_id) override;
SkColor GetSystemColor(blink::MacSystemColorID color_id) override;
private:
void OnGotSystemColors(base::ReadOnlySharedMemoryRegion region);
mojo::Remote<mojom::SandboxSupportMac> sandbox_support_;
base::ReadOnlySharedMemoryMapping color_map_;
DISALLOW_COPY_AND_ASSIGN(WebSandboxSupportMac);
};
} // namespace content
#endif // CONTENT_CHILD_CHILD_PROCESS_SANDBOX_SUPPORT_IMPL_MAC_H_
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
5fe5ec7ec42f86b9637c9118791d0a7801d2e8d4 | 0a2c0f76461f0c61c116c4921107637fb387daca | /myqq/qqserver/pub.cpp | ad75e8078ba72f202b09cd05d61f716c4acea0e6 | [] | no_license | bendaojiu/myqt | 9df2a4ca9e68631f73fede27c0eabd5a91d6aed3 | 9553579121092de5da9d1a599b9fcaadbb8e8db5 | refs/heads/master | 2021-01-10T14:07:00.333727 | 2016-02-25T10:25:42 | 2016-02-25T10:25:42 | 50,634,296 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,113 | cpp | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <signal.h>
#include "pub.h"
#include "work.h"
void catch_Signal(int Sign)
{
switch (Sign)
{
case SIGINT:
//printf("signal SIGINT\n");
break;
case SIGPIPE://如果一个非阻塞的socket已经关闭,在这个socket上调用send函数,会触发一个SIGPIPE消息
//printf("signal SIGPIPE\n");
//signal1(SIGPIPE, catch_Signal);
break;
}
}
int signal1(int signo, void (*func)(int))
{
struct sigaction act, oact;
act.sa_handler = func;
sigemptyset(&act.sa_mask);
act.sa_flags = 0;
return sigaction(signo, &act, &oact);
}
void setdaemon()
{
pid_t pid, sid;
pid = fork();//fork一个子进程出来
if (pid < 0)
{
printf("fork failed %s\n", strerror(errno));
exit (EXIT_FAILURE);
}
if (pid > 0)
{
exit (EXIT_SUCCESS);//父进程退出
}
if ((sid = setsid()) < 0)//子进程调用setsid函数,将进程和控制台脱离关系
{
printf("setsid failed %s\n", strerror(errno));
exit (EXIT_FAILURE);
}
/*
//改变工作目录,可用于记录日志等,本处不需要此功能
if (chdir("/") < 0)
{
printf("chdir failed %s\n", strerror(errno));
exit(EXIT_FAILURE);
}
umask(0);
close(STDIN_FILENO);
close(STDOUT_FILENO);
close(STDERR_FILENO);
*/
}
int socket_create(int port)//创建参数port指定端口号的server端socket
{
int st = socket(AF_INET, SOCK_STREAM, 0);//创建TCP Socket
int on = 1;
if (setsockopt(st, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1)
{
printf("setsockopt failed %s\n", strerror(errno));
return 0;
}
struct sockaddr_in addr;
memset(&addr, 0, sizeof(addr));
addr.sin_family = AF_INET;
addr.sin_port = htons(port);
addr.sin_addr.s_addr = htonl(INADDR_ANY);
if (bind(st, (struct sockaddr *) &addr, sizeof(addr)) == -1)
{
printf("bind port %d failed %s\n", port, strerror(errno));
return 0;
}
if (listen(st, 300) == -1)
{
printf("listen failed %s\n", strerror(errno));
return 0;
}
return st;//返回listen的socket描述符
}
| [
"bendaojiu@163.com"
] | bendaojiu@163.com |
56c9638fd625db7624e66d6c23215ea82508754a | e44a829b08475328149c0cfe8cc66b052206bf7e | /1555A/src/main.cpp | 1babdc4774a97b89361bc373bd154cec48ae006d | [] | no_license | vladiuslav/ICPC_Tasks | 366f6bc442ab3c0bbcb65d44129dbd99fbbad194 | 23f1c53bdfb940c7ca64098592b475d984523a9a | refs/heads/master | 2023-09-03T18:29:27.058742 | 2021-10-19T06:12:24 | 2021-10-19T06:12:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 359 | cpp | #include <cstdio>
#pragma warning(disable:4996)
typedef long long ll;
inline ll max(ll a, ll b) {
return a > b ? a : b;
}
int main() {
int t;
scanf("%d", &t);
while (t > 0) {
long long n;
scanf("%lld", &n);
if (n % 2 != 0) {
++n;
}
long long a = max( (long long)(n * 5 / 2), (long long)15);
printf("%lld\n", a);
--t;
}
return 0;
} | [
"kovalchuk.roman03@gmail.com"
] | kovalchuk.roman03@gmail.com |
fe2a341fef3f7beaa0d72311825d77f4096719b0 | 4296ad62fc2d1c0111af5e9c9ef5b8336256674e | /src/arc51/c.cpp | 6aceefbe62054cbcb3cffcde696f6f20cf1d7a7f | [] | no_license | emakryo/cmpro | 8aa50db1d84fb85e515546f37e675121be9de5c2 | 81db478cc7da06a9b99a7888e39952ddb82cdbe5 | refs/heads/master | 2023-02-09T12:36:47.893287 | 2023-01-23T12:07:03 | 2023-01-23T12:07:03 | 79,899,196 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,903 | cpp | #include<iostream>
#include<iomanip>
//#include<cstdio>
#include<vector>
#include<map>
#include<queue>
#include<algorithm>
#include<cmath>
#include<cassert>
using namespace std;
typedef long long ll;
int N;
const int Nmax=50;
const ll P=1e9L+7;
ll A, B;
ll X[Nmax];
ll pow(ll x, ll n){
if(n==0) return 1;
if(n==1) return x%P;
if(n%2) return x*pow(x, n-1)%P;
ll t = pow(x, n/2);
return t*t%P;
}
int main(){
cin >> N >> A >> B;
for(int i=0; i<N; i++) cin >> X[i];
if(N==1){
cout << pow(A, B)*X[0]%P << endl;
return 0;
}
if(A==1){
sort(X, X+N);
for(int i=0; i<N; i++) cout << X[i]%P << endl;
return 0;
}
priority_queue<pair<double, pair<ll, ll> >,
vector<pair<double, pair<ll, ll> > >,
greater<pair<double, pair<ll, ll> > > > logA;
double logA_max = 0;
for(int i=0; i<N; i++){
double a = log(X[i]) / log(A);
logA.push(make_pair(a, make_pair(0, X[i])));
logA_max = max(logA_max, a);
}
while(B > 0 && logA_max - logA.top().first > 1){
pair<double, pair<ll, ll> > t = logA.top();
logA.pop();
ll a = logA.top().first - t.first + 1;
a = min(B, a);
B -= a;
//cout << t.first << " " << logA_max << endl;
t.first += a;
t.second.first += a;
logA.push(t);
logA_max = max(logA_max, t.first);
}
/*
auto tmp = logA;
for(int i=0; i<N; i++){
pair<double, pair<ll, ll> > t = logA.top();
logA.pop();
cout << t.first << " " << t.second.first << " " << t.second.second << endl;
}
logA = tmp;
*/
for(int i=0; i<N; i++){
pair<double, pair<ll, ll> > t = logA.top();
logA.pop();
t.first += B/N;
t.second.first += B/N;
logA.push(t);
}
for(int i=0; i<B%N; i++){
pair<double, pair<ll, ll> > t = logA.top();
logA.pop();
t.first += 1;
t.second.first += 1;
logA.push(t);
}
for(int i=0; i<N; i++){
pair<double, pair<ll, ll> > t = logA.top();
logA.pop();
cout << pow(A, t.second.first)*t.second.second%P << endl;
}
return 0;
}
| [
"ryosuke.kamesawa@dena.com"
] | ryosuke.kamesawa@dena.com |
03a954ec30a9b0b0da8da3d7daa5632292614b02 | 6d34fa23c708320b2e42d120d107f187106302e3 | /orca/gporca/libnaucrates/src/parser/CParseHandlerScalarMinMax.cpp | 43caed87db6be819cdb878e597a6e1bafc4ed21c | [
"Apache-2.0"
] | permissive | joe2hpimn/dg16.oss | a38ca233ba5c9f803f9caa99016a4c7560da9f08 | 2c4275c832b3e4b715b7475726db6757b127030c | refs/heads/master | 2021-08-23T19:11:49.831210 | 2017-12-06T05:23:22 | 2017-12-06T05:23:22 | 113,322,478 | 2 | 1 | null | 2017-12-06T13:50:44 | 2017-12-06T13:50:44 | null | UTF-8 | C++ | false | false | 4,438 | cpp | //---------------------------------------------------------------------------
// Greenplum Database
// Copyright (C) 2015 Pivotal Inc.
//
// @filename:
// CParseHandlerScalarMinMax.cpp
//
// @doc:
//
// Implementation of the SAX parse handler class for a MinMax operator
//
// @owner:
//
//
// @test:
//
//
//---------------------------------------------------------------------------
#include "naucrates/dxl/parser/CParseHandlerFactory.h"
#include "naucrates/dxl/CDXLUtils.h"
#include "naucrates/dxl/operators/CDXLOperatorFactory.h"
#include "naucrates/dxl/parser/CParseHandlerScalarMinMax.h"
using namespace gpdxl;
XERCES_CPP_NAMESPACE_USE
//---------------------------------------------------------------------------
// @function:
// CParseHandlerScalarMinMax::CParseHandlerScalarMinMax
//
// @doc:
// Ctor
//
//---------------------------------------------------------------------------
CParseHandlerScalarMinMax::CParseHandlerScalarMinMax
(
IMemoryPool *pmp,
CParseHandlerManager *pphm,
CParseHandlerBase *pphRoot
)
:
CParseHandlerScalarOp(pmp, pphm, pphRoot),
m_pmdidType(NULL),
m_emmt(CDXLScalarMinMax::EmmtSentinel)
{
}
//---------------------------------------------------------------------------
// @function:
// CParseHandlerScalarMinMax::StartElement
//
// @doc:
// Processes a Xerces start element event
//
//---------------------------------------------------------------------------
void
CParseHandlerScalarMinMax::StartElement
(
const XMLCh* const xmlszUri,
const XMLCh* const xmlszLocalname,
const XMLCh* const xmlszQname,
const Attributes& attrs
)
{
if (((0 == XMLString::compareString(CDXLTokens::XmlstrToken(EdxltokenScalarMin), xmlszLocalname)) ||
(0 == XMLString::compareString(CDXLTokens::XmlstrToken(EdxltokenScalarMax), xmlszLocalname))) &&
CDXLScalarMinMax::EmmtSentinel == m_emmt)
{
m_emmt = Emmt(xmlszLocalname);
GPOS_ASSERT(CDXLScalarMinMax::EmmtSentinel != m_emmt);
Edxltoken edxltoken = EdxltokenScalarMin;
if (0 == XMLString::compareString(CDXLTokens::XmlstrToken(EdxltokenScalarMax), xmlszLocalname))
{
edxltoken = EdxltokenScalarMax;
}
// parse type id
m_pmdidType = CDXLOperatorFactory::PmdidFromAttrs(m_pphm->Pmm(), attrs, EdxltokenTypeId, edxltoken);
}
else
{
// parse child
CParseHandlerBase *pphOp = CParseHandlerFactory::Pph(m_pmp, CDXLTokens::XmlstrToken(EdxltokenScalar), m_pphm, this);
m_pphm->ActivateParseHandler(pphOp);
// store parse handlers
this->Append(pphOp);
pphOp->startElement(xmlszUri, xmlszLocalname, xmlszQname, attrs);
}
}
//---------------------------------------------------------------------------
// @function:
// CParseHandlerScalarMinMax::EndElement
//
// @doc:
// Invoked by Xerces to process a closing tag
//
//---------------------------------------------------------------------------
void
CParseHandlerScalarMinMax::EndElement
(
const XMLCh* const ,// xmlszUri
const XMLCh* const xmlszLocalname,
const XMLCh* const // xmlszQname
)
{
CDXLScalarMinMax::EdxlMinMaxType emmt = Emmt(xmlszLocalname);
if (CDXLScalarMinMax::EmmtSentinel == emmt || m_emmt != emmt)
{
CWStringDynamic *pstr = CDXLUtils::PstrFromXMLCh(m_pphm->Pmm(), xmlszLocalname);
GPOS_RAISE(gpdxl::ExmaDXL, gpdxl::ExmiDXLUnexpectedTag, pstr->Wsz());
}
// construct node
m_pdxln = GPOS_NEW(m_pmp) CDXLNode(m_pmp, GPOS_NEW(m_pmp) CDXLScalarMinMax(m_pmp, m_pmdidType, m_emmt));
// loop over children and add them to this parsehandler
const ULONG ulChildren = this->UlLength();
for (ULONG ul = 0; ul < ulChildren; ul++)
{
CParseHandlerScalarOp *pphChild = dynamic_cast<CParseHandlerScalarOp *>((*this)[ul]);
AddChildFromParseHandler(pphChild);
}
// deactivate handler
m_pphm->DeactivateHandler();
}
//---------------------------------------------------------------------------
// @function:
// CParseHandlerScalarMinMax::Emmt
//
// @doc:
// Parse the min/max type from the attribute value
//
//---------------------------------------------------------------------------
CDXLScalarMinMax::EdxlMinMaxType
CParseHandlerScalarMinMax::Emmt
(
const XMLCh *xmlszLocalname
)
{
if (0 == XMLString::compareString(CDXLTokens::XmlstrToken(EdxltokenScalarMin), xmlszLocalname))
{
return CDXLScalarMinMax::EmmtMin;
}
if (0 == XMLString::compareString(CDXLTokens::XmlstrToken(EdxltokenScalarMax), xmlszLocalname))
{
return CDXLScalarMinMax::EmmtMax;
}
return CDXLScalarMinMax::EmmtSentinel;
}
//EOF
| [
"fengttt@gmail.com"
] | fengttt@gmail.com |
cae914ff55fe0b251a7648c0d88e8cad5509b91f | c42ecbc5bb6bc33acc9833b738996e537d092041 | /pothos-library/lib/Callable/Callable.cpp | c008835d92bc76f694c538d0dc7c1fceef40655d | [
"BSL-1.0"
] | permissive | lrmodesgh/pothos | abd652bc9b880139fa9fb2016b88cb21e0be1f0a | 542c6cd19e1aa2ee1fda47fbc131431ed351ae31 | refs/heads/master | 2020-12-26T02:10:22.037019 | 2015-07-13T08:28:57 | 2015-07-13T08:28:57 | 39,064,513 | 1 | 0 | null | 2015-07-14T08:56:33 | 2015-07-14T08:56:33 | null | UTF-8 | C++ | false | false | 4,479 | cpp | // Copyright (c) 2013-2015 Josh Blum
// SPDX-License-Identifier: BSL-1.0
#include <Pothos/Callable/CallableImpl.hpp>
#include <Pothos/Callable/Exception.hpp>
#include <Pothos/Object/Exception.hpp>
#include <Pothos/Util/TypeInfo.hpp>
#include <Poco/Format.h>
#include <cassert>
#include <algorithm> //min/max
#define MAX_SUPPORTED_NUM_ARGS 13
Pothos::Callable::Callable(void)
{
assert(not *this);
}
Pothos::Object Pothos::Callable::opaqueCall(const Object *inputArgs, const size_t numArgs) const
{
if (_impl == nullptr)
{
throw Pothos::CallableNullError("Pothos::Callable::call()", "null Callable");
}
const size_t numCallArgs = _impl->getNumArgs();
if (numCallArgs > MAX_SUPPORTED_NUM_ARGS)
{
throw Pothos::CallableNullError("Pothos::Callable::call()", "more args than supported");
}
//Create callArgs which is a combination of inputArgs and boundArgs
Object callArgs[MAX_SUPPORTED_NUM_ARGS];
size_t inputArgsIndex = 0;
for (size_t i = 0; i < numCallArgs; i++)
{
//is there a binding? if so use it
if (_boundArgs.size() > i and _boundArgs[i])
{
callArgs[i] = _boundArgs[i];
}
//otherwise, use the next available input argument
else
{
if (numArgs <= inputArgsIndex)
{
throw Pothos::CallableArgumentError("Pothos::Callable::call()", Poco::format(
"expected input argument at %d", int(inputArgsIndex)));
}
callArgs[i] = inputArgs[inputArgsIndex++];
}
//perform conversion on arg to get an Object of the exact type
try
{
callArgs[i] = callArgs[i].convert(_impl->type(int(i)));
}
catch(const Pothos::ObjectConvertError &ex)
{
throw Pothos::CallableArgumentError("Pothos::Callable::call()", Poco::format(
"failed to convert arg%d\n%s", int(i), std::string(ex.displayText())));
}
}
return _impl->call(callArgs);
}
size_t Pothos::Callable::getNumArgs(void) const
{
if (_impl == nullptr)
{
throw Pothos::CallableNullError("Pothos::Callable::getNumArgs()", "null Callable");
}
size_t numArgs = _impl->getNumArgs();
//remove bound args from the count
for (size_t i = 0; i < std::min(_impl->getNumArgs(), _boundArgs.size()); i++)
{
if (_boundArgs[i]) numArgs--;
}
return numArgs;
}
const std::type_info &Pothos::Callable::type(const int argNo) const
{
if (_impl == nullptr)
{
throw Pothos::CallableNullError("Pothos::Callable::type()", "null Callable");
}
if (argNo < -1)
{
throw Pothos::CallableArgumentError("Pothos::Callable::type()", Poco::format(
"unexpected argNo %d", int(argNo)));
}
if (argNo >= int(this->getNumArgs()))
{
throw Pothos::CallableArgumentError("Pothos::Callable::type()", Poco::format(
"unexpected argNo %d but call takes %d arguments", int(argNo), int(this->getNumArgs())));
}
if (argNo == -1) return _impl->type(-1);
//add bound args into the actual arg number
int skippedIndexes = 0;
for (size_t i = 0; i < _boundArgs.size(); i++)
{
if (_boundArgs[i]) skippedIndexes++;
else if (int(i) == argNo + skippedIndexes) break;
}
return _impl->type(argNo + skippedIndexes);
}
Pothos::Callable &Pothos::Callable::bind(Object &&val, const size_t argNo)
{
if (_boundArgs.size() <= argNo) _boundArgs.resize(argNo+1);
_boundArgs[argNo] = val;
return *this;
}
Pothos::Callable &Pothos::Callable::unbind(const size_t argNo)
{
return this->bind(Object(), argNo);
}
std::string Pothos::Callable::toString(void) const
{
if (_impl == nullptr) return "null";
std::string output;
output += Util::typeInfoToString(this->type(-1));
output += "(";
for (size_t i = 0; i < this->getNumArgs(); i++)
{
if (i != 0) output += ", ";
output += Util::typeInfoToString(this->type(int(i)));
}
output += ")";
return output;
}
Pothos::Detail::CallableContainer::CallableContainer(void)
{
return;
}
Pothos::Detail::CallableContainer::~CallableContainer(void)
{
return;
}
Pothos::Callable::operator bool(void) const
{
return bool(_impl);
}
bool Pothos::operator==(const Callable &lhs, const Callable &rhs)
{
return (lhs._impl == rhs._impl) and (lhs._boundArgs == rhs._boundArgs);
}
| [
"josh@joshknows.com"
] | josh@joshknows.com |
de58b6c38d7d7b62cb424fe4b2c7b1aba0a26288 | a3b0e7acb6e0d7e73f5e369a17f367ac7caf83fb | /C++/index/hello_world/strings.cpp | 08da54c7b8698cab8df8e0251e7c2703036d1765 | [] | no_license | jadedocelot/Bin2rong | f9d35731ca7df50cfba36141d249db2858121826 | 314b509f7b3b3a6a5d6ce589dbc57a2c6212b3d7 | refs/heads/master | 2023-03-24T14:03:32.374633 | 2021-03-19T00:05:24 | 2021-03-19T00:05:24 | 285,387,043 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,491 | cpp | C++ Strings
________________________________
// Strings are used for storing TEXT
string greeting = "Hello world!" // string type variable storing a, you know it, a variable
#include <iostream>
using namespace std;
int main() {
string warmGreet = "Hello world!";
cout << warmGreet << endl;
return 0;
}
// Below you will find a lil mirror string example
// To use strings, you must include an additional header file in the source code, the <string> library;
#include <iostream>
#include <string> // Include the string library
using namespace std;
int main() {
string copyCat; // Create a string (type) variable
cout << "What's the word?: ";
cin >> copyCat;
cout << copyCat << endl;
return 0;
}
C++ String Concentration
_______________________________
// The (+) operator can be used between strings to add them together to make a new string. this is called (concatentation)
#include <iostream>
#include <string> // Include the string library
using namespace std;
int main(){
string first = "Edgar";
string last = "Ortega";
string space = " "; // Ive even gone ahead and stored a space value into a variable. This can be done with a double quote "" and single quotes' '
string fullName = first + space + last; // we use the (+) operator to string together 3 variable and place them into 1 new variable
cout << fullName << endl; // OUTPUT: Edgar Ortega
return 0;
}
Append
---------------
./
// A string in C++ is actually an object, which contains functions that can perform certain operatios on strings. For example, you can also concatenate string with the append() function.
#include <iostream>
#include <string>
using namespace std;
int main() {
string first = "Edgar ";
string last = "Ortega";
string fullName = first.append(last); /// the append() function is used to conncetenate (first) and (last)
cout << fullName << endl;
return 0;
}
// SUPPOSEDLY, the append() function is faster than say using the (+) operator. Although for testing, the user might be better off using (+)
/// THE FOLLOWING HAS BEEN COVERED IN OUR VARIABLES CATAGORY
////Numbers are added. Strings are concatenated.
// Numbers are being added below:
#include <iostream>
using namespace std;
int main(){
int x = 12;
int y = 18;
int sum = x +y;
cout << sum << endl;
return 0;
}
// Strings being added (concatenation)
#include <iostream>
#include <string>
using namespace std;
int main() {
string a = "20";
string b = "20";
string year = a + b;
cout << "The year is" << " " << year << endl;
return 0;
}
// Though note that its not possible to add a string and an int together, an error message will be returned if attempted
#include <string>
using namespace std;
int main() {
int a = 20;
string b = "20";
string year = a + b;
cout << year << endl;
return 0;
}
C++ String Length
// To get the length of a stringm use the lenth() function:
#include <iostream>
#include <string>
using namespace std;
int main(){
string myLeng = "123456789";
cout << "And the length of the string is: "<< myLeng.length() << endl;
// By adding the VARkeyword.length() to the right side of the left-shift (<<), cout will output the numeric length of the myLeng string
return 0;
}
NOTE: /// That the size() function is just another alias if length()
#include <iostream>
#include <string>
using namespace std;
int main(){
string myLeng = "123456789";
cout << "And the length of the string is: "<< myLeng.size() << endl;
// By adding the VARkeyword.length() to the right side of the left-shift (<<), cout will output the numeric length of the myLeng string
return 0;
}
C++ Access Strings
// You can access the charaters in a string by reffering to its index number inside square brackets []
#include <iostream>
#include <string>
using namespace std;
int main() {
string truth = "The good times are killing me";
cout << truth[4]; // will output "g", since g is positioned #4 within the truth string
return 0;
}
Change String Characters
/// To chage the value of a specific charater in a string, refer to the index number, AND USE SINGLE QUOTES:
#include <iostream>
#include <string>
using namespace std;
int main() {
string truth = "The good times are killing me";
truth[4] = 'm';
cout << truth; /// OUTPUTS: "The mood times are killing me"
return 0;
}
User Inputs Strings
// It is possible to use the extraction operator (Right Shift Operator) >> on (cin) to display a string entered by a user:
#include <iostream>
#include <string>
using namespace std;
int main() {
string firstName;
cout << "Type your first name: ";
cin >> firstName;
cout << "Please verify that this is the correct name: " << firstName << "?" << endl; // OUTPUT: Please verify that this is the correct name: Edgar?
return 0;
}
/// HOWEVER!
// (cin) condiders a space (whitespace, tabs, etc) as a terminating character, which means that it can only display a single word (even if you type many words)
#include <iostream>
#include <string>
using namespace std;
int main() {
string fullName;
cout << "Type your full name:";
cin >> fullName;
cout << "Confirm your full name: " << fullName << endl; //OUTPUT: Edgar
return 0;
}
// In the example above the user expects the fuction to print out the full name (Edgar Ortega) but it is only presented with (Edgar
// That't why, when working with string, we often use the GETLINE() function to read a line of text. It takes (cin) as the first parameter, and the string variable as second:
#include <iostream>
#include <string>
using namespace std;
int main() {
string fullName;
cout << "Type your full name:";
getline (cin, fullName);
cout << "Confirm your full name: " << fullName << '?' << endl; // OUTPUT: Edgar Ortega
return 0;
}
C++ String Namespace
// You might see some C++ programs that runs WITHOUT the standard namespace library. The (using namespace std) line can be omitted and replaced with the (std) keyword
// Followed by the :: operator for string (and cout)objects
#include <iostream>
#include <string>
int main() {
std::string greet = "Hello world!";
std::cout << greet;
return 0;
}
// In the end it is a personal preference on whether one would prefer to use nameapce or rogue std::
| [
"eabelortega@gmail.com"
] | eabelortega@gmail.com |
b9dd19a8df93f0d6c1a4e46ae5fd3db760036658 | e6d0b029198c1074960a7f0390f162445f1b69a3 | /bullet.cpp | 91b6b0626d9e71cddc5a4328d1ef2d20d4f4f637 | [] | no_license | ZhanruiLiang/Yet-Yet-Another-Tower-Defence | 6de697ab0444ce01445dcb961dfabeabda40bbb9 | 876a1a1d7db0cac8784869a294fb278b6f124b74 | refs/heads/master | 2021-01-18T11:20:52.661233 | 2011-05-15T12:09:56 | 2011-05-15T12:09:56 | 1,664,787 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,689 | cpp | #include "bullet.h"
#include "tower.h"
#include "creep.h"
#include <cstddef> // For: NULL
#include <ciso646> // For: and, or, not
#include <cmath> // For: hypot
#include <cassert> // For: assert
Bullet::Bullet()
:_tower(NULL),
_creep(NULL),
_x(.0),
_y(.0),
_speed(.0),
_type(0),
_collided(false) {
}
Bullet::~Bullet() {
}
void Bullet::setTower(Tower *tower) {
_tower = tower;
}
void Bullet::setCreep(Creep *creep) {
_creep = creep;
}
void Bullet::update() {
#ifdef DEBUG
assert(_creep != NULL);
#endif
// Get Creep position
double cx = _creep->getX();
double cy = _creep->getY();
// Get distance
double dx = cx - _x;
double dy = cy - _y;
double dist = hypot(dx, dy);
// If can move to creep in one step
if (dist <= _speed) {
_x = cx;
_y = cy;
// decrease creeps health
_creep->decreaseHealth(_damage);
_collided = true;
return;
}
// Move
_x += dx * _speed / dist;
_y += dy * _speed / dist;
}
void Bullet::setType(Bullet::BulletType type) {
_type = type;
}
void Bullet::setX(double x) {
_x = x;
}
void Bullet::setY(double y) {
_y = y;
}
void Bullet::setSpeed(double speed) {
_speed = speed;
}
void Bullet::setDamage(int damage) {
_damage = damage;
}
Bullet::BulletType Bullet::getType() const {
return _type;
}
double Bullet::getX() const {
return _x;
}
double Bullet::getY() const {
return _y;
}
double Bullet::getSpeed() const {
return _speed;
}
int Bullet::getDamage() const {
return _damage;
}
bool Bullet::isDead() const {
return _collided or _creep->isDead();
}
| [
"xueqiao1227@gmail.com"
] | xueqiao1227@gmail.com |
268c526ddb7e9b9daecd7d7b38762d3cd432a485 | 87243a46f7da6b89582ac2ded6aad29a41845c8c | /tsTransportStream.h | f1de2d439b57f8dd348769320965c9ed3e6f9cbf | [] | no_license | d4nielix/TS_Parser | 3e5b170e55cd259200dc30b9049e7664ef62c17d | 12e6cecd063efc1007be82119786dde9e3e064d2 | refs/heads/master | 2022-11-19T02:34:37.172015 | 2020-07-19T13:21:52 | 2020-07-19T13:21:52 | 267,615,802 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,768 | h | #pragma once
#include "tsCommon.h"
#include <string>
using namespace std;
/*
MPEG-TS packet:
` 3 2 1 0 `
` 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 `
` +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ `
` 0 | Header | `
` +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ `
` 4 | Adaptation field + Payload | `
` | | `
` 184 | | `
` +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ `
MPEG-TS packet header:
` 3 2 1 0 `
` 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 `
` +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ `
` 0 | SB |E|S|T| PID |TSC|AFC| CC | `
` +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ `
Sync byte (SB ) : 8 bits
Transport error indicator (E ) : 1 bit
Payload unit start indicator (S ) : 1 bit
Transport priority (T ) : 1 bit
Packet Identifier (PID) : 13 bits
Transport scrambling control (TSC) : 2 bits
Adaptation field control (AFC) : 2 bits
Continuity counter (CC ) : 4 bits
*/
//=============================================================================================================================================================================
class xTS
{
public:
static constexpr uint32_t TS_PacketLength = 188;
static constexpr uint32_t TS_HeaderLength = 4;
static constexpr uint32_t PES_HeaderLength = 6;
static constexpr uint32_t BaseClockFrequency_Hz = 90000; //Hz
static constexpr uint32_t ExtendedClockFrequency_Hz = 27000000; //Hz
static constexpr uint32_t BaseClockFrequency_kHz = 90; //kHz
static constexpr uint32_t ExtendedClockFrequency_kHz = 27000; //kHz
static constexpr uint32_t BaseToExtendedClockMultiplier = 300;
};
//=============================================================================================================================================================================
class xTS_PacketHeader
{
public:
enum class ePID : uint16_t
{
PAT = 0x0000,
CAT = 0x0001,
TSDT = 0x0002,
IPMT = 0x0003,
NIT = 0x0010, //DVB specific PID
SDT = 0x0011, //DVB specific PID
NuLL = 0x1FFF,
};
protected:
uint8_t syncByte;
bool transportErrorIndicator;
bool payloadUnitStartIndicator;
bool transportPriority;
uint16_t packetIdentifier;
uint8_t transportScramblingControl;
uint8_t adaptationFieldControl;
uint8_t continuityCounter;
public:
void Reset();
int32_t Parse(uint8_t* Input);
int32_t Parse2(uint8_t* Input);
void Print() const;
bool hasAdaptationField() const;
bool hasPayload() const;
const uint8_t &get_syncByte() const;
const bool &get_transportErrorIndicator() const;
const bool &get_payloadUnitStartIndicator() const;
const bool &get_transportPriority() const;
const uint16_t &get_packetIdentifier() const;
const uint8_t &get_transportScramblingControl() const;
const uint8_t &get_adaptationFieldControl() const;
const uint8_t &get_continuityCounter() const;
void set_syncByte(const uint8_t &temp);
void set_transportErrorIndicator(const bool &temp);
void set_payloadUnitStartIndicator(const bool &temp);
void set_transportPriority(const bool &temp);
void set_packetIdentifier(const uint16_t &temp);
void set_transportScramblingControl(const uint8_t &temp);
void set_adaptationFieldControl(const uint8_t &temp);
void set_continuityCounter(const uint8_t &temp);
};
//=============================================================================================================================================================================
class xTS_AdaptationField
{
protected:
uint8_t adaptationFieldLength;
bool discontinuityIndicator;
bool randomAccessIndicator;
bool elementaryStreamPriorityIndicator;
bool programClockReferenceFlag;
bool originalProgramClockReferenceFlag;
bool splicingPointFlag;
bool transportPrivateDataFlag;
bool adaptationFieldExtensionFlag;
public:
void Reset();
int32_t Parse(const uint8_t* Input, uint8_t AdaptationFieldControl);
void Print() const;
uint32_t getNumBytes() const;
const uint8_t &get_adaptationFieldLength() const;
const bool &get_discontinuityIndicator() const;
const bool &get_randomAccessIndicator() const;
const bool &get_elementaryStreamPriorityIndicator() const;
const bool &get_programClockReferenceFlag() const;
const bool &get_originalProgramClockReferenceFlag() const;
const bool &get_splicingPointFlag() const;
const bool &get_transportPrivateDataFlag() const;
const bool &get_adaptationFieldExtensionFlag() const;
void set_adaptationFieldLength(const uint8_t &temp);
void set_discontinuityIndicator(const bool &temp);
void set_randomAccessIndicator(const bool &temp);
void set_elementaryStreamPriorityIndicator(const bool &temp);
void set_programClockReferenceFlag(const bool &temp);
void set_originalProgramClockReferenceFlag(const bool &temp);
void set_splicingPointFlag(const bool &temp);
void set_transportPrivateDataFlag(const bool &temp);
void set_adaptationFieldExtensionFlag(const bool &temp);
};
//=============================================================================================================================================================================
class xPES_PacketHeader
{
public:
enum eStreamId : uint8_t
{
eStreamId_program_stream_map = 0xBC,
eStreamId_padding_stream = 0xBE,
eStreamId_private_stream_2 = 0xBF,
eStreamId_ECM = 0xF0,
eStreamId_EMM = 0xF1,
eStreamId_program_stream_directory = 0xFF,
eStreamId_DSMCC_stream = 0xF2,
eStreamId_ITUT_H222_1_type_E = 0xF8,
};
protected:
uint32_t m_PacketStartCodePrefix;
uint8_t m_StreamId;
uint16_t m_PacketLength;
uint32_t m_DataLength;
uint8_t PESScramblingControl;
bool PESPriority;
bool dataAlignmentIndicator;
bool copyright;
bool originalOrCopy;
uint8_t PTSDTSFlags;
bool ESCRFlag;
bool ESRateFlag;
bool DSMTrickModeFlag;
bool additionalCopyInfoFlag;
bool PESCRCFlag;
bool PESExtensionFlag;
uint8_t PESHeaderDataLength;
public:
void Reset();
int32_t Parse(const uint8_t* Input);
void Print() const;
uint32_t getPacketStartCodePrefix() const { return m_PacketStartCodePrefix; }
uint8_t getStreamId() const { return m_StreamId; }
uint16_t getPacketLength() const { return m_PacketLength; }
uint32_t getDataLength() const { return m_DataLength; }
const uint8_t &get_PESScramblingControl() const;
const bool &get_PESPriority() const;
const bool &get_dataAlignmentIndicator() const;
const bool &get_copyright() const;
const bool &get_originalOrCopy() const;
const uint8_t &get_PTSDTSFlags() const;
const bool &get_ESCRFlag() const;
const bool &get_ESRateFlag() const;
const bool &get_DSMTrickModeFlag() const;
const bool &get_additionalCopyInfoFlag() const;
const bool &get_PESCRCFlag() const;
const bool &get_PESExtensionFlag() const;
const uint8_t &get_PESHeaderDataLength() const;
void set_PacketStartCodePrefix(const uint32_t &temp);
void set_StreamId(const uint8_t &temp);
void set_PacketLength(const uint16_t &temp);
void set_PESScramblingControl(const uint8_t &temp);
void set_PESPriority(const bool &temp);
void set_dataAlignmentIndicator(const bool &temp);
void set_copyright(const bool &temp);
void set_originalOrCopy(const bool &temp);
void set_PTSDTSFlags(const uint8_t &temp);
void set_ESCRFlag(const bool &temp);
void set_ESRateFlag(const bool &temp);
void set_DSMTrickModeFlag(const bool &temp);
void set_additionalCopyInfoFlag(const bool &temp);
void set_PESCRCFlag(const bool &temp);
void set_PESExtensionFlag(const bool &temp);
void set_PESHeaderDataLength(const uint8_t &temp);
};
//=============================================================================================================================================================================
class xPES_Assembler
{
public:
enum class eResult : int32_t
{
UnexpectedPID = 1,
StreamPacketLost = 2,
AssemblingStarted = 3,
AssemblingContinue = 4,
AssemblingFinished = 5,
};
protected:
int32_t m_PID;
uint8_t* m_Buffer;
uint32_t m_BufferSize;
uint32_t m_DataOffset;
int8_t m_LastContinuityCounter;
bool m_Started;
xPES_PacketHeader m_PESH;
uint8_t m_EndContinuityCounter;
public:
xPES_Assembler();
~xPES_Assembler();
void Init(int32_t PID);
eResult AbsorbPacket(const uint8_t* TransportStreamPacket, const xTS_PacketHeader* PacketHeader, const xTS_AdaptationField* AdaptationField);
void PrintPESH() const { m_PESH.Print(); }
uint8_t* getPacket() { return m_Buffer; }
int32_t getNumPacketBytes() const { return m_DataOffset; }
void set_m_PID(int32_t mPID);
protected:
void xBufferReset();
void xBufferAppend(const uint8_t* Data, int32_t Size);
}; | [
"daniel.cichosz1@gmail.com"
] | daniel.cichosz1@gmail.com |
5031d39a400e9bcfe8e2e54efdc9c06bfa84ef25 | dee0136a5c9c91f2c69dba4f3360b237348caab6 | /use_vectors.cpp | d892e16c3ce404237ed7c375867cd718f2549412 | [] | no_license | er537/CppLinAlg | 1c2916a9c6e8f3c9a099bacc2c12177c78b2b46a | b8aeeaa9225d4eb79e5b4bba438dfcae96601f92 | refs/heads/master | 2023-07-13T03:11:11.212724 | 2021-08-26T17:06:19 | 2021-08-26T17:06:19 | 380,000,565 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,485 | cpp | #include <stdlib.h>
#include <iostream>
#include <fstream>
#include <cassert>
#include "Exception.hpp"
#include "Matrix.hpp"
#include "Vector.hpp"
void testfunc(){
Vector b(3);
b(1) = 2;
b(2) = 5;
b(3) = 12;
Matrix m(3,3);
m(1,1) = 1;
m(1,2) = 2;
m(1,3) = -1;
m(2,1) = 1;
m(2,2) = -1;
m(2,3) = 2;
m(3,1) = 2;
m(3,2) = 2;
m(3,3) = 2;
Matrix m2(3,3);
m2(1,1) = 1;
m2(1,2) = 2;
m2(1,3) = -1;
m2(2,1) = 1;
m2(2,2) = -1;
m2(2,3) = 2;
m2(3,1) = 2;
m2(3,2) = 2;
m2(3,3) = 2;
Matrix c(3,3);
c(1,1) = 2;
c(1,2) = 4;
c(1,3) = -2;
c(2,1) = 2;
c(2,2) = -2;
c(2,3) = 4;
c(3,1) = 4;
c(3,2) = 4;
c(3,3) = 4;
Matrix c2(3,3);
c2(1,1) = 2;
c2(1,2) = -4;
c2(1,3) = 2;
c2(2,1) = 8;
c2(2,2) = 14;
c2(2,3) = 2;
c2(3,1) = 16;
c2(3,2) = 12;
c2(3,3) = 12;
Matrix d(3,3);
if (!compare(m,m2)){
throw Exception("Test not passed","Comparison operator failed.");
}
Matrix m3(m);
if (!compare(m3,m)){
throw Exception("Test not passed","Copy constructor failed.");
}
m3 = c;
if (!compare(m3,c)){
throw Exception("Test not passed","Assignment operator failed.");
}
m3 = m + m2;
if (!compare(m3,c)){
throw Exception("Test not passed","Addition operator failed.");
}
m3 = m - m2;
if (!compare(m3,d)){
throw Exception("Test not passed","Subtraction operator failed.");
}
m3 = m*c;
if (!compare(m3,c2)){
throw Exception("Test not passed","Matrix-matrix multiplication operator failed.");
}
Vector x(3);
x(1) = 1;
x(2) = 2;
x(3) = 3;
Vector v = m*x;
if (!compare(v,b)){
throw Exception("Test not passed","Matrix-vector multiplication operator failed.");
}
m3 = m*2;
if (!compare(m3,c)){
throw Exception("Test not passed","Matrix-vector multiplication operator failed.");
}
Vector s(2);
s(1) = 3;
s(2) = 3;
if (!compare(s,size(m))){
throw Exception("Test not passed","Matrix-vector multiplication operator failed.");
}
if (!(-6==determinant(m,3))){
throw Exception("Test not passed","Determinant function failed.");
}
int l = 10;
Matrix A(l,l);
for (int i=1;i<=l;i++){
for (int j=1;j<=l;j++){
A(i,j) = std::rand()%10;
//A(i,j)=i+j;
}
}
double tol = 0.000001;
Vector X(l);
for (int i=1;i<=l;i++){
X(i)=4*i;
}
Vector B=A*X;
//backslash
std::chrono::steady_clock::time_point begin = std::chrono::steady_clock::now();
v=B/A;
std::chrono::steady_clock::time_point end = std::chrono::steady_clock::now();
//std::cout << "Time difference backslash = " << std::chrono::duration_cast<std::chrono::microseconds>(end - begin).count() << "[µs]" << std::endl;
for (int i=1;i<=l;i++){
if (abs(X(i)-v(i))>tol){
throw Exception("Test not passed","Backslash operator failed.");
}
}
//Gaussian Elimination
begin = std::chrono::steady_clock::now();
v = gausElim(A,B);
end = std::chrono::steady_clock::now();
//std::cout << "Time difference GMRES restarted = " << std::chrono::duration_cast<std::chrono::microseconds>(end - begin).count() << "[µs]" << std::endl;
for (int i=1;i<=l;i++){
if (abs(X(i)-v(i))>tol){
throw Exception("Test not passed","Gaussian elimination failed.");
}
}
//restarted GMRES
begin = std::chrono::steady_clock::now();
v = GMRES(A,B,5,tol,100);
end = std::chrono::steady_clock::now();
//std::cout << "Time difference GMRES restarted = " << std::chrono::duration_cast<std::chrono::microseconds>(end - begin).count() << "[µs]" << std::endl;
for (int i=1;i<=l;i++){
if (abs(X(i)-v(i))>tol){
throw Exception("Test not passed","GMRES restarted failed.");
}
}
//GMRES
begin = std::chrono::steady_clock::now();
v = GMRES(A,B);
end = std::chrono::steady_clock::now();
//std::cout << "Time difference GMRES = " << std::chrono::duration_cast<std::chrono::microseconds>(end - begin).count() << "[µs]" << std::endl;
for (int i=1;i<=l;i++){
if (abs(X(i)-v(i))>tol){
throw Exception("Test not passed","GMRES linsolve failed.");
}
}
//CG
A = A.transpose() * A; //A^TA is always symmetric positive definite
B=A*X;
begin = std::chrono::steady_clock::now();
v = CG(A,B);
end = std::chrono::steady_clock::now();
//std::cout << "Time difference CG = " << std::chrono::duration_cast<std::chrono::microseconds>(end - begin).count() << "[µs]" << std::endl;
for (int i=1;i<=l;i++){
if (abs(X(i)-v(i))>tol){
throw Exception("Test not passed","CG failed.");
}
}
std::cout << "All tests passed";
}
int main(int argc, char* argv[])
{
try{
testfunc();
}
catch (Exception &ex)
{
ex.DebugPrint();
}
}
| [
"elliereid98@outlook.com"
] | elliereid98@outlook.com |
aeee9f6acf97ed7ffadd7c8b01358d4c4b56c48f | fa32d21c402a3b71338cd9acf1e4840eac65e357 | /final/julklappskop/submissions/accepted/js.cpp | d1267a44d07f65c69a6372c31db6e121c2d7e4d9 | [] | no_license | Kodsport/swedish-olympiad-2017 | 214a2bd2b87407d97e4338fef615f16d207845a2 | 9026820234dd5e71a98864aca86fc77787091ca5 | refs/heads/master | 2023-01-09T17:08:00.503674 | 2020-11-14T09:18:09 | 2020-11-14T09:19:06 | 74,255,043 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 972 | cpp | #include <bits/stdc++.h>
using namespace std;
#define rep(i, a, b) for(int i = a; i < (b); ++i)
#define trav(a, x) for(auto& a : x)
#define all(x) x.begin(), x.end()
#define sz(x) (int)(x).size()
#define scanf nope
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
int main() {
int K, N;
cin >> K >> N;
map<int, vector<pii>> pruned;
rep(i,0,K) {
vector<pii> likes;
rep(j,0,N) {
int happy;
cin >> happy;
likes.emplace_back(-happy, j);
}
sort(all(likes));
rep(j,0,K) {
int happy = -likes[j].first,
name = likes[j].second;
pruned[name].emplace_back(i, happy);
}
}
vector<int> mhappy(1<<K, 0);
trav(it, pruned) {
vector<int> nmhappy = mhappy;
rep(i,0,1<<K) {
trav(it2, it.second) {
if (i & (1 << it2.first)) continue;
nmhappy[i | (1 << it2.first)] = max(
nmhappy[i | (1 << it2.first)],
mhappy[i] + it2.second
);
}
}
mhappy.swap(nmhappy);
}
cout << mhappy.back() << endl;
}
| [
"johan.sannemo@gmail.com"
] | johan.sannemo@gmail.com |
8e2dddbb14e4362df0c23178f33909ce0e35ea57 | aca6003e83cf73fa61c577f513bfc9610a81eb79 | /Test/ActionsTest.h | b982b0ac8a9d65f75934db452f3f7d8208679aad | [] | no_license | temp-man/GTest | 57d2c7f3c4b96674e0bf094bc5e1c90d6ac144c5 | 8c0a9d6692d96618ae8dd2d7915a88b405abfbfc | refs/heads/master | 2021-01-19T18:54:29.894399 | 2014-06-22T14:08:15 | 2014-06-22T14:08:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,577 | h | #ifndef _ACTIONS_TEST_H_
#define _ACTIONS_TEST_H_
#include <gtest\gtest.h>
#include <tuple>
#include "Actions.h"
namespace calc
{
namespace test
{
static const double ERROR = 0.00005;
typedef std::tuple<action_type, double, double, double> args_with_result;
typedef std::tuple<action_type, size_t> args_with_size;
/// @brief valid params test class.
class action_valid_args : public testing::TestWithParam<args_with_result> {};
/// @brief invalid params test class.
class action_invalid_args : public testing::TestWithParam<args_with_size> {};
/// @brief valid args for action.
static const args_with_result should_work_args[] =
{
args_with_result (action_type::add, 12, 4, 16),
args_with_result (action_type::add, 3.3, -5.4, -2.1),
args_with_result (action_type::sub, 12, 4, 8),
args_with_result (action_type::sub, 3.3, -5.4, 8.7),
args_with_result (action_type::mull, 12, 4, 48),
args_with_result (action_type::mull, 3.3, -5.4, -17.82),
args_with_result (action_type::div, 12, 4, 3),
args_with_result (action_type::div, 3.3, -5.4, -0.6111),
};
/// @brief invalid args for action.
static const args_with_size should_throw_exception_args[] =
{
args_with_size (action_type::add, 1),
args_with_size (action_type::add, 3),
args_with_size (action_type::sub, 1),
args_with_size (action_type::sub, 3),
args_with_size (action_type::mull, 1),
args_with_size (action_type::mull, 3),
args_with_size (action_type::div, 1),
args_with_size (action_type::div, 3),
};
TEST_P (action_valid_args, should_work)
{
action_type type;
rsize_t size = 2;
double first, second;
double expected = 25;
std::tie(type, first, second, expected) = GetParam ();
double params[] = { first, second };
configurable_action<double> *action = create_action<double>(type);
double result = action->do_action (size, params);
ASSERT_NEAR(expected, result, ERROR);
delete action;
}
TEST_P (action_invalid_args, should_throw_exception)
{
action_type type;
rsize_t size = 2;
std::tie (type, size) = GetParam ();
double *params = new double[size];
configurable_action<double> *action = create_action<double> (type);
ASSERT_THROW (action->do_action (size, params), std::invalid_argument);
delete[] params;
delete action;
}
INSTANTIATE_TEST_CASE_P (actions_test, action_valid_args, testing::ValuesIn (should_work_args));
INSTANTIATE_TEST_CASE_P (actions_test, action_invalid_args, testing::ValuesIn (should_throw_exception_args));
}
}
#endif//_ACTIONS_TEST_H_ | [
"tremaskin.alexiy@gmail.com"
] | tremaskin.alexiy@gmail.com |
cd466e0aec69a5922c5119b234081b0256e7ba0c | 375c58a7a8f679124be5aedf04e100cd04bfed33 | /ext/enterprise_script_service/sandbox.cpp | deb96b5f9ed7c3c3a6d7f00b4c19beb6db3ad830 | [
"MIT"
] | permissive | fengyibo/script_core | 8251019b3d483e11fd393734e088218fa877ce30 | b44c0e93de8a177bd7fdbc9cdae683c184efeb52 | refs/heads/master | 2023-03-16T05:38:31.354634 | 2021-03-07T21:18:44 | 2021-03-07T21:18:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,298 | cpp | #include "sandbox.hpp"
#ifdef __linux__
#include "error.hpp"
#include "units.hpp"
#include <algorithm>
#include <climits>
#include <cstring>
#include <errno.h>
#include <fcntl.h>
#include <malloc.h>
#include <stdio.h>
#include <unistd.h>
#include <seccomp.h>
#include <sys/prctl.h>
#include <sys/resource.h>
#include <linux/seccomp.h>
void reserve_memory() {
mallopt(M_TRIM_THRESHOLD, 64 * MiB);
free(malloc(32 * MiB));
}
static void check_seccomp(int result) {
if (result != 0) {
leave(status_code::bad_seccomp_filter);
}
}
void sandbox() {
auto context = seccomp_init(SCMP_ACT_KILL);
if (context == nullptr) {
leave(status_code::bad_seccomp_filter);
}
check_seccomp(seccomp_rule_add_exact(
context, SCMP_ACT_ALLOW, SCMP_SYS(exit), 0));
check_seccomp(seccomp_rule_add_exact(
context, SCMP_ACT_ALLOW, SCMP_SYS(read), 1,
SCMP_A0(SCMP_CMP_EQ, STDIN_FILENO)));
check_seccomp(seccomp_rule_add_exact(
context, SCMP_ACT_ALLOW, SCMP_SYS(write), 1,
SCMP_A0(SCMP_CMP_EQ, STDOUT_FILENO)));
check_seccomp(seccomp_rule_add_exact(
context, SCMP_ACT_ALLOW, SCMP_SYS(write), 1,
SCMP_A0(SCMP_CMP_EQ, STDERR_FILENO)));
check_seccomp(seccomp_load(context));
seccomp_release(context);
}
#else
void reserve_memory() {}
void sandbox() {}
#endif
| [
"lehmann.craig@gmail.com"
] | lehmann.craig@gmail.com |
4f4f012c5649f1c36089e54afb6c1df996f6a94a | 18da01143c6a560df34884eeb5be6e4a7c744e24 | /I_GGX64/4/4对3/2马2兵对1马2兵.cpp | b3377404f4420a83040541dce4eb8578b1bc6d9a | [] | no_license | alanthinker/NewGG | 974832e6738b1cd0df01ab2c5b94489a4ccf53e9 | ead7b553954336b76a476922005cc578f68cc6f1 | refs/heads/master | 2022-07-05T02:46:18.030741 | 2020-05-16T14:03:36 | 2020-05-16T14:03:36 | 264,444,924 | 0 | 0 | null | 2020-05-16T13:37:04 | 2020-05-16T13:37:04 | null | GB18030 | C++ | false | false | 1,560 | cpp | #ifndef END_my_m_MT_R_2ma2pawn_B_1ma2pawn
#define END_my_m_MT_R_2ma2pawn_B_1ma2pawn
#include "..\\..\\chess.h"
#include "..\\..\\preGen.h"
#include "..\\..\\endgame\mat.h"
#include "2马2兵对1马2兵.cpp"
#include "..\\..\\white.h"
#else
#include "..\\..\\black.h"
#endif
//
//const int ADD_2MaXPawn_2Pao1Pawn_ByPawn[3] = {96, 64, 32}; //2马x兵对1炮2兵, 多兵的加分
//const int ADD_2Pao1Pawn_2MaXPawn_ByPawn[3] = {96, 64, 32}; //1炮2兵对2马x兵, 多兵的加分
void my_m_MT_R_2ma2pawn_B_1ma2pawn(typePOS &POSITION, EvalInfo &ei){
// ADD_MY
Square yk = your_king_pos;
Bitboard bmp = m_and(bb_my_pawn,MyLowBB[StoY(yk)]);
int pmok = (int)count_1s(bmp);
MY_EV_ADD(pmok * ADD_2MaXPawn_1Ma2Pawn_ByPawn[your_shi_num]);
// SUB
Square mk = my_king_pos;
Bitboard ymp = m_and(bb_your_pawn,MyUpBB[StoY(mk)]);
int pyok = (int)count_1s(ymp);
MY_EV_SUB(pyok * ADD_1Ma2Pawn_2MaXPawn_ByPawn[my_shi_num]);
}
//void m_MT_B_2ma2pawn_R_1ma2pawn(typePOS &POSITION, EvalInfo &ei){
//
// /*Square bk = PieceListStart(board,BKING);
//
// for(int from = PieceListStart(board,RPAWN); from > 0x32; from = NextPiece(board,from)){
// if(StoY(from) > StoY(bk)){
// board->mulScore += ADD_1Ma2Pawn_2MaXPawn_ByPawn[board->B_shi];
// }
// }
//
// Square rk = PieceListStart(board,RKING);
//
// for(int from = PieceListStart(board,BPAWN); from > 0x32; from = NextPiece(board,from)){
// if(StoY(from) < StoY(rk)){
// board->mulScore -= ADD_2MaXPawn_1Ma2Pawn_ByPawn[board->R_shi];
// }
// }
//
// */
//
//}
| [
"keersun@qq.com"
] | keersun@qq.com |
418aa7f44364a197d9395a2e512d3aa8290f806b | a366f8afe981b2c17877547cccaae35a666cf73d | /170310_winAPI/stdafx.cpp | 48cb12e9b03c0109afb529ef8b6106304cb83f1b | [] | no_license | ghkdtlsgus/2DAPI | fecc03130e99c463d2cb7414272aaaf0873cd438 | 925d1f7429d89f496f16aa8b2015c4ef2bcc244e | refs/heads/master | 2020-12-23T12:49:17.845261 | 2020-01-30T07:03:33 | 2020-01-30T07:03:33 | 237,133,510 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 331 | cpp | // stdafx.cpp : 표준 포함 파일만 들어 있는 소스 파일입니다.
// 170310_winAPI.pch는 미리 컴파일된 헤더가 됩니다.
// stdafx.obj에는 미리 컴파일된 형식 정보가 포함됩니다.
#include "stdafx.h"
// TODO: 필요한 추가 헤더는
// 이 파일이 아닌 STDAFX.H에서 참조합니다.
| [
"igloo2017@naver.com"
] | igloo2017@naver.com |
ac11d8a21ca304eafc38dcde5760805b64daaedd | 339378c934e8702c08fa35e4340f94254c1f8483 | /final/2016/server.cpp | 49a558674cafa7af064e2f7406f6c42febe870f7 | [] | no_license | eggegg31415/np_2019_fall | a71a3a637b9744ce67a4d526890dbb091e47784e | d884a0c7b4f07eeb2e7f9590f2c5b261818dd2ca | refs/heads/master | 2022-04-18T16:31:30.920236 | 2020-04-01T14:09:40 | 2020-04-01T14:09:40 | 230,603,045 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,405 | cpp | #include<stdio.h>
#include <iostream>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/select.h>
#include <errno.h>
#include <fcntl.h>
#include <string>
#include <fstream>
#include <vector>
using namespace std;
int main(int argc, char** argv){
int fd_listen[5];
struct sockaddr_in servaddr;
int port[5] = {10788,10155,10123,10589,10952};
//set server address
for (int i =0 ; i<5; i++){
bzero(&servaddr, sizeof(servaddr));
servaddr.sin_family = AF_INET;
servaddr.sin_addr.s_addr = htonl(INADDR_ANY);
servaddr.sin_port = htons(port[i]);
//prepare socket
if ((fd_listen[i] = socket(AF_INET, SOCK_STREAM, 0)) < 0)
{
cout << "socket error" << endl;
exit(-1);
}
int on=1;
if(setsockopt(fd_listen[i],SOL_SOCKET,SO_REUSEADDR,(void*)&on,sizeof(on))<0)
cout<<"false";
//bind socket with addr
if (bind(fd_listen[i], (struct sockaddr *)&servaddr, sizeof(servaddr)) < 0)
{
cout << "bind error" << endl;
exit(-1);
}
//listen
if (listen(fd_listen[i], 100) < 0)
{
cout << "listen error" << endl;
exit(-1);
}
}
int fd_accept[5];
for (int j =0 ; j<5; j++){
if((fd_accept[j] = accept(fd_listen[j],(struct sockaddr *)NULL,NULL)) < 0)
{
if(errno == EINTR)
continue;
else
cout << "accept error" << endl;
}
}
return 0;
}
| [
"eggegg31415.cs06@g2.nctu.edu.tw"
] | eggegg31415.cs06@g2.nctu.edu.tw |
f31396cfae8bf7b9a05652abdaab24a4de1636bf | a2206795a05877f83ac561e482e7b41772b22da8 | /Source/PV/build/VTK/Wrapping/Python/vtkParametricFigure8KleinPython.cxx | f9adf6669516e53a0f0c077023901031ead211d2 | [] | no_license | supreethms1809/mpas-insitu | 5578d465602feb4d6b239a22912c33918c7bb1c3 | 701644bcdae771e6878736cb6f49ccd2eb38b36e | refs/heads/master | 2020-03-25T16:47:29.316814 | 2018-08-08T02:00:13 | 2018-08-08T02:00:13 | 143,947,446 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,595 | cxx | // python wrapper for vtkParametricFigure8Klein
//
#define VTK_WRAPPING_CXX
#define VTK_STREAMS_FWD_ONLY
#include "vtkPythonArgs.h"
#include "vtkPythonOverload.h"
#include "vtkConfigure.h"
#include <vtksys/ios/sstream>
#include "vtkIndent.h"
#include "vtkParametricFigure8Klein.h"
#if defined(VTK_BUILD_SHARED_LIBS)
# define VTK_PYTHON_EXPORT VTK_ABI_EXPORT
# define VTK_PYTHON_IMPORT VTK_ABI_IMPORT
#else
# define VTK_PYTHON_EXPORT VTK_ABI_EXPORT
# define VTK_PYTHON_IMPORT VTK_ABI_EXPORT
#endif
extern "C" { VTK_PYTHON_EXPORT void PyVTKAddFile_vtkParametricFigure8Klein(PyObject *, const char *); }
extern "C" { VTK_PYTHON_EXPORT PyObject *PyVTKClass_vtkParametricFigure8KleinNew(const char *); }
#ifndef DECLARED_PyVTKClass_vtkParametricFunctionNew
extern "C" { PyObject *PyVTKClass_vtkParametricFunctionNew(const char *); }
#define DECLARED_PyVTKClass_vtkParametricFunctionNew
#endif
static const char **PyvtkParametricFigure8Klein_Doc();
static PyObject *
PyvtkParametricFigure8Klein_GetClassName(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "GetClassName");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkParametricFigure8Klein *op = static_cast<vtkParametricFigure8Klein *>(vp);
PyObject *result = NULL;
if (op && ap.CheckArgCount(0))
{
const char *tempr = (ap.IsBound() ?
op->GetClassName() :
op->vtkParametricFigure8Klein::GetClassName());
if (!ap.ErrorOccurred())
{
result = ap.BuildValue(tempr);
}
}
return result;
}
static PyObject *
PyvtkParametricFigure8Klein_IsA(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "IsA");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkParametricFigure8Klein *op = static_cast<vtkParametricFigure8Klein *>(vp);
char *temp0 = NULL;
PyObject *result = NULL;
if (op && ap.CheckArgCount(1) &&
ap.GetValue(temp0))
{
int tempr = (ap.IsBound() ?
op->IsA(temp0) :
op->vtkParametricFigure8Klein::IsA(temp0));
if (!ap.ErrorOccurred())
{
result = ap.BuildValue(tempr);
}
}
return result;
}
static PyObject *
PyvtkParametricFigure8Klein_NewInstance(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "NewInstance");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkParametricFigure8Klein *op = static_cast<vtkParametricFigure8Klein *>(vp);
PyObject *result = NULL;
if (op && ap.CheckArgCount(0))
{
vtkParametricFigure8Klein *tempr = (ap.IsBound() ?
op->NewInstance() :
op->vtkParametricFigure8Klein::NewInstance());
if (!ap.ErrorOccurred())
{
result = ap.BuildVTKObject(tempr);
if (result && PyVTKObject_Check(result))
{
PyVTKObject_GetObject(result)->UnRegister(0);
PyVTKObject_SetFlag(result, VTK_PYTHON_IGNORE_UNREGISTER, 1);
}
}
}
return result;
}
static PyObject *
PyvtkParametricFigure8Klein_SafeDownCast(PyObject *, PyObject *args)
{
vtkPythonArgs ap(args, "SafeDownCast");
vtkObject *temp0 = NULL;
PyObject *result = NULL;
if (ap.CheckArgCount(1) &&
ap.GetVTKObject(temp0, "vtkObject"))
{
vtkParametricFigure8Klein *tempr = vtkParametricFigure8Klein::SafeDownCast(temp0);
if (!ap.ErrorOccurred())
{
result = ap.BuildVTKObject(tempr);
}
}
return result;
}
static PyObject *
PyvtkParametricFigure8Klein_SetRadius(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "SetRadius");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkParametricFigure8Klein *op = static_cast<vtkParametricFigure8Klein *>(vp);
double temp0;
PyObject *result = NULL;
if (op && ap.CheckArgCount(1) &&
ap.GetValue(temp0))
{
if (ap.IsBound())
{
op->SetRadius(temp0);
}
else
{
op->vtkParametricFigure8Klein::SetRadius(temp0);
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkParametricFigure8Klein_GetRadius(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "GetRadius");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkParametricFigure8Klein *op = static_cast<vtkParametricFigure8Klein *>(vp);
PyObject *result = NULL;
if (op && ap.CheckArgCount(0))
{
double tempr = (ap.IsBound() ?
op->GetRadius() :
op->vtkParametricFigure8Klein::GetRadius());
if (!ap.ErrorOccurred())
{
result = ap.BuildValue(tempr);
}
}
return result;
}
static PyObject *
PyvtkParametricFigure8Klein_GetDimension(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "GetDimension");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkParametricFigure8Klein *op = static_cast<vtkParametricFigure8Klein *>(vp);
PyObject *result = NULL;
if (op && ap.CheckArgCount(0))
{
int tempr = (ap.IsBound() ?
op->GetDimension() :
op->vtkParametricFigure8Klein::GetDimension());
if (!ap.ErrorOccurred())
{
result = ap.BuildValue(tempr);
}
}
return result;
}
static PyObject *
PyvtkParametricFigure8Klein_Evaluate(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "Evaluate");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkParametricFigure8Klein *op = static_cast<vtkParametricFigure8Klein *>(vp);
double temp0[3];
double save0[3];
const int size0 = 3;
double temp1[3];
double save1[3];
const int size1 = 3;
double temp2[9];
double save2[9];
const int size2 = 9;
PyObject *result = NULL;
if (op && ap.CheckArgCount(3) &&
ap.GetArray(temp0, size0) &&
ap.GetArray(temp1, size1) &&
ap.GetArray(temp2, size2))
{
ap.SaveArray(temp0, save0, size0);
ap.SaveArray(temp1, save1, size1);
ap.SaveArray(temp2, save2, size2);
if (ap.IsBound())
{
op->Evaluate(temp0, temp1, temp2);
}
else
{
op->vtkParametricFigure8Klein::Evaluate(temp0, temp1, temp2);
}
if (ap.ArrayHasChanged(temp0, save0, size0) &&
!ap.ErrorOccurred())
{
ap.SetArray(0, temp0, size0);
}
if (ap.ArrayHasChanged(temp1, save1, size1) &&
!ap.ErrorOccurred())
{
ap.SetArray(1, temp1, size1);
}
if (ap.ArrayHasChanged(temp2, save2, size2) &&
!ap.ErrorOccurred())
{
ap.SetArray(2, temp2, size2);
}
if (!ap.ErrorOccurred())
{
result = ap.BuildNone();
}
}
return result;
}
static PyObject *
PyvtkParametricFigure8Klein_EvaluateScalar(PyObject *self, PyObject *args)
{
vtkPythonArgs ap(self, args, "EvaluateScalar");
vtkObjectBase *vp = ap.GetSelfPointer(self, args);
vtkParametricFigure8Klein *op = static_cast<vtkParametricFigure8Klein *>(vp);
double temp0[3];
double save0[3];
const int size0 = 3;
double temp1[3];
double save1[3];
const int size1 = 3;
double temp2[9];
double save2[9];
const int size2 = 9;
PyObject *result = NULL;
if (op && ap.CheckArgCount(3) &&
ap.GetArray(temp0, size0) &&
ap.GetArray(temp1, size1) &&
ap.GetArray(temp2, size2))
{
ap.SaveArray(temp0, save0, size0);
ap.SaveArray(temp1, save1, size1);
ap.SaveArray(temp2, save2, size2);
double tempr = (ap.IsBound() ?
op->EvaluateScalar(temp0, temp1, temp2) :
op->vtkParametricFigure8Klein::EvaluateScalar(temp0, temp1, temp2));
if (ap.ArrayHasChanged(temp0, save0, size0) &&
!ap.ErrorOccurred())
{
ap.SetArray(0, temp0, size0);
}
if (ap.ArrayHasChanged(temp1, save1, size1) &&
!ap.ErrorOccurred())
{
ap.SetArray(1, temp1, size1);
}
if (ap.ArrayHasChanged(temp2, save2, size2) &&
!ap.ErrorOccurred())
{
ap.SetArray(2, temp2, size2);
}
if (!ap.ErrorOccurred())
{
result = ap.BuildValue(tempr);
}
}
return result;
}
static PyMethodDef PyvtkParametricFigure8Klein_Methods[] = {
{(char*)"GetClassName", PyvtkParametricFigure8Klein_GetClassName, METH_VARARGS,
(char*)"V.GetClassName() -> string\nC++: const char *GetClassName()\n\n"},
{(char*)"IsA", PyvtkParametricFigure8Klein_IsA, METH_VARARGS,
(char*)"V.IsA(string) -> int\nC++: int IsA(const char *name)\n\n"},
{(char*)"NewInstance", PyvtkParametricFigure8Klein_NewInstance, METH_VARARGS,
(char*)"V.NewInstance() -> vtkParametricFigure8Klein\nC++: vtkParametricFigure8Klein *NewInstance()\n\n"},
{(char*)"SafeDownCast", PyvtkParametricFigure8Klein_SafeDownCast, METH_VARARGS | METH_STATIC,
(char*)"V.SafeDownCast(vtkObject) -> vtkParametricFigure8Klein\nC++: vtkParametricFigure8Klein *SafeDownCast(vtkObject* o)\n\n"},
{(char*)"SetRadius", PyvtkParametricFigure8Klein_SetRadius, METH_VARARGS,
(char*)"V.SetRadius(float)\nC++: void SetRadius(double a)\n\nSet/Get the radius of the bottle. Default is 1.\n"},
{(char*)"GetRadius", PyvtkParametricFigure8Klein_GetRadius, METH_VARARGS,
(char*)"V.GetRadius() -> float\nC++: double GetRadius()\n\nSet/Get the radius of the bottle. Default is 1.\n"},
{(char*)"GetDimension", PyvtkParametricFigure8Klein_GetDimension, METH_VARARGS,
(char*)"V.GetDimension() -> int\nC++: virtual int GetDimension()\n\n"},
{(char*)"Evaluate", PyvtkParametricFigure8Klein_Evaluate, METH_VARARGS,
(char*)"V.Evaluate([float, float, float], [float, float, float], [float,\n float, float, float, float, float, float, float, float])\nC++: virtual void Evaluate(double uvw[3], double Pt[3],\n double Duvw[9])\n\nA Figure-8 Klein bottle.\n\nThis function performs the mapping $f(u,v) \\rightarrow (x,y,x) $,\nreturning it as Pt. It also returns the partial derivatives Du\nand Dv.$Pt = (x, y, z), Du = (dx/du, dy/du, dz/du), Dv = (dx/dv,\ndy/dv, dz/dv) $ . Then the normal is $N = Du X Dv $ .\n"},
{(char*)"EvaluateScalar", PyvtkParametricFigure8Klein_EvaluateScalar, METH_VARARGS,
(char*)"V.EvaluateScalar([float, float, float], [float, float, float],\n [float, float, float, float, float, float, float, float,\n float]) -> float\nC++: virtual double EvaluateScalar(double uvw[3], double Pt[3],\n double Duvw[9])\n\nCalculate a user defined scalar using one or all of uvw, Pt,\nDuvw.\n\nuvw are the parameters with Pt being the the cartesian point,\nDuvw are the derivatives of this point with respect to u, v and\nw. Pt, Duvw are obtained from Evaluate().\n\nThis function is only called if the ScalarMode has the value\nvtkParametricFunctionSource::SCALAR_FUNCTION_DEFINED\n\nIf the user does not need to calculate a scalar, then the\ninstantiated function should return zero.\n"},
{NULL, NULL, 0, NULL}
};
static vtkObjectBase *PyvtkParametricFigure8Klein_StaticNew()
{
return vtkParametricFigure8Klein::New();
}
PyObject *PyVTKClass_vtkParametricFigure8KleinNew(const char *modulename)
{
PyObject *cls = PyVTKClass_New(&PyvtkParametricFigure8Klein_StaticNew,
PyvtkParametricFigure8Klein_Methods,
"vtkParametricFigure8Klein", modulename,
NULL, NULL,
PyvtkParametricFigure8Klein_Doc(),
PyVTKClass_vtkParametricFunctionNew(modulename));
return cls;
}
const char **PyvtkParametricFigure8Klein_Doc()
{
static const char *docstring[] = {
"vtkParametricFigure8Klein - Generate a figure-8 Klein bottle.\n\n",
"Superclass: vtkParametricFunction\n\n",
"vtkParametricFigure8Klein generates a figure-8 Klein bottle. A Klein\nbottle is a closed surface with no interior and only one surface. It\nis unrealisable in 3 dimensions without intersecting surfaces. It\ncan be realised in 4 dimensions by considering the map $F:R^2\n\\rightarrow R^4 $ given by:\n\n- $f(u,v) =\n ((r*cos(v)+a)*cos(u),(r*cos(v)+a)*sin(u),r*sin(v)*cos(u/2),r*sin(v)*\n sin(u/2)) $\n\nThi",
"s representation of the immersion in $R^3 $ is formed by taking\ntwo Mobius strips and joining them along their boundaries, this is\nthe so called \"Figure-8 Klein Bottle\"\n\nFor further information about this surface, please consult the\ntechnical description \"Parametric surfaces\" in\nhttp://www.vtk.org/documents.php in the \"VTK Technical Documents\"\nsection in the VTk.org web pages.\n\nThanks:\n\nAndrew Mac",
"lean andrew.amaclean@gmail.com for creating and\ncontributing the class.\n\n",
NULL
};
return docstring;
}
void PyVTKAddFile_vtkParametricFigure8Klein(
PyObject *dict, const char *modulename)
{
PyObject *o;
o = PyVTKClass_vtkParametricFigure8KleinNew(modulename);
if (o && PyDict_SetItemString(dict, (char *)"vtkParametricFigure8Klein", o) != 0)
{
Py_DECREF(o);
}
}
| [
"mpasVM@localhost.org"
] | mpasVM@localhost.org |
b4bcf46045e8c254683d76752515d31c02bfe4a3 | 2452e0375b99a3226f01814c3138c8edf7b3dbd1 | /OpenGL/source/延迟着色/RenderSphere.h | 4f36c4faca2cf539d11ad7f011ceada19515f5b5 | [] | no_license | hello-choulvlv/hello-world | ac00931ab6b2e7e921e68875b1b8a918476351a7 | 29cdc82c847a4ecf5d6051a6bb084260cded5cc7 | refs/heads/master | 2021-12-29T09:40:58.368942 | 2021-12-15T04:45:47 | 2021-12-15T04:45:47 | 209,924,279 | 2 | 3 | null | null | null | null | GB18030 | C++ | false | false | 1,128 | h | /*
*延迟着色前阶段着色
*/
#include<engine/RenderObject.h>
#include<engine/GLProgram.h>
#include<engine/GLTexture.h>
#include<engine/Shape.h>
class RenderSphere:public GLObject//public RenderObject
{
private:
GLProgram *_glProgram;
GLSphere *_sphere;
GLTexture *_texture;
Matrix _mvpMatrix;
Matrix _modelMatrix;
Matrix3 _normalMatrix;
//
unsigned _mvpMatrixLoc;
unsigned _modelMatrixLoc;
unsigned _normalMatrixLoc;
unsigned _baseMapLoc;
float _deltaTime;
GLVector3 _position;
private:
public:
void initWithFile(const char *file_name);
RenderSphere();
~RenderSphere();
static RenderSphere *create(const char *file_name);
void draw(Matrix &projMatrix,unsigned flag);
void update(float _deltaTime);
void setPosition(GLVector3 &);
}; | [
"xiaoxiong@gmail.com"
] | xiaoxiong@gmail.com |
286ca847ea939443b527c01dc535ae016bc63124 | 8ba0e987f09ce1fa104cc29b1c0f2c73ab9b42d9 | /bootloader_download_WIN32APP/usbtest.cpp | bf0db4013f6e6a9311160b657373f2306a8c679a | [] | no_license | ld3003/alarm001 | 3e8269d725389f0e508fc367090c91e47d62d7c5 | b02c9523f82634621abe4ba445a517c42eb481a4 | refs/heads/master | 2020-05-26T14:38:13.212052 | 2019-05-23T16:20:33 | 2019-05-23T16:20:33 | 188,268,040 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,644 | cpp | #include "usbtest.h"
#include "ui_usbtest.h"
#include <QDebug>
#include <serialthread.h>
#include <QFileDialog>
#include <QMessageBox>
USBTest::USBTest(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::USBTest)
{
timer = new QTimer(this);
ui->setupUi(this);
m_serialThread = new SerialThread(0);
connect(timer,SIGNAL(timeout()),this,SLOT(on_checkConn_clicked()));
connect(m_serialThread,SIGNAL(serialInfoStr(QString)),this,SLOT(serialInfoRecv(QString)), Qt::QueuedConnection);
//timer->start(1000);
}
USBTest::~USBTest()
{
delete ui;
}
void USBTest::on_connectDevButton_clicked()
{
QFileDialog *fileDialog = new QFileDialog(this);
fileDialog->setWindowTitle(tr("选择固件文件"));
fileDialog->setDirectory(".");
//fileDialog->setFilter(tr("固件文件(*.bin)"));
if(fileDialog->exec() == QDialog::Accepted) {
QString path = fileDialog->selectedFiles()[0];
QMessageBox::information(NULL, tr("提示"), tr("您将要下载的固件文件为: ") + path);
m_serialThread->m_fwFilePath = path;
m_serialThread->m_burnState = SerialThread::__INIT;
m_serialThread->start();
} else {
QMessageBox::information(NULL, tr("提示"), tr("您没有选择任何文件。"));
}
//m_serialThread->start();
}
void USBTest::timeoutUiTimer()
{
QCoreApplication::processEvents();//避免界面冻结
//
}
void USBTest::serialInfoRecv(QString str)
{
ui->textBrowser->append(str);
}
void USBTest::on_checkConn_clicked()
{
m_serialThread->m_burnState = SerialThread::__CHECK_DEV;
m_serialThread->start();
//
}
| [
"83114367@qq.com"
] | 83114367@qq.com |
9eb3b39f81a6dbf17c9f2ef257b4ce4ea472b02a | 5c52c167bed64a89451dfb0379d166441a143566 | /armadillo-8.500.1/tests/fn_diff.cpp | 9d05a9d10a1cefe7f7c72a147ea76f554c0e46b8 | [
"LicenseRef-scancode-warranty-disclaimer",
"Apache-2.0",
"MIT"
] | permissive | Wolframm74/armadillo_armanpy | bbcd0efcd82c6ed64513599ee81ac6005132900c | f716cc62f0ba7fd06976cf1f1977d89af268a371 | refs/heads/master | 2020-07-29T22:52:13.398935 | 2020-07-19T02:38:18 | 2020-07-19T02:40:39 | 209,991,643 | 3 | 1 | MIT | 2020-07-18T19:38:25 | 2019-09-21T13:40:18 | C++ | UTF-8 | C++ | false | false | 4,305 | cpp | // Copyright 2015 Conrad Sanderson (http://conradsanderson.id.au)
// Copyright 2015 National ICT Australia (NICTA)
//
// 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 <armadillo>
#include "catch.hpp"
using namespace arma;
TEST_CASE("fn_diff_1")
{
colvec a = square( linspace<colvec>(1,5,6) );
rowvec b = square( linspace<rowvec>(1,5,5) );
colvec a_diff_1 = { 2.2400, 3.5200, 4.8000, 6.0800, 7.3600 };
colvec a_diff_2 = { 1.2800, 1.2800, 1.2800, 1.2800 };
colvec a_diff_9;
rowvec b_diff_1 = { 3, 5, 7, 9 };
rowvec b_diff_2 = { 2, 2, 2 };
rowvec b_diff_9;
REQUIRE( accu(abs(diff(a,0) - a )) == Approx(0.0) );
REQUIRE( accu(abs(diff(a ) - a_diff_1)) == Approx(0.0) );
REQUIRE( accu(abs(diff(a,1) - a_diff_1)) == Approx(0.0) );
REQUIRE( accu(abs(diff(a,2) - a_diff_2)) == Approx(0.0) );
REQUIRE( accu(abs(diff(a,9) - a_diff_9)) == Approx(0.0) );
REQUIRE( accu(abs(diff(b,0) - b )) == Approx(0.0) );
REQUIRE( accu(abs(diff(b ) - b_diff_1)) == Approx(0.0) );
REQUIRE( accu(abs(diff(b,1) - b_diff_1)) == Approx(0.0) );
REQUIRE( accu(abs(diff(b,2) - b_diff_2)) == Approx(0.0) );
REQUIRE( accu(abs(diff(b,9) - b_diff_9)) == Approx(0.0) );
}
TEST_CASE("fn_diff_2")
{
mat A =
"\
0.061198 0.201990 0.019678 -0.493936 -0.126745;\
0.437242 0.058956 -0.149362 -0.045465 0.296153;\
-0.492474 -0.031309 0.314156 0.419733 0.068317;\
0.336352 0.411541 0.458476 -0.393139 -0.135040;\
0.239585 -0.428913 -0.406953 -0.291020 -0.353768;\
";
mat A_diff1_0 =
"\
0.376044 -0.143034 -0.169040 0.448471 0.422898;\
-0.929716 -0.090265 0.463518 0.465198 -0.227836;\
0.828826 0.442850 0.144320 -0.812872 -0.203357;\
-0.096767 -0.840454 -0.865429 0.102119 -0.218728;\
";
mat A_diff2_0 =
"\
-1.305760 0.052769 0.632558 0.016727 -0.650734;\
1.758542 0.533115 -0.319198 -1.278070 0.024479;\
-0.925593 -1.283304 -1.009749 0.914991 -0.015371;\
";
mat A_diff3_0 =
"\
3.064302 0.480346 -0.951756 -1.294797 0.675213;\
-2.684135 -1.816419 -0.690551 2.193061 -0.039850;\
";
mat A_diff1_1 =
"\
0.140792 -0.182312 -0.513614 0.367191;\
-0.378286 -0.208318 0.103897 0.341618;\
0.461165 0.345465 0.105577 -0.351416;\
0.075189 0.046935 -0.851615 0.258099;\
-0.668498 0.021960 0.115933 -0.062748;\
";
mat A_diff2_1 =
"\
-0.323104 -0.331302 0.880805;\
0.169968 0.312215 0.237721;\
-0.115700 -0.239888 -0.456993;\
-0.028254 -0.898550 1.109714;\
0.690458 0.093973 -0.178681;\
";
mat A_diff3_1 =
"\
-0.0081980 1.2121070;\
0.1422470 -0.0744940;\
-0.1241880 -0.2171050;\
-0.8702960 2.0082640;\
-0.5964850 -0.2726540;\
";
REQUIRE( accu(abs(diff(A,0) - A )) == Approx(0.0) );
REQUIRE( accu(abs(diff(A ) - A_diff1_0)) == Approx(0.0) );
REQUIRE( accu(abs(diff(A,1) - A_diff1_0)) == Approx(0.0) );
REQUIRE( accu(abs(diff(A,2) - A_diff2_0)) == Approx(0.0) );
REQUIRE( accu(abs(diff(A,3) - A_diff3_0)) == Approx(0.0) );
REQUIRE( accu(abs(diff(A,0,0) - A )) == Approx(0.0) );
REQUIRE( accu(abs(diff(A,1,0) - A_diff1_0)) == Approx(0.0) );
REQUIRE( accu(abs(diff(A,2,0) - A_diff2_0)) == Approx(0.0) );
REQUIRE( accu(abs(diff(A,3,0) - A_diff3_0)) == Approx(0.0) );
REQUIRE( accu(abs(diff(A,0,1) - A )) == Approx(0.0) );
REQUIRE( accu(abs(diff(A,1,1) - A_diff1_1)) == Approx(0.0) );
REQUIRE( accu(abs(diff(A,2,1) - A_diff2_1)) == Approx(0.0) );
REQUIRE( accu(abs(diff(A,3,1) - A_diff3_1)) == Approx(0.0) );
}
| [
"anonymous@anonymous.com"
] | anonymous@anonymous.com |
042e8c66e6f4f0f274e444c92a3a579be0379294 | 6ba42f792b2fd8fe48506811657cd5ccde796a86 | /build/pi-build/Sources/include/hxinc/kha/graphics2/truetype/Stbtt_vertex.h | c436c6c43d2a2b5580ce8299a945fcb29049c3b8 | [] | no_license | JamesDSource/EngineeringDeviceApp | 88a146f7bd5a0f1ea4250a6cb344b99b3578cc1b | 39217bcf9d875420d7225fd44deac8af5ffff05c | refs/heads/main | 2023-05-06T05:17:15.654971 | 2021-06-01T06:01:45 | 2021-06-01T06:01:45 | 331,424,959 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 2,218 | h | // Generated by Haxe 4.0.0-preview.5+1aaf080
#ifndef INCLUDED_kha_graphics2_truetype_Stbtt_vertex
#define INCLUDED_kha_graphics2_truetype_Stbtt_vertex
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
HX_DECLARE_STACK_FRAME(_hx_pos_a0bea14738bd3c17_137_new)
HX_DECLARE_CLASS3(kha,graphics2,truetype,Stbtt_vertex)
namespace kha{
namespace graphics2{
namespace truetype{
class HXCPP_CLASS_ATTRIBUTES Stbtt_vertex_obj : public hx::Object
{
public:
typedef hx::Object super;
typedef Stbtt_vertex_obj OBJ_;
Stbtt_vertex_obj();
public:
enum { _hx_ClassId = 0x733c090d };
void __construct();
inline void *operator new(size_t inSize, bool inContainer=false,const char *inName="kha.graphics2.truetype.Stbtt_vertex")
{ return hx::Object::operator new(inSize,inContainer,inName); }
inline void *operator new(size_t inSize, int extra)
{ return hx::Object::operator new(inSize+extra,false,"kha.graphics2.truetype.Stbtt_vertex"); }
hx::ObjectPtr< Stbtt_vertex_obj > __new() {
hx::ObjectPtr< Stbtt_vertex_obj > __this = new Stbtt_vertex_obj();
__this->__construct();
return __this;
}
static hx::ObjectPtr< Stbtt_vertex_obj > __alloc(hx::Ctx *_hx_ctx) {
Stbtt_vertex_obj *__this = (Stbtt_vertex_obj*)(hx::Ctx::alloc(_hx_ctx, sizeof(Stbtt_vertex_obj), false, "kha.graphics2.truetype.Stbtt_vertex"));
*(void **)__this = Stbtt_vertex_obj::_hx_vtable;
{
HX_STACKFRAME(&_hx_pos_a0bea14738bd3c17_137_new)
}
return __this;
}
static void * _hx_vtable;
static Dynamic __CreateEmpty();
static Dynamic __Create(hx::DynamicArray inArgs);
//~Stbtt_vertex_obj();
HX_DO_RTTI_ALL;
hx::Val __Field(const ::String &inString, hx::PropertyAccess inCallProp);
hx::Val __SetField(const ::String &inString,const hx::Val &inValue, hx::PropertyAccess inCallProp);
void __GetFields(Array< ::String> &outFields);
static void __register();
bool _hx_isInstanceOf(int inClassId);
::String __ToString() const { return HX_("Stbtt_vertex",e2,3e,59,e2); }
int x;
int y;
int cx;
int cy;
int type;
int padding;
};
} // end namespace kha
} // end namespace graphics2
} // end namespace truetype
#endif /* INCLUDED_kha_graphics2_truetype_Stbtt_vertex */
| [
"Jamesevora367@gmail.com"
] | Jamesevora367@gmail.com |
a66826b2ecc09b9ee89192c7138a41a8dab99d37 | d4d4e9c9b22bdbc7af03e79af3559e6effe4f63e | /AtCoder/sumitomo_bank_contest/pin.cpp | de4e35c64127e4c525a7c7cf928b97077870124a | [] | no_license | deeepeshthakur/CodeFiles | ea8d9c4a2b7a21c853ba8fc953c532e74576a791 | 3c9f08770a2628fa6eaef28fff212bfa1db96d16 | refs/heads/master | 2021-07-09T20:08:30.258607 | 2020-07-06T03:50:57 | 2020-07-06T03:50:57 | 160,020,105 | 2 | 1 | null | 2020-07-06T03:44:02 | 2018-12-02T06:26:50 | C++ | UTF-8 | C++ | false | false | 907 | cpp | #include<bits/stdc++.h>
#define F first
#define S second
#define pb push_back
#define mp make_pair
#define full(a) a.begin(),a.end()
#define rfull(a) a.rbegin(),a.rend()
using namespace std;
const double pi=acos(-1.0);
const double pii=2*pi;
const double eps=1e-6;
const long long MOD=1e9+7;
void solve(){
int n;
cin>>n;
string s;
cin>>s;
vector<bool> one_array(10,false),two_array(100,false),three_array(1000,false);
for(int i=n-1;i>=0;i--){
int dig = int(s[i]-'0');
for(int j=0;j<100;j++){
if(two_array[j]){
three_array[dig*100+j]=true;
}
}
for(int j=0;j<10;j++){
if(one_array[j]){
two_array[dig*10+j]=true;
}
}
one_array[dig]=true;
}
int ans=0;
for(int i=0;i<three_array.size();i++)
ans += (three_array[i] ? 1 : 0);
cout << ans << "\n";
}
int main(){
std::ios::sync_with_stdio(false);
std::cin.tie(NULL);
std::cout.tie(NULL);
solve();
return 0;
} | [
"deeepeshthakur@gmail.com"
] | deeepeshthakur@gmail.com |
00f65d0328edbd0f797d6df4e0f257ad06292366 | 44a7f75e2a9f1255231250680d2f240e8552643a | /infowidget.h | cea20ef1966bcee1e0b41ce6602f68eb3aab0ab2 | [] | no_license | hkd0518/StudentMan | 83d1f85c86421c6695240553c4e71f8ddfea4c1e | 043b1fceed72099fe156b3d4f2265f60b14f6d27 | refs/heads/master | 2021-01-19T08:20:52.092935 | 2011-07-01T07:24:00 | 2011-07-01T07:24:00 | 1,971,914 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 865 | h | #ifndef INFOWIDGET_H
#define INFOWIDGET_H
#include <QWidget>
#include "utility.h"
namespace Ui {
class InfoWidget;
}
class QTreeWidget;
class QTreeWidgetItem;
struct UserInfo;
class InfoWidget : public QWidget
{
Q_OBJECT
public:
explicit InfoWidget(QWidget *parent = 0);
~InfoWidget();
public slots:
void dispatchView(QTreeWidgetItem*,int);
signals:
void loadCurriculumSchedule();
void loadElective();
void loadScore();
void loadProfile();
void loadRecord();
void loadStatic();
void loadPlan();
void chgPwd();
public:
// void loadUserInfo(QImage*, QStringList*);
void loadUserInfo(UserInfo*);
void loadFeatureList(QTreeWidget*);
void addChildItem(QTreeWidgetItem*, QTreeWidgetItem*);
void reset();
private:
Ui::InfoWidget *ui;
UserInfo userInfo;
};
#endif // INFOWIDGET_H
| [
"titi.kd.hu@gmail.com"
] | titi.kd.hu@gmail.com |
8292bf509ee41fc7e938db0bfd5e99b5f74a6098 | fac523b39320d7b575a3c7c647b37f252eaa42c3 | /ESP8266_Standalone_SmartConfig/ESP8266_Standalone_SmartConfig.ino | d8a80bfe79a772a2d9b02b33de3c18332edb72ed | [] | no_license | DevinNorgarb/my_arduino_sketches | 3069bf8a7997e96aa1551c93725112e81617ce81 | a14e4a973f81518d92139dce2de614a8d474ba6d | refs/heads/master | 2023-03-29T19:50:22.523584 | 2021-04-07T04:06:39 | 2021-04-07T04:06:39 | 355,407,598 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,126 | ino |
#include <UnoWiFiDevEd.h>
/*************************************************************
Download latest Blynk library here:
https://github.com/blynkkk/blynk-library/releases/latest
Blynk is a platform with iOS and Android apps to control
Arduino, Raspberry Pi and the likes over the Internet.
You can easily build graphic interfaces for all your
projects by simply dragging and dropping widgets.
Downloads, docs, tutorials: http://www.blynk.cc
Sketch generator: http://examples.blynk.cc
Blynk community: http://community.blynk.cc
Follow us: http://www.fb.com/blynkapp
http://twitter.com/blynk_app
Blynk library is licensed under MIT license
This example code is in public domain.
*************************************************************
This example runs directly on ESP8266 chip.
Note: This requires ESP8266 support package:
https://github.com/esp8266/Arduino
Please be sure to select the right ESP8266 module
in the Tools -> Board menu!
NOTE: SmartConfig might not work in your environment.
Please try basic ESP8266 SmartConfig examples
before using this sketch!
Change Blynk auth token to run :)
*************************************************************/
/* Comment this out to disable prints and save space */
#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "YourAuthToken";
void setup()
{
// Debug console
Serial.begin(9600);
WiFi.mode(WIFI_STA);
int cnt = 0;
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
if (cnt++ >= 10) {
WiFi.beginSmartConfig();
while (1) {
delay(1000);
if (WiFi.smartConfigDone()) {
Serial.println();
Serial.println("SmartConfig: Success");
break;
}
Serial.print("|");
}
}
}
WiFi.printDiag(Serial);
Blynk.config(auth);
}
void loop()
{
Blynk.run();
}
| [
"dnorgarb@gmail.com"
] | dnorgarb@gmail.com |
106e8fd7763fc460233408318ee46ec6034332f2 | ba4c8a718594f43fb2c5a2ec11c066274ec70445 | /openCV/sources/modules/ocl/src/cl_operations.cpp | 9b48affa226ffb4bcd2415e7559432d1fdbaabe8 | [
"BSD-3-Clause"
] | permissive | jayparekhjp/openCV-Facial-Recognition | d7d83e1cd93a878d91e129dd5f754a50fde973a2 | c351d55863bbc40c3225f55152dcd044f778119f | refs/heads/master | 2020-04-02T03:18:43.346991 | 2018-10-20T23:45:42 | 2018-10-20T23:45:42 | 153,957,654 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 22,883 | cpp | /*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
// copy or use the software.
//
//
// License Agreement
// For Open Source Computer Vision Library
//
// Copyright (C) 2010-2012, Institute Of Software Chinese Academy Of Science, all rights reserved.
// Copyright (C) 2010-2012, Advanced Micro Devices, Inc., all rights reserved.
// Copyright (C) 2010-2012, Multicoreware, Inc., all rights reserved.
// Third party copyrights are property of their respective owners.
//
// @Authors
// Guoping Long, longguoping@gmail.com
// Niko Li, newlife20080214@gmail.com
// Yao Wang, bitwangyaoyao@gmail.com
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistribution's of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistribution's 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.
//
// * The name of the copyright holders may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
#include "precomp.hpp"
#include <iomanip>
#include <fstream>
#include "cl_programcache.hpp"
//#define PRINT_KERNEL_RUN_TIME
#define RUN_TIMES 100
#ifndef CL_MEM_USE_PERSISTENT_MEM_AMD
#define CL_MEM_USE_PERSISTENT_MEM_AMD 0
#endif
//#define AMD_DOUBLE_DIFFER
namespace cv {
namespace ocl {
DevMemType gDeviceMemType = DEVICE_MEM_DEFAULT;
DevMemRW gDeviceMemRW = DEVICE_MEM_R_W;
int gDevMemTypeValueMap[5] = {0,
CL_MEM_ALLOC_HOST_PTR,
CL_MEM_USE_HOST_PTR,
CL_MEM_COPY_HOST_PTR,
CL_MEM_USE_PERSISTENT_MEM_AMD};
int gDevMemRWValueMap[3] = {CL_MEM_READ_WRITE, CL_MEM_READ_ONLY, CL_MEM_WRITE_ONLY};
void finish()
{
clFinish(getClCommandQueue(Context::getContext()));
}
bool isCpuDevice()
{
const DeviceInfo& info = Context::getContext()->getDeviceInfo();
return (info.deviceType == CVCL_DEVICE_TYPE_CPU);
}
size_t queryWaveFrontSize(cl_kernel kernel)
{
const DeviceInfo& info = Context::getContext()->getDeviceInfo();
if (info.deviceType == CVCL_DEVICE_TYPE_CPU)
return 1;
size_t wavefront = 0;
CV_Assert(kernel != NULL);
openCLSafeCall(clGetKernelWorkGroupInfo(kernel, getClDeviceID(Context::getContext()),
CL_KERNEL_PREFERRED_WORK_GROUP_SIZE_MULTIPLE, sizeof(size_t), &wavefront, NULL));
return wavefront;
}
void openCLReadBuffer(Context *ctx, cl_mem dst_buffer, void *host_buffer, size_t size)
{
cl_int status;
status = clEnqueueReadBuffer(getClCommandQueue(ctx), dst_buffer, CL_TRUE, 0,
size, host_buffer, 0, NULL, NULL);
openCLVerifyCall(status);
}
cl_mem openCLCreateBuffer(Context *ctx, size_t flag , size_t size)
{
cl_int status;
cl_mem buffer = clCreateBuffer(getClContext(ctx), (cl_mem_flags)flag, size, NULL, &status);
openCLVerifyCall(status);
return buffer;
}
#define MEMORY_CORRUPTION_GUARD
#ifdef MEMORY_CORRUPTION_GUARD
//#define CHECK_MEMORY_CORRUPTION
#define CHECK_MEMORY_CORRUPTION_PRINT_ERROR
#define CHECK_MEMORY_CORRUPTION_RAISE_ERROR
static const int __memory_corruption_guard_bytes = 64*1024;
#ifdef CHECK_MEMORY_CORRUPTION
static const int __memory_corruption_check_pattern = 0x14326547; // change pattern for sizeof(int)==8
#endif
struct CheckBuffers
{
cl_mem mainBuffer;
size_t size;
size_t widthInBytes, height;
CheckBuffers()
: mainBuffer(NULL), size(0), widthInBytes(0), height(0)
{
// nothing
}
CheckBuffers(cl_mem _mainBuffer, size_t _size, size_t _widthInBytes, size_t _height)
: mainBuffer(_mainBuffer), size(_size), widthInBytes(_widthInBytes), height(_height)
{
// nothing
}
};
static std::map<cl_mem, CheckBuffers> __check_buffers;
#endif
void openCLMallocPitch(Context *ctx, void **dev_ptr, size_t *pitch,
size_t widthInBytes, size_t height)
{
openCLMallocPitchEx(ctx, dev_ptr, pitch, widthInBytes, height, gDeviceMemRW, gDeviceMemType);
}
void openCLMallocPitchEx(Context *ctx, void **dev_ptr, size_t *pitch,
size_t widthInBytes, size_t height, DevMemRW rw_type, DevMemType mem_type)
{
cl_int status;
size_t size = widthInBytes * height;
bool useSubBuffers =
#ifndef MEMORY_CORRUPTION_GUARD
false;
#else
true;
#endif
const DeviceInfo& devInfo = ctx->getDeviceInfo();
if (useSubBuffers && devInfo.isIntelDevice)
{
useSubBuffers = false; // TODO FIXIT We observe memory leaks then we working with sub-buffers
// on the CPU device of Intel OpenCL SDK (Linux). We will investigate this later.
}
if (!useSubBuffers)
{
*dev_ptr = clCreateBuffer(getClContext(ctx), gDevMemRWValueMap[rw_type]|gDevMemTypeValueMap[mem_type],
size, 0, &status);
openCLVerifyCall(status);
}
#ifdef MEMORY_CORRUPTION_GUARD
else
{
size_t allocSize = size + __memory_corruption_guard_bytes * 2;
cl_mem mainBuffer = clCreateBuffer(getClContext(ctx), gDevMemRWValueMap[rw_type]|gDevMemTypeValueMap[mem_type],
allocSize, 0, &status);
openCLVerifyCall(status);
cl_buffer_region r = {__memory_corruption_guard_bytes, size};
*dev_ptr = clCreateSubBuffer(mainBuffer,
gDevMemRWValueMap[rw_type]|gDevMemTypeValueMap[mem_type],
CL_BUFFER_CREATE_TYPE_REGION, &r,
&status);
openCLVerifyCall(status);
#ifdef CHECK_MEMORY_CORRUPTION
std::vector<int> tmp(__memory_corruption_guard_bytes / sizeof(int),
__memory_corruption_check_pattern);
CV_Assert(tmp.size() * sizeof(int) == __memory_corruption_guard_bytes);
openCLVerifyCall(clEnqueueWriteBuffer(getClCommandQueue(ctx),
mainBuffer, CL_FALSE, 0, __memory_corruption_guard_bytes, &tmp[0],
0, NULL, NULL));
openCLVerifyCall(clEnqueueWriteBuffer(getClCommandQueue(ctx),
mainBuffer, CL_FALSE, __memory_corruption_guard_bytes + size, __memory_corruption_guard_bytes, &tmp[0],
0, NULL, NULL));
clFinish(getClCommandQueue(ctx));
#endif
CheckBuffers data(mainBuffer, size, widthInBytes, height);
cv::AutoLock lock(getInitializationMutex());
__check_buffers.insert(std::pair<cl_mem, CheckBuffers>((cl_mem)*dev_ptr, data));
}
#endif
*pitch = widthInBytes;
}
void openCLMemcpy2D(Context *ctx, void *dst, size_t dpitch,
const void *src, size_t spitch,
size_t width, size_t height, openCLMemcpyKind kind, int channels)
{
size_t buffer_origin[3] = {0, 0, 0};
size_t host_origin[3] = {0, 0, 0};
size_t region[3] = {width, height, 1};
if(kind == clMemcpyHostToDevice)
{
if(dpitch == width || channels == 3 || height == 1)
{
openCLSafeCall(clEnqueueWriteBuffer(getClCommandQueue(ctx), (cl_mem)dst, CL_TRUE,
0, width * height, src, 0, NULL, NULL));
}
else
{
openCLSafeCall(clEnqueueWriteBufferRect(getClCommandQueue(ctx), (cl_mem)dst, CL_TRUE,
buffer_origin, host_origin, region, dpitch, 0, spitch, 0, src, 0, 0, 0));
}
}
else if(kind == clMemcpyDeviceToHost)
{
if(spitch == width || channels == 3 || height == 1)
{
openCLSafeCall(clEnqueueReadBuffer(getClCommandQueue(ctx), (cl_mem)src, CL_TRUE,
0, width * height, dst, 0, NULL, NULL));
}
else
{
openCLSafeCall(clEnqueueReadBufferRect(getClCommandQueue(ctx), (cl_mem)src, CL_TRUE,
buffer_origin, host_origin, region, spitch, 0, dpitch, 0, dst, 0, 0, 0));
}
}
}
void openCLCopyBuffer2D(Context *ctx, void *dst, size_t dpitch, int dst_offset,
const void *src, size_t spitch,
size_t width, size_t height, int src_offset)
{
size_t src_origin[3] = {src_offset % spitch, src_offset / spitch, 0};
size_t dst_origin[3] = {dst_offset % dpitch, dst_offset / dpitch, 0};
size_t region[3] = {width, height, 1};
openCLSafeCall(clEnqueueCopyBufferRect(getClCommandQueue(ctx), (cl_mem)src, (cl_mem)dst, src_origin, dst_origin,
region, spitch, 0, dpitch, 0, 0, 0, 0));
}
void openCLFree(void *devPtr)
{
openCLSafeCall(clReleaseMemObject((cl_mem)devPtr));
#ifdef MEMORY_CORRUPTION_GUARD
#ifdef CHECK_MEMORY_CORRUPTION
bool failBefore = false, failAfter = false;
#endif
CheckBuffers data;
{
cv::AutoLock lock(getInitializationMutex());
std::map<cl_mem, CheckBuffers>::iterator i = __check_buffers.find((cl_mem)devPtr);
if (i != __check_buffers.end())
{
data = i->second;
__check_buffers.erase(i);
}
}
if (data.mainBuffer != NULL)
{
#ifdef CHECK_MEMORY_CORRUPTION
Context* ctx = Context::getContext();
std::vector<uchar> checkBefore(__memory_corruption_guard_bytes);
std::vector<uchar> checkAfter(__memory_corruption_guard_bytes);
openCLVerifyCall(clEnqueueReadBuffer(getClCommandQueue(ctx),
data.mainBuffer, CL_FALSE, 0, __memory_corruption_guard_bytes, &checkBefore[0],
0, NULL, NULL));
openCLVerifyCall(clEnqueueReadBuffer(getClCommandQueue(ctx),
data.mainBuffer, CL_FALSE, __memory_corruption_guard_bytes + data.size, __memory_corruption_guard_bytes, &checkAfter[0],
0, NULL, NULL));
clFinish(getClCommandQueue(ctx));
std::vector<int> tmp(__memory_corruption_guard_bytes / sizeof(int),
__memory_corruption_check_pattern);
if (memcmp(&checkBefore[0], &tmp[0], __memory_corruption_guard_bytes) != 0)
{
failBefore = true;
}
if (memcmp(&checkAfter[0], &tmp[0], __memory_corruption_guard_bytes) != 0)
{
failAfter = true;
}
#else
// TODO FIXIT Attach clReleaseMemObject call to event completion callback
// TODO 2013/12/04 Disable workaround
// Context* ctx = Context::getContext();
// clFinish(getClCommandQueue(ctx));
#endif
openCLSafeCall(clReleaseMemObject(data.mainBuffer));
}
#if defined(CHECK_MEMORY_CORRUPTION)
if (failBefore)
{
#ifdef CHECK_MEMORY_CORRUPTION_PRINT_ERROR
std::cerr << "ERROR: Memory corruption detected: before buffer: " << cv::format("widthInBytes=%d height=%d", (int)data.widthInBytes, (int)data.height) << std::endl;
#endif
#ifdef CHECK_MEMORY_CORRUPTION_RAISE_ERROR
CV_Error(CV_StsInternal, "Memory corruption detected: before buffer");
#endif
}
if (failAfter)
{
#ifdef CHECK_MEMORY_CORRUPTION_PRINT_ERROR
std::cerr << "ERROR: Memory corruption detected: after buffer: " << cv::format("widthInBytes=%d height=%d", (int)data.widthInBytes, (int)data.height) << std::endl;
#endif
#ifdef CHECK_MEMORY_CORRUPTION_RAISE_ERROR
CV_Error(CV_StsInternal, "Memory corruption detected: after buffer");
#endif
}
#endif // CHECK_MEMORY_CORRUPTION
#endif // MEMORY_CORRUPTION_GUARD
}
cl_kernel openCLGetKernelFromSource(const Context *ctx, const cv::ocl::ProgramEntry* source, string kernelName)
{
return openCLGetKernelFromSource(ctx, source, kernelName, NULL);
}
cl_kernel openCLGetKernelFromSource(const Context *ctx, const cv::ocl::ProgramEntry* source, string kernelName,
const char *build_options)
{
cl_kernel kernel;
cl_int status = 0;
CV_Assert(ProgramCache::getProgramCache() != NULL);
cl_program program = ProgramCache::getProgramCache()->getProgram(ctx, source, build_options);
CV_Assert(program != NULL);
kernel = clCreateKernel(program, kernelName.c_str(), &status);
openCLVerifyCall(status);
openCLVerifyCall(clReleaseProgram(program));
return kernel;
}
void openCLVerifyKernel(const Context *ctx, cl_kernel kernel, size_t *localThreads)
{
size_t kernelWorkGroupSize;
openCLSafeCall(clGetKernelWorkGroupInfo(kernel, getClDeviceID(ctx),
CL_KERNEL_WORK_GROUP_SIZE, sizeof(size_t), &kernelWorkGroupSize, 0));
CV_Assert( localThreads[0] <= ctx->getDeviceInfo().maxWorkItemSizes[0] );
CV_Assert( localThreads[1] <= ctx->getDeviceInfo().maxWorkItemSizes[1] );
CV_Assert( localThreads[2] <= ctx->getDeviceInfo().maxWorkItemSizes[2] );
CV_Assert( localThreads[0] * localThreads[1] * localThreads[2] <= kernelWorkGroupSize );
CV_Assert( localThreads[0] * localThreads[1] * localThreads[2] <= ctx->getDeviceInfo().maxWorkGroupSize );
}
#ifdef PRINT_KERNEL_RUN_TIME
static double total_execute_time = 0;
static double total_kernel_time = 0;
#endif
static std::string removeDuplicatedWhiteSpaces(const char * buildOptions)
{
if (buildOptions == NULL)
return "";
size_t length = strlen(buildOptions), didx = 0, sidx = 0;
while (sidx < length && buildOptions[sidx] == 0)
++sidx;
std::string opt;
opt.resize(length);
for ( ; sidx < length; ++sidx)
if (buildOptions[sidx] != ' ')
opt[didx++] = buildOptions[sidx];
else if ( !(didx > 0 && opt[didx - 1] == ' ') )
opt[didx++] = buildOptions[sidx];
return opt;
}
cl_kernel openCLGetKernelFromSource(Context *ctx, const cv::ocl::ProgramEntry* source, string kernelName, int channels,
int depth, const char *build_options)
{
//construct kernel name
//The rule is functionName_Cn_Dn, C represent Channels, D Represent DataType Depth, n represent an integer number
//for example split_C2_D3, represent the split kernel with channels = 2 and dataType Depth = 3(Data type is short)
stringstream idxStr;
if(channels != -1)
idxStr << "_C" << channels;
if(depth != -1)
idxStr << "_D" << depth;
kernelName += idxStr.str();
std::string fixedOptions = removeDuplicatedWhiteSpaces(build_options);
cl_kernel kernel = openCLGetKernelFromSource(ctx, source, kernelName, fixedOptions.c_str());
return kernel;
}
void openCLExecuteKernel(Context *ctx, cl_kernel kernel, size_t globalThreads[3],
size_t localThreads[3], vector< pair<size_t, const void *> > &args)
{
if ( localThreads != NULL)
{
globalThreads[0] = roundUp(globalThreads[0], localThreads[0]);
globalThreads[1] = roundUp(globalThreads[1], localThreads[1]);
globalThreads[2] = roundUp(globalThreads[2], localThreads[2]);
cv::ocl::openCLVerifyKernel(ctx, kernel, localThreads);
}
for(size_t i = 0; i < args.size(); i ++)
openCLSafeCall(clSetKernelArg(kernel, i, args[i].first, args[i].second));
#ifndef PRINT_KERNEL_RUN_TIME
openCLSafeCall(clEnqueueNDRangeKernel(getClCommandQueue(ctx), kernel, 3, NULL, globalThreads,
localThreads, 0, NULL, NULL));
#else
cl_event event = NULL;
openCLSafeCall(clEnqueueNDRangeKernel(getClCommandQueue(ctx), kernel, 3, NULL, globalThreads,
localThreads, 0, NULL, &event));
cl_ulong start_time, end_time, queue_time;
double execute_time = 0;
double total_time = 0;
openCLSafeCall(clWaitForEvents(1, &event));
openCLSafeCall(clGetEventProfilingInfo(event, CL_PROFILING_COMMAND_START,
sizeof(cl_ulong), &start_time, 0));
openCLSafeCall(clGetEventProfilingInfo(event, CL_PROFILING_COMMAND_END,
sizeof(cl_ulong), &end_time, 0));
openCLSafeCall(clGetEventProfilingInfo(event, CL_PROFILING_COMMAND_QUEUED,
sizeof(cl_ulong), &queue_time, 0));
execute_time = (double)(end_time - start_time) / (1000 * 1000);
total_time = (double)(end_time - queue_time) / (1000 * 1000);
total_execute_time += execute_time;
total_kernel_time += total_time;
clReleaseEvent(event);
#endif
clFlush(getClCommandQueue(ctx));
openCLSafeCall(clReleaseKernel(kernel));
}
void openCLExecuteKernel_(Context *ctx, const cv::ocl::ProgramEntry* source, string kernelName, size_t globalThreads[3],
size_t localThreads[3], vector< pair<size_t, const void *> > &args, int channels,
int depth, const char *build_options)
{
cl_kernel kernel = openCLGetKernelFromSource(ctx, source, kernelName, channels, depth, build_options);
openCLExecuteKernel(ctx, kernel, globalThreads, localThreads, args);
}
void openCLExecuteKernel(Context *ctx, const cv::ocl::ProgramEntry* source, string kernelName,
size_t globalThreads[3], size_t localThreads[3],
vector< pair<size_t, const void *> > &args, int channels, int depth)
{
openCLExecuteKernel(ctx, source, kernelName, globalThreads, localThreads, args,
channels, depth, NULL);
}
void openCLExecuteKernel(Context *ctx, const cv::ocl::ProgramEntry* source, string kernelName,
size_t globalThreads[3], size_t localThreads[3],
vector< pair<size_t, const void *> > &args, int channels, int depth, const char *build_options)
{
#ifndef PRINT_KERNEL_RUN_TIME
openCLExecuteKernel_(ctx, source, kernelName, globalThreads, localThreads, args, channels, depth,
build_options);
#else
string data_type[] = { "uchar", "char", "ushort", "short", "int", "float", "double"};
cout << endl;
cout << "Function Name: " << kernelName;
if(depth >= 0)
cout << " |data type: " << data_type[depth];
cout << " |channels: " << channels;
cout << " |Time Unit: " << "ms" << endl;
total_execute_time = 0;
total_kernel_time = 0;
cout << "-------------------------------------" << endl;
cout << setiosflags(ios::left) << setw(15) << "execute time";
cout << setiosflags(ios::left) << setw(15) << "launch time";
cout << setiosflags(ios::left) << setw(15) << "kernel time" << endl;
int i = 0;
for(i = 0; i < RUN_TIMES; i++)
openCLExecuteKernel_(ctx, source, kernelName, globalThreads, localThreads, args, channels, depth,
build_options);
cout << "average kernel execute time: " << total_execute_time / RUN_TIMES << endl; // "ms" << endl;
cout << "average kernel total time: " << total_kernel_time / RUN_TIMES << endl; // "ms" << endl;
#endif
}
void openCLExecuteKernelInterop(Context *ctx, const cv::ocl::ProgramSource& source, string kernelName,
size_t globalThreads[3], size_t localThreads[3],
vector< pair<size_t, const void *> > &args, int channels, int depth, const char *build_options)
{
//construct kernel name
//The rule is functionName_Cn_Dn, C represent Channels, D Represent DataType Depth, n represent an integer number
//for example split_C2_D2, represent the split kernel with channels = 2 and dataType Depth = 2 (Data type is char)
stringstream idxStr;
if(channels != -1)
idxStr << "_C" << channels;
if(depth != -1)
idxStr << "_D" << depth;
kernelName += idxStr.str();
std::string name = std::string("custom_") + source.name;
ProgramEntry program = { name.c_str(), source.programStr, source.programHash };
cl_kernel kernel = openCLGetKernelFromSource(ctx, &program, kernelName, build_options);
CV_Assert(globalThreads != NULL);
if ( localThreads != NULL)
{
globalThreads[0] = roundUp(globalThreads[0], localThreads[0]);
globalThreads[1] = roundUp(globalThreads[1], localThreads[1]);
globalThreads[2] = roundUp(globalThreads[2], localThreads[2]);
cv::ocl::openCLVerifyKernel(ctx, kernel, localThreads);
}
for(size_t i = 0; i < args.size(); i ++)
openCLSafeCall(clSetKernelArg(kernel, i, args[i].first, args[i].second));
openCLSafeCall(clEnqueueNDRangeKernel(getClCommandQueue(ctx), kernel, 3, NULL, globalThreads,
localThreads, 0, NULL, NULL));
clFinish(getClCommandQueue(ctx));
openCLSafeCall(clReleaseKernel(kernel));
}
cl_mem load_constant(cl_context context, cl_command_queue command_queue, const void *value,
const size_t size)
{
int status;
cl_mem con_struct;
con_struct = clCreateBuffer(context, CL_MEM_READ_ONLY, size, NULL, &status);
openCLSafeCall(status);
openCLSafeCall(clEnqueueWriteBuffer(command_queue, con_struct, 1, 0, size,
value, 0, 0, 0));
return con_struct;
}
}//namespace ocl
}//namespace cv
| [
"thatindiangeek@gmail.com"
] | thatindiangeek@gmail.com |
5b40e412b480219b437f7a362af3b2f2c4853ed7 | d4c720f93631097ee048940d669e0859e85eabcf | /components/password_manager/core/browser/affiliation/fake_affiliation_service.cc | 45a1eb22a6ae42e322050ff83af741f6aa201da7 | [
"BSD-3-Clause"
] | permissive | otcshare/chromium-src | 26a7372773b53b236784c51677c566dc0ad839e4 | 3b920d87437d9293f654de1f22d3ea341e7a8b55 | refs/heads/webnn | 2023-03-21T03:20:15.377034 | 2023-01-25T21:19:44 | 2023-01-25T21:19:44 | 209,262,645 | 18 | 21 | BSD-3-Clause | 2023-03-23T06:20:07 | 2019-09-18T08:52:07 | null | UTF-8 | C++ | false | false | 1,800 | cc | // Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/password_manager/core/browser/affiliation/fake_affiliation_service.h"
namespace password_manager {
FakeAffiliationService::FakeAffiliationService() = default;
FakeAffiliationService::~FakeAffiliationService() = default;
void FakeAffiliationService::PrefetchChangePasswordURLs(
const std::vector<GURL>& urls,
base::OnceClosure callback) {}
void FakeAffiliationService::Clear() {}
GURL FakeAffiliationService::GetChangePasswordURL(const GURL& url) const {
return GURL();
}
void FakeAffiliationService::GetAffiliationsAndBranding(
const FacetURI& facet_uri,
AffiliationService::StrategyOnCacheMiss cache_miss_strategy,
ResultCallback result_callback) {}
void FakeAffiliationService::Prefetch(const FacetURI& facet_uri,
const base::Time& keep_fresh_until) {}
void FakeAffiliationService::CancelPrefetch(
const FacetURI& facet_uri,
const base::Time& keep_fresh_until) {}
void FakeAffiliationService::KeepPrefetchForFacets(
std::vector<FacetURI> facet_uris) {}
void FakeAffiliationService::TrimCacheForFacetURI(const FacetURI& facet_uri) {}
void FakeAffiliationService::TrimUnusedCache(std::vector<FacetURI> facet_uris) {
}
void FakeAffiliationService::GetAllGroups(GroupsCallback callback) const {
std::move(callback).Run({});
}
void FakeAffiliationService::InjectAffiliationAndBrandingInformation(
std::vector<std::unique_ptr<PasswordForm>> forms,
AffiliationService::StrategyOnCacheMiss strategy_on_cache_miss,
PasswordFormsOrErrorCallback result_callback) {
std::move(result_callback).Run(std::move(forms));
}
} // namespace password_manager
| [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
2704eefb0dd8ee3599161f2068b2f9f6bc56e932 | ab1c643f224197ca8c44ebd562953f0984df321e | /wmi/wbem/winmgmt/provsubsys/common/include/datetime.h | ba0bf70058000422d2a22bec1be9a3e0f92d007a | [] | no_license | KernelPanic-OpenSource/Win2K3_NT_admin | e162e0452fb2067f0675745f2273d5c569798709 | d36e522f16bd866384bec440517f954a1a5c4a4d | refs/heads/master | 2023-04-12T13:25:45.807158 | 2021-04-13T16:33:59 | 2021-04-13T16:33:59 | 357,613,696 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,975 | h | //***************************************************************************
//
// Copyright (c) 2000-2001 Microsoft Corporation
//
// datetime.h
//
// alanbos 20-Jan-00 Created.
//
// Datetime helper implementation.
//
//***************************************************************************
#ifndef _DATETIME_H_
#define _DATETIME_H_
#define WBEMDT_DMTF_LEN 25
#define WBEMDT_DMTF_SPOS 14
#define WBEMDT_DMTF_UPOS 21
#define WBEMDT_MIN_YEAR 0
#define WBEMDT_MAX_YEAR 9999
#define WBEMDT_MIN_MONTH 1
#define WBEMDT_MAX_MONTH 12
#define WBEMDT_MIN_DAY 1
#define WBEMDT_MAX_DAY 31
#define WBEMDT_MIN_DAYINT 0
#define WBEMDT_MAX_DAYINT 999999
#define WBEMDT_MIN_HOURS 0
#define WBEMDT_MAX_HOURS 23
#define WBEMDT_MIN_MINUTES 0
#define WBEMDT_MAX_MINUTES 59
#define WBEMDT_MIN_SECONDS 0
#define WBEMDT_MAX_SECONDS 59
#define WBEMDT_MIN_MICROSEC 0
#define WBEMDT_MAX_MICROSEC 999999
#define WBEMDT_MIN_UTC -720
#define WBEMDT_MAX_UTC 720
#define INVALID_TIME 0xffffffffffffffff
//***************************************************************************
//
// CLASS NAME:
//
// CWbemDateTime
//
// DESCRIPTION:
//
// Implements the ISWbemDateTime interface.
//
//***************************************************************************
class CWbemDateTime
{
private:
// Private helper class for all the messy business
class WBEMTime
{
private:
class WBEMTimeSpan
{
private:
ULONGLONG m_Time;
friend class WBEMTime;
public:
WBEMTimeSpan (
int iMinutes
)
{
m_Time = iMinutes * 60;
m_Time *= 10000000;
}
};
public:
WBEMTime () { m_uTime = INVALID_TIME ; }
WBEMTime ( const FILETIME &ft ) ;
WBEMTime operator+ ( const WBEMTimeSpan &ts ) const;
WBEMTime operator- ( const WBEMTimeSpan &sub ) const;
BOOL GetSYSTEMTIME ( SYSTEMTIME *pst ) const;
BOOL GetDMTF ( SYSTEMTIME &st, long &offset ) const;
BOOL GetFILETIME ( FILETIME *pst ) const;
bool IsOk () const { return m_uTime != INVALID_TIME ? true : false; }
static LONG WINAPI GetLocalOffsetForDate(const SYSTEMTIME *pst);
private:
ULONGLONG m_uTime;
};
private:
VARIANT_BOOL m_bYearSpecified;
VARIANT_BOOL m_bMonthSpecified;
VARIANT_BOOL m_bDaySpecified;
VARIANT_BOOL m_bHoursSpecified;
VARIANT_BOOL m_bMinutesSpecified;
VARIANT_BOOL m_bSecondsSpecified;
VARIANT_BOOL m_bMicrosecondsSpecified;
VARIANT_BOOL m_bUTCSpecified;
VARIANT_BOOL m_bIsInterval;
long m_iYear;
long m_iMonth;
long m_iDay;
long m_iHours;
long m_iMinutes;
long m_iSeconds;
long m_iMicroseconds;
long m_iUTC;
bool CheckField (
LPWSTR pValue,
ULONG len,
VARIANT_BOOL &bIsSpecified,
long &iValue,
long maxValue,
long minValue
);
bool CheckUTC (
LPWSTR pValue,
VARIANT_BOOL &bIsSpecified,
long &iValue,
bool bParseSign = true
);
protected:
public:
CWbemDateTime(void);
virtual ~CWbemDateTime(void);
// ISWbemDateTime methods
HRESULT GetValue ( BSTR *value ) ;
HRESULT PutValue ( BSTR value ) ;
HRESULT GetDay ( long *value )
{
*value = m_iDay;
return S_OK;
}
HRESULT GetHours ( long *value )
{
*value = m_iHours;
return S_OK;
}
HRESULT GetMinutes ( long *value )
{
*value = m_iMinutes;
return S_OK;
}
HRESULT GetSeconds ( long *value )
{
*value = m_iSeconds;
return S_OK;
}
HRESULT GetMicroseconds ( long *value )
{
*value = m_iMicroseconds;
return S_OK;
}
HRESULT GetIsInterval ( VARIANT_BOOL *value )
{
*value = m_bIsInterval;
return S_OK;
}
HRESULT GetFileTimeDate (
FILETIME &fFileTime
) ;
HRESULT GetSystemTimeDate (
SYSTEMTIME &fSystemTime
) ;
HRESULT SetFileTimeDate (
FILETIME fFileTime,
VARIANT_BOOL bIsLocal
) ;
BOOL Preceeds ( CWbemDateTime &a_Time ) ;
};
#endif // _DATETIME_H | [
"polarisdp@gmail.com"
] | polarisdp@gmail.com |
8312812c543437a82e0c5c3ed9f7d8236c689406 | 25f26211ee9ea6b6de6b279b42cbc36bbe28738f | /oss_src/fileio/dmlcio/s3_filesys.cc | 6ab8d1a1a6a8e6b4aca369915adeeab566361807 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | yangxingpping/SFrame | dd67f2b4742776a74ee0a6b0d7049988ff17084c | 71bd2475c5ff1aeab23ced5d6162859f470859a3 | refs/heads/master | 2021-01-18T07:36:24.326619 | 2015-10-12T22:50:57 | 2015-10-12T22:50:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 29,291 | cc | /**
* Copyright (C) 2015 Dato, Inc.
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD license. See the LICENSE file for details.
*/
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <string>
#include <algorithm>
#include <ctime>
#include <sstream>
extern "C" {
#include <errno.h>
#include <curl/curl.h>
#include <curl/curl.h>
#include <openssl/hmac.h>
#include <openssl/md5.h>
#include <openssl/bio.h>
#include <openssl/buffer.h>
}
#include "io.h"
#include "./s3_filesys.h"
#include <logger/assertions.hpp>
/*!
* \brief safely get the beginning address of a vector
* \param vec input vector
* \return beginning address of a vector
*/
template<typename T>
static inline T *BeginPtr(std::vector<T> &vec) {
if (vec.size() == 0) {
return NULL;
} else {
return &vec[0];
}
}
/*! \brief get the beginning address of a vector */
template<typename T>
static inline const T *BeginPtr(const std::vector<T> &vec) {
if (vec.size() == 0) {
return NULL;
} else {
return &vec[0];
}
}
static inline char* BeginPtr(std::string &str) {
if (str.length() == 0) return NULL;
return &str[0];
}
static inline const char* BeginPtr(const std::string &str) {
if (str.length() == 0) return NULL;
return &str[0];
}
namespace dmlc {
namespace io {
/*! \brief namespace for helper utils */
namespace s3 {
// simple XML parser
struct XMLIter {
// content of xml
const char *content_;
// end of content
const char *cend_;
explicit XMLIter()
: content_(NULL), cend_(NULL) {
}
// constructor
explicit XMLIter(const char *content)
: content_(content) {
cend_ = content_ + strlen(content_);
}
/*! \brief convert to string */
inline std::string str(void) const {
if (content_ >= cend_) return std::string("");
return std::string(content_, cend_ - content_);
}
/*!
* \brief get next value of corresponding key in xml string
* \param key the key in xml field
* \param value the return value if success
* \return if the get is success
*/
inline bool GetNext(const char *key,
XMLIter *value) {
std::string begin = std::string("<") + key +">";
std::string end = std::string("</") + key +">";
const char *pbegin = strstr(content_, begin.c_str());
if (pbegin == NULL || pbegin > cend_) return false;
content_ = pbegin + begin.size();
const char *pend = strstr(content_, end.c_str());
ASSERT_MSG(pend != NULL, "bad xml format");
value->content_ = content_;
value->cend_ = pend;
content_ = pend + end.size();
return true;
}
};
/*!
* \brief return a base64 encodes string
* \param md the data
* \param len the length of data
* \return the encoded string
*/
std::string Base64(unsigned char md[], unsigned len) {
// encode base64
BIO *fp = BIO_push(BIO_new(BIO_f_base64()),
BIO_new(BIO_s_mem()));
BIO_write(fp, md, len);
BIO_ctrl(fp, BIO_CTRL_FLUSH, 0, NULL);
BUF_MEM *res;
BIO_get_mem_ptr(fp, &res);
std::string ret(res->data, res->length - 1);
BIO_free_all(fp);
return ret;
}
/*!
* \brief sign given AWS secret key
* \param secret_key the key to compute the sign
* \param content the content to sign
*/
std::string Sign(const std::string &key, const std::string &content) {
HMAC_CTX ctx;
unsigned char md[EVP_MAX_MD_SIZE];
unsigned rlen = 0;
HMAC_CTX_init(&ctx);
HMAC_Init(&ctx, key.c_str(), key.length(), EVP_sha1());
HMAC_Update(&ctx,
reinterpret_cast<const unsigned char*>(content.c_str()),
content.length());
HMAC_Final(&ctx, md, &rlen);
HMAC_CTX_cleanup(&ctx);
return Base64(md, rlen);
}
// sign AWS key
std::string Sign(const std::string &key,
const std::string &method,
const std::string &content_md5,
const std::string &content_type,
const std::string &date,
std::vector<std::string> amz_headers,
const std::string &resource) {
std::ostringstream stream;
stream << method << "\n";
stream << content_md5 << "\n";
stream << content_type << "\n";
stream << date << "\n";
std::sort(amz_headers.begin(), amz_headers.end());
for (size_t i = 0; i < amz_headers.size(); ++i) {
stream << amz_headers[i] << "\n";
}
stream << resource;
return Sign(key, stream.str());
}
std::string ComputeMD5(const std::string &buf) {
if (buf.length() == 0) return "";
const int kLen = 128 / 8;
unsigned char md[kLen];
MD5(reinterpret_cast<const unsigned char *>(buf.c_str()),
buf.length(), md);
return Base64(md, kLen);
}
// remove the beginning slash at name
inline const char *RemoveBeginSlash(const std::string &name) {
const char *s = name.c_str();
while (*s == '/') {
++s;
}
return s;
}
// fin dthe error field of the header
inline bool FindHttpError(const std::string &header) {
std::string hd, ret;
int code;
std::istringstream is(header);
if (is >> hd >> code >> ret) {
if (code == 206 || ret == "OK") {
return false;
} else if (ret == "Continue") {
return false;
}
}
return true;
}
/*!
* \brief get the datestring needed by AWS
* \return datestring
*/
inline std::string GetDateString(void) {
time_t t = time(NULL);
tm gmt;
gmtime_r(&t, &gmt);
char buf[256];
strftime(buf, 256, "%a, %d %b %Y %H:%M:%S GMT", &gmt);
return std::string(buf);
}
// curl callback to write sstream
size_t WriteSStreamCallback(char *buf, size_t size, size_t count, void *fp) {
static_cast<std::ostringstream*>(fp)->write(buf, size * count);
return size * count;
}
// callback by curl to write to std::string
size_t WriteStringCallback(char *buf, size_t size, size_t count, void *fp) {
size *= count;
std::string *str = static_cast<std::string*>(fp);
size_t len = str->length();
str->resize(len + size);
std::memcpy(BeginPtr(*str) + len, buf, size);
return size;
}
// useful callback for reading memory
struct ReadStringStream {
const char *dptr;
size_t nleft;
// constructor
ReadStringStream(const std::string &data) {
dptr = BeginPtr(data);
nleft = data.length();
}
// curl callback to write sstream
static size_t Callback(char *buf, size_t size, size_t count, void *fp) {
size *= count;
ReadStringStream *s = static_cast<ReadStringStream*>(fp);
size_t nread = std::min(size, s->nleft);
std::memcpy(buf, s->dptr, nread);
s->dptr += nread; s->nleft -= nread;
return nread;
}
};
/*!
* \brief reader stream that can be used to read from CURL
*/
class CURLReadStreamBase : public SeekStream {
public:
virtual ~CURLReadStreamBase() {
Close();
}
virtual void Close() {
this->Cleanup();
}
virtual size_t Tell(void) {
return curr_bytes_;
}
virtual bool AtEnd(void) const {
return at_end_;
}
virtual void Write(const void *ptr, size_t size) {
logstream(LOG_FATAL) << "CURL.ReadStream cannot be used for write" << std::endl;
}
// lazy seek function
virtual void Seek(size_t pos) {
if (curr_bytes_ != pos) {
this->Cleanup();
curr_bytes_ = pos;
}
}
virtual size_t Read(void *ptr, size_t size);
protected:
CURLReadStreamBase()
: mcurl_(NULL), ecurl_(NULL), slist_(NULL),
read_ptr_(0), curr_bytes_(0), at_end_(false) {
}
/*!
* \brief initialize the ecurl request,
* \param begin_bytes the beginning bytes of the stream
* \param ecurl a curl easy handle that can be used to set request
* \param slist a curl slist handle that can be used to set headers
*/
virtual void InitRequest(size_t begin_bytes,
CURL *ecurl,
curl_slist **slist) = 0;
private:
/*!
* \brief called by child class to initialize read
* \param begin_bytes the beginning bytes of the stream
*/
void Init(size_t begin_bytes);
/*!
* \brief cleanup the previous session for restart
*/
void Cleanup(void);
/*!
* \brief try to fill the buffer with at least wanted bytes
* \param want_bytes number of bytes we want to fill
* \return number of remainning running curl handles
*/
int FillBuffer(size_t want_bytes);
// multi and easy curl handle
CURL *mcurl_, *ecurl_;
// slist needed by the program
curl_slist *slist_;
// data buffer
std::string buffer_;
// header buffer
std::string header_;
// data pointer to read position
size_t read_ptr_;
// current position in the stream
size_t curr_bytes_;
// mark end of stream
bool at_end_;
};
// read data in
size_t CURLReadStreamBase::Read(void *ptr, size_t size) {
// lazy initialize
if (mcurl_ == NULL) Init(curr_bytes_);
// check at end
if (at_end_) return 0;
size_t nleft = size;
char *buf = reinterpret_cast<char*>(ptr);
while (nleft != 0) {
if (read_ptr_ == buffer_.length()) {
read_ptr_ = 0; buffer_.clear();
if (this->FillBuffer(nleft) == 0 && buffer_.length() == 0) {
at_end_ = true;
break;
}
}
size_t nread = std::min(nleft, buffer_.length() - read_ptr_);
std::memcpy(buf, BeginPtr(buffer_) + read_ptr_, nread);
buf += nread; read_ptr_ += nread; nleft -= nread;
}
size_t read_bytes = size - nleft;
curr_bytes_ += read_bytes;
return read_bytes;
}
// cleanup the previous sessions for restart
void CURLReadStreamBase::Cleanup() {
if (mcurl_ != NULL) {
curl_multi_remove_handle(mcurl_, ecurl_);
curl_easy_cleanup(ecurl_);
curl_multi_cleanup(mcurl_);
mcurl_ = NULL;
ecurl_ = NULL;
}
if (slist_ != NULL) {
curl_slist_free_all(slist_);
slist_ = NULL;
}
buffer_.clear(); header_.clear();
curr_bytes_ = 0; at_end_ = false;
}
void CURLReadStreamBase::Init(size_t begin_bytes) {
ASSERT_MSG(mcurl_ == NULL && ecurl_ == NULL &&
slist_ == NULL, "must call init in clean state");
// make request
ecurl_ = curl_easy_init();
this->InitRequest(begin_bytes, ecurl_, &slist_);
ASSERT_TRUE(curl_easy_setopt(ecurl_, CURLOPT_WRITEFUNCTION, WriteStringCallback) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(ecurl_, CURLOPT_WRITEDATA, &buffer_) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(ecurl_, CURLOPT_HEADERFUNCTION, WriteStringCallback) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(ecurl_, CURLOPT_HEADERDATA, &header_) == CURLE_OK);
curl_easy_setopt(ecurl_, CURLOPT_NOSIGNAL, 1);
mcurl_ = curl_multi_init();
ASSERT_TRUE(curl_multi_add_handle(mcurl_, ecurl_) == CURLM_OK);
int nrun;
curl_multi_perform(mcurl_, &nrun);
ASSERT_TRUE(nrun != 0 || header_.length() != 0 || buffer_.length() != 0);
// start running and check header
this->FillBuffer(1);
if (FindHttpError(header_)) {
while (this->FillBuffer(buffer_.length() + 256) != 0);
log_and_throw_io_failure(std::string("Request Error:") + header_ + buffer_);
}
// setup the variables
at_end_ = false;
curr_bytes_ = begin_bytes;
read_ptr_ = 0;
}
// fill the buffer with wanted bytes
int CURLReadStreamBase::FillBuffer(size_t nwant) {
int nrun = 0;
while (buffer_.length() < nwant) {
// wait for the event of read ready
fd_set fdread;
fd_set fdwrite;
fd_set fdexcep;
FD_ZERO(&fdread);
FD_ZERO(&fdwrite);
FD_ZERO(&fdexcep);
int maxfd = -1;
timeval timeout;
timeout.tv_sec = 60;
timeout.tv_usec = 0;
long curl_timeo;
curl_multi_timeout(mcurl_, &curl_timeo);
if (curl_timeo >= 0) {
timeout.tv_sec = curl_timeo / 1000;
if(timeout.tv_sec > 1) {
timeout.tv_sec = 1;
} else {
timeout.tv_usec = (curl_timeo % 1000) * 1000;
}
}
ASSERT_TRUE(curl_multi_fdset(mcurl_, &fdread, &fdwrite, &fdexcep, &maxfd) == CURLM_OK);
int rc;
if (maxfd == -1) {
#ifdef _WIN32
Sleep(100);
rc = 0;
#else
struct timeval wait = { 0, 100 * 1000 };
rc = select(0, NULL, NULL, NULL, &wait);
#endif
} else {
rc = select(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
}
if (rc != -1) {
CURLMcode ret = curl_multi_perform(mcurl_, &nrun);
if (ret == CURLM_CALL_MULTI_PERFORM) continue;
ASSERT_TRUE(ret == CURLM_OK);
if (nrun == 0) return 0;
}
}
return nrun;
}
// End of CURLReadStreamBase functions
// singleton class for global initialization
struct CURLGlobal {
CURLGlobal() {
ASSERT_TRUE(curl_global_init(CURL_GLOBAL_DEFAULT) == CURLE_OK);
}
~CURLGlobal() {
curl_global_cleanup();
}
};
// used for global initialization
static CURLGlobal curl_global;
/*! \brief reader stream that can be used to read */
class ReadStream : public CURLReadStreamBase {
public:
ReadStream(const URI &path,
const std::string &aws_id,
const std::string &aws_key)
: path_(path), aws_id_(aws_id), aws_key_(aws_key) {
}
virtual ~ReadStream(void) {}
protected:
// implement InitRequest
virtual void InitRequest(size_t begin_bytes,
CURL *ecurl,
curl_slist **slist);
private:
// path we are reading
URI path_;
// aws access key and id
std::string aws_id_, aws_key_;
};
// initialize the reader at begin bytes
void ReadStream::InitRequest(size_t begin_bytes,
CURL *ecurl,
curl_slist **slist) {
// initialize the curl request
std::vector<std::string> amz;
std::string date = GetDateString();
std::string signature = Sign(aws_key_, "GET", "", "", date, amz,
std::string("/") + path_.host + '/' + RemoveBeginSlash(path_.name));
// generate headers
std::ostringstream sauth, sdate, surl, srange;
std::ostringstream result;
sauth << "Authorization: AWS " << aws_id_ << ":" << signature;
sdate << "Date: " << date;
surl << "http://" << path_.host << ".s3.amazonaws.com" << '/'
<< RemoveBeginSlash(path_.name);
srange << "Range: bytes=" << begin_bytes << "-";
*slist = curl_slist_append(*slist, sdate.str().c_str());
*slist = curl_slist_append(*slist, srange.str().c_str());
*slist = curl_slist_append(*slist, sauth.str().c_str());
ASSERT_TRUE(curl_easy_setopt(ecurl, CURLOPT_HTTPHEADER, *slist) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(ecurl, CURLOPT_URL, surl.str().c_str()) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(ecurl, CURLOPT_HTTPGET, 1L) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(ecurl, CURLOPT_HEADER, 0L) == CURLE_OK);
curl_easy_setopt(ecurl, CURLOPT_NOSIGNAL, 1);
}
/*! \brief simple http read stream to check */
class HttpReadStream : public CURLReadStreamBase {
public:
HttpReadStream(const URI &path)
: path_(path) {}
// implement InitRequest
virtual void InitRequest(size_t begin_bytes,
CURL *ecurl,
curl_slist **slist) {
ASSERT_MSG(begin_bytes == 0, " HttpReadStream: do not support Seek");
ASSERT_TRUE(curl_easy_setopt(ecurl, CURLOPT_URL, path_.str().c_str()) == CURLE_OK);
curl_easy_setopt(ecurl, CURLOPT_NOSIGNAL, 1);
}
private:
URI path_;
};
class WriteStream : public Stream {
public:
WriteStream(const URI &path,
const std::string &aws_id,
const std::string &aws_key)
: path_(path), aws_id_(aws_id),
aws_key_(aws_key) {
const char *buz = getenv("DMLC_S3_WRITE_BUFFER_MB");
if (buz != NULL) {
max_buffer_size_ = static_cast<size_t>(atol(buz)) << 20UL;
} else {
// 64 MB
const size_t kDefaultBufferSize = 64 << 20UL;
max_buffer_size_ = kDefaultBufferSize;
}
max_error_retry_ = 3;
ecurl_ = curl_easy_init();
this->Init();
}
virtual size_t Read(void *ptr, size_t size) {
logstream(LOG_FATAL) << "S3.WriteStream cannot be used for read" << std::endl;
return 0;
}
virtual void Write(const void *ptr, size_t size);
// destructor
virtual ~WriteStream() {
if (!closed_) {
no_exception_ = true;
this->Upload(true);
this->Finish();
curl_easy_cleanup(ecurl_);
}
}
virtual void Close() {
closed_ = true;
this->Upload(true);
this->Finish();
curl_easy_cleanup(ecurl_);
}
private:
// internal maximum buffer size
size_t max_buffer_size_;
// maximum time of retry when error occurs
int max_error_retry_;
// path we are reading
URI path_;
// aws access key and id
std::string aws_id_, aws_key_;
// easy curl handle used for the request
CURL *ecurl_;
// upload_id used by AWS
std::string upload_id_;
// write data buffer
std::string buffer_;
// etags of each part we uploaded
std::vector<std::string> etags_;
// part id of each part we uploaded
std::vector<size_t> part_ids_;
bool closed_ = false;
bool no_exception_ = false;
/*!
* \brief helper function to do http post request
* \param method method to peform
* \param path the resource to post
* \param url_args additional arguments in URL
* \param url_args translated arguments to sign
* \param content_type content type of the data
* \param data data to post
* \param out_header holds output Header
* \param out_data holds output data
*/
void Run(const std::string &method,
const URI &path,
const std::string &args,
const std::string &content_type,
const std::string &data,
std::string *out_header,
std::string *out_data);
/*!
* \brief initialize the upload request
*/
void Init(void);
/*!
* \brief upload the buffer to S3, store the etag
* clear the buffer
*/
void Upload(bool force_upload_even_if_zero_bytes = false);
/*!
* \brief commit the upload and finish the session
*/
void Finish(void);
};
void WriteStream::Write(const void *ptr, size_t size) {
size_t rlen = buffer_.length();
buffer_.resize(rlen + size);
std::memcpy(BeginPtr(buffer_) + rlen, ptr, size);
if (buffer_.length() >= max_buffer_size_) {
this->Upload();
}
}
void WriteStream::Run(const std::string &method,
const URI &path,
const std::string &args,
const std::string &content_type,
const std::string &data,
std::string *out_header,
std::string *out_data) {
// initialize the curl request
std::vector<std::string> amz;
std::string md5str = ComputeMD5(data);
std::string date = GetDateString();
std::string signature = Sign(aws_key_, method.c_str(), md5str,
content_type, date, amz,
std::string("/") + path_.host + '/' +
RemoveBeginSlash(path_.name) + args);
// generate headers
std::ostringstream sauth, sdate, surl, scontent, smd5;
std::ostringstream rheader, rdata;
sauth << "Authorization: AWS " << aws_id_ << ":" << signature;
sdate << "Date: " << date;
surl << "http://" << path_.host << ".s3.amazonaws.com" << '/'
<< RemoveBeginSlash(path_.name) << args;
scontent << "Content-Type: " << content_type;
// list
curl_slist *slist = NULL;
slist = curl_slist_append(slist, sdate.str().c_str());
slist = curl_slist_append(slist, scontent.str().c_str());
if (md5str.length() != 0) {
smd5 << "Content-MD5: " << md5str;
slist = curl_slist_append(slist, smd5.str().c_str());
}
slist = curl_slist_append(slist, sauth.str().c_str());
int num_retry = 0;
while (true) {
// helper for read string
ReadStringStream ss(data);
curl_easy_reset(ecurl_);
auto surlstring = surl.str();
ASSERT_TRUE(curl_easy_setopt(ecurl_, CURLOPT_HTTPHEADER, slist) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(ecurl_, CURLOPT_URL, surlstring.c_str()) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(ecurl_, CURLOPT_HEADER, 0L) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(ecurl_, CURLOPT_WRITEFUNCTION, WriteSStreamCallback) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(ecurl_, CURLOPT_WRITEDATA, &rdata) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(ecurl_, CURLOPT_WRITEHEADER, WriteSStreamCallback) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(ecurl_, CURLOPT_HEADERDATA, &rheader) == CURLE_OK);
curl_easy_setopt(ecurl_, CURLOPT_NOSIGNAL, 1);
if (method == "POST") {
ASSERT_TRUE(curl_easy_setopt(ecurl_, CURLOPT_POST, 0L) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(ecurl_, CURLOPT_POSTFIELDSIZE, data.length()) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(ecurl_, CURLOPT_POSTFIELDS, BeginPtr(data)) == CURLE_OK);
} else if (method == "PUT") {
ASSERT_TRUE(curl_easy_setopt(ecurl_, CURLOPT_PUT, 1L) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(ecurl_, CURLOPT_READDATA, &ss) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(ecurl_, CURLOPT_INFILESIZE_LARGE, data.length()) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(ecurl_, CURLOPT_READFUNCTION, ReadStringStream::Callback) == CURLE_OK);
}
CURLcode ret = curl_easy_perform(ecurl_);
if (ret != CURLE_OK) {
logstream(LOG_INFO) << "request " << surlstring << "failed with error "
<< curl_easy_strerror(ret) << " Progress "
<< etags_.size() << " uploaded " << " retry=" << num_retry << std::endl;
num_retry += 1;
ASSERT_MSG(num_retry < max_error_retry_, " maximum retry time reached");
curl_easy_cleanup(ecurl_);
ecurl_ = curl_easy_init();
} else {
break;
}
}
curl_slist_free_all(slist);
*out_header = rheader.str();
*out_data = rdata.str();
if (FindHttpError(*out_header) ||
out_data->find("<Error>") != std::string::npos) {
if (no_exception_) {
logstream(LOG_ERROR) << (std::string("AWS S3 Error:") + *out_header + *out_data) << std::endl;
} else {
log_and_throw_io_failure(std::string("AWS S3 Error:") + *out_header + *out_data);
}
}
}
void WriteStream::Init(void) {
std::string rheader, rdata;
Run("POST", path_, "?uploads",
"binary/octel-stream", "", &rheader, &rdata);
XMLIter xml(rdata.c_str());
XMLIter upid;
ASSERT_MSG(xml.GetNext("UploadId", &upid), "missing UploadId");
upload_id_ = upid.str();
}
void WriteStream::Upload(bool force_upload_even_if_zero_bytes) {
if (buffer_.length() == 0 && !force_upload_even_if_zero_bytes) return;
std::ostringstream sarg;
std::string rheader, rdata;
size_t partno = etags_.size() + 1;
sarg << "?partNumber=" << partno << "&uploadId=" << upload_id_;
Run("PUT", path_, sarg.str(),
"binary/octel-stream", buffer_, &rheader, &rdata);
const char *p = strstr(rheader.c_str(), "ETag: ");
ASSERT_MSG((p != NULL), "cannot find ETag in header");
p = strchr(p, '\"');
ASSERT_MSG((p != NULL), "cannot find ETag in header");
const char *end = strchr(p + 1, '\"');
ASSERT_MSG((end != NULL), "cannot find ETag in header");
etags_.push_back(std::string(p, end - p + 1));
part_ids_.push_back(partno);
buffer_.clear();
}
void WriteStream::Finish(void) {
std::ostringstream sarg, sdata;
std::string rheader, rdata;
sarg << "?uploadId=" << upload_id_;
sdata << "<CompleteMultipartUpload>\n";
ASSERT_TRUE(etags_.size() == part_ids_.size());
for (size_t i = 0; i < etags_.size(); ++i) {
sdata << " <Part>\n"
<< " <PartNumber>" << part_ids_[i] << "</PartNumber>\n"
<< " <ETag>" << etags_[i] << "</ETag>\n"
<< " </Part>\n";
}
sdata << "</CompleteMultipartUpload>\n";
Run("POST", path_, sarg.str(),
"text/xml", sdata.str(), &rheader, &rdata);
}
/*!
* \brief list the objects in the bucket with prefix specified by path.name
* \param path the path to query
* \param aws_id access id of aws
* \param aws_key access key of aws
* \paam out_list stores the output results
*/
void ListObjects(const URI &path,
const std::string aws_id,
const std::string aws_key,
std::vector<FileInfo> *out_list) {
ASSERT_MSG(path.host.length() != 0, "bucket name not specified in s3");
out_list->clear();
std::vector<std::string> amz;
std::string date = GetDateString();
std::string signature = Sign(aws_key, "GET", "", "", date, amz,
std::string("/") + path.host + "/");
std::ostringstream sauth, sdate, surl;
std::ostringstream result;
sauth << "Authorization: AWS " << aws_id << ":" << signature;
sdate << "Date: " << date;
surl << "http://" << path.host << ".s3.amazonaws.com"
<< "/?delimiter=/&prefix=" << RemoveBeginSlash(path.name);
// make request
CURL *curl = curl_easy_init();
curl_slist *slist = NULL;
slist = curl_slist_append(slist, sdate.str().c_str());
slist = curl_slist_append(slist, sauth.str().c_str());
ASSERT_TRUE(curl_easy_setopt(curl, CURLOPT_HTTPHEADER, slist) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(curl, CURLOPT_URL, surl.str().c_str()) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(curl, CURLOPT_HTTPGET, 1L) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, WriteSStreamCallback) == CURLE_OK);
ASSERT_TRUE(curl_easy_setopt(curl, CURLOPT_WRITEDATA, &result) == CURLE_OK);
curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);
ASSERT_TRUE(curl_easy_perform(curl) == CURLE_OK);
curl_slist_free_all(slist);
curl_easy_cleanup(curl);
// parse xml
std::string ret = result.str();
if (ret.find("<Error>") != std::string::npos) {
log_and_throw_io_failure(ret);
}
{// get files
XMLIter xml(ret.c_str());
XMLIter data;
ASSERT_MSG((xml.GetNext("IsTruncated", &data)), "missing IsTruncated");
ASSERT_MSG((data.str() == "false"), "the returning list is truncated");
while (xml.GetNext("Contents", &data)) {
FileInfo info;
info.path = path;
XMLIter value;
ASSERT_TRUE(data.GetNext("Key", &value));
// add root path to be consistent with other filesys convention
info.path.name = '/' + value.str();
ASSERT_TRUE(data.GetNext("Size", &value));
info.size = static_cast<size_t>(atol(value.str().c_str()));
info.type = kFile;
out_list->push_back(info);
}
}
{// get directories
XMLIter xml(ret.c_str());
XMLIter data;
while (xml.GetNext("CommonPrefixes", &data)) {
FileInfo info;
info.path = path;
XMLIter value;
ASSERT_TRUE(data.GetNext("Prefix", &value));
// add root path to be consistent with other filesys convention
info.path.name = '/' + value.str();
info.size = 0; info.type = kDirectory;
out_list->push_back(info);
}
}
}
} // namespace s3
void S3FileSystem::SetCredentials(const std::string& aws_access_id,
const std::string& aws_secret_key) {
aws_access_id_ = aws_access_id;
aws_secret_key_ = aws_secret_key;
}
bool S3FileSystem::TryGetPathInfo(const URI &path_, FileInfo *out_info) {
URI path = path_;
while (path.name.length() > 1 &&
*path.name.rbegin() == '/') {
path.name.resize(path.name.length() - 1);
}
std::vector<FileInfo> files;
s3::ListObjects(path, aws_access_id_, aws_secret_key_, &files);
std::string pdir = path.name + '/';
for (size_t i = 0; i < files.size(); ++i) {
if (files[i].path.name == path.name) {
*out_info = files[i]; return true;
}
if (files[i].path.name == pdir) {
*out_info = files[i]; return true;
}
}
return false;
}
FileInfo S3FileSystem::GetPathInfo(const URI &path) {
ASSERT_MSG(path.protocol == "s3://", " S3FileSystem.ListDirectory");
FileInfo info;
ASSERT_TRUE(TryGetPathInfo(path, &info));
return info;
}
void S3FileSystem::ListDirectory(const URI &path, std::vector<FileInfo> *out_list) {
ASSERT_MSG(path.protocol == "s3://", " S3FileSystem.ListDirectory");
if (path.name[path.name.length() - 1] == '/') {
s3::ListObjects(path, aws_access_id_,
aws_secret_key_, out_list);
return;
}
std::vector<FileInfo> files;
std::string pdir = path.name + '/';
out_list->clear();
s3::ListObjects(path, aws_access_id_,
aws_secret_key_, &files);
for (size_t i = 0; i < files.size(); ++i) {
if (files[i].path.name == path.name) {
ASSERT_TRUE(files[i].type == kFile);
out_list->push_back(files[i]);
return;
}
if (files[i].path.name == pdir) {
ASSERT_TRUE(files[i].type == kDirectory);
s3::ListObjects(files[i].path, aws_access_id_,
aws_secret_key_, out_list);
return;
}
}
}
Stream *S3FileSystem::Open(const URI &path, const char* const flag) {
using namespace std;
if (!strcmp(flag, "r") || !strcmp(flag, "rb")) {
return OpenForRead(path);
} else if (!strcmp(flag, "w") || !strcmp(flag, "wb")) {
ASSERT_MSG((path.protocol == "s3://"), " S3FileSystem.Open");
return new s3::WriteStream(path, aws_access_id_, aws_secret_key_);
}else {
log_and_throw_io_failure(std::string("S3FileSytem.Open do not support flag ") + flag);
return NULL;
}
}
SeekStream *S3FileSystem::OpenForRead(const URI &path) {
ASSERT_MSG((path.protocol == "s3://"), " S3FileSystem.Open");
FileInfo info;
if (TryGetPathInfo(path, &info) && info.type == kFile) {
return new s3::ReadStream(path, aws_access_id_, aws_secret_key_);
} else {
return NULL;
}
}
} // namespace io
} // namespace dmlc
| [
"toby@dato.com"
] | toby@dato.com |
514251cb27ffec25f9fa978f7b0498251f88233e | 9258d1dd1358c3389a9dca72930427515fc3b24a | /ado_access/main.cpp | 8f218e4003ef92bb4ea2528cf56e26acbaa2b980 | [
"MIT"
] | permissive | fawdlstty/ado_access | d9def75c7fa568baf3c2e06bf6a3966cb076d75d | b6b4fc80ae3e2ee78399e45e4478c83ddeda02ee | refs/heads/master | 2020-06-30T23:35:22.416606 | 2017-09-29T07:26:40 | 2017-09-29T07:26:40 | 74,344,649 | 2 | 0 | null | null | null | null | GB18030 | C++ | false | false | 734 | cpp | #include <vector>
using namespace std;
#include "SqlConn.h"
#include "TestModel.hpp"
int main (int argc, char* argv []) {
hSqlConn *pConn = new hSqlConn (_T (""));
//添加一条记录
hTestModel o1 (pConn);
o1.m_field1 = _T ("abc");
o1.m_field2 = 3;
o1.add_item ();
//删除一条记录
hTestModel (pConn).del_item (_T ("col_name1"), _T ("abc"));
//修改一条记录
hTestModel o2 (pConn);
o2.m_field1 = _T ("abcde");
o2.m_field2 = 5;
o2.set_item (_T ("col_name1"), _T ("abc"));
//获取一条记录
hTestModel o3 (pConn);
o3.get_item (_T ("col_name1"), _T ("value"));
//查询整个数据表
vector<hTestModel*> v;
hTestModel (pConn).get_table ((vector<hSqlObjectModel*>&)v);
delete pConn;
return 0;
}
| [
"fawdlstty@qq.com"
] | fawdlstty@qq.com |
d12c501fb55eda667ba104b53faf92381335f93a | 0f457762985248f4f6f06e29429955b3fd2c969a | /irrlicht/irrEdit/source/plugins/jz3dplugins/Plan1x1SceneNode.cpp | 4626ac2c0ce3412f6a76f6f3d7c94abedf9414f3 | [] | no_license | tk8812/ukgtut | f19e14449c7e75a0aca89d194caedb9a6769bb2e | 3146ac405794777e779c2bbb0b735b0acd9a3f1e | refs/heads/master | 2021-01-01T16:55:07.417628 | 2010-11-15T16:02:53 | 2010-11-15T16:02:53 | 37,515,002 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,262 | cpp | #include "Plan1x1SceneNode.h"
namespace irr {
namespace scene
{
namespace jz3d
{
CPlan1x1SceneNode::CPlan1x1SceneNode(
ISceneNode* parent,
ISceneManager* mgr,
s32 id, const core::vector3df& position,
const core::vector3df& rotation, const core::vector3df& scale)
: IMeshSceneNode(parent, mgr, id, position, rotation, scale),
Mesh(0), PassCount(0),
ReadOnlyMaterials(false)
{
#ifdef _DEBUG
setDebugName("CPlan1x1SceneNode");
#endif
//irr::scene::ISceneNode* pNode = 0;
irr::scene::IAnimatedMesh* pMesh;
if(SceneManager->getMeshCache()->isMeshLoaded("jz3d/scene/mesh/plane1x1") == false)
{
pMesh = SceneManager->addHillPlaneMesh("jz3d/scene/mesh/plane1x1",
irr::core::dimension2d<irr::f32>(10,10),
irr::core::dimension2d<irr::u32>(1,1));
}
else
{
pMesh = SceneManager->getMesh("jz3d/scene/mesh/plane1x1");
}
setMesh(pMesh);
}
CPlan1x1SceneNode::~CPlan1x1SceneNode(void)
{
if (Mesh)
Mesh->drop();
}
//void CPlan1x1SceneNode::setSize()
//{
// // we are creating the cube mesh here.
// // nicer texture mapping sent in by Dr Andros C Bragianos
// // .. and then improved by jox.
//
// //video::SColor clr(255,255,255,255);
// //SMeshBuffer* buf = (SMeshBuffer*)Mesh.getMeshBuffer(0);
// //buf->Vertices.reallocate(12);
// //// Start setting vertices from index 0 to deal with this method being called multiple times.
// //buf->Vertices.set_used(0);
// //buf->Vertices.push_back(video::S3DVertex(0,0,0, -1,-1,-1, clr, 0, 1));
// //buf->Vertices.push_back(video::S3DVertex(1,0,0, 1,-1,-1, clr, 1, 1));
// //buf->Vertices.push_back(video::S3DVertex(1,1,0, 1, 1,-1, clr, 1, 0));
// //buf->Vertices.push_back(video::S3DVertex(0,1,0, -1, 1,-1, clr, 0, 0));
// //buf->Vertices.push_back(video::S3DVertex(1,0,1, 1,-1, 1, clr, 0, 1));
// //buf->Vertices.push_back(video::S3DVertex(1,1,1, 1, 1, 1, clr, 0, 0));
// //buf->Vertices.push_back(video::S3DVertex(0,1,1, -1, 1, 1, clr, 1, 0));
// //buf->Vertices.push_back(video::S3DVertex(0,0,1, -1,-1, 1, clr, 1, 1));
// //buf->Vertices.push_back(video::S3DVertex(0,1,1, -1, 1, 1, clr, 0, 1));
// //buf->Vertices.push_back(video::S3DVertex(0,1,0, -1, 1,-1, clr, 1, 1));
// //buf->Vertices.push_back(video::S3DVertex(1,0,1, 1,-1, 1, clr, 1, 0));
// //buf->Vertices.push_back(video::S3DVertex(1,0,0, 1,-1,-1, clr, 0, 0));
// //buf->BoundingBox.reset(0,0,0);
// //for (u32 i=0; i<12; ++i)
// //{
// // buf->Vertices[i].Pos -= core::vector3df(0.5f, 0.5f, 0.5f);
// // buf->Vertices[i].Pos *= Size;
// // buf->BoundingBox.addInternalPoint(buf->Vertices[i].Pos);
// //}
//}
//! renders the node.
void CPlan1x1SceneNode::render()
{
video::IVideoDriver* driver = SceneManager->getVideoDriver();
//driver->setMaterial(Mesh->getMeshBuffer(0)->getMaterial());
driver->setMaterial(getMaterial(0));
driver->setTransform(video::ETS_WORLD, AbsoluteTransformation);
driver->drawMeshBuffer(Mesh->getMeshBuffer(0));
}
//! returns the axis aligned bounding box of this node
const core::aabbox3d<f32>& CPlan1x1SceneNode::getBoundingBox() const
{
return Mesh ? Mesh->getBoundingBox() : Box;
}
void CPlan1x1SceneNode::OnRegisterSceneNode()
{
if (IsVisible)
SceneManager->registerNodeForRendering(this);
ISceneNode::OnRegisterSceneNode();
}
//! returns the material based on the zero based index i. To get the amount
//! of materials used by this scene node, use getMaterialCount().
//! This function is needed for inserting the node into the scene hirachy on a
//! optimal position for minimizing renderstate changes, but can also be used
//! to directly modify the material of a scene node.
video::SMaterial& CPlan1x1SceneNode::getMaterial(u32 i)
{
if (Mesh && ReadOnlyMaterials && i<Mesh->getMeshBufferCount())
{
tmpReadOnlyMaterial = Mesh->getMeshBuffer(i)->getMaterial();
return tmpReadOnlyMaterial;
}
if ( i >= Materials.size())
return ISceneNode::getMaterial(i);
return Materials[i];
}
//! returns amount of materials used by this scene node.
u32 CPlan1x1SceneNode::getMaterialCount() const
{
if (Mesh && ReadOnlyMaterials)
return Mesh->getMeshBufferCount();
return Materials.size();
}
//! Writes attributes of the scene node.
void CPlan1x1SceneNode::serializeAttributes(io::IAttributes* out, io::SAttributeReadWriteOptions* options) const
{
ISceneNode::serializeAttributes(out, options);
}
//! Reads attributes of the scene node.
void CPlan1x1SceneNode::deserializeAttributes(io::IAttributes* in, io::SAttributeReadWriteOptions* options)
{
//Size = in->getAttributeAsFloat("Size");
//Size = core::max_(Size, 0.0001f);
//setSize();
ISceneNode::deserializeAttributes(in, options);
}
//! Creates a clone of this scene node and its children.
ISceneNode* CPlan1x1SceneNode::clone(ISceneNode* newParent, ISceneManager* newManager)
{
if (!newParent) newParent = Parent;
if (!newManager) newManager = SceneManager;
CPlan1x1SceneNode* nb = new CPlan1x1SceneNode(
newParent,
newManager,
ID,
RelativeTranslation);
nb->cloneMembers(this, newManager);
nb->Materials = Materials;
//nb->getMaterial(0) = getMaterial(0);
nb->drop();
return nb;
}
void CPlan1x1SceneNode::setMesh(IMesh* mesh)
{
if (!mesh)
return; // won't set null mesh
if (Mesh)
Mesh->drop();
Mesh = mesh;
copyMaterials();
if (Mesh)
Mesh->grab();
}
void CPlan1x1SceneNode::copyMaterials()
{
Materials.clear();
if (Mesh)
{
video::SMaterial mat;
for (u32 i=0; i<Mesh->getMeshBufferCount(); ++i)
{
IMeshBuffer* mb = Mesh->getMeshBuffer(i);
if (mb)
mat = mb->getMaterial();
Materials.push_back(mat);
}
}
}
}
}
}
| [
"gbox3d@58f0f68e-7603-11de-abb5-1d1887d8974b"
] | gbox3d@58f0f68e-7603-11de-abb5-1d1887d8974b |
f91f1df5d057b3897f474e3262fe2fb34fda4b41 | b45efd405ae89bb008b1a122ff831cee27146ede | /lib/ArduinoStreamUtils/src/StreamUtils/Clients/ReadBufferingClient.hpp | a90ccbb6ae972457b7bd98afbd4db8eefa8865f0 | [
"MIT"
] | permissive | pesor/Fronius-Data-Manager | 48ab731dc86235040a278e9ad7c66f787e0d6406 | 01b61235b013da4fb2d6702bba0b7999b06dfdea | refs/heads/master | 2023-03-04T17:05:27.769895 | 2021-02-06T09:46:01 | 2021-02-06T09:46:01 | 312,324,397 | 7 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,116 | hpp | // StreamUtils - github.com/bblanchon/ArduinoStreamUtils
// Copyright Benoit Blanchon 2019-2020
// MIT License
#pragma once
#include "../Policies/ConnectForwardingPolicy.hpp"
#include "../Policies/ReadBufferingPolicy.hpp"
#include "../Policies/WriteForwardingPolicy.hpp"
#include "../Ports/DefaultAllocator.hpp"
#include "ClientProxy.hpp"
namespace StreamUtils {
template <typename TAllocator>
class BasicReadBufferingClient
: public ClientProxy<ReadBufferingPolicy<TAllocator>, WriteForwardingPolicy,
ConnectForwardingPolicy> {
using base_type = ClientProxy<ReadBufferingPolicy<TAllocator>,
WriteForwardingPolicy, ConnectForwardingPolicy>;
public:
explicit BasicReadBufferingClient(Client &target, size_t capacity,
TAllocator allocator = TAllocator())
: base_type(target, ReadBufferingPolicy<TAllocator>{capacity, allocator},
WriteForwardingPolicy{}, ConnectForwardingPolicy{}) {}
};
using ReadBufferingClient = BasicReadBufferingClient<DefaultAllocator>;
} // namespace StreamUtils | [
"post@per-rose.dk"
] | post@per-rose.dk |
2a094d644fb2afb5ce567d803f7b9edafda2ba38 | 0400ac52a20058bf13a064b838872473212765ca | /Unity_Code/DinoRun_Final/Temp/il2cppOutput/il2cppOutput/mscorlib_System_Collections_Generic_Dictionary_2_V2187670929.h | 92dccf2fc24db608eaafc9b86eb4124bc18fc9ec | [
"Apache-2.0"
] | permissive | BPenzar/SuperDinoBros. | b7e6be07bfc4278d85eeb986f4740c9a91e01689 | f46b866c5a1119c6753dbd8e963212f17a4a31d5 | refs/heads/master | 2021-01-20T04:29:24.503356 | 2017-07-25T14:58:12 | 2017-07-25T14:58:12 | 89,697,299 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,281 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "mscorlib_System_ValueType3507792607.h"
#include "mscorlib_System_Collections_Generic_Dictionary_2_E1821162867.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int64>
struct Enumerator_t2187670929
{
public:
// System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator::host_enumerator
Enumerator_t1821162867 ___host_enumerator_0;
public:
inline static int32_t get_offset_of_host_enumerator_0() { return static_cast<int32_t>(offsetof(Enumerator_t2187670929, ___host_enumerator_0)); }
inline Enumerator_t1821162867 get_host_enumerator_0() const { return ___host_enumerator_0; }
inline Enumerator_t1821162867 * get_address_of_host_enumerator_0() { return &___host_enumerator_0; }
inline void set_host_enumerator_0(Enumerator_t1821162867 value)
{
___host_enumerator_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"bruno.penzar@posteo.de"
] | bruno.penzar@posteo.de |
6a319d70a4f1139245d5d9952c53d70104066b0f | fce94a7d90b22154c7dd54cf90816807e02bf8d0 | /supersonic/cursor/infrastructure/iterators.h | 77be252315a3e3d765ae73c30f7d33e1a579de22 | [
"Apache-2.0"
] | permissive | ruccsbingo/parallel_supersonic | 2dc9894839ca61e4e4bc7b861de220ec18974330 | e21f866b46d00f606d2d0d472346bfb140fa3aba | refs/heads/master | 2021-01-10T19:54:09.325572 | 2015-03-23T08:24:16 | 2015-03-23T08:24:16 | 31,992,832 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 23,749 | h | // Copyright 2010 Google Inc. All Rights Reserved.
//
// 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.
//
//
// Helpers to simplify iterating over views and cursors, either block-by-block
// or row-by-row.
#ifndef SUPERSONIC_CURSOR_INFRASTRUCTURE_ITERATORS_H_
#define SUPERSONIC_CURSOR_INFRASTRUCTURE_ITERATORS_H_
#include <stddef.h>
#include <algorithm>
using std::copy;
using std::max;
using std::min;
using std::reverse;
using std::sort;
using std::swap;
#include <limits>
using std::numeric_limits;
#include <gflags/gflags.h>
#include "supersonic/utils/integral_types.h"
#include <glog/logging.h>
#include "supersonic/utils/logging-inl.h"
#include "supersonic/utils/macros.h"
#include "supersonic/utils/scoped_ptr.h"
#include "supersonic/base/infrastructure/bit_pointers.h"
#include "supersonic/base/infrastructure/block.h"
#include "supersonic/base/infrastructure/tuple_schema.h"
#include "supersonic/base/infrastructure/types.h"
#include "supersonic/base/infrastructure/variant_pointer.h"
#include "supersonic/cursor/base/cursor.h"
#include "supersonic/cursor/base/cursor_transformer.h"
#include "supersonic/proto/supersonic.pb.h"
// TODO(user): remove after a successful launch.
DECLARE_bool(supersonic_release_cursors_aggressively);
namespace supersonic {
class Exception;
// An iterator interface to read from views in smaller chunks.
// An example usage pattern (iterating over views, in chunks no larger than
// max_chunk_row_count):
//
// ViewIterator iterator(schema);
// while (has next view to iterate over) {
// iterator.reset(view);
// while (iterator.next(max_chunk_row_count)) {
// DoSomethingWith(iterator.view());
// }
// }
//
class ViewIterator {
public:
// Creates a new view iterator for views with the specified schema.
explicit ViewIterator(const TupleSchema& schema)
: schema_(schema),
view_(schema),
rows_remaining_(0) {}
// Convenience constructor that resets to the specified view right away.
explicit ViewIterator(const View& view)
: schema_(view.schema()),
view_(view.schema()) {
reset(view);
}
// Resets the iterator to point to the specified view. Right after this
// method is called, the iterator state is 'before the beginning of the
// view'; you must call next() to actually fill it with data:
//
// iterator.reset(view);
// EXPECT_EQ(0, iterator.row_count());
// ASSERT_TRUE(iterator.next());
// EXPECT_EQ(view.row_count(), iterator.row_count());
void reset(const View& view) {
view_.ResetFrom(view); // DCHECKs the schema internally.
view_.set_row_count(0);
rows_remaining_ = view.row_count();
}
// Advances the iterator, returning up to max_row_count subsequent rows.
// The max_row_count must be > 0. Returns true on success; false on EOS.
// If successful, a following call to view().row_count() will yield a
// positive number.
bool next(rowcount_t max_row_count) {
rows_remaining_ -= row_count();
view_.Advance(row_count());
rowcount_t result_row_count = std::min(max_row_count, rows_remaining_);
view_.set_row_count(result_row_count);
return result_row_count > 0;
}
// Possibly reduces the size of the view() up to max_row_count. Returns true
// if the reduction actually took place; false if view() already contained
// max_row_count or less rows. The truncated rows are 'pushed back' to the
// source; they will be returned again after a subsequent call to next():
//
// LOG(INFO) << view.row_count(); // Say, 20
// ViewIterator(view);
// ASSERT_TRUE(iterator.next(15));
// EXPECT_EQ(15, iterator.row_count());
// ASSERT_TRUE(iterator.truncate(5));
// EXPECT_EQ(5, iterator.row_count());
// ASSERT_TRUE(iterator.next(20));
// EXPECT_EQ(15, iterator.row_count());
bool truncate(rowcount_t max_row_count) {
if (max_row_count < view_.row_count()) {
view_.set_row_count(max_row_count);
return true;
} else {
return false;
}
}
const TupleSchema& schema() const { return schema_; }
const View& view() const { return view_; }
// Equivalent to view().row_count().
const rowcount_t row_count() const { return view_.row_count(); }
// Equivalent to schema().attribute_count().
const int column_count() const { return schema().attribute_count(); }
// Returns the number of rows remaining in ViewIterator, including the rows in
// current view().
rowcount_t rows_remaining() const {
return rows_remaining_;
}
const Column& column(size_t column_index) const {
return view_.column(column_index);
}
private:
TupleSchema schema_;
View view_;
rowcount_t rows_remaining_; // Includes rows in the view_.
DISALLOW_COPY_AND_ASSIGN(ViewIterator);
};
// Keeping here to make CursorProxy inlinable (in an attempt to obsessively
// optimize).
namespace internal {
// A helper class, existing to factor out common parts of CursorIterator
// and CursorRowIterator. This class hides a cursor, remembers its last
// result, and allows the caller to cause the cursor to be safely destroyed
// (and resources released).
class CursorProxy {
public:
explicit CursorProxy(Cursor* cursor);
void Next(rowcount_t max_row_count) {
DCHECK(!cursor_status_.is_done())
<< "Cursor already iterated to completion.";
cursor_status_ = cursor_->Next(max_row_count);
if (cursor_status_.is_done() &&
FLAGS_supersonic_release_cursors_aggressively) {
// Dispose of the cursor to release resources ASAP.
Terminate();
}
}
void Interrupt() { if (cursor_ != NULL) cursor_->Interrupt(); }
// Replaces the underlying cursor with the result of the transformation.
void ApplyToCursor(CursorTransformer* transformer) {
cursor_.reset(transformer->Transform(cursor_.release()));
}
const ResultView& status() const { return cursor_status_; }
// Destroys the underlying cursor. If the iterator was not done, the proxy
// will then behave as if it reached an exception.
void Terminate();
Exception* release_exception() { return cursor_status_.release_exception(); }
bool is_waiting_on_barrier_supported() const {
return is_waiting_on_barrier_supported_;
}
void AppendDebugDescription(string* target) const;
private:
scoped_ptr<Cursor> cursor_;
const bool is_waiting_on_barrier_supported_;
string terminal_debug_description_;
ResultView cursor_status_;
DISALLOW_COPY_AND_ASSIGN(CursorProxy);
};
} // namespace internal
// An iterator interface to read from cursors in smaller chunks.
class CursorIterator {
public:
explicit CursorIterator(Cursor* cursor)
: proxy_(cursor),
view_iterator_(cursor->schema()),
row_index_(0) {}
// Advances the iterator, to return a view with as many rows as possible.
// Returns true on success; false on EOS or exception. If successful, a
// following call to has_data() will yield true, and a call to
// view().row_count() will yield a positive number. You can
// call truncate(...) to further reduce the number of rows in the view.
//
// If Next() or EagerNext() return false:
// * if is_eos() or is_failure(), any subsequent call will always return false
// and do nothing.
// * if is_waiting_on_barrier(), an immediately subsequent call will return
// false and do nothing. Intervening operations on other cursors, however,
// may cause the iterator to get 'unstuck' from the barrier.
bool EagerNext() {
return Next(std::numeric_limits<rowcount_t>::max(), false);
}
// Advances the iterator, to return a view with up-to max_row_count rows.
// Returns true on success; false on EOS or exception. If successful, a
// following call to has_data() will yield true, and a call to
// view().row_count() will yield a positive number. You can
// call truncate(...) to further reduce the number of rows in the view.
//
// If limit_cursor_input is false, the underlying cursor is asked for
// as many rows as it can provide. Otherwise, it is asked for up to
// max_row_count rows. If unsure, use 'false'. This way, even if you iterate
// row-by-row, the underlying cursor stack still operates in a block-based
// fashion.
//
// See the discussion in EagerNext() for semantics after Next() or
// EagerNext() return false.
bool Next(rowcount_t max_row_count, bool limit_cursor_input) {
row_index_ += view_iterator_.row_count();
while (!view_iterator_.next(max_row_count)) {
if (is_done()) return false;
proxy_.Next(
limit_cursor_input ? max_row_count
: std::numeric_limits<rowcount_t>::max());
if (!has_data()) {
// Leaves the view_iterator empty (row_count() == 0).
return false;
}
view_iterator_.reset(proxy_.status().view());
}
return true;
}
// Destroys the underlying cursor. If the iterator was not done, it will
// then behave as if it reached an exception.
void Terminate() {
row_index_ += view_iterator_.row_count();
view_iterator_.next(std::numeric_limits<rowcount_t>::max());
proxy_.Terminate();
}
// Propagates the interruption request to the underlying cursor.
void Interrupt() { proxy_.Interrupt(); }
// Runs transformation on the underlying cursor proxy.
void ApplyToCursor(CursorTransformer* transformer) {
proxy_.ApplyToCursor(transformer);
}
// Possibly reduces the size of the view() up to max_row_count. Returns true
// if the reduction actually took place; false if view() already contained
// max_row_count or less rows. The truncated rows are 'pushed back' to the
// source; a subsequent call to next() will re-fetch them:
//
// CursorIterator iterator(...);
// CHECK(iterator.EagerNext());
// LOG(INFO) << iterator.row_count(); // say, 20
// ASSERT_TRUE(iterator.truncate(5));
// EXPECT_EQ(5, iterator.row_count());
// ASSERT_TRUE(iterator.EagerNext());
// EXPECT_EQ(15, iterator.row_count());
bool truncate(rowcount_t max_row_count) {
DCHECK(has_data());
return view_iterator_.truncate(max_row_count);
}
const TupleSchema& schema() const {
return view_iterator_.schema(); // Valid even after cursor termination.
}
// Returns true if the iteration has succeeded with retrieving new piece of
// data. If so, it is safe to call view().
// Returns false if the iterator state is one of: failure, EOS, BOS.
bool has_data() const { return proxy_.status().has_data(); }
// Returns true if the cursor is in a terminal state (EOS or failure).
bool is_done() const { return proxy_.status().is_done(); }
// Returns the current view. The result is undefined if the iterator is
// in state where has_data() == false.
const View& view() const {
DCHECK(has_data());
return view_iterator_.view();
}
// Returns true if the iteration resulted in an exception.
// Usage pattern:
// if (!iterator.next()) {
// if (iterator.is_failure() { ... handle the exception ... }
// else { CHECK(iterator.is_eos()); /* ... handle the EOS ... */ }
// }
const bool is_failure() const { return proxy_.status().is_failure(); }
// Returns true if the iteration has reached EOS.
const bool is_eos() const { return proxy_.status().is_eos(); }
// Returns true if the iteration is at BOS (beginning of stream, i.e. before
// the first call to Next).
const bool is_bos() const { return proxy_.status().is_bos(); }
// Returns true if the iteration is waiting on a barrier, caused by other
// cursors reading from the same stream.
const bool is_waiting_on_barrier() const {
return proxy_.status().is_waiting_on_barrier();
}
// Returns the exception that caused this iteration to fail. The result
// is undefined if the iteration did not fail.
const Exception& exception() const { return proxy_.status().exception(); }
// Adapter to cursor APIs, wrapping the iteration state in a ResultView.
ResultView result() const {
return has_data() ? ResultView::Success(&view()) : proxy_.status();
}
// After a successful Next(), returns the absolute row offset of the current
// view in the underlying cursor. When the iterator is in one of the 'special'
// states (EOS, BOS, error), the method behaves as follows:
// BOS: the result is undefined.
// EOS: returns the total row count.
// Error: returns the row index one past the last successfully returned view.
// TODO(user): we might need to refine BOS behavior if we ever support
// mark/reset.
const rowcount_t current_row_index() const {
DCHECK(!is_bos());
return row_index_;
}
// Returns the exception raised by the failing iterator.next(), if any.
// Ownership is passed to the caller. This function exists mainly to
// support PROPAGATE_ON_FAILURE(iterator). Can be called only once.
// (Subsequent calls will crash).
Exception* release_exception() {
return proxy_.release_exception();
}
bool is_waiting_on_barrier_supported() const {
return proxy_.is_waiting_on_barrier_supported();
}
void AppendDebugDescription(string* target) const {
proxy_.AppendDebugDescription(target);
}
private:
internal::CursorProxy proxy_;
ViewIterator view_iterator_;
rowcount_t row_index_;
DISALLOW_COPY_AND_ASSIGN(CursorIterator);
};
// ViewRowIterator and CursorRowIterator, below, conform to the ConstRow
// contract defined in the internal/row.h.
// A row-oriented interface for accessing views. Indented to be as fast as
// row-oriented accessor can be (so that it makes sense to use it for row-
// oriented cursor implementations).
class ViewRowIterator {
public:
// Creates a new view iterator for views with the specified schema. If you
// try to iterate it before resetting, it will behave as-if it was reset
// to an empty view.
explicit ViewRowIterator(const TupleSchema& schema)
: schema_(schema),
view_(schema),
row_index_(-1) {}
// A convenience constructor that resets the iterator to the specified view
// right away.
explicit ViewRowIterator(const View& view)
: schema_(view.schema()),
view_(view),
row_index_(-1) {}
// Resets the iterator to the specified view. The view must have a compatible
// schema.
void reset(const View& view) {
view_.ResetFrom(view); // DCHECKs the schema internally.
row_index_ = -1;
}
// Resets the iterator to the initial state, i.e. as-if it was reset to an
// empty view.
void clear() {
view_.set_row_count(0);
row_index_ = -1;
}
// Advances the iterator to the next row. Returns true if successful, i.e.
// if the row existed; false if the iterator has just moved past the last row.
// Once next() returns false, it continues returning false.
bool next() {
DCHECK_LE(row_index_, total_row_count());
// The following code is the more efficient version of this:
// if (row_index_ < total_row_count()) ++row_index_;
// return row_index_ < total_row_count();
int increment = (row_index_ < total_row_count());
return (row_index_ += increment) < total_row_count();
}
// Returns the iterator's schema.
const TupleSchema& schema() const { return schema_; }
// Returns the absolute index of the current row in the iterated view.
// Right after reset, it is -1. After the cursor reaches EOS, it reflects the
// total row count.
const int64 current_row_index() const { return row_index_; }
// Returns the total row count in the iterated view.
const int64 total_row_count() const { return view_.row_count(); }
// Returns the type_info for the specified column.
const TypeInfo& type_info(const int column_index) const {
return view_.column(column_index).type_info();
}
// Returns true if the item at the specified column, in the current row,
// is null; false otherwise.
// The result is undefined if next() has not been called since last reset,
// or if it returned false.
bool is_null(const int column_index) const {
DCHECK_LE(current_row_index(), total_row_count());
bool_const_ptr is_null = view_.column(column_index).is_null();
return is_null != NULL && is_null[row_index_];
}
// Returns a pointer to the item at the specified column, in the current row.
// The result is undefined if next() has not been called since last reset,
// or if it returned false.
VariantConstPointer data(const int column_index) const {
DCHECK_LE(current_row_index(), total_row_count());
return view_.column(column_index).data_plus_offset(row_index_);
}
// Returns a typed pointer to the item at the specified column, in the
// current row.
// The result is undefined if next() has not been called since last reset,
// or if it returned false.
template<DataType type>
const typename TypeTraits<type>::cpp_type* typed_data(
const int column_index) const {
DCHECK_LE(current_row_index(), total_row_count());
return view_.column(column_index).typed_data<type>() + row_index_;
}
// Returns a typed const reference to the item at the specified column, in
// the current row.
// The result is undefined if next() has not been called since last reset,
// if it returned false, or if the item is NULL.
template<DataType type>
const typename TypeTraits<type>::cpp_type& typed_notnull_data(
const int column_index) const {
DCHECK_LE(current_row_index(), total_row_count());
DCHECK(!is_null(column_index));
return view_.column(column_index).typed_data<type>()[row_index_];
}
private:
TupleSchema schema_;
View view_;
int64 row_index_;
DISALLOW_COPY_AND_ASSIGN(ViewRowIterator);
};
// A row-oriented interface for accessing cursors.
class CursorRowIterator {
public:
// Creates a new cursor iterator. Takes ownership of the cursor.
explicit CursorRowIterator(Cursor* cursor)
: proxy_(cursor),
view_iterator_(cursor->schema()),
row_index_base_(0) {}
// Advances the iterator to the next row. Returns true if successful;
// false on EOS or exception.
// Once Next() returns false:
// * if is_eos() or is_failure(), any subsequent call will always return
// false and do nothing.
// * if is_waiting_on_barrier(), an immediately subsequent call will return
// false and do nothing. Intervening operations on other cursors, however,
// may cause the iterator to get 'unstuck' from the barrier, and return
// true from further calls.
bool Next() {
while (!view_iterator_.next()) {
if (is_done()) {
return false;
}
row_index_base_ += view_iterator_.total_row_count();
proxy_.Next(std::numeric_limits<rowcount_t>::max());
if (proxy_.status().has_data()) {
view_iterator_.reset(proxy_.status().view());
} else {
// Make sure that a subsequent call to current_row_index() returns
// the total number of rows in the cursor so far.
view_iterator_.clear();
CHECK(!view_iterator_.next());
return false;
}
}
return true;
}
// Same with above, but the call to Next() will not advance block and in the
// event it needs to do so, it returns false.
bool NextWithinBlock() {
return view_iterator_.next();
}
// Destroys the underlying cursor. If the iterator was not done, it will
// then behave as if it reached an exception.
void Terminate() {
view_iterator_.clear();
CHECK(!view_iterator_.next());
proxy_.Terminate();
}
// Propagates the cancellation request to the underlying cursor.
void Interrupt() { proxy_.Interrupt(); }
// Runs transformation on the underlying cursor proxy.
void Transform(CursorTransformer* transformer) {
proxy_.ApplyToCursor(transformer);
}
// Returns the iterator's (== the cursor's) schema.
const TupleSchema& schema() const {
return view_iterator_.schema(); // Valid even after cursor termination.
}
// Returns the type_info for the specified column.
const TypeInfo& type_info(const int column_index) const {
return view_iterator_.type_info(column_index);
}
// Returns true if the item at the specified column, in the current row,
// is null; false otherwise.
// The result is undefined if next() has not been called since last reset,
// or if it returned false.
bool is_null(const int column_index) const {
return view_iterator_.is_null(column_index);
}
// Returns a pointer to the item at the specified column, in the current row.
// The result is undefined if next() has not been called since last reset,
// or if it returned false.
VariantConstPointer data(const int column_index) const {
return view_iterator_.data(column_index);
}
// Returns a typed pointer to the item at the specified column, in the
// current row.
// The result is undefined if next() has not been called since last reset,
// or if it returned false.
template<DataType type>
const typename TypeTraits<type>::cpp_type* typed_data(
const int column_index) const {
return view_iterator_.typed_data<type>(column_index);
}
// Returns a typed const reference to the item at the specified column, in
// the current row.
// The result is undefined if next() has not been called since last reset,
// if it returned false, or if the item is NULL.
template<DataType type>
const typename TypeTraits<type>::cpp_type& typed_notnull_data(
const int column_index) const {
return view_iterator_.typed_notnull_data<type>(column_index);
}
// Returns the index of the current row, in the original cursor.
const rowid_t current_row_index() const {
return row_index_base_ + view_iterator_.current_row_index();
}
// Returns true if the last iterator.next() failed.
const bool is_failure() const { return proxy_.status().is_failure(); }
// Returns true if the iteration has reached EOS.
const bool is_eos() const { return proxy_.status().is_eos(); }
// Returns true if the cursor is in a terminal state (EOS or failure).
const bool is_done() const { return proxy_.status().is_done(); }
// Returns true if the iteration is waiting on a barrier, caused by a
// synchronous iteration of the same stream by some other cursor.
const bool is_waiting_on_barrier() const {
return proxy_.status().is_waiting_on_barrier();
}
// Returns the exception raised by the failing iterator.next(). The result
// is undefined if the last iterator.next() did not fail.
const Exception& exception() const { return proxy_.status().exception(); }
// Returns the exception raised by the failing iterator.next(), if any.
// Ownership is passed to the caller. This function exists mainly to
// support PROPAGATE_ON_FAILURE(iterator). Can be called only once.
// (Subsequent calls will crash).
Exception* release_exception() {
return proxy_.release_exception();
}
bool is_waiting_on_barrier_supported() const {
return proxy_.is_waiting_on_barrier_supported();
}
void AppendDebugDescription(string* target) const {
proxy_.AppendDebugDescription(target);
}
private:
internal::CursorProxy proxy_;
ViewRowIterator view_iterator_;
rowid_t row_index_base_;
DISALLOW_COPY_AND_ASSIGN(CursorRowIterator);
};
} // namespace supersonic
#endif // SUPERSONIC_CURSOR_INFRASTRUCTURE_ITERATORS_H_
| [
"soldierbingo@126.com"
] | soldierbingo@126.com |
3ad45af110f653ee9ba49c539b19662f45938316 | 84cd51502a8e091452de7ff63f729c6f762fec6f | /v-daemon/datamerge.cpp | dc0bd41d1dc255f07a83ee80594c1929f367a868 | [] | no_license | thinkingl/thinkingl-code-lib | 4a5d8b431fed998cb1dd2e5f541a6a322880429e | 75cb90a53c8bab8009c39b16d73913cf870c6d71 | refs/heads/master | 2022-12-25T08:32:00.813091 | 2022-12-14T06:18:51 | 2022-12-14T06:18:51 | 32,558,719 | 9 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 483 | cpp | #include "datamerge.h"
DataMerge::DataMerge(QObject *parent)
: DataSplit(parent)
{
}
bool DataMerge::TransDataDown(const QByteArray& dataIn, QByteArrayList& dataOutForward, QByteArrayList& dataOutBack)
{
return DataSplit::TransDataUp( dataIn, dataOutBack, dataOutForward );
}
bool DataMerge::TransDataUp(const QByteArray& dataIn, QByteArrayList& dataOutForward, QByteArrayList& dataOutBack)
{
return DataSplit::TransDataDown( dataIn, dataOutForward, dataOutBack );
}
| [
"thinkingzx@gmail.com"
] | thinkingzx@gmail.com |
2830f76b95ca2538e22caa6d0e2fa0ec950ed6b1 | 659d99d090479506b63b374831a049dba5d70fcf | /xray-svn-trunk/xr_3da/xrRender_R4/blender_bloom_build.h | 756e822c46af2a555500fd7b9fae9ca9817f6ce9 | [] | no_license | ssijonson/Rengen_Luch | a9312fed06dd08c7de19f36e5fd5e476881beb85 | 9bd0ff54408a890d4bdac1c493d67ce26b964555 | refs/heads/main | 2023-05-03T13:09:58.983176 | 2021-05-19T10:04:47 | 2021-05-19T10:04:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,125 | h | #pragma once
class CBlender_bloom_build : public IBlender
{
public:
virtual LPCSTR getComment() { return "INTERNAL: combine to bloom target"; }
virtual BOOL canBeDetailed() { return FALSE; }
virtual BOOL canBeLMAPped() { return FALSE; }
virtual void Compile (CBlender_Compile& C);
CBlender_bloom_build();
virtual ~CBlender_bloom_build();
};
class CBlender_bloom_build_msaa : public IBlender
{
public:
virtual LPCSTR getComment() { return "INTERNAL: combine to bloom target msaa"; }
virtual BOOL canBeDetailed() { return FALSE; }
virtual BOOL canBeLMAPped() { return FALSE; }
virtual void Compile (CBlender_Compile& C);
CBlender_bloom_build_msaa();
virtual ~CBlender_bloom_build_msaa();
};
class CBlender_postprocess_msaa : public IBlender
{
public:
virtual LPCSTR getComment() { return "INTERNAL: combine to bloom target msaa"; }
virtual BOOL canBeDetailed() { return FALSE; }
virtual BOOL canBeLMAPped() { return FALSE; }
virtual void Compile (CBlender_Compile& C);
CBlender_postprocess_msaa();
virtual ~CBlender_postprocess_msaa();
};
| [
"16670637+KRodinn@users.noreply.github.com"
] | 16670637+KRodinn@users.noreply.github.com |
cb2756e87c164650add3dae2bfd3aba9e8562187 | a65bc4b975c5f3e1f3e27b61a4c39b1013802e34 | /src/wallet/test/crypto_tests.cpp | 2c0426c90add63ed1ebe58cf29ee382d9b21e424 | [
"MIT"
] | permissive | bitcoineuro/bitcoineuro | 43e9fcc61adc7f656b7c11f2d4faf8278115252e | 9b01c69c1189163f1944f9194e697f9e2bcb0f13 | refs/heads/master | 2021-05-11T21:20:27.855433 | 2018-03-22T09:19:08 | 2018-03-22T09:19:08 | 117,466,346 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,064 | cpp | // Copyright (c) 2014-2016 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "test/test_bitcoineuro.h"
#include "utilstrencodings.h"
#include "wallet/crypter.h"
#include <vector>
#include <boost/test/unit_test.hpp>
#include <openssl/aes.h>
#include <openssl/evp.h>
BOOST_FIXTURE_TEST_SUITE(wallet_crypto, BasicTestingSetup)
bool OldSetKeyFromPassphrase(const SecureString& strKeyData, const std::vector<unsigned char>& chSalt, const unsigned int nRounds, const unsigned int nDerivationMethod, unsigned char* chKey, unsigned char* chIV)
{
if (nRounds < 1 || chSalt.size() != WALLET_CRYPTO_SALT_SIZE)
return false;
int i = 0;
if (nDerivationMethod == 0)
i = EVP_BytesToKey(EVP_aes_256_cbc(), EVP_sha512(), &chSalt[0],
(unsigned char*)&strKeyData[0], strKeyData.size(), nRounds, chKey, chIV);
if (i != (int)WALLET_CRYPTO_KEY_SIZE) {
memory_cleanse(chKey, WALLET_CRYPTO_KEY_SIZE);
memory_cleanse(chIV, WALLET_CRYPTO_IV_SIZE);
return false;
}
return true;
}
bool OldEncrypt(const CKeyingMaterial& vchPlaintext, std::vector<unsigned char>& vchCiphertext, const unsigned char chKey[32], const unsigned char chIV[16])
{
// max ciphertext len for a n bytes of plaintext is
// n + AES_BLOCK_SIZE - 1 bytes
int nLen = vchPlaintext.size();
int nCLen = nLen + AES_BLOCK_SIZE, nFLen = 0;
vchCiphertext = std::vector<unsigned char>(nCLen);
EVP_CIPHER_CTX* ctx = EVP_CIPHER_CTX_new();
if (!ctx) return false;
bool fOk = true;
EVP_CIPHER_CTX_init(ctx);
if (fOk) fOk = EVP_EncryptInit_ex(ctx, EVP_aes_256_cbc(), nullptr, chKey, chIV) != 0;
if (fOk) fOk = EVP_EncryptUpdate(ctx, &vchCiphertext[0], &nCLen, &vchPlaintext[0], nLen) != 0;
if (fOk) fOk = EVP_EncryptFinal_ex(ctx, (&vchCiphertext[0]) + nCLen, &nFLen) != 0;
EVP_CIPHER_CTX_cleanup(ctx);
EVP_CIPHER_CTX_free(ctx);
if (!fOk) return false;
vchCiphertext.resize(nCLen + nFLen);
return true;
}
bool OldDecrypt(const std::vector<unsigned char>& vchCiphertext, CKeyingMaterial& vchPlaintext, const unsigned char chKey[32], const unsigned char chIV[16])
{
// plaintext will always be equal to or lesser than length of ciphertext
int nLen = vchCiphertext.size();
int nPLen = nLen, nFLen = 0;
vchPlaintext = CKeyingMaterial(nPLen);
EVP_CIPHER_CTX* ctx = EVP_CIPHER_CTX_new();
if (!ctx) return false;
bool fOk = true;
EVP_CIPHER_CTX_init(ctx);
if (fOk) fOk = EVP_DecryptInit_ex(ctx, EVP_aes_256_cbc(), nullptr, chKey, chIV) != 0;
if (fOk) fOk = EVP_DecryptUpdate(ctx, &vchPlaintext[0], &nPLen, &vchCiphertext[0], nLen) != 0;
if (fOk) fOk = EVP_DecryptFinal_ex(ctx, (&vchPlaintext[0]) + nPLen, &nFLen) != 0;
EVP_CIPHER_CTX_cleanup(ctx);
EVP_CIPHER_CTX_free(ctx);
if (!fOk) return false;
vchPlaintext.resize(nPLen + nFLen);
return true;
}
class TestCrypter
{
public:
static void TestPassphraseSingle(const std::vector<unsigned char>& vchSalt, const SecureString& passphrase, uint32_t rounds, const std::vector<unsigned char>& correctKey = std::vector<unsigned char>(), const std::vector<unsigned char>& correctIV = std::vector<unsigned char>())
{
unsigned char chKey[WALLET_CRYPTO_KEY_SIZE];
unsigned char chIV[WALLET_CRYPTO_IV_SIZE];
CCrypter crypt;
crypt.SetKeyFromPassphrase(passphrase, vchSalt, rounds, 0);
OldSetKeyFromPassphrase(passphrase, vchSalt, rounds, 0, chKey, chIV);
BOOST_CHECK_MESSAGE(memcmp(chKey, crypt.vchKey.data(), crypt.vchKey.size()) == 0,
HexStr(chKey, chKey + sizeof(chKey)) + std::string(" != ") + HexStr(crypt.vchKey));
BOOST_CHECK_MESSAGE(memcmp(chIV, crypt.vchIV.data(), crypt.vchIV.size()) == 0,
HexStr(chIV, chIV + sizeof(chIV)) + std::string(" != ") + HexStr(crypt.vchIV));
if (!correctKey.empty())
BOOST_CHECK_MESSAGE(memcmp(chKey, &correctKey[0], sizeof(chKey)) == 0,
HexStr(chKey, chKey + sizeof(chKey)) + std::string(" != ") + HexStr(correctKey.begin(), correctKey.end()));
if (!correctIV.empty())
BOOST_CHECK_MESSAGE(memcmp(chIV, &correctIV[0], sizeof(chIV)) == 0,
HexStr(chIV, chIV + sizeof(chIV)) + std::string(" != ") + HexStr(correctIV.begin(), correctIV.end()));
}
static void TestPassphrase(const std::vector<unsigned char>& vchSalt, const SecureString& passphrase, uint32_t rounds, const std::vector<unsigned char>& correctKey = std::vector<unsigned char>(), const std::vector<unsigned char>& correctIV = std::vector<unsigned char>())
{
TestPassphraseSingle(vchSalt, passphrase, rounds, correctKey, correctIV);
for (SecureString::const_iterator i(passphrase.begin()); i != passphrase.end(); ++i)
TestPassphraseSingle(vchSalt, SecureString(i, passphrase.end()), rounds);
}
static void TestDecrypt(const CCrypter& crypt, const std::vector<unsigned char>& vchCiphertext, const std::vector<unsigned char>& vchPlaintext = std::vector<unsigned char>())
{
CKeyingMaterial vchDecrypted1;
CKeyingMaterial vchDecrypted2;
int result1, result2;
result1 = crypt.Decrypt(vchCiphertext, vchDecrypted1);
result2 = OldDecrypt(vchCiphertext, vchDecrypted2, crypt.vchKey.data(), crypt.vchIV.data());
BOOST_CHECK(result1 == result2);
// These two should be equal. However, OpenSSL 1.0.1j introduced a change
// that would zero all padding except for the last byte for failed decrypts.
// This behavior was reverted for 1.0.1k.
if (vchDecrypted1 != vchDecrypted2 && vchDecrypted1.size() >= AES_BLOCK_SIZE && SSLeay() == 0x100010afL) {
for (CKeyingMaterial::iterator it = vchDecrypted1.end() - AES_BLOCK_SIZE; it != vchDecrypted1.end() - 1; it++)
*it = 0;
}
BOOST_CHECK_MESSAGE(vchDecrypted1 == vchDecrypted2, HexStr(vchDecrypted1.begin(), vchDecrypted1.end()) + " != " + HexStr(vchDecrypted2.begin(), vchDecrypted2.end()));
if (vchPlaintext.size())
BOOST_CHECK(CKeyingMaterial(vchPlaintext.begin(), vchPlaintext.end()) == vchDecrypted2);
}
static void TestEncryptSingle(const CCrypter& crypt, const CKeyingMaterial& vchPlaintext, const std::vector<unsigned char>& vchCiphertextCorrect = std::vector<unsigned char>())
{
std::vector<unsigned char> vchCiphertext1;
std::vector<unsigned char> vchCiphertext2;
int result1 = crypt.Encrypt(vchPlaintext, vchCiphertext1);
int result2 = OldEncrypt(vchPlaintext, vchCiphertext2, crypt.vchKey.data(), crypt.vchIV.data());
BOOST_CHECK(result1 == result2);
BOOST_CHECK(vchCiphertext1 == vchCiphertext2);
if (!vchCiphertextCorrect.empty())
BOOST_CHECK(vchCiphertext2 == vchCiphertextCorrect);
const std::vector<unsigned char> vchPlaintext2(vchPlaintext.begin(), vchPlaintext.end());
if (vchCiphertext1 == vchCiphertext2)
TestDecrypt(crypt, vchCiphertext1, vchPlaintext2);
}
static void TestEncrypt(const CCrypter& crypt, const std::vector<unsigned char>& vchPlaintextIn, const std::vector<unsigned char>& vchCiphertextCorrect = std::vector<unsigned char>())
{
TestEncryptSingle(crypt, CKeyingMaterial(vchPlaintextIn.begin(), vchPlaintextIn.end()), vchCiphertextCorrect);
for (std::vector<unsigned char>::const_iterator i(vchPlaintextIn.begin()); i != vchPlaintextIn.end(); ++i)
TestEncryptSingle(crypt, CKeyingMaterial(i, vchPlaintextIn.end()));
}
};
BOOST_AUTO_TEST_CASE(passphrase)
{
// These are expensive.
TestCrypter::TestPassphrase(ParseHex("0000deadbeef0000"), "test", 25000,
ParseHex("fc7aba077ad5f4c3a0988d8daa4810d0d4a0e3bcb53af662998898f33df0556a"),
ParseHex("cf2f2691526dd1aa220896fb8bf7c369"));
std::string hash(GetRandHash().ToString());
std::vector<unsigned char> vchSalt(8);
GetRandBytes(&vchSalt[0], vchSalt.size());
uint32_t rounds = InsecureRand32();
if (rounds > 30000)
rounds = 30000;
TestCrypter::TestPassphrase(vchSalt, SecureString(hash.begin(), hash.end()), rounds);
}
BOOST_AUTO_TEST_CASE(encrypt)
{
std::vector<unsigned char> vchSalt = ParseHex("0000deadbeef0000");
BOOST_CHECK(vchSalt.size() == WALLET_CRYPTO_SALT_SIZE);
CCrypter crypt;
crypt.SetKeyFromPassphrase("passphrase", vchSalt, 25000, 0);
TestCrypter::TestEncrypt(crypt, ParseHex("22bcade09ac03ff6386914359cfe885cfeb5f77ff0d670f102f619687453b29d"));
for (int i = 0; i != 100; i++) {
uint256 hash(GetRandHash());
TestCrypter::TestEncrypt(crypt, std::vector<unsigned char>(hash.begin(), hash.end()));
}
}
BOOST_AUTO_TEST_CASE(decrypt)
{
std::vector<unsigned char> vchSalt = ParseHex("0000deadbeef0000");
BOOST_CHECK(vchSalt.size() == WALLET_CRYPTO_SALT_SIZE);
CCrypter crypt;
crypt.SetKeyFromPassphrase("passphrase", vchSalt, 25000, 0);
// Some corner cases the came up while testing
TestCrypter::TestDecrypt(crypt, ParseHex("795643ce39d736088367822cdc50535ec6f103715e3e48f4f3b1a60a08ef59ca"));
TestCrypter::TestDecrypt(crypt, ParseHex("de096f4a8f9bd97db012aa9d90d74de8cdea779c3ee8bc7633d8b5d6da703486"));
TestCrypter::TestDecrypt(crypt, ParseHex("32d0a8974e3afd9c6c3ebf4d66aa4e6419f8c173de25947f98cf8b7ace49449c"));
TestCrypter::TestDecrypt(crypt, ParseHex("e7c055cca2faa78cb9ac22c9357a90b4778ded9b2cc220a14cea49f931e596ea"));
TestCrypter::TestDecrypt(crypt, ParseHex("b88efddd668a6801d19516d6830da4ae9811988ccbaf40df8fbb72f3f4d335fd"));
TestCrypter::TestDecrypt(crypt, ParseHex("8cae76aa6a43694e961ebcb28c8ca8f8540b84153d72865e8561ddd93fa7bfa9"));
for (int i = 0; i != 100; i++) {
uint256 hash(GetRandHash());
TestCrypter::TestDecrypt(crypt, std::vector<unsigned char>(hash.begin(), hash.end()));
}
}
BOOST_AUTO_TEST_SUITE_END()
| [
"eric@naguras.com"
] | eric@naguras.com |
b27132acf25ed15d1098ecbe2a69271762ad75b7 | 38664d844d9fad34e88160f6ebf86c043db9f1c5 | /branches/tags/mfc-import/controls/hlistview.h | 66670ceb2b840a849c3f052f9d43b5a80796375f | [] | no_license | cnsuhao/jezzitest | 84074b938b3e06ae820842dac62dae116d5fdaba | 9b5f6cf40750511350e5456349ead8346cabb56e | refs/heads/master | 2021-05-28T23:08:59.663581 | 2010-11-25T13:44:57 | 2010-11-25T13:44:57 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 3,119 | h | #pragma once
#include "skindraw.h"
namespace SkinDefault
{
class ListViewDraw;
class ATL_NO_VTABLE ListViewConfig : public CComTearOffObjectBase<ListViewDraw>
, public ISkinConfig
{
public:
typedef ListViewConfig thisType;
BEGIN_COM_MAP(thisType)
COM_INTERFACE_ENTRY_IID(IID_ISkinConfig, ISkinConfig)
END_COM_MAP()
STDMETHOD_(LPCSTR, GetName)(int iPartId, int iStateId, BOOL* fUseDefault)
{
SKINCONFIG_BEGIN_PART(LVP_LISTITEM)
SKINCONFIG_USE_DEFAULT(fUseDefault)
SKINCONFIG_END_PART()
return 0;
}
// 实现时本函数可以不实现的,不支持增长
STDMETHOD(AddItem)(int iPartId, int iStateId, LPCSTR szItemName)
{
return E_NOTIMPL;
}
STDMETHOD_(LPCSTR, GetColor)(int iPartId, int iStateId, BOOL* fUseDefault)
{
SKINCONFIG_BEGIN_PART(LVP_LISTITEMOUTBORDER)
SKINCONFIG_ITEM(LIS_DISABLED, "edit_border")
SKINCONFIG_ITEM(LIS_HOT, "edit_border")
SKINCONFIG_ITEM(LIS_NORMAL, "edit_border")
SKINCONFIG_ITEM(LIS_SELECTED, "edit_border")
SKINCONFIG_ITEM(LIS_SELECTEDNOTFOCUS, "edit_border")
SKINCONFIG_USE_DEFAULT(fUseDefault)
SKINCONFIG_END_PART()
SKINCONFIG_BEGIN_PART(LVP_LISTITEMINBORDER)
SKINCONFIG_ITEM(LIS_DISABLED, "edit_inside_border")
SKINCONFIG_ITEM(LIS_HOT, "edit_inside_border")
SKINCONFIG_ITEM(LIS_NORMAL, "edit_inside_border")
SKINCONFIG_ITEM(LIS_SELECTED, "edit_inside_border")
SKINCONFIG_ITEM(LIS_SELECTEDNOTFOCUS, "edit_inside_border")
SKINCONFIG_USE_DEFAULT(fUseDefault)
SKINCONFIG_END_PART()
return 0;
}
// 实现时本函数可以不实现的,不支持增长
STDMETHOD(AddColor)(int iPartId, int iStateId, LPCSTR szItemName)
{
return E_NOTIMPL;
}
};
class ATL_NO_VTABLE ListViewDraw : public CComObjectRoot
, public SkinDrawImpl<ListViewDraw, SKINCTL_LISTVIEW>
{
public:
typedef ListViewDraw thisType;
BEGIN_COM_MAP(thisType)
COM_INTERFACE_ENTRY_IID(IID_ISkinDraw, ISkinDraw)
COM_INTERFACE_ENTRY_CACHED_TEAR_OFF(IID_ISkinConfig, ListViewConfig, _spCustomConfig.p)
END_COM_MAP()
DECLARE_GET_CONTROLLING_UNKNOWN()
DECLARE_PROTECT_FINAL_CONSTRUCT()
HRESULT FinalConstruct()
{
return S_OK;
}
void FinalRelease()
{
}
STDMETHOD_(HBRUSH, GetColorBrush)(int iColorID)
{
return 0;
}
STDMETHOD(DrawBackground)(HDC hdc, int iPartId, int iStateId, const RECT *pRect,
const RECT *pClipRect)
{
return S_FALSE;
}
STDMETHOD(DrawText)(HDC hdc, int iPartId, int iStateId, LPCSTR szText, DWORD dwTextFlags,
DWORD dwTextFlags2, const RECT *pRect)
{
return S_FALSE;
}
STDMETHOD(DrawParentBackground)(HWND hwnd, HDC hdc, RECT *prc)
{
// TODO: SetClip use prc
return S_OK;
}
STDMETHOD(DrawIcon)(HDC, int iPartId, int iStateId, const RECT *pRect)
{
return S_OK;
}
STDMETHOD(DrawEdge)(HDC, int iPartId, int iStateId, const RECT *pDestRect,
UINT uEdge, UINT uFlags, OPTIONAL OUT RECT *pContentRect)
{
return S_OK;
}
private:
};
}; // namespace | [
"ken.shao@ba8f1dc9-3c1c-0410-9eed-0f8a660c14bd"
] | ken.shao@ba8f1dc9-3c1c-0410-9eed-0f8a660c14bd |
cd1c44fd521f57dddef99538a54f1ad77b2bb940 | b8723a2862a0bc34e02a44628a2f9434693ea7d1 | /kattis/continuousmedian.cpp | 3c66a06e97be3bb30d77572148f11c3a0119eb97 | [] | no_license | mario7lorenzo/cp | ea6d20bbde7ec7217b7bab45f635dda40d2e078b | 253c16599a06cb676a3c94b4892279905486cf5d | refs/heads/master | 2022-05-03T22:27:07.710681 | 2022-04-10T08:37:53 | 2022-04-10T08:37:53 | 158,787,709 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,288 | cpp | #include <bits/stdc++.h>
using namespace std;
#define pb push_back
priority_queue<int> small;
priority_queue<int, vector<int>, greater<int>> big;
void adjust() {
if (small.size() - big.size() == 2) {
int tops = small.top();
small.pop();
big.push(tops);
} else if (big.size() - small.size() == 1) {
int tops = big.top();
big.pop();
small.push(tops);
}
}
int main() {
int tc;
cin >> tc;
while (tc--) {
vector<int> vi;
int n;
cin >> n;
for (int i = 0; i < n; i++) {
int x;
cin >> x;
vi.pb(x);
}
long long sum = 0;
for (int i = 1; i <= n; i++) {
if (i == 1) {
small.push(vi[i-1]);
sum += vi[i-1];
} else if (i == 2) {
if (vi[i-2] <= vi[i-1]) {
big.push(vi[i-1]);
} else {
small.pop();
big.push(vi[i-2]);
small.push(vi[i-1]);
}
sum += (vi[i-2] + vi[i-1]) / 2;
} else {
int left_biggest = small.top();
int right_smallest = big.top();
if (vi[i-1] <= left_biggest) {
small.push(vi[i-1]);
} else {
big.push(vi[i-1]);
}
adjust();
if (i%2) {
sum += small.top();
} else {
sum += (small.top() + big.top()) / 2;
}
}
}
cout << sum << endl;
small = priority_queue<int>();
big = priority_queue<int, vector<int>, greater<int>>();
}
} | [
"mariolorenzo213@gmail.com"
] | mariolorenzo213@gmail.com |
feb7b765c9892196a0bb12e9f07ecaf9e5960e88 | 8f657c3e101a0564b6da36a2153856631e22a12a | /cpp/大二暑假/run.cpp | 478204f799d1233693088243a071a3da505f27de | [] | no_license | Lruihao/c-code | fe07e4181a9129aae0c114fe41bd50dbc04b474a | c5f6dfbd53af8aa7dea963692a659860dedff52e | refs/heads/master | 2020-09-13T22:02:38.998732 | 2019-11-20T10:54:42 | 2019-11-20T10:54:42 | 222,916,216 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 708 | cpp | //tle
#include "bits/stdc++.h"
using namespace std;
const int mod = 1e9 + 7;
int main(){
ios::sync_with_stdio(false);
int q,k,i,j;
cin>>q>>k;
while(q--){
int l,r;
long long sum=0;
cin>>l>>r;
for(i=l;i<=r;i++)
if(i<k)
sum=(sum+1)%mod;
else if(i==k) sum=(sum+2)%mod;
else{
sum=(sum+i-k+2)%mod;
for(j=2;;j++)
if((i-j*k)>0){
sum=(sum+(i-j*k+1)*(i-j*k)/2)%mod;
continue;
}
else break;
}
sum=(sum+mod)%mod;
cout<<sum<<endl;
}
return 0;
}
| [
"1074627678@qq.com"
] | 1074627678@qq.com |
75e7d0b4fbe01a6a4cf35222e0ae203ae5e52179 | b904f6eb62eaa2e19c0fdf1426b0318ea142d723 | /myneuro.h | ae9dacb7c18c75c25f62ef4c0de2062d969f4bc5 | [] | no_license | Kabunda/Neiro | 3f7ae6570becd37f644298998d7c59b3cf008a01 | 606c704d666fc9edafe6940578256b132213614d | refs/heads/master | 2022-07-16T07:52:44.400785 | 2020-05-16T20:11:48 | 2020-05-16T20:11:48 | null | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 678 | h | #ifndef MYNEURO_H
#define MYNEURO_H
#include <iostream>
#include <math.h>
#include <Windows.h> // для вывода на консоль с координатами
#include "nnLay1.h"
//#define learnRate 0.1
//#define randWeight (( ((float)rand() / (float)RAND_MAX) - 0.5)* pow(out,-0.5))
class myNeuro
{
public:
myNeuro();
~myNeuro();
void feedForwarding(bool ok);
void backPropagate();
void train(float* in, float* targ);
void query(float* in);
void printLay(int number);
void printInfo();
private:
nnLay* list;
int inputNeurons;
int outputNeurons;
int nlCount;
float* inputs;
float* targets;
};
#endif // MYNEURO_H | [
"kbobah@yandex.ru"
] | kbobah@yandex.ru |
3b6db8dc3af871ec60042800d2075efe9957a26e | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/curl/gumtree/curl_repos_function_54_curl-7.9.cpp | 73c0706f7c1283e72d6dd01e7d648936a8e7be5e | [] | 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 | 8,480 | cpp | CURLcode Curl_perform(struct SessionHandle *data)
{
CURLcode res;
struct connectdata *conn=NULL;
bool port=TRUE; /* allow data->set.use_port to set port to use */
char *newurl = NULL; /* possibly a new URL to follow to! */
if(!data->change.url)
/* we can't do anything wihout URL */
return CURLE_URL_MALFORMAT;
#ifdef USE_SSLEAY
/* Init the SSL session ID cache here. We do it here since we want to
do it after the *_setopt() calls (that could change the size) but
before any transfer. */
Curl_SSL_InitSessions(data, data->set.ssl.numsessions);
#endif
data->set.followlocation=0; /* reset the location-follow counter */
data->state.this_is_a_follow = FALSE; /* reset this */
Curl_initinfo(data); /* reset session-specific information "variables" */
Curl_pgrsStartNow(data);
do {
Curl_pgrsTime(data, TIMER_STARTSINGLE);
res = Curl_connect(data, &conn, port);
if(res == CURLE_OK) {
res = Curl_do(conn);
if(res == CURLE_OK) {
if(conn->protocol&PROT_FTPS)
/* FTPS, disable ssl while transfering data */
conn->ssl.use = FALSE;
res = Transfer(conn); /* now fetch that URL please */
if(conn->protocol&PROT_FTPS)
/* FTPS, enable ssl again after havving transferred data */
conn->ssl.use = TRUE;
if(res == CURLE_OK) {
/*
* We must duplicate the new URL here as the connection data
* may be free()ed in the Curl_done() function.
*/
newurl = conn->newurl?strdup(conn->newurl):NULL;
res = Curl_done(conn);
}
}
/*
* Important: 'conn' cannot be used here, since it may have been closed
* in 'Curl_done' or other functions.
*/
if((res == CURLE_OK) && newurl) {
/* Location: redirect
This is assumed to happen for HTTP(S) only!
*/
char prot[16]; /* URL protocol string storage */
char letter; /* used for a silly sscanf */
port=TRUE; /* by default we use the user set port number even after
a Location: */
if (data->set.maxredirs && (data->set.followlocation >= data->set.maxredirs)) {
failf(data,"Maximum (%d) redirects followed", data->set.maxredirs);
res=CURLE_TOO_MANY_REDIRECTS;
break;
}
/* mark the next request as a followed location: */
data->state.this_is_a_follow = TRUE;
data->set.followlocation++; /* count location-followers */
if(data->set.http_auto_referer) {
/* We are asked to automatically set the previous URL as the
referer when we get the next URL. We pick the ->url field,
which may or may not be 100% correct */
if(data->change.referer_alloc)
/* If we already have an allocated referer, free this first */
free(data->change.referer);
data->change.referer = strdup(data->change.url);
data->change.referer_alloc = TRUE; /* yes, free this later */
}
if(2 != sscanf(newurl, "%15[^:]://%c", prot, &letter)) {
/***
*DANG* this is an RFC 2068 violation. The URL is supposed
to be absolute and this doesn't seem to be that!
***
Instead, we have to TRY to append this new path to the old URL
to the right of the host part. Oh crap, this is doomed to cause
problems in the future...
*/
char *protsep;
char *pathsep;
char *newest;
/* we must make our own copy of the URL to play with, as it may
point to read-only data */
char *url_clone=strdup(data->change.url);
if(!url_clone)
return CURLE_OUT_OF_MEMORY;
/* protsep points to the start of the host name */
protsep=strstr(url_clone, "//");
if(!protsep)
protsep=url_clone;
else
protsep+=2; /* pass the slashes */
if('/' != newurl[0]) {
/* First we need to find out if there's a ?-letter in the URL,
and cut it and the right-side of that off */
pathsep = strrchr(protsep, '?');
if(pathsep)
*pathsep=0;
/* we have a relative path to append to the last slash if
there's one available */
pathsep = strrchr(protsep, '/');
if(pathsep)
*pathsep=0;
}
else {
/* We got a new absolute path for this server, cut off from the
first slash */
pathsep = strchr(protsep, '/');
if(pathsep)
*pathsep=0;
}
newest=(char *)malloc( strlen(url_clone) +
1 + /* possible slash */
strlen(newurl) + 1/* zero byte */);
if(!newest)
return CURLE_OUT_OF_MEMORY;
sprintf(newest, "%s%s%s", url_clone, ('/' == newurl[0])?"":"/",
newurl);
free(newurl);
free(url_clone);
newurl = newest;
}
else {
/* This is an absolute URL, don't use the custom port number */
port = FALSE;
}
if(data->change.url_alloc)
free(data->change.url);
else
data->change.url_alloc = TRUE; /* the URL is allocated */
/* TBD: set the URL with curl_setopt() */
data->change.url = newurl;
newurl = NULL; /* don't free! */
infof(data, "Follows Location: to new URL: '%s'\n", data->change.url);
/*
* We get here when the HTTP code is 300-399. We need to perform
* differently based on exactly what return code there was.
* Discussed on the curl mailing list and posted about on the 26th
* of January 2001.
*/
switch(data->info.httpcode) {
case 300: /* Multiple Choices */
case 301: /* Moved Permanently */
case 306: /* Not used */
case 307: /* Temporary Redirect */
default: /* for all unknown ones */
/* These are explicitly mention since I've checked RFC2616 and they
* seem to be OK to POST to.
*/
break;
case 302: /* Found */
/* (From 10.3.3)
Note: RFC 1945 and RFC 2068 specify that the client is not allowed
to change the method on the redirected request. However, most
existing user agent implementations treat 302 as if it were a 303
response, performing a GET on the Location field-value regardless
of the original request method. The status codes 303 and 307 have
been added for servers that wish to make unambiguously clear which
kind of reaction is expected of the client.
(From 10.3.4)
Note: Many pre-HTTP/1.1 user agents do not understand the 303
status. When interoperability with such clients is a concern, the
302 status code may be used instead, since most user agents react
to a 302 response as described here for 303.
*/
case 303: /* See Other */
/* Disable both types of POSTs, since doing a second POST when
* following isn't what anyone would want! */
data->set.httpreq = HTTPREQ_GET; /* enforce GET request */
infof(data, "Disables POST, goes with GET\n");
break;
case 304: /* Not Modified */
/* 304 means we did a conditional request and it was "Not modified".
* We shouldn't get any Location: header in this response!
*/
break;
case 305: /* Use Proxy */
/* (quote from RFC2616, section 10.3.6):
* "The requested resource MUST be accessed through the proxy given
* by the Location field. The Location field gives the URI of the
* proxy. The recipient is expected to repeat this single request
* via the proxy. 305 responses MUST only be generated by origin
* servers."
*/
break;
}
continue;
}
}
break; /* it only reaches here when this shouldn't loop */
} while(1); /* loop if Location: */
if(newurl)
free(newurl);
/* make sure the alarm is switched off! */
if(data->set.timeout || data->set.connecttimeout)
myalarm(0);
return res;
} | [
"993273596@qq.com"
] | 993273596@qq.com |
6e1d34c540b984794f0f30743b11f84bba248678 | 2aa8d9c5b5523487f37ab8f96bb9c65ea3ebd2bf | /day07/ex01/main.cpp | d9210c318455bc69d1764831f2ef23176c88e68c | [] | no_license | fleger42/cpp_piscine | e771f78b10668853da6e48929833c65b43a81635 | d7c0794a3bf02e3545b81e322ca10059b06479ec | refs/heads/main | 2023-09-05T14:04:35.183533 | 2021-11-23T16:39:36 | 2021-11-23T16:39:36 | 430,370,245 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 433 | cpp | #include "iter.hpp"
void ft_putchar(char & c)
{
std::cout << c;
}
void ft_putnbr(float & nbr)
{
std::cout << nbr << std::endl;
}
int main()
{
char phrase[] = "Salut";
float tab[] = {1.1f, 2.1f, 3.1f, 4.1f, 5.1f};
iter(phrase, 5, &ft_putchar);
std::cout << std::endl;
iter(tab, 5, &ft_putnbr);
std::cout << "INCREMENT with template function incre: " << std::endl;
iter(tab, 5, &incre);
iter(tab, 5, &ft_putnbr);
} | [
"florianleger91120@gmail.com"
] | florianleger91120@gmail.com |
84b88fbc9a2e3d1a331e4b9e68ea1151c199d4e9 | 7044120aab87d5cac8520282bf91d24771db4bdd | /degre3.cpp | 1d6f3bc8a2892cfbf08c152baa2e90f56c93d58e | [] | no_license | JohnMichaelTO/Matree-x | 619cecaf036ba0eaf0e925a83ad9672b20b2ef33 | d7644f9fe577facb0bfdac7d382159cbce154311 | refs/heads/master | 2021-05-31T12:15:15.089781 | 2015-12-10T15:36:41 | 2015-12-10T15:36:41 | null | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 6,197 | cpp | #include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "main.h"
#include "matrice.h"
#include "fonctions.h"
#include "conio.h"
/* Résolution d'équation de degré 3 */
/*void degre3(t_racine *racine, double a, double b, double c, double d, int i = 0)
{
// Division par a de tous les coefficients
b /= a;
c /= a;
d /= a;
a /= a;
double x0;
double equation[4] = {d, c, b, a};
x0 = newton(equation, 3, 0.5);
racine[0].re = x0;
racine[0].im = 0.0;
i++;
// printf("Une racine a ete trouvee : x1 = %lf\r\n\n", x0);
double polynome[3];
// Factorisation par la méthode de Horner
polynome[2] = a ;
polynome[1] = b + polynome[2] * x0;
polynome[0] = c + polynome[1] * x0;
degre2(racine, polynome[2], polynome[1], polynome[0], 0.0, i);
}
*/
void degre3(t_racine *racine, double a, double b, double c, double d, int i = 0)
{
// Division par a de tous les coefficients
b /= a;
c /= a;
d /= a;
a /= a;
// Définition des variables locales
double p, q, p2, q2, pose, delta;
int cpt;
int degree = 3;
// Définition des variables servants aux racines u et v
double u = 0, v = 0, u1 = 0, v1 = 0;
double u2r = 0, u2i = 0, u3r = 0, u3i = 0, v2r = 0, v2i = 0, v3r = 0, v3i = 0;
// Définition des variables servants aux variables temporaires (changement de variables)
double t1 = 0, t2 = 0, t2r = 0, t2i = 0, t3r = 0, t3i = 0, z2r = 0, z3r = 0;
// Définition des variables stockant le résultat, et le calcul des racines complexes
double z[5], r, A;
// Définition de j et j^2 avec les parties réelles et imaginaires
double jr = -0.5;
double ji = racine_carree(3.0) / 2.0;
double jr2 = jr;
double ji2 = -ji;
if(b == 0.0)
{
pose = 0.0;
p = c / a;
q = d / a;
}
else
{
pose = - b / (3.0 * a);
p = (-(b * b)/(3.0 * a * a))+(c / a);
q = (b / (27.0 * a)) * (((2.0 * b * b) / (a * a)) - ((9.0 * c) / a)) + (d / a);
}
if(p == 0 && q == 0)
{
z[0] = pose;
racine[i].re = z[0];
racine[i].im = 0.0;
i++;
}
else if(q == 0)
{
z[0] = pose;
if(-p < 0.0)
{
z[1] = -racine_carree(p) + pose;
z[2] = racine_carree(p) + pose;
}
else
{
z[1] = -racine_carree(-p) + pose;
z[2] = racine_carree(-p) + pose;
}
for(cpt = i; cpt < degree; cpt++)
{
racine[cpt].re = z[cpt];
racine[cpt].im = 0.0;
}
}
else if(p == 0)
{
if(-q < 0.0)
{
z[0] = pow(q, (1.0 / 3.0));
}
else
{
z[0] = pow(-q, (1.0 / 3.0));
}
z[0] = z[0] + pose;
racine[i].re = z[i];
racine[i].im = 0.0;
i++;
}
else
{
p2 = -q;
q2 = -(p * p * p) / 27.0;
p2 = -p2;
delta = calcul_delta(1.0, p2, q2);
if(delta > 0.0)
{
u = racine_reelle(1.0, p2, delta, 1);
v = racine_reelle(1.0, p2, delta, 2);
}
if(delta > 0.0)
{
if(u < 0.0)
{
u1 = -pow(-u, (1.0 / 3.0));
}
else
{
u1 = pow(u, (1.0 / 3.0));
}
if(v < 0.0)
{
v1 = -pow(-v, (1.0 / 3.0));
}
else
{
v1 = pow(v, (1.0 / 3.0));
}
u2r = u1 * jr;
u2i = u1 * ji;
u3r = u1 * jr2;
u3i = u1 * ji2;
v2r = v1 * jr2;
v2i = v1 * ji2;
v3r = v1 * jr;
v3i = v1 * ji;
t1 = u1 + v1;
t2r = u2r + v2r;
t2i = u2i + v2i;
t3r = u3r + v3r;
t3i = u3i + v3i;
}
if(delta > 0.0)
{
z[0] = t1 + pose;
z2r = t2r + pose;
z3r = t3r + pose;
// printf("%c1 = %lf\r\n", variable, z[0]);
racine[i].re = z[i];
racine[i].im = 0.0;
i++;
// printf("%c2 = ", variable);
racine[i].re = z2r;
racine[i].im = t2i;
i++;
// afficheComplexe(z2r, t2i);
// printf("%c3 = ", variable);
racine[i].re = z3r;
racine[i].im = t3i;
i++;
// afficheComplexe(z3r, t3i);
}
else if(delta == 0.0)
{
t1 = 3.0 * q / p;
t2 = - (3.0 * q) / (2.0 * p);
z[0] = t1 + pose;
z[1] = t2 + pose;
z[2] = z[1];
for(cpt = i; cpt < degree; cpt++)
{
racine[cpt].re = z[cpt];
racine[cpt].im = 0.0;
}
/*
if(pose < 0.0)
{
printf("%c1 = %lf\r\n", variable, z[0]);
printf("%c2 = %c3 = %lf", variable, variable, z[1]);
}
else if(pose > 0.0)
{
printf("%c1 = %lf\r\n", variable, z[0]);
printf("%c2 = %c3 = %lf", variable, variable, z[1]);
}
else
{
printf("%c1 = %lf\r\n", variable, z[0]);
printf("%c2 = %lf", variable, z[1]);
}
*/
}
else
{
r = racine_carree(-p / 3.0);
A = acos((-q / 2.0) * racine_carree(27.0 / (-p * p * p)));
for (cpt = i; cpt < degree ; cpt++)
{
z[cpt] = 2.0 * r * cosinus((1.0 / 3.0) * A + ((2 * cpt * M_PI) / 3.0)) + pose;
if(z[cpt] == -0.0)
{
z[cpt] = 0.0;
// printf("%c%i = 0\r\n", variable, cpt);
}
else
{
// printf("%c%i = %lf\r\n", variable, cpt, z[cpt]);
}
racine[cpt].re = z[cpt];
racine[cpt].im = 0.0;
}
}
}
}
| [
"johnmichael78@gmail.com"
] | johnmichael78@gmail.com |
4dae9568852081576a7aed37f180867a552a75d9 | 3033e54839790ca1b49b0e1a347a3da6a978d6ac | /src/apex/tau_listener.hpp | 7637c9be342a819b13bf806fa3087c5974f887a6 | [
"LicenseRef-scancode-other-permissive"
] | permissive | aurianer/xpress-apex | e4f3e3f403fe74b2a5dac647e4355579be8c74f5 | 8f2ff1bf5870eb014eb36ce23da4a812f028e76c | refs/heads/master | 2020-06-16T00:53:28.101224 | 2019-06-28T15:05:35 | 2019-06-28T15:05:35 | 195,436,729 | 0 | 0 | NOASSERTION | 2019-07-05T16:09:13 | 2019-07-05T16:09:13 | null | UTF-8 | C++ | false | false | 3,009 | hpp | // Copyright (c) 2014 University of Oregon
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#pragma once
#include "event_listener.hpp"
#include <memory>
namespace apex {
class tau_listener : public event_listener {
private:
void _init(void);
bool _terminate;
bool _common_start(std::shared_ptr<task_wrapper> &tt_ptr);
void _common_stop(std::shared_ptr<profiler> &p);
static bool _initialized;
public:
tau_listener (void);
~tau_listener (void) { };
static bool initialize_tau(int argc, char** avgv);
inline static bool initialized(void) { return _initialized; }
void on_startup(startup_event_data &data);
void on_dump(dump_event_data &data);
void on_reset(task_identifier * id)
{ APEX_UNUSED(id); };
void on_shutdown(shutdown_event_data &data);
void on_new_node(node_event_data &data);
void on_new_thread(new_thread_event_data &data);
void on_exit_thread(event_data &data);
bool on_start(std::shared_ptr<task_wrapper> &tt_ptr);
void on_stop(std::shared_ptr<profiler> &p);
void on_yield(std::shared_ptr<profiler> &p);
bool on_resume(std::shared_ptr<task_wrapper> &tt_ptr);
void on_task_complete(std::shared_ptr<task_wrapper> &tt_ptr) {
APEX_UNUSED(tt_ptr);
};
void on_sample_value(sample_value_event_data &data);
void on_periodic(periodic_event_data &data);
void on_custom_event(custom_event_data &data);
void on_send(message_event_data &data) { APEX_UNUSED(data); };
void on_recv(message_event_data &data) { APEX_UNUSED(data); };
void set_node_id(int node_id, int node_count);
void set_metadata(const char * name, const char * value);
static void Tau_start_wrapper(const char * name);
static void Tau_stop_wrapper(const char * name);
};
int initialize_worker_thread_for_tau(void);
}
#ifdef APEX_USE_WEAK_SYMBOLS
/* Weak symbols that are redefined if we load TAU at link or runtime */
extern "C" {
APEX_EXPORT APEX_WEAK_PRE int Tau_register_thread(void) APEX_WEAK_POST;
APEX_EXPORT APEX_WEAK_PRE int
Tau_create_top_level_timer_if_necessary(void) APEX_WEAK_POST;
APEX_EXPORT APEX_WEAK_PRE int Tau_start(const char *) APEX_WEAK_POST;
APEX_EXPORT APEX_WEAK_PRE int Tau_stop(const char *) APEX_WEAK_POST;
APEX_EXPORT APEX_WEAK_PRE int Tau_init(int, char**) APEX_WEAK_POST;
APEX_EXPORT APEX_WEAK_PRE int Tau_exit(const char*) APEX_WEAK_POST;
APEX_EXPORT APEX_WEAK_PRE int Tau_dump_prefix(const char *prefix) APEX_WEAK_POST;
APEX_EXPORT APEX_WEAK_PRE int Tau_set_node(int) APEX_WEAK_POST;
APEX_EXPORT APEX_WEAK_PRE int Tau_profile_exit_all_threads(void) APEX_WEAK_POST;
APEX_EXPORT APEX_WEAK_PRE int Tau_get_thread(void) APEX_WEAK_POST;
APEX_EXPORT APEX_WEAK_PRE int Tau_profile_exit_all_tasks(void) APEX_WEAK_POST;
APEX_EXPORT APEX_WEAK_PRE int Tau_global_stop(void) APEX_WEAK_POST;
APEX_EXPORT APEX_WEAK_PRE int
Tau_trigger_context_event_thread(char*, double, int) APEX_WEAK_POST;
}
#endif // APEX_USE_WEAK_SYMBOLS
| [
"khuck@cs.uoregon.edu"
] | khuck@cs.uoregon.edu |
6f8f6a6de5fdac70c6d6125dc715af19dc3181d4 | e5c74e807d52db291481134c7db4c158fc035c92 | /CSE167StarterCode2-master/Node.h | a1809691c0c5c2e410d8025cbddf450a8b744602 | [] | no_license | nmakucsd/CSE167Proj3 | 09476b9189b577361ef6add9958caf0a70ee45e1 | dab37af8e26e531e855569a132a815b2afc22c4c | refs/heads/master | 2021-06-08T20:01:56.141420 | 2016-11-05T21:09:36 | 2016-11-05T21:09:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 622 | h | #ifndef _NODE_H_
#define _NODE_H_
#define GLFW_INCLUDE_GLEXT
#ifdef __APPLE__
#define GLFW_INCLUDE_GLCOREARB
#else
#include <GL/glew.h>
#endif
#include <GLFW/glfw3.h>
// Use of degrees is deprecated. Use radians instead.
#ifndef GLM_FORCE_RADIANS
#define GLM_FORCE_RADIANS
#endif
#include <glm/mat4x4.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <stdio.h>
#include <iostream>
#include <list>
using namespace std;
class Node
{
public:
virtual void draw(glm::mat4 C, int mode, glm::vec3 color) = 0;
virtual void update(bool on, glm::vec3 points[6], glm::vec3 normals[6]) = 0;
void printAlive();
};
#endif
| [
"pstahnke@ucsd.edu"
] | pstahnke@ucsd.edu |
856479861c2d2fbb42102cffb7da3aeb2c108dbc | 1217a9cba331b968cb73dae070ecb2180ad210ed | /practical_3/main.cpp | f61a4013ddd670902ad86d91cd2601b2bfb6d617 | [
"MIT"
] | permissive | T-Bone-Willson/SET09121-GamesEngineering-Labs | 833c96fc8bd94bce01b9a11cb641d5a53a814330 | e22437f5624bbc4d2fae16e668f845a61ae205ef | refs/heads/master | 2021-05-12T14:24:01.139196 | 2018-04-23T13:21:48 | 2018-04-23T13:21:48 | 116,953,847 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,405 | cpp | #include <SFML/Graphics.hpp>
#include <iostream>
#include "LevelSystem.h"
#include "player.h"
#include "entity.h"
#include "game.h"
using namespace sf;
using namespace std;
std::vector<Entity *> entities;
Player* player;
void Reset() {
}
void Load() {
// Player
player = new Player();
entities.push_back(player);
// Level
ls::loadLevelFile("res/maze_2.txt");
// Print level to the console
cout << "|| PRINTING LEVEL ||" << endl;
for (size_t y = 0; y < ls::getHeight(); ++y) {
for (size_t x = 0; x < ls::getWidth(); ++x) {
cout << ls::getTile({ x, y });
}
cout << endl;
}
cout << "\\\\\\\\\\//////////" << endl;
Reset();
}
void Update(RenderWindow &window) {
// Reset clock, recalculate deltatime
static Clock clock;
float dt = clock.restart().asSeconds();
// Check and consume events
Event event;
while (window.pollEvent(event)) {
if (event.type == Event::Closed) {
window.close();
return;
}
}
// Quit via ESC key
if (Keyboard::isKeyPressed(Keyboard::Escape)) {
window.close();
}
for (auto &e : entities) {
e->update(dt);
}
}
void Render(RenderWindow &window) {
ls::render(window);
for (auto &e : entities) {
e->render(window);
}
}
int main() {
RenderWindow window(VideoMode(gameWidth, gameHeight), "Tile Engine");
Load();
while (window.isOpen()) {
window.clear();
Update(window);
Render(window);
window.display();
}
return 0;
} | [
"32392016+T-Bone-Willson@users.noreply.github.com"
] | 32392016+T-Bone-Willson@users.noreply.github.com |
decba6620967ef68ff9ba115d98fb65fc852cce0 | 014cc955e95c9b54787c5abf5408a5ca7ed2e73a | /game/src/MarkConvert.cpp | 89e843dd37d69c4b5bfea8391786296b269802e0 | [] | no_license | adminy/vanilla-server | 8a33af1a9d9e75e94a2810fdce7c369701fe1858 | d2612e32441da9f9f6ccc078f58c1697adfa517b | refs/heads/master | 2023-02-08T14:05:43.780071 | 2021-01-03T22:51:42 | 2021-01-03T22:51:42 | 326,473,794 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,623 | cpp | #include "stdafx.h"
#include "MarkManager.h"
#define OLD_MARK_INDEX_FILENAME "guild_mark.idx"
#define OLD_MARK_DATA_FILENAME "guild_mark.tga"
static Pixel * LoadOldGuildMarkImageFile()
{
FILE * fp = fopen(OLD_MARK_DATA_FILENAME, "rb");
if (!fp)
{
sys_err("cannot open %s", OLD_MARK_INDEX_FILENAME);
return NULL;
}
int dataSize = 512 * 512 * sizeof(Pixel);
Pixel * dataPtr = (Pixel *) malloc(dataSize);
fread(dataPtr, dataSize, 1, fp);
fclose(fp);
return dataPtr;
}
bool GuildMarkConvert(const std::vector<DWORD> & vecGuildID)
{
// 폴더 생성
mkdir("mark", S_IRWXU);
// 인덱스 파일이 있나?
if (0 != access(OLD_MARK_INDEX_FILENAME, F_OK))
return true;
// 인덱스 파일 열기
FILE* fp = fopen(OLD_MARK_INDEX_FILENAME, "r");
if (NULL == fp)
return false;
// 이미지 파일 열기
Pixel * oldImagePtr = LoadOldGuildMarkImageFile();
if (NULL == oldImagePtr)
{
fclose(fp);
return false;
}
/*
// guild_mark.tga가 실제 targa 파일이 아니고, 512 * 512 * 4 크기의 raw 파일이다.
// 눈으로 확인하기 위해 실제 targa 파일로 만든다.
CGuildMarkImage * pkImage = new CGuildMarkImage;
pkImage->Build("guild_mark_real.tga");
pkImage->Load("guild_mark_real.tga");
pkImage->PutData(0, 0, 512, 512, oldImagePtr);
pkImage->Save("guild_mark_real.tga");
*/
sys_log(0, "Guild Mark Converting Start.");
char line[256];
DWORD guild_id;
DWORD mark_id;
Pixel mark[SGuildMark::SIZE];
while (fgets(line, sizeof(line)-1, fp))
{
sscanf(line, "%u %u", &guild_id, &mark_id);
if (find(vecGuildID.begin(), vecGuildID.end(), guild_id) == vecGuildID.end())
{
sys_log(0, " skipping guild ID %u", guild_id);
continue;
}
// mark id -> 이미지에서의 위치 찾기
uint row = mark_id / 32;
uint col = mark_id % 32;
if (row >= 42)
{
sys_err("invalid mark_id %u", mark_id);
continue;
}
uint sx = col * 16;
uint sy = row * 12;
Pixel * src = oldImagePtr + sy * 512 + sx;
Pixel * dst = mark;
// 옛날 이미지에서 마크 한개 복사
for (int y = 0; y != SGuildMark::HEIGHT; ++y)
{
for (int x = 0; x != SGuildMark::WIDTH; ++x)
*(dst++) = *(src+x);
src += 512;
}
// 새 길드 마크 시스템에 넣는다.
CGuildMarkManager::instance().SaveMark(guild_id, (BYTE *) mark);
line[0] = '\0';
}
free(oldImagePtr);
fclose(fp);
// 컨버트는 한번만 하면되므로 파일을 옮겨준다.
system("mv -f guild_mark.idx guild_mark.idx.removable");
system("mv -f guild_mark.tga guild_mark.tga.removable");
sys_log(0, "Guild Mark Converting Complete.");
return true;
}
| [
"root@DESKTOP-OU7Q732.localdomain"
] | root@DESKTOP-OU7Q732.localdomain |
02abed91093b289a3460f48526a602d04df5dd46 | 0f5ed76c553fbc4d6b725abff3d2e11fe6086390 | /GoodProblem/插头dp_矩阵有向哈密尔顿回路.cpp | 44efd61df570a06eceff7c9ae37b1ced8fca0260 | [] | no_license | nike0good/Template | b5e4755a229e689e5e1af01196ae1774ae306b7d | 18d141c8d5104e307490e3619e42a8565c291e28 | refs/heads/master | 2020-12-24T12:39:27.232512 | 2018-08-30T14:00:55 | 2018-08-30T14:00:55 | 72,972,949 | 0 | 0 | null | 2017-03-27T09:44:37 | 2016-11-06T05:52:42 | C++ | BIG5 | C++ | false | false | 8,868 | cpp | #include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
#include<bits/stdc++.h>
struct BigInteger {
typedef unsigned long long LL;
static const int BASE = 100000000;
static const int WIDTH = 8;
vector<int> s;
BigInteger& clean(){while(!s.back()&&s.size()>1)s.pop_back(); return *this;}
BigInteger(LL num = 0) {*this = num;}
BigInteger(string s) {*this = s;}
BigInteger& operator = (long long num) {
s.clear();
do {
s.push_back(num % BASE);
num /= BASE;
} while (num > 0);
return *this;
}
BigInteger& operator = (const string& str) {
s.clear();
int x, len = (str.length() - 1) / WIDTH + 1;
for (int i = 0; i < len; i++) {
int end = str.length() - i*WIDTH;
int start = max(0, end - WIDTH);
sscanf(str.substr(start,end-start).c_str(), "%d", &x);
s.push_back(x);
}
return (*this).clean();
}
BigInteger operator + (const BigInteger& b) const {
BigInteger c; c.s.clear();
for (int i = 0, g = 0; ; i++) {
if (g == 0 && i >= s.size() && i >= b.s.size()) break;
int x = g;
if (i < s.size()) x += s[i];
if (i < b.s.size()) x += b.s[i];
c.s.push_back(x % BASE);
g = x / BASE;
}
return c;
}
BigInteger operator - (const BigInteger& b) const {
assert(b <= *this); // ??那y2??邦∩車車迆㊣???那y
BigInteger c; c.s.clear();
for (int i = 0, g = 0; ; i++) {
if (g == 0 && i >= s.size() && i >= b.s.size()) break;
int x = s[i] + g;
if (i < b.s.size()) x -= b.s[i];
if (x < 0) {g = -1; x += BASE;} else g = 0;
c.s.push_back(x);
}
return c.clean();
}
BigInteger operator * (const BigInteger& b) const {
int i, j; LL g;
vector<LL> v(s.size()+b.s.size(), 0);
BigInteger c; c.s.clear();
for(i=0;i<s.size();i++) for(j=0;j<b.s.size();j++) v[i+j]+=LL(s[i])*b.s[j];
for (i = 0, g = 0; ; i++) {
if (g ==0 && i >= v.size()) break;
LL x = v[i] + g;
c.s.push_back(x % BASE);
g = x / BASE;
}
return c.clean();
}
BigInteger operator / (const BigInteger& b) const {
assert(b > 0); // 3y那y㊣?D?∩車車迆0
BigInteger c = *this; // 谷足:?‾辰a那?豕?c.so赤(*this).s米?vector辰??迄∩車
BigInteger m; // 車角那y:3?那??‘?a0
for (int i = s.size()-1; i >= 0; i--) {
m = m*BASE + s[i];
c.s[i] = bsearch(b, m);
m -= b*c.s[i];
}
return c.clean();
}
BigInteger operator % (const BigInteger& b) const { //﹞?﹞“車?3y﹞“?角赤?
BigInteger c = *this;
BigInteger m;
for (int i = s.size()-1; i >= 0; i--) {
m = m*BASE + s[i];
c.s[i] = bsearch(b, m);
m -= b*c.s[i];
}
return m;
}
// ?t﹞?﹞“?辰3??迆℅?bx<=m米?℅?∩車米?x
int bsearch(const BigInteger& b, const BigInteger& m) const{
int L = 0, R = BASE-1, x;
while (1) {
x = (L+R)>>1;
if (b*x<=m) {if (b*(x+1)>m) return x; else L = x;}
else R = x;
}
}
BigInteger& operator += (const BigInteger& b) {*this = *this + b; return *this;}
BigInteger& operator -= (const BigInteger& b) {*this = *this - b; return *this;}
BigInteger& operator *= (const BigInteger& b) {*this = *this * b; return *this;}
BigInteger& operator /= (const BigInteger& b) {*this = *this / b; return *this;}
BigInteger& operator %= (const BigInteger& b) {*this = *this % b; return *this;}
bool operator < (const BigInteger& b) const {
if (s.size() != b.s.size()) return s.size() < b.s.size();
for (int i = s.size()-1; i >= 0; i--)
if (s[i] != b.s[i]) return s[i] < b.s[i];
return false;
}
bool operator >(const BigInteger& b) const{return b < *this;}
bool operator<=(const BigInteger& b) const{return !(b < *this);}
bool operator>=(const BigInteger& b) const{return !(*this < b);}
bool operator!=(const BigInteger& b) const{return b < *this || *this < b;}
bool operator==(const BigInteger& b) const{return !(b < *this) && !(b > *this);}
};
ostream& operator << (ostream& out, const BigInteger& x) {
out << x.s.back();
for (int i = x.s.size()-2; i >= 0; i--) {
char buf[20];
sprintf(buf, "%08d", x.s[i]);
for (int j = 0; j < strlen(buf); j++) out << buf[j];
}
return out;
}
istream& operator >> (istream& in, BigInteger& x) {
string s;
if (!(in >> s)) return in;
x = s;
return in;
}
#define For(i,n) for(int i=1;i<=n;i++)
const int HASH=30007;
const int STATE=1000010;
const int MAXD=25;
int N,M;
int code[MAXD];
char maze[MAXD][MAXD];
typedef BigInteger ll;
struct HASHMAP
{
int head[HASH],next[STATE],state[STATE],size;
ll f[STATE];
void init()
{
size=0;
memset(head,-1,sizeof(head));
}
void push(int st,ll ans)
{
int i,h=st%HASH;
for(i=head[h];i!=-1;i=next[i])
if(st==state[i])
{
f[i]+=ans;
return;
}
f[size]=ans;
state[size]=st;
next[size]=head[h];
head[h]=size++;
}
}hm[2];
void decode(int *code,int m,int st)
{
int i;
for(i=m;i>=0;i--)
{
code[i]=st&3;
st>>=2;
}
}
int encode(int *code,int m)
{
int i,st=0;
for(int i=0;i<=m;i++)
{
st<<=2;
st|=code[i];
}
return st;
}
void init()
{
scanf("%d%d",&N,&M);
if (N<M)swap(N,M);
For(i,N) For(j,M) maze[i][j]=1;
for(int i=1;i<=N;i++)maze[i][M+1]=0;
for(int i=1;i<=M;i++)maze[N+1][i]=0;
}
void shift(int *code,int m)//?-?﹞車辰辰?
{
int i;
for(i=m;i>0;i--)
code[i]=code[i-1];
code[0]=0;
}
#include<stack>
int seq[MAXD];
void prs(int *code,int m,int *seq) {
stack<int> st;
for(int i=0;i<=m;i++) {
if (code[i]==1) st.push(i);
if (code[i]==2) {
int f=st.top(); st.pop();
seq[f]=i;seq[i]=f;
}
}
}
int ex,ey;
void dpblank(int i,int j,int cur)
{
int k,left,up;
for(k=0;k<hm[cur].size;k++)
{
decode(code,M,hm[cur].state[k]);
prs(code,M,seq);
left=code[j-1];
up=code[j];
if(left&&up)//11 -> 00
{
if (left==1&&up==1) {
code[j-1]=code[j]=0;
code[seq[j]]=1;
if(j==M)shift(code,M);
hm[cur^1].push(encode(code,M),hm[cur].f[k]);
}
if (left==1&&up==2) if (i==ex&&j==ey){
code[j-1]=code[j]=0;
if(j==M)shift(code,M);
hm[cur^1].push(encode(code,M),hm[cur].f[k]);
}
if (left==2&&up==1) {
code[j-1]=code[j]=0;
if(j==M)shift(code,M);
hm[cur^1].push(encode(code,M),hm[cur].f[k]);
}
if (left==2&&up==2) {
code[j-1]=code[j]=0;
code[seq[j-1]]=2;
if(j==M)shift(code,M);
hm[cur^1].push(encode(code,M),hm[cur].f[k]);
}
}
else if(left+up)
{
if(maze[i][j+1])
{
code[j-1]=0;
code[j]=left|up;
hm[cur^1].push(encode(code,M),hm[cur].f[k]);
}
if(maze[i+1][j])
{
code[j-1]=left|up;
code[j]=0;
if(j==M)shift(code,M);
hm[cur^1].push(encode(code,M),hm[cur].f[k]);
}
}
else
{
if(maze[i][j+1]&&maze[i+1][j])
{
code[j-1]=1,code[j]=2;
hm[cur^1].push(encode(code,M),hm[cur].f[k]);
}
}
}
}
void dpblock(int i,int j,int cur)
{
int k;
for(k=0;k<hm[cur].size;k++)
{
decode(code,M,hm[cur].state[k]);
code[j-1]=code[j]=0;
if(j==M)shift(code,M);
hm[cur^1].push(encode(code,M),hm[cur].f[k]);
}
}
void solve()
{
ex=N,ey=M;
if(M==1) {
puts("1");return;
}
int i,j,cur=0;
ll ans=0;
hm[cur].init();
hm[cur].push(0,1);
for(i=1;i<=N;i++)
for(j=1;j<=M;j++)
{
hm[cur^1].init();
if(maze[i][j])dpblank(i,j,cur);
else dpblock(i,j,cur);
cur^=1;
}
for(i=0;i<hm[cur].size;i++)
ans+=hm[cur].f[i];
cout<<(ans+ans)<<endl;
}
int main()
{
// freopen("bzoj1210.in","r",stdin);
init();
solve();
return 0;
}
| [
"wuhang212@126.com"
] | wuhang212@126.com |
08337e17efeb7679da151fba9efc9b2aa68cb31d | 602e0f4bae605f59d23688cab5ad10c21fc5a34f | /MyToolKit/CostEngineer/GridCtrl_src/GridCtrl.cpp | 8f344a8367ba53b6819e69b99fb897a1475a4dc6 | [] | no_license | yanbcxf/cpp | d7f26056d51f85254ae1dd2c4e8e459cfefb2fb6 | e059b02e7f1509918bbc346c555d42e8d06f4b8f | refs/heads/master | 2023-08-04T04:40:43.475657 | 2023-08-01T14:03:44 | 2023-08-01T14:03:44 | 172,408,660 | 8 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 249,746 | cpp | // GridCtrl.cpp : implementation file
//
// MFC Grid Control v2.26
//
// Written by Chris Maunder <chris@codeproject.com>
// Copyright (c) 1998-2005. All Rights Reserved.
/
// The code contained in this file was based on the original
// WorldCom Grid control written by Joe Willcoxson,
// mailto:chinajoe@aol.com
// http://users.aol.com/chinajoe
// (These addresses may be out of date) The code has gone through
// so many modifications that I'm not sure if there is even a single
// original line of code. In any case Joe's code was a great
// framework on which to build.
//
// This code may be used in compiled form in any way you desire. This
// file may be redistributed unmodified by any means PROVIDING it is
// not sold for profit without the authors written consent, and
// providing that this notice and the authors name and all copyright
// notices remains intact.
//
// An email letting me know how you are using it would be nice as well.
//
// This file is provided "as is" with no expressed or implied warranty.
// The author accepts no liability for any damage/loss of business that
// this product may cause.
//
// Expect bugs!
//
// Please use and enjoy, and let me know of any bugs/mods/improvements
// that you have found/implemented and I will fix/incorporate them into
// this file.
//
// History:
// --------
// This control is constantly evolving, sometimes due to new features that I
// feel are necessary, and sometimes due to existing bugs. Where possible I
// have credited the changes to those who contributed code corrections or
// enhancements (names in brackets) or code suggestions (suggested by...)
//
// 1.0 - 1.13 20 Feb 1998 - 6 May 1999
// First release version. Progressed from being a basic
// grid based on the original WorldCom Grid control
// written by Joe Willcoxson (mailto:chinajoe@aol.com,
// http://users.aol.com/chinajoe) to something a little
// more feature rich. Rewritten so many times I doubt
// there is a single line of Joe's code left. Many, many,
// MANY people sent in bug reports and fixes. Thank you
// all.
//
// 2.0 1 Feb 2000
// Rewritten to make the grid more object oriented, in
// that the CGridCell class now takes care of cell-specific
// tasks. This makes the code more robust, but more
// importantly it allows the simple insertion of other
// types of cells.
//
// 2.10 11 Mar 2000 - Ken Bertelson and Chris Maunder
// - Additions for virtual CGridCell support of embedded tree
// & cell buttons implementation
// - Optional WYSIWYG printing
// - Awareness of hidden (0 width/height) rows and columns for
// key movements, cut, copy, paste, and autosizing
// - CGridCell can make title tips display any text rather than
// cell text only
// - Minor vis bug fixes
// - CGridCtrl now works with CGridCellBase instead of CGridCell
// This is a taste of things to come.
//
// 2.20 30 Jul 2000 - Chris Maunder
// - Font storage optimised (suggested by Martin Richter)
// - AutoSizeColumn works on either column header, data or both
// - EnsureVisible. The saga continues... (Ken)
// - Rewrote exception handling
// - Added TrackFocusCell and FrameFocusCell properties, as well as
// ExpandLastColumn (suggested by Bruce E. Stemplewski).
// - InsertColumn now allows you to insert columns at the end of the
// column range (David Weibel)
// - Shift-cell-selection more intuitive
// - API change: Set/GetGridColor now Set/GetGridLineColor
// - API change: Set/GetBkColor now Set/GetGridBkColor
// - API change: Set/GetTextColor, Set/GetTextBkColor depricated
// - API change: Set/GetFixedTextColor, Set/GetFixedBkColor depricated
// - Stupid DDX_GridControl workaround removed.
// - Added "virtual mode" via Set/GetVirtualMode
// - Added SetCallbackFunc to allow callback functions in virtual mode
// - Added Set/GetAutoSizeStyle
// - AutoSize() bug fixed
// - added GVIS_FIXEDROW, GVIS_FIXEDCOL states
// - added Get/SetFixed[Row|Column]Selection
// - cell "Get" methods now const'd. Sorry folks...
// - GetMouseScrollLines now uses win98/W2K friendly code
// - WS_EX_CLIENTEDGE style now implicit
//
// [ Only the latest version and major version changes will be shown ]
////
// 2.25 13 Mar 2004 - Chris Maunder
// - Minor changes so it will compile in VS.NET (inc. Whidbey)
// - Fixed minor bug in EnsureVisible - Junlin Xu
// - Changed AfxGetInstanceHandle for AfxGetResourceHandle in RegisterWindowClass
// - Various changes thanks to Yogurt
//
// 2.26 13 Dec 2005 - Pierre Couderc
// - Added sort in Virtual mode
// - Change row/column order programatically or via drag and drop
// - Added save/restore layer (for undoing row/column order changes)
//
// TODO: 1) Implement sparse grids (super easy now)
// 2) Fix it so that as you drag select, the speed of selection increases
// with time.
// 3) Scrolling is still a little dodgy (too much grey area). I know there
// is a simple fix but it's been a low priority
//
// ISSUES: 1) WindowFromPoint seems to do weird things in W2K. Causing problems for
// the rigt-click-on-titletip code.
//
/////////////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "MemDC.h"
#include "GridCtrl.h"
#include <algorithm>
// OLE stuff for clipboard operations
#include <afxadv.h> // For CSharedFile
#include <afxconv.h> // For LPTSTR -> LPSTR macros
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
// Spit out some messages as a sanity check for programmers
#ifdef GRIDCONTROL_NO_TITLETIPS
#pragma message(" -- CGridCtrl: No titletips for cells with large data")
#endif
#ifdef GRIDCONTROL_NO_DRAGDROP
#pragma message(" -- CGridCtrl: No OLE drag and drop")
#endif
#ifdef GRIDCONTROL_NO_CLIPBOARD
#pragma message(" -- CGridCtrl: No clipboard support")
#endif
#ifdef GRIDCONTROL_NO_PRINTING
#pragma message(" -- CGridCtrl: No printing support")
#endif
IMPLEMENT_DYNCREATE(CGridCtrl, CWnd)
// Get the number of lines to scroll with each mouse wheel notch
// Why doesn't windows give us this function???
UINT GetMouseScrollLines()
{
int nScrollLines = 3; // reasonable default
#ifndef _WIN32_WCE
// Do things the hard way in win95
OSVERSIONINFO VersionInfo;
VersionInfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
if (!GetVersionEx(&VersionInfo) ||
(VersionInfo.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS && VersionInfo.dwMinorVersion == 0))
{
HKEY hKey;
if (RegOpenKeyEx(HKEY_CURRENT_USER, _T("Control Panel\\Desktop"),
0, KEY_QUERY_VALUE, &hKey) == ERROR_SUCCESS)
{
TCHAR szData[128];
DWORD dwKeyDataType;
DWORD dwDataBufSize = sizeof(szData);
if (RegQueryValueEx(hKey, _T("WheelScrollLines"), NULL, &dwKeyDataType,
(LPBYTE) &szData, &dwDataBufSize) == ERROR_SUCCESS)
{
nScrollLines = _tcstoul(szData, NULL, 10);
}
RegCloseKey(hKey);
}
}
// win98 or greater
else
SystemParametersInfo (SPI_GETWHEELSCROLLLINES, 0, &nScrollLines, 0);
#endif
return nScrollLines;
}
CRect CGridCtrl::rectNull(0, 0, 0, 0);
CCellID CGridCtrl::cellNull(0, 0);
/////////////////////////////////////////////////////////////////////////////
// CGridCtrl
CGridCtrl::CGridCtrl(int nRows, int nCols, int nFixedRows, int nFixedCols)
{
RegisterWindowClass();
#if !defined(GRIDCONTROL_NO_DRAGDROP) || !defined(GRIDCONTROL_NO_CLIPBOARD)
_AFX_THREAD_STATE* pState = AfxGetThreadState();
if (!pState->m_bNeedTerm && !AfxOleInit())
AfxMessageBox(_T("OLE initialization failed. Make sure that the OLE libraries are the correct version"));
#endif
// Store the system colours in case they change. The gridctrl uses
// these colours, and in OnSysColorChange we can check to see if
// the gridctrl colours have been changed from the system colours.
// If they have, then leave them, otherwise change them to reflect
// the new system colours.
m_crWindowText = ::GetSysColor(COLOR_WINDOWTEXT);
m_crWindowColour = ::GetSysColor(COLOR_WINDOW);
m_cr3DFace = ::GetSysColor(COLOR_3DFACE);
m_crShadow = ::GetSysColor(COLOR_3DSHADOW);
m_crGridLineColour = RGB(192,192,192);
m_nRows = 0;
m_nCols = 0;
m_nFixedRows = 0;
m_nFixedCols = 0;
m_InDestructor = false;
m_bVirtualMode = FALSE;
m_pfnCallback = NULL;
m_nVScrollMax = 0; // Scroll position
m_nHScrollMax = 0;
m_nRowsPerWheelNotch = GetMouseScrollLines(); // Get the number of lines
// per mouse wheel notch to scroll
m_nBarState = GVL_NONE;
m_MouseMode = MOUSE_NOTHING;
m_nGridLines = GVL_BOTH;
m_bEditable = TRUE;
m_bListMode = FALSE;
m_bSingleRowSelection = FALSE;
m_bSingleColSelection = FALSE;
m_bLMouseButtonDown = FALSE;
m_bRMouseButtonDown = FALSE;
m_bAllowDraw = TRUE; // allow draw updates
m_bEnableSelection = TRUE;
m_bFixedColumnSelection = TRUE;
m_bFixedRowSelection = TRUE;
m_bAllowRowResize = TRUE;
m_bAllowColumnResize = TRUE;
m_bSortOnClick = FALSE; // Sort on header row click
m_bHandleTabKey = TRUE;
#ifdef _WIN32_WCE
m_bDoubleBuffer = FALSE; // Use double buffering to avoid flicker?
#else
m_bDoubleBuffer = TRUE; // Use double buffering to avoid flicker?
#endif
m_bTitleTips = TRUE; // show cell title tips
m_bWysiwygPrinting = FALSE; // use size-to-width printing
m_bHiddenColUnhide = TRUE; // 0-width columns can be expanded via mouse
m_bHiddenRowUnhide = TRUE; // 0-Height rows can be expanded via mouse
m_bAllowColHide = TRUE; // Columns can be contracted to 0-width via mouse
m_bAllowRowHide = TRUE; // Rows can be contracted to 0-height via mouse
m_bAscending = TRUE; // sorting stuff
m_nSortColumn = -1;
m_pfnCompare = NULL;
m_pfnVirtualCompare = NULL;
m_nAutoSizeColumnStyle = GVS_BOTH; // Autosize grid using header and data info
m_nTimerID = 0; // For drag-selection
// LUC
m_nTimerInterval = 150; // (in milliseconds)
m_nResizeCaptureRange = 3; // When resizing columns/row, the cursor has to be
// within +/-3 pixels of the dividing line for
// resizing to be possible
m_pImageList = NULL; // Images in the grid
m_bAllowDragAndDrop = FALSE; // for drag and drop - EFW - off by default
m_bTrackFocusCell = FALSE; // Track Focus cell?
m_bFrameFocus = TRUE; // Frame the selected cell?
m_AllowReorderColumn = false;
m_QuitFocusOnTab = false;
m_AllowSelectRowInFixedCol = false;
m_bDragRowMode = TRUE; // allow to drop a line over another one to change row order
m_pRtcDefault = RUNTIME_CLASS(CGridCell);
SetupDefaultCells();
SetGridBkColor(m_crShadow);
// Set up the initial grid size
m_pRowData = new CTypedPtrArray<CObArray, GRID_ROW*>;
m_pArrayRowHeights = new CUIntArray;
SetRowCount(nRows);
SetColumnCount(nCols);
SetFixedRowCount(nFixedRows);
SetFixedColumnCount(nFixedCols);
// LUC
m_nFreezedRows = 0;
m_nFreezedCols = 0;
// LUC
m_bExcludeFreezedRowsFromSelection = FALSE;
m_bExcludeFreezedColsFromSelection = FALSE;
SetTitleTipTextClr(CLR_DEFAULT); //FNA
SetTitleTipBackClr(CLR_DEFAULT);
// set initial selection range (ie. none)
m_SelectedCellMap.RemoveAll();
m_PrevSelectedCellMap.RemoveAll();
#if !defined(_WIN32_WCE_NO_PRINTING) && !defined(GRIDCONTROL_NO_PRINTING)
// EFW - Added to support shaded/unshaded printout and
// user-definable margins.
m_bShadedPrintOut = TRUE;
SetPrintMarginInfo(2, 2, 4, 4, 1, 1, 1);
#endif
// LUC
m_bDrawingMergedCell = FALSE;
m_nCurrentMergeID = -1;
// LUC
m_bShowHorzNonGridArea = TRUE;
// LUC
m_nScrollX = 0;
}
CGridCtrl::~CGridCtrl()
{
m_InDestructor = true;
DeleteAllItems();
#ifndef GRIDCONTROL_NO_TITLETIPS
if (m_bTitleTips && ::IsWindow(m_TitleTip.GetSafeHwnd()))
m_TitleTip.DestroyWindow();
#endif
DestroyWindow();
#if !defined(GRIDCONTROL_NO_DRAGDROP) || !defined(GRIDCONTROL_NO_CLIPBOARD)
// BUG FIX - EFW
COleDataSource *pSource = COleDataSource::GetClipboardOwner();
if(pSource)
COleDataSource::FlushClipboard();
#endif
delete m_pRowData;
delete m_pArrayRowHeights;
}
// Register the window class if it has not already been registered.
BOOL CGridCtrl::RegisterWindowClass()
{
WNDCLASS wndcls;
//HINSTANCE hInst = AfxGetInstanceHandle();
HINSTANCE hInst = AfxGetResourceHandle();
if (!(::GetClassInfo(hInst, GRIDCTRL_CLASSNAME, &wndcls)))
{
// otherwise we need to register a new class
wndcls.style = CS_DBLCLKS;
wndcls.lpfnWndProc = ::DefWindowProc;
wndcls.cbClsExtra = wndcls.cbWndExtra = 0;
wndcls.hInstance = hInst;
wndcls.hIcon = NULL;
#ifndef _WIN32_WCE_NO_CURSOR
wndcls.hCursor = AfxGetApp()->LoadStandardCursor(IDC_ARROW);
#else
wndcls.hCursor = 0;
#endif
wndcls.hbrBackground = (HBRUSH) (COLOR_3DFACE + 1);
wndcls.lpszMenuName = NULL;
wndcls.lpszClassName = GRIDCTRL_CLASSNAME;
if (!AfxRegisterClass(&wndcls))
{
AfxThrowResourceException();
return FALSE;
}
}
return TRUE;
}
BOOL CGridCtrl::Initialise()
{
// Stop re-entry problems
static BOOL bInProcedure = FALSE;
if (bInProcedure)
return FALSE;
bInProcedure = TRUE;
#ifndef GRIDCONTROL_NO_TITLETIPS
m_TitleTip.SetParentWnd(this);
#endif
// This would be a good place to register the droptarget but
// unfortunately this causes problems if you are using the
// grid in a view.
// Moved from OnSize.
//#ifndef GRIDCONTROL_NO_DRAGDROP
// m_DropTarget.Register(this);
//#endif
if (::IsWindow(m_hWnd))
ModifyStyleEx(0, WS_EX_CLIENTEDGE);
// Kludge: Make sure the client edge shows
// This is so horrible it makes my eyes water.
CRect rect;
GetWindowRect(rect);
CWnd* pParent = GetParent();
if (pParent != NULL)
pParent->ScreenToClient(rect);
rect.InflateRect(1,1); MoveWindow(rect);
rect.DeflateRect(1,1); MoveWindow(rect);
bInProcedure = FALSE;
return TRUE;
}
// creates the control - use like any other window create control
BOOL CGridCtrl::Create(const RECT& rect, CWnd* pParentWnd, UINT nID, DWORD dwStyle)
{
ASSERT(pParentWnd->GetSafeHwnd());
if (!CWnd::Create(GRIDCTRL_CLASSNAME, NULL, dwStyle, rect, pParentWnd, nID))
return FALSE;
//Initialise(); - called in PreSubclassWnd
// The number of rows and columns will only be non-zero if the constructor
// was called with non-zero initialising parameters. If this window was created
// using a dialog template then the number of rows and columns will be 0 (which
// means that the code below will not be needed - which is lucky 'cause it ain't
// gonna get called in a dialog-template-type-situation.
TRY
{
(*m_pArrayRowHeights).SetSize(m_nRows); // initialize row heights
m_arColWidths.SetSize(m_nCols); // initialize column widths
}
CATCH (CMemoryException, e)
{
e->ReportError();
return FALSE;
}
END_CATCH
int i;
for (i = 0; i < m_nRows; i++)
(*m_pArrayRowHeights)[i] = m_cellDefault.GetHeight();
for (i = 0; i < m_nCols; i++)
m_arColWidths[i] = m_cellDefault.GetWidth();
return TRUE;
}
void CGridCtrl::SetupDefaultCells()
{
m_cellDefault.SetGrid(this); // Normal editable cell
m_cellFixedColDef.SetGrid(this); // Cell for fixed columns
m_cellFixedRowDef.SetGrid(this); // Cell for fixed rows
m_cellFixedRowColDef.SetGrid(this); // Cell for area overlapped by fixed columns/rows
m_cellDefault.SetTextClr(m_crWindowText);
m_cellDefault.SetBackClr(m_crWindowColour);
m_cellFixedColDef.SetTextClr(m_crWindowText);
m_cellFixedColDef.SetBackClr(m_cr3DFace);
m_cellFixedRowDef.SetTextClr(m_crWindowText);
m_cellFixedRowDef.SetBackClr(m_cr3DFace);
m_cellFixedRowColDef.SetTextClr(m_crWindowText);
m_cellFixedRowColDef.SetBackClr(m_cr3DFace);
}
void CGridCtrl::PreSubclassWindow()
{
CWnd::PreSubclassWindow();
//HFONT hFont = ::CreateFontIndirect(m_cellDefault.GetFont());
//OnSetFont((LPARAM)hFont, 0);
//DeleteObject(hFont);
Initialise();
}
// Sends a message to the parent in the form of a WM_NOTIFY message with
// a NM_GRIDVIEW structure attached
LRESULT CGridCtrl::SendMessageToParent(int nRow, int nCol, int nMessage) const
{
if (!IsWindow(m_hWnd))
return 0;
NM_GRIDVIEW nmgv;
nmgv.iRow = nRow;
nmgv.iColumn = nCol;
nmgv.hdr.hwndFrom = m_hWnd;
nmgv.hdr.idFrom = GetDlgCtrlID();
nmgv.hdr.code = nMessage;
CWnd *pOwner = GetOwner();
if (pOwner && IsWindow(pOwner->m_hWnd))
return pOwner->SendMessage(WM_NOTIFY, nmgv.hdr.idFrom, (LPARAM)&nmgv);
else
return 0;
}
// Send a request to the parent to return information on a given cell
LRESULT CGridCtrl::SendDisplayRequestToParent(GV_DISPINFO* pDisplayInfo) const
{
if (!IsWindow(m_hWnd))
return 0;
// Fix up the message headers
pDisplayInfo->hdr.hwndFrom = m_hWnd;
pDisplayInfo->hdr.idFrom = GetDlgCtrlID();
pDisplayInfo->hdr.code = GVN_GETDISPINFO;
// Send the message
CWnd *pOwner = GetOwner();
if (pOwner && IsWindow(pOwner->m_hWnd))
return pOwner->SendMessage(WM_NOTIFY, pDisplayInfo->hdr.idFrom, (LPARAM)pDisplayInfo);
else
return 0;
}
// Send a hint to the parent about caching information
LRESULT CGridCtrl::SendCacheHintToParent(const CCellRange& range) const
{
if (!IsWindow(m_hWnd))
return 0;
GV_CACHEHINT CacheHint;
// Fix up the message headers
CacheHint.hdr.hwndFrom = m_hWnd;
CacheHint.hdr.idFrom = GetDlgCtrlID();
CacheHint.hdr.code = GVN_ODCACHEHINT;
CacheHint.range = range;
// Send the message
CWnd *pOwner = GetOwner();
if (pOwner && IsWindow(pOwner->m_hWnd))
return pOwner->SendMessage(WM_NOTIFY, CacheHint.hdr.idFrom, (LPARAM)&CacheHint);
else
return 0;
}
#define LAYER_SIGNATURE (0x5FD4E64)
int CGridCtrl::GetLayer(int** pLayer) // used to save and restore order of columns
{ // gives back the size of the area (do not forget to delete pLayer)
int Length = 2+GetColumnCount()*2;
int *Layer = new int[Length]; // the caller is supposed to delete it
Layer[0]= LAYER_SIGNATURE;
Layer[1]= GetColumnCount();
memcpy(&Layer[2], &m_arColOrder[0], GetColumnCount()*sizeof(int));
memcpy(&Layer[2+GetColumnCount()], &m_arColWidths[0], GetColumnCount()*sizeof(int));
*pLayer = Layer;
return Length;
}
void CGridCtrl::SetLayer(int* pLayer)
{ // coming from a previous GetLayer (ignored if not same number of column, or the same revision number)
if(pLayer[0] != LAYER_SIGNATURE) return;
if(pLayer[1] != GetColumnCount()) return;
/* TRACE(" %d == %d \n",m_arColOrder[0],pLayer[2]);
TRACE(" %d == %d \n",m_arColOrder[1],pLayer[3]);
TRACE(" %d == %d \n",m_arColOrder[2],pLayer[4]);
TRACE(" %d == %d \n",m_arColWidths[0],pLayer[2+3]);
TRACE(" %d == %d \n",m_arColWidths[1],pLayer[3+3]);
TRACE(" %d == %d \n",m_arColWidths[2],pLayer[4+3]);
TRACE(" %d == %d \n",GetColumnCount(),3);
ASSERT(m_arColOrder[0]==pLayer[2]);
ASSERT(m_arColOrder[1]==pLayer[3]);
ASSERT(m_arColOrder[2]==pLayer[4]);
ASSERT(m_arColWidths[0]==pLayer[2+3]);
ASSERT(m_arColWidths[1]==pLayer[3+3]);
ASSERT(m_arColWidths[2]==pLayer[4+3]);
ASSERT(GetColumnCount()==3);
*/ memcpy(&m_arColOrder[0],&pLayer[2], GetColumnCount()*sizeof(int));
memcpy(&m_arColWidths[0],&pLayer[2+GetColumnCount()], GetColumnCount()*sizeof(int));
}
BEGIN_MESSAGE_MAP(CGridCtrl, CWnd)
//EFW - Added ON_WM_RBUTTONUP
//{{AFX_MSG_MAP(CGridCtrl)
ON_WM_PAINT()
ON_WM_HSCROLL()
ON_WM_VSCROLL()
ON_WM_SIZE()
ON_WM_LBUTTONUP()
ON_WM_LBUTTONDOWN()
ON_WM_MOUSEMOVE()
ON_WM_TIMER()
ON_WM_GETDLGCODE()
ON_WM_KEYDOWN()
ON_WM_CHAR()
ON_WM_LBUTTONDBLCLK()
ON_WM_ERASEBKGND()
ON_UPDATE_COMMAND_UI(ID_EDIT_SELECT_ALL, OnUpdateEditSelectAll)
ON_COMMAND(ID_EDIT_SELECT_ALL, OnEditSelectAll)
ON_WM_SYSKEYDOWN()
//}}AFX_MSG_MAP
#ifndef _WIN32_WCE_NO_CURSOR
ON_WM_SETCURSOR()
#endif
#ifndef _WIN32_WCE
ON_WM_RBUTTONUP()
ON_WM_SYSCOLORCHANGE()
ON_WM_CAPTURECHANGED()
#endif
#ifndef GRIDCONTROL_NO_CLIPBOARD
ON_COMMAND(ID_EDIT_COPY, OnEditCopy)
ON_UPDATE_COMMAND_UI(ID_EDIT_COPY, OnUpdateEditCopy)
ON_COMMAND(ID_EDIT_CUT, OnEditCut)
ON_UPDATE_COMMAND_UI(ID_EDIT_CUT, OnUpdateEditCut)
ON_COMMAND(ID_EDIT_PASTE, OnEditPaste)
ON_UPDATE_COMMAND_UI(ID_EDIT_PASTE, OnUpdateEditPaste)
#endif
#if (_WIN32_WCE >= 210)
ON_WM_SETTINGCHANGE()
#endif
#if !defined(_WIN32_WCE) && (_MFC_VER >= 0x0421)
ON_WM_MOUSEWHEEL()
#endif
ON_MESSAGE(WM_SETFONT, OnSetFont)
ON_MESSAGE(WM_GETFONT, OnGetFont)
ON_MESSAGE(WM_IME_CHAR, OnImeChar)
ON_NOTIFY(GVN_ENDLABELEDIT, IDC_INPLACE_CONTROL, OnEndInPlaceEdit)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CGridCtrl message handlers
void CGridCtrl::OnPaint()
{
CPaintDC dc(this); // device context for painting
if (m_bDoubleBuffer) // Use a memory DC to remove flicker
{
CMemDC1 MemDC(&dc);
OnDraw(&MemDC);
}
else // Draw raw - this helps in debugging vis problems.
OnDraw(&dc);
}
BOOL CGridCtrl::OnEraseBkgnd(CDC* /*pDC*/)
{
return TRUE; // Don't erase the background.
}
// Custom background erasure. This gets called from within the OnDraw function,
// since we will (most likely) be using a memory DC to stop flicker. If we just
// erase the background normally through OnEraseBkgnd, and didn't fill the memDC's
// selected bitmap with colour, then all sorts of vis problems would occur
void CGridCtrl::EraseBkgnd(CDC* pDC)
{
CRect VisRect, ClipRect, rect;
CBrush FixedRowColBack(GetDefaultCell(TRUE, TRUE)->GetBackClr()),
FixedRowBack(GetDefaultCell(TRUE, FALSE)->GetBackClr()),
FixedColBack(GetDefaultCell(FALSE, TRUE)->GetBackClr()),
TextBack(GetDefaultCell(FALSE, FALSE)->GetBackClr());
CBrush Back(GetGridBkColor());
if (pDC->GetClipBox(ClipRect) == ERROR)
return;
GetVisibleNonFixedCellRange(VisRect);
int nFixedColumnWidth = GetFixedColumnWidth();
int nFixedRowHeight = GetFixedRowHeight();
// Draw Fixed row/column background
if (ClipRect.left < nFixedColumnWidth && ClipRect.top < nFixedRowHeight)
pDC->FillRect(CRect(ClipRect.left, ClipRect.top,
nFixedColumnWidth, nFixedRowHeight),
&FixedRowColBack);
// Draw Fixed columns background
if (ClipRect.left < nFixedColumnWidth && ClipRect.top < VisRect.bottom)
pDC->FillRect(CRect(ClipRect.left, ClipRect.top,
nFixedColumnWidth, VisRect.bottom),
&FixedColBack);
// Draw Fixed rows background
if (ClipRect.top < nFixedRowHeight &&
ClipRect.right > nFixedColumnWidth && ClipRect.left < VisRect.right)
pDC->FillRect(CRect(nFixedColumnWidth-1, ClipRect.top,
VisRect.right, nFixedRowHeight),
&FixedRowBack);
// Draw non-fixed cell background
if (rect.IntersectRect(VisRect, ClipRect))
{
CRect CellRect(__max(nFixedColumnWidth, rect.left),
__max(nFixedRowHeight, rect.top),
rect.right, rect.bottom);
pDC->FillRect(CellRect, &TextBack);
}
// Draw right hand side of window outside grid
if (VisRect.right < ClipRect.right)
pDC->FillRect(CRect(VisRect.right, ClipRect.top,
ClipRect.right, ClipRect.bottom),
&Back);
// Draw bottom of window below grid
if (VisRect.bottom < ClipRect.bottom && ClipRect.left < VisRect.right)
pDC->FillRect(CRect(ClipRect.left, VisRect.bottom,
VisRect.right, ClipRect.bottom),
&Back);
}
void CGridCtrl::OnSize(UINT nType, int cx, int cy)
{
static BOOL bAlreadyInsideThisProcedure = FALSE;
if (bAlreadyInsideThisProcedure)
return;
if (!::IsWindow(m_hWnd))
return;
// This is not the ideal place to register the droptarget
#ifndef GRIDCONTROL_NO_DRAGDROP
m_DropTarget.Register(this);
#endif
// Start re-entry blocking
bAlreadyInsideThisProcedure = TRUE;
EndEditing(); // destroy any InPlaceEdit's
CWnd::OnSize(nType, cx, cy);
ResetScrollBars();
// End re-entry blocking
bAlreadyInsideThisProcedure = FALSE;
}
UINT CGridCtrl::OnGetDlgCode()
{
UINT nCode = DLGC_WANTARROWS | DLGC_WANTCHARS; // DLGC_WANTALLKEYS; //
if (m_bHandleTabKey && !IsCTRLpressed())
nCode |= DLGC_WANTTAB;
return nCode;
}
#ifndef _WIN32_WCE
// If system colours change, then redo colours
void CGridCtrl::OnSysColorChange()
{
CWnd::OnSysColorChange();
if (GetDefaultCell(FALSE, FALSE)->GetTextClr() == m_crWindowText) // Still using system colours
GetDefaultCell(FALSE, FALSE)->SetTextClr(::GetSysColor(COLOR_WINDOWTEXT)); // set to new system colour
if (GetDefaultCell(FALSE, FALSE)->GetBackClr() == m_crWindowColour)
GetDefaultCell(FALSE, FALSE)->SetBackClr(::GetSysColor(COLOR_WINDOW));
if (GetDefaultCell(TRUE, FALSE)->GetTextClr() == m_crWindowText) // Still using system colours
GetDefaultCell(TRUE, FALSE)->SetTextClr(::GetSysColor(COLOR_WINDOWTEXT)); // set to new system colour
if (GetDefaultCell(TRUE, FALSE)->GetBackClr() == m_crWindowColour)
GetDefaultCell(TRUE, FALSE)->SetBackClr(::GetSysColor(COLOR_WINDOW));
if (GetDefaultCell(FALSE, TRUE)->GetTextClr() == m_crWindowText) // Still using system colours
GetDefaultCell(FALSE, TRUE)->SetTextClr(::GetSysColor(COLOR_WINDOWTEXT)); // set to new system colour
if (GetDefaultCell(FALSE, TRUE)->GetBackClr() == m_crWindowColour)
GetDefaultCell(FALSE, TRUE)->SetBackClr(::GetSysColor(COLOR_WINDOW));
if (GetDefaultCell(TRUE, TRUE)->GetTextClr() == m_crWindowText) // Still using system colours
GetDefaultCell(TRUE, TRUE)->SetTextClr(::GetSysColor(COLOR_WINDOWTEXT)); // set to new system colour
if (GetDefaultCell(TRUE, TRUE)->GetBackClr() == m_crWindowColour)
GetDefaultCell(TRUE, TRUE)->SetBackClr(::GetSysColor(COLOR_WINDOW));
if (GetGridBkColor() == m_crShadow)
SetGridBkColor(::GetSysColor(COLOR_3DSHADOW));
m_crWindowText = ::GetSysColor(COLOR_WINDOWTEXT);
m_crWindowColour = ::GetSysColor(COLOR_WINDOW);
m_cr3DFace = ::GetSysColor(COLOR_3DFACE);
m_crShadow = ::GetSysColor(COLOR_3DSHADOW);
}
#endif
#ifndef _WIN32_WCE_NO_CURSOR
// If we are drag-selecting cells, or drag and dropping, stop now
void CGridCtrl::OnCaptureChanged(CWnd *pWnd)
{
if (pWnd->GetSafeHwnd() == GetSafeHwnd())
return;
// kill timer if active
if (m_nTimerID != 0)
{
KillTimer(m_nTimerID);
m_nTimerID = 0;
}
#ifndef GRIDCONTROL_NO_DRAGDROP
// Kill drag and drop if active
if (m_MouseMode == MOUSE_DRAGGING)
m_MouseMode = MOUSE_NOTHING;
#endif
}
#endif
#if (_MFC_VER >= 0x0421) || (_WIN32_WCE >= 210)
// If system settings change, then redo colours
void CGridCtrl::OnSettingChange(UINT uFlags, LPCTSTR lpszSection)
{
CWnd::OnSettingChange(uFlags, lpszSection);
if (GetDefaultCell(FALSE, FALSE)->GetTextClr() == m_crWindowText) // Still using system colours
GetDefaultCell(FALSE, FALSE)->SetTextClr(::GetSysColor(COLOR_WINDOWTEXT)); // set to new system colour
if (GetDefaultCell(FALSE, FALSE)->GetBackClr() == m_crWindowColour)
GetDefaultCell(FALSE, FALSE)->SetBackClr(::GetSysColor(COLOR_WINDOW));
if (GetDefaultCell(TRUE, FALSE)->GetTextClr() == m_crWindowText) // Still using system colours
GetDefaultCell(TRUE, FALSE)->SetTextClr(::GetSysColor(COLOR_WINDOWTEXT)); // set to new system colour
if (GetDefaultCell(TRUE, FALSE)->GetBackClr() == m_crWindowColour)
GetDefaultCell(TRUE, FALSE)->SetBackClr(::GetSysColor(COLOR_WINDOW));
if (GetDefaultCell(FALSE, TRUE)->GetTextClr() == m_crWindowText) // Still using system colours
GetDefaultCell(FALSE, TRUE)->SetTextClr(::GetSysColor(COLOR_WINDOWTEXT)); // set to new system colour
if (GetDefaultCell(FALSE, TRUE)->GetBackClr() == m_crWindowColour)
GetDefaultCell(FALSE, TRUE)->SetBackClr(::GetSysColor(COLOR_WINDOW));
if (GetDefaultCell(TRUE, TRUE)->GetTextClr() == m_crWindowText) // Still using system colours
GetDefaultCell(TRUE, TRUE)->SetTextClr(::GetSysColor(COLOR_WINDOWTEXT)); // set to new system colour
if (GetDefaultCell(TRUE, TRUE)->GetBackClr() == m_crWindowColour)
GetDefaultCell(TRUE, TRUE)->SetBackClr(::GetSysColor(COLOR_WINDOW));
if (GetGridBkColor() == m_crShadow)
SetGridBkColor(::GetSysColor(COLOR_3DSHADOW));
m_crWindowText = ::GetSysColor(COLOR_WINDOWTEXT);
m_crWindowColour = ::GetSysColor(COLOR_WINDOW);
m_cr3DFace = ::GetSysColor(COLOR_3DFACE);
m_crShadow = ::GetSysColor(COLOR_3DSHADOW);
m_nRowsPerWheelNotch = GetMouseScrollLines(); // Get the number of lines
}
#endif
// For drag-selection. Scrolls hidden cells into view
// TODO: decrease timer interval over time to speed up selection over time
void CGridCtrl::OnTimer(/*UINT*/UINT_PTR nIDEvent)
{
ASSERT(nIDEvent == WM_LBUTTONDOWN);
if (nIDEvent != WM_LBUTTONDOWN)
return;
CPoint pt, origPt;
#ifdef _WIN32_WCE
if (m_MouseMode == MOUSE_NOTHING)
return;
origPt = GetMessagePos();
#else
if (!GetCursorPos(&origPt))
return;
#endif
ScreenToClient(&origPt);
CRect rect;
GetClientRect(rect);
// LUC
CCellID cell = GetCellFromPt(origPt);
CCellID idTopLeft = GetTopleftNonFixedCell();
if(idTopLeft.row == GetFixedRowCount(TRUE))
{
m_bExcludeFreezedRowsFromSelection = FALSE;
}
else if((cell.row > idTopLeft.row) || (m_LeftClickDownCell.row >= idTopLeft.row))
{
m_bExcludeFreezedRowsFromSelection = TRUE;
}
if(idTopLeft.col == GetFixedColumnCount(TRUE))
{
m_bExcludeFreezedColsFromSelection = FALSE;
}
else if((cell.col > idTopLeft.col) || (m_LeftClickDownCell.col >= idTopLeft.col))
{
m_bExcludeFreezedColsFromSelection = TRUE;
}
int nFixedRowHeight = GetFixedRowHeight(m_bExcludeFreezedRowsFromSelection);
int nFixedColWidth = GetFixedColumnWidth(m_bExcludeFreezedColsFromSelection);
pt = origPt;
if (pt.y > rect.bottom)
{
//SendMessage(WM_VSCROLL, SB_LINEDOWN, 0);
SendMessage(WM_KEYDOWN, VK_DOWN, 0);
if (pt.x < rect.left)
pt.x = rect.left;
if (pt.x > rect.right)
pt.x = rect.right;
pt.y = rect.bottom;
OnSelecting(GetCellFromPt(pt));
}
else if (pt.y < nFixedRowHeight)
{
//SendMessage(WM_VSCROLL, SB_LINEUP, 0);
SendMessage(WM_KEYDOWN, VK_UP, 0);
if (pt.x < rect.left)
pt.x = rect.left;
if (pt.x > rect.right)
pt.x = rect.right;
pt.y = nFixedRowHeight + 1;
OnSelecting(GetCellFromPt(pt));
}
pt = origPt;
if (pt.x > rect.right)
{
// SendMessage(WM_HSCROLL, SB_LINERIGHT, 0);
SendMessage(WM_KEYDOWN, VK_RIGHT, 0);
if (pt.y < rect.top)
pt.y = rect.top;
if (pt.y > rect.bottom)
pt.y = rect.bottom;
pt.x = rect.right;
OnSelecting(GetCellFromPt(pt));
}
else if (pt.x < nFixedColWidth)
{
//SendMessage(WM_HSCROLL, SB_LINELEFT, 0);
SendMessage(WM_KEYDOWN, VK_LEFT, 0);
if (pt.y < rect.top)
pt.y = rect.top;
if (pt.y > rect.bottom)
pt.y = rect.bottom;
pt.x = nFixedColWidth + 1;
OnSelecting(GetCellFromPt(pt));
}
}
// move about with keyboard
void CGridCtrl::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags)
{
if (!IsValid(m_idCurrentCell))
{
CWnd::OnKeyDown(nChar, nRepCnt, nFlags);
return;
}
CCellID next = m_idCurrentCell;
BOOL bChangeLine = FALSE;
BOOL bHorzScrollAction = FALSE;
BOOL bVertScrollAction = FALSE;
if (IsCTRLpressed())
{
switch (nChar)
{
case 'A':
OnEditSelectAll();
break;
case 'k': // This is ctrl+ on french keyboard, may need to be better processed for other locales
AutoSizeColumns();
Invalidate();
break;
#ifndef GRIDCONTROL_NO_CLIPBOARD
case 'X':
OnEditCut();
break;
case VK_INSERT:
case 'C':
OnEditCopy();
break;
case 'V':
OnEditPaste();
break;
#endif
}
}
#ifndef GRIDCONTROL_NO_CLIPBOARD
if (IsSHIFTpressed() &&(nChar == VK_INSERT))
OnEditPaste();
#endif
BOOL bFoundVisible;
int iOrig;
if (nChar == VK_DELETE)
{
CutSelectedText();
}
else if (nChar == VK_DOWN)
{
// don't let user go to a hidden row
bFoundVisible = FALSE;
iOrig = next.row;
next.row++;
while( next.row < GetRowCount())
{
if( GetRowHeight( next.row) > 0)
{
bFoundVisible = TRUE;
break;
}
next.row++;
}
if( !bFoundVisible)
next.row = iOrig;
}
else if (nChar == VK_UP)
{
// don't let user go to a hidden row
bFoundVisible = FALSE;
iOrig = next.row;
next.row--;
// LUC
//while( next.row >= m_nFixedRows)
while( next.row >= GetFixedRowCount(m_bExcludeFreezedRowsFromSelection))
{
if( GetRowHeight( next.row) > 0)
{
bFoundVisible = TRUE;
break;
}
next.row--;
}
if( !bFoundVisible)
next.row = iOrig;
}
else if (nChar == VK_RIGHT || (nChar == VK_TAB && !IsSHIFTpressed()) )
{
if( (nChar == VK_TAB) && m_QuitFocusOnTab )
{
CDialog* p= (CDialog*) GetParent();
if(p) p->NextDlgCtrl();
return;
}
// don't let user go to a hidden column
bFoundVisible = FALSE;
iOrig = next.col;
next.col++;
if (nChar == VK_TAB)
{
// If we're at the end of a row, go down a row till we find a non-hidden row
if (next.col == (GetColumnCount()) && next.row < (GetRowCount() - 1))
{
next.row++;
while( next.row < GetRowCount())
{
if( GetRowHeight(next.row) > 0)
{
bFoundVisible = TRUE;
break;
}
next.row++;
}
// LUC
//next.col = m_nFixedCols; // Place focus on first non-fixed column
next.col = GetFixedColumnCount(m_bExcludeFreezedColsFromSelection); // Place focus on first non-fixed column
bChangeLine = TRUE;
}
else
CWnd::OnKeyDown(nChar, nRepCnt, nFlags);
}
// We're on a non-hidden row, so look across for the next non-hidden column
while( next.col < GetColumnCount())
{
if( GetColumnWidth( next.col) > 0)
{
bFoundVisible = TRUE;
break;
}
next.col++;
}
// If nothing worked then don't bother
if( !bFoundVisible)
next.col = iOrig;
}
else if (nChar == VK_LEFT || (nChar == VK_TAB && IsSHIFTpressed()) )
{
// don't let user go to a hidden column
bFoundVisible = FALSE;
iOrig = next.col;
next.col--;
if (nChar == VK_TAB)
{
// LUC
if (next.col == (GetFixedColumnCount(m_bExcludeFreezedColsFromSelection)-1)
&& next.row > GetFixedRowCount(m_bExcludeFreezedRowsFromSelection))
{
next.row--;
while( next.row > GetFixedRowCount(m_bExcludeFreezedRowsFromSelection))
{
if( GetRowHeight(next.row) > 0)
{
bFoundVisible = TRUE;
break;
}
next.row--;
}
next.col = GetColumnCount() - 1;
bChangeLine = TRUE;
}
else
CWnd::OnKeyDown(nChar, nRepCnt, nFlags);
}
// LUC
//while( next.col >= m_nFixedCols)
while(next.col >= GetFixedColumnCount(m_bExcludeFreezedColsFromSelection))
{
if( GetColumnWidth( next.col) > 0)
{
bFoundVisible = TRUE;
break;
}
next.col--;
}
if( !bFoundVisible)
next.col = iOrig;
}
else if (nChar == VK_NEXT)
{
CCellID idOldTopLeft = GetTopleftNonFixedCell();
SendMessage(WM_VSCROLL, SB_PAGEDOWN, 0);
bVertScrollAction = TRUE;
CCellID idNewTopLeft = GetTopleftNonFixedCell();
int increment = idNewTopLeft.row - idOldTopLeft.row;
if (increment)
{
next.row += increment;
if (next.row >(GetRowCount() - 1))
next.row = GetRowCount() - 1;
}
else
next.row = GetRowCount() - 1;
}
else if (nChar == VK_PRIOR)
{
CCellID idOldTopLeft = GetTopleftNonFixedCell();
SendMessage(WM_VSCROLL, SB_PAGEUP, 0);
bVertScrollAction = TRUE;
CCellID idNewTopLeft = GetTopleftNonFixedCell();
int increment = idNewTopLeft.row - idOldTopLeft.row;
if (increment)
{
next.row += increment;
// LUC
if (next.row < GetFixedRowCount(m_bExcludeFreezedRowsFromSelection))
next.row = GetFixedRowCount(m_bExcludeFreezedColsFromSelection);
}
else
// LUC
next.row = GetFixedRowCount(m_bExcludeFreezedRowsFromSelection);
}
else if (nChar == VK_HOME)
{
// Home and Ctrl-Home work more like Excel
// and don't let user go to a hidden cell
if (IsCTRLpressed())
{
SendMessage(WM_VSCROLL, SB_TOP, 0);
SendMessage(WM_HSCROLL, SB_LEFT, 0);
bVertScrollAction = TRUE;
bHorzScrollAction = TRUE;
//next.row = m_nFixedRows;
//next.col = m_nFixedCols;
// LUC
next.row = GetFixedRowCount(m_bExcludeFreezedRowsFromSelection);
next.col = GetFixedColumnCount(m_bExcludeFreezedColsFromSelection);
}
else
{
SendMessage(WM_HSCROLL, SB_LEFT, 0);
bHorzScrollAction = TRUE;
// LUC
//next.col = m_nFixedCols;
next.col = GetFixedColumnCount(m_bExcludeFreezedColsFromSelection);
}
// adjust column to avoid hidden columns and rows
while( next.col < GetColumnCount() - 1)
{
if( GetColumnWidth( next.col) > 0)
break;
next.col++;
}
while( next.row < GetRowCount() - 1)
{
if( GetRowHeight( next.row) > 0)
break;
next.row++;
}
}
else if (nChar == VK_END)
{
// End and Ctrl-End work more like Excel
// and don't let user go to a hidden cell
if (IsCTRLpressed())
{
SendMessage(WM_VSCROLL, SB_BOTTOM, 0);
SendMessage(WM_HSCROLL, SB_RIGHT, 0);
bHorzScrollAction = TRUE;
bVertScrollAction = TRUE;
next.row = GetRowCount() - 1;
next.col = GetColumnCount() - 1;
}
else
{
SendMessage(WM_HSCROLL, SB_RIGHT, 0);
bHorzScrollAction = TRUE;
next.col = GetColumnCount() - 1;
}
// adjust column to avoid hidden columns and rows
//while( next.col > m_nFixedCols + 1)
while(next.col > GetFixedColumnCount(m_bExcludeFreezedColsFromSelection) + 1)
{
if( GetColumnWidth( next.col) > 0)
break;
next.col--;
}
//while( next.row > m_nFixedRows + 1)
while( next.row > GetFixedRowCount(m_bExcludeFreezedRowsFromSelection) + 1)
{
if( GetRowHeight( next.row) > 0)
break;
next.row--;
}
}
else if (nChar == VK_F2)
{
OnEditCell(m_idCurrentCell.row, m_idCurrentCell.col, CPoint( -1, -1), VK_LBUTTON);
}
else
{
CWnd::OnKeyDown(nChar, nRepCnt, nFlags);
return;
}
if (next != m_idCurrentCell)
{
// LUC
int nNextRow = next.row;
int nNextCol = next.col;
int nCurRow = m_idCurrentCell.row;
int nCurCol = m_idCurrentCell.col;
BOOL bMerged = GetTopLeftMergedCell(nCurRow, nCurCol, rectNull);
switch(nChar)
{
case VK_LEFT:
{
if(GetTopLeftMergedCell(nNextRow, nNextCol, rectNull))
{
next.col = nNextCol;
if(bMerged)
{
// if already in a merged cell make sure the next column is not the leftmost column of the merged cell
next.col--;
}
}
break;
}
case VK_RIGHT:
{
if(GetBottomRightMergedCell(nNextRow, nNextCol, rectNull))
{
next.col = nNextCol;
if(bMerged)
{
// if already in a merged cell make sure the next column is not the rightmost column of the merged cell
next.col++;
}
}
break;
}
case VK_UP:
{
if(GetTopLeftMergedCell(nNextRow, nNextCol, rectNull))
{
next.row = nNextRow;
if(bMerged)
{
// if already in a merged cell make sure the next row is not the topmost row of the merged cell
next.row--;
}
}
break;
}
case VK_DOWN:
{
if(GetBottomRightMergedCell(nNextRow, nNextCol, rectNull))
{
next.row = nNextRow;
if(bMerged)
{
// if already in a merged cell make sure the next row is not the bottommost row of the merged cell
next.row++;
}
}
break;
}
}
// While moving with the Cursorkeys the current ROW/CELL will get selected
// OR Selection will get expanded when SHIFT is pressed
// Cut n paste from OnLButtonDown - Franco Bez
// Added check for NULL mouse mode - Chris Maunder.
if (m_MouseMode == MOUSE_NOTHING)
{
m_PrevSelectedCellMap.RemoveAll();
m_MouseMode = m_bListMode? MOUSE_SELECT_ROW : MOUSE_SELECT_CELLS;
if (!IsSHIFTpressed() || nChar == VK_TAB)
m_SelectionStartCell = next;
// Notify parent that selection is changing - Arthur Westerman/Scot Brennecke
SendMessageToParent(next.row, next.col, GVN_SELCHANGING);
OnSelecting(next);
SendMessageToParent(next.row, next.col, GVN_SELCHANGED);
m_MouseMode = MOUSE_NOTHING;
}
SetFocusCell(next);
if (!IsCellVisible(next))
{
switch (nChar)
{
case VK_RIGHT:
SendMessage(WM_HSCROLL, SB_LINERIGHT, 0);
bHorzScrollAction = TRUE;
break;
case VK_LEFT:
SendMessage(WM_HSCROLL, SB_LINELEFT, 0);
bHorzScrollAction = TRUE;
break;
case VK_DOWN:
SendMessage(WM_VSCROLL, SB_LINEDOWN, 0);
bVertScrollAction = TRUE;
break;
case VK_UP:
SendMessage(WM_VSCROLL, SB_LINEUP, 0);
bVertScrollAction = TRUE;
break;
case VK_TAB:
if (IsSHIFTpressed())
{
if (bChangeLine)
{
SendMessage(WM_VSCROLL, SB_LINEUP, 0);
bVertScrollAction = TRUE;
SetScrollPos32(SB_HORZ, m_nHScrollMax);
break;
}
else
{
SendMessage(WM_HSCROLL, SB_LINELEFT, 0);
bHorzScrollAction = TRUE;
}
}
else
{
if (bChangeLine)
{
SendMessage(WM_VSCROLL, SB_LINEDOWN, 0);
bVertScrollAction = TRUE;
SetScrollPos32(SB_HORZ, 0);
break;
}
else
{
SendMessage(WM_HSCROLL, SB_LINERIGHT, 0);
bHorzScrollAction = TRUE;
}
}
break;
}
EnsureVisible(next); // Make sure cell is visible
Invalidate();
}
EnsureVisible(next); // Make sure cell is visible
if (bHorzScrollAction)
SendMessage(WM_HSCROLL, SB_ENDSCROLL, 0);
if (bVertScrollAction)
SendMessage(WM_VSCROLL, SB_ENDSCROLL, 0);
}
}
void CGridCtrl::OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags)
{
CWnd::OnKeyUp(nChar, nRepCnt, nFlags);
}
void CGridCtrl::OnSysKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags)
{
#ifdef GRIDCONTROL_USE_TITLETIPS
m_TitleTip.Hide(); // hide any titletips
#endif
CWnd::OnSysKeyDown(nChar, nRepCnt, nFlags);
}
// Instant editing of cells when keys are pressed
void CGridCtrl::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags)
{
// EFW - BUG FIX
if (!IsCTRLpressed() && m_MouseMode == MOUSE_NOTHING && nChar != VK_ESCAPE)
{
if (!m_bHandleTabKey || (m_bHandleTabKey && nChar != VK_TAB))
OnEditCell(m_idCurrentCell.row, m_idCurrentCell.col, CPoint( -1, -1), nChar);
}
CWnd::OnChar(nChar, nRepCnt, nFlags);
}
// Added by KiteFly
LRESULT CGridCtrl::OnImeChar(WPARAM wCharCode, LPARAM)
{
// EFW - BUG FIX
if (!IsCTRLpressed() && m_MouseMode == MOUSE_NOTHING && wCharCode != VK_ESCAPE)
OnEditCell(m_idCurrentCell.row, m_idCurrentCell.col, CPoint( -1, -1), (UINT)wCharCode);
return 0;
}
// Callback from any CInPlaceEdits that ended. This just calls OnEndEditCell,
// refreshes the edited cell and moves onto next cell if the return character
// from the edit says we should.
void CGridCtrl::OnEndInPlaceEdit(NMHDR* pNMHDR, LRESULT* pResult)
{
GV_DISPINFO *pgvDispInfo = (GV_DISPINFO *)pNMHDR;
GV_ITEM *pgvItem = &pgvDispInfo->item;
// In case OnEndInPlaceEdit called as window is being destroyed
if (!IsWindow(GetSafeHwnd()))
return;
OnEndEditCell(pgvItem->row, pgvItem->col, pgvItem->strText);
//InvalidateCellRect(CCellID(pgvItem->row, pgvItem->col));
switch (pgvItem->lParam)
{
case VK_TAB:
case VK_DOWN:
case VK_UP:
case VK_RIGHT:
case VK_LEFT:
case VK_NEXT:
case VK_PRIOR:
case VK_HOME:
case VK_END:
OnKeyDown((UINT)pgvItem->lParam, 0, 0);
OnEditCell(m_idCurrentCell.row, m_idCurrentCell.col, CPoint( -1, -1), (UINT)pgvItem->lParam);
}
*pResult = 0;
}
// Handle horz scrollbar notifications
void CGridCtrl::OnHScroll(UINT nSBCode, UINT /*nPos*/, CScrollBar* /*pScrollBar*/)
{
EndEditing();
#ifndef GRIDCONTROL_NO_TITLETIPS
m_TitleTip.Hide(); // hide any titletips
#endif
int scrollPos = GetScrollPos32(SB_HORZ);
CCellID idTopLeft = GetTopleftNonFixedCell();
CRect rect;
GetClientRect(rect);
// LUC
BOOL bIncludeFreezedCells = FALSE;
switch (nSBCode)
{
case SB_LINERIGHT:
if (scrollPos < m_nHScrollMax)
{
// may have contiguous hidden columns. Blow by them
while (idTopLeft.col < (GetColumnCount()-1)
&& GetColumnWidth( idTopLeft.col) < 1 )
{
idTopLeft.col++;
}
int xScroll = GetColumnWidth(idTopLeft.col);
// LUC
//SetScrollPos32(SB_HORZ, scrollPos + xScroll);
SetScrollPos32(SB_HORZ, (scrollPos + m_nScrollX) + xScroll);
m_nScrollX = 0;
if (GetScrollPos32(SB_HORZ) == scrollPos)
break; // didn't work
// LUC
rect.left = GetFixedColumnWidth(bIncludeFreezedCells);
//rect.left = GetFixedColumnWidth() + xScroll;
//ScrollWindow(-xScroll, 0, rect);
//rect.left = rect.right - xScroll;
InvalidateRect(rect);
}
break;
case SB_LINELEFT:
if((idTopLeft.col == (m_nFixedCols + m_nFreezedCols)) && m_nScrollX < 0)
{
SetScrollPos32(SB_HORZ, 0);
m_nScrollX = 0;
rect.left = GetFixedColumnWidth(TRUE);
InvalidateRect(rect);
}
else if (scrollPos > 0 && idTopLeft.col > GetFixedColumnCount(TRUE))
{
int iColToUse = idTopLeft.col-1;
// may have contiguous hidden columns. Blow by them
while( iColToUse > GetFixedColumnCount(TRUE)
&& GetColumnWidth( iColToUse) < 1 )
{
iColToUse--;
}
int xScroll = GetColumnWidth(iColToUse);
int nPos = max(0, (scrollPos ) - xScroll);
// LUC
if(m_nScrollX < 0)
{
nPos += m_nScrollX;
scrollPos = nPos;
idTopLeft.row = -1;
idTopLeft.col = m_nFixedCols + m_nFreezedCols; //m_nFixedCols;
int nRight = 0;
int nHorzScroll = scrollPos;
while (nRight < nHorzScroll && idTopLeft.col < (GetColumnCount()-1))
{
m_nScrollX = nRight - nHorzScroll;
nRight += GetColumnWidth(idTopLeft.col++);
}
if(nRight == nHorzScroll)
{
m_nScrollX = 0;
}
if((m_nBarState & GVL_XLSTYLE_SCROLL) == GVL_XLSTYLE_SCROLL)
{
m_nScrollX = 0;
}
if(m_nScrollX < 0)
{
idTopLeft.col--;
}
xScroll = GetColumnWidth(idTopLeft.col);
SetScrollPos32(SB_HORZ, (scrollPos + m_nScrollX) + xScroll);
m_nScrollX = 0;
}
else
{
SetScrollPos32(SB_HORZ, __max(0, scrollPos - xScroll));
}
// LUC
rect.left = GetFixedColumnWidth(bIncludeFreezedCells);
//ScrollWindow(xScroll, 0, rect);
//rect.right = rect.left + xScroll;
InvalidateRect(rect);
}
break;
case SB_PAGERIGHT:
if (scrollPos < m_nHScrollMax)
{
// LUC
rect.left = GetFixedColumnWidth(TRUE);
int offset = rect.Width();
int pos = min(m_nHScrollMax, scrollPos + offset);
SetScrollPos32(SB_HORZ, pos);
// LUC
rect.left = GetFixedColumnWidth(bIncludeFreezedCells);
InvalidateRect(rect);
}
break;
case SB_PAGELEFT:
if (scrollPos > 0)
{
// LUC
rect.left = GetFixedColumnWidth(TRUE);
int offset = -rect.Width();
int pos = __max(0, scrollPos + offset);
SetScrollPos32(SB_HORZ, pos);
// LUC
rect.left = GetFixedColumnWidth(bIncludeFreezedCells);
InvalidateRect(rect);
}
break;
case SB_THUMBPOSITION:
case SB_THUMBTRACK:
{
SetScrollPos32(SB_HORZ, GetScrollPos32(SB_HORZ, TRUE));
m_idTopLeftCell.row = -1;
CCellID idNewTopLeft = GetTopleftNonFixedCell();
// LUC: if smooth scrolling is enabled, then always execute the following
if (idNewTopLeft != idTopLeft || !(m_nBarState & GVL_XLSTYLE_SCROLL))
{
// LUC
rect.left = GetFixedColumnWidth(bIncludeFreezedCells);
InvalidateRect(rect);
}
}
break;
case SB_LEFT:
if (scrollPos > 0)
{
SetScrollPos32(SB_HORZ, 0);
Invalidate();
}
break;
case SB_RIGHT:
if (scrollPos < m_nHScrollMax)
{
SetScrollPos32(SB_HORZ, m_nHScrollMax);
Invalidate();
}
break;
default:
break;
}
}
// Handle vert scrollbar notifications
void CGridCtrl::OnVScroll(UINT nSBCode, UINT /*nPos*/, CScrollBar* /*pScrollBar*/)
{
EndEditing();
#ifndef GRIDCONTROL_NO_TITLETIPS
m_TitleTip.Hide(); // hide any titletips
#endif
// Get the scroll position ourselves to ensure we get a 32 bit value
int scrollPos = GetScrollPos32(SB_VERT);
CCellID idTopLeft = GetTopleftNonFixedCell();
CRect rect;
GetClientRect(rect);
// LUC
BOOL bIncludeFreezedCells = FALSE;
switch (nSBCode)
{
case SB_LINEDOWN:
if (scrollPos < m_nVScrollMax)
{
// may have contiguous hidden rows. Blow by them
while( idTopLeft.row < (GetRowCount()-1)
&& GetRowHeight( idTopLeft.row) < 1 )
{
idTopLeft.row++;
}
int yScroll = GetRowHeight(idTopLeft.row);
SetScrollPos32(SB_VERT, scrollPos + yScroll);
if (GetScrollPos32(SB_VERT) == scrollPos)
break; // didn't work
// LUC
rect.top = GetFixedRowHeight(bIncludeFreezedCells);
//rect.top = GetFixedRowHeight() + yScroll;
//ScrollWindow(0, -yScroll, rect);
//rect.top = rect.bottom - yScroll;
InvalidateRect(rect);
}
break;
case SB_LINEUP:
if (scrollPos > 0 && idTopLeft.row > GetFixedRowCount(TRUE))
{
int iRowToUse = idTopLeft.row-1;
// may have contiguous hidden rows. Blow by them
while( iRowToUse > GetFixedRowCount(TRUE)
&& GetRowHeight( iRowToUse) < 1 )
{
iRowToUse--;
}
int yScroll = GetRowHeight( iRowToUse);
SetScrollPos32(SB_VERT, __max(0, scrollPos - yScroll));
// LUC
rect.top = GetFixedRowHeight(bIncludeFreezedCells);
//ScrollWindow(0, yScroll, rect);
//rect.bottom = rect.top + yScroll;
InvalidateRect(rect);
}
break;
case SB_PAGEDOWN:
if (scrollPos < m_nVScrollMax)
{
// LUC
rect.top = GetFixedRowHeight(TRUE);
scrollPos = min(m_nVScrollMax, scrollPos + rect.Height());
SetScrollPos32(SB_VERT, scrollPos);
// LUC
rect.top = GetFixedRowHeight(bIncludeFreezedCells);
InvalidateRect(rect);
}
break;
case SB_PAGEUP:
if (scrollPos > 0)
{
// LUC
rect.top = GetFixedRowHeight(TRUE);
int offset = -rect.Height();
int pos = __max(0, scrollPos + offset);
SetScrollPos32(SB_VERT, pos);
// LUC
rect.top = GetFixedRowHeight(bIncludeFreezedCells);
InvalidateRect(rect);
}
break;
case SB_THUMBPOSITION:
case SB_THUMBTRACK:
{
SetScrollPos32(SB_VERT, GetScrollPos32(SB_VERT, TRUE));
m_idTopLeftCell.row = -1;
CCellID idNewTopLeft = GetTopleftNonFixedCell();
if (idNewTopLeft != idTopLeft)
{
// LUC
rect.top = GetFixedRowHeight(bIncludeFreezedCells);
InvalidateRect(rect);
}
}
break;
case SB_TOP:
if (scrollPos > 0)
{
SetScrollPos32(SB_VERT, 0);
Invalidate();
}
break;
case SB_BOTTOM:
if (scrollPos < m_nVScrollMax)
{
SetScrollPos32(SB_VERT, m_nVScrollMax);
Invalidate();
}
default:
break;
}
}
/////////////////////////////////////////////////////////////////////////////
// CGridCtrl implementation functions
void CGridCtrl::OnDraw(CDC* pDC)
{
if (!m_bAllowDraw)
return;
CRect clipRect;
if (pDC->GetClipBox(&clipRect) == ERROR)
return;
EraseBkgnd(pDC); // OnEraseBkgnd does nothing, so erase bkgnd here.
// This necessary since we may be using a Memory DC.
#ifdef _DEBUG
LARGE_INTEGER iStartCount;
QueryPerformanceCounter(&iStartCount);
#endif
CRect rc;
GetClientRect(rc);
CRect rect;
int row, col;
CGridCellBase* pCell;
// LUC
int nFixedRowHeight = GetFixedRowHeight(TRUE);
int nFixedColWidth = GetFixedColumnWidth(TRUE);
CCellID idTopLeft = GetTopleftNonFixedCell();
int minVisibleRow = idTopLeft.row,
minVisibleCol = idTopLeft.col;
CRect VisRect;
CCellRange VisCellRange = GetVisibleNonFixedCellRange(VisRect);
int maxVisibleRow = VisCellRange.GetMaxRow(),
maxVisibleCol = VisCellRange.GetMaxCol();
if (GetVirtualMode())
SendCacheHintToParent(VisCellRange);
// LUC
CRect excludeRect(0, 0, 0, 0);
// draw top-left cells 0..m_nFixedRows-1, 0..m_nFixedCols-1
rect.bottom = -1;
int nFixedRows = m_nFixedRows + m_nFreezedRows;
int nFixedCols = m_nFixedCols + m_nFreezedCols;
for (row = 0; row < nFixedRows; row++)
{
if (GetRowHeight(row) <= 0) continue;
rect.top = rect.bottom+1;
rect.bottom = rect.top + GetRowHeight(row)-1;
rect.right = -1;
for (col = 0; col < nFixedCols; col++)
{
if (GetColumnWidth(col) <= 0) continue;
rect.left = rect.right+1;
rect.right = rect.left + GetColumnWidth(col)-1;
pCell = GetCell(row, col);
if (pCell)
{
pCell->SetCoords(row,col);
pCell->Draw(pDC, row, col, rect, FALSE);
// LUC
excludeRect.left = min(excludeRect.left, rect.left);
excludeRect.top = min(excludeRect.top, rect.top);
excludeRect.right = max(excludeRect.right, rect.right);
excludeRect.bottom = max(excludeRect.bottom, rect.bottom);
}
}
}
// LUC
excludeRect.right++;
excludeRect.bottom++;
pDC->ExcludeClipRect(excludeRect);
excludeRect.SetRectEmpty();
// draw fixed column cells: m_nFixedRows..n, 0..m_nFixedCols-1
rect.bottom = nFixedRowHeight-1;
for (row = minVisibleRow; row <= maxVisibleRow; row++)
{
if (GetRowHeight(row) <= 0) continue;
rect.top = rect.bottom+1;
rect.bottom = rect.top + GetRowHeight(row)-1;
if(CheckClipRect(row, col))
{
// rect.bottom = bottom pixel of previous row
if (rect.top > clipRect.bottom)
break; // Gone past cliprect
if (rect.bottom < clipRect.top)
continue; // Reached cliprect yet?
}
rect.right = -1;
for (col = 0; col < nFixedCols; col++)
{
if (GetColumnWidth(col) <= 0) continue;
rect.left = rect.right+1;
rect.right = rect.left + GetColumnWidth(col)-1;
if(CheckClipRect(row, col))
{
if (rect.left > clipRect.right)
break; // gone past cliprect
if (rect.right < clipRect.left)
continue; // Reached cliprect yet?
}
pCell = GetCell(row, col);
if (pCell)
{
pCell->SetCoords(row,col);
pCell->Draw(pDC, row, col, rect, FALSE);
// LUC
excludeRect.left = min(excludeRect.left, rect.left);
excludeRect.top = min(excludeRect.top, rect.top);
excludeRect.right = max(excludeRect.right, rect.right);
excludeRect.bottom = max(excludeRect.bottom, rect.bottom);
}
}
}
// LUC
excludeRect.right++;
excludeRect.bottom++;
pDC->ExcludeClipRect(excludeRect);
excludeRect.SetRectEmpty();
// draw fixed row cells 0..m_nFixedRows, m_nFixedCols..n
rect.bottom = -1;
for (row = 0; row < nFixedRows; row++)
{
if (GetRowHeight(row) <= 0) continue;
rect.top = rect.bottom+1;
rect.bottom = rect.top + GetRowHeight(row)-1;
if(CheckClipRect(row, col))
{
// rect.bottom = bottom pixel of previous row
if (rect.top > clipRect.bottom)
break; // Gone past cliprect
if (rect.bottom < clipRect.top)
continue; // Reached cliprect yet?
}
rect.right = nFixedColWidth-1;
// LUC
rect.right += m_nScrollX;
for (col = minVisibleCol; col <= maxVisibleCol; col++)
{
if (GetColumnWidth(col) <= 0) continue;
rect.left = rect.right+1;
rect.right = rect.left + GetColumnWidth(col)-1;
if(CheckClipRect(row, col))
{
if (rect.left > clipRect.right)
break; // gone past cliprect
if (rect.right < clipRect.left)
continue; // Reached cliprect yet?
}
pCell = GetCell(row, col);
if (pCell)
{
pCell->SetCoords(row,col);
// LUC
if(!m_bShowHorzNonGridArea && (col == m_nCols - 1))
{
pCell->Draw(pDC, row, col, rect, FALSE);
if(rect.right < rc.right)
{
CRect rcFill(rect.right + 1, rect.top, rc.right - 2, rect.bottom);
CGridCell cell;
cell.SetGrid(this);
DWORD dwState = pCell->GetState() & ~(GVIS_SELECTED | GVIS_FOCUSED);
cell.SetState(dwState);
int nSortColumn = GetSortColumn();
m_nSortColumn = -1;
cell.Draw(pDC, row, col, rcFill, TRUE);
if(!(pCell->GetState() & GVIS_FIXED))
{
rcFill.right++;
rcFill.bottom++;
pDC->Draw3dRect(rcFill, GetTextBkColor(), m_crGridLineColour);
}
m_nSortColumn = nSortColumn;
}
}
else
{
pCell->Draw(pDC, row, col, rect, FALSE);
// LUC
excludeRect.left = min(excludeRect.left, rect.left);
excludeRect.top = min(excludeRect.top, rect.top);
excludeRect.right = max(excludeRect.right, rect.right);
excludeRect.bottom = max(excludeRect.bottom, rect.bottom);
}
}
}
}
// LUC
excludeRect.right++;
excludeRect.bottom++;
pDC->ExcludeClipRect(excludeRect);
excludeRect.SetRectEmpty();
// draw rest of non-fixed cells
rect.bottom = nFixedRowHeight-1;
for (row = minVisibleRow; row <= maxVisibleRow; row++)
{
if (GetRowHeight(row) <= 0) continue;
rect.top = rect.bottom+1;
rect.bottom = rect.top + GetRowHeight(row)-1;
if(CheckClipRect(row, col))
{
// rect.bottom = bottom pixel of previous row
if (rect.top > clipRect.bottom)
break; // Gone past cliprect
if (rect.bottom < clipRect.top)
continue; // Reached cliprect yet?
}
rect.right = nFixedColWidth-1;
// LUC
rect.right += m_nScrollX;
for (col = minVisibleCol; col <= maxVisibleCol; col++)
{
if (GetColumnWidth(col) <= 0) continue;
rect.left = rect.right+1;
rect.right = rect.left + GetColumnWidth(col)-1;
if(CheckClipRect(row, col))
{
if (rect.left > clipRect.right)
break; // gone past cliprect
if (rect.right < clipRect.left)
continue; // Reached cliprect yet?
}
pCell = GetCell(row, col);
// TRACE(_T("Cell %d,%d type: %s\n"), row, col, pCell->GetRuntimeClass()->m_lpszClassName);
if (pCell)
{
pCell->SetCoords(row,col);
// LUC
if(!m_bShowHorzNonGridArea && (col == m_nCols - 1))
{
pCell->Draw(pDC, row, col, rect, FALSE);
if(rect.right < rc.right)
{
CRect rcFill(rect.right + 1, rect.top, rc.right - 1, rect.bottom);
pDC->FillSolidRect(rcFill, GetTextBkColor());
rcFill.right++;
rcFill.bottom++;
pDC->Draw3dRect(rcFill, GetTextBkColor(), m_crGridLineColour);
}
}
else
{
pCell->Draw(pDC, row, col, rect, FALSE);
}
}
}
}
// Remove the clipping restrictions
pDC->SelectClipRgn(NULL, RGN_COPY);
CPen pen;
pen.CreatePen(PS_SOLID, 0, m_crGridLineColour);
pDC->SelectObject(&pen);
// draw vertical lines (drawn at ends of cells)
if (m_nGridLines == GVL_BOTH || m_nGridLines == GVL_VERT)
{
// LUC
//int x = nFixedColWidth;
int x = GetFixedColumnWidth();
// LUC
//for (col = minVisibleCol; col < maxVisibleCol; col++)
int nFixedRowHeightExcludingFreezedRows = GetFixedRowHeight();
for (col = m_nFixedCols; col <= maxVisibleCol; col++)
{
if (GetColumnWidth(col) <= 0) continue;
if(col == (m_nFixedCols + m_nFreezedCols))
{
col = minVisibleCol;
}
x += GetColumnWidth(col);
// LUC
int nScrollX = ((col >= m_nFixedCols + m_nFreezedCols) ? m_nScrollX : 0);
//pDC->MoveTo(x-1, nFixedRowHeight);
pDC->MoveTo(x + nScrollX - 1, nFixedRowHeightExcludingFreezedRows);
pDC->LineTo(x + nScrollX - 1, VisRect.bottom);
}
}
// draw horizontal lines (drawn at bottom of each cell)
if (m_nGridLines == GVL_BOTH || m_nGridLines == GVL_HORZ)
{
// LUC
//int y = nFixedRowHeight;
int y = GetFixedRowHeight();
//for (row = minVisibleRow; row <= maxVisibleRow; row++)
int nFixedColumnWidthExcludingFreezedColumns = GetFixedColumnWidth();
for (row = m_nFixedRows; row <= maxVisibleRow; row++)
{
if (GetRowHeight(row) <= 0) continue;
if(row == (m_nFixedRows + m_nFreezedRows))
{
row = minVisibleRow;
}
y += GetRowHeight(row);
//pDC->MoveTo(nFixedColWidth, y-1);
pDC->MoveTo(nFixedColumnWidthExcludingFreezedColumns, y-1);
// LUC
pDC->LineTo(VisRect.right, y-1);
}
}
// LUC : Merge Cell
m_bDrawingMergedCell = TRUE;
INT_PTR size = m_arMergedCells.GetSize();
if(size > 0)
{
CRect rcMergeRect;
for(INT_PTR i = 0; i < size; i++)
{
m_nCurrentMergeID = i;
if(GetMergedCellRect(m_arMergedCells[i], rcMergeRect))
{
rcMergeRect.right--;
rcMergeRect.bottom--;
pCell = GetCell(m_arMergedCells[i].GetMinRow(), m_arMergedCells[i].GetMinCol());
if (pCell)
{
pCell->Draw(pDC, m_arMergedCells[i].GetMinRow(), m_arMergedCells[i].GetMinCol(), rcMergeRect, TRUE);
}
}
}
}
m_bDrawingMergedCell = FALSE;
m_nCurrentMergeID = -1;
// LUC:
// Finally we can draw a line for the Freezed Frame
////
pen.DeleteObject();
pen.CreatePen(PS_SOLID, 0, RGB(0, 0, 255));
pDC->SelectObject(&pen);
if(m_nFreezedRows > 0)
{
pDC->MoveTo(0, nFixedRowHeight);
pDC->LineTo(rc.right, nFixedRowHeight);
}
if(m_nFreezedCols > 0)
{
pDC->MoveTo(nFixedColWidth, 0);
pDC->LineTo(nFixedColWidth, rc.bottom);
}
pDC->SelectStockObject(NULL_PEN);
// Let parent know it can discard it's data if it needs to.
if (GetVirtualMode())
SendCacheHintToParent(CCellRange(-1,-1,-1,-1));
#ifdef _DEBUG
LARGE_INTEGER iEndCount;
QueryPerformanceCounter(&iEndCount);
TRACE1("Draw counter ticks: %d\n", iEndCount.LowPart-iStartCount.LowPart);
#endif
}
////////////////////////////////////////////////////////////////////////////////////////
// CGridCtrl Cell selection stuff
// Is a given cell designation valid (ie within the bounds of our number
// of columns/rows)?
BOOL CGridCtrl::IsValid(int nRow, int nCol) const
{
return (nRow >= 0 && nRow < m_nRows && nCol >= 0 && nCol < m_nCols);
}
BOOL CGridCtrl::IsValid(const CCellID& cell) const
{
return IsValid(cell.row, cell.col);
}
// Is a given cell range valid (ie within the bounds of our number
// of columns/rows)?
BOOL CGridCtrl::IsValid(const CCellRange& range) const
{
return (range.GetMinRow() >= 0 && range.GetMinCol() >= 0 &&
range.GetMaxRow() >= 0 && range.GetMaxCol() >= 0 &&
range.GetMaxRow() < m_nRows && range.GetMaxCol() < m_nCols &&
range.GetMinRow() <= range.GetMaxRow() && range.GetMinCol() <= range.GetMaxCol());
}
// Enables/Disables redraw for certain operations like columns auto-sizing etc,
// but not for user caused things such as selection changes.
void CGridCtrl::SetRedraw(BOOL bAllowDraw, BOOL bResetScrollBars /* = FALSE */)
{
// TRACE(_T("%s: Setting redraw to %s\n"),
// GetRuntimeClass()->m_lpszClassName, bAllowDraw? _T("TRUE") : _T("FALSE"));
if (bAllowDraw && !m_bAllowDraw)
{
m_bAllowDraw = TRUE;
Refresh();
}
m_bAllowDraw = bAllowDraw;
if (bResetScrollBars)
ResetScrollBars();
}
// Forces a redraw of a cell immediately (using a direct DC construction,
// or the supplied dc)
BOOL CGridCtrl::RedrawCell(const CCellID& cell, CDC* pDC /* = NULL */)
{
return RedrawCell(cell.row, cell.col, pDC);
}
BOOL CGridCtrl::RedrawCell(int nRow, int nCol, CDC* pDC /* = NULL */)
{
BOOL bResult = TRUE;
BOOL bMustReleaseDC = FALSE;
if (!m_bAllowDraw || !IsCellVisible(nRow, nCol))
return FALSE;
CRect rect;
if (!GetCellRect(nRow, nCol, rect))
return FALSE;
// LUC
BOOL bMergeCell = GetTopLeftMergedCell(nRow, nCol, rect);
BOOL bSmoothScroll = ((m_nBarState & GVL_XLSTYLE_SCROLL) != GVL_XLSTYLE_SCROLL);
if(bSmoothScroll)
{
rect.InflateRect(1, 1);
InvalidateRect(rect, TRUE);
return bResult;
}
if (!pDC)
{
pDC = GetDC();
if (pDC)
bMustReleaseDC = TRUE;
}
if (pDC)
{
// Redraw cells directly
if (nRow < m_nFixedRows || nCol < m_nFixedCols)
{
CGridCellBase* pCell = GetCell(nRow, nCol);
if (pCell)
bResult = pCell->Draw(pDC, nRow, nCol, rect, TRUE);
}
else
{
CGridCellBase* pCell = GetCell(nRow, nCol);
if (pCell)
bResult = pCell->Draw(pDC, nRow, nCol, rect, TRUE);
// Since we have erased the background, we will need to redraw the gridlines
CPen pen;
pen.CreatePen(PS_SOLID, 0, m_crGridLineColour);
CPen* pOldPen = (CPen*) pDC->SelectObject(&pen);
if (m_nGridLines == GVL_BOTH || m_nGridLines == GVL_HORZ)
{
pDC->MoveTo(rect.left, rect.bottom);
pDC->LineTo(rect.right + 1, rect.bottom);
}
if (m_nGridLines == GVL_BOTH || m_nGridLines == GVL_VERT)
{
pDC->MoveTo(rect.right, rect.top);
pDC->LineTo(rect.right, rect.bottom + 1);
}
pDC->SelectObject(pOldPen);
}
} else
InvalidateRect(rect, TRUE); // Could not get a DC - invalidate it anyway
// and hope that OnPaint manages to get one
if (bMustReleaseDC)
ReleaseDC(pDC);
// LUC : if this is a merge cell then we have to make sure there are no drawing problem becoz of direct redraw of cell
// specially becoz of the freeze pane lines
if(bMergeCell)
{
InvalidateRect(rect, TRUE);
}
return bResult;
}
// redraw a complete row
BOOL CGridCtrl::RedrawRow(int row)
{
BOOL bResult = TRUE;
CDC* pDC = GetDC();
for (int col = 0; col < GetColumnCount(); col++)
bResult = RedrawCell(row, col, pDC) && bResult;
if (pDC)
ReleaseDC(pDC);
return bResult;
}
// redraw a complete column
BOOL CGridCtrl::RedrawColumn(int col)
{
BOOL bResult = TRUE;
CDC* pDC = GetDC();
for (int row = 0; row < GetRowCount(); row++)
bResult = RedrawCell(row, col, pDC) && bResult;
if (pDC)
ReleaseDC(pDC);
return bResult;
}
// Sets the currently selected cell, returning the previous current cell
CCellID CGridCtrl::SetFocusCell(int nRow, int nCol)
{
return SetFocusCell(CCellID(nRow, nCol));
}
CCellID CGridCtrl::SetFocusCell(CCellID cell)
{
if (cell == m_idCurrentCell)
return m_idCurrentCell;
CCellID idPrev = m_idCurrentCell;
// EFW - Bug Fix - Force focus to be in a non-fixed cell
if (cell.row != -1 && cell.row < GetFixedRowCount(m_bExcludeFreezedRowsFromSelection))
cell.row = GetFixedRowCount(m_bExcludeFreezedRowsFromSelection);
if (cell.col != -1 && cell.col < GetFixedColumnCount(m_bExcludeFreezedColsFromSelection))
cell.col = GetFixedColumnCount(m_bExcludeFreezedColsFromSelection);
m_idCurrentCell = cell;
if (IsValid(idPrev))
{
SetItemState(idPrev.row, idPrev.col,
GetItemState(idPrev.row, idPrev.col) & ~GVIS_FOCUSED);
RedrawCell(idPrev); // comment to reduce flicker
if (GetTrackFocusCell() && idPrev.col != m_idCurrentCell.col)
for (int row = 0; row < m_nFixedRows; row++)
RedrawCell(row, idPrev.col);
if (GetTrackFocusCell() && idPrev.row != m_idCurrentCell.row)
for (int col = 0; col < m_nFixedCols; col++)
RedrawCell(idPrev.row, col);
}
if (IsValid(m_idCurrentCell))
{
SetItemState(m_idCurrentCell.row, m_idCurrentCell.col,
GetItemState(m_idCurrentCell.row, m_idCurrentCell.col) | GVIS_FOCUSED);
RedrawCell(m_idCurrentCell); // comment to reduce flicker
if (GetTrackFocusCell() && idPrev.col != m_idCurrentCell.col)
for (int row = 0; row < m_nFixedRows; row++)
RedrawCell(row, m_idCurrentCell.col);
if (GetTrackFocusCell() && idPrev.row != m_idCurrentCell.row)
for (int col = 0; col < m_nFixedCols; col++)
RedrawCell(m_idCurrentCell.row, col);
// EFW - New addition. If in list mode, make sure the selected
// row highlight follows the cursor.
// Removed by C Maunder 27 May
//if (m_bListMode)
//{
// m_PrevSelectedCellMap.RemoveAll();
// m_MouseMode = MOUSE_SELECT_ROW;
// OnSelecting(m_idCurrentCell);
// Leave this off so that you can still drag the highlight around
// without selecting rows.
// m_MouseMode = MOUSE_NOTHING;
//}
}
return idPrev;
}
// Sets the range of currently selected cells
void CGridCtrl::SetSelectedRange(const CCellRange& Range,
BOOL bForceRepaint /* = FALSE */, BOOL bSelectCells/*=TRUE*/)
{
SetSelectedRange(Range.GetMinRow(), Range.GetMinCol(),
Range.GetMaxRow(), Range.GetMaxCol(),
bForceRepaint, bSelectCells);
}
void CGridCtrl::SetSelectedRange(int nMinRow, int nMinCol, int nMaxRow, int nMaxCol,
BOOL bForceRepaint /* = FALSE */, BOOL bSelectCells/*=TRUE*/)
{
if (!m_bEnableSelection)
return;
CWaitCursor wait; // Thomas Haase
CDC* pDC = NULL;
if (bForceRepaint)
pDC = GetDC();
// Only redraw visible cells
CCellRange VisCellRange, FixedVisCellRange;
if (IsWindow(GetSafeHwnd()))
{
VisCellRange = GetVisibleNonFixedCellRange(NULL, 0);
FixedVisCellRange = GetVisibleFixedCellRange();
}
// EFW - Bug fix - Don't allow selection of fixed rows
// LUC
int Left= (m_AllowSelectRowInFixedCol ? 0 : GetFixedColumnCount(m_bExcludeFreezedColsFromSelection));
if(nMinRow >= 0 && nMinRow < GetFixedRowCount(m_bExcludeFreezedRowsFromSelection))
nMinRow = GetFixedRowCount(m_bExcludeFreezedRowsFromSelection);
if(nMaxRow >= 0 && nMaxRow < GetFixedRowCount(m_bExcludeFreezedRowsFromSelection))
nMaxRow = GetFixedRowCount(m_bExcludeFreezedRowsFromSelection);
if(nMinCol >= 0 && nMinCol < Left)
nMinCol = GetFixedColumnCount(m_bExcludeFreezedColsFromSelection);
if(nMaxCol >= 0 && nMaxCol < Left)
nMaxCol = GetFixedColumnCount(m_bExcludeFreezedColsFromSelection);
// LUC
for(int row = nMinRow; row <= nMaxRow; row++)
{
for(int col = nMinCol; col <= nMaxCol; col++)
{
int nMergedMinRow = row, nMergedMinCol = col;
if(GetTopLeftMergedCell(nMergedMinRow, nMergedMinCol, rectNull))
{
if(nMinRow > nMergedMinRow)
{
nMinRow = nMergedMinRow;
}
if(nMinCol > nMergedMinCol)
{
nMinCol = nMergedMinCol;
}
}
int nMergedMaxRow = row, nMergedMaxCol = col;
if(GetBottomRightMergedCell(nMergedMaxRow, nMergedMaxCol, rectNull))
{
if(nMaxRow < nMergedMaxRow)
{
nMaxRow = nMergedMaxRow;
}
if(nMaxCol < nMergedMaxCol)
{
nMaxCol = nMergedMaxCol;
}
// let's try to make it a bit efficient
row = nMergedMaxRow;
col = nMergedMaxCol;
}
}
}
////
// If we are selecting cells, then first clear out the list of currently selected cells, then
if (bSelectCells)
{
POSITION pos;
// Unselect all previously selected cells
for (pos = m_SelectedCellMap.GetStartPosition(); pos != NULL; )
{
DWORD key;
CCellID cell;
m_SelectedCellMap.GetNextAssoc(pos, key, (CCellID&)cell);
// Reset the selection flag on the cell
if (IsValid(cell))
{
// This will remove the cell from the m_SelectedCellMap map
SetItemState(cell.row, cell.col,
GetItemState(cell.row, cell.col) & ~GVIS_SELECTED);
// If this is to be reselected, continue on past the redraw
if (nMinRow <= cell.row && cell.row <= nMaxRow &&
nMinCol <= cell.col && cell.col <= nMaxCol)
continue;
if ( (VisCellRange.IsValid() && VisCellRange.InRange( cell )) || FixedVisCellRange.InRange( cell ) )
{
if (bForceRepaint && pDC) // Redraw NOW
RedrawCell(cell.row, cell.col, pDC);
else
InvalidateCellRect(cell); // Redraw at leisure
}
}
else
{
m_SelectedCellMap.RemoveKey( key); // if it's not valid, get rid of it!
}
}
// if we are selecting cells, and there are previous selected cells to be retained
// (eg Ctrl is being held down) then copy them to the newly created list, and mark
// all these cells as selected
// Note that if we are list mode, single row selection, then we won't be adding
// the previous cells. Only the current row of cells will be added (see below)
if (!GetSingleRowSelection() &&
nMinRow >= 0 && nMinCol >= 0 && nMaxRow >= 0 && nMaxCol >= 0)
{
for (pos = m_PrevSelectedCellMap.GetStartPosition(); pos != NULL; /* nothing */)
{
DWORD key;
CCellID cell;
m_PrevSelectedCellMap.GetNextAssoc(pos, key, (CCellID&)cell);
if (!IsValid(cell))
continue;
int nState = GetItemState(cell.row, cell.col);
// Set state as Selected. This will add the cell to m_SelectedCellMap
SetItemState(cell.row, cell.col, nState | GVIS_SELECTED);
if (( VisCellRange.IsValid() && VisCellRange.InRange( cell )) || FixedVisCellRange.InRange( cell ) )
{
// Redraw (immediately or at leisure)
if (bForceRepaint && pDC)
RedrawCell(cell.row, cell.col, pDC);
else
InvalidateCellRect(cell);
}
}
}
}
// Now select/deselect all cells in the cell range specified. If selecting, and the cell
// has already been marked as selected (above) then ignore it. If we are deselecting and
// the cell isn't selected, then ignore
if (nMinRow >= 0 && nMinCol >= 0 && nMaxRow >= 0 && nMaxCol >= 0 &&
nMaxRow < m_nRows && nMaxCol < m_nCols &&
nMinRow <= nMaxRow && nMinCol <= nMaxCol)
{
for (int row = nMinRow; row <= nMaxRow; row++)
for (int col = nMinCol; col <= nMaxCol; col++)
{
BOOL bCellSelected = IsCellSelected(row, col);
if (bSelectCells == bCellSelected)
continue; // Already selected or deselected - ignore
// Set the selected state. This will add/remove the cell to m_SelectedCellMap
if (bSelectCells)
SetItemState(row, col, GetItemState(row, col) | GVIS_SELECTED);
else
SetItemState(row, col, GetItemState(row, col) & ~GVIS_SELECTED);
if ( (VisCellRange.IsValid() && VisCellRange.InRange(row, col)) || FixedVisCellRange.InRange(row, col) )
{
// Redraw (immediately or at leisure)
if (bForceRepaint && pDC)
RedrawCell(row, col, pDC);
else
InvalidateCellRect(row, col);
}
}
}
// TRACE(_T("%d cells selected.\n"), m_SelectedCellMap.GetCount());
if (pDC != NULL)
ReleaseDC(pDC);
}
// selects all cells
void CGridCtrl::SelectAllCells()
{
if (!m_bEnableSelection)
return;
SetSelectedRange(m_nFixedRows, m_nFixedCols, GetRowCount()-1, GetColumnCount()-1);
}
// selects columns
void CGridCtrl::SelectColumns(CCellID currentCell,
BOOL bForceRedraw /*=FALSE*/, BOOL bSelectCells /*=TRUE*/)
{
if (!m_bEnableSelection)
return;
//if (currentCell.col == m_idCurrentCell.col) return;
if (currentCell.col < m_nFixedCols)
return;
if (!IsValid(currentCell))
return;
if (GetSingleColSelection())
SetSelectedRange(GetFixedRowCount(), currentCell.col,
GetRowCount()-1, currentCell.col,
bForceRedraw, bSelectCells);
else
SetSelectedRange(GetFixedRowCount(),
min(m_SelectionStartCell.col, currentCell.col),
GetRowCount()-1,
max(m_SelectionStartCell.col, currentCell.col),
bForceRedraw, bSelectCells);
}
// selects rows
void CGridCtrl::SelectRows(CCellID currentCell,
BOOL bForceRedraw /*=FALSE*/, BOOL bSelectCells /*=TRUE*/)
{
if (!m_bEnableSelection)
return;
//if (currentCell.row; == m_idCurrentCell.row) return;
if (currentCell.row < m_nFixedRows)
return;
if (!IsValid(currentCell))
return;
int Left = ( m_AllowSelectRowInFixedCol ? 0 : GetFixedColumnCount());
if (GetSingleRowSelection())
SetSelectedRange(currentCell.row, Left ,
currentCell.row, GetColumnCount()-1,
bForceRedraw, bSelectCells);
else
SetSelectedRange(min(m_SelectionStartCell.row, currentCell.row),
Left,
__max(m_SelectionStartCell.row, currentCell.row),
GetColumnCount()-1,
bForceRedraw, bSelectCells);
}
// selects cells
void CGridCtrl::SelectCells(CCellID currentCell,
BOOL bForceRedraw /*=FALSE*/, BOOL bSelectCells /*=TRUE*/)
{
if (!m_bEnableSelection)
return;
int row = currentCell.row;
int col = currentCell.col;
// LUC
if (row < GetFixedRowCount(m_bExcludeFreezedRowsFromSelection) || col < GetFixedColumnCount(m_bExcludeFreezedColsFromSelection))
if (row < GetFixedRowCount() || col < GetFixedColumnCount())
{
return;
}
if (!IsValid(currentCell))
return;
// Prevent unnecessary redraws
//if (currentCell == m_LeftClickDownCell) return;
//else if (currentCell == m_idCurrentCell) return;
SetSelectedRange(min(m_SelectionStartCell.row, row),
min(m_SelectionStartCell.col, col),
__max(m_SelectionStartCell.row, row),
__max(m_SelectionStartCell.col, col),
bForceRedraw, bSelectCells);
}
// Called when mouse/keyboard selection is a-happening.
void CGridCtrl::OnSelecting(const CCellID& currentCell)
{
if (!m_bEnableSelection)
return;
switch (m_MouseMode)
{
case MOUSE_SELECT_ALL:
SelectAllCells();
break;
case MOUSE_SELECT_COL:
SelectColumns(currentCell, FALSE);
break;
case MOUSE_SELECT_ROW:
SelectRows(currentCell, FALSE);
break;
case MOUSE_SELECT_CELLS:
SelectCells(currentCell, FALSE);
break;
}
// EFW - Bug fix [REMOVED CJM: this will cause infinite loop in list mode]
// SetFocusCell(max(currentCell.row, m_nFixedRows), max(currentCell.col, m_nFixedCols));
}
void CGridCtrl::ValidateAndModifyCellContents(int nRow, int nCol, LPCTSTR strText)
{
if (!IsCellEditable(nRow, nCol))
return;
if (SendMessageToParent(nRow, nCol, GVN_BEGINLABELEDIT) >= 0)
{
CString strCurrentText = GetItemText(nRow, nCol);
if (strCurrentText != strText)
{
SetItemText(nRow, nCol, strText);
if (ValidateEdit(nRow, nCol, strText) &&
SendMessageToParent(nRow, nCol, GVN_ENDLABELEDIT) >= 0)
{
SetModified(TRUE, nRow, nCol);
RedrawCell(nRow, nCol);
}
else
{
SetItemText(nRow, nCol, strCurrentText);
}
}
}
}
void CGridCtrl::ClearCells(CCellRange Selection)
{
for (int row = Selection.GetMinRow(); row <= Selection.GetMaxRow(); row++)
{
for (int col = Selection.GetMinCol(); col <= Selection.GetMaxCol(); col++)
{
// don't clear hidden cells
if ( (*m_pArrayRowHeights)[row] > 0 && m_arColWidths[col] > 0 )
{
ValidateAndModifyCellContents(row, col, _T(""));
}
}
}
Refresh();
}
#ifndef GRIDCONTROL_NO_CLIPBOARD
////////////////////////////////////////////////////////////////////////////////////////
// Clipboard functions
// Deletes the contents from the selected cells
void CGridCtrl::CutSelectedText()
{
if (!IsEditable())
return;
for (POSITION pos = m_SelectedCellMap.GetStartPosition(); pos != NULL; )
{
DWORD key;
CCellID cell;
m_SelectedCellMap.GetNextAssoc(pos, key, (CCellID&)cell);
ValidateAndModifyCellContents(cell.row, cell.col, _T(""));
}
}
// Copies text from the selected cells to the clipboard
COleDataSource* CGridCtrl::CopyTextFromGrid()
{
USES_CONVERSION;
CCellRange Selection = GetSelectedCellRange();
if (!IsValid(Selection))
return NULL;
if (GetVirtualMode())
SendCacheHintToParent(Selection);
// Write to shared file (REMEBER: CF_TEXT is ANSI, not UNICODE, so we need to convert)
CSharedFile sf(GMEM_MOVEABLE | GMEM_DDESHARE | GMEM_ZEROINIT);
// Get a tab delimited string to copy to cache
CString str;
CGridCellBase *pCell;
for (int row = Selection.GetMinRow(); row <= Selection.GetMaxRow(); row++)
{
// don't copy hidden cells
if( (*m_pArrayRowHeights)[row] <= 0 )
continue;
str.Empty();
for (int col = Selection.GetMinCol(); col <= Selection.GetMaxCol(); col++)
{
// don't copy hidden cells
if( m_arColWidths[col] <= 0 )
continue;
pCell = GetCell(row, col);
if (pCell &&(pCell->GetState() & GVIS_SELECTED))
{
// if (!pCell->GetText())
// str += _T(" ");
// else
str += pCell->GetText();
}
if (col != Selection.GetMaxCol())
str += _T("\t");
}
if (row != Selection.GetMaxRow())
str += _T("\r\n");
sf.Write(T2A(str.GetBuffer(1)), str.GetLength());
str.ReleaseBuffer();
}
char c = '\0';
sf.Write(&c, 1);
if (GetVirtualMode())
SendCacheHintToParent(CCellRange(-1,-1,-1,-1));
DWORD dwLen = (DWORD) sf.GetLength();
HGLOBAL hMem = sf.Detach();
if (!hMem)
return NULL;
hMem = ::GlobalReAlloc(hMem, dwLen, GMEM_MOVEABLE | GMEM_DDESHARE | GMEM_ZEROINIT);
if (!hMem)
return NULL;
// Cache data
COleDataSource* pSource = new COleDataSource();
pSource->CacheGlobalData(CF_TEXT, hMem);
return pSource;
}
// Pastes text from the clipboard to the selected cells
BOOL CGridCtrl::PasteTextToGrid(CCellID cell, COleDataObject* pDataObject,
BOOL bSelectPastedCells /*=TRUE*/)
{
if (!IsValid(cell) || !IsCellEditable(cell) || !pDataObject->IsDataAvailable(CF_TEXT))
return FALSE;
// Get the text from the COleDataObject
HGLOBAL hmem = pDataObject->GetGlobalData(CF_TEXT);
CMemFile sf((BYTE*) ::GlobalLock(hmem), (UINT)::GlobalSize(hmem));
// CF_TEXT is ANSI text, so we need to allocate a char* buffer
// to hold this.
LPTSTR szBuffer = new TCHAR[::GlobalSize(hmem)];
if (!szBuffer)
return FALSE;
sf.Read(szBuffer, (UINT)::GlobalSize(hmem));
::GlobalUnlock(hmem);
// Now store in generic TCHAR form so we no longer have to deal with
// ANSI/UNICODE problems
CString strText = szBuffer;
delete szBuffer;
// Parse text data and set in cells...
strText.LockBuffer();
CString strLine = strText;
int nLine = 0;
// Find the end of the first line
CCellRange PasteRange(cell.row, cell.col,-1,-1);
int nIndex;
do
{
int nColumn = 0;
nIndex = strLine.Find(_T("\n"));
// Store the remaining chars after the newline
CString strNext = (nIndex < 0)? _T("") : strLine.Mid(nIndex + 1);
// Remove all chars after the newline
if (nIndex >= 0)
strLine = strLine.Left(nIndex);
int nLineIndex = strLine.FindOneOf(_T("\t,"));
CString strCellText = (nLineIndex >= 0)? strLine.Left(nLineIndex) : strLine;
// skip hidden rows
int iRowVis = cell.row + nLine;
while( iRowVis < GetRowCount())
{
if( GetRowHeight( iRowVis) > 0)
break;
nLine++;
iRowVis++;
}
while (!strLine.IsEmpty())
{
// skip hidden columns
int iColVis = cell.col + nColumn;
while( iColVis < GetColumnCount())
{
if( GetColumnWidth( iColVis) > 0)
break;
nColumn++;
iColVis++;
}
CCellID TargetCell(iRowVis, iColVis);
if (IsValid(TargetCell))
{
strCellText.TrimLeft();
strCellText.TrimRight();
ValidateAndModifyCellContents(TargetCell.row, TargetCell.col, strCellText);
// Make sure cell is not selected to avoid data loss
SetItemState(TargetCell.row, TargetCell.col,
GetItemState(TargetCell.row, TargetCell.col) & ~GVIS_SELECTED);
if (iRowVis > PasteRange.GetMaxRow()) PasteRange.SetMaxRow(iRowVis);
if (iColVis > PasteRange.GetMaxCol()) PasteRange.SetMaxCol(iColVis);
}
strLine = (nLineIndex >= 0)? strLine.Mid(nLineIndex + 1) : _T("");
nLineIndex = strLine.FindOneOf(_T("\t,"));
strCellText = (nLineIndex >= 0)? strLine.Left(nLineIndex) : strLine;
nColumn++;
}
strLine = strNext;
nLine++;
} while (nIndex >= 0);
strText.UnlockBuffer();
if (bSelectPastedCells)
SetSelectedRange(PasteRange, TRUE);
else
{
ResetSelectedRange();
Refresh();
}
return TRUE;
}
#endif
#ifndef GRIDCONTROL_NO_DRAGDROP
// Start drag n drop
void CGridCtrl::OnBeginDrag()
{
COleDataSource* pSource = NULL;
if (!m_bAllowDragAndDrop && m_CurCol==-1)
return;
if (m_CurCol>=0) pSource = new COleDataSource();
if (!pSource && m_bAllowDragAndDrop) pSource = CopyTextFromGrid();
if (pSource)
{
SendMessageToParent(GetSelectedCellRange().GetTopLeft().row,
GetSelectedCellRange().GetTopLeft().col,
GVN_BEGINDRAG);
m_MouseMode = MOUSE_DRAGGING;
m_bLMouseButtonDown = FALSE;
DROPEFFECT dropEffect = pSource->DoDragDrop(DROPEFFECT_COPY | DROPEFFECT_MOVE);
if (dropEffect & DROPEFFECT_MOVE)
CutSelectedText();
if (pSource)
delete pSource; // Did not pass source to clipboard, so must delete
}
}
// Handle drag over grid
DROPEFFECT CGridCtrl::OnDragOver(COleDataObject* pDataObject, DWORD dwKeyState,
CPoint point)
{
// Find which cell we are over and drop-highlight it
CCellID cell = GetCellFromPt(point, FALSE);
bool Valid;
// Any text data available for us?
if(m_CurCol==-1)
{
if(m_bDragRowMode)
{
Valid = cell.col>=GetFixedColumnCount() && cell.row>=GetFixedRowCount();
}
else
{
if (!m_bAllowDragAndDrop || !IsEditable() || !pDataObject->IsDataAvailable(CF_TEXT))
return DROPEFFECT_NONE;
Valid = IsValid(cell)!=0;
}
}
else
{
Valid = cell.col>=GetFixedColumnCount() && cell.row<GetFixedRowCount() ;
}
// If not valid, set the previously drop-highlighted cell as no longer drop-highlighted
if (!Valid)
{
OnDragLeave();
m_LastDragOverCell = CCellID(-1,-1);
return DROPEFFECT_NONE;
}
if(m_CurCol==-1)
{
if (!m_bDragRowMode && !IsCellEditable(cell))
return DROPEFFECT_NONE;
}
// Have we moved over a different cell than last time?
if (cell != m_LastDragOverCell)
{
// Set the previously drop-highlighted cell as no longer drop-highlighted
if (IsValid(m_LastDragOverCell))
{
UINT nState = GetItemState(m_LastDragOverCell.row, m_LastDragOverCell.col);
SetItemState(m_LastDragOverCell.row, m_LastDragOverCell.col,
nState & ~GVIS_DROPHILITED);
RedrawCell(m_LastDragOverCell);
}
m_LastDragOverCell = cell;
// Set the new cell as drop-highlighted
if (IsValid(m_LastDragOverCell))
{
UINT nState = GetItemState(m_LastDragOverCell.row, m_LastDragOverCell.col);
SetItemState(m_LastDragOverCell.row, m_LastDragOverCell.col,
nState | GVIS_DROPHILITED);
RedrawCell(m_LastDragOverCell);
}
}
// Return an appropraite value of DROPEFFECT so mouse cursor is set properly
if (dwKeyState & MK_CONTROL)
return DROPEFFECT_COPY;
else
return DROPEFFECT_MOVE;
}
// Something has just been dragged onto the grid
DROPEFFECT CGridCtrl::OnDragEnter(COleDataObject* pDataObject, DWORD dwKeyState,
CPoint point)
{
// Any text data available for us?
m_LastDragOverCell = GetCellFromPt(point, m_CurCol>=0);
bool Valid;
if(m_CurCol==-1)
{
if (!m_bAllowDragAndDrop || !pDataObject->IsDataAvailable(CF_TEXT))
return DROPEFFECT_NONE;
// Find which cell we are over and drop-highlight it
if (!IsValid(m_LastDragOverCell))
return DROPEFFECT_NONE;
if (!IsCellEditable(m_LastDragOverCell))
return DROPEFFECT_NONE;
Valid = IsValid(m_LastDragOverCell)!=0;
}
else
{
Valid = m_LastDragOverCell.row>=0 && m_LastDragOverCell.row<GetFixedRowCount() && m_LastDragOverCell.col>=GetFixedColumnCount();
}
if (Valid)
{
UINT nState = GetItemState(m_LastDragOverCell.row, m_LastDragOverCell.col);
SetItemState(m_LastDragOverCell.row, m_LastDragOverCell.col,
nState | GVIS_DROPHILITED);
RedrawCell(m_LastDragOverCell);
}
// Return an appropraite value of DROPEFFECT so mouse cursor is set properly
if (dwKeyState & MK_CONTROL)
return DROPEFFECT_COPY;
else
return DROPEFFECT_MOVE;
}
// Something has just been dragged away from the grid
void CGridCtrl::OnDragLeave()
{
// Set the previously drop-highlighted cell as no longer drop-highlighted
if (IsValid(m_LastDragOverCell))
{
UINT nState = GetItemState(m_LastDragOverCell.row, m_LastDragOverCell.col);
SetItemState(m_LastDragOverCell.row, m_LastDragOverCell.col,
nState & ~GVIS_DROPHILITED);
RedrawCell(m_LastDragOverCell);
}
}
// Something has just been dropped onto the grid
BOOL CGridCtrl::OnDrop(COleDataObject* pDataObject, DROPEFFECT /*dropEffect*/,
CPoint /* point */)
{
m_MouseMode = MOUSE_NOTHING;
if(m_CurCol ==-1)
{
if (!m_bAllowDragAndDrop || (!IsCellEditable(m_LastDragOverCell) && !m_bDragRowMode))
return FALSE;
}
OnDragLeave();
if (m_CurCol>=0)
{
if(m_LastDragOverCell.col == m_CurCol || m_LastDragOverCell.row >= GetFixedRowCount())
return FALSE;
else
{
int New = m_arColOrder[m_CurCol];
m_arColOrder.erase(m_arColOrder.begin()+m_CurCol);
m_arColOrder.insert(m_arColOrder.begin()+m_LastDragOverCell.col, New);
m_CurCol=-1;
Invalidate();
return TRUE;
}
}
else
{
if(m_bDragRowMode)
{
Reorder(m_CurRow,m_LastDragOverCell.row);
Invalidate();
return TRUE;
}
else
return PasteTextToGrid(m_LastDragOverCell, pDataObject, FALSE);
}
}
#endif
#ifndef GRIDCONTROL_NO_CLIPBOARD
void CGridCtrl::OnEditCut()
{
if (!IsEditable())
return;
COleDataSource* pSource = CopyTextFromGrid();
if (!pSource)
return;
pSource->SetClipboard();
CutSelectedText();
}
void CGridCtrl::OnEditCopy()
{
COleDataSource* pSource = CopyTextFromGrid();
if (!pSource)
return;
pSource->SetClipboard();
}
void CGridCtrl::OnEditPaste()
{
if (!IsEditable())
return;
CCellRange cellRange = GetSelectedCellRange();
// Get the top-left selected cell, or the Focus cell, or the topleft (non-fixed) cell
CCellID cell;
if (cellRange.IsValid())
{
cell.row = cellRange.GetMinRow();
cell.col = cellRange.GetMinCol();
}
else
{
cell = GetFocusCell();
if (!IsValid(cell))
cell = GetTopleftNonFixedCell();
if (!IsValid(cell))
return;
}
// If a cell is being edited, then call it's edit window paste function.
if ( IsItemEditing(cell.row, cell.col) )
{
CGridCellBase* pCell = GetCell(cell.row, cell.col);
ASSERT(pCell);
if (!pCell) return;
CWnd* pEditWnd = pCell->GetEditWnd();
if ( pEditWnd && pEditWnd->IsKindOf(RUNTIME_CLASS(CEdit)) )
{
((CEdit*)pEditWnd)->Paste();
return;
}
}
// Attach a COleDataObject to the clipboard and paste the data to the grid
COleDataObject obj;
if (obj.AttachClipboard())
PasteTextToGrid(cell, &obj);
}
#endif
void CGridCtrl::OnEditSelectAll()
{
SendMessageToParent(m_LeftClickDownCell.row, m_LeftClickDownCell.col, GVN_SELCHANGING);
SelectAllCells();
SendMessageToParent(m_idCurrentCell.row, m_idCurrentCell.col, GVN_SELCHANGED);
}
#ifndef GRIDCONTROL_NO_CLIPBOARD
void CGridCtrl::OnUpdateEditCopy(CCmdUI* pCmdUI)
{
pCmdUI->Enable(GetSelectedCount() > 0); // - Thomas Haase
//CCellRange Selection = GetSelectedCellRange();
//pCmdUI->Enable(Selection.Count() && IsValid(Selection));
}
void CGridCtrl::OnUpdateEditCut(CCmdUI* pCmdUI)
{
pCmdUI->Enable(IsEditable() && GetSelectedCount() > 0); // - Thomas Haase
//CCellRange Selection = GetSelectedCellRange();
//pCmdUI->Enable(IsEditable() && Selection.Count() && IsValid(Selection));
}
void CGridCtrl::OnUpdateEditPaste(CCmdUI* pCmdUI)
{
CCellID cell = GetFocusCell();
BOOL bCanPaste = IsValid(cell) && IsCellEditable(cell) &&
::IsClipboardFormatAvailable(CF_TEXT);
pCmdUI->Enable(bCanPaste);
}
#endif
void CGridCtrl::OnUpdateEditSelectAll(CCmdUI* pCmdUI)
{
pCmdUI->Enable(m_bEnableSelection);
}
////////////////////////////////////////////////////////////////////////////////////////
// hittest-like functions
// TRUE if the mouse is over a row resize area
BOOL CGridCtrl::MouseOverRowResizeArea(CPoint& point)
{
if (point.x >= GetFixedColumnWidth())
return FALSE;
CCellID idCurrentCell = GetCellFromPt(point);
CPoint start;
if (!GetCellOrigin(idCurrentCell, &start))
return FALSE;
int endy = start.y + GetRowHeight(idCurrentCell.row);
if ((point.y - start.y < m_nResizeCaptureRange && idCurrentCell.row != 0) ||
endy - point.y < m_nResizeCaptureRange)
{
return TRUE;
}
else
return FALSE;
}
// TRUE if the mouse is over a column resize area. point is in Client coords
BOOL CGridCtrl::MouseOverColumnResizeArea(CPoint& point)
{
if (point.y >= GetFixedRowHeight())
return FALSE;
CCellID idCurrentCell = GetCellFromPt(point);
CPoint start;
if (!GetCellOrigin(idCurrentCell, &start))
return FALSE;
int endx = start.x + GetColumnWidth(idCurrentCell.col);
if ((point.x - start.x < m_nResizeCaptureRange && idCurrentCell.col != 0) ||
endx - point.x < m_nResizeCaptureRange)
{
return TRUE;
}
else
return FALSE;
}
// Get cell from point.
// point - client coordinates
// bAllowFixedCellCheck - if TRUE then fixed cells are checked
CCellID CGridCtrl::GetCellFromPt(CPoint point, BOOL bAllowFixedCellCheck/* =TRUE*/, CCellID& cellOriginal/*= cellNull*/)
{
CCellID cellID; // return value
CCellID idTopLeft = GetTopleftNonFixedCell();
if (!bAllowFixedCellCheck && !IsValid(idTopLeft))
return cellID;
// calculate column index
// LUC
int fixedColWidth = GetFixedColumnWidth(TRUE);
int nFixedCols = m_nFixedCols + m_nFreezedCols;
if (point.x < 0 || (!bAllowFixedCellCheck && point.x < fixedColWidth)) // not in window
cellID.col = -1;
else if (point.x < fixedColWidth) // in fixed col
{
// LUC
int xpos = 0;
//int xpos = m_nScrollX;
int col = 0;
while (col < nFixedCols)
{
xpos += GetColumnWidth(col);
if (xpos > point.x)
break;
col++;
}
cellID.col = col;
}
else // in non-fixed col
{
// LUC
int xpos = fixedColWidth + m_nScrollX;
int col = idTopLeft.col; //m_nFixedCols;
while ( col < GetColumnCount())
{
xpos += GetColumnWidth(col);
if (xpos > point.x)
break;
col++;
}
if (col >= GetColumnCount())
cellID.col = -1;
else
cellID.col = col;
}
// calculate row index
// LUC
int fixedRowHeight = GetFixedRowHeight(TRUE);
if (point.y < 0 || (!bAllowFixedCellCheck && point.y < fixedRowHeight)) // not in window
cellID.row = -1;
else if (point.y < fixedRowHeight) // in fixed col
{
int ypos = 0;
int row = 0;
int nFixedRows = m_nFixedRows + m_nFreezedRows;
while (row < nFixedRows)
{
ypos += GetRowHeight(row);
if (ypos > point.y)
break;
row++;
}
cellID.row = row;
}
else
{
int ypos = fixedRowHeight;
int row = idTopLeft.row; //m_nFixedRows;
while ( row < GetRowCount() )
{
ypos += GetRowHeight(row);
if (ypos > point.y)
break;
row++;
}
if (row >= GetRowCount())
cellID.row = -1;
else
cellID.row = row;
}
// LUC
if(cellOriginal != cellNull)
{
cellOriginal = cellID;
}
GetTopLeftMergedCell(cellID.row, cellID.col, rectNull);
return cellID;
}
////////////////////////////////////////////////////////////////////////////////
// CGridCtrl cellrange functions
// Gets the first non-fixed cell ID
CCellID CGridCtrl::GetTopleftNonFixedCell(BOOL bForceRecalculation /*=FALSE*/)
{
// Used cached value if possible
if (m_idTopLeftCell.IsValid() && !bForceRecalculation)
return m_idTopLeftCell;
int nVertScroll = GetScrollPos(SB_VERT),
nHorzScroll = GetScrollPos(SB_HORZ);
// LUC
m_idTopLeftCell.col = m_nFixedCols + m_nFreezedCols;
int nRight = 0;
// LUC
m_nScrollX = nRight - nHorzScroll;
while (nRight < nHorzScroll && m_idTopLeftCell.col < (GetColumnCount()-1))
{
// LUC
m_nScrollX = nRight - nHorzScroll;
nRight += GetColumnWidth(m_idTopLeftCell.col++);
}
// LUC: make sure m_nScrollX is updated properly just in case the while loop breaks because nRight == nHorzScroll
if(nRight == nHorzScroll)
{
m_nScrollX = 0;
}
// LUC: for XL style scrolling no need to update the m_nScrollX variable (set it to 0)
if((m_nBarState & GVL_XLSTYLE_SCROLL) == GVL_XLSTYLE_SCROLL)
{
m_nScrollX = 0;
}
// LUC: if m_nScrollX < 0, then the prev col will be partially visible
if(m_nScrollX < 0 && m_idTopLeftCell.col > m_nFixedCols)
{
m_idTopLeftCell.col--;
}
// LUC
m_idTopLeftCell.row = m_nFixedRows + m_nFreezedRows;
int nTop = 0;
while (nTop < nVertScroll && m_idTopLeftCell.row < (GetRowCount()-1))
nTop += GetRowHeight(m_idTopLeftCell.row++);
//TRACE2("TopLeft cell is row %d, col %d\n",m_idTopLeftCell.row, m_idTopLeftCell.col);
return m_idTopLeftCell;
}
// This gets even partially visible cells
CCellRange CGridCtrl::GetVisibleNonFixedCellRange(LPRECT pRect /*=NULL*/,
BOOL bForceRecalculation /*=FALSE*/)
{
int i;
CRect rect;
GetClientRect(rect);
CCellID idTopLeft = GetTopleftNonFixedCell(bForceRecalculation);
// calc bottom
// LUC
int bottom = GetFixedRowHeight();
//for (i = idTopLeft.row; i < GetRowCount(); i++)
for (i = m_nFixedRows; i < GetRowCount(); i++)
{
if(i == (m_nFixedRows+ m_nFreezedRows))
{
i = idTopLeft.row;
}
bottom += GetRowHeight(i);
if (bottom >= rect.bottom)
{
bottom = rect.bottom;
break;
}
}
int maxVisibleRow = min(i, GetRowCount() - 1);
// calc right
// LUC
int right = GetFixedColumnWidth();
right += m_nScrollX;
//for (i = idTopLeft.col; i < GetColumnCount(); i++)
for (i = m_nFixedCols; i < GetColumnCount(); i++)
{
if(i == (m_nFixedCols + m_nFreezedCols))
{
i = idTopLeft.col;
}
right += GetColumnWidth(i);
if (right >= rect.right)
{
right = rect.right;
break;
}
}
int maxVisibleCol = min(i, GetColumnCount() - 1);
if (pRect)
{
pRect->left = pRect->top = 0;
pRect->right = right;
pRect->bottom = bottom;
}
if(!m_bExcludeFreezedRowsFromSelection)
{
if(m_nFreezedRows > 0)
{
idTopLeft.row = m_nFixedRows;
}
}
if(!m_bExcludeFreezedColsFromSelection)
{
if(m_nFreezedCols > 0)
{
idTopLeft.col = m_nFixedCols;
}
}
return CCellRange(idTopLeft.row, idTopLeft.col, maxVisibleRow, maxVisibleCol);
}
CCellRange CGridCtrl::GetVisibleFixedCellRange(LPRECT pRect /*=NULL*/,
BOOL bForceRecalculation /*=FALSE*/)
{
int i;
CRect rect;
GetClientRect(rect);
CCellID idTopLeft = GetTopleftNonFixedCell(bForceRecalculation);
// calc bottom
// LUC
int bottom = GetFixedRowHeight(m_bExcludeFreezedRowsFromSelection);
for (i = idTopLeft.row; i < GetRowCount(); i++)
{
bottom += GetRowHeight(i);
if (bottom >= rect.bottom)
{
bottom = rect.bottom;
break;
}
}
int maxVisibleRow = min(i, GetRowCount() - 1);
// calc right
int right = 0;
for (i = 0; i < GetFixedColumnCount(m_bExcludeFreezedColsFromSelection); i++)
{
right += GetColumnWidth(i);
if (right >= rect.right)
{
right = rect.right;
break;
}
}
int maxVisibleCol = min(i, GetColumnCount() - 1);
if (pRect)
{
pRect->left = pRect->top = 0;
pRect->right = right;
pRect->bottom = bottom;
}
return CCellRange(idTopLeft.row, 0, maxVisibleRow, maxVisibleCol);
}
// used by ResetScrollBars() - This gets only fully visible cells
CCellRange CGridCtrl::GetUnobstructedNonFixedCellRange(BOOL bForceRecalculation /*=FALSE*/)
{
CRect rect;
GetClientRect(rect);
CCellID idTopLeft = GetTopleftNonFixedCell(bForceRecalculation);
// calc bottom
int i;
int bottom = GetFixedRowHeight();
for (i = idTopLeft.row; i < GetRowCount(); i++)
{
bottom += GetRowHeight(i);
if (bottom >= rect.bottom)
break;
}
int maxVisibleRow = min(i, GetRowCount() - 1);
if (maxVisibleRow > 0 && bottom > rect.bottom)
maxVisibleRow--;
// calc right
int right = GetFixedColumnWidth();
for (i = idTopLeft.col; i < GetColumnCount(); i++)
{
right += GetColumnWidth(i);
if (right >= rect.right)
break;
}
int maxVisibleCol = min(i, GetColumnCount() - 1);
if (maxVisibleCol > 0 && right > rect.right)
maxVisibleCol--;
return CCellRange(idTopLeft.row, idTopLeft.col, maxVisibleRow, maxVisibleCol);
}
// Returns the minimum bounding range of the current selection
// If no selection, then the returned CCellRange will be invalid
CCellRange CGridCtrl::GetSelectedCellRange() const
{
CCellRange Selection(GetRowCount(), GetColumnCount(), -1,-1);
for (POSITION pos = m_SelectedCellMap.GetStartPosition(); pos != NULL; )
{
DWORD key;
CCellID cell;
m_SelectedCellMap.GetNextAssoc(pos, key, (CCellID&)cell);
Selection.SetMinRow( min(Selection.GetMinRow(), cell.row) );
Selection.SetMinCol( min(Selection.GetMinCol(), cell.col) );
Selection.SetMaxRow( __max(Selection.GetMaxRow(), cell.row) );
Selection.SetMaxCol( __max(Selection.GetMaxCol(), cell.col) );
}
return Selection;
}
// Returns ALL the cells in the grid
CCellRange CGridCtrl::GetCellRange() const
{
return CCellRange(0, 0, GetRowCount() - 1, GetColumnCount() - 1);
}
// Resets the selected cell range to the empty set.
void CGridCtrl::ResetSelectedRange()
{
m_PrevSelectedCellMap.RemoveAll();
SetSelectedRange(-1,-1,-1,-1);
SetFocusCell(-1,-1);
}
// Get/Set scroll position using 32 bit functions
int CGridCtrl::GetScrollPos32(int nBar, BOOL bGetTrackPos /* = FALSE */)
{
SCROLLINFO si;
si.cbSize = sizeof(SCROLLINFO);
if (bGetTrackPos)
{
if (GetScrollInfo(nBar, &si, SIF_TRACKPOS))
return si.nTrackPos;
}
else
{
if (GetScrollInfo(nBar, &si, SIF_POS))
return si.nPos;
}
return 0;
}
BOOL CGridCtrl::SetScrollPos32(int nBar, int nPos, BOOL bRedraw /* = TRUE */)
{
m_idTopLeftCell.row = -1;
SCROLLINFO si;
si.cbSize = sizeof(SCROLLINFO);
si.fMask = SIF_POS;
si.nPos = nPos;
return SetScrollInfo(nBar, &si, bRedraw);
}
void CGridCtrl::EnableScrollBars(int nBar, BOOL bEnable /*=TRUE*/)
{
if (bEnable)
{
if (!IsVisibleHScroll() && (nBar == SB_HORZ || nBar == SB_BOTH))
{
m_nBarState |= GVL_HORZ;
CWnd::EnableScrollBarCtrl(SB_HORZ, bEnable);
}
if (!IsVisibleVScroll() && (nBar == SB_VERT || nBar == SB_BOTH))
{
m_nBarState |= GVL_VERT;
CWnd::EnableScrollBarCtrl(SB_VERT, bEnable);
}
}
else
{
if ( IsVisibleHScroll() && (nBar == SB_HORZ || nBar == SB_BOTH))
{
m_nBarState &= ~GVL_HORZ;
CWnd::EnableScrollBarCtrl(SB_HORZ, bEnable);
}
if ( IsVisibleVScroll() && (nBar == SB_VERT || nBar == SB_BOTH))
{
m_nBarState &= ~GVL_VERT;
CWnd::EnableScrollBarCtrl(SB_VERT, bEnable);
}
}
}
// If resizing or cell counts/sizes change, call this - it'll fix up the scroll bars
void CGridCtrl::ResetScrollBars()
{
// Force a refresh.
m_idTopLeftCell.row = -1;
// LUC
m_nScrollX = 0;
if (!m_bAllowDraw || !::IsWindow(GetSafeHwnd()))
return;
CRect rect;
// This would have caused OnSize event - Brian
//EnableScrollBars(SB_BOTH, FALSE);
GetClientRect(rect);
if (rect.left == rect.right || rect.top == rect.bottom)
return;
if (IsVisibleVScroll())
rect.right += GetSystemMetrics(SM_CXVSCROLL) + GetSystemMetrics(SM_CXBORDER);
if (IsVisibleHScroll())
rect.bottom += GetSystemMetrics(SM_CYHSCROLL) + GetSystemMetrics(SM_CYBORDER);
rect.left += GetFixedColumnWidth(TRUE);
rect.top += GetFixedRowHeight(TRUE);
if (rect.left >= rect.right || rect.top >= rect.bottom)
{
EnableScrollBarCtrl(SB_BOTH, FALSE);
return;
}
CRect VisibleRect(GetFixedColumnWidth(TRUE), GetFixedRowHeight(TRUE),
rect.right, rect.bottom);
CRect VirtualRect(GetFixedColumnWidth(TRUE), GetFixedRowHeight(TRUE),
GetVirtualWidth(), GetVirtualHeight());
// Removed to fix single row scrollbar problem (Pontus Goffe)
// CCellRange visibleCells = GetUnobstructedNonFixedCellRange();
// if (!IsValid(visibleCells)) return;
//TRACE(_T("Visible: %d x %d, Virtual %d x %d. H %d, V %d\n"),
// VisibleRect.Width(), VisibleRect.Height(),
// VirtualRect.Width(), VirtualRect.Height(),
// IsVisibleHScroll(), IsVisibleVScroll());
// If vertical scroll bar, horizontal space is reduced
if (VisibleRect.Height() < VirtualRect.Height())
VisibleRect.right -= ::GetSystemMetrics(SM_CXVSCROLL);
// If horz scroll bar, vert space is reduced
if (VisibleRect.Width() < VirtualRect.Width())
VisibleRect.bottom -= ::GetSystemMetrics(SM_CYHSCROLL);
// Recheck vertical scroll bar
//if (VisibleRect.Height() < VirtualRect.Height())
// VisibleRect.right -= ::GetSystemMetrics(SM_CXVSCROLL);
if (VisibleRect.Height() < VirtualRect.Height())
{
EnableScrollBars(SB_VERT, TRUE);
m_nVScrollMax = VirtualRect.Height() - 1;
}
else
{
EnableScrollBars(SB_VERT, FALSE);
m_nVScrollMax = 0;
}
if (VisibleRect.Width() < VirtualRect.Width())
{
EnableScrollBars(SB_HORZ, TRUE);
// LUC: for smooth scrolling we have to ensure m_nHScrollMax is equal to total virtual rect
//m_nHScrollMax = VirtualRect.Width() - 1;
m_nHScrollMax = VirtualRect.Width();
}
else
{
EnableScrollBars(SB_HORZ, FALSE);
m_nHScrollMax = 0;
}
ASSERT(m_nVScrollMax < INT_MAX && m_nHScrollMax < INT_MAX); // This should be fine
/* Old code - CJM
SCROLLINFO si;
si.cbSize = sizeof(SCROLLINFO);
si.fMask = SIF_PAGE;
si.nPage = (m_nHScrollMax>0)? VisibleRect.Width() : 0;
SetScrollInfo(SB_HORZ, &si, FALSE);
si.nPage = (m_nVScrollMax>0)? VisibleRect.Height() : 0;
SetScrollInfo(SB_VERT, &si, FALSE);
SetScrollRange(SB_VERT, 0, m_nVScrollMax, TRUE);
SetScrollRange(SB_HORZ, 0, m_nHScrollMax, TRUE);
*/
// New code - Paul Runstedler
SCROLLINFO si;
si.cbSize = sizeof(SCROLLINFO);
si.fMask = SIF_PAGE | SIF_RANGE;
si.nPage = (m_nHScrollMax>0)? VisibleRect.Width() : 0;
si.nMin = 0;
si.nMax = m_nHScrollMax;
SetScrollInfo(SB_HORZ, &si, TRUE);
si.fMask |= SIF_DISABLENOSCROLL;
si.nPage = (m_nVScrollMax>0)? VisibleRect.Height() : 0;
si.nMin = 0;
si.nMax = m_nVScrollMax;
SetScrollInfo(SB_VERT, &si, TRUE);
}
////////////////////////////////////////////////////////////////////////////////////
// Row/Column position functions
// returns the top left point of the cell. Returns FALSE if cell not visible.
BOOL CGridCtrl::GetCellOrigin(int nRow, int nCol, LPPOINT p)
{
int i;
if (!IsValid(nRow, nCol))
return FALSE;
CCellID idTopLeft;
int nFixedCols = m_nFixedCols + m_nFreezedCols;
int nFixedRows = m_nFixedRows + m_nFreezedRows;
// LUC
if (nCol >= nFixedCols || nRow >= nFixedRows)
idTopLeft = GetTopleftNonFixedCell();
if ((nRow >= nFixedRows && nRow < idTopLeft.row) ||
(nCol>= nFixedCols && nCol < idTopLeft.col))
return FALSE;
p->x = 0;
// LUC
if(nCol >= nFixedCols)
{
p->x += m_nScrollX;
}
if (nCol < nFixedCols) // is a fixed column
for (i = 0; i < nCol; i++)
p->x += GetColumnWidth(i);
else
{ // is a scrollable data column
for (i = 0; i < nFixedCols; i++)
p->x += GetColumnWidth(i);
for (i = idTopLeft.col; i < nCol; i++)
p->x += GetColumnWidth(i);
}
p->y = 0;
if (nRow < nFixedRows) // is a fixed row
for (i = 0; i < nRow; i++)
p->y += GetRowHeight(i);
else
{ // is a scrollable data row
for (i = 0; i < nFixedRows; i++)
p->y += GetRowHeight(i);
for (i = idTopLeft.row; i < nRow; i++)
p->y += GetRowHeight(i);
}
return TRUE;
}
BOOL CGridCtrl::GetCellOrigin(const CCellID& cell, LPPOINT p)
{
return GetCellOrigin(cell.row, cell.col, p);
}
// Returns the bounding box of the cell
BOOL CGridCtrl::GetCellRect(const CCellID& cell, LPRECT pRect)
{
return GetCellRect(cell.row, cell.col, pRect);
}
BOOL CGridCtrl::GetCellRect(int nRow, int nCol, LPRECT pRect)
{
CPoint CellOrigin;
if (!GetCellOrigin(nRow, nCol, &CellOrigin))
return FALSE;
pRect->left = CellOrigin.x;
pRect->top = CellOrigin.y;
pRect->right = CellOrigin.x + GetColumnWidth(nCol)-1;
pRect->bottom = CellOrigin.y + GetRowHeight(nRow)-1;
//TRACE("Row %d, col %d: L %d, T %d, W %d, H %d: %d,%d - %d,%d\n",
// nRow,nCol, CellOrigin.x, CellOrigin.y, GetColumnWidth(nCol), GetRowHeight(nRow),
// pRect->left, pRect->top, pRect->right, pRect->bottom);
return TRUE;
}
BOOL CGridCtrl::GetTextRect(const CCellID& cell, LPRECT pRect)
{
return GetTextRect(cell.row, cell.col, pRect);
}
BOOL CGridCtrl::GetTextRect(int nRow, int nCol, LPRECT pRect)
{
CGridCellBase* pCell = GetCell( nRow, nCol);
if( pCell == NULL)
return FALSE;
if( !GetCellRect( nRow, nCol, pRect) )
return FALSE;
return pCell->GetTextRect( pRect);
}
// Returns the bounding box of a range of cells
BOOL CGridCtrl::GetCellRangeRect(const CCellRange& cellRange, LPRECT lpRect)
{
CPoint MinOrigin,MaxOrigin;
if (!GetCellOrigin(cellRange.GetMinRow(), cellRange.GetMinCol(), &MinOrigin))
return FALSE;
if (!GetCellOrigin(cellRange.GetMaxRow(), cellRange.GetMaxCol(), &MaxOrigin))
return FALSE;
lpRect->left = MinOrigin.x;
lpRect->top = MinOrigin.y;
lpRect->right = MaxOrigin.x + GetColumnWidth(cellRange.GetMaxCol()) - 1;
lpRect->bottom = MaxOrigin.y + GetRowHeight(cellRange.GetMaxRow()) - 1;
return TRUE;
}
////////////////////////////////////////////////////////////////////////////////////
// Grid attribute functions
LRESULT CGridCtrl::OnSetFont(WPARAM hFont, LPARAM /*lParam */)
{
LRESULT result = Default();
// Get the logical font
LOGFONT lf;
if (!GetObject((HFONT) hFont, sizeof(LOGFONT), &lf))
return result;
m_cellDefault.SetFont(&lf);
m_cellFixedColDef.SetFont(&lf);
m_cellFixedRowDef.SetFont(&lf);
m_cellFixedRowColDef.SetFont(&lf);
Refresh();
return result;
}
LRESULT CGridCtrl::OnGetFont(WPARAM /*wParam*/, LPARAM /*lParam*/)
{
//LOGFONT lf;
//m_cellDefault.GetFontObject()->GetLogFont(&lf);
return (LRESULT) m_cellDefault.GetFontObject()->GetSafeHandle();
}
#ifndef _WIN32_WCE_NO_CURSOR
BOOL CGridCtrl::OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message)
{
if (nHitTest == HTCLIENT)
{
switch (m_MouseMode)
{
case MOUSE_OVER_COL_DIVIDE:
SetCursor(AfxGetApp()->LoadStandardCursor(IDC_SIZEWE));
break;
case MOUSE_OVER_ROW_DIVIDE:
SetCursor(AfxGetApp()->LoadStandardCursor(IDC_SIZENS));
break;
#ifndef GRIDCONTROL_NO_DRAGDROP
case MOUSE_DRAGGING:
break;
#endif
default:
if (!GetVirtualMode())
{
CPoint pt(GetMessagePos());
ScreenToClient(&pt);
CCellID cell = GetCellFromPt(pt);
if (IsValid(cell))
{
CGridCellBase* pCell = GetCell(cell.row, cell.col);
if (pCell)
return pCell->OnSetCursor();
}
}
SetCursor(AfxGetApp()->LoadStandardCursor(IDC_ARROW));
}
return TRUE;
}
return CWnd::OnSetCursor(pWnd, nHitTest, message);
}
#endif
////////////////////////////////////////////////////////////////////////////////////
// Row/Column count functions
BOOL CGridCtrl::SetFixedRowCount(int nFixedRows)
{
if (m_nFixedRows == nFixedRows)
return TRUE;
ASSERT(nFixedRows >= 0);
ResetSelectedRange();
// Force recalculation
m_idTopLeftCell.col = -1;
if (nFixedRows > GetRowCount())
if (!SetRowCount(nFixedRows))
return FALSE;
if (m_idCurrentCell.row < nFixedRows)
SetFocusCell(-1, - 1);
if (!GetVirtualMode())
{
if (nFixedRows > m_nFixedRows)
{
for (int i = m_nFixedRows; i < nFixedRows; i++)
for (int j = 0; j < GetColumnCount(); j++)
{
SetItemState(i, j, GetItemState(i, j) | GVIS_FIXED | GVIS_FIXEDROW);
SetItemBkColour(i, j, CLR_DEFAULT );
SetItemFgColour(i, j, CLR_DEFAULT );
}
}
else
{
for (int i = nFixedRows; i < m_nFixedRows; i++)
{
int j;
for (j = 0; j < GetFixedColumnCount(); j++)
SetItemState(i, j, GetItemState(i, j) & ~GVIS_FIXEDROW );
for (j = GetFixedColumnCount(); j < GetColumnCount(); j++)
{
SetItemState(i, j, GetItemState(i, j) & ~(GVIS_FIXED | GVIS_FIXEDROW) );
SetItemBkColour(i, j, CLR_DEFAULT );
SetItemFgColour(i, j, CLR_DEFAULT );
}
}
}
}
m_nFixedRows = nFixedRows;
Refresh();
return TRUE;
}
BOOL CGridCtrl::SetFixedColumnCount(int nFixedCols)
{
if (m_nFixedCols == nFixedCols)
return TRUE;
ASSERT(nFixedCols >= 0);
if (nFixedCols > GetColumnCount())
if (!SetColumnCount(nFixedCols))
return FALSE;
if (m_idCurrentCell.col < nFixedCols)
SetFocusCell(-1, - 1);
ResetSelectedRange();
// Force recalculation
m_idTopLeftCell.col = -1;
if (!GetVirtualMode())
{
if (nFixedCols > m_nFixedCols)
{
for (int i = 0; i < GetRowCount(); i++)
for (int j = m_nFixedCols; j < nFixedCols; j++)
{
SetItemState(i, j, GetItemState(i, j) | GVIS_FIXED | GVIS_FIXEDCOL);
SetItemBkColour(i, j, CLR_DEFAULT );
SetItemFgColour(i, j, CLR_DEFAULT );
}
}
else
{
{ // Scope limit i,j
for (int i = 0; i < GetFixedRowCount(); i++)
for (int j = nFixedCols; j < m_nFixedCols; j++)
SetItemState(i, j, GetItemState(i, j) & ~GVIS_FIXEDCOL );
}
{// Scope limit i,j
for (int i = GetFixedRowCount(); i < GetRowCount(); i++)
for (int j = nFixedCols; j < m_nFixedCols; j++)
{
SetItemState(i, j, GetItemState(i, j) & ~(GVIS_FIXED | GVIS_FIXEDCOL) );
SetItemBkColour(i, j, CLR_DEFAULT );
SetItemFgColour(i, j, CLR_DEFAULT );
}
}
}
}
m_nFixedCols = nFixedCols;
Refresh();
return TRUE;
}
BOOL CGridCtrl::SetRowCount(int nRows)
{
BOOL bResult = TRUE;
ASSERT(nRows >= 0);
if (nRows == GetRowCount())
return bResult;
// Force recalculation
m_idTopLeftCell.col = -1;
if (nRows < m_nFixedRows)
m_nFixedRows = nRows;
if (m_idCurrentCell.row >= nRows)
SetFocusCell(-1, - 1);
int addedRows = nRows - GetRowCount();
// If we are about to lose rows, then we need to delete the GridCell objects
// in each column within each row
if (addedRows < 0)
{
if (!GetVirtualMode())
{
for (int row = nRows; row < m_nRows; row++)
{
// Delete cells
for (int col = 0; col < m_nCols; col++)
DestroyCell(row, col);
// Delete rows
GRID_ROW* pRow = (*m_pRowData)[row];
if (pRow)
delete pRow;
}
}
m_nRows = nRows;
}
TRY
{
(*m_pArrayRowHeights).SetSize(nRows);
if (GetVirtualMode())
{
m_nRows = nRows;
if (addedRows > 0)
{
int startRow = nRows - addedRows;
for (int row = startRow; row < nRows; row++)
(*m_pArrayRowHeights)[row] = m_cellDefault.GetHeight();
}
ResetVirtualOrder();
}
else
{
// Change the number of rows.
(*m_pRowData).SetSize(nRows);
// If we have just added rows, we need to construct new elements for each cell
// and set the default row height
if (addedRows > 0)
{
// initialize row heights and data
int startRow = nRows - addedRows;
for (int row = startRow; row < nRows; row++)
{
(*m_pArrayRowHeights)[row] = m_cellDefault.GetHeight();
(*m_pRowData)[row] = new GRID_ROW;
(*m_pRowData)[row]->SetSize(m_nCols);
for (int col = 0; col < m_nCols; col++)
{
GRID_ROW* pRow = (*m_pRowData)[row];
if (pRow && !GetVirtualMode())
pRow->SetAt(col, CreateCell(row, col));
}
m_nRows++;
}
}
}
}
CATCH (CMemoryException, e)
{
e->ReportError();
bResult = FALSE;
}
END_CATCH
SetModified();
ResetScrollBars();
Refresh();
return bResult;
}
BOOL CGridCtrl::SetColumnCount(int nCols)
{
BOOL bResult = TRUE;
ASSERT(nCols >= 0);
if (nCols == GetColumnCount())
return bResult;
// Force recalculation
m_idTopLeftCell.col = -1;
if (nCols < m_nFixedCols)
m_nFixedCols = nCols;
if (m_idCurrentCell.col >= nCols)
SetFocusCell(-1, - 1);
int addedCols = nCols - GetColumnCount();
// If we are about to lose columns, then we need to delete the GridCell objects
// within each column
if (addedCols < 0 && !GetVirtualMode())
{
for (int row = 0; row < m_nRows; row++)
for (int col = nCols; col < GetColumnCount(); col++)
DestroyCell(row, col);
}
TRY
{
// Change the number of columns.
m_arColWidths.SetSize(nCols);
// Change the number of columns in each row.
if (!GetVirtualMode())
for (int i = 0; i < m_nRows; i++)
if ((*m_pRowData)[i])
(*m_pRowData)[i]->SetSize(nCols);
// If we have just added columns, we need to construct new elements for each cell
// and set the default column width
if (addedCols > 0)
{
int row, col;
// initialized column widths
int startCol = nCols - addedCols;
for (col = startCol; col < nCols; col++)
m_arColWidths[col] = m_cellFixedColDef.GetWidth();
// initialise column data
if (!GetVirtualMode())
{
for (row = 0; row < m_nRows; row++)
for (col = startCol; col < nCols; col++)
{
GRID_ROW* pRow = (*m_pRowData)[row];
if (pRow)
pRow->SetAt(col, CreateCell(row, col));
}
}
}
// else // check for selected cell ranges
// ResetSelectedRange();
}
CATCH (CMemoryException, e)
{
e->ReportError();
bResult = FALSE;
}
END_CATCH
m_arColOrder.resize(nCols); // Reset Column Order
for (int i = 0; i < nCols; i++)
{
m_arColOrder[i] = i;
}
m_nCols = nCols;
SetModified();
ResetScrollBars();
Refresh();
return bResult;
}
// Insert a column at a given position, or add to end of columns (if nColumn = -1)
int CGridCtrl::InsertColumn(LPCTSTR strHeading,
UINT nFormat /* = DT_CENTER|DT_VCENTER|DT_SINGLELINE */,
int nColumn /* = -1 */)
{
ASSERT(!m_AllowReorderColumn); // function not implemented in case of m_AllowReorderColumn option
if (nColumn >= 0 && nColumn < m_nFixedCols)
{
// TODO: Fix it so column insertion works for in the fixed column area
ASSERT(FALSE);
return -1;
}
// If the insertion is for a specific column, check it's within range.
if (nColumn >= 0 && nColumn > GetColumnCount())
return -1;
// Force recalculation
m_idTopLeftCell.col = -1;
ResetSelectedRange();
// Gotta be able to at least _see_ some of the column.
if (m_nRows < 1)
SetRowCount(1);
// Allow the user to insert after the last of the columns, but process it as a
// "-1" column, meaning it gets flaged as being the last column, and not a regular
// "insert" routine.
if (nColumn == GetColumnCount())
nColumn = -1;
TRY
{
if (nColumn < 0)
{
nColumn = m_nCols;
m_arColWidths.Add(0);
if (!GetVirtualMode())
{
for (int row = 0; row < m_nRows; row++)
{
GRID_ROW* pRow = (*m_pRowData)[row];
if (!pRow)
return -1;
pRow->Add(CreateCell(row, nColumn));
}
}
}
else
{
m_arColWidths.InsertAt(nColumn, (UINT)0);
if (!GetVirtualMode())
{
for (int row = 0; row < m_nRows; row++)
{
GRID_ROW* pRow = (*m_pRowData)[row];
if (!pRow)
return -1;
pRow->InsertAt(nColumn, CreateCell(row, nColumn));
}
}
}
}
CATCH (CMemoryException, e)
{
e->ReportError();
return -1;
}
END_CATCH
m_nCols++;
// Column Order
m_arColOrder.resize(m_nCols);
for (int i = 0; i < m_nCols; i++)
{
m_arColOrder[i] = i;
}
// Initialise column data
SetItemText(0, nColumn, strHeading);
for (int row = 0; row < m_nRows; row++)
SetItemFormat(row, nColumn, nFormat);
// initialized column width
m_arColWidths[nColumn] = GetTextExtent(0, nColumn, strHeading).cx;
if (m_idCurrentCell.col != -1 && nColumn < m_idCurrentCell.col)
m_idCurrentCell.col++;
ResetScrollBars();
SetModified();
return nColumn;
}
// Insert a row at a given position, or add to end of rows (if nRow = -1)
int CGridCtrl::InsertRow(LPCTSTR strHeading, int nRow /* = -1 */)
{
if (nRow >= 0 && nRow < m_nFixedRows)
{
// TODO: Fix it so column insertion works for in the fixed row area
ASSERT(FALSE);
return -1;
}
// If the insertion is for a specific row, check it's within range.
if (nRow >= 0 && nRow > GetRowCount())
return -1;
// Force recalculation
m_idTopLeftCell.col = -1;
ResetSelectedRange();
// Gotta be able to at least _see_ some of the row.
if (m_nCols < 1)
SetColumnCount(1);
TRY
{
// Adding a row to the bottom
if (nRow < 0)
{
nRow = m_nRows;
(*m_pArrayRowHeights).Add(0);
if (!GetVirtualMode())
(*m_pRowData).Add(new GRID_ROW);
else
m_arRowOrder.push_back(m_nRows);
}
else
{
(*m_pArrayRowHeights).InsertAt(nRow, (UINT)0);
if (!GetVirtualMode())
(*m_pRowData).InsertAt(nRow, new GRID_ROW);
else
{
ResetVirtualOrder();
}
}
if (!GetVirtualMode())
(*m_pRowData)[nRow]->SetSize(m_nCols);
}
CATCH (CMemoryException, e)
{
e->ReportError();
return -1;
}
END_CATCH
m_nRows++;
// Initialise cell data
if (!GetVirtualMode())
{
for (int col = 0; col < m_nCols; col++)
{
GRID_ROW* pRow = (*m_pRowData)[nRow];
if (!pRow)
return -1;
pRow->SetAt(col, CreateCell(nRow, col));
}
}
// Set row title
SetItemText(nRow, 0, strHeading);
// initialized row height
if (strHeading && strHeading[0])
(*m_pArrayRowHeights)[nRow] = GetTextExtent(nRow, 0, strHeading).cy;
else
(*m_pArrayRowHeights)[nRow] = m_cellFixedRowDef.GetHeight();
if (m_idCurrentCell.row != -1 && nRow < m_idCurrentCell.row)
m_idCurrentCell.row++;
ResetScrollBars();
SetModified();
return nRow;
}
///////////////////////////////////////////////////////////////////////////////
// Cell creation stuff
BOOL CGridCtrl::SetCellType(int nRow, int nCol, CRuntimeClass* pRuntimeClass)
{
if (GetVirtualMode())
return FALSE;
ASSERT(IsValid(nRow, nCol));
if (!IsValid(nRow, nCol))
return FALSE;
if (!pRuntimeClass->IsDerivedFrom(RUNTIME_CLASS(CGridCellBase)))
{
ASSERT( FALSE);
return FALSE;
}
CGridCellBase* pNewCell = (CGridCellBase*) pRuntimeClass->CreateObject();
CGridCellBase* pCurrCell = GetCell(nRow, nCol);
if (pCurrCell)
*pNewCell = *pCurrCell;
SetCell(nRow, nCol, pNewCell);
delete pCurrCell;
return TRUE;
}
BOOL CGridCtrl::SetDefaultCellType( CRuntimeClass* pRuntimeClass)
{
ASSERT( pRuntimeClass != NULL );
if (!pRuntimeClass->IsDerivedFrom(RUNTIME_CLASS(CGridCellBase)))
{
ASSERT( FALSE);
return FALSE;
}
m_pRtcDefault = pRuntimeClass;
return TRUE;
}
// Creates a new grid cell and performs any necessary initialisation
/*virtual*/ CGridCellBase* CGridCtrl::CreateCell(int nRow, int nCol)
{
ASSERT(!GetVirtualMode());
if (!m_pRtcDefault || !m_pRtcDefault->IsDerivedFrom(RUNTIME_CLASS(CGridCellBase)))
{
ASSERT( FALSE);
return NULL;
}
CGridCellBase* pCell = (CGridCellBase*) m_pRtcDefault->CreateObject();
if (!pCell)
return NULL;
pCell->SetGrid(this);
pCell->SetCoords(nRow, nCol);
if (nCol < m_nFixedCols)
pCell->SetState(pCell->GetState() | GVIS_FIXED | GVIS_FIXEDCOL);
if (nRow < m_nFixedRows)
pCell->SetState(pCell->GetState() | GVIS_FIXED | GVIS_FIXEDROW);
pCell->SetFormat(pCell->GetDefaultCell()->GetFormat());
return pCell;
}
// Performs any cell cleanup necessary to maintain grid integrity
/*virtual*/ void CGridCtrl::DestroyCell(int nRow, int nCol)
{
// Should NEVER get here in virtual mode.
ASSERT(!GetVirtualMode());
// Set the cells state to 0. If the cell is selected, this
// will remove the cell from the selected list.
SetItemState(nRow, nCol, 0);
delete GetCell(nRow, nCol);
}
BOOL CGridCtrl::DeleteColumn(int nColumn)
{
if (nColumn < 0 || nColumn >= GetColumnCount())
return FALSE;
ResetSelectedRange();
if (!GetVirtualMode())
{
for (int row = 0; row < GetRowCount(); row++)
{
GRID_ROW* pRow = (*m_pRowData)[row];
if (!pRow)
return FALSE;
DestroyCell(row, nColumn);
pRow->RemoveAt(nColumn);
}
}
m_arColWidths.RemoveAt(nColumn);
m_nCols--;
if (nColumn < m_nFixedCols)
m_nFixedCols--;
if (nColumn == m_idCurrentCell.col)
m_idCurrentCell.row = m_idCurrentCell.col = -1;
else if (nColumn < m_idCurrentCell.col)
m_idCurrentCell.col--;
ResetScrollBars();
SetModified();
return TRUE;
}
void CGridCtrl::AddSubVirtualRow(int Num, int Nb)
{
ASSERT(Nb == -1 || Nb ==1); // only these vlaues are implemented now
if(!GetVirtualMode()) return;
for(int ind = 0; ind<m_nRows ; ind++)
if(m_arRowOrder[ind]>Num) m_arRowOrder[ind]+=Nb;
if(Nb>0)
m_arRowOrder.insert(m_arRowOrder.begin()+Num,Num);
else
m_arRowOrder.erase(m_arRowOrder.begin()+Num);
}
BOOL CGridCtrl::DeleteRow(int nRow)
{
if (nRow < 0 || nRow >= GetRowCount())
return FALSE;
ResetSelectedRange();
if (!GetVirtualMode())
{
GRID_ROW* pRow = (*m_pRowData)[nRow];
if (!pRow)
return FALSE;
for (int col = 0; col < GetColumnCount(); col++)
DestroyCell(nRow, col);
delete pRow;
(*m_pRowData).RemoveAt(nRow);
}
else
AddSubVirtualRow(nRow,-1);
(*m_pArrayRowHeights).RemoveAt(nRow);
m_nRows--;
if (nRow < m_nFixedRows)
m_nFixedRows--;
if (nRow == m_idCurrentCell.row)
m_idCurrentCell.row = m_idCurrentCell.col = -1;
else if (nRow < m_idCurrentCell.row)
m_idCurrentCell.row--;
ResetScrollBars();
SetModified();
return TRUE;
}
// Handy function that removes all non-fixed rows
BOOL CGridCtrl::DeleteNonFixedRows()
{
ResetSelectedRange();
int nFixed = GetFixedRowCount();
int nCount = GetRowCount();
if (GetVirtualMode())
{
if(nCount != nFixed)
{
SetRowCount(nFixed);
m_arRowOrder.resize(nFixed);
(*m_pArrayRowHeights).SetSize(nFixed);
m_idCurrentCell.row = m_idCurrentCell.col = -1;
ResetScrollBars();
SetModified();
}
}
else
{
// Delete all data rows
for (int nRow = nCount; nRow >= nFixed; nRow--)
DeleteRow(nRow);
}
return TRUE;
}
// Removes all rows, columns and data from the grid.
BOOL CGridCtrl::DeleteAllItems()
{
ResetSelectedRange();
m_arColWidths.RemoveAll();
(*m_pArrayRowHeights).RemoveAll();
// Delete all cells in the grid
if (!GetVirtualMode())
{
for (int row = 0; row < m_nRows; row++)
{
for (int col = 0; col < m_nCols; col++)
DestroyCell(row, col);
GRID_ROW* pRow = (*m_pRowData)[row];
delete pRow;
}
// Remove all rows
(*m_pRowData).RemoveAll();
}
else
m_arRowOrder.clear();
m_idCurrentCell.row = m_idCurrentCell.col = -1;
m_nRows = m_nFixedRows = m_nCols = m_nFixedCols = 0;
ResetScrollBars();
SetModified();
return TRUE;
}
void CGridCtrl::AutoFill()
{
if (!::IsWindow(m_hWnd))
return;
CRect rect;
GetClientRect(rect);
SetColumnCount(rect.Width() / m_cellDefault.GetWidth() + 1);
SetRowCount(rect.Height() / m_cellDefault.GetHeight() + 1);
SetFixedRowCount(1);
SetFixedColumnCount(1);
ExpandToFit();
}
/////////////////////////////////////////////////////////////////////////////
// CGridCtrl data functions
// Set CListCtrl::GetNextItem for details
CCellID CGridCtrl::GetNextItem(CCellID& cell, int nFlags) const
{
if ((nFlags & GVNI_ALL) == GVNI_ALL)
{ // GVNI_ALL Search whole Grid beginning from cell
// First row (cell.row) -- ONLY Columns to the right of cell
// following rows -- ALL Columns
int row = cell.row , col = cell.col + 1;
if (row <= 0)
row = GetFixedRowCount();
for (; row < GetRowCount(); row++)
{
if (col <= 0)
col = GetFixedColumnCount();
for (; col < GetColumnCount(); col++)
{
int nState = GetItemState(row, col);
if ((nFlags & GVNI_DROPHILITED && nState & GVIS_DROPHILITED) ||
(nFlags & GVNI_FOCUSED && nState & GVIS_FOCUSED) ||
(nFlags & GVNI_SELECTED && nState & GVIS_SELECTED) ||
(nFlags & GVNI_READONLY && nState & GVIS_READONLY) ||
(nFlags & GVNI_FIXED && nState & GVIS_FIXED) ||
(nFlags & GVNI_MODIFIED && nState & GVIS_MODIFIED))
return CCellID(row, col);
}
// go to First Column
col = GetFixedColumnCount();
}
}
else if ((nFlags & GVNI_BELOW) == GVNI_BELOW &&
(nFlags & GVNI_TORIGHT) == GVNI_TORIGHT)
{ // GVNI_AREA Search Grid beginning from cell to Lower-Right of Grid
// Only rows starting with cell.row and below
// All rows -- ONLY Columns to the right of cell
int row = cell.row;
if (row <= 0)
row = GetFixedRowCount();
for (; row < GetRowCount(); row++)
{
int col = cell.col + 1;
if (col <= 0)
col = GetFixedColumnCount();
for (; col < GetColumnCount(); col++)
{
int nState = GetItemState(row, col);
if ((nFlags & GVNI_DROPHILITED && nState & GVIS_DROPHILITED) ||
(nFlags & GVNI_FOCUSED && nState & GVIS_FOCUSED) ||
(nFlags & GVNI_SELECTED && nState & GVIS_SELECTED) ||
(nFlags & GVNI_READONLY && nState & GVIS_READONLY) ||
(nFlags & GVNI_FIXED && nState & GVIS_FIXED) ||
(nFlags & GVNI_MODIFIED && nState & GVIS_MODIFIED))
return CCellID(row, col);
}
}
}
else if ((nFlags & GVNI_ABOVE) == GVNI_ABOVE)
{
for (int row = cell.row - 1; row >= GetFixedRowCount(); row--)
{
int nState = GetItemState(row, cell.col);
if ((nFlags & GVNI_DROPHILITED && nState & GVIS_DROPHILITED) ||
(nFlags & GVNI_FOCUSED && nState & GVIS_FOCUSED) ||
(nFlags & GVNI_SELECTED && nState & GVIS_SELECTED) ||
(nFlags & GVNI_READONLY && nState & GVIS_READONLY) ||
(nFlags & GVNI_FIXED && nState & GVIS_FIXED) ||
(nFlags & GVNI_MODIFIED && nState & GVIS_MODIFIED))
return CCellID(row, cell.col);
}
}
else if ((nFlags & GVNI_BELOW) == GVNI_BELOW)
{
for (int row = cell.row + 1; row < GetRowCount(); row++)
{
int nState = GetItemState(row, cell.col);
if ((nFlags & GVNI_DROPHILITED && nState & GVIS_DROPHILITED) ||
(nFlags & GVNI_FOCUSED && nState & GVIS_FOCUSED) ||
(nFlags & GVNI_SELECTED && nState & GVIS_SELECTED) ||
(nFlags & GVNI_READONLY && nState & GVIS_READONLY) ||
(nFlags & GVNI_FIXED && nState & GVIS_FIXED) ||
(nFlags & GVNI_MODIFIED && nState & GVIS_MODIFIED))
return CCellID(row, cell.col);
}
}
else if ((nFlags & GVNI_TOLEFT) == GVNI_TOLEFT)
{
for (int col = cell.col - 1; col >= GetFixedColumnCount(); col--)
{
int nState = GetItemState(cell.row, col);
if ((nFlags & GVNI_DROPHILITED && nState & GVIS_DROPHILITED) ||
(nFlags & GVNI_FOCUSED && nState & GVIS_FOCUSED) ||
(nFlags & GVNI_SELECTED && nState & GVIS_SELECTED) ||
(nFlags & GVNI_READONLY && nState & GVIS_READONLY) ||
(nFlags & GVNI_FIXED && nState & GVIS_FIXED) ||
(nFlags & GVNI_MODIFIED && nState & GVIS_MODIFIED))
return CCellID(cell.row, col);
}
}
else if ((nFlags & GVNI_TORIGHT) == GVNI_TORIGHT)
{
for (int col = cell.col + 1; col < GetColumnCount(); col++)
{
int nState = GetItemState(cell.row, col);
if ((nFlags & GVNI_DROPHILITED && nState & GVIS_DROPHILITED) ||
(nFlags & GVNI_FOCUSED && nState & GVIS_FOCUSED) ||
(nFlags & GVNI_SELECTED && nState & GVIS_SELECTED) ||
(nFlags & GVNI_READONLY && nState & GVIS_READONLY) ||
(nFlags & GVNI_FIXED && nState & GVIS_FIXED) ||
(nFlags & GVNI_MODIFIED && nState & GVIS_MODIFIED))
return CCellID(cell.row, col);
}
}
return CCellID(-1, -1);
}
// Sorts on a given column using the cell text
BOOL CGridCtrl::SortTextItems(int nCol, BOOL bAscending, LPARAM data /* = 0 */)
{
return CGridCtrl::SortItems(pfnCellTextCompare, nCol, bAscending, data);
}
void CGridCtrl::SetCompareFunction(PFNLVCOMPARE pfnCompare)
{
m_pfnCompare = pfnCompare;
}
// Sorts on a given column using the cell text and using the specified comparison
// function
BOOL CGridCtrl::SortItems(int nCol, BOOL bAscending, LPARAM data /* = 0 */)
{
SetSortColumn(nCol);
SetSortAscending(bAscending);
ResetSelectedRange();
SetFocusCell(-1, - 1);
if (m_pfnCompare == NULL)
return CGridCtrl::SortItems(pfnCellTextCompare, nCol, bAscending, data);
else
return CGridCtrl::SortItems(m_pfnCompare, nCol, bAscending, data);
}
// Sorts on a given column using the supplied compare function (see CListCtrl::SortItems)
BOOL CGridCtrl::SortItems(PFNLVCOMPARE pfnCompare, int nCol, BOOL bAscending,
LPARAM data /* = 0 */)
{
SetSortColumn(nCol);
SetSortAscending(bAscending);
ResetSelectedRange();
SetFocusCell(-1, -1);
return SortItems(pfnCompare, nCol, bAscending, data, GetFixedRowCount(), -1);
}
int CALLBACK CGridCtrl::pfnCellTextCompare(LPARAM lParam1, LPARAM lParam2, LPARAM lParamSort)
{
UNUSED_ALWAYS(lParamSort);
CGridCellBase* pCell1 = (CGridCellBase*) lParam1;
CGridCellBase* pCell2 = (CGridCellBase*) lParam2;
if (!pCell1 || !pCell2) return 0;
return _tcscmp(pCell1->GetText(), pCell2->GetText());
}
int CALLBACK CGridCtrl::pfnCellNumericCompare(LPARAM lParam1, LPARAM lParam2, LPARAM lParamSort)
{
UNUSED_ALWAYS(lParamSort);
CGridCellBase* pCell1 = (CGridCellBase*) lParam1;
CGridCellBase* pCell2 = (CGridCellBase*) lParam2;
if (!pCell1 || !pCell2) return 0;
int nValue1 = _ttol(pCell1->GetText());
int nValue2 = _ttol(pCell2->GetText());
if (nValue1 < nValue2)
return -1;
else if (nValue1 == nValue2)
return 0;
else
return 1;
}
CGridCtrl * CGridCtrl::m_This;
// private recursive sort implementation
bool CGridCtrl::NotVirtualCompare(int c1, int c2)
{
return ! CGridCtrl::m_This->m_pfnVirtualCompare(c1, c2);
}
BOOL CGridCtrl::SortItems(PFNLVCOMPARE pfnCompare, int nCol, BOOL bAscending, LPARAM data,
int low, int high)
{
if (nCol >= GetColumnCount())
return FALSE;
if (high == -1)
high = GetRowCount() - 1;
int lo = low;
int hi = high;
if (hi <= lo)
return FALSE;
if (GetVirtualMode())
{
ASSERT(m_pfnVirtualCompare);
m_CurCol = m_arColOrder[nCol];
m_This = this;
std::stable_sort(m_arRowOrder.begin() + m_nFixedRows, m_arRowOrder.end(),
bAscending ? m_pfnVirtualCompare : NotVirtualCompare);
return TRUE;
}
//LPARAM midItem = GetItemData((lo + hi)/2, nCol);
LPARAM pMidCell = (LPARAM) GetCell((lo + hi)/2, nCol);
// loop through the list until indices cross
while (lo <= hi)
{
// Find the first element that is greater than or equal to the partition
// element starting from the left Index.
if (bAscending)
while (lo < high && pfnCompare( (LPARAM)GetCell(lo, nCol), (LPARAM) pMidCell, data) < 0)
++lo;
else
while (lo < high && pfnCompare((LPARAM)GetCell(lo, nCol), pMidCell, data) > 0)
++lo;
// Find an element that is smaller than or equal to the partition
// element starting from the right Index.
if (bAscending)
while (hi > low && pfnCompare((LPARAM)GetCell(hi, nCol), pMidCell, data) > 0)
--hi;
else
while (hi > low && pfnCompare((LPARAM)GetCell(hi, nCol), pMidCell, data) < 0)
--hi;
// If the indexes have not crossed, swap if the items are not equal
if (lo <= hi)
{
// swap only if the items are not equal
if (pfnCompare((LPARAM)GetCell(lo, nCol), (LPARAM)GetCell(hi, nCol), data) != 0)
{
for (int col = 0; col < GetColumnCount(); col++)
{
CGridCellBase *pCell = GetCell(lo, col);
SetCell(lo, col, GetCell(hi, col));
SetCell(hi, col, pCell);
}
UINT nRowHeight = (*m_pArrayRowHeights)[lo];
(*m_pArrayRowHeights)[lo] = (*m_pArrayRowHeights)[hi];
(*m_pArrayRowHeights)[hi] = nRowHeight;
}
++lo;
--hi;
}
}
// If the right index has not reached the left side of array
// must now sort the left partition.
if (low < hi)
SortItems(pfnCompare, nCol, bAscending, data, low, hi);
// If the left index has not reached the right side of array
// must now sort the right partition.
if (lo < high)
SortItems(pfnCompare, nCol, bAscending, data, lo, high);
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CGridCtrl data functions
BOOL CGridCtrl::SetItem(const GV_ITEM* pItem)
{
if (!pItem || GetVirtualMode())
return FALSE;
CGridCellBase* pCell = GetCell(pItem->row, pItem->col);
if (!pCell)
return FALSE;
SetModified(TRUE, pItem->row, pItem->col);
if (pItem->mask & GVIF_TEXT)
pCell->SetText(pItem->strText);
if (pItem->mask & GVIF_PARAM)
pCell->SetData(pItem->lParam);
if (pItem->mask & GVIF_IMAGE)
pCell->SetImage(pItem->iImage);
if (pItem->mask & GVIF_STATE)
SetItemState(pItem->row, pItem->col, pItem->nState);
if (pItem->mask & GVIF_FORMAT)
pCell->SetFormat(pItem->nFormat);
if (pItem->mask & GVIF_BKCLR)
pCell->SetBackClr(pItem->crBkClr);
if (pItem->mask & GVIF_FGCLR)
pCell->SetTextClr(pItem->crFgClr);
if (pItem->mask & GVIF_FONT)
pCell->SetFont(&(pItem->lfFont));
if( pItem->mask & GVIF_MARGIN)
pCell->SetMargin( pItem->nMargin);
return TRUE;
}
BOOL CGridCtrl::GetItem(GV_ITEM* pItem)
{
if (!pItem)
return FALSE;
CGridCellBase* pCell = GetCell(pItem->row, pItem->col);
if (!pCell)
return FALSE;
if (pItem->mask & GVIF_TEXT)
pItem->strText = GetItemText(pItem->row, pItem->col);
if (pItem->mask & GVIF_PARAM)
pItem->lParam = pCell->GetData();;
if (pItem->mask & GVIF_IMAGE)
pItem->iImage = pCell->GetImage();
if (pItem->mask & GVIF_STATE)
pItem->nState = pCell->GetState();
if (pItem->mask & GVIF_FORMAT)
pItem->nFormat = pCell->GetFormat();
if (pItem->mask & GVIF_BKCLR)
pItem->crBkClr = pCell->GetBackClr();
if (pItem->mask & GVIF_FGCLR)
pItem->crFgClr = pCell->GetTextClr();
if (pItem->mask & GVIF_FONT)
memcpy(&(pItem->lfFont), pCell->GetFont(), sizeof(LOGFONT));
if( pItem->mask & GVIF_MARGIN)
pItem->nMargin = pCell->GetMargin();
return TRUE;
}
BOOL CGridCtrl::SetItemText(int nRow, int nCol, LPCTSTR str)
{
if (GetVirtualMode())
return FALSE;
CGridCellBase* pCell = GetCell(nRow, nCol);
if (!pCell)
return FALSE;
pCell->SetText(str);
SetModified(TRUE, nRow, nCol);
return TRUE;
}
#if !defined(_WIN32_WCE) || (_WIN32_WCE >= 210)
// EFW - 06/13/99 - Added to support printf-style formatting codes
BOOL CGridCtrl::SetItemTextFmt(int nRow, int nCol, LPCTSTR szFmt, ...)
{
if (GetVirtualMode())
return FALSE;
CString strText;
va_list argptr;
CGridCellBase* pCell = GetCell(nRow, nCol);
if (!pCell)
return FALSE;
// Format the message text
va_start(argptr, szFmt);
strText.FormatV(szFmt, argptr);
va_end(argptr);
pCell->SetText(strText);
SetModified(TRUE, nRow, nCol);
return TRUE;
}
// EFW - 06/13/99 - Added to support string resource ID. Supports
// a variable argument list too.
BOOL CGridCtrl::SetItemTextFmtID(int nRow, int nCol, UINT nID, ...)
{
if (GetVirtualMode())
return FALSE;
CString strFmt, strText;
va_list argptr;
CGridCellBase* pCell = GetCell(nRow, nCol);
if (!pCell)
return FALSE;
// Format the message text
va_start(argptr, nID);
VERIFY(strFmt.LoadString(nID));
strText.FormatV(strFmt, argptr);
va_end(argptr);
pCell->SetText(strText);
SetModified(TRUE, nRow, nCol);
return TRUE;
}
#endif
BOOL CGridCtrl::SetItemData(int nRow, int nCol, LPARAM lParam)
{
if (GetVirtualMode())
return FALSE;
CGridCellBase* pCell = GetCell(nRow, nCol);
if (!pCell)
return FALSE;
pCell->SetData(lParam);
SetModified(TRUE, nRow, nCol);
return TRUE;
}
LPARAM CGridCtrl::GetItemData(int nRow, int nCol) const
{
CGridCellBase* pCell = GetCell(nRow, nCol);
if (!pCell)
return (LPARAM) 0;
return pCell->GetData();
}
BOOL CGridCtrl::SetItemImage(int nRow, int nCol, int iImage)
{
if (GetVirtualMode())
return FALSE;
CGridCellBase* pCell = GetCell(nRow, nCol);
if (!pCell)
return FALSE;
pCell->SetImage(iImage);
SetModified(TRUE, nRow, nCol);
return TRUE;
}
int CGridCtrl::GetItemImage(int nRow, int nCol) const
{
CGridCellBase* pCell = GetCell(nRow, nCol);
ASSERT(pCell);
if (!pCell)
return -1;
return pCell->GetImage();
}
BOOL CGridCtrl::SetItemState(int nRow, int nCol, UINT state)
{
BOOL bSelected = IsCellSelected(nRow, nCol);
// If the cell is being unselected, remove it from the selected list
if (bSelected && !(state & GVIS_SELECTED))
{
CCellID cell;
DWORD key = MAKELONG(nRow, nCol);
if (m_SelectedCellMap.Lookup(key, (CCellID&)cell))
m_SelectedCellMap.RemoveKey(key);
}
// If cell is being selected, add it to the list of selected cells
else if (!bSelected && (state & GVIS_SELECTED))
{
CCellID cell(nRow, nCol);
m_SelectedCellMap.SetAt(MAKELONG(nRow, nCol), cell);
}
if (GetVirtualMode())
return FALSE;
CGridCellBase* pCell = GetCell(nRow, nCol);
ASSERT(pCell);
if (!pCell)
return FALSE;
// Set the cell's state
pCell->SetState(state);
return TRUE;
}
UINT CGridCtrl::GetItemState(int nRow, int nCol) const
{
CGridCellBase* pCell = GetCell(nRow, nCol);
ASSERT(pCell);
if (!pCell)
return 0;
return pCell->GetState();
}
BOOL CGridCtrl::SetItemFormat(int nRow, int nCol, UINT nFormat)
{
if (GetVirtualMode())
return FALSE;
CGridCellBase* pCell = GetCell(nRow, nCol);
ASSERT(pCell);
if (!pCell)
return FALSE;
pCell->SetFormat(nFormat);
return TRUE;
}
UINT CGridCtrl::GetItemFormat(int nRow, int nCol) const
{
CGridCellBase* pCell = GetCell(nRow, nCol);
ASSERT(pCell);
if (!pCell)
return 0;
return pCell->GetFormat();
}
BOOL CGridCtrl::SetItemBkColour(int nRow, int nCol, COLORREF cr /* = CLR_DEFAULT */)
{
if (GetVirtualMode())
return FALSE;
CGridCellBase* pCell = GetCell(nRow, nCol);
ASSERT(pCell);
if (!pCell)
return FALSE;
pCell->SetBackClr(cr);
return TRUE;
}
COLORREF CGridCtrl::GetItemBkColour(int nRow, int nCol) const
{
CGridCellBase* pCell = GetCell(nRow, nCol);
ASSERT(pCell);
if (!pCell)
return 0;
return pCell->GetBackClr();
}
BOOL CGridCtrl::SetItemFgColour(int nRow, int nCol, COLORREF cr /* = CLR_DEFAULT */)
{
if (GetVirtualMode())
return FALSE;
CGridCellBase* pCell = GetCell(nRow, nCol);
ASSERT(pCell);
if (!pCell)
return FALSE;
pCell->SetTextClr(cr);
return TRUE;
}
COLORREF CGridCtrl::GetItemFgColour(int nRow, int nCol) const
{
CGridCellBase* pCell = GetCell(nRow, nCol);
ASSERT(pCell);
if (!pCell)
return 0;
return pCell->GetTextClr();
}
BOOL CGridCtrl::SetItemFont(int nRow, int nCol, const LOGFONT* plf)
{
if (GetVirtualMode())
return FALSE;
CGridCellBase* pCell = GetCell(nRow, nCol);
ASSERT(pCell);
if (!pCell)
return FALSE;
pCell->SetFont(plf);
return TRUE;
}
const LOGFONT* CGridCtrl::GetItemFont(int nRow, int nCol)
{
CGridCellBase* pCell = GetCell(nRow, nCol);
ASSERT(pCell);
if (!pCell)
return GetDefaultCell(nRow < GetFixedRowCount(), nCol < GetFixedColumnCount())->GetFont();
return pCell->GetFont();
}
BOOL CGridCtrl::IsItemEditing(int nRow, int nCol)
{
CGridCellBase* pCell = GetCell(nRow, nCol);
ASSERT(pCell);
if (!pCell)
return FALSE;
return pCell->IsEditing();
}
////////////////////////////////////////////////////////////////////////////////////
// Row/Column size functions
long CGridCtrl::GetVirtualWidth() const
{
long lVirtualWidth = 0;
int iColCount = GetColumnCount();
for (int i = 0; i < iColCount; i++)
lVirtualWidth += m_arColWidths[i];
return lVirtualWidth;
}
long CGridCtrl::GetVirtualHeight() const
{
long lVirtualHeight = 0;
int iRowCount = GetRowCount();
for (int i = 0; i < iRowCount; i++)
lVirtualHeight += (*m_pArrayRowHeights)[i];
return lVirtualHeight;
}
int CGridCtrl::GetRowHeight(int nRow) const
{
ASSERT(nRow >= 0 && nRow < m_nRows);
if (nRow < 0 || nRow >= m_nRows)
return -1;
return (*m_pArrayRowHeights)[nRow];
}
int CGridCtrl::GetColumnWidth(int nCol) const
{
ASSERT(nCol >= 0 && nCol < m_nCols);
if (nCol < 0 || nCol >= m_nCols)
return -1;
return m_arColWidths[m_arColOrder[nCol]];
}
BOOL CGridCtrl::SetRowHeight(int nRow, int height)
{
ASSERT(nRow >= 0 && nRow < m_nRows && height >= 0);
if (nRow < 0 || nRow >= m_nRows || height < 0)
return FALSE;
(*m_pArrayRowHeights)[nRow] = height;
ResetScrollBars();
return TRUE;
}
BOOL CGridCtrl::SetColumnWidth(int nCol, int width)
{
ASSERT(nCol >= 0 && nCol < m_nCols && width >= 0);
if (nCol < 0 || nCol >= m_nCols || width < 0)
return FALSE;
m_arColWidths[m_arColOrder[nCol]] = width;
ResetScrollBars();
return TRUE;
}
// LUC
int CGridCtrl::GetFixedRowHeight(BOOL bIncludeFreezedRows /*=FALSE*/) const
{
int nHeight = 0;
int i;
for (i = 0; i < m_nFixedRows; i++)
nHeight += GetRowHeight(i);
if(bIncludeFreezedRows)
{
for ( ; i < (m_nFixedRows + m_nFreezedRows); i++)
nHeight += GetRowHeight(i);
}
return nHeight;
}
// LUC
int CGridCtrl::GetFixedColumnWidth(BOOL bIncludeFreezedCols /*=FALSE*/) const
{
int nWidth = 0;
int i;
for (i = 0; i < m_nFixedCols; i++)
nWidth += GetColumnWidth(i);
if(bIncludeFreezedCols)
{
for ( ; i < (m_nFixedCols + m_nFreezedCols); i++)
nWidth += GetColumnWidth(i);
}
return nWidth;
}
BOOL CGridCtrl::AutoSizeColumn(int nCol, UINT nAutoSizeStyle /*=GVS_DEFAULT*/,
BOOL bResetScroll /*=TRUE*/)
{
ASSERT(nCol >= 0 && nCol < m_nCols);
if (nCol < 0 || nCol >= m_nCols)
return FALSE;
// Skip hidden columns when autosizing
if( GetColumnWidth( nCol) <=0 )
return FALSE;
CSize size;
CDC* pDC = GetDC();
if (!pDC)
return FALSE;
int nWidth = 0;
ASSERT(GVS_DEFAULT <= nAutoSizeStyle && nAutoSizeStyle <= GVS_BOTH);
if (nAutoSizeStyle == GVS_DEFAULT)
nAutoSizeStyle = GetAutoSizeStyle();
int nStartRow = (nAutoSizeStyle & GVS_HEADER)? 0 : GetFixedRowCount();
int nEndRow = (nAutoSizeStyle & GVS_DATA)? GetRowCount()-1 : GetFixedRowCount()-1;
if (GetVirtualMode())
SendCacheHintToParent(CCellRange(nStartRow, nCol, nEndRow, nCol));
for (int nRow = nStartRow; nRow <= nEndRow; nRow++)
{
CGridCellBase* pCell = GetCell(nRow, nCol);
if (pCell)
{
pCell->SetState(pCell->GetState() | GVIS_AUTOSIZING);
size = pCell->GetCellExtent(pDC);
pCell->SetState(pCell->GetState() & ~GVIS_AUTOSIZING);
}
if (size.cx > nWidth)
nWidth = size.cx;
}
if (GetVirtualMode())
SendCacheHintToParent(CCellRange(-1,-1,-1,-1));
m_arColWidths[nCol] = nWidth;
ReleaseDC(pDC);
if (bResetScroll)
ResetScrollBars();
return TRUE;
}
BOOL CGridCtrl::AutoSizeRow(int nRow, BOOL bResetScroll /*=TRUE*/)
{
ASSERT(nRow >= 0 && nRow < m_nRows);
if (nRow < 0 || nRow >= m_nRows)
return FALSE;
// Skip hidden rows when autosizing
if( GetRowHeight( nRow) <=0 )
return FALSE;
CSize size;
CDC* pDC = GetDC();
if (!pDC)
return FALSE;
int nHeight = 0;
int nNumColumns = GetColumnCount();
if (GetVirtualMode())
SendCacheHintToParent(CCellRange(nRow, 0, nRow, nNumColumns));
for (int nCol = 0; nCol < nNumColumns; nCol++)
{
CGridCellBase* pCell = GetCell(nRow, nCol);
if (pCell)
{
pCell->SetState(pCell->GetState() | GVIS_AUTOSIZING);
size = pCell->GetCellExtent(pDC);
pCell->SetState(pCell->GetState() & ~GVIS_AUTOSIZING);
}
if (size.cy > nHeight)
nHeight = size.cy;
}
(*m_pArrayRowHeights)[nRow] = nHeight;
if (GetVirtualMode())
SendCacheHintToParent(CCellRange(-1,-1,-1,-1));
ReleaseDC(pDC);
if (bResetScroll)
ResetScrollBars();
return TRUE;
}
void CGridCtrl::AutoSizeColumns(UINT nAutoSizeStyle /*=GVS_DEFAULT*/)
{
int nNumColumns = GetColumnCount();
for (int nCol = 0; nCol < nNumColumns; nCol++)
{
// Skip hidden columns when autosizing
if( GetColumnWidth( nCol) > 0 )
AutoSizeColumn(nCol, nAutoSizeStyle, FALSE);
}
ResetScrollBars();
}
void CGridCtrl::AutoSizeRows()
{
int nNumRows = GetRowCount();
for (int nRow = 0; nRow < nNumRows; nRow++)
{
// Skip hidden rows when autosizing
if( GetRowHeight( nRow) > 0 )
AutoSizeRow(nRow, FALSE);
}
ResetScrollBars();
}
// sizes all rows and columns
// faster than calling both AutoSizeColumns() and AutoSizeRows()
void CGridCtrl::AutoSize(UINT nAutoSizeStyle /*=GVS_DEFAULT*/)
{
CDC* pDC = GetDC();
if (!pDC)
return;
int nNumColumns = GetColumnCount();
int nCol, nRow;
ASSERT(GVS_DEFAULT <= nAutoSizeStyle && nAutoSizeStyle <= GVS_BOTH);
if (nAutoSizeStyle == GVS_DEFAULT)
nAutoSizeStyle = GetAutoSizeStyle();
int nStartRow = (nAutoSizeStyle & GVS_HEADER)? 0 : GetFixedRowCount();
int nEndRow = (nAutoSizeStyle & GVS_DATA)? GetRowCount()-1 : GetFixedRowCount()-1;
if (GetVirtualMode())
SendCacheHintToParent(CCellRange(nStartRow, 0, nEndRow, nNumColumns));
// Row initialisation - only work on rows whose height is > 0
for (nRow = nStartRow; nRow <= nEndRow; nRow++)
{
if( GetRowHeight( nRow) > 0 )
(*m_pArrayRowHeights)[nRow] = 1;
}
CSize size;
for (nCol = 0; nCol < nNumColumns; nCol++)
{
// Don't size hidden columns or rows
if( GetColumnWidth( nCol) > 0 )
{
// Skip columns that are hidden, but now initialize
m_arColWidths[nCol] = 0;
for (nRow = nStartRow; nRow <= nEndRow; nRow++)
{
if( GetRowHeight( nRow) > 0 )
{
CGridCellBase* pCell = GetCell(nRow, nCol);
if (pCell)
{
pCell->SetState(pCell->GetState() | GVIS_AUTOSIZING);
size = pCell->GetCellExtent(pDC);
pCell->SetState(pCell->GetState() & ~GVIS_AUTOSIZING);
}
if (size.cx >(int) m_arColWidths[nCol])
m_arColWidths[nCol] = size.cx;
if (size.cy >(int) (*m_pArrayRowHeights)[nRow])
(*m_pArrayRowHeights)[nRow] = size.cy;
}
}
}
}
if (GetVirtualMode())
SendCacheHintToParent(CCellRange(-1,-1,-1,-1));
ReleaseDC(pDC);
ResetScrollBars();
Refresh();
}
// Expands the columns to fit the screen space. If bExpandFixed is FALSE then fixed
// columns will not be affected
void CGridCtrl::ExpandColumnsToFit(BOOL bExpandFixed /*=TRUE*/)
{
if (bExpandFixed)
{
if (GetColumnCount() <= 0) return;
}
else
{
if (GetColumnCount() <= GetFixedColumnCount()) return;
}
EnableScrollBars(SB_HORZ, FALSE);
int col;
CRect rect;
GetClientRect(rect);
int nFirstColumn = (bExpandFixed)? 0 : GetFixedColumnCount();
int nNumColumnsAffected = 0;
for (col = nFirstColumn; col < GetColumnCount(); col++)
{
if (m_arColWidths[col] > 0)
nNumColumnsAffected++;
}
if (nNumColumnsAffected <= 0)
return;
long virtualWidth = GetVirtualWidth();
int nDifference = rect.Width() -(int) virtualWidth;
int nColumnAdjustment = nDifference / nNumColumnsAffected;
for (col = nFirstColumn; col < GetColumnCount(); col++)
{
if (m_arColWidths[col] > 0)
m_arColWidths[col] += nColumnAdjustment;
}
if (nDifference > 0)
{
int leftOver = nDifference % nNumColumnsAffected;
for (int nCount = 0, col = nFirstColumn;
(col < GetColumnCount()) && (nCount < leftOver); col++, nCount++)
{
if (m_arColWidths[col] > 0)
m_arColWidths[col] += 1;
}
}
else
{
int leftOver = (-nDifference) % nNumColumnsAffected;
for (int nCount = 0, col = nFirstColumn;
(col < GetColumnCount()) && (nCount < leftOver); col++, nCount++)
{
if (m_arColWidths[col] > 0)
m_arColWidths[col] -= 1;
}
}
Refresh();
ResetScrollBars();
}
void CGridCtrl::ExpandLastColumn()
{
if (GetColumnCount() <= 0)
return;
// Search for last non-hidden column
int nLastColumn = GetColumnCount()-1;
while (m_arColWidths[nLastColumn] <= 0)
nLastColumn--;
if (nLastColumn <= 0)
return;
EnableScrollBars(SB_HORZ, FALSE);
CRect rect;
GetClientRect(rect);
long virtualWidth = GetVirtualWidth();
int nDifference = rect.Width() -(int) virtualWidth;
if (nDifference > 0)
{
//if (GetVirtualHeight() > rect.Height())
// nDifference -= GetSystemMetrics(SM_CXVSCROLL);
m_arColWidths[ nLastColumn ] += nDifference;
Refresh();
}
ResetScrollBars();
}
// Expands the rows to fit the screen space. If bExpandFixed is FALSE then fixed
// rows will not be affected
void CGridCtrl::ExpandRowsToFit(BOOL bExpandFixed /*=TRUE*/)
{
if (bExpandFixed)
{
if (GetRowCount() <= 0) return;
}
else
{
if (GetRowCount() <= GetFixedRowCount()) return;
}
EnableScrollBars(SB_VERT, FALSE);
int row;
CRect rect;
GetClientRect(rect);
int nFirstRow = (bExpandFixed)? 0 : GetFixedRowCount();
int nNumRowsAffected = 0;
for (row = nFirstRow; row < GetRowCount(); row++)
{
if ((*m_pArrayRowHeights)[row] > 0)
nNumRowsAffected++;
}
if (nNumRowsAffected <= 0)
return;
long virtualHeight = GetVirtualHeight();
int nDifference = rect.Height() -(int) virtualHeight;
int nRowAdjustment = nDifference / nNumRowsAffected;
for (row = nFirstRow; row < GetRowCount(); row++)
{
if ((*m_pArrayRowHeights)[row] > 0)
(*m_pArrayRowHeights)[row] += nRowAdjustment;
}
if (nDifference > 0)
{
int leftOver = nDifference % nNumRowsAffected;
for (int nCount = 0, row = nFirstRow;
(row < GetRowCount()) && (nCount < leftOver); row++, nCount++)
{
if ((*m_pArrayRowHeights)[row] > 0)
(*m_pArrayRowHeights)[row] += 1;
}
}
else
{
int leftOver = (-nDifference) % nNumRowsAffected;
for (int nCount = 0, row = nFirstRow;
(row < GetRowCount()) && (nCount < leftOver); row++, nCount++)
{
if ((*m_pArrayRowHeights)[row] > 0)
(*m_pArrayRowHeights)[row] -= 1;
}
}
Refresh();
ResetScrollBars();
}
// Expands the cells to fit the screen space. If bExpandFixed is FALSE then fixed
// cells will not be affected
void CGridCtrl::ExpandToFit(BOOL bExpandFixed /*=TRUE*/)
{
ExpandColumnsToFit(bExpandFixed); // This will remove any existing horz scrollbar
ExpandRowsToFit(bExpandFixed); // This will remove any existing vert scrollbar
ExpandColumnsToFit(bExpandFixed); // Just in case the first adjustment was with a vert
// scrollbar in place
Refresh();
}
/////////////////////////////////////////////////////////////////////////////////////
// Attributes
void CGridCtrl::SetVirtualMode(BOOL bVirtual)
{
DeleteAllItems();
m_bVirtualMode = bVirtual;
// Force some defaults here.
if (m_bVirtualMode)
{
SetEditable(FALSE);
SetAutoSizeStyle(GVS_HEADER);
SetFixedColumnSelection(FALSE);
SetFixedRowSelection(FALSE);
ResetVirtualOrder();
}
}
void CGridCtrl::SetGridLines(int nWhichLines /*=GVL_BOTH*/)
{
m_nGridLines = nWhichLines;
Refresh();
}
void CGridCtrl::SetListMode(BOOL bEnableListMode /*=TRUE*/)
{
ResetSelectedRange();
SetSortColumn(-1);
m_bListMode = bEnableListMode;
SetFixedRowSelection(FALSE);
Refresh();
}
void CGridCtrl::SetSortColumn(int nCol)
{
if (m_nSortColumn >= 0)
InvalidateCellRect(0, m_nSortColumn);
m_nSortColumn = nCol;
if (nCol >= 0)
InvalidateCellRect(0, nCol);
}
BOOL CGridCtrl::IsCellFixed(int nRow, int nCol)
{
return (nRow < GetFixedRowCount() || nCol < GetFixedColumnCount());
}
void CGridCtrl::SetModified(BOOL bModified /*=TRUE*/, int nRow /*=-1*/, int nCol /*=-1*/)
{
// Cannot guarantee sorting anymore...
if (nCol < 0 || nCol == GetSortColumn())
SetSortColumn(-1);
if (nRow >= 0 && nCol >= 0)
{
if (bModified)
{
SetItemState(nRow, nCol, GetItemState(nRow, nCol) | GVIS_MODIFIED);
m_bModified = TRUE;
}
else
SetItemState(nRow, nCol, GetItemState(nRow, nCol) & ~GVIS_MODIFIED);
}
else
m_bModified = bModified;
if (!m_bModified)
{
for (int row = 0; row < GetRowCount(); row++)
for (int col = 0; col < GetColumnCount(); col++)
SetItemState(row, col, GetItemState(row, col) & ~GVIS_MODIFIED);
}
}
BOOL CGridCtrl::GetModified(int nRow /*=-1*/, int nCol /*=-1*/)
{
if (nRow >= 0 && nCol >= 0)
return ( (GetItemState(nRow, nCol) & GVIS_MODIFIED) == GVIS_MODIFIED );
else
return m_bModified;
}
/////////////////////////////////////////////////////////////////////////////////////
// GridCtrl cell visibility tests and invalidation/redraw functions
void CGridCtrl::Refresh()
{
if (GetSafeHwnd() && m_bAllowDraw)
Invalidate();
}
// EnsureVisible supplied by Roelf Werkman
void CGridCtrl::EnsureVisible(int nRow, int nCol)
{
if (!m_bAllowDraw)
return;
CRect rectWindow;
/*
// set the scroll to the approximate position of row (Nigel Page-Jones)
int nPos = (int)((float)nRow / GetRowCount() * 1000);
float fPos = (float)nPos / 1000;
SCROLLINFO scrollInfo;
GetScrollInfo(SB_VERT, &scrollInfo);
scrollInfo.nPos = (int)(scrollInfo.nMax * fPos);
SetScrollInfo(SB_VERT, &scrollInfo, FALSE);
GetClientRect(rectWindow);
// redraw cells if necessary (Nigel Page-Jones)
CCellID idTopLeft = GetTopleftNonFixedCell(FALSE);
CCellID idNewTopLeft = GetTopleftNonFixedCell(TRUE);
if (idNewTopLeft != idTopLeft)
{
rectWindow.top = GetFixedRowHeight();
InvalidateRect(rectWindow);
}
*/
// We are going to send some scroll messages, which will steal the focus
// from it's rightful owner. Squirrel it away ourselves so we can give
// it back. (Damir)
// LUC: scroll msgs to steal the focus away from the rightful owner
//CWnd* pFocusWnd = GetFocus();
CCellRange VisibleCells = GetVisibleNonFixedCellRange();
int right = nCol - VisibleCells.GetMaxCol();
int left = VisibleCells.GetMinCol() - nCol;
// LUC
if(m_nScrollX < 0)
{
left++;
}
int down = nRow - VisibleCells.GetMaxRow();
int up = VisibleCells.GetMinRow() - nRow;
int iColumnStart;
int iRowStart;
iColumnStart = VisibleCells.GetMaxCol() + 1;
while( right > 0 )
{
if( GetColumnWidth( iColumnStart ) > 0 )
SendMessage( WM_HSCROLL, SB_LINERIGHT, 0 );
right--;
iColumnStart++;
}
iColumnStart = VisibleCells.GetMinCol() - 1;
while( left > 0 )
{
if( GetColumnWidth( iColumnStart ) > 0 )
SendMessage( WM_HSCROLL, SB_LINELEFT, 0 );
left--;
iColumnStart--;
}
iRowStart = VisibleCells.GetMaxRow() + 1;
while( down > 0 )
{
if( GetRowHeight( iRowStart ) > 0 )
SendMessage( WM_VSCROLL, SB_LINEDOWN, 0 );
down--;
iRowStart++;
}
iRowStart = VisibleCells.GetMinRow() - 1;
while( up > 0 )
{
if( GetRowHeight( iRowStart ) > 0 )
SendMessage( WM_VSCROLL, SB_LINEUP, 0 );
up--;
iRowStart--;
}
// Move one more if we only see a snall bit of the cell
CRect rectCell;
if (!GetCellRect(nRow, nCol, rectCell))
{
//if (pFocusWnd && ::IsWindow(pFocusWnd->GetSafeHwnd()))
// pFocusWnd->SetFocus();
return;
}
GetClientRect(rectWindow);
// LUC
// The previous fix was fixed properly by Martin Richter
while (rectCell.right > rectWindow.right
&& rectCell.left > GetFixedColumnWidth(m_bExcludeFreezedColsFromSelection)
&& IsVisibleHScroll() // Junlin Xu: added to prevent infinite loop
)
{
SendMessage(WM_HSCROLL, SB_LINERIGHT, 0);
if (!GetCellRect(nRow, nCol, rectCell))
{
// pFocusWnd->SetFocus();
return;
}
}
// LUC: in smooth scrolling the first visible non fixed cell might be partially visible
if(m_nScrollX < 0)
{
while (rectCell.left < (GetFixedColumnWidth(TRUE))
&& IsVisibleHScroll() // Junlin Xu: added to prevent infinite loop
)
{
SendMessage(WM_HSCROLL, SB_LINELEFT, 0);
if (!GetCellRect(nRow, nCol, rectCell))
{
//pFocusWnd->SetFocus();
return;
}
// LUC: After a scroll event, m_nScrollX might become 0
if(m_nScrollX >= 0)
return;
}
}
// LUC
while (rectCell.bottom > rectWindow.bottom
&& rectCell.top > GetFixedRowHeight(m_bExcludeFreezedRowsFromSelection)
&& IsVisibleVScroll() // Junlin Xu: added to prevent infinite loop
)
{
SendMessage(WM_VSCROLL, SB_LINEDOWN, 0);
if (!GetCellRect(nRow, nCol, rectCell))
{
//pFocusWnd->SetFocus();
return;
}
}
// restore focus to whoever owned it
// pFocusWnd->SetFocus();
}
BOOL CGridCtrl::IsCellEditable(CCellID &cell) const
{
return IsCellEditable(cell.row, cell.col);
}
BOOL CGridCtrl::IsCellEditable(int nRow, int nCol) const
{
return IsEditable() && ((GetItemState(nRow, nCol) & GVIS_READONLY) != GVIS_READONLY);
}
BOOL CGridCtrl::IsCellSelected(CCellID &cell) const
{
return IsCellSelected(cell.row, cell.col);
}
BOOL CGridCtrl::IsCellSelected(int nRow, int nCol) const
{
if (GetVirtualMode())
{
if (!IsSelectable())
return FALSE;
CCellID cell;
DWORD key = MAKELONG(nRow, nCol);
return (m_SelectedCellMap.Lookup(key, (CCellID&)cell));
}
else
return IsSelectable() && ((GetItemState(nRow, nCol) & GVIS_SELECTED) == GVIS_SELECTED);
}
BOOL CGridCtrl::IsCellVisible(CCellID cell)
{
return IsCellVisible(cell.row, cell.col);
}
BOOL CGridCtrl::IsCellVisible(int nRow, int nCol)
{
if (!IsWindow(m_hWnd))
return FALSE;
int x, y;
// LUC
CCellID TopLeft;
if (nCol >= GetFixedColumnCount(TRUE) || nRow >= GetFixedRowCount(TRUE))
{
TopLeft = GetTopleftNonFixedCell();
if (nCol >= GetFixedColumnCount(TRUE) && nCol < TopLeft.col)
return FALSE;
if (nRow >= GetFixedRowCount(TRUE) && nRow < TopLeft.row)
return FALSE;
}
CRect rect;
GetClientRect(rect);
if (nCol < GetFixedColumnCount(TRUE))
{
x = 0;
for (int i = 0; i <= nCol; i++)
{
if (x >= rect.right)
return FALSE;
x += GetColumnWidth(i);
}
}
else
{
// LUC
//x = GetFixedColumnWidth(TRUE);
x = GetFixedColumnWidth(TRUE) + m_nScrollX;
for (int i = TopLeft.col; i <= nCol; i++)
{
if (x >= rect.right)
return FALSE;
x += GetColumnWidth(i);
}
}
if (nRow < GetFixedRowCount(TRUE))
{
y = 0;
for (int i = 0; i <= nRow; i++)
{
if (y >= rect.bottom)
return FALSE;
y += GetRowHeight(i);
}
}
else
{
if (nRow < TopLeft.row)
return FALSE;
y = GetFixedRowHeight(TRUE);
for (int i = TopLeft.row; i <= nRow; i++)
{
if (y >= rect.bottom)
return FALSE;
y += GetRowHeight(i);
}
}
return TRUE;
}
BOOL CGridCtrl::InvalidateCellRect(const CCellID& cell)
{
return InvalidateCellRect(cell.row, cell.col);
}
BOOL CGridCtrl::InvalidateCellRect(const int row, const int col)
{
if (!::IsWindow(GetSafeHwnd()) || !m_bAllowDraw)
return FALSE;
if (!IsValid(row, col))
return FALSE;
if (!IsCellVisible(row, col))
return FALSE;
CRect rect;
if (!GetCellRect(row, col, rect))
return FALSE;
// LUC
int nRow = row;
int nCol = col;
GetTopLeftMergedCell(nRow, nCol, rect);
rect.right++;
rect.bottom++;
InvalidateRect(rect, TRUE);
return TRUE;
}
BOOL CGridCtrl::InvalidateCellRect(const CCellRange& cellRange)
{
ASSERT(IsValid(cellRange));
if (!::IsWindow(GetSafeHwnd()) || !m_bAllowDraw)
return FALSE;
CCellRange visibleCellRange = GetVisibleNonFixedCellRange().Intersect(cellRange);
CRect rect;
if (!GetCellRangeRect(visibleCellRange, rect))
return FALSE;
rect.right++;
rect.bottom++;
InvalidateRect(rect, TRUE);
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CGridCtrl Mouse stuff
// Handles mouse wheel notifications
// Note - if this doesn't work for win95 then use OnRegisteredMouseWheel instead
#if !defined(_WIN32_WCE) && (_MFC_VER >= 0x0421)
BOOL CGridCtrl::OnMouseWheel(UINT nFlags, short zDelta, CPoint pt)
{
// A m_nRowsPerWheelNotch value less than 0 indicates that the mouse
// wheel scrolls whole pages, not just lines.
if (m_nRowsPerWheelNotch == -1)
{
int nPagesScrolled = zDelta / 120;
if (nPagesScrolled > 0)
{
for (int i = 0; i < nPagesScrolled; i++)
{
PostMessage(WM_VSCROLL, SB_PAGEUP, 0);
}
}
else
{
for (int i = 0; i > nPagesScrolled; i--)
{
PostMessage(WM_VSCROLL, SB_PAGEDOWN, 0);
}
}
}
else
{
int nRowsScrolled = m_nRowsPerWheelNotch * zDelta / 120;
if (nRowsScrolled > 0)
{
for (int i = 0; i < nRowsScrolled; i++)
{
PostMessage(WM_VSCROLL, SB_LINEUP, 0);
}
}
else
{
for (int i = 0; i > nRowsScrolled; i--)
{
PostMessage(WM_VSCROLL, SB_LINEDOWN, 0);
}
}
}
return CWnd::OnMouseWheel(nFlags, zDelta, pt);
}
#endif // !defined(_WIN32_WCE) && (_MFC_VER >= 0x0421)
void CGridCtrl::OnMouseMove(UINT /*nFlags*/, CPoint point)
{
CRect rect;
GetClientRect(rect);
#ifndef GRIDCONTROL_NO_DRAGDROP
// If outside client area, return (unless we are drag n dropping)
if (m_MouseMode != MOUSE_DRAGGING && !rect.PtInRect(point))
return;
#endif
// Sometimes a MOUSEMOVE message can come after the left buttons
// has been let go, but before the BUTTONUP message hs been processed.
// We'll keep track of mouse buttons manually to avoid this.
// All bMouseButtonDown's have been replaced with the member m_bLMouseButtonDown
// BOOL bMouseButtonDown = ((nFlags & MK_LBUTTON) == MK_LBUTTON);
// If the left mouse button is up, then test to see if row/column sizing is imminent
if (!m_bLMouseButtonDown ||
(m_bLMouseButtonDown && m_MouseMode == MOUSE_NOTHING))
{
if (m_bAllowColumnResize && MouseOverColumnResizeArea(point))
{
if (m_MouseMode != MOUSE_OVER_COL_DIVIDE)
{
#ifndef _WIN32_WCE_NO_CURSOR
SetCursor(AfxGetApp()->LoadStandardCursor(IDC_SIZEWE));
#endif
m_MouseMode = MOUSE_OVER_COL_DIVIDE;
}
}
else if (m_bAllowRowResize && MouseOverRowResizeArea(point))
{
if (m_MouseMode != MOUSE_OVER_ROW_DIVIDE)
{
#ifndef _WIN32_WCE_NO_CURSOR
SetCursor(AfxGetApp()->LoadStandardCursor(IDC_SIZENS));
#endif
m_MouseMode = MOUSE_OVER_ROW_DIVIDE;
}
}
else if (m_MouseMode != MOUSE_NOTHING)
{
#ifndef _WIN32_WCE_NO_CURSOR
SetCursor(AfxGetApp()->LoadStandardCursor(IDC_ARROW));
#endif
m_MouseMode = MOUSE_NOTHING;
}
if (m_MouseMode == MOUSE_NOTHING)
{
CGridCellBase* pCell = NULL;
CCellID idCurrentCell;
if (!GetVirtualMode() || m_bTitleTips)
{
// Let the cell know that a big fat cursor is currently hovering
// over it.
idCurrentCell = GetCellFromPt(point);
pCell = GetCell(idCurrentCell.row, idCurrentCell.col);
if (pCell)
pCell->OnMouseOver();
}
#ifndef GRIDCONTROL_NO_TITLETIPS
// Titletips anyone? anyone?
if (m_bTitleTips)
{
CRect TextRect, CellRect;
if (pCell)
{
LPCTSTR szTipText = pCell->GetTipText();
if (!m_bRMouseButtonDown
&& szTipText && szTipText[0]
&& !pCell->IsEditing()
&& GetCellRect( idCurrentCell.row, idCurrentCell.col, &TextRect)
&& pCell->GetTipTextRect( &TextRect)
&& GetCellRect(idCurrentCell.row, idCurrentCell.col, CellRect) )
{
// LUC
int row = idCurrentCell.row;
int col = idCurrentCell.col;
GetTopLeftMergedCell(row, col, CellRect);
// TRACE0("Showing TitleTip\n");
ShowTitleTip(pCell, row, col, CellRect,
TextRect, pCell->GetText(), 0, CellRect,
pCell->GetFont(), GetTitleTipTextClr(), GetTitleTipBackClr());
}
}
}
#endif
}
m_LastMousePoint = point;
return;
}
if (!IsValid(m_LeftClickDownCell))
{
m_LastMousePoint = point;
return;
}
// If the left mouse button is down, then process appropriately
if (m_bLMouseButtonDown)
{
switch (m_MouseMode)
{
case MOUSE_SELECT_ALL:
break;
case MOUSE_SELECT_COL:
case MOUSE_SELECT_ROW:
case MOUSE_SELECT_CELLS:
{
CCellID idCurrentCell = GetCellFromPt(point);
if (!IsValid(idCurrentCell))
return;
if (idCurrentCell != GetFocusCell())
{
OnSelecting(idCurrentCell);
// EFW - BUG FIX - Keep the appropriate cell row and/or
// column focused. A fix in SetFocusCell() will place
// the cursor in a non-fixed cell as needed.
// LUC
if((idCurrentCell.row >= GetFixedRowCount(m_bExcludeFreezedRowsFromSelection) &&
idCurrentCell.col >= GetFixedColumnCount(m_bExcludeFreezedColsFromSelection)) ||
m_MouseMode==MOUSE_SELECT_COL ||
m_MouseMode==MOUSE_SELECT_ROW)
{
SetFocusCell(idCurrentCell);
}
}
break;
}
case MOUSE_SIZING_COL:
{
CDC* pDC = GetDC();
if (!pDC)
break;
CRect oldInvertedRect(m_LastMousePoint.x, rect.top,
m_LastMousePoint.x + 2, rect.bottom);
pDC->InvertRect(&oldInvertedRect);
CRect newInvertedRect(point.x, rect.top,
point.x + 2, rect.bottom);
pDC->InvertRect(&newInvertedRect);
ReleaseDC(pDC);
}
break;
case MOUSE_SIZING_ROW:
{
CDC* pDC = GetDC();
if (!pDC)
break;
CRect oldInvertedRect(rect.left, m_LastMousePoint.y,
rect.right, m_LastMousePoint.y + 2);
pDC->InvertRect(&oldInvertedRect);
CRect newInvertedRect(rect.left, point.y,
rect.right, point.y + 2);
pDC->InvertRect(&newInvertedRect);
ReleaseDC(pDC);
}
break;
#ifndef GRIDCONTROL_NO_DRAGDROP
case MOUSE_PREPARE_EDIT:
case MOUSE_PREPARE_DRAG:
m_MouseMode = MOUSE_PREPARE_DRAG;
OnBeginDrag();
break;
#endif
}
}
m_LastMousePoint = point;
}
// Returns the point inside the cell that was clicked (coords relative to cell top left)
CPoint CGridCtrl::GetPointClicked(int nRow, int nCol, const CPoint& point)
{
CPoint PointCellOrigin;
if( !GetCellOrigin( nRow, nCol, &PointCellOrigin) )
return CPoint( 0, 0);
// LUC: PointCellOrigin.x might be less than 0 since we might have smooth horizontal scrolling enabled (GetGridCtrl()->m_nScrollX < 0)
// So cannot allow negative relative value
if(PointCellOrigin.x < 0)
PointCellOrigin.x = 0;
CPoint PointClickedCellRelative( point);
PointClickedCellRelative -= PointCellOrigin;
return PointClickedCellRelative;
}
void CGridCtrl::OnLButtonDblClk(UINT nFlags, CPoint point)
{
TRACE0("CGridCtrl::OnLButtonDblClk\n");
// LUC
CCellID cellOriginal;
CCellID cell = GetCellFromPt(point, TRUE, cellOriginal);
if( !IsValid( cell) )
{
//ASSERT(FALSE);
return;
}
#ifdef _WIN32_WCE
if (MouseOverColumnResizeArea(point))
#else
if (m_MouseMode == MOUSE_OVER_COL_DIVIDE)
#endif
{
CPoint start;
if (!GetCellOrigin(0, cell.col, &start))
return;
if (point.x - start.x < m_nResizeCaptureRange) // Clicked right of border
cell.col--;
// ignore columns that are hidden and look left towards first visible column
BOOL bFoundVisible = FALSE;
while( cell.col >= 0)
{
if( GetColumnWidth( cell.col) > 0)
{
bFoundVisible = TRUE;
break;
}
cell.col--;
}
if( !bFoundVisible)
return;
AutoSizeColumn(cell.col, GetAutoSizeStyle());
Invalidate();
}
#ifdef _WIN32_WCE
else if (MouseOverRowResizeArea(point))
#else
else if (m_MouseMode == MOUSE_OVER_ROW_DIVIDE)
#endif
{
CPoint start;
if (!GetCellOrigin(0, cell.col, &start))
return;
if (point.y - start.y < m_nResizeCaptureRange) // Clicked below border
cell.row--;
// ignore rows that are hidden and look up towards first visible row
BOOL bFoundVisible = FALSE;
while( cell.row >= 0)
{
if( GetRowHeight( cell.row) > 0)
{
bFoundVisible = TRUE;
break;
}
cell.row--;
}
if( !bFoundVisible)
return;
AutoSizeRow(cell.row);
Invalidate();
}
else if (m_MouseMode == MOUSE_NOTHING)
{
CPoint pointClickedRel;
pointClickedRel = GetPointClicked( cell.row, cell.col, point);
CGridCellBase* pCell = NULL;
if (IsValid(cell))
pCell = GetCell(cell.row, cell.col);
// Clicked in the text area? Only then will cell selection work
BOOL bInTextArea = FALSE;
if (pCell)
{
// LUC
CRect rectCell;
if (GetCellRect(cellOriginal.row, cellOriginal.col, rectCell) && pCell->GetTextRect(rectCell))
bInTextArea = rectCell.PtInRect(point);
}
if (cell.row >= m_nFixedRows && IsValid(m_LeftClickDownCell) &&
cell.col >= m_nFixedCols && bInTextArea)
{
OnEditCell(cell.row, cell.col, pointClickedRel, VK_LBUTTON);
}
else if (m_bListMode)
{
if (!IsValid(cell))
return;
if (cell.row >= m_nFixedRows && cell.col >= m_nFixedCols && bInTextArea)
OnEditCell(cell.row, cell.col, pointClickedRel, VK_LBUTTON);
}
if (IsValid(cell))
{
CGridCellBase* pCell = GetCell(cell.row, cell.col);
if (pCell)
{
CRect cellRect;
GetCellRect(cell.row, cell.col, cellRect);
pCell->OnDblClick(cellRect, pointClickedRel);
}
SendMessageToParent(cell.row, cell.col, NM_DBLCLK);
}
}
CWnd::OnLButtonDblClk(nFlags, point);
}
void CGridCtrl::OnLButtonDown(UINT nFlags, CPoint point)
{
#ifdef GRIDCONTROL_USE_TITLETIPS
// EFW - Bug Fix
m_TitleTip.Hide(); // hide any titletips
#endif
// TRACE0("CGridCtrl::OnLButtonDown\n");
// CWnd::OnLButtonDown(nFlags, point);
SetFocus();
m_CurCol = -1;
m_bLMouseButtonDown = TRUE;
m_LeftClickDownPoint = point;
// LUC
CCellID cellOriginal;
m_LeftClickDownCell = GetCellFromPt(point, TRUE, cellOriginal);
if (!IsValid(m_LeftClickDownCell))
return;
m_CurRow = m_LeftClickDownCell.row;
// If the SHIFT key is not down, then the start of the selection area should be the
// cell just clicked. Otherwise, keep the previous selection-start-cell so the user
// can add to their previous cell selections in an intuitive way. If no selection-
// start-cell has been specified, then set it's value here and now.
if ((nFlags & MK_SHIFT) != MK_SHIFT)
m_SelectionStartCell = m_LeftClickDownCell;
else
{
if (!IsValid(m_SelectionStartCell))
m_SelectionStartCell = m_idCurrentCell;
}
EndEditing();
// tell the cell about it
CGridCellBase* pCell = GetCell(m_LeftClickDownCell.row, m_LeftClickDownCell.col);
if (pCell)
{
CRect cellRect;
GetCellRect(m_idCurrentCell.row, m_idCurrentCell.col, cellRect);
pCell->OnClickDown(cellRect, GetPointClicked( m_LeftClickDownCell.row, m_LeftClickDownCell.col, point));
}
// Clicked in the text area? Only then will cell selection work
BOOL bInTextArea = FALSE;
if (pCell)
{
CRect rectCell;
// LUC
//if (GetCellRect(m_LeftClickDownCell.row, m_LeftClickDownCell.col, rectCell) &&
// pCell->GetTextRect(rectCell))
if (GetCellRect(cellOriginal.row, cellOriginal.col, rectCell) &&
pCell->GetTextRect(rectCell))
{
bInTextArea = rectCell.PtInRect(point);
}
}
// If the user clicks on the current cell, then prepare to edit it.
// (If the user moves the mouse, then dragging occurs)
if (m_LeftClickDownCell == m_idCurrentCell &&
!(nFlags & MK_CONTROL) && bInTextArea &&
IsCellEditable(m_LeftClickDownCell))
{
m_MouseMode = MOUSE_PREPARE_EDIT;
return;
}
// If the user clicks on a selected cell, then prepare to drag it.
// (If the user moves the mouse, then dragging occurs)
else if (IsCellSelected(m_LeftClickDownCell))
{
SetFocusCell(m_LeftClickDownCell.row, m_LeftClickDownCell.col);
// If control is pressed then unselect the cell or row (depending on the list mode)
if (nFlags & MK_CONTROL)
{
SetFocusCell(m_LeftClickDownCell);
if (GetListMode())
SelectRows(m_LeftClickDownCell, TRUE, FALSE);
else
SelectCells(m_LeftClickDownCell, TRUE, FALSE);
return;
}
#ifndef GRIDCONTROL_NO_DRAGDROP
else if (m_bAllowDragAndDrop)
m_MouseMode = MOUSE_PREPARE_DRAG;
#endif
}
else if (m_MouseMode != MOUSE_OVER_COL_DIVIDE &&
m_MouseMode != MOUSE_OVER_ROW_DIVIDE)
{
if (m_LeftClickDownCell.row >= GetFixedRowCount() &&
m_LeftClickDownCell.col >= GetFixedColumnCount())
{
SetFocusCell(m_LeftClickDownCell.row, m_LeftClickDownCell.col);
}
else
SetFocusCell(-1, -1);
//Don't set focus on any cell if the user clicked on a fixed cell - David Pritchard
//if (GetRowCount() > GetFixedRowCount() &&
// GetColumnCount() > GetFixedColumnCount())
// SetFocusCell(max(m_LeftClickDownCell.row, m_nFixedRows),
// max(m_LeftClickDownCell.col, m_nFixedCols));
}
SetCapture();
if (m_MouseMode == MOUSE_NOTHING)
{
if (m_bAllowColumnResize && MouseOverColumnResizeArea(point))
{
if (m_MouseMode != MOUSE_OVER_COL_DIVIDE)
{
#ifndef _WIN32_WCE_NO_CURSOR
SetCursor(AfxGetApp()->LoadStandardCursor(IDC_SIZEWE));
#endif
m_MouseMode = MOUSE_OVER_COL_DIVIDE;
}
}
else if (m_bAllowRowResize && MouseOverRowResizeArea(point))
{
if (m_MouseMode != MOUSE_OVER_ROW_DIVIDE)
{
#ifndef _WIN32_WCE_NO_CURSOR
SetCursor(AfxGetApp()->LoadStandardCursor(IDC_SIZENS));
#endif
m_MouseMode = MOUSE_OVER_ROW_DIVIDE;
}
}
// else if (m_MouseMode != MOUSE_NOTHING)
//{
// SetCursor(AfxGetApp()->LoadStandardCursor(IDC_ARROW));
// m_MouseMode = MOUSE_NOTHING;
//}
}
if (m_MouseMode == MOUSE_OVER_COL_DIVIDE) // sizing column
{
m_MouseMode = MOUSE_SIZING_COL;
// Kludge for if we are over the last column...
if (GetColumnWidth(GetColumnCount()-1) < m_nResizeCaptureRange)
{
CRect VisRect;
GetVisibleNonFixedCellRange(VisRect);
if (abs(point.x - VisRect.right) < m_nResizeCaptureRange)
m_LeftClickDownCell.col = GetColumnCount()-1;
}
CPoint start;
if (!GetCellOrigin(0, m_LeftClickDownCell.col, &start))
return;
if( !m_bHiddenColUnhide)
{
// ignore columns that are hidden and look left towards first visible column
BOOL bLookForVisible = TRUE;
BOOL bIsCellRightBorder = point.x - start.x >= m_nResizeCaptureRange;
if( bIsCellRightBorder
&& m_LeftClickDownCell.col + 1 >= GetColumnCount() )
{
// clicked on last column's right border
// if last column is visible, don't do anything
if( m_LeftClickDownCell.col >= 0)
bLookForVisible = FALSE;
}
if( bLookForVisible)
{
// clicked on column divider other than last right border
BOOL bFoundVisible = FALSE;
int iOffset = 1;
if( bIsCellRightBorder)
iOffset = 0;
while( m_LeftClickDownCell.col - iOffset >= 0)
{
if( GetColumnWidth( m_LeftClickDownCell.col - iOffset) > 0)
{
bFoundVisible = TRUE;
break;
}
m_LeftClickDownCell.col--;
}
if( !bFoundVisible)
return;
}
}
CRect rect;
GetClientRect(rect);
CRect invertedRect(point.x, rect.top, point.x + 2, rect.bottom);
CDC* pDC = GetDC();
if (pDC)
{
pDC->InvertRect(&invertedRect);
ReleaseDC(pDC);
}
// If we clicked to the right of the colimn divide, then reset the click-down cell
// as the cell to the left of the column divide - UNLESS we clicked on the last column
// and the last column is teensy (kludge fix)
if (point.x - start.x < m_nResizeCaptureRange)
{
if (m_LeftClickDownCell.col < GetColumnCount()-1 ||
GetColumnWidth(GetColumnCount()-1) >= m_nResizeCaptureRange)
{
if (!GetCellOrigin(0, --m_LeftClickDownCell.col, &start))
return;
}
}
// Allow a cell resize width no greater than that which can be viewed within
// the grid itself
int nMaxCellWidth = rect.Width()-GetFixedColumnWidth();
rect.left = start.x + 1;
rect.right = rect.left + nMaxCellWidth;
ClientToScreen(rect);
#ifndef _WIN32_WCE_NO_CURSOR
ClipCursor(rect);
#endif
}
else if (m_MouseMode == MOUSE_OVER_ROW_DIVIDE) // sizing row
{
m_MouseMode = MOUSE_SIZING_ROW;
// Kludge for if we are over the last column...
if (GetRowHeight(GetRowCount()-1) < m_nResizeCaptureRange)
{
CRect VisRect;
GetVisibleNonFixedCellRange(VisRect);
if (abs(point.y - VisRect.bottom) < m_nResizeCaptureRange)
m_LeftClickDownCell.row = GetRowCount()-1;
}
CPoint start;
if (!GetCellOrigin(m_LeftClickDownCell, &start))
return;
if( !m_bHiddenRowUnhide)
{
// ignore rows that are hidden and look up towards first visible row
BOOL bLookForVisible = TRUE;
BOOL bIsCellBottomBorder = point.y - start.y >= m_nResizeCaptureRange;
if( bIsCellBottomBorder
&& m_LeftClickDownCell.row + 1 >= GetRowCount() )
{
// clicked on last row's bottom border
// if last row is visible, don't do anything
if( m_LeftClickDownCell.row >= 0)
bLookForVisible = FALSE;
}
if( bLookForVisible)
{
// clicked on row divider other than last bottom border
BOOL bFoundVisible = FALSE;
int iOffset = 1;
if( bIsCellBottomBorder)
iOffset = 0;
while( m_LeftClickDownCell.row - iOffset >= 0)
{
if( GetRowHeight( m_LeftClickDownCell.row - iOffset) > 0)
{
bFoundVisible = TRUE;
break;
}
m_LeftClickDownCell.row--;
}
if( !bFoundVisible)
return;
}
}
CRect rect;
GetClientRect(rect);
CRect invertedRect(rect.left, point.y, rect.right, point.y + 2);
CDC* pDC = GetDC();
if (pDC)
{
pDC->InvertRect(&invertedRect);
ReleaseDC(pDC);
}
// If we clicked below the row divide, then reset the click-down cell
// as the cell above the row divide - UNLESS we clicked on the last row
// and the last row is teensy (kludge fix)
if (point.y - start.y < m_nResizeCaptureRange) // clicked below border
{
if (m_LeftClickDownCell.row < GetRowCount()-1 ||
GetRowHeight(GetRowCount()-1) >= m_nResizeCaptureRange)
{
if (!GetCellOrigin(--m_LeftClickDownCell.row, 0, &start))
return;
}
}
int nMaxCellHeight = rect.Height()-GetFixedRowHeight();
rect.top = start.y + 1;
rect.bottom = rect.top + nMaxCellHeight;
ClientToScreen(rect);
#ifndef _WIN32_WCE_NO_CURSOR
ClipCursor(rect);
#endif
}
else
#ifndef GRIDCONTROL_NO_DRAGDROP
if (m_MouseMode != MOUSE_PREPARE_DRAG) // not sizing or editing -- selecting
#endif
{
SendMessageToParent(m_LeftClickDownCell.row, m_LeftClickDownCell.col, GVN_SELCHANGING);
// If Ctrl pressed, save the current cell selection. This will get added
// to the new cell selection at the end of the cell selection process
m_PrevSelectedCellMap.RemoveAll();
if (nFlags & MK_CONTROL)
{
for (POSITION pos = m_SelectedCellMap.GetStartPosition(); pos != NULL; )
{
DWORD key;
CCellID cell;
m_SelectedCellMap.GetNextAssoc(pos, key, (CCellID&)cell);
m_PrevSelectedCellMap.SetAt(key, cell);
}
}
if (m_LeftClickDownCell.row < GetFixedRowCount())
{
OnFixedRowClick(m_LeftClickDownCell);
if(m_AllowReorderColumn && m_LeftClickDownCell.col >= GetFixedColumnCount())
{
ResetSelectedRange(); // TODO : This is not the better solution, as we do not see why clicking in column header should reset selection
//but the state of selection is instable after drag (at least until someone debugs it), so better clear it allways.
m_MouseMode = MOUSE_PREPARE_DRAG;
m_CurCol = m_LeftClickDownCell.col;
}
}
else if (m_LeftClickDownCell.col < GetFixedColumnCount())
OnFixedColumnClick(m_LeftClickDownCell);
else
{
m_MouseMode = m_bListMode? MOUSE_SELECT_ROW : MOUSE_SELECT_CELLS;
OnSelecting(m_LeftClickDownCell);
m_nTimerID = SetTimer(WM_LBUTTONDOWN, m_nTimerInterval, 0);
}
}
m_LastMousePoint = point;
}
void CGridCtrl::OnLButtonUp(UINT nFlags, CPoint point)
{
// TRACE0("CGridCtrl::OnLButtonUp\n");
CWnd::OnLButtonUp(nFlags, point);
m_bLMouseButtonDown = FALSE;
#ifndef _WIN32_WCE_NO_CURSOR
ClipCursor(NULL);
#endif
if (GetCapture()->GetSafeHwnd() == GetSafeHwnd())
{
ReleaseCapture();
KillTimer(m_nTimerID);
m_nTimerID = 0;
// LUC
m_bExcludeFreezedRowsFromSelection = FALSE;
m_bExcludeFreezedColsFromSelection = FALSE;
}
CPoint pointClickedRel;
pointClickedRel = GetPointClicked( m_idCurrentCell.row, m_idCurrentCell.col, point);
// m_MouseMode == MOUSE_PREPARE_EDIT only if user clicked down on current cell
// and then didn't move mouse before clicking up (releasing button)
if (m_MouseMode == MOUSE_PREPARE_EDIT)
{
OnEditCell(m_idCurrentCell.row, m_idCurrentCell.col, pointClickedRel, VK_LBUTTON);
}
#ifndef GRIDCONTROL_NO_DRAGDROP
// m_MouseMode == MOUSE_PREPARE_DRAG only if user clicked down on a selected cell
// and then didn't move mouse before clicking up (releasing button)
else if (m_MouseMode == MOUSE_PREPARE_DRAG)
{
CGridCellBase* pCell = GetCell(m_idCurrentCell.row, m_idCurrentCell.col);
if (pCell)
{
CRect cellRect;
GetCellRect(m_idCurrentCell.row, m_idCurrentCell.col, cellRect);
pCell->OnClick(cellRect, GetPointClicked( m_idCurrentCell.row, m_idCurrentCell.col, point) );
}
SendMessageToParent(m_LeftClickDownCell.row, m_LeftClickDownCell.col, NM_CLICK);
SendMessageToParent(m_LeftClickDownCell.row, m_LeftClickDownCell.col, GVN_SELCHANGING);
ResetSelectedRange();
SendMessageToParent(m_idCurrentCell.row, m_idCurrentCell.col, GVN_SELCHANGED);
}
#endif
else if (m_MouseMode == MOUSE_SIZING_COL)
{
CRect rect;
GetClientRect(rect);
CRect invertedRect(m_LastMousePoint.x, rect.top, m_LastMousePoint.x + 2, rect.bottom);
CDC* pDC = GetDC();
if (pDC)
{
pDC->InvertRect(&invertedRect);
ReleaseDC(pDC);
}
if (m_LeftClickDownPoint != point && (point.x != 0 || point.y != 0)) // 0 pt fix by email1@bierling.net
{
CPoint start;
if (!GetCellOrigin(m_LeftClickDownCell, &start))
return;
int nColumnWidth = __max(point.x - start.x, m_bAllowColHide? 0 : 1);
SetColumnWidth(m_LeftClickDownCell.col, nColumnWidth);
ResetScrollBars();
Invalidate();
}
}
else if (m_MouseMode == MOUSE_SIZING_ROW)
{
CRect rect;
GetClientRect(rect);
CRect invertedRect(rect.left, m_LastMousePoint.y, rect.right, m_LastMousePoint.y + 2);
CDC* pDC = GetDC();
if (pDC)
{
pDC->InvertRect(&invertedRect);
ReleaseDC(pDC);
}
if (m_LeftClickDownPoint != point && (point.x != 0 || point.y != 0)) // 0 pt fix by email1@bierling.net
{
CPoint start;
if (!GetCellOrigin(m_LeftClickDownCell, &start))
return;
int nRowHeight = __max(point.y - start.y, m_bAllowRowHide? 0 : 1);
SetRowHeight(m_LeftClickDownCell.row, nRowHeight);
ResetScrollBars();
Invalidate();
}
}
else
{
SendMessageToParent(m_idCurrentCell.row, m_idCurrentCell.col, GVN_SELCHANGED);
CGridCellBase* pCell = GetCell(m_idCurrentCell.row, m_idCurrentCell.col);
if (pCell)
{
CRect cellRect;
GetCellRect(m_idCurrentCell.row, m_idCurrentCell.col, cellRect);
pCell->OnClick(cellRect, GetPointClicked( m_idCurrentCell.row, m_idCurrentCell.col, point) );
}
SendMessageToParent(m_LeftClickDownCell.row, m_LeftClickDownCell.col, NM_CLICK);
}
m_MouseMode = MOUSE_NOTHING;
#ifndef _WIN32_WCE_NO_CURSOR
SetCursor(AfxGetApp()->LoadStandardCursor(IDC_ARROW));
#endif
if (!IsValid(m_LeftClickDownCell))
return;
CWnd *pOwner = GetOwner();
if (pOwner && IsWindow(pOwner->m_hWnd))
pOwner->PostMessage(WM_COMMAND, MAKELONG(GetDlgCtrlID(), BN_CLICKED),
(LPARAM) GetSafeHwnd());
}
#ifndef _WIN32_WCE
void CGridCtrl::OnRButtonDown(UINT nFlags, CPoint point)
{
CWnd::OnRButtonDown(nFlags, point);
m_bRMouseButtonDown = TRUE;
#ifdef GRIDCONTROL_USE_TITLETIPS
TRACE0("Hiding TitleTip\n");
m_TitleTip.Hide(); // hide any titletips
#endif
}
// EFW - Added to forward right click to parent so that a context
// menu can be shown without deriving a new grid class.
void CGridCtrl::OnRButtonUp(UINT nFlags, CPoint point)
{
CWnd::OnRButtonUp(nFlags, point);
m_bRMouseButtonDown = FALSE;
CCellID FocusCell;
FocusCell = GetCellFromPt(point);
EndEditing(); // Auto-destroy any InPlaceEdit's
// If not a valid cell, pass -1 for row and column
if(!IsValid(FocusCell))
SendMessageToParent(-1, -1, NM_RCLICK);
else
{
SetFocusCell(-1,-1);
SetFocusCell(__max(FocusCell.row, m_nFixedRows),
__max(FocusCell.col, m_nFixedCols));
// tell the cell about it
CGridCellBase* pCell = GetCell(FocusCell.row, FocusCell.col);
if (pCell)
{
CRect cellRect;
GetCellRect(FocusCell.row, FocusCell.col, cellRect);
pCell->OnRClick(cellRect, GetPointClicked( FocusCell.row, FocusCell.col, point) );
}
SendMessageToParent(FocusCell.row, FocusCell.col, NM_RCLICK);
}
}
#endif
#if !defined(_WIN32_WCE_NO_PRINTING) && !defined(GRIDCONTROL_NO_PRINTING)
/////////////////////////////////////////////////////////////////////////////
// CGridCtrl printing
// EFW - New print margin support functions
void CGridCtrl::SetPrintMarginInfo(int nHeaderHeight, int nFooterHeight,
int nLeftMargin, int nRightMargin, int nTopMargin,
int nBottomMargin, int nGap)
{
// If any parameter is -1, keep the existing setting
if(nHeaderHeight > -1)
m_nHeaderHeight = nHeaderHeight;
if(nFooterHeight > -1)
m_nFooterHeight = nFooterHeight;
if(nLeftMargin > -1)
m_nLeftMargin = nLeftMargin;
if(nRightMargin > -1)
m_nRightMargin = nRightMargin;
if(nTopMargin > -1)
m_nTopMargin = nTopMargin;
if(nBottomMargin > -1)
m_nBottomMargin = nBottomMargin;
if(nGap > -1)
m_nGap = nGap;
}
void CGridCtrl::GetPrintMarginInfo(int &nHeaderHeight, int &nFooterHeight,
int &nLeftMargin, int &nRightMargin, int &nTopMargin,
int &nBottomMargin, int &nGap)
{
nHeaderHeight = m_nHeaderHeight;
nFooterHeight = m_nFooterHeight;
nLeftMargin = m_nLeftMargin;
nRightMargin = m_nRightMargin;
nTopMargin = m_nTopMargin;
nBottomMargin = m_nBottomMargin;
nGap = m_nGap;
}
void CGridCtrl::Print(CPrintDialog* pPrntDialog /*=NULL*/)
{
CDC dc;
if (pPrntDialog == NULL)
{
CPrintDialog printDlg(FALSE);
if (printDlg.DoModal() != IDOK) // Get printer settings from user
return;
dc.Attach(printDlg.GetPrinterDC()); // attach a printer DC
}
else
dc.Attach(pPrntDialog->GetPrinterDC()); // attach a printer DC
dc.m_bPrinting = TRUE;
CString strTitle;
strTitle.LoadString(AFX_IDS_APP_TITLE);
if( strTitle.IsEmpty() )
{
CWnd *pParentWnd = GetParent();
while (pParentWnd)
{
pParentWnd->GetWindowText(strTitle);
if (strTitle.GetLength()) // can happen if it is a CView, CChildFrm has the title
break;
pParentWnd = pParentWnd->GetParent();
}
}
DOCINFO di; // Initialise print doc details
memset(&di, 0, sizeof (DOCINFO));
di.cbSize = sizeof (DOCINFO);
di.lpszDocName = strTitle;
BOOL bPrintingOK = dc.StartDoc(&di); // Begin a new print job
CPrintInfo Info;
Info.m_rectDraw.SetRect(0,0, dc.GetDeviceCaps(HORZRES), dc.GetDeviceCaps(VERTRES));
OnBeginPrinting(&dc, &Info); // Initialise printing
for (UINT page = Info.GetMinPage(); page <= Info.GetMaxPage() && bPrintingOK; page++)
{
dc.StartPage(); // begin new page
Info.m_nCurPage = page;
OnPrint(&dc, &Info); // Print page
bPrintingOK = (dc.EndPage() > 0); // end page
}
OnEndPrinting(&dc, &Info); // Clean up after printing
if (bPrintingOK)
dc.EndDoc(); // end a print job
else
dc.AbortDoc(); // abort job.
dc.Detach(); // detach the printer DC
}
/////////////////////////////////////////////////////////////////////////////
// CGridCtrl printing overridables - for Doc/View print/print preview framework
// EFW - Various changes in the next few functions to support the
// new print margins and a few other adjustments.
void CGridCtrl::OnBeginPrinting(CDC *pDC, CPrintInfo *pInfo)
{
// OnBeginPrinting() is called after the user has committed to
// printing by OK'ing the Print dialog, and after the framework
// has created a CDC object for the printer or the preview view.
// This is the right opportunity to set up the page range.
// Given the CDC object, we can determine how many rows will
// fit on a page, so we can in turn determine how many printed
// pages represent the entire document.
ASSERT(pDC && pInfo);
if (!pDC || !pInfo) return;
// Get a DC for the current window (will be a screen DC for print previewing)
CDC *pCurrentDC = GetDC(); // will have dimensions of the client area
if (!pCurrentDC) return;
CSize PaperPixelsPerInch(pDC->GetDeviceCaps(LOGPIXELSX), pDC->GetDeviceCaps(LOGPIXELSY));
CSize ScreenPixelsPerInch(pCurrentDC->GetDeviceCaps(LOGPIXELSX), pCurrentDC->GetDeviceCaps(LOGPIXELSY));
// Create the printer font
int nFontSize = -10;
CString strFontName = _T("Arial");
m_PrinterFont.CreateFont(nFontSize, 0,0,0, FW_NORMAL, 0,0,0, DEFAULT_CHARSET,
OUT_CHARACTER_PRECIS, CLIP_CHARACTER_PRECIS, DEFAULT_QUALITY,
DEFAULT_PITCH | FF_DONTCARE, strFontName);
CFont *pOldFont = pDC->SelectObject(&m_PrinterFont);
// Get the average character width (in GridCtrl units) and hence the margins
m_CharSize = pDC->GetTextExtent(_T("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSATUVWXYZ"),52);
m_CharSize.cx /= 52;
int nMargins = (m_nLeftMargin+m_nRightMargin)*m_CharSize.cx;
// Get the page sizes (physical and logical)
m_PaperSize = CSize(pDC->GetDeviceCaps(HORZRES), pDC->GetDeviceCaps(VERTRES));
if( m_bWysiwygPrinting)
{
m_LogicalPageSize.cx = ScreenPixelsPerInch.cx * m_PaperSize.cx / PaperPixelsPerInch.cx * 3 / 4;
m_LogicalPageSize.cy = ScreenPixelsPerInch.cy * m_PaperSize.cy / PaperPixelsPerInch.cy * 3 / 4;
}
else
{
m_PaperSize = CSize(pDC->GetDeviceCaps(HORZRES), pDC->GetDeviceCaps(VERTRES));
m_LogicalPageSize.cx = GetVirtualWidth()+nMargins;
#ifdef _WIN32_WCE
m_LogicalPageSize.cy = (m_LogicalPageSize.cx * m_PaperSize.cy) / m_PaperSize.cx;
#else
m_LogicalPageSize.cy = MulDiv(m_LogicalPageSize.cx, m_PaperSize.cy, m_PaperSize.cx);
#endif
}
m_nPageHeight = m_LogicalPageSize.cy - GetFixedRowHeight()
- (m_nHeaderHeight+m_nFooterHeight + 2*m_nGap)*m_CharSize.cy;
// Get the number of pages. Assumes no row is bigger than the page size.
int nTotalRowHeight = 0;
m_nNumPages = 1;
for (int row = GetFixedRowCount(); row < GetRowCount(); row++)
{
nTotalRowHeight += GetRowHeight(row);
if (nTotalRowHeight > m_nPageHeight) {
m_nNumPages++;
nTotalRowHeight = GetRowHeight(row);
}
}
// now, figure out how many additional pages must print out if rows ARE bigger
// than page size
int iColumnOffset = 0;
int i1;
for( i1=0; i1 < GetFixedColumnCount(); i1++)
{
iColumnOffset += GetColumnWidth( i1);
}
m_nPageWidth = m_LogicalPageSize.cx - iColumnOffset
- nMargins;
m_nPageMultiplier = 1;
if( m_bWysiwygPrinting)
{
int iTotalRowWidth = 0;
for( i1 = GetFixedColumnCount(); i1 < GetColumnCount(); i1++)
{
iTotalRowWidth += GetColumnWidth( i1);
if( iTotalRowWidth > m_nPageWidth)
{
m_nPageMultiplier++;
iTotalRowWidth = GetColumnWidth( i1);
}
}
m_nNumPages *= m_nPageMultiplier;
}
// Set up the print info
pInfo->SetMaxPage(m_nNumPages);
pInfo->m_nCurPage = 1; // start printing at page# 1
ReleaseDC(pCurrentDC);
pDC->SelectObject(pOldFont);
}
void CGridCtrl::OnPrint(CDC *pDC, CPrintInfo *pInfo)
{
if (!pDC || !pInfo)
return;
//CRect rcPage(pInfo->m_rectDraw);
CFont *pOldFont = pDC->SelectObject(&m_PrinterFont);
// Set the page map mode to use GridCtrl units, and setup margin
pDC->SetMapMode(MM_ANISOTROPIC);
pDC->SetWindowExt(m_LogicalPageSize);
pDC->SetViewportExt(m_PaperSize);
pDC->SetWindowOrg(-m_nLeftMargin * m_CharSize.cx, 0);
// Header
pInfo->m_rectDraw.top = 0;
pInfo->m_rectDraw.left = 0;
pInfo->m_rectDraw.right = m_LogicalPageSize.cx - (m_nLeftMargin + m_nRightMargin) * m_CharSize.cx;
pInfo->m_rectDraw.bottom = m_nHeaderHeight * m_CharSize.cy;
PrintHeader(pDC, pInfo);
pDC->OffsetWindowOrg(0, -m_nHeaderHeight * m_CharSize.cy);
// Gap between header and column headings
pDC->OffsetWindowOrg(0, -m_nGap * m_CharSize.cy);
pDC->OffsetWindowOrg(0, -GetFixedRowHeight());
// We need to find out which row to start printing for this page.
int nTotalRowHeight = 0;
UINT nNumPages = 1;
m_nCurrPrintRow = GetFixedRowCount();
// Not only the row, but we need to figure out column, too
// Can print 4 pages, where page 1 and 2 represent the same rows but
// with different WIDE columns.
//
// .......
// .1 .2 . If representing page 3 --> iPageIfIgnoredWideCols = 2
// ....... iWideColPageOffset = 0
// .3 .4 . If representing page 2 --> iPageIfIgnoredWideCols = 1
// ....... iWideColPageOffset = 1
int iPageIfIgnoredWideCols = pInfo->m_nCurPage / m_nPageMultiplier;
int iWideColPageOffset = pInfo->m_nCurPage - ( iPageIfIgnoredWideCols * m_nPageMultiplier);
if( iWideColPageOffset > 0)
iPageIfIgnoredWideCols++;
if( iWideColPageOffset == 0)
iWideColPageOffset = m_nPageMultiplier;
iWideColPageOffset--;
// calculate current print row based on iPageIfIgnoredWideCols
while( m_nCurrPrintRow < GetRowCount()
&& (int)nNumPages < iPageIfIgnoredWideCols)
{
nTotalRowHeight += GetRowHeight(m_nCurrPrintRow);
if (nTotalRowHeight > m_nPageHeight) {
nNumPages++;
if ((int)nNumPages == iPageIfIgnoredWideCols) break;
nTotalRowHeight = GetRowHeight(m_nCurrPrintRow);
}
m_nCurrPrintRow++;
}
m_nPrintColumn = GetFixedColumnCount();
int iTotalRowWidth = 0;
int i1, i2;
// now, calculate which print column to start displaying
for( i1 = 0; i1 < iWideColPageOffset; i1++)
{
for( i2 = m_nPrintColumn; i2 < GetColumnCount(); i2++)
{
iTotalRowWidth += GetColumnWidth( i2);
if( iTotalRowWidth > m_nPageWidth)
{
m_nPrintColumn = i2;
iTotalRowWidth = 0;
break;
}
}
}
PrintRowButtons( pDC, pInfo); // print row buttons on each page
int iColumnOffset = 0;
for( i1=0; i1 < GetFixedColumnCount(); i1++)
{
iColumnOffset += GetColumnWidth( i1);
}
// Print the column headings
pInfo->m_rectDraw.bottom = GetFixedRowHeight();
if( m_nPrintColumn == GetFixedColumnCount())
{
// have the column headings fcn draw the upper left fixed cells
// for the very first columns, only
pDC->OffsetWindowOrg( 0, +GetFixedRowHeight());
m_nPageWidth += iColumnOffset;
m_nPrintColumn = 0;
PrintColumnHeadings(pDC, pInfo);
m_nPageWidth -= iColumnOffset;
m_nPrintColumn = GetFixedColumnCount();
pDC->OffsetWindowOrg( -iColumnOffset, -GetFixedRowHeight());
}
else
{
// changed all of this here to match above almost exactly same
pDC->OffsetWindowOrg( 0, +GetFixedRowHeight());
m_nPageWidth += iColumnOffset;
// print from column 0 ... last column that fits on the current page
PrintColumnHeadings(pDC, pInfo);
m_nPageWidth -= iColumnOffset;
pDC->OffsetWindowOrg( -iColumnOffset, -GetFixedRowHeight());
}
if (m_nCurrPrintRow >= GetRowCount()) return;
// Draw as many rows as will fit on the printed page.
// Clip the printed page so that there is no partially shown
// row at the bottom of the page (the same row which will be fully
// shown at the top of the next page).
BOOL bFirstPrintedRow = TRUE;
CRect rect;
rect.bottom = -1;
while (m_nCurrPrintRow < GetRowCount())
{
rect.top = rect.bottom+1;
rect.bottom = rect.top + GetRowHeight(m_nCurrPrintRow) - 1;
if (rect.bottom > m_nPageHeight) break; // Gone past end of page
rect.right = -1;
// modified to allow printing of wide grids on multiple pages
for (int col = m_nPrintColumn; col < GetColumnCount(); col++)
{
rect.left = rect.right+1;
rect.right = rect.left
+ GetColumnWidth( col)
- 1;
if( rect.right > m_nPageWidth)
break;
CGridCellBase* pCell = GetCell(m_nCurrPrintRow, col);
if (pCell)
pCell->PrintCell(pDC, m_nCurrPrintRow, col, rect);
if (m_nGridLines == GVL_BOTH || m_nGridLines == GVL_HORZ)
{
int Overlap = (col == 0)? 0:1;
pDC->MoveTo(rect.left-Overlap, rect.bottom);
pDC->LineTo(rect.right, rect.bottom);
if (m_nCurrPrintRow == 0) {
pDC->MoveTo(rect.left-Overlap, rect.top);
pDC->LineTo(rect.right, rect.top);
}
}
if (m_nGridLines == GVL_BOTH || m_nGridLines == GVL_VERT)
{
int Overlap = (bFirstPrintedRow)? 0:1;
pDC->MoveTo(rect.right, rect.top-Overlap);
pDC->LineTo(rect.right, rect.bottom);
if (col == 0) {
pDC->MoveTo(rect.left, rect.top-Overlap);
pDC->LineTo(rect.left, rect.bottom);
}
}
}
m_nCurrPrintRow++;
bFirstPrintedRow = FALSE;
}
// Footer
pInfo->m_rectDraw.bottom = m_nFooterHeight * m_CharSize.cy;
pDC->SetWindowOrg( -m_nLeftMargin * m_CharSize.cx,
-m_LogicalPageSize.cy + m_nFooterHeight * m_CharSize.cy);
PrintFooter(pDC, pInfo);
// SetWindowOrg back for next page
pDC->SetWindowOrg(0,0);
pDC->SelectObject(pOldFont);
}
// added by M.Fletcher 12/17/00
void CGridCtrl::PrintFixedRowCells(int nStartColumn, int nStopColumn, int& row, CRect& rect,
CDC *pDC, BOOL& bFirst)
{
// print all cells from nStartColumn to nStopColumn on row
for (int col =nStartColumn; col < nStopColumn; col++)
{
rect.left = rect.right+1;
rect.right = rect.left + GetColumnWidth( col) - 1;
if( rect.right > m_nPageWidth)
break;
CGridCellBase* pCell = GetCell(row, col);
if (pCell)
pCell->PrintCell(pDC, row, col, rect);
if (m_nGridLines == GVL_BOTH || m_nGridLines == GVL_HORZ)
{
int Overlap = (col == 0)? 0:1;
pDC->MoveTo(rect.left-Overlap, rect.bottom);
pDC->LineTo(rect.right, rect.bottom);
if (row == 0)
{
pDC->MoveTo(rect.left-Overlap, rect.top);
pDC->LineTo(rect.right, rect.top);
}
}
if (m_nGridLines == GVL_BOTH || m_nGridLines == GVL_VERT)
{
int Overlap = (row == 0)? 0:1;
pDC->MoveTo(rect.right, rect.top-Overlap);
pDC->LineTo(rect.right, rect.bottom);
if( bFirst)
{
pDC->MoveTo(rect.left-1, rect.top-Overlap);
pDC->LineTo(rect.left-1, rect.bottom);
bFirst = FALSE;
}
}
} // end of column cells loop
} // end of CGridCtrl::PrintFixedRowCells
void CGridCtrl::PrintColumnHeadings(CDC *pDC, CPrintInfo* /*pInfo*/)
{
CFont *pOldFont = pDC->SelectObject(&m_PrinterFont);
CRect rect;
rect.bottom = -1;
BOOL bFirst = TRUE;
BOOL bOriginal;
// modified to allow column hdr printing of multi-page wide grids
for (int row = 0; row < GetFixedRowCount(); row++)
{
rect.top = rect.bottom+1;
rect.bottom = rect.top + GetRowHeight(row) - 1;
rect.right = -1;
// if printColumn > fixedcolumncount we are on page 2 or more
// lets printout those fixed cell headings again the 1 or more that would be missed
// added by M.Fletcher 12/17/00
if(m_nPrintColumn>= GetFixedColumnCount())
{
bOriginal=bFirst;
// lets print the missing fixed cells on left first out to last fixed column
PrintFixedRowCells(0,GetFixedColumnCount(), row, rect, pDC, bFirst);
bFirst=bOriginal;
}
// now back to normal business print cells in heading after all fixed columns
PrintFixedRowCells(m_nPrintColumn, GetColumnCount(), row, rect, pDC, bFirst);
} // end of Row Loop
pDC->SelectObject(pOldFont);
} // end of CGridCtrl::PrintColumnHeadings
/*****************************************************************************
Prints line of row buttons on each page of the printout. Assumes that
the window origin is setup before calling
*****************************************************************************/
void CGridCtrl::PrintRowButtons(CDC *pDC, CPrintInfo* /*pInfo*/)
{
CFont *pOldFont = pDC->SelectObject(&m_PrinterFont);
CRect rect;
rect.right = -1;
BOOL bFirst = TRUE;
for( int iCol = 0; iCol < GetFixedColumnCount(); iCol++)
{
rect.left = rect.right+1;
rect.right = rect.left
+ GetColumnWidth( iCol)
- 1;
rect.bottom = -1;
for( int iRow = m_nCurrPrintRow; iRow < GetRowCount(); iRow++)
{
rect.top = rect.bottom+1;
rect.bottom = rect.top + GetRowHeight( iRow) - 1;
if( rect.bottom > m_nPageHeight)
break;
CGridCellBase* pCell = GetCell(iRow, iCol);
if (pCell)
pCell->PrintCell(pDC, iRow, iCol, rect);
if (m_nGridLines == GVL_BOTH || m_nGridLines == GVL_HORZ)
{
int Overlap = (iCol == 0)? 0:1;
pDC->MoveTo(rect.left-Overlap, rect.bottom);
pDC->LineTo(rect.right, rect.bottom);
if( bFirst) {
pDC->MoveTo(rect.left-Overlap, rect.top-1);
pDC->LineTo(rect.right, rect.top-1);
bFirst = FALSE;
}
}
if (m_nGridLines == GVL_BOTH || m_nGridLines == GVL_VERT)
{
int Overlap = (iRow == 0)? 0:1;
pDC->MoveTo(rect.right, rect.top-Overlap);
pDC->LineTo(rect.right, rect.bottom);
if (iCol == 0) {
pDC->MoveTo(rect.left, rect.top-Overlap);
pDC->LineTo(rect.left, rect.bottom);
}
}
}
}
pDC->SelectObject(pOldFont);
}
void CGridCtrl::PrintHeader(CDC *pDC, CPrintInfo *pInfo)
{
// print App title on top right margin
CString strRight;
strRight.LoadString(AFX_IDS_APP_TITLE);
// print parent window title in the centre (Gert Rijs)
CString strCenter;
CWnd *pParentWnd = GetParent();
while (pParentWnd)
{
pParentWnd->GetWindowText(strCenter);
if (strCenter.GetLength()) // can happen if it is a CView, CChildFrm has the title
break;
pParentWnd = pParentWnd->GetParent();
}
CFont BoldFont;
LOGFONT lf;
//create bold font for header and footer
VERIFY(m_PrinterFont.GetLogFont(&lf));
lf.lfWeight = FW_BOLD;
VERIFY(BoldFont.CreateFontIndirect(&lf));
CFont *pNormalFont = pDC->SelectObject(&BoldFont);
int nPrevBkMode = pDC->SetBkMode(TRANSPARENT);
CRect rc(pInfo->m_rectDraw);
if( !strCenter.IsEmpty() )
pDC->DrawText( strCenter, &rc, DT_CENTER | DT_SINGLELINE | DT_NOPREFIX | DT_VCENTER);
if( !strRight.IsEmpty() )
pDC->DrawText( strRight, &rc, DT_RIGHT | DT_SINGLELINE | DT_NOPREFIX | DT_VCENTER);
pDC->SetBkMode(nPrevBkMode);
pDC->SelectObject(pNormalFont);
BoldFont.DeleteObject();
// draw ruled-line across top
pDC->SelectStockObject(BLACK_PEN);
pDC->MoveTo(rc.left, rc.bottom);
pDC->LineTo(rc.right, rc.bottom);
}
//print footer with a line and date, and page number
void CGridCtrl::PrintFooter(CDC *pDC, CPrintInfo *pInfo)
{
// page numbering on left
CString strLeft;
strLeft.Format(_T("Page %d of %d"), pInfo->m_nCurPage, pInfo->GetMaxPage() );
// date and time on the right
CString strRight;
COleDateTime t = COleDateTime::GetCurrentTime();
strRight = t.Format(_T("%c"));
CRect rc(pInfo->m_rectDraw);
// draw ruled line on bottom
pDC->SelectStockObject(BLACK_PEN);
pDC->MoveTo(rc.left, rc.top);
pDC->LineTo(rc.right, rc.top);
CFont BoldFont;
LOGFONT lf;
//create bold font for header and footer
m_PrinterFont.GetLogFont(&lf);
lf.lfWeight = FW_BOLD;
BoldFont.CreateFontIndirect(&lf);
CFont *pNormalFont = pDC->SelectObject(&BoldFont);
int nPrevBkMode = pDC->SetBkMode(TRANSPARENT);
// EFW - Bug fix - Force text color to black. It doesn't always
// get set to a printable color when it gets here.
pDC->SetTextColor(RGB(0, 0, 0));
if( !strLeft.IsEmpty() )
pDC->DrawText( strLeft, &rc, DT_LEFT | DT_SINGLELINE | DT_NOPREFIX | DT_VCENTER);
if( !strRight.IsEmpty() )
pDC->DrawText( strRight, &rc, DT_RIGHT | DT_SINGLELINE | DT_NOPREFIX | DT_VCENTER);
pDC->SetBkMode(nPrevBkMode);
pDC->SelectObject(pNormalFont);
BoldFont.DeleteObject();
}
void CGridCtrl::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
m_PrinterFont.DeleteObject();
}
#endif // !defined(_WIN32_WCE_NO_PRINTING) && !defined(GRIDCONTROL_NO_PRINTING)
#ifndef _WIN32_WCE
/////////////////////////////////////////////////////////////////////////////
// CGridCtrl persistance
BOOL CGridCtrl::Save(LPCTSTR filename, TCHAR chSeparator/*=_T(',')*/)
{
CStdioFile File;
CFileException ex;
CString strSeparator(chSeparator);
if (!File.Open(filename, CFile::modeWrite | CFile::modeCreate| CFile::typeText, &ex))
{
ex.ReportError();
return FALSE;
}
TRY
{
int nNumColumns = GetColumnCount();
for (int i = 0; i < GetRowCount(); i++)
{
for (int j = 0; j < nNumColumns; j++)
{
File.WriteString(GetItemText(i,j));
File.WriteString((j==(nNumColumns-1))? _T("\n"): strSeparator);
}
}
File.Close();
}
CATCH (CFileException, e)
{
AfxMessageBox(_T("Unable to save grid list"));
return FALSE;
}
END_CATCH
return TRUE;
}
BOOL CGridCtrl::Load(LPCTSTR filename, TCHAR chSeparator/*=_T(',')*/)
{
if (GetVirtualMode())
return FALSE;
TCHAR *token, *end;
TCHAR buffer[1024];
CStdioFile File;
CFileException ex;
if (!File.Open(filename, CFile::modeRead | CFile::typeText))
{
ex.ReportError();
return FALSE;
}
DeleteAllItems();
TRY
{
// Read Header off file
File.ReadString(buffer, 1024);
// Get first token
for (token=buffer, end=buffer;
*end && (*end != chSeparator) && (*end != _T('\n'));
end++)
;
if ((*end == _T('\0')) && (token == end))
token = NULL;
*end = _T('\0');
while (token)
{
InsertColumn(token);
// Get next token
for (token=++end; *end && (*end != chSeparator) && (*end != _T('\n'));
end++)
;
if ((*end == _T('\0')) && (token == end))
token = NULL;
*end = _T('\0');
}
// Read in rest of data
int nItem = 1;
while (File.ReadString(buffer, 1024))
{
// Get first token
for (token=buffer, end=buffer;
*end && (*end != chSeparator) && (*end != _T('\n')); end++)
;
if ((*end == _T('\0')) && (token == end))
token = NULL;
*end = _T('\0');
int nSubItem = 0;
while (token)
{
if (!nSubItem)
InsertRow(token);
else
SetItemText(nItem, nSubItem, token);
// Get next token
for (token=++end; *end && (*end != chSeparator) && (*end != _T('\n'));
end++)
;
if ((*end == _T('\0')) && (token == end))
token = NULL;
*end = _T('\0');
nSubItem++;
}
nItem++;
}
AutoSizeColumns(GetAutoSizeStyle());
File.Close();
}
CATCH (CFileException, e)
{
AfxMessageBox(_T("Unable to load grid data"));
return FALSE;
}
END_CATCH
return TRUE;
}
#endif
/////////////////////////////////////////////////////////////////////////////
// CGridCtrl overrideables
#ifndef GRIDCONTROL_NO_DRAGDROP
// This is no longer needed since I've changed to OLE drag and drop - but it's
// still cool code. :)
CImageList* CGridCtrl::CreateDragImage(CPoint *pHotSpot)
{
CDC* pDC = GetDC();
if (!pDC)
return NULL;
CRect rect;
CCellID cell = GetFocusCell();
if (!GetCellRect(cell.row, cell.col, rect))
return NULL;
// Translate coordinate system
rect.BottomRight() = CPoint(rect.Width(), rect.Height());
rect.TopLeft() = CPoint(0, 0);
*pHotSpot = rect.BottomRight();
// Create a new imagelist (the caller of this function has responsibility
// for deleting this list)
CImageList* pList = new CImageList;
if (!pList || !pList->Create(rect.Width(), rect.Height(), ILC_MASK, 1, 1))
{
if (pList)
delete pList;
return NULL;
}
// Create mem DC and bitmap
CDC MemDC;
CBitmap bm;
MemDC.CreateCompatibleDC(pDC);
bm.CreateCompatibleBitmap(pDC, rect.Width(), rect.Height());
CBitmap* pOldBitmap = MemDC.SelectObject(&bm);
MemDC.SetWindowOrg(0, 0);
// Draw cell onto bitmap in memDC
CGridCellBase* pCell = GetCell(cell.row, cell.col);
if (pCell)
pCell->Draw(&MemDC, cell.row, cell.col, rect, FALSE);
// Clean up
MemDC.SelectObject(pOldBitmap);
ReleaseDC(pDC);
// Add the bitmap we just drew to the image list.
pList->Add(&bm, GetDefaultCell(FALSE, FALSE)->GetBackClr());
bm.DeleteObject();
return pList;
}
#endif
void CGridCtrl::OnFixedRowClick(CCellID& cell)
{
if (!IsValid(cell))
return;
if (GetHeaderSort())
{
CWaitCursor waiter;
if (cell.col == GetSortColumn())
SortItems(cell.col, !GetSortAscending());
else
SortItems(cell.col, TRUE);
Invalidate();
}
// Did the user click on a fixed column cell (so the cell was within the overlap of
// fixed row and column cells) - (fix by David Pritchard)
if (GetFixedColumnSelection())
{
if (cell.col < GetFixedColumnCount())
{
m_MouseMode = MOUSE_SELECT_ALL;
OnSelecting(cell);
}
else
{
m_MouseMode = MOUSE_SELECT_COL;
OnSelecting(cell);
}
}
}
void CGridCtrl::OnFixedColumnClick(CCellID& cell)
{
if (!IsValid(cell))
return;
// if (m_bListMode && (GetItemState(cell.row, m_nFixedCols) & GVNI_SELECTED))
// {
// OnEditCell(cell.row, cell.col, VK_LBUTTON);
// return;
// }
// Did the user click on a fixed row cell (so the cell was within the overlap of
// fixed row and column cells) - (fix by David Pritchard)
if (GetFixedRowSelection())
{
if (cell.row < GetFixedRowCount())
{
m_MouseMode = MOUSE_SELECT_ALL;
OnSelecting(cell);
}
else
{
m_MouseMode = MOUSE_SELECT_ROW;
OnSelecting(cell);
}
}
}
// Gets the extent of the text pointed to by str (no CDC needed)
// By default this uses the selected font (which is a bigger font)
CSize CGridCtrl::GetTextExtent(int nRow, int nCol, LPCTSTR str)
{
CGridCellBase* pCell = GetCell(nRow, nCol);
if (!pCell)
return CSize(0, 0);
else
return pCell->GetTextExtent(str);
}
// virtual
void CGridCtrl::OnEditCell(int nRow, int nCol, CPoint point, UINT nChar)
{
#ifndef GRIDCONTROL_NO_TITLETIPS
m_TitleTip.Hide(); // hide any titletips
#endif
// Can we do it?
CCellID cell(nRow, nCol);
if (!IsValid(cell) || !IsCellEditable(nRow, nCol))
return;
// Can we see what we are doing?
EnsureVisible(nRow, nCol);
if (!IsCellVisible(nRow, nCol))
return;
// Where, exactly, are we gonna do it??
CRect rect;
if (!GetCellRect(cell, rect))
return;
// Check we can edit...
if (SendMessageToParent(nRow, nCol, GVN_BEGINLABELEDIT) >= 0)
{
// LUC
GetTopLeftMergedCell(nRow, nCol, rect);
// Let's do it...
CGridCellBase* pCell = GetCell(nRow, nCol);
if (pCell)
{
pCell->Edit(nRow, nCol, rect, point, IDC_INPLACE_CONTROL, nChar);
}
}
}
// virtual
void CGridCtrl::EndEditing()
{
CCellID cell = GetFocusCell();
if (!IsValid(cell)) return;
CGridCellBase *pCell = GetCell(cell.row, cell.col);
if (pCell)
pCell->EndEdit();
}
// virtual
void CGridCtrl::OnEndEditCell(int nRow, int nCol, CString str)
{
CString strCurrentText = GetItemText(nRow, nCol);
if (strCurrentText != str)
{
SetItemText(nRow, nCol, str);
if (ValidateEdit(nRow, nCol, str) &&
SendMessageToParent(nRow, nCol, GVN_ENDLABELEDIT) >= 0)
{
SetModified(TRUE, nRow, nCol);
RedrawCell(nRow, nCol);
}
else
{
SetItemText(nRow, nCol, strCurrentText);
}
}
CGridCellBase* pCell = GetCell(nRow, nCol);
if (pCell)
pCell->OnEndEdit();
}
// If this returns FALSE then the editing isn't allowed
// virtual
BOOL CGridCtrl::ValidateEdit(int nRow, int nCol, LPCTSTR str)
{
CGridCellBase* pCell = GetCell(nRow, nCol);
ASSERT(pCell);
if (!pCell)
return TRUE;
return pCell->ValidateEdit(str);
}
// virtual
CString CGridCtrl::GetItemText(int nRow, int nCol) const
{
if (nRow < 0 || nRow >= m_nRows || nCol < 0 || nCol >= m_nCols)
return _T("");
CGridCellBase* pCell = GetCell(nRow, nCol);
ASSERT(pCell);
if (!pCell)
return _T("");
return pCell->GetText();
}
void CGridCtrl::ResetVirtualOrder()
{
m_arRowOrder.resize(m_nRows);
for (int i = 0; i < m_nRows; i++)
{
m_arRowOrder[i] = i;
}
}
void CGridCtrl::Reorder(int From, int To)
{
// Set line From just after Line To
ASSERT(From>= GetFixedRowCount() && To>=GetFixedRowCount()-1 && From<m_nRows && To<m_nRows);
int Value = m_arRowOrder[From];
m_arRowOrder.erase(m_arRowOrder.begin()+From);
int Offset = (From>=To ? 1:0);
m_arRowOrder.insert(m_arRowOrder.begin()+To+Offset, Value);
}
// LUC
INT_PTR CGridCtrl::MergeCells(CCellRange& mergedCellRange)
{
INT_PTR nMergeID = -1;
if(IsValid(mergedCellRange))
{
m_arMergedCells.Add(mergedCellRange);
nMergeID = m_arMergedCells.GetSize() - 1;
}
return nMergeID;
}
void CGridCtrl::SplitCells(INT_PTR nMergeID)
{
if(nMergeID > -1)
{
m_arMergedCells.RemoveAt(nMergeID);
}
}
BOOL CGridCtrl::IsMergedCell(int row, int col, CCellRange& mergedCellRange)
{
if((mergedCellRange.GetMinRow() <= row) && (mergedCellRange.GetMinCol() <= col)
&& (mergedCellRange.GetMaxRow() >= row) && (mergedCellRange.GetMaxCol() >= col))
{
return TRUE;
}
return FALSE;
}
BOOL CGridCtrl::GetMergedCellRect(CCellRange& mergedCell, CRect& rect)
{
CCellID idTopLeftMin = GetTopleftNonFixedCell();
if(m_nFreezedRows > 0)
{
idTopLeftMin.row = m_nFixedRows;
}
if(m_nFreezedCols > 0)
{
idTopLeftMin.col = m_nFixedCols;
}
int nMinRow = mergedCell.GetMinRow();
if(nMinRow < idTopLeftMin.row)
nMinRow = idTopLeftMin.row;
int nMinCol = mergedCell.GetMinCol();
if(nMinCol < idTopLeftMin.col)
nMinCol = idTopLeftMin.col;
int nMaxRow = mergedCell.GetMaxRow();
int nMaxCol = mergedCell.GetMaxCol();
while(!IsCellVisible(nMinRow, nMaxCol))
{
nMaxCol--;
if(nMaxCol == nMinCol)
{
break;
}
}
while(!IsCellVisible(nMaxRow, nMinCol))
{
nMaxRow--;
if(nMaxRow == nMinRow)
{
break;
}
}
CRect rcTopLeft;
GetCellRect(nMinRow, nMinCol, rcTopLeft);
CRect rcBottomRight;
GetCellRect(nMaxRow, nMaxCol, rcBottomRight);
rect.left = rcTopLeft.left;
rect.top = rcTopLeft.top;
rect.right = rcBottomRight.right;
rect.bottom = rcBottomRight.bottom;
return TRUE;
}
BOOL CGridCtrl::GetTopLeftMergedCell(int& row, int& col, CRect& mergeRect)
{
BOOL bRet = FALSE;
INT_PTR size = m_arMergedCells.GetSize();
if(size > 0)
{
for(INT_PTR i = 0; i < size; i++)
{
CCellRange& mergedCell = m_arMergedCells[i];
if(IsMergedCell(row, col, mergedCell))
{
CCellID idTopLeftMin = GetTopleftNonFixedCell();
if(m_nFreezedRows > 0)
{
idTopLeftMin.row = m_nFixedRows;
}
if(m_nFreezedCols > 0)
{
idTopLeftMin.col = m_nFixedCols;
}
int nMinRow = mergedCell.GetMinRow();
int nMinCol = mergedCell.GetMinCol();
row = nMinRow;
col = nMinCol;
if(nMinRow < idTopLeftMin.row)
nMinRow = idTopLeftMin.row;
if(nMinCol < idTopLeftMin.col)
nMinCol = idTopLeftMin.col;
int nMaxRow = mergedCell.GetMaxRow();
int nMaxCol = mergedCell.GetMaxCol();
while(!IsCellVisible(nMinRow, nMaxCol))
{
nMaxCol--;
if(nMaxCol == nMinCol)
{
break;
}
}
while(!IsCellVisible(nMaxRow, nMinCol))
{
nMaxRow--;
if(nMaxRow == nMinRow)
{
break;
}
}
if(mergeRect != rectNull)
{
CRect rcTopLeft;
GetCellRect(nMinRow, nMinCol, rcTopLeft);
CRect rcBottomRight;
GetCellRect(nMaxRow, nMaxCol, rcBottomRight);
mergeRect.left = rcTopLeft.left;
mergeRect.top = rcTopLeft.top;
mergeRect.right = rcBottomRight.right;
mergeRect.bottom = rcBottomRight.bottom;
}
bRet = TRUE;
}
}
}
return bRet;
}
BOOL CGridCtrl::GetBottomRightMergedCell(int& row, int& col, CRect& mergeRect)
{
BOOL bRet = FALSE;
INT_PTR size = m_arMergedCells.GetSize();
if(size > 0)
{
for(INT_PTR i = 0; i < size; i++)
{
CCellRange& mergedCell = m_arMergedCells[i];
if(IsMergedCell(row, col, mergedCell))
{
CCellID idTopLeftMin = GetTopleftNonFixedCell();
if(m_nFreezedRows > 0)
{
idTopLeftMin.row = m_nFixedRows;
}
if(m_nFreezedCols > 0)
{
idTopLeftMin.col = m_nFixedCols;
}
int nMinRow = mergedCell.GetMinRow();
int nMinCol = mergedCell.GetMinCol();
if(nMinRow < idTopLeftMin.row)
nMinRow = idTopLeftMin.row;
if(nMinCol < idTopLeftMin.col)
nMinCol = idTopLeftMin.col;
int nMaxRow = mergedCell.GetMaxRow();
int nMaxCol = mergedCell.GetMaxCol();
row = nMaxRow;
col = nMaxCol;
while(!IsCellVisible(nMinRow, nMaxCol))
{
nMaxCol--;
if(nMaxCol == nMinCol)
{
break;
}
}
while(!IsCellVisible(nMaxRow, nMinCol))
{
nMaxRow--;
if(nMaxRow == nMinRow)
{
break;
}
}
if(mergeRect != rectNull)
{
CRect rcTopLeft;
GetCellRect(nMinRow, nMinCol, rcTopLeft);
CRect rcBottomRight;
GetCellRect(nMaxRow, nMaxCol, rcBottomRight);
mergeRect.left = rcTopLeft.left;
mergeRect.top = rcTopLeft.top;
mergeRect.right = rcBottomRight.right;
mergeRect.bottom = rcBottomRight.bottom;
}
bRet = TRUE;
}
}
}
return bRet;
}
BOOL CGridCtrl::GetMergedCellRect(int row, int col, CRect& rect)
{
INT_PTR size = m_arMergedCells.GetSize();
if(size > 0)
{
for(INT_PTR i = 0; i < size; i++)
{
if(IsMergedCell(row, col, m_arMergedCells[i]))
{
CCellID idTopLeftMin = GetTopleftNonFixedCell();
int nMinRow = m_arMergedCells[i].GetMinRow();
if(nMinRow < idTopLeftMin.row)
nMinRow = idTopLeftMin.row;
int nMinCol = m_arMergedCells[i].GetMinCol();
if(nMinCol < idTopLeftMin.col)
nMinCol = idTopLeftMin.col;
int nMaxRow = m_arMergedCells[i].GetMaxRow();
int nMaxCol = m_arMergedCells[i].GetMaxCol();
CRect rcTopLeft;
GetCellRect(nMinRow, nMinCol, rcTopLeft);
CRect rcBottomRight;
GetCellRect(nMaxRow, nMaxCol, rcBottomRight);
rect.left = rcTopLeft.left;
rect.top = rcTopLeft.top;
rect.right = rcBottomRight.right;
rect.bottom = rcBottomRight.bottom;
return TRUE;
}
}
}
return FALSE;
}
// LUC
BOOL CGridCtrl::IsFocused(CGridCellBase& cell, int nRow, int nCol)
{
BOOL bRet = cell.IsFocused();
if(!bRet && m_bDrawingMergedCell)
{
CCellRange& mergedCell = m_arMergedCells[m_nCurrentMergeID];
for(int row = mergedCell.GetMinRow(); row <= mergedCell.GetMaxRow(); row++)
{
for(int col = mergedCell.GetMinCol(); col <= mergedCell.GetMaxCol(); col++)
{
CGridCellBase* pCell = GetCell(row, col);
if(pCell != NULL)
{
if(pCell->IsFocused())
{
bRet = TRUE;
}
}
}
}
}
return bRet;
}
BOOL CGridCtrl::IsSelected(CGridCellBase& cell, int nRow, int nCol)
{
BOOL bRet = cell.IsSelected();
if(!bRet && m_bDrawingMergedCell)
{
CCellRange& mergedCell = m_arMergedCells[m_nCurrentMergeID];
for(int row = mergedCell.GetMinRow(); row <= mergedCell.GetMaxRow(); row++)
{
for(int col = mergedCell.GetMinCol(); col <= mergedCell.GetMaxCol(); col++)
{
CGridCellBase* pCell = GetCell(row, col);
if(pCell != NULL)
{
if(pCell->IsSelected())
{
bRet = TRUE;
}
}
}
}
}
return bRet;
}
void CGridCtrl::EnableSmoothScroll(BOOL bEnable/*=TRUE*/)
{
if(!bEnable)
{
m_nBarState |= GVL_XLSTYLE_SCROLL;
}
else
{
m_nBarState &= ~GVL_XLSTYLE_SCROLL;
}
m_nScrollX = 0;
m_idTopLeftCell.row = -1;
m_idTopLeftCell.col = -1;
ResetScrollBars();
}
void CGridCtrl::ShowTitleTip(CGridCellBase* pCell, int nRow, int nColumn,
CRect rectCell, CRect rectTitle, LPCTSTR lpszTitleText, int xoffset /*=0*/,
LPRECT lpHoverRect /*=NULL*/,
const LOGFONT* lpLogFont /*=NULL*/,
COLORREF crTextClr /* CLR_DEFAULT */,
COLORREF crBackClr /* CLR_DEFAULT */)
{
UNUSED_ALWAYS(pCell);
UNUSED_ALWAYS(nRow);
UNUSED_ALWAYS(nColumn);
UNUSED_ALWAYS(rectCell);
m_TitleTip.Show(rectTitle, lpszTitleText, xoffset, lpHoverRect, lpLogFont, crTextClr, crBackClr);
} | [
"yangbin@star-net.cn"
] | yangbin@star-net.cn |
7226d4e2f949373d71ab6c8fff09adb89c12040a | ddd70b6df257a2cb3be8b468f355744965bf740e | /src/slg/textures/wrinkled.cpp | a18374201023cc240c39e668e86925b83bac2ee0 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | MetaRabbit/LuxCore | 2e0e1c4cfc6865dc03d2750c26cca6281cfa541c | ee4d881d7ccf64fb6bb29845d7af0409ef8fd3b9 | refs/heads/master | 2020-05-17T18:44:07.182847 | 2019-04-28T09:10:50 | 2019-04-28T09:10:50 | 183,893,762 | 1 | 0 | Apache-2.0 | 2019-04-28T10:31:30 | 2019-04-28T10:31:29 | null | UTF-8 | C++ | false | false | 2,339 | cpp | /***************************************************************************
* Copyright 1998-2018 by authors (see AUTHORS.txt) *
* *
* This file is part of LuxCoreRender. *
* *
* 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 "slg/textures/wrinkled.h"
using namespace std;
using namespace luxrays;
using namespace slg;
//------------------------------------------------------------------------------
// Wrinkled texture
//------------------------------------------------------------------------------
float WrinkledTexture::GetFloatValue(const HitPoint &hitPoint) const {
const Point p(mapping->Map(hitPoint));
return Turbulence(p, omega, octaves);
}
Spectrum WrinkledTexture::GetSpectrumValue(const HitPoint &hitPoint) const {
return Spectrum(GetFloatValue(hitPoint));
}
Properties WrinkledTexture::ToProperties(const ImageMapCache &imgMapCache, const bool useRealFileName) const {
Properties props;
const string name = GetName();
props.Set(Property("scene.textures." + name + ".type")("wrinkled"));
props.Set(Property("scene.textures." + name + ".octaves")(octaves));
props.Set(Property("scene.textures." + name + ".roughness")(omega));
props.Set(mapping->ToProperties("scene.textures." + name + ".mapping"));
return props;
}
| [
"dade916@gmail.com"
] | dade916@gmail.com |
37e0b3a3fdeca56b1c7eb6b6adbecb2fcfff51be | 696e35ccdf167c3f6b1a7f5458406d3bb81987c9 | /chrome/browser/password_manager/native_backend_libsecret_unittest.cc | f7cf536ccc268103febeca7bc751b0868593421d | [
"BSD-3-Clause"
] | permissive | mgh3326/iridium-browser | 064e91a5e37f4e8501ea971483bd1c76297261c3 | e7de6a434d2659f02e94917be364a904a442d2d0 | refs/heads/master | 2023-03-30T16:18:27.391772 | 2019-04-24T02:14:32 | 2019-04-24T02:14:32 | 183,128,065 | 0 | 0 | BSD-3-Clause | 2019-11-30T06:06:02 | 2019-04-24T02:04:51 | null | UTF-8 | C++ | false | false | 42,029 | cc | // Copyright (c) 2015 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.
#include <stdarg.h>
#include <stddef.h>
#include <stdint.h>
#include "base/location.h"
#include "base/stl_util.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/scoped_task_environment.h"
#include "base/time/time.h"
#include "chrome/browser/password_manager/native_backend_libsecret.h"
#include "chrome/test/base/testing_profile.h"
#include "components/autofill/core/common/password_form.h"
#include "components/password_manager/core/browser/psl_matching_helper.h"
#include "components/password_manager/core/common/password_manager_pref_names.h"
#include "components/prefs/pref_service.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using autofill::PasswordForm;
using base::UTF8ToUTF16;
using base::UTF16ToUTF8;
using password_manager::PasswordStore;
using password_manager::PasswordStoreChange;
using password_manager::PasswordStoreChangeList;
using testing::Pointee;
using testing::UnorderedElementsAre;
namespace {
// What follows is a very simple implementation of the subset of the Libsecret
// API that we actually use. It gets substituted for the real one by
// MockLibsecretLoader, which hooks into the facility normally used to load
// the libsecret library at runtime to avoid a static dependency on it.
struct MockSecretValue {
gchar* password;
explicit MockSecretValue(gchar* password) : password(password) {}
~MockSecretValue() { g_free(password); }
};
struct MockSecretItem {
std::unique_ptr<MockSecretValue> value;
GHashTable* attributes;
MockSecretItem(std::unique_ptr<MockSecretValue> value, GHashTable* attributes)
: value(std::move(value)), attributes(attributes) {}
~MockSecretItem() {
g_hash_table_destroy(attributes);
}
void RemoveAttribute(const char* keyname) {
g_hash_table_remove(attributes, keyname);
}
};
bool Matches(MockSecretItem* item, GHashTable* query) {
GHashTable* attributes = item->attributes;
GHashTableIter iter;
gchar* name;
gchar* query_value;
g_hash_table_iter_init(&iter, query);
while (g_hash_table_iter_next(&iter, reinterpret_cast<gpointer*>(&name),
reinterpret_cast<gpointer*>(&query_value))) {
gchar* value = static_cast<gchar*>(g_hash_table_lookup(attributes, name));
if (value == nullptr || strcmp(value, query_value) != 0)
return false;
}
return true;
}
bool IsStringAttribute(const SecretSchema* schema, const std::string& name) {
for (size_t i = 0; schema->attributes[i].name; ++i)
if (name == schema->attributes[i].name)
return schema->attributes[i].type == SECRET_SCHEMA_ATTRIBUTE_STRING;
NOTREACHED() << "Requested type of nonexistent attribute";
return false;
}
// The list of all libsecret items we have stored.
std::vector<std::unique_ptr<MockSecretItem>>* global_mock_libsecret_items;
std::unordered_map<GObject*, MockSecretItem*>* global_map_object_to_secret_item;
bool global_mock_libsecret_reject_local_ids = false;
GObject* MakeNewObject(MockSecretItem* item) {
// Create an object with a ref-count of 2. The caller is expected to release
// one reference, and the second reference is released during test tear down
// along with checks that the ref count is correct.
GObject* o = static_cast<GObject*>(g_object_new(G_TYPE_OBJECT, nullptr));
g_object_ref(o);
(*global_map_object_to_secret_item)[o] = item;
return o;
}
gboolean mock_secret_password_store_sync(const SecretSchema* schema,
const gchar* collection,
const gchar* label,
const gchar* password,
GCancellable* cancellable,
GError** error,
...) {
// TODO(crbug.com/660005) We don't read the dummy we store to unlock keyring.
if (strcmp("_chrome_dummy_schema_for_unlocking", schema->name) == 0)
return true;
GHashTable* attributes =
g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free);
va_list ap;
va_start(ap, error);
char* name;
while ((name = va_arg(ap, gchar*))) {
char* value;
if (IsStringAttribute(schema, name)) {
value = g_strdup(va_arg(ap, gchar*));
VLOG(1) << "Adding item attribute " << name << ", value '" << value
<< "'";
} else {
uint32_t intvalue = va_arg(ap, uint32_t);
VLOG(1) << "Adding item attribute " << name << ", value " << intvalue;
value = g_strdup_printf("%u", intvalue);
}
g_hash_table_insert(attributes, g_strdup(name), value);
}
va_end(ap);
global_mock_libsecret_items->push_back(std::make_unique<MockSecretItem>(
std::make_unique<MockSecretValue>(g_strdup(password)), attributes));
return true;
}
GList* mock_secret_service_search_sync(SecretService* service,
const SecretSchema* schema,
GHashTable* attributes,
SecretSearchFlags flags,
GCancellable* cancellable,
GError** error) {
EXPECT_TRUE(flags & SECRET_SEARCH_UNLOCK);
GList* result = nullptr;
for (std::unique_ptr<MockSecretItem>& item : *global_mock_libsecret_items) {
if (Matches(item.get(), attributes)) {
result = g_list_append(result, MakeNewObject(item.get()));
}
}
return result;
}
gboolean mock_secret_password_clear_sync(const SecretSchema* schema,
GCancellable* cancellable,
GError** error,
...) {
GHashTable* attributes =
g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free);
va_list ap;
va_start(ap, error);
char* name;
while ((name = va_arg(ap, gchar*))) {
char* value;
if (IsStringAttribute(schema, name)) {
value = g_strdup(va_arg(ap, gchar*));
VLOG(1) << "Adding item attribute " << name << ", value '" << value
<< "'";
} else {
uint32_t intvalue = va_arg(ap, uint32_t);
VLOG(1) << "Adding item attribute " << name << ", value " << intvalue;
value = g_strdup_printf("%u", intvalue);
}
g_hash_table_insert(attributes, g_strdup(name), value);
}
va_end(ap);
std::vector<std::unique_ptr<MockSecretItem>> kept_mock_libsecret_items;
kept_mock_libsecret_items.reserve(global_mock_libsecret_items->size());
for (std::unique_ptr<MockSecretItem>& item : *global_mock_libsecret_items) {
if (!Matches(item.get(), attributes)) {
kept_mock_libsecret_items.push_back(std::move(item));
}
}
global_mock_libsecret_items->swap(kept_mock_libsecret_items);
g_hash_table_unref(attributes);
return
global_mock_libsecret_items->size() != kept_mock_libsecret_items.size();
}
SecretValue* mock_secret_item_get_secret(SecretItem* self) {
GObject* o = reinterpret_cast<GObject*>(self);
MockSecretValue* mock_value =
(*global_map_object_to_secret_item)[o]->value.get();
return reinterpret_cast<SecretValue*>(mock_value);
}
const gchar* mock_secret_value_get_text(SecretValue* value) {
return reinterpret_cast<MockSecretValue*>(value)->password;
}
GHashTable* mock_secret_item_get_attributes(SecretItem* self) {
// Libsecret backend will make unreference of received attributes, so in
// order to save them we need to increase their reference number.
GObject* o = reinterpret_cast<GObject*>(self);
MockSecretItem* mock_ptr = (*global_map_object_to_secret_item)[o];
g_hash_table_ref(mock_ptr->attributes);
return mock_ptr->attributes;
}
gboolean mock_secret_item_load_secret_sync(SecretItem* self,
GCancellable* cancellable,
GError** error) {
return true;
}
void mock_secret_value_unref(gpointer value) {
}
// Inherit to get access to protected fields.
class MockLibsecretLoader : public LibsecretLoader {
public:
static bool LoadMockLibsecret() {
secret_password_store_sync = &mock_secret_password_store_sync;
secret_service_search_sync = &mock_secret_service_search_sync;
secret_password_clear_sync = &mock_secret_password_clear_sync;
secret_item_get_secret = &mock_secret_item_get_secret;
secret_value_get_text = &mock_secret_value_get_text;
secret_item_get_attributes = &mock_secret_item_get_attributes;
secret_item_load_secret_sync = &mock_secret_item_load_secret_sync;
secret_value_unref = &mock_secret_value_unref;
libsecret_loaded_ = true;
// Reset the state of the mock library.
global_mock_libsecret_items->clear();
global_map_object_to_secret_item->clear();
global_mock_libsecret_reject_local_ids = false;
return true;
}
};
void CheckPasswordChanges(const PasswordStoreChangeList& expected_list,
const PasswordStoreChangeList& actual_list) {
ASSERT_EQ(expected_list.size(), actual_list.size());
for (size_t i = 0; i < expected_list.size(); ++i) {
EXPECT_EQ(expected_list[i].type(), actual_list[i].type());
EXPECT_EQ(expected_list[i].form(), actual_list[i].form());
}
}
void VerifiedAdd(NativeBackendLibsecret* backend, const PasswordForm& form) {
SCOPED_TRACE("VerifiedAdd");
PasswordStoreChangeList changes = backend->AddLogin(form);
PasswordStoreChangeList expected(1,
PasswordStoreChange(PasswordStoreChange::ADD,
form));
CheckPasswordChanges(expected, changes);
}
void VerifiedUpdate(NativeBackendLibsecret* backend, const PasswordForm& form) {
SCOPED_TRACE("VerifiedUpdate");
PasswordStoreChangeList changes;
EXPECT_TRUE(backend->UpdateLogin(form, &changes));
PasswordStoreChangeList expected(1, PasswordStoreChange(
PasswordStoreChange::UPDATE, form));
CheckPasswordChanges(expected, changes);
}
void VerifiedRemove(NativeBackendLibsecret* backend, const PasswordForm& form) {
SCOPED_TRACE("VerifiedRemove");
PasswordStoreChangeList changes;
EXPECT_TRUE(backend->RemoveLogin(form, &changes));
CheckPasswordChanges(PasswordStoreChangeList(1, PasswordStoreChange(
PasswordStoreChange::REMOVE, form)), changes);
}
} // anonymous namespace
class NativeBackendLibsecretTest : public testing::Test {
protected:
enum UpdateType { // Used in CheckPSLUpdate().
UPDATE_BY_UPDATELOGIN,
UPDATE_BY_ADDLOGIN,
};
enum RemoveBetweenMethod { // Used in CheckRemoveLoginsBetween().
CREATED,
SYNCED,
};
NativeBackendLibsecretTest()
: scoped_task_environment_(
base::test::ScopedTaskEnvironment::MainThreadType::UI) {}
void SetUp() override {
ASSERT_FALSE(global_mock_libsecret_items);
ASSERT_FALSE(global_map_object_to_secret_item);
global_mock_libsecret_items = &mock_libsecret_items_;
global_map_object_to_secret_item = &mock_map_object_to_secret_item_;
ASSERT_TRUE(MockLibsecretLoader::LoadMockLibsecret());
form_google_.origin = GURL("http://www.google.com/");
form_google_.action = GURL("http://www.google.com/login");
form_google_.username_element = UTF8ToUTF16("user");
form_google_.username_value = UTF8ToUTF16("joeschmoe");
form_google_.password_element = UTF8ToUTF16("pass");
form_google_.password_value = UTF8ToUTF16("seekrit");
form_google_.submit_element = UTF8ToUTF16("submit");
form_google_.signon_realm = "http://www.google.com/";
form_google_.type = PasswordForm::TYPE_GENERATED;
form_google_.date_created = base::Time::Now();
form_google_.date_synced = base::Time::Now();
form_google_.display_name = UTF8ToUTF16("Joe Schmoe");
form_google_.icon_url = GURL("http://www.google.com/icon");
form_google_.federation_origin =
url::Origin::Create(GURL("http://www.google.com/"));
form_google_.skip_zero_click = true;
form_google_.generation_upload_status = PasswordForm::POSITIVE_SIGNAL_SENT;
form_google_.form_data.name = UTF8ToUTF16("form_name");
form_facebook_.origin = GURL("http://www.facebook.com/");
form_facebook_.action = GURL("http://www.facebook.com/login");
form_facebook_.username_element = UTF8ToUTF16("user");
form_facebook_.username_value = UTF8ToUTF16("a");
form_facebook_.password_element = UTF8ToUTF16("password");
form_facebook_.password_value = UTF8ToUTF16("b");
form_facebook_.submit_element = UTF8ToUTF16("submit");
form_facebook_.signon_realm = "http://www.facebook.com/";
form_facebook_.date_created = base::Time::Now();
form_facebook_.date_synced = base::Time::Now();
form_facebook_.display_name = UTF8ToUTF16("Joe Schmoe");
form_facebook_.icon_url = GURL("http://www.facebook.com/icon");
form_facebook_.federation_origin =
url::Origin::Create(GURL("http://www.facebook.com/"));
form_facebook_.skip_zero_click = true;
form_facebook_.generation_upload_status = PasswordForm::NO_SIGNAL_SENT;
form_isc_.origin = GURL("http://www.isc.org/");
form_isc_.action = GURL("http://www.isc.org/auth");
form_isc_.username_element = UTF8ToUTF16("id");
form_isc_.username_value = UTF8ToUTF16("janedoe");
form_isc_.password_element = UTF8ToUTF16("passwd");
form_isc_.password_value = UTF8ToUTF16("ihazabukkit");
form_isc_.submit_element = UTF8ToUTF16("login");
form_isc_.signon_realm = "http://www.isc.org/";
form_isc_.date_created = base::Time::Now();
form_isc_.date_synced = base::Time::Now();
other_auth_.origin = GURL("http://www.example.com/");
other_auth_.username_value = UTF8ToUTF16("username");
other_auth_.password_value = UTF8ToUTF16("pass");
other_auth_.signon_realm = "http://www.example.com/Realm";
other_auth_.date_created = base::Time::Now();
other_auth_.date_synced = base::Time::Now();
}
void TearDown() override {
scoped_task_environment_.RunUntilIdle();
ASSERT_TRUE(global_mock_libsecret_items);
global_mock_libsecret_items = nullptr;
for (auto& pair : *global_map_object_to_secret_item) {
ASSERT_EQ(pair.first->ref_count, 1u);
g_object_unref(pair.first);
}
global_map_object_to_secret_item->clear();
global_map_object_to_secret_item = nullptr;
}
void CheckUint32Attribute(const MockSecretItem* item,
const std::string& attribute,
uint32_t value) {
gpointer item_value =
g_hash_table_lookup(item->attributes, attribute.c_str());
EXPECT_TRUE(item_value) << " in attribute " << attribute;
if (item_value) {
uint32_t int_value;
bool conversion_ok =
base::StringToUint(static_cast<char*>(item_value), &int_value);
EXPECT_TRUE(conversion_ok);
EXPECT_EQ(value, int_value);
}
}
void CheckStringAttribute(const MockSecretItem* item,
const std::string& attribute,
const std::string& value) {
gpointer item_value =
g_hash_table_lookup(item->attributes, attribute.c_str());
EXPECT_TRUE(item_value) << " in attribute " << attribute;
if (item_value) {
EXPECT_EQ(value, static_cast<char*>(item_value));
}
}
void CheckMockSecretItem(const MockSecretItem* item,
const PasswordForm& form,
const std::string& app_string) {
EXPECT_EQ(UTF16ToUTF8(form.password_value), item->value->password);
EXPECT_EQ(21u, g_hash_table_size(item->attributes));
CheckStringAttribute(item, "origin_url", form.origin.spec());
CheckStringAttribute(item, "action_url", form.action.spec());
CheckStringAttribute(item, "username_element",
UTF16ToUTF8(form.username_element));
CheckStringAttribute(item, "username_value",
UTF16ToUTF8(form.username_value));
CheckStringAttribute(item, "password_element",
UTF16ToUTF8(form.password_element));
CheckStringAttribute(item, "submit_element",
UTF16ToUTF8(form.submit_element));
CheckStringAttribute(item, "signon_realm", form.signon_realm);
CheckUint32Attribute(item, "preferred", form.preferred);
// We don't check the date created. It varies.
CheckUint32Attribute(item, "blacklisted_by_user", form.blacklisted_by_user);
CheckUint32Attribute(item, "type", form.type);
CheckUint32Attribute(item, "times_used", form.times_used);
CheckUint32Attribute(item, "scheme", form.scheme);
CheckStringAttribute(
item, "date_synced",
base::Int64ToString(form.date_synced.ToInternalValue()));
CheckStringAttribute(item, "display_name", UTF16ToUTF8(form.display_name));
CheckStringAttribute(item, "avatar_url", form.icon_url.spec());
// We serialize unique origins as "", in order to make other systems that
// read from the login database happy. https://crbug.com/591310
CheckStringAttribute(item, "federation_url",
form.federation_origin.opaque()
? ""
: form.federation_origin.Serialize());
CheckUint32Attribute(item, "should_skip_zero_click", form.skip_zero_click);
CheckUint32Attribute(item, "generation_upload_status",
form.generation_upload_status);
CheckStringAttribute(item, "application", app_string);
autofill::FormData actual;
DeserializeFormDataFromBase64String(
static_cast<char*>(g_hash_table_lookup(item->attributes, "form_data")),
&actual);
EXPECT_TRUE(form.form_data.SameFormAs(actual));
}
// Saves |credentials| and then gets logins matching |url| and |scheme|.
// Returns true when something is found, and in such case copies the result to
// |result| when |result| is not nullptr. (Note that there can be max. 1
// result derived from |credentials|.)
bool CheckCredentialAvailability(const PasswordForm& credentials,
const GURL& url,
const PasswordForm::Scheme& scheme,
PasswordForm* result) {
NativeBackendLibsecret backend(321);
VerifiedAdd(&backend, credentials);
PasswordStore::FormDigest target_form = {PasswordForm::SCHEME_HTML,
url.spec(), url};
if (scheme != PasswordForm::SCHEME_HTML) {
// For non-HTML forms, the realm used for authentication
// (http://tools.ietf.org/html/rfc1945#section-10.2) is appended to the
// signon_realm. Just use a default value for now.
target_form.signon_realm.append("Realm");
}
std::vector<std::unique_ptr<PasswordForm>> form_list;
EXPECT_TRUE(backend.GetLogins(target_form, &form_list));
EXPECT_EQ(1u, global_mock_libsecret_items->size());
if (!global_mock_libsecret_items->empty())
CheckMockSecretItem((*global_mock_libsecret_items)[0].get(), credentials,
"chrome-321");
global_mock_libsecret_items->clear();
if (form_list.empty())
return false;
EXPECT_EQ(1u, form_list.size());
if (result)
*result = *form_list[0];
return true;
}
// Test that updating does not use PSL matching: Add a www.facebook.com
// password, then use PSL matching to get a copy of it for m.facebook.com, and
// add that copy as well. Now update the www.facebook.com password -- the
// m.facebook.com password should not get updated. Depending on the argument,
// the credential update is done via UpdateLogin or AddLogin.
void CheckPSLUpdate(UpdateType update_type) {
NativeBackendLibsecret backend(321);
VerifiedAdd(&backend, form_facebook_);
// Get the PSL-matched copy of the saved login for m.facebook.
const GURL kMobileURL("http://m.facebook.com/");
PasswordStore::FormDigest m_facebook_lookup = {
PasswordForm::SCHEME_HTML, kMobileURL.spec(), kMobileURL};
std::vector<std::unique_ptr<PasswordForm>> form_list;
EXPECT_TRUE(backend.GetLogins(m_facebook_lookup, &form_list));
EXPECT_EQ(1u, global_mock_libsecret_items->size());
EXPECT_EQ(1u, form_list.size());
PasswordForm m_facebook = *form_list[0];
form_list.clear();
m_facebook.origin = kMobileURL;
m_facebook.signon_realm = kMobileURL.spec();
// Add the PSL-matched copy to saved logins.
VerifiedAdd(&backend, m_facebook);
EXPECT_EQ(2u, global_mock_libsecret_items->size());
// Update www.facebook.com login.
PasswordForm new_facebook(form_facebook_);
const base::string16 kOldPassword(form_facebook_.password_value);
const base::string16 kNewPassword(UTF8ToUTF16("new_b"));
EXPECT_NE(kOldPassword, kNewPassword);
new_facebook.password_value = kNewPassword;
switch (update_type) {
case UPDATE_BY_UPDATELOGIN:
VerifiedUpdate(&backend, new_facebook);
break;
case UPDATE_BY_ADDLOGIN:
// This is an overwrite call.
backend.AddLogin(new_facebook);
break;
}
EXPECT_EQ(2u, global_mock_libsecret_items->size());
// Check that m.facebook.com login was not modified by the update.
EXPECT_TRUE(backend.GetLogins(m_facebook_lookup, &form_list));
// There should be two results -- the exact one, and the PSL-matched one.
EXPECT_EQ(2u, form_list.size());
size_t index_non_psl = 0;
if (form_list[index_non_psl]->is_public_suffix_match)
index_non_psl = 1;
EXPECT_EQ(kMobileURL, form_list[index_non_psl]->origin);
EXPECT_EQ(kMobileURL.spec(), form_list[index_non_psl]->signon_realm);
EXPECT_EQ(kOldPassword, form_list[index_non_psl]->password_value);
form_list.clear();
// Check that www.facebook.com login was modified by the update.
EXPECT_TRUE(backend.GetLogins(PasswordStore::FormDigest(form_facebook_),
&form_list));
// There should be two results -- the exact one, and the PSL-matched one.
EXPECT_EQ(2u, form_list.size());
index_non_psl = 0;
if (form_list[index_non_psl]->is_public_suffix_match)
index_non_psl = 1;
EXPECT_EQ(form_facebook_.origin, form_list[index_non_psl]->origin);
EXPECT_EQ(form_facebook_.signon_realm,
form_list[index_non_psl]->signon_realm);
EXPECT_EQ(kNewPassword, form_list[index_non_psl]->password_value);
form_list.clear();
}
// Checks various types of matching for forms with a non-HTML |scheme|.
void CheckMatchingWithScheme(const PasswordForm::Scheme& scheme) {
ASSERT_NE(PasswordForm::SCHEME_HTML, scheme);
other_auth_.scheme = scheme;
// Don't match a non-HTML form with an HTML form.
EXPECT_FALSE(
CheckCredentialAvailability(other_auth_, GURL("http://www.example.com"),
PasswordForm::SCHEME_HTML, nullptr));
// Don't match an HTML form with non-HTML auth form.
EXPECT_FALSE(CheckCredentialAvailability(
form_google_, GURL("http://www.google.com/"), scheme, nullptr));
// Don't match two different non-HTML auth forms with different origin.
EXPECT_FALSE(CheckCredentialAvailability(
other_auth_, GURL("http://first.example.com"), scheme, nullptr));
// Do match non-HTML forms from the same origin.
EXPECT_TRUE(CheckCredentialAvailability(
other_auth_, GURL("http://www.example.com/"), scheme, nullptr));
}
void CheckRemoveLoginsBetween(RemoveBetweenMethod date_to_test) {
NativeBackendLibsecret backend(42);
base::Time now = base::Time::Now();
base::Time next_day = now + base::TimeDelta::FromDays(1);
form_google_.date_synced = base::Time();
form_isc_.date_synced = base::Time();
form_google_.date_created = now;
form_isc_.date_created = now;
if (date_to_test == CREATED) {
form_google_.date_created = now;
form_isc_.date_created = next_day;
} else {
form_google_.date_synced = now;
form_isc_.date_synced = next_day;
}
VerifiedAdd(&backend, form_google_);
VerifiedAdd(&backend, form_isc_);
PasswordStoreChangeList expected_changes;
expected_changes.push_back(
PasswordStoreChange(PasswordStoreChange::REMOVE, form_google_));
PasswordStoreChangeList changes;
bool (NativeBackendLibsecret::*method)(
base::Time, base::Time, password_manager::PasswordStoreChangeList*) =
date_to_test == CREATED
? &NativeBackendLibsecret::RemoveLoginsCreatedBetween
: &NativeBackendLibsecret::RemoveLoginsSyncedBetween;
EXPECT_TRUE(base::Bind(method, base::Unretained(&backend), base::Time(),
next_day, &changes).Run());
CheckPasswordChanges(expected_changes, changes);
EXPECT_EQ(1u, global_mock_libsecret_items->size());
if (!global_mock_libsecret_items->empty() > 0)
CheckMockSecretItem((*global_mock_libsecret_items)[0].get(), form_isc_,
"chrome-42");
// Remove form_isc_.
expected_changes.clear();
expected_changes.push_back(
PasswordStoreChange(PasswordStoreChange::REMOVE, form_isc_));
EXPECT_TRUE(base::Bind(method, base::Unretained(&backend), next_day,
base::Time(), &changes).Run());
CheckPasswordChanges(expected_changes, changes);
EXPECT_TRUE(global_mock_libsecret_items->empty());
}
base::test::ScopedTaskEnvironment scoped_task_environment_;
// Provide some test forms to avoid having to set them up in each test.
PasswordForm form_google_;
PasswordForm form_facebook_;
PasswordForm form_isc_;
PasswordForm other_auth_;
std::vector<std::unique_ptr<MockSecretItem>> mock_libsecret_items_;
std::unordered_map<GObject*, MockSecretItem*> mock_map_object_to_secret_item_;
};
TEST_F(NativeBackendLibsecretTest, BasicAddLogin) {
NativeBackendLibsecret backend(42);
VerifiedAdd(&backend, form_google_);
EXPECT_EQ(1u, global_mock_libsecret_items->size());
if (!global_mock_libsecret_items->empty())
CheckMockSecretItem((*global_mock_libsecret_items)[0].get(), form_google_,
"chrome-42");
}
TEST_F(NativeBackendLibsecretTest, BasicListLogins) {
NativeBackendLibsecret backend(42);
VerifiedAdd(&backend, form_google_);
std::vector<std::unique_ptr<PasswordForm>> form_list;
EXPECT_TRUE(backend.GetAutofillableLogins(&form_list));
ASSERT_EQ(1u, form_list.size());
EXPECT_EQ(form_google_, *form_list[0]);
EXPECT_EQ(1u, global_mock_libsecret_items->size());
if (!global_mock_libsecret_items->empty())
CheckMockSecretItem((*global_mock_libsecret_items)[0].get(), form_google_,
"chrome-42");
}
TEST_F(NativeBackendLibsecretTest, GetAllLogins) {
NativeBackendLibsecret backend(42);
VerifiedAdd(&backend, form_google_);
VerifiedAdd(&backend, form_facebook_);
std::vector<std::unique_ptr<PasswordForm>> form_list;
EXPECT_TRUE(backend.GetAllLogins(&form_list));
ASSERT_EQ(2u, form_list.size());
EXPECT_THAT(form_list, UnorderedElementsAre(Pointee(form_google_),
Pointee(form_facebook_)));
}
// Save a password for www.facebook.com and see it suggested for m.facebook.com.
TEST_F(NativeBackendLibsecretTest, PSLMatchingPositive) {
PasswordForm result;
const GURL kMobileURL("http://m.facebook.com/");
EXPECT_TRUE(CheckCredentialAvailability(form_facebook_, kMobileURL,
PasswordForm::SCHEME_HTML, &result));
EXPECT_EQ(form_facebook_.origin, result.origin);
EXPECT_EQ(form_facebook_.signon_realm, result.signon_realm);
}
// Save a password for www.facebook.com and see it not suggested for
// m-facebook.com.
TEST_F(NativeBackendLibsecretTest, PSLMatchingNegativeDomainMismatch) {
EXPECT_FALSE(CheckCredentialAvailability(form_facebook_,
GURL("http://m-facebook.com/"),
PasswordForm::SCHEME_HTML, nullptr));
}
// Test PSL matching is off for domains excluded from it.
TEST_F(NativeBackendLibsecretTest, PSLMatchingDisabledDomains) {
EXPECT_FALSE(CheckCredentialAvailability(form_google_,
GURL("http://one.google.com/"),
PasswordForm::SCHEME_HTML, nullptr));
}
// Make sure PSL matches aren't available for non-HTML forms.
TEST_F(NativeBackendLibsecretTest, PSLMatchingDisabledForNonHTMLForms) {
CheckMatchingWithScheme(PasswordForm::SCHEME_BASIC);
CheckMatchingWithScheme(PasswordForm::SCHEME_DIGEST);
CheckMatchingWithScheme(PasswordForm::SCHEME_OTHER);
}
TEST_F(NativeBackendLibsecretTest, PSLUpdatingStrictUpdateLogin) {
CheckPSLUpdate(UPDATE_BY_UPDATELOGIN);
}
TEST_F(NativeBackendLibsecretTest, PSLUpdatingStrictAddLogin) {
CheckPSLUpdate(UPDATE_BY_ADDLOGIN);
}
TEST_F(NativeBackendLibsecretTest, FetchFederatedCredentialOnHTTPS) {
other_auth_.signon_realm = "federation://www.example.com/google.com";
other_auth_.origin = GURL("https://www.example.com/");
other_auth_.federation_origin =
url::Origin::Create(GURL("https://google.com/"));
EXPECT_TRUE(CheckCredentialAvailability(other_auth_,
GURL("https://www.example.com/"),
PasswordForm::SCHEME_HTML, nullptr));
}
TEST_F(NativeBackendLibsecretTest, FetchFederatedCredentialOnLocalhost) {
other_auth_.signon_realm = "federation://localhost/google.com";
other_auth_.origin = GURL("http://localhost:8080/");
other_auth_.federation_origin =
url::Origin::Create(GURL("https://google.com/"));
EXPECT_TRUE(CheckCredentialAvailability(other_auth_,
GURL("http://localhost:8080/"),
PasswordForm::SCHEME_HTML, nullptr));
}
TEST_F(NativeBackendLibsecretTest, DontFetchFederatedCredentialOnHTTP) {
other_auth_.signon_realm = "federation://www.example.com/google.com";
other_auth_.origin = GURL("https://www.example.com/");
other_auth_.federation_origin =
url::Origin::Create(GURL("https://google.com/"));
EXPECT_FALSE(CheckCredentialAvailability(other_auth_,
GURL("http://www.example.com/"),
PasswordForm::SCHEME_HTML, nullptr));
}
TEST_F(NativeBackendLibsecretTest, FetchPSLMatchedFederatedCredentialOnHTTPS) {
other_auth_.signon_realm = "federation://www.sub.example.com/google.com";
other_auth_.origin = GURL("https://www.sub.example.com/");
other_auth_.federation_origin =
url::Origin::Create(GURL("https://google.com/"));
EXPECT_TRUE(CheckCredentialAvailability(other_auth_,
GURL("https://www.example.com/"),
PasswordForm::SCHEME_HTML, nullptr));
}
TEST_F(NativeBackendLibsecretTest,
DontFetchPSLMatchedFederatedCredentialOnHTTP) {
other_auth_.signon_realm = "federation://www.sub.example.com/google.com";
other_auth_.origin = GURL("https://www.sub.example.com/");
other_auth_.federation_origin =
url::Origin::Create(GURL("https://google.com/"));
EXPECT_FALSE(CheckCredentialAvailability(other_auth_,
GURL("http://www.example.com/"),
PasswordForm::SCHEME_HTML, nullptr));
}
TEST_F(NativeBackendLibsecretTest, BasicUpdateLogin) {
NativeBackendLibsecret backend(42);
VerifiedAdd(&backend, form_google_);
PasswordForm new_form_google(form_google_);
new_form_google.times_used = 1;
new_form_google.action = GURL("http://www.google.com/different/login");
EXPECT_EQ(1u, global_mock_libsecret_items->size());
if (!global_mock_libsecret_items->empty()) {
CheckMockSecretItem((*global_mock_libsecret_items)[0].get(), form_google_,
"chrome-42");
}
// Update login
VerifiedUpdate(&backend, new_form_google);
EXPECT_EQ(1u, global_mock_libsecret_items->size());
if (!global_mock_libsecret_items->empty())
CheckMockSecretItem((*global_mock_libsecret_items)[0].get(),
new_form_google, "chrome-42");
}
TEST_F(NativeBackendLibsecretTest, BasicRemoveLogin) {
NativeBackendLibsecret backend(42);
VerifiedAdd(&backend, form_google_);
EXPECT_EQ(1u, global_mock_libsecret_items->size());
if (!global_mock_libsecret_items->empty())
CheckMockSecretItem((*global_mock_libsecret_items)[0].get(), form_google_,
"chrome-42");
VerifiedRemove(&backend, form_google_);
EXPECT_TRUE(global_mock_libsecret_items->empty());
}
// Verify fix for http://crbug.com/408783.
TEST_F(NativeBackendLibsecretTest, RemoveLoginActionMismatch) {
NativeBackendLibsecret backend(42);
VerifiedAdd(&backend, form_google_);
EXPECT_EQ(1u, global_mock_libsecret_items->size());
if (!global_mock_libsecret_items->empty())
CheckMockSecretItem((*global_mock_libsecret_items)[0].get(), form_google_,
"chrome-42");
// Action url match not required for removal.
form_google_.action = GURL("https://some.other.url.com/path");
VerifiedRemove(&backend, form_google_);
EXPECT_TRUE(global_mock_libsecret_items->empty());
}
TEST_F(NativeBackendLibsecretTest, RemoveNonexistentLogin) {
NativeBackendLibsecret backend(42);
// First add an unrelated login.
VerifiedAdd(&backend, form_google_);
EXPECT_EQ(1u, global_mock_libsecret_items->size());
if (!global_mock_libsecret_items->empty())
CheckMockSecretItem((*global_mock_libsecret_items)[0].get(), form_google_,
"chrome-42");
// Attempt to remove a login that doesn't exist.
PasswordStoreChangeList changes;
EXPECT_TRUE(backend.RemoveLogin(form_isc_, &changes));
CheckPasswordChanges(PasswordStoreChangeList(), changes);
// Make sure we can still get the first form back.
std::vector<std::unique_ptr<PasswordForm>> form_list;
EXPECT_TRUE(backend.GetAutofillableLogins(&form_list));
// Quick check that we got something back.
EXPECT_EQ(1u, form_list.size());
form_list.clear();
EXPECT_EQ(1u, global_mock_libsecret_items->size());
if (!global_mock_libsecret_items->empty())
CheckMockSecretItem((*global_mock_libsecret_items)[0].get(), form_google_,
"chrome-42");
}
TEST_F(NativeBackendLibsecretTest, UpdateNonexistentLogin) {
NativeBackendLibsecret backend(42);
// First add an unrelated login.
VerifiedAdd(&backend, form_google_);
EXPECT_EQ(1u, global_mock_libsecret_items->size());
if (!global_mock_libsecret_items->empty()) {
CheckMockSecretItem((*global_mock_libsecret_items)[0].get(), form_google_,
"chrome-42");
}
// Attempt to update a login that doesn't exist.
PasswordStoreChangeList changes;
EXPECT_TRUE(backend.UpdateLogin(form_isc_, &changes));
CheckPasswordChanges(PasswordStoreChangeList(), changes);
EXPECT_EQ(1u, global_mock_libsecret_items->size());
if (!global_mock_libsecret_items->empty())
CheckMockSecretItem((*global_mock_libsecret_items)[0].get(), form_google_,
"chrome-42");
}
TEST_F(NativeBackendLibsecretTest, UpdateSameLogin) {
NativeBackendLibsecret backend(42);
VerifiedAdd(&backend, form_google_);
EXPECT_EQ(1u, global_mock_libsecret_items->size());
if (!global_mock_libsecret_items->empty()) {
CheckMockSecretItem((*global_mock_libsecret_items)[0].get(), form_google_,
"chrome-42");
}
// Attempt to update the same login without changing anything.
PasswordStoreChangeList changes;
EXPECT_TRUE(backend.UpdateLogin(form_google_, &changes));
CheckPasswordChanges(PasswordStoreChangeList(), changes);
EXPECT_EQ(1u, global_mock_libsecret_items->size());
if (!global_mock_libsecret_items->empty()) {
CheckMockSecretItem((*global_mock_libsecret_items)[0].get(), form_google_,
"chrome-42");
}
}
TEST_F(NativeBackendLibsecretTest, AddDuplicateLogin) {
NativeBackendLibsecret backend(42);
VerifiedAdd(&backend, form_google_);
PasswordStoreChangeList expected_changes;
expected_changes.push_back(
PasswordStoreChange(PasswordStoreChange::REMOVE, form_google_));
form_google_.times_used++;
form_google_.submit_element = UTF8ToUTF16("submit2");
expected_changes.push_back(
PasswordStoreChange(PasswordStoreChange::ADD, form_google_));
PasswordStoreChangeList actual_changes = backend.AddLogin(form_google_);
CheckPasswordChanges(expected_changes, actual_changes);
EXPECT_EQ(1u, global_mock_libsecret_items->size());
if (!global_mock_libsecret_items->empty())
CheckMockSecretItem((*global_mock_libsecret_items)[0].get(), form_google_,
"chrome-42");
}
TEST_F(NativeBackendLibsecretTest, AndroidCredentials) {
NativeBackendLibsecret backend(42);
backend.Init();
PasswordForm observed_android_form;
observed_android_form.scheme = PasswordForm::SCHEME_HTML;
observed_android_form.signon_realm =
"android://7x7IDboo8u9YKraUsbmVkuf1-@net.rateflix.app/";
PasswordForm saved_android_form = observed_android_form;
saved_android_form.username_value = base::UTF8ToUTF16("randomusername");
saved_android_form.password_value = base::UTF8ToUTF16("password");
saved_android_form.date_created = base::Time::Now();
VerifiedAdd(&backend, saved_android_form);
std::vector<std::unique_ptr<PasswordForm>> form_list;
EXPECT_TRUE(backend.GetAutofillableLogins(&form_list));
EXPECT_EQ(1u, form_list.size());
EXPECT_EQ(saved_android_form, *form_list[0]);
}
TEST_F(NativeBackendLibsecretTest, RemoveLoginsCreatedBetween) {
CheckRemoveLoginsBetween(CREATED);
}
TEST_F(NativeBackendLibsecretTest, RemoveLoginsSyncedBetween) {
CheckRemoveLoginsBetween(SYNCED);
}
TEST_F(NativeBackendLibsecretTest, DisableAutoSignInForOrigins) {
NativeBackendLibsecret backend(42);
backend.Init();
form_google_.skip_zero_click = false;
form_facebook_.skip_zero_click = false;
VerifiedAdd(&backend, form_google_);
VerifiedAdd(&backend, form_facebook_);
EXPECT_EQ(2u, global_mock_libsecret_items->size());
for (const auto& item : *global_mock_libsecret_items)
CheckUint32Attribute(item.get(), "should_skip_zero_click", 0);
// Set the canonical forms to the updated value for the following comparison.
form_google_.skip_zero_click = true;
form_facebook_.skip_zero_click = true;
PasswordStoreChangeList expected_changes;
expected_changes.push_back(
PasswordStoreChange(PasswordStoreChange::UPDATE, form_facebook_));
PasswordStoreChangeList changes;
EXPECT_TRUE(backend.DisableAutoSignInForOrigins(
base::Bind(static_cast<bool (*)(const GURL&, const GURL&)>(operator==),
form_facebook_.origin),
&changes));
CheckPasswordChanges(expected_changes, changes);
EXPECT_EQ(2u, global_mock_libsecret_items->size());
CheckStringAttribute((*global_mock_libsecret_items)[0].get(), "origin_url",
form_google_.origin.spec());
CheckUint32Attribute((*global_mock_libsecret_items)[0].get(),
"should_skip_zero_click", 0);
CheckStringAttribute((*global_mock_libsecret_items)[1].get(), "origin_url",
form_facebook_.origin.spec());
CheckUint32Attribute((*global_mock_libsecret_items)[1].get(),
"should_skip_zero_click", 1);
}
TEST_F(NativeBackendLibsecretTest, SomeKeyringAttributesAreMissing) {
// Absent attributes should be filled with default values.
NativeBackendLibsecret backend(42);
VerifiedAdd(&backend, form_google_);
EXPECT_EQ(1u, global_mock_libsecret_items->size());
// Remove a string attribute.
(*global_mock_libsecret_items)[0]->RemoveAttribute("avatar_url");
// Remove an integer attribute.
(*global_mock_libsecret_items)[0]->RemoveAttribute("times_used");
std::vector<std::unique_ptr<PasswordForm>> form_list;
EXPECT_TRUE(backend.GetAutofillableLogins(&form_list));
EXPECT_EQ(1u, form_list.size());
EXPECT_EQ(GURL(""), form_list[0]->icon_url);
EXPECT_EQ(0, form_list[0]->times_used);
}
TEST_F(NativeBackendLibsecretTest, ReadDuplicateForms) {
NativeBackendLibsecret backend(42);
// Add 2 slightly different password forms.
const char unique_string[] = "unique_unique_string";
const char unique_string_replacement[] = "uniKue_unique_string";
form_google_.origin =
GURL(std::string("http://www.google.com/") + unique_string);
VerifiedAdd(&backend, form_google_);
form_google_.origin =
GURL(std::string("http://www.google.com/") + unique_string_replacement);
VerifiedAdd(&backend, form_google_);
// Read the raw value back. Change the |unique_string| to
// |unique_string_replacement| so the forms become unique.
ASSERT_EQ(2u, global_mock_libsecret_items->size());
gpointer item_value = g_hash_table_lookup(
global_mock_libsecret_items->front()->attributes, "origin_url");
ASSERT_TRUE(item_value);
char* substr = strstr(static_cast<char*>(item_value), unique_string);
ASSERT_TRUE(substr);
ASSERT_EQ(strlen(unique_string), strlen(unique_string_replacement));
strncpy(substr, unique_string_replacement, strlen(unique_string));
// Now test that GetAutofillableLogins returns only one form.
std::vector<std::unique_ptr<PasswordForm>> form_list;
EXPECT_TRUE(backend.GetAutofillableLogins(&form_list));
EXPECT_EQ(1u, form_list.size());
EXPECT_EQ(form_google_, *form_list[0]);
EXPECT_EQ(1u, global_mock_libsecret_items->size());
if (!global_mock_libsecret_items->empty()) {
CheckMockSecretItem((*global_mock_libsecret_items)[0].get(), form_google_,
"chrome-42");
}
}
// TODO(mdm): add more basic tests here at some point.
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
a63a045d64895b7253620b918457f73822cce9c4 | b7840dba6eb4b4f9391a9827f49b8938d734b26b | /myTCPserver.cpp | 4d9ccf5c032dbdf661301b2a9a636380ced6b2dc | [
"MIT"
] | permissive | gcjyzdd/A-Cpp-Class-wrapper-calling-OpenCV-functions-in-Matlab | 5970134631530431aad0e15b3dc6d6d5a6379fbf | 3d7b58d283a1803a22294c67649c0704a3ec7373 | refs/heads/master | 2021-05-10T21:49:05.321030 | 2018-01-22T10:57:55 | 2018-01-22T10:57:55 | 118,238,462 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,724 | cpp |
#include "myTCPserver.hpp"
using namespace cv;
MyTCPServer::MyTCPServer(int port): recvFlag(true)
{
printf("Port No = %d\n", port);
if (WSAStartup(MAKEWORD(2, 2), &wsa) != 0)
{
printf("Failed. Error Code : %d", WSAGetLastError());
}
printf("Initialised.\n");
//Create a socket
if ((s = socket(AF_INET, SOCK_STREAM, 0)) == INVALID_SOCKET)
{
printf("Could not create socket : %d", WSAGetLastError());
}
printf("Socket created.\n");
//Prepare the sockaddr_in structure
server.sin_family = AF_INET;
server.sin_addr.s_addr = INADDR_ANY;
server.sin_port = htons(port);
//Bind
if (bind(s, (struct sockaddr *)&server, sizeof(server)) == SOCKET_ERROR)
{
printf("Bind failed with error code : %d", WSAGetLastError());
}
printf("Bind done\n");
//Listen to incoming connections
listen(s, 3);
//Accept and incoming connection
printf("Waiting for incoming connections...\n");
return;
}
void MyTCPServer::wait()
{
int c;
c = sizeof(struct sockaddr_in);
new_socket = accept(s, (struct sockaddr *)&client, &c);
if (new_socket == INVALID_SOCKET)
{
printf("accept failed with error code : %d", WSAGetLastError());
}
recvFlag = true;
printf("Connection accepted\n");
}
void MyTCPServer::waitFlag()
{
recvFlag = false;
int size, read_size, stat, packet_index;
//Send Picture as Byte Array
if (DB_PRINT) { printf("Sending Picture as Byte Array\n"); }
int flag;
do { //Read while we get errors that are due to signals.
stat = recv(new_socket, (char*)&flag, sizeof(int), 0);
if (DB_PRINT) { printf("Bytes read: %i\n", stat); }
} while (stat < 0);
if(flag == 1)
{
recvFlag=true;
}
if (DB_PRINT) {
printf("Received data in socket\n");
//std::cout << "received: "<<read_buffer << std::endl;
printf("Socket data: %d\n", flag);
}
}
void MyTCPServer::encodeImg(Mat& input)
{
cv::imencode(".jpeg", input, buff_, param_);
}
int MyTCPServer::init(int height, int width)
{
// Set encoding parameters
if(!param_.empty())
{
param_.push_back( cv::IMWRITE_JPEG_QUALITY);
param_.push_back( 80);//default(95) 0-100
}
// Allocate Mat buffer
imgBuff_ = Mat::zeros(height, width, CV_8UC3);
return 0;
}
int MyTCPServer::sendImg(const mxArray* input)
{
imgBuff_ = cv::Mat(960, 1280, CV_8UC3, (uchar*)mxGetPr(input));
encodeImg( imgBuff_ );
size_t len = buff_.size();
if (recvFlag)
{
return sendImg_(reinterpret_cast<char*>(buff_.data()), len);
}
else
{
return 1;
}
}
int MyTCPServer::sendImg_(char * ptr, size_t len)
{
recvFlag = false;
int size, read_size, stat, packet_index;
const int batch = 10240;
char read_buffer[256];
packet_index = 1;
size = len;
//Send Picture Size
if (DB_PRINT) { printf("Sending Picture Size %d\n", len); }
send(new_socket, (char *)&size, sizeof(int), 0);
//return 0;
//Send Picture as Byte Array
if (DB_PRINT) { printf("Sending Picture as Byte Array\n"); }
do { //Read while we get errors that are due to signals.
stat = recv(new_socket, read_buffer, 255, 0);
if (DB_PRINT) { printf("Bytes read: %i\n", stat); }
} while (stat < 0);
if (DB_PRINT) {
printf("Received data in socket\n");
//std::cout << "received: "<<read_buffer << std::endl;
printf("Socket data: %s\n", read_buffer);
}
int n = len / (batch);
int rem = len % (batch);
int total = 0;
for (int ii = 0;ii < n;ii++)
{
read_size = batch;
do {
stat = send(new_socket, ptr, read_size, 0);
} while (stat < 0);
ptr += batch;
total += batch;
if (DB_PRINT) {
printf("Packet Number: %i\n", packet_index);
printf("Packet Size Sent: %i\n", read_size);
printf(" \n");
printf(" \n");
packet_index++;
}
}
if (rem > 0) {
read_size = rem;
do {
stat = send(new_socket, ptr, read_size, 0);
} while (stat < 0);
if (DB_PRINT) {
printf("Packet Number: %i\n", packet_index);
printf("Packet Size Sent: %i\n", read_size);
printf(" \n");
printf(" \n");
packet_index++;
total += read_size;
}
ptr += read_size;
}
printf("Image successfully Sent! Total Size = %d\n", total);
ptr -= total;
return 0;
}
| [
"changjieguan@gmail.com"
] | changjieguan@gmail.com |
19b507ceaab689a656d2b20493ec79a491c9b72f | f5fdf5555294f28ee6be844b826f14b6a8ad2872 | /arch/aarch64/xen.cc | a20b566580937f303517f540f0832091381d0057 | [
"BSD-3-Clause"
] | permissive | Mattlk13/OSV | 8fa4204860ef7b48579720fd34ebf255d080fd04 | 959adeea66f943bdd854dcb4c7203b06c743e6c1 | refs/heads/master | 2023-05-01T10:05:53.262185 | 2017-02-26T23:43:54 | 2017-02-26T23:43:54 | 80,388,452 | 0 | 0 | NOASSERTION | 2023-04-18T04:14:00 | 2017-01-30T02:32:49 | C | UTF-8 | C++ | false | false | 719 | cc | /*
* Copyright (C) 2017 Sergiy Kibrik <sergiy.kibrik@globallogic.com>
*
* This work is open source software, licensed under the terms of the
* BSD license as described in the LICENSE file in the top-level directory.
*/
#include <osv/types.h>
#include <xen/interface/xen.h>
#include "arch-dtb.hh"
#include "xen.hh"
shared_info_t *HYPERVISOR_shared_info;
namespace xen {
shared_info_t dummy_info;
}
extern "C" {
void init_xen()
{
HYPERVISOR_shared_info = nullptr;
if (dtb_get_vmm_is_xen()) {
/* set valid pointer just to know we're under Xen.
* Real shared page will be set up later, when page allocator works.
*/
HYPERVISOR_shared_info = &xen::dummy_info;
}
}
}
| [
"sergiy.kibrik@globallogic.com"
] | sergiy.kibrik@globallogic.com |
cab81b3a6d18fb6ff14738784b0328e97da47a17 | cfc2a274266b3f21352b850d36d6201c64e50e16 | /behavioral_patterns/iterator/pseudo1.cpp | e74c2043aee1377f9f6d35c92ad144c0afc9057b | [] | no_license | darkslab/tutorial-Design-Patterns | 7bc6359214482d2959e0ac2c8d1fc003dbd24718 | f23504dbd4982633b6f334e8e9ca64993ccea55c | refs/heads/master | 2021-11-12T03:37:34.596704 | 2017-06-03T03:21:54 | 2017-06-03T03:21:54 | 89,122,029 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 838 | cpp | template <class Item>
class ListIterator: public Iterator<Item> {
public:
ListIterator(const List<Item>* aList);
virtual void First();
virtual void Next();
virtual bool IsDone() const;
virtual Item CurrentItem() const;
private:
const List<Item>* _list;
long _current;
};
template <class Item>
ListIterator<Item>::ListIterator(const List<Item>* aList): _list(aList), _current(0)
{
}
template <class Item>
void ListIterator<Item>::First()
{
_current = 0;
}
template <class Item>
void ListIterator<Item>::Next()
{
_current++;
}
template <class Item>
bool ListIterator<Item>::IsDone() const
{
return _current >= _list->Count();
}
template <class Item>
Item ListIterator<Item>::CurrentItem() const
{
if (IsDone()) {
throw IteratorOutOfBounds;
}
return _list->Get(_current);
}
| [
"darkhan@baimyrza.com"
] | darkhan@baimyrza.com |
f28a64b575328ca0420e96d5c320acfe25031360 | 927d718336c3df467d70d517a94dc8ccafdcd298 | /llvm/lib/Target/R600/R600InstrInfo.h | 0d1ffc80026e203f582bbd74fb3f4a262d62b837 | [
"NCSA"
] | permissive | rofl0r/ellcc | 3f54f0e9614d0920d8b648b64048a383c7304b3d | a40bd7b9d4a74992c4ac8273e44ecee44241ebde | refs/heads/master | 2021-01-19T08:46:05.647311 | 2013-09-29T13:12:16 | 2013-09-29T13:12:16 | 4,942,860 | 6 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 11,861 | h | //===-- R600InstrInfo.h - R600 Instruction Info Interface -------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
/// \file
/// \brief Interface definition for R600InstrInfo
//
//===----------------------------------------------------------------------===//
#ifndef R600INSTRUCTIONINFO_H_
#define R600INSTRUCTIONINFO_H_
#include "AMDGPUInstrInfo.h"
#include "R600Defines.h"
#include "R600RegisterInfo.h"
#include <map>
namespace llvm {
class AMDGPUTargetMachine;
class DFAPacketizer;
class ScheduleDAG;
class MachineFunction;
class MachineInstr;
class MachineInstrBuilder;
class R600InstrInfo : public AMDGPUInstrInfo {
private:
const R600RegisterInfo RI;
const AMDGPUSubtarget &ST;
int getBranchInstr(const MachineOperand &op) const;
std::vector<std::pair<int, unsigned> >
ExtractSrcs(MachineInstr *MI, const DenseMap<unsigned, unsigned> &PV, unsigned &ConstCount) const;
public:
enum BankSwizzle {
ALU_VEC_012_SCL_210 = 0,
ALU_VEC_021_SCL_122,
ALU_VEC_120_SCL_212,
ALU_VEC_102_SCL_221,
ALU_VEC_201,
ALU_VEC_210
};
explicit R600InstrInfo(AMDGPUTargetMachine &tm);
const R600RegisterInfo &getRegisterInfo() const;
virtual void copyPhysReg(MachineBasicBlock &MBB,
MachineBasicBlock::iterator MI, DebugLoc DL,
unsigned DestReg, unsigned SrcReg,
bool KillSrc) const;
bool isTrig(const MachineInstr &MI) const;
bool isPlaceHolderOpcode(unsigned opcode) const;
bool isReductionOp(unsigned opcode) const;
bool isCubeOp(unsigned opcode) const;
/// \returns true if this \p Opcode represents an ALU instruction.
bool isALUInstr(unsigned Opcode) const;
bool hasInstrModifiers(unsigned Opcode) const;
bool isLDSInstr(unsigned Opcode) const;
bool isTransOnly(unsigned Opcode) const;
bool isTransOnly(const MachineInstr *MI) const;
bool isVectorOnly(unsigned Opcode) const;
bool isVectorOnly(const MachineInstr *MI) const;
bool isExport(unsigned Opcode) const;
bool usesVertexCache(unsigned Opcode) const;
bool usesVertexCache(const MachineInstr *MI) const;
bool usesTextureCache(unsigned Opcode) const;
bool usesTextureCache(const MachineInstr *MI) const;
bool mustBeLastInClause(unsigned Opcode) const;
bool readsLDSSrcReg(const MachineInstr *MI) const;
/// \returns The operand index for the given source number. Legal values
/// for SrcNum are 0, 1, and 2.
int getSrcIdx(unsigned Opcode, unsigned SrcNum) const;
/// \returns The operand Index for the Sel operand given an index to one
/// of the instruction's src operands.
int getSelIdx(unsigned Opcode, unsigned SrcIdx) const;
/// \returns a pair for each src of an ALU instructions.
/// The first member of a pair is the register id.
/// If register is ALU_CONST, second member is SEL.
/// If register is ALU_LITERAL, second member is IMM.
/// Otherwise, second member value is undefined.
SmallVector<std::pair<MachineOperand *, int64_t>, 3>
getSrcs(MachineInstr *MI) const;
unsigned isLegalUpTo(
const std::vector<std::vector<std::pair<int, unsigned> > > &IGSrcs,
const std::vector<R600InstrInfo::BankSwizzle> &Swz,
const std::vector<std::pair<int, unsigned> > &TransSrcs,
R600InstrInfo::BankSwizzle TransSwz) const;
bool FindSwizzleForVectorSlot(
const std::vector<std::vector<std::pair<int, unsigned> > > &IGSrcs,
std::vector<R600InstrInfo::BankSwizzle> &SwzCandidate,
const std::vector<std::pair<int, unsigned> > &TransSrcs,
R600InstrInfo::BankSwizzle TransSwz) const;
/// Given the order VEC_012 < VEC_021 < VEC_120 < VEC_102 < VEC_201 < VEC_210
/// returns true and the first (in lexical order) BankSwizzle affectation
/// starting from the one already provided in the Instruction Group MIs that
/// fits Read Port limitations in BS if available. Otherwise returns false
/// and undefined content in BS.
/// isLastAluTrans should be set if the last Alu of MIs will be executed on
/// Trans ALU. In this case, ValidTSwizzle returns the BankSwizzle value to
/// apply to the last instruction.
/// PV holds GPR to PV registers in the Instruction Group MIs.
bool fitsReadPortLimitations(const std::vector<MachineInstr *> &MIs,
const DenseMap<unsigned, unsigned> &PV,
std::vector<BankSwizzle> &BS,
bool isLastAluTrans) const;
/// An instruction group can only access 2 channel pair (either [XY] or [ZW])
/// from KCache bank on R700+. This function check if MI set in input meet
/// this limitations
bool fitsConstReadLimitations(const std::vector<MachineInstr *> &) const;
/// Same but using const index set instead of MI set.
bool fitsConstReadLimitations(const std::vector<unsigned>&) const;
/// \breif Vector instructions are instructions that must fill all
/// instruction slots within an instruction group.
bool isVector(const MachineInstr &MI) const;
virtual MachineInstr * getMovImmInstr(MachineFunction *MF, unsigned DstReg,
int64_t Imm) const;
virtual unsigned getIEQOpcode() const;
virtual bool isMov(unsigned Opcode) const;
DFAPacketizer *CreateTargetScheduleState(const TargetMachine *TM,
const ScheduleDAG *DAG) const;
bool ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const;
bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB,
SmallVectorImpl<MachineOperand> &Cond, bool AllowModify) const;
unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, MachineBasicBlock *FBB, const SmallVectorImpl<MachineOperand> &Cond, DebugLoc DL) const;
unsigned RemoveBranch(MachineBasicBlock &MBB) const;
bool isPredicated(const MachineInstr *MI) const;
bool isPredicable(MachineInstr *MI) const;
bool
isProfitableToDupForIfCvt(MachineBasicBlock &MBB, unsigned NumCyles,
const BranchProbability &Probability) const;
bool isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumCyles,
unsigned ExtraPredCycles,
const BranchProbability &Probability) const ;
bool
isProfitableToIfCvt(MachineBasicBlock &TMBB,
unsigned NumTCycles, unsigned ExtraTCycles,
MachineBasicBlock &FMBB,
unsigned NumFCycles, unsigned ExtraFCycles,
const BranchProbability &Probability) const;
bool DefinesPredicate(MachineInstr *MI,
std::vector<MachineOperand> &Pred) const;
bool SubsumesPredicate(const SmallVectorImpl<MachineOperand> &Pred1,
const SmallVectorImpl<MachineOperand> &Pred2) const;
bool isProfitableToUnpredicate(MachineBasicBlock &TMBB,
MachineBasicBlock &FMBB) const;
bool PredicateInstruction(MachineInstr *MI,
const SmallVectorImpl<MachineOperand> &Pred) const;
unsigned int getInstrLatency(const InstrItineraryData *ItinData,
const MachineInstr *MI,
unsigned *PredCost = 0) const;
virtual int getInstrLatency(const InstrItineraryData *ItinData,
SDNode *Node) const { return 1;}
/// \returns a list of all the registers that may be accesed using indirect
/// addressing.
std::vector<unsigned> getIndirectReservedRegs(const MachineFunction &MF) const;
virtual int getIndirectIndexBegin(const MachineFunction &MF) const;
virtual int getIndirectIndexEnd(const MachineFunction &MF) const;
virtual unsigned calculateIndirectAddress(unsigned RegIndex,
unsigned Channel) const;
virtual const TargetRegisterClass *getIndirectAddrStoreRegClass(
unsigned SourceReg) const;
virtual const TargetRegisterClass *getIndirectAddrLoadRegClass() const;
virtual MachineInstrBuilder buildIndirectWrite(MachineBasicBlock *MBB,
MachineBasicBlock::iterator I,
unsigned ValueReg, unsigned Address,
unsigned OffsetReg) const;
virtual MachineInstrBuilder buildIndirectRead(MachineBasicBlock *MBB,
MachineBasicBlock::iterator I,
unsigned ValueReg, unsigned Address,
unsigned OffsetReg) const;
virtual const TargetRegisterClass *getSuperIndirectRegClass() const;
unsigned getMaxAlusPerClause() const;
///buildDefaultInstruction - This function returns a MachineInstr with
/// all the instruction modifiers initialized to their default values.
/// You can use this function to avoid manually specifying each instruction
/// modifier operand when building a new instruction.
///
/// \returns a MachineInstr with all the instruction modifiers initialized
/// to their default values.
MachineInstrBuilder buildDefaultInstruction(MachineBasicBlock &MBB,
MachineBasicBlock::iterator I,
unsigned Opcode,
unsigned DstReg,
unsigned Src0Reg,
unsigned Src1Reg = 0) const;
MachineInstr *buildSlotOfVectorInstruction(MachineBasicBlock &MBB,
MachineInstr *MI,
unsigned Slot,
unsigned DstReg) const;
MachineInstr *buildMovImm(MachineBasicBlock &BB,
MachineBasicBlock::iterator I,
unsigned DstReg,
uint64_t Imm) const;
/// \brief Get the index of Op in the MachineInstr.
///
/// \returns -1 if the Instruction does not contain the specified \p Op.
int getOperandIdx(const MachineInstr &MI, unsigned Op) const;
/// \brief Get the index of \p Op for the given Opcode.
///
/// \returns -1 if the Instruction does not contain the specified \p Op.
int getOperandIdx(unsigned Opcode, unsigned Op) const;
/// \brief Helper function for setting instruction flag values.
void setImmOperand(MachineInstr *MI, unsigned Op, int64_t Imm) const;
/// \returns true if this instruction has an operand for storing target flags.
bool hasFlagOperand(const MachineInstr &MI) const;
///\brief Add one of the MO_FLAG* flags to the specified \p Operand.
void addFlag(MachineInstr *MI, unsigned Operand, unsigned Flag) const;
///\brief Determine if the specified \p Flag is set on this \p Operand.
bool isFlagSet(const MachineInstr &MI, unsigned Operand, unsigned Flag) const;
/// \param SrcIdx The register source to set the flag on (e.g src0, src1, src2)
/// \param Flag The flag being set.
///
/// \returns the operand containing the flags for this instruction.
MachineOperand &getFlagOp(MachineInstr *MI, unsigned SrcIdx = 0,
unsigned Flag = 0) const;
/// \brief Clear the specified flag on the instruction.
void clearFlag(MachineInstr *MI, unsigned Operand, unsigned Flag) const;
};
namespace AMDGPU {
int getLDSNoRetOp(uint16_t Opcode);
} //End namespace AMDGPU
} // End llvm namespace
#endif // R600INSTRINFO_H_
| [
"rich@ellcc.org"
] | rich@ellcc.org |
1a43bf68ca4890eb0234d379706f155f3ad2e4e3 | 46f2c19b76749602b6d751d0f1aee15555121a9e | /src/filemanagment/fileReader.h | a64f6e738fce8b145e2958c26e3dc1593e8b3da3 | [] | no_license | matthewchiborak/DNDFighter | cb93dbd0c9b6a1c2fb948c78a374446a01acafbb | 00acc193fc1a8020dee3eb70b08a3d3b6bdb31df | refs/heads/main | 2023-04-14T10:04:48.697471 | 2021-05-01T16:26:04 | 2021-05-01T16:26:04 | 361,053,272 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 475 | h | #ifndef FILE_READER_HEADER
#define FILE_READER_HEADER
#include <iostream>
#include <queue>
class FileReader
{
public:
FileReader(std::string fileName);
bool hasNext();
std::string next();
static std::vector<std::string> splitString(std::string line, char delimeter);
static std::string replaceCharacter(std::string line, char before, char after);
private:
std::string fileName;
std::queue<std::string> fileLines;
void read();
};
#endif
| [
"matthewchiborak@hotmail.com"
] | matthewchiborak@hotmail.com |
87f7f5fbe28f060e7844a72e5c5cd7136509339e | 6d54335ef9d679c947473163513d5da971289887 | /client/source/Image3D.h | 6f166fe4eab3e7335696a299205a6ffcc78c388b | [] | no_license | Blanel/agi_project_2 | 868f4afca2aa1f93fde30896917a90131ac6cfe5 | 62797a71dea01af259912f35d0496ea1893521d7 | refs/heads/master | 2020-06-08T07:36:47.025804 | 2012-12-21T09:09:17 | 2012-12-21T09:09:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 795 | h | #ifndef IMAGE3D_H_
#define IMAGE3D_H_
#include <vector>
#include "Image2D.h"
namespace revel
{
template <typename T>
class Image3D
{
std::vector<Image2D<T>> m_Layers;
u32 m_Width;
u32 m_Height;
u32 m_Depth;
public:
Image3D(u32 w, u32 h, u32 d)
: m_Layers(d, Image2D<T>(w, h))
, m_Width(w)
, m_Height(h)
, m_Depth(d)
{}
~Image3D()
{}
const T& operator()(u32 x, u32 y, u32 z) const
{
return m_Layers[z](x, y);
}
T& operator()(u32 x, u32 y, u32 z)
{
return m_Layers[z](x, y);
}
const Image2D<T>& layer(u32 l) const
{
return m_Layers[l];
}
Image2D<T>& layer(u32 l)
{
return m_Layers[l];
}
u32 width() const
{
return m_Width;
}
u32 height() const
{
return m_Height;
}
u32 depth() const
{
return m_Depth;
}
};
}
#endif // IMAGE3D_H_ | [
"nikkola@kth.se"
] | nikkola@kth.se |
bde84248367ec0319db191aecfe7b7f9059d7a8f | 0017c3b639bf1f90a616150a76897226ed087bba | /artg4tk/pluginDetectors/gdml/TrackerHit.hh | 5e00f71b296488c7c198a58ddd45cb9ba8165db0 | [] | no_license | yarba/artg4tk | a164c159aed0d728c6069782606ae15b0dbe4268 | e107fd8689f741279a3d371cd6b772b5cadd87e5 | refs/heads/master | 2021-06-25T03:55:57.106277 | 2020-07-15T16:31:32 | 2020-07-15T16:31:32 | 132,481,088 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 714 | hh | // Calorimeter Art Hits
#ifndef TRACKERHIT_HH
#define TRACKERHIT_HH
#include <vector>
namespace artg4tk {
class TrackerHit {
public: // change later
double Edep;
double xpos;
double ypos;
double zpos;
double time;
// Default constructor
public:
TrackerHit() {}
// Hide the following from Root
#ifndef __GCCXML__
TrackerHit(double edep, double xp, double yp, double zp, double ti) :
Edep(edep),
xpos(xp),
ypos(yp),
zpos(zp),
time(ti)
{
}
double GetEdep() {
return Edep;
};
#endif
};
typedef std::vector<TrackerHit> TrackerHitCollection;
}
#endif
| [
"yarba_j@fnal.gov"
] | yarba_j@fnal.gov |
b20762af54c3fae993bd3ed68563785a5adbeec6 | d8c91d176598e612b4972e52e8365ce9b07454dd | /Concepts 4-6-10/src/lp_lay_min_ex.cpp | 9a38f801d803a60531f67fa1a3e19ed56015a959 | [] | no_license | UW-COSC-4010-5010-CYBER-FA-2017/foundational-concepts-in-cybersecurity-joshsloan | 653185ae9e71412b4e76e3ee8f4df958a524f541 | 8e356368275e7ae2bb0287e2c18806d6b9a8b24a | refs/heads/master | 2021-07-21T15:09:42.376933 | 2017-11-01T01:31:25 | 2017-11-01T01:31:25 | 106,721,437 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,523 | cpp | #include <iostream>
#include <string>
#include <sstream>
#include <fstream>
using namespace std;
int guest()
{
bool done = false;
while (!done){
string command;
cout << "Please choose a command ('filecheck','exit'): ";
cin >> command;
if (command == "filecheck"){
ifstream infile;
cout << "Please enter the file name> " << flush;
string infilename;
cin >> infilename;
infile.open(infilename.c_str());
if (infile){
cout << "File: " << infilename << " exists." << endl;
}
else{
cout << "File: " << infilename << " does NOT exist." << endl;
}
}
else if (command == "exit"){
done = true;
}
else{
cout << "Invalid command ";
}
}
return 0;
}
int user(){
bool done = false;
while (!done){
string command;
cout << "Please choose a command ('read','exit'): ";
cin >> command;
if (command == "read"){
ifstream infile;
cout << "Please enter the file name> " << flush;
string infilename;
while (true)
{
cin >> infilename;
infile.open(infilename.c_str());
if (infile) break;
cout << "Invalid file. Please enter a valid file name> " << flush;
}
char output[100];
if (infile.is_open()) {
while (!infile.eof()) {
infile >> output;
cout << output << " ";
}
}
infile.close();
cout << endl;
}
else if (command == "exit"){
done = true;
}
else{
cout << "Invalid command ";
}
}
return 0;
}
int admin(){
bool done = false;
while (!done){
string command;
cout << "Please choose a command ('read','write','exit'): ";
cin >> command;
if (command == "read"){
ifstream infile;
cout << "Please enter the file name> " << flush;
string infilename;
while (true)
{
cin >> infilename;
infile.open(infilename.c_str());
if (infile) break;
cout << "Invalid file. Please enter a valid file name> " << flush;
}
char output[100];
if (infile.is_open()) {
while (!infile.eof()) {
infile >> output;
cout << output << " ";
}
}
infile.close();
cout << endl;
}
else if (command == "write"){
ofstream outfile;
cout << "Please enter the file name> " << flush;
while (true)
{
string outfilename;
cin >> outfilename;
outfile.open(outfilename.c_str(),fstream::app);
if (outfile) break;
cout << "Invalid file. Please enter a valid file name> " << flush;
}
string newfiletext;
string throwaway;
cout << "Enter the word 'add', followed by the text you would like to append to the current file: ";
cin >> throwaway;
getline(cin,newfiletext);
outfile << newfiletext;
outfile.close();
}
else if (command == "exit"){
done = true;
}
else{
cout << "Invalid command ";
}
}
return 0;
}
int main(){
string input;
while (true)
{
cout << "Type 'guest','user', or 'admin' to interact with a file: ";
cin >> input;
if (input == "guest")
{
guest();
}
else if (input == "admin")
{
string password;
int tries = 0;
while(tries < 3)
{
cout << "PASSWORD: ";
cin >> password;
if(password == "password1")
{
admin();
break;
}
else{
tries++;
if(tries != 3){
cout << "Incorrect password, attempts remaining: " << (3-tries) << endl;
}
}
}
if(tries == 3){
cout << "Too many invalid password attempts, exiting login." << endl;
}
}
else if (input == "user")
{
string username;
string password;
cout << "USERNAME: ";
cin >> username;
if (username == "Josh")
{
int tries = 0;
while(tries < 3)
{
cout << "PASSWORD: ";
cin >> password;
if(password == "Sloan")
{
user();
break;
}
else{
tries++;
if(tries != 3){
cout << "Incorrect password, attempts remaining: " << (3-tries) << endl;
}
}
}
if(tries == 3){
cout << "Too many invalid password attempts, exiting login." << endl;
}
}
else if (username == "Ryan")
{
int tries = 0;
while(tries < 3)
{
cout << "PASSWORD: ";
cin >> password;
if(password == "Cook")
{
user();
break;
}
else{
tries++;
if(tries != 3){
cout << "Incorrect password, attempts remaining: " << (3-tries) << endl;
}
}
}
if(tries == 3){
cout << "Too many invalid password attempts, exiting login." << endl;
}
}
else
{
cout << "User with that username does not exist!" << endl;
}
}
else
{
cout << "Invalid login info" << endl;
}
}
return 0;
} | [
"jsloan3@uwyo.edu"
] | jsloan3@uwyo.edu |
e2db68bdf3b24d10f43620db4895738ed6067470 | d7b84a31cafb72a3cb71b3a3cc724a68119ba18e | /Tyr/7.92/phi | b15d530d32241f3c7c4822046e9d66d149cbef68 | [] | no_license | benroque/Ragnorak | 6cc7c68db801f9281a4ac241da754bce88ef6caf | a1bfc2430cccb207192792acebdd1530f1388a4c | refs/heads/master | 2021-01-14T08:13:18.774988 | 2017-02-20T08:32:53 | 2017-02-20T08:32:53 | 82,008,402 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,715,473 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 4.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class surfaceScalarField;
location "7.92";
object phi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 0 -1 0 0 0 0];
internalField nonuniform List<scalar>
150500
(
0.0168001
1.87947e-10
-3.54642e-12
0.0168001
1.05018e-09
-1.1568e-11
0.0168001
3.90104e-09
-1.36761e-11
0.0168
1.00405e-08
-2.13915e-11
0.0168
2.75801e-08
-2.18933e-11
0.0167999
6.31939e-08
-2.89661e-11
0.0167998
1.63912e-07
-2.96908e-11
0.0167994
3.69774e-07
-4.0485e-11
0.0167983
9.54755e-07
-4.2941e-11
0.0167962
2.18273e-06
-8.91005e-11
0.0167895
5.88338e-06
-5.93082e-11
0.0167737
1.57281e-05
-3.30619e-10
0.0167172
5.40039e-05
-3.01279e-10
0.0165435
0.000169097
-1.45559e-09
0.0155182
0.0010096
-3.00741e-09
0.0143652
0.00115312
-8.57149e-11
0.0131903
0.00117413
-2.98681e-10
0.0119382
0.00124999
-5.39183e-10
0.0106
0.00133581
-5.59279e-10
0.00916014
0.00143761
-5.75701e-10
0.00759607
0.00156186
-5.79241e-10
0.00589864
0.00169542
-5.99087e-10
0.00407571
0.00182108
-6.14208e-10
0.00212064
0.00195281
-6.26506e-10
0.00211859
-6.31237e-10
0.0168001
3.86615e-10
-3.53668e-12
0.0168001
2.15527e-09
-1.15758e-11
0.0168001
8.0111e-09
-1.36671e-11
0.0168
2.05867e-08
-2.13999e-11
0.0168
5.66166e-08
-2.1901e-11
0.0167999
1.29525e-07
-2.89967e-11
0.0167997
3.36777e-07
-2.97599e-11
0.0167994
7.55472e-07
-4.06472e-11
0.0167982
1.97139e-06
-4.32132e-11
0.016796
4.43296e-06
-8.98739e-11
0.0167889
1.2212e-05
-5.96253e-11
0.0167726
3.18512e-05
-3.31492e-10
0.0167131
0.0001111
-3.0045e-10
0.0165332
0.000344383
-1.44488e-09
0.0154936
0.00203333
-3.00371e-09
0.0143242
0.0023227
-6.39544e-11
0.0131609
0.00233676
-2.905e-10
0.0119216
0.00248715
-5.3405e-10
0.0105905
0.00266456
-5.52888e-10
0.00913782
0.00288802
-5.68437e-10
0.0075548
0.00314272
-5.73053e-10
0.00583823
0.00340998
-5.93964e-10
0.00399433
0.00366312
-6.08966e-10
0.00203157
0.00391332
-6.20545e-10
0.00414809
-6.24974e-10
0.0168001
6.03008e-10
-3.51885e-12
0.0168001
3.35755e-09
-1.15884e-11
0.0168
1.24808e-08
-1.36504e-11
0.0168
3.21017e-08
-2.14143e-11
0.0168
8.83098e-08
-2.191e-11
0.0167999
2.02574e-07
-2.90374e-11
0.0167997
5.24562e-07
-2.98453e-11
0.0167993
1.19204e-06
-4.07247e-11
0.0167981
3.03099e-06
-4.36348e-11
0.0167955
6.98727e-06
-8.95115e-11
0.0167885
1.85588e-05
-6.04442e-11
0.0167719
4.81862e-05
-3.2788e-10
0.0167128
0.000167817
-3.04009e-10
0.0165369
0.00051576
-1.43646e-09
0.0155159
0.00303808
-3.05414e-09
0.014335
0.0035041
-3.19968e-11
0.0131767
0.00349427
-2.79469e-10
0.0119496
0.00371215
-5.24174e-10
0.01063
0.00398184
-5.38374e-10
0.00918237
0.00433337
-5.49891e-10
0.00759655
0.00472638
-5.58023e-10
0.00587445
0.0051302
-5.8057e-10
0.00400868
0.00552711
-5.96909e-10
0.00203356
0.00588624
-6.09032e-10
0.00617962
-6.16978e-10
0.0168001
8.35111e-10
-3.49172e-12
0.0168001
4.60972e-09
-1.16151e-11
0.0168
1.71625e-08
-1.36464e-11
0.0168
4.40891e-08
-2.14931e-11
0.0168
1.21808e-07
-2.20935e-11
0.0167999
2.80937e-07
-2.95367e-11
0.0167997
7.21848e-07
-3.0831e-11
0.0167992
1.70184e-06
-4.55088e-11
0.0167981
4.00625e-06
-4.15166e-11
0.016795
1.00742e-05
-1.26527e-10
0.0167885
2.43451e-05
-1.6698e-11
0.0167717
6.46629e-05
-3.71175e-10
0.0167163
0.000220703
-2.39099e-10
0.0165493
0.000678317
-1.40811e-09
0.015575
0.00399574
-3.04944e-09
0.0143867
0.00469321
2.94427e-11
0.0132348
0.00464549
-2.7898e-10
0.0120264
0.00491843
-5.24625e-10
0.0107281
0.0052778
-5.28365e-10
0.00930061
0.00575893
-5.26658e-10
0.00772334
0.00630104
-5.38611e-10
0.00600044
0.00685106
-5.6237e-10
0.00412663
0.00739912
-5.79077e-10
0.00209632
0.00791434
-5.9279e-10
0.00827394
-6.06926e-10
0.0168001
9.58626e-10
-3.444e-12
0.0168001
5.29156e-09
-1.16362e-11
0.0168001
1.97128e-08
-1.35459e-11
0.0168
5.05748e-08
-2.15517e-11
0.0168
1.39868e-07
-2.16962e-11
0.0168
3.21491e-07
-2.91872e-11
0.0167998
8.36726e-07
-2.97558e-11
0.0167996
1.91347e-06
-4.07196e-11
0.0167986
4.87307e-06
-4.42551e-11
0.0167976
1.10919e-05
-8.08596e-11
0.0167893
3.18834e-05
-1.06356e-10
0.0167754
7.84514e-05
-2.671e-10
0.0167273
0.000266352
-3.62033e-10
0.0165607
0.000840204
-1.45611e-09
0.0156725
0.00486648
-3.19523e-09
0.014467
0.00589993
1.8567e-10
0.013319
0.00579271
-1.93008e-10
0.0121366
0.00609875
-4.89568e-10
0.0108724
0.00653948
-4.9621e-10
0.00948425
0.00714562
-4.94684e-10
0.00793999
0.00784396
-5.05194e-10
0.0062168
0.00857228
-5.29498e-10
0.00431057
0.00930381
-5.49282e-10
0.00222934
0.00999339
-5.66917e-10
0.0105013
-5.88473e-10
0.0168001
9.88038e-10
-3.39784e-12
0.0168001
5.45093e-09
-1.165e-11
0.0168001
2.03493e-08
-1.34786e-11
0.0168001
5.19645e-08
-2.17214e-11
0.0168
1.44112e-07
-2.14098e-11
0.0168
3.27927e-07
-2.9374e-11
0.0168
8.73836e-07
-2.96244e-11
0.0168
1.89746e-06
-4.11456e-11
0.0167994
5.38645e-06
-4.41208e-11
0.0167992
1.12203e-05
-8.2535e-11
0.016794
3.63634e-05
-1.0961e-10
0.0167889
8.33801e-05
-2.66746e-10
0.0167097
0.000343058
-3.74806e-10
0.0165678
0.000977299
-1.46579e-09
0.0157799
0.00563626
-3.33183e-09
0.0145412
0.0071404
3.335e-10
0.0134106
0.00692301
-1.16429e-10
0.0122681
0.00723897
-4.58915e-10
0.0110577
0.00774743
-4.63093e-10
0.00971713
0.00848255
-4.5276e-10
0.00821877
0.00934046
-4.56641e-10
0.00653188
0.0102572
-4.84039e-10
0.00460691
0.0112273
-5.09017e-10
0.00241151
0.0121874
-5.29924e-10
0.0129109
-5.59469e-10
0.0168001
9.78602e-10
-3.3587e-12
0.0168001
5.44853e-09
-1.16428e-11
0.0168001
2.03532e-08
-1.34997e-11
0.0168001
5.20002e-08
-2.15804e-11
0.0168001
1.43673e-07
-2.15164e-11
0.0168001
3.23972e-07
-2.91089e-11
0.0168
8.84433e-07
-2.94258e-11
0.0168002
1.76443e-06
-3.99425e-11
0.0167994
5.98647e-06
-4.37497e-11
0.0168008
9.82543e-06
-7.65747e-11
0.0167923
4.42216e-05
-1.07235e-10
0.0167898
8.56184e-05
-2.46456e-10
0.0167325
0.000397876
-4.10421e-10
0.0166236
0.00108257
-1.43083e-09
0.0161395
0.00610074
-3.51032e-09
0.0148173
0.00846533
3.64812e-10
0.0136437
0.00809666
-8.24932e-11
0.0125105
0.00837086
-4.47456e-10
0.0113499
0.00890761
-4.49329e-10
0.0100817
0.00974978
-4.2692e-10
0.00863189
0.0107886
-4.10968e-10
0.00696889
0.0119186
-4.30356e-10
0.00503472
0.0131595
-4.52474e-10
0.00273851
0.0144813
-4.74181e-10
0.0156476
-5.08977e-10
0.0168001
1.16969e-09
-3.33964e-12
0.0168001
6.46389e-09
-1.15997e-11
0.0168001
2.40286e-08
-1.36139e-11
0.0168
6.15118e-08
-2.13858e-11
0.0168
1.69692e-07
-2.18941e-11
0.0168
3.86811e-07
-2.90796e-11
0.0167998
1.02513e-06
-2.99884e-11
0.0167993
2.21132e-06
-4.24871e-11
0.0167987
6.50778e-06
-4.08438e-11
0.0167969
1.17204e-05
-1.10297e-10
0.0167932
4.71248e-05
-3.25247e-11
0.0167873
9.15678e-05
-3.24785e-10
0.0167725
0.000410179
-2.67095e-10
0.0167473
0.00110447
-1.33025e-09
0.0168536
0.00597418
-3.38519e-09
0.0154344
0.00988716
2.84854e-10
0.0141282
0.00940305
-1.35627e-10
0.0129519
0.00954475
-4.31091e-10
0.0118091
0.0100471
-4.28218e-10
0.0105866
0.0109708
-3.9949e-10
0.00921308
0.0121607
-3.75003e-10
0.00760377
0.0135266
-3.86935e-10
0.00567904
0.0150831
-4.00709e-10
0.00325122
0.0169074
-4.17109e-10
0.018897
-4.47058e-10
0.0168001
1.52646e-09
-3.29784e-12
0.0168001
6.84531e-09
-1.15967e-11
0.0168001
2.71026e-08
-1.35872e-11
0.0168
6.71842e-08
-2.13186e-11
0.0168
1.89134e-07
-2.16615e-11
0.0168
4.23623e-07
-2.85193e-11
0.0167999
1.13176e-06
-2.86889e-11
0.0167996
2.44531e-06
-3.70816e-11
0.0167992
6.80448e-06
-4.1778e-11
0.0167974
1.35324e-05
-6.27244e-11
0.0167978
4.605e-05
-8.44008e-11
0.0168027
8.64333e-05
-2.18533e-10
0.0168291
0.000381348
-3.54032e-10
0.0169493
0.000981197
-1.18531e-09
0.0180183
0.00488477
-3.26955e-09
0.0164736
0.0114342
-1.20333e-10
0.0148777
0.0110011
-2.76497e-10
0.0136721
0.0107508
-4.07886e-10
0.0125417
0.0111769
-3.96916e-10
0.0113485
0.0121626
-3.63627e-10
0.0100154
0.0134926
-3.43556e-10
0.0085395
0.0150011
-3.45536e-10
0.00674952
0.0168718
-3.46337e-10
0.00422185
0.0194338
-3.45368e-10
0.0231172
-3.65615e-10
0.0168001
-3.3436e-12
2.76802e-09
0.0168001
-1.15215e-11
2.67055e-09
0.0168
-1.3754e-11
3.82259e-08
0.0168001
-2.13818e-11
3.66128e-08
0.0168
-2.17674e-11
2.56125e-07
0.0168002
-2.85249e-11
2.42441e-07
0.0167998
-2.84835e-11
1.54298e-06
0.0168008
-3.65206e-11
1.35977e-06
0.016798
-4.0025e-11
9.61639e-06
0.0168052
-5.9476e-11
6.24845e-06
0.0167831
-7.02659e-11
6.77322e-05
0.0168383
-2.08718e-10
3.09373e-05
0.0167358
-2.26746e-10
0.000481684
0.0170939
-8.38188e-10
0.000623083
0.018205
-1.80336e-09
0.00375921
0.0172214
-1.40412e-09
0.0124091
0.015558
-6.3934e-10
0.012661
0.0145128
-4.03313e-10
0.011795
0.0133649
-3.57459e-10
0.0123239
0.0123053
-3.48471e-10
0.0132213
0.011158
-3.2541e-10
0.0146391
0.0098909
-3.16641e-10
0.0162673
0.00824121
-3.01037e-10
0.0185206
0.0058328
-2.74615e-10
0.0218412
-2.72228e-10
0.0289486
0.0168001
1.92796e-10
-6.1102e-16
0.0168001
1.05037e-09
-3.19937e-15
0.0168
3.90717e-09
-7.45602e-15
0.0168
1.00414e-08
-1.56262e-14
0.0168
2.75781e-08
-3.22006e-14
0.0167999
6.31768e-08
-6.14191e-14
0.0167998
1.63863e-07
-1.41599e-13
0.0167994
3.6965e-07
-2.77193e-13
0.0167983
9.54521e-07
-7.28824e-13
0.0167962
2.18212e-06
-1.48618e-12
0.0167895
5.88281e-06
-4.08463e-12
0.0167737
1.57272e-05
-1.09786e-11
0.0167172
5.40035e-05
-2.98771e-11
0.0165435
0.000169105
-9.37466e-11
0.0155182
0.0010096
-2.41796e-10
0.0143652
0.00115309
3.93278e-12
0.0131903
0.00117411
-1.17027e-11
0.0119382
0.00124998
-3.23871e-11
0.0106001
0.00133581
-3.43194e-11
0.00916018
0.00143762
-3.5417e-11
0.0075961
0.00156188
-3.37683e-11
0.00589865
0.00169544
-3.34053e-11
0.0040757
0.0018211
-3.37621e-11
0.00212062
0.00195283
-3.42639e-11
0.00211857
-3.46007e-11
0.0168001
3.95535e-10
-6.1381e-16
0.0168001
2.15684e-09
-3.21148e-15
0.0168
8.02193e-09
-7.49692e-15
0.0168
2.0586e-08
-1.57161e-14
0.0168
5.66042e-08
-3.24405e-14
0.0167999
1.29467e-07
-6.19189e-14
0.0167997
3.36618e-07
-1.42807e-13
0.0167994
7.55112e-07
-2.79829e-13
0.0167982
1.9703e-06
-7.33912e-13
0.016796
4.43189e-06
-1.49889e-12
0.0167889
1.22068e-05
-4.10242e-12
0.0167726
3.18513e-05
-1.09837e-11
0.0167131
0.000111096
-2.99445e-11
0.0165332
0.000344399
-9.35605e-11
0.0154936
0.00203331
-2.42558e-10
0.0143243
0.00232263
5.50314e-12
0.0131609
0.00233672
-1.12264e-11
0.0119216
0.00248713
-3.23113e-11
0.0105906
0.00266455
-3.40734e-11
0.00913788
0.00288803
-3.49551e-11
0.00755484
0.00314274
-3.33182e-11
0.00583824
0.00341002
-3.30228e-11
0.00399432
0.00366315
-3.34005e-11
0.00203155
0.00391335
-3.39103e-11
0.00414806
-3.42453e-11
0.0168001
6.16701e-10
-6.19508e-16
0.0168001
3.35742e-09
-3.23702e-15
0.0168
1.24894e-08
-7.57677e-15
0.0168
3.20814e-08
-1.58872e-14
0.0168
8.82184e-08
-3.28585e-14
0.0167999
2.02327e-07
-6.27247e-14
0.0167997
5.23997e-07
-1.44673e-13
0.0167993
1.18963e-06
-2.82424e-13
0.0167981
3.03126e-06
-7.42678e-13
0.0167956
6.96955e-06
-1.50249e-12
0.0167885
1.85775e-05
-4.13984e-12
0.016772
4.81642e-05
-1.09246e-11
0.0167127
0.000167848
-3.01517e-11
0.0165369
0.000515777
-9.33957e-11
0.0155159
0.0030381
-2.4577e-10
0.014335
0.00350397
8.86819e-12
0.0131768
0.00349419
-1.02024e-11
0.0119497
0.00371211
-3.22339e-11
0.01063
0.00398182
-3.36872e-11
0.00918241
0.00433339
-3.41429e-11
0.00759658
0.00472641
-3.26741e-11
0.00587447
0.00513026
-3.24661e-11
0.00400868
0.00552717
-3.28013e-11
0.00203355
0.00588627
-3.32805e-11
0.00617957
-3.35899e-11
0.0168001
8.58458e-10
-6.47835e-16
0.0168001
4.6178e-09
-3.34762e-15
0.0168
1.72231e-08
-7.99287e-15
0.0168
4.40998e-08
-1.68442e-14
0.0168
1.22006e-07
-3.5654e-14
0.0167999
2.81193e-07
-6.94354e-14
0.0167997
7.22464e-07
-1.58218e-13
0.0167992
1.70415e-06
-3.45119e-13
0.0167981
4.00571e-06
-7.19167e-13
0.0167949
1.00936e-05
-1.98035e-12
0.0167885
2.43109e-05
-3.32479e-12
0.0167716
6.47021e-05
-1.13158e-11
0.0167164
0.000220637
-2.97206e-11
0.0165494
0.000678274
-9.32703e-11
0.0155752
0.00399557
-2.50609e-10
0.014387
0.00469303
1.14433e-11
0.013235
0.00464546
-9.20847e-12
0.0120266
0.00491843
-3.21177e-11
0.0107283
0.00527781
-3.31926e-11
0.00930079
0.00575898
-3.28507e-11
0.00772347
0.00630112
-3.14919e-11
0.00600053
0.00685116
-3.14859e-11
0.00412668
0.00739921
-3.17999e-11
0.00209634
0.0079144
-3.23093e-11
0.00827392
-3.26273e-11
0.0168001
9.81624e-10
-6.31635e-16
0.0168001
5.30458e-09
-3.2642e-15
0.0168001
1.97637e-08
-7.70665e-15
0.0168
5.05376e-08
-1.64017e-14
0.0168
1.4003e-07
-3.36732e-14
0.0168
3.21526e-07
-6.54403e-14
0.0167998
8.3696e-07
-1.49929e-13
0.0167996
1.91371e-06
-3.0165e-13
0.0167986
4.87408e-06
-7.52941e-13
0.0167977
1.10927e-05
-1.56015e-12
0.0167893
3.1888e-05
-4.52285e-12
0.0167754
7.84524e-05
-1.08736e-11
0.0167273
0.000266345
-2.81273e-11
0.0165606
0.000840195
-9.59855e-11
0.0156723
0.0048664
-2.55672e-10
0.014467
0.00589961
1.93512e-11
0.0133191
0.00579257
-8.45795e-12
0.0121368
0.00609869
-3.19635e-11
0.0108726
0.00653947
-3.26176e-11
0.00948442
0.00714566
-3.2122e-11
0.00794016
0.00784405
-3.04709e-11
0.00621694
0.00857241
-3.04868e-11
0.00431067
0.00930393
-3.06652e-11
0.00222939
0.0099935
-3.10745e-11
0.0105013
-3.1431e-11
0.0168001
1.00743e-09
-6.24102e-16
0.0168001
5.47038e-09
-3.22026e-15
0.0168001
2.03598e-08
-7.599e-15
0.0168001
5.20471e-08
-1.61797e-14
0.0168
1.44102e-07
-3.32059e-14
0.0168
3.28069e-07
-6.45898e-14
0.0168
8.73984e-07
-1.48449e-13
0.0168
1.89803e-06
-3.00244e-13
0.0167994
5.38667e-06
-7.51303e-13
0.0167992
1.12223e-05
-1.55802e-12
0.016794
3.63653e-05
-4.60166e-12
0.0167889
8.3394e-05
-1.07315e-11
0.0167097
0.00034305
-2.89888e-11
0.0165677
0.000977359
-9.59789e-11
0.0157796
0.0056364
-2.62135e-10
0.014541
0.00713999
2.76333e-11
0.0134104
0.00692276
-6.44732e-12
0.012268
0.00723881
-3.10711e-11
0.0110578
0.00774734
-3.09284e-11
0.00971723
0.00848254
-2.96634e-11
0.00821889
0.00934052
-2.81835e-11
0.006532
0.0102574
-2.88243e-11
0.00460701
0.0112275
-2.9276e-11
0.00241158
0.0121875
-2.95839e-11
0.012911
-3.00077e-11
0.0168001
9.89515e-10
-5.89936e-16
0.0168001
5.48065e-09
-3.07365e-15
0.0168001
2.03261e-08
-7.10149e-15
0.0168001
5.20935e-08
-1.50866e-14
0.0168001
1.4357e-07
-3.00815e-14
0.0168001
3.24011e-07
-5.74781e-14
0.0168
8.84307e-07
-1.33771e-13
0.0168002
1.76383e-06
-2.43771e-13
0.0167994
5.98825e-06
-7.44042e-13
0.0168008
9.81505e-06
-1.23583e-12
0.0167922
4.42572e-05
-4.69873e-12
0.0167898
8.559e-05
-8.75442e-12
0.0167324
0.000397981
-3.64026e-11
0.0166235
0.00108269
-9.35155e-11
0.0161389
0.00610131
-2.75196e-10
0.0148168
0.00846483
3.31884e-11
0.0136434
0.00809624
-1.28759e-12
0.0125103
0.00837059
-2.9825e-11
0.0113498
0.00890742
-2.98931e-11
0.0100817
0.00974967
-2.84811e-11
0.00863193
0.0107886
-2.62019e-11
0.00696897
0.0119187
-2.63866e-11
0.00503481
0.0131596
-2.68139e-11
0.00273855
0.0144814
-2.7139e-11
0.0156477
-2.77541e-11
0.0168001
1.18954e-09
-5.51373e-16
0.0168001
6.47233e-09
-2.93249e-15
0.0168001
2.40581e-08
-6.59889e-15
0.0168
6.15398e-08
-1.36985e-14
0.0168
1.6982e-07
-2.68696e-14
0.0167999
3.87104e-07
-4.92906e-14
0.0167998
1.02592e-06
-1.16655e-13
0.0167993
2.21426e-06
-1.71471e-13
0.0167987
6.50888e-06
-7.64471e-13
0.0167968
1.17448e-05
-5.58425e-13
0.0167932
4.71117e-05
-5.82614e-12
0.0167872
9.16266e-05
-6.87123e-12
0.0167725
0.000410159
-3.8337e-11
0.0167473
0.00110464
-9.12719e-11
0.0168533
0.00597512
-2.81524e-10
0.0154341
0.00988663
3.286e-11
0.0141279
0.00940253
4.41681e-12
0.0129518
0.00954439
-2.52967e-11
0.011809
0.0100469
-2.66068e-11
0.0105865
0.0109707
-2.64357e-11
0.00921303
0.0121607
-2.39417e-11
0.00760378
0.0135266
-2.39779e-11
0.00567908
0.0150832
-2.44462e-11
0.00325126
0.0169076
-2.48467e-11
0.0188972
-2.52596e-11
0.0168001
1.49064e-09
-5.66502e-16
0.0168001
6.95833e-09
-2.97962e-15
0.0168001
2.69454e-08
-6.82653e-15
0.0168
6.70736e-08
-1.42542e-14
0.0168
1.88922e-07
-2.86462e-14
0.0168
4.2356e-07
-5.41678e-14
0.0167999
1.13186e-06
-1.23895e-13
0.0167996
2.44623e-06
-2.36562e-13
0.0167992
6.80619e-06
-6.63022e-13
0.0167974
1.35399e-05
-1.19896e-12
0.0167978
4.60594e-05
-4.56598e-12
0.0168028
8.64612e-05
-7.29892e-12
0.0168291
0.000381426
-3.42701e-11
0.0169491
0.000981455
-8.50015e-11
0.0180173
0.00488655
-2.77463e-10
0.0164728
0.0114334
3.80371e-12
0.0148772
0.0110002
-7.14763e-12
0.0136718
0.0107504
-2.49926e-11
0.0125414
0.0111766
-2.57332e-11
0.0113483
0.0121624
-2.48693e-11
0.0100152
0.0134925
-2.20345e-11
0.00853944
0.0150011
-2.16205e-11
0.0067495
0.0168719
-2.15596e-11
0.00422187
0.0194339
-2.14811e-11
0.0231174
-2.2089e-11
0.0168001
-5.45174e-16
2.63992e-09
0.0168001
-2.88275e-15
3.04585e-09
0.0168001
-6.49275e-15
3.70537e-08
0.0168001
-1.34977e-14
3.70797e-08
0.0168
-2.63374e-14
2.54868e-07
0.0168002
-4.92978e-14
2.43073e-07
0.0167998
-1.08958e-13
1.54197e-06
0.0168008
-2.08373e-13
1.36085e-06
0.016798
-5.48618e-13
9.61636e-06
0.0168052
-1.08489e-12
6.25253e-06
0.0167831
-3.08355e-12
6.77324e-05
0.0168383
-7.43849e-12
3.09686e-05
0.0167359
-2.07385e-11
0.000481693
0.017094
-5.49368e-11
0.000623316
0.0182064
-1.49033e-10
0.00375968
0.0172219
-1.058e-10
0.0124093
0.0155581
-4.26223e-11
0.0126607
0.0145127
-2.93052e-11
0.0117946
0.0133647
-2.65242e-11
0.0123236
0.0123051
-2.56189e-11
0.0132211
0.0111579
-2.22879e-11
0.0146389
0.00989081
-2.13092e-11
0.0162673
0.00824116
-1.99212e-11
0.0185206
0.00583278
-1.86677e-11
0.0218413
-1.9548e-11
0.0289488
0.0168001
1.92794e-10
1.75937e-16
0.0168001
1.05036e-09
-7.87656e-18
0.0168
3.90714e-09
-2.94939e-16
0.0168
1.00414e-08
-6.37473e-16
0.0168
2.75779e-08
-1.81415e-15
0.0167999
6.31764e-08
-3.71347e-15
0.0167998
1.63862e-07
-1.0476e-14
0.0167994
3.69648e-07
-2.14668e-14
0.0167983
9.54516e-07
-6.10859e-14
0.0167962
2.18211e-06
-1.2701e-13
0.0167895
5.8828e-06
-3.60185e-13
0.0167737
1.57272e-05
-9.7538e-13
0.0167172
5.40035e-05
-2.69721e-12
0.0165435
0.000169105
-8.49759e-12
0.0155182
0.0010096
-2.2106e-11
0.0143652
0.00115309
1.24158e-13
0.0131903
0.00117411
-1.23008e-12
0.0119382
0.00124998
-3.09109e-12
0.0106001
0.00133581
-3.27651e-12
0.00916018
0.00143762
-3.39023e-12
0.0075961
0.00156188
-3.22119e-12
0.00589865
0.00169544
-3.16081e-12
0.0040757
0.0018211
-3.17633e-12
0.00212062
0.00195283
-3.20533e-12
0.00211857
-3.21795e-12
0.0168001
3.95532e-10
1.7604e-16
0.0168001
2.15682e-09
2.44708e-18
0.0168
8.02186e-09
-2.98663e-16
0.0168
2.05858e-08
-6.45637e-16
0.0168
5.66037e-08
-1.8358e-15
0.0167999
1.29466e-07
-3.75843e-15
0.0167997
3.36615e-07
-1.05857e-14
0.0167994
7.55106e-07
-2.17067e-14
0.0167982
1.97029e-06
-6.15621e-14
0.016796
4.43187e-06
-1.28189e-13
0.0167889
1.22067e-05
-3.61983e-13
0.0167726
3.18513e-05
-9.76303e-13
0.0167131
0.000111096
-2.70501e-12
0.0165332
0.000344399
-8.48588e-12
0.0154936
0.00203332
-2.21887e-11
0.0143243
0.00232263
2.63401e-13
0.0131609
0.00233672
-1.18702e-12
0.0119216
0.00248713
-3.08466e-12
0.0105906
0.00266455
-3.25535e-12
0.00913788
0.00288804
-3.34988e-12
0.00755484
0.00314275
-3.181e-12
0.00583824
0.00341002
-3.12648e-12
0.00399433
0.00366316
-3.1435e-12
0.00203155
0.00391335
-3.17285e-12
0.00414806
-3.18449e-12
0.0168001
6.16688e-10
1.76226e-16
0.0168001
3.35737e-09
4.28006e-18
0.0168
1.24891e-08
-3.05952e-16
0.0168
3.20808e-08
-6.61174e-16
0.0168
8.82167e-08
-1.87354e-15
0.0167999
2.02323e-07
-3.83074e-15
0.0167997
5.23988e-07
-1.0756e-14
0.0167993
1.1896e-06
-2.19395e-14
0.0167981
3.03125e-06
-6.23995e-14
0.0167956
6.96931e-06
-1.28517e-13
0.0167885
1.85777e-05
-3.6586e-13
0.016772
4.81639e-05
-9.71713e-13
0.0167127
0.000167849
-2.72751e-12
0.0165369
0.000515778
-8.48158e-12
0.0155159
0.0030381
-2.251e-11
0.014335
0.00350396
5.6045e-13
0.0131768
0.00349419
-1.09567e-12
0.0119497
0.00371211
-3.08106e-12
0.01063
0.00398182
-3.2247e-12
0.00918241
0.00433339
-3.2831e-12
0.00759659
0.00472642
-3.12441e-12
0.00587447
0.00513026
-3.07887e-12
0.00400868
0.00552718
-3.09366e-12
0.00203355
0.00588628
-3.12169e-12
0.00617958
-3.13127e-12
0.0168001
8.58464e-10
1.76988e-16
0.0168001
4.61784e-09
-5.50038e-17
0.0168
1.72233e-08
-3.43713e-16
0.0168
4.41e-08
-7.48277e-16
0.0168
1.22007e-07
-2.12724e-15
0.0167999
2.81195e-07
-4.44332e-15
0.0167997
7.22468e-07
-1.19887e-14
0.0167992
1.70417e-06
-2.76941e-14
0.0167981
4.0057e-06
-6.02032e-14
0.0167949
1.00937e-05
-1.72592e-13
0.0167885
2.43106e-05
-3.19561e-13
0.0167716
6.47023e-05
-1.01016e-12
0.0167164
0.000220639
-2.69135e-12
0.0165494
0.000678274
-8.4859e-12
0.0155752
0.00399558
-2.29935e-11
0.014387
0.00469302
9.69819e-13
0.013235
0.00464546
-1.00639e-12
0.0120266
0.00491843
-3.07744e-12
0.0107284
0.00527781
-3.18786e-12
0.00930079
0.00575898
-3.18137e-12
0.00772348
0.00630112
-3.02988e-12
0.00600054
0.00685116
-3.00227e-12
0.00412669
0.00739922
-3.01845e-12
0.00209634
0.00791441
-3.04949e-12
0.00827393
-3.05951e-12
0.0168001
9.81629e-10
1.76706e-16
0.0168001
5.30462e-09
-3.0915e-17
0.0168001
1.97638e-08
-3.20739e-16
0.0168
5.05379e-08
-6.93658e-16
0.0168
1.4003e-07
-1.96964e-15
0.0168
3.21528e-07
-4.0556e-15
0.0167998
8.36964e-07
-1.12377e-14
0.0167996
1.91372e-06
-2.3631e-14
0.0167986
4.8741e-06
-6.34447e-14
0.0167977
1.10927e-05
-1.33754e-13
0.0167893
3.1888e-05
-4.01247e-13
0.0167754
7.84526e-05
-9.6972e-13
0.0167273
0.000266345
-2.55752e-12
0.0165606
0.000840197
-8.74582e-12
0.0156723
0.00486641
-2.35129e-11
0.014467
0.0058996
1.48478e-12
0.0133191
0.00579257
-9.35539e-13
0.0121368
0.00609869
-3.07159e-12
0.0108726
0.00653947
-3.1478e-12
0.00948443
0.00714566
-3.12482e-12
0.00794017
0.00784405
-2.9539e-12
0.00621694
0.00857242
-2.92606e-12
0.00431067
0.00930394
-2.93584e-12
0.00222939
0.00999351
-2.96138e-12
0.0105013
-2.97277e-12
0.0168001
1.00744e-09
1.76446e-16
0.0168001
5.47046e-09
4.05305e-18
0.0168001
2.03601e-08
-3.12404e-16
0.0168001
5.20479e-08
-6.75249e-16
0.0168
1.44105e-07
-1.93197e-15
0.0168
3.28075e-07
-3.98484e-15
0.0168
8.73996e-07
-1.11183e-14
0.0168
1.89807e-06
-2.35292e-14
0.0167994
5.38671e-06
-6.34076e-14
0.0167992
1.12225e-05
-1.3374e-13
0.016794
3.63654e-05
-4.09145e-13
0.0167889
8.33951e-05
-9.58549e-13
0.0167097
0.000343047
-2.64215e-12
0.0165677
0.000977361
-8.76285e-12
0.0157796
0.00563641
-2.41625e-11
0.014541
0.00713998
2.21528e-12
0.0134105
0.00692275
-7.51054e-13
0.012268
0.00723881
-3.0025e-12
0.0110578
0.00774734
-3.01755e-12
0.00971724
0.00848255
-2.93378e-12
0.0082189
0.00934053
-2.7817e-12
0.00653201
0.0102574
-2.80269e-12
0.00460701
0.0112275
-2.83696e-12
0.00241158
0.0121876
-2.86125e-12
0.012911
-2.8774e-12
0.0168001
9.89532e-10
1.75077e-16
0.0168001
5.48073e-09
2.23447e-17
0.0168001
2.03264e-08
-2.69618e-16
0.0168001
5.20944e-08
-5.82133e-16
0.0168001
1.43572e-07
-1.66161e-15
0.0168001
3.24016e-07
-3.36803e-15
0.0168
8.84319e-07
-9.84773e-15
0.0168002
1.76386e-06
-1.85646e-14
0.0167994
5.98827e-06
-6.292e-14
0.0168008
9.81535e-06
-1.05254e-13
0.0167922
4.42569e-05
-4.18635e-13
0.0167898
8.5591e-05
-7.82668e-13
0.0167324
0.000397981
-3.31237e-12
0.0166235
0.00108269
-8.55286e-12
0.0161389
0.00610135
-2.53829e-11
0.0148168
0.0084648
2.69958e-12
0.0136434
0.00809623
-2.43871e-13
0.0125103
0.00837058
-2.91206e-12
0.0113498
0.00890742
-2.94886e-12
0.0100817
0.00974967
-2.85683e-12
0.00863193
0.0107886
-2.63647e-12
0.00696898
0.0119187
-2.6326e-12
0.00503481
0.0131596
-2.66855e-12
0.00273856
0.0144815
-2.70602e-12
0.0156477
-2.73663e-12
0.0168001
1.18953e-09
1.72791e-16
0.0168001
6.47231e-09
6.03867e-17
0.0168001
2.40581e-08
-2.25827e-16
0.0168
6.15396e-08
-4.82142e-16
0.0168
1.69819e-07
-1.3758e-15
0.0167999
3.87102e-07
-2.71073e-15
0.0167998
1.02592e-06
-8.42943e-15
0.0167993
2.21424e-06
-1.25249e-14
0.0167987
6.50893e-06
-6.48274e-14
0.0167968
1.17446e-05
-4.74406e-14
0.0167932
4.71123e-05
-5.1739e-13
0.0167872
9.16268e-05
-6.19893e-13
0.0167725
0.000410164
-3.48021e-12
0.0167473
0.00110465
-8.35415e-12
0.0168532
0.0059752
-2.59561e-11
0.015434
0.00988659
2.64508e-12
0.0141279
0.0094025
1.78592e-13
0.0129517
0.00954438
-2.54913e-12
0.011809
0.0100469
-2.69309e-12
0.0105865
0.0109707
-2.71461e-12
0.00921303
0.0121607
-2.47734e-12
0.00760378
0.0135266
-2.47383e-12
0.00567908
0.0150832
-2.52047e-12
0.00325126
0.0169076
-2.58195e-12
0.0188972
-2.61474e-12
0.0168001
1.49065e-09
1.73635e-16
0.0168001
6.9584e-09
4.75651e-17
0.0168001
2.69456e-08
-2.45262e-16
0.0168
6.70741e-08
-5.29457e-16
0.0168
1.88923e-07
-1.52791e-15
0.0168
4.23564e-07
-3.12434e-15
0.0167999
1.13187e-06
-9.05577e-15
0.0167996
2.44625e-06
-1.80469e-14
0.0167992
6.80627e-06
-5.61544e-14
0.0167974
1.354e-05
-1.02661e-13
0.0167978
4.60603e-05
-4.08293e-13
0.0168028
8.6462e-05
-6.51923e-13
0.0168291
0.000381435
-3.12096e-12
0.0169491
0.000981478
-7.77593e-12
0.0180172
0.00488672
-2.55567e-11
0.0164727
0.0114333
-4.36718e-14
0.0148772
0.0110001
-9.18237e-13
0.0136717
0.0107503
-2.5564e-12
0.0125414
0.0111766
-2.64873e-12
0.0113483
0.0121623
-2.6124e-12
0.0100152
0.0134925
-2.36278e-12
0.00853944
0.0150011
-2.34373e-12
0.0067495
0.0168719
-2.36529e-12
0.00422187
0.0194339
-2.41905e-12
0.0231175
-2.52621e-12
0.0168001
1.72896e-16
2.63992e-09
0.0168001
7.5059e-17
3.04597e-09
0.0168001
-2.12051e-16
3.70539e-08
0.0168001
-4.5682e-16
3.70806e-08
0.0168
-1.31486e-15
2.5487e-07
0.0168002
-2.68263e-15
2.43078e-07
0.0167998
-7.71717e-15
1.54199e-06
0.0168008
-1.55375e-14
1.36088e-06
0.016798
-4.58957e-14
9.6165e-06
0.0168052
-9.25869e-14
6.25263e-06
0.0167831
-2.74268e-13
6.77334e-05
0.0168383
-6.64659e-13
3.09694e-05
0.0167359
-1.89114e-12
0.000481698
0.017094
-5.0267e-12
0.000623332
0.0182066
-1.37683e-11
0.00375973
0.0172219
-1.00966e-11
0.0124093
0.0155581
-4.2119e-12
0.0126606
0.0145127
-2.97919e-12
0.0117946
0.0133647
-2.76771e-12
0.0123236
0.0123051
-2.70864e-12
0.013221
0.0111579
-2.447e-12
0.0146389
0.0098908
-2.39122e-12
0.0162673
0.00824115
-2.34268e-12
0.0185206
0.00583278
-2.36969e-12
0.0218413
-2.65307e-12
0.0289488
0.0168001
1.92794e-10
-7.14244e-17
0.0168001
1.05036e-09
-2.73509e-16
0.0168
3.90714e-09
-7.88673e-16
0.0168
1.00414e-08
-1.5935e-15
0.0168
2.75779e-08
-4.26727e-15
0.0167999
6.31763e-08
-8.55767e-15
0.0167998
1.63862e-07
-2.36666e-14
0.0167994
3.69647e-07
-4.83115e-14
0.0167983
9.54516e-07
-1.35885e-13
0.0167962
2.18211e-06
-2.83363e-13
0.0167895
5.8828e-06
-7.91461e-13
0.0167737
1.57272e-05
-2.16541e-12
0.0167172
5.40035e-05
-5.91287e-12
0.0165435
0.000169105
-1.87756e-11
0.0155182
0.0010096
-4.97081e-11
0.0143652
0.00115309
1.59114e-12
0.0131903
0.00117411
-1.61135e-12
0.0119382
0.00124998
-5.92846e-12
0.0106001
0.00133581
-6.32541e-12
0.00916018
0.00143762
-6.48695e-12
0.0075961
0.00156188
-6.06105e-12
0.00589865
0.00169544
-5.90353e-12
0.0040757
0.0018211
-5.92216e-12
0.00212062
0.00195283
-6.03606e-12
0.00211857
-6.05467e-12
0.0168001
3.95531e-10
-7.23722e-17
0.0168001
2.15682e-09
-2.76944e-16
0.0168
8.02185e-09
-7.98528e-16
0.0168
2.05858e-08
-1.6142e-15
0.0168
5.66036e-08
-4.32082e-15
0.0167999
1.29466e-07
-8.66851e-15
0.0167997
3.36615e-07
-2.39347e-14
0.0167994
7.55106e-07
-4.88994e-14
0.0167982
1.97029e-06
-1.37033e-13
0.016796
4.43187e-06
-2.86258e-13
0.0167889
1.22067e-05
-7.95579e-13
0.0167726
3.18513e-05
-2.16841e-12
0.0167131
0.000111096
-5.92899e-12
0.0165332
0.000344399
-1.87412e-11
0.0154936
0.00203332
-4.98301e-11
0.0143243
0.00232263
1.90989e-12
0.0131609
0.00233672
-1.51442e-12
0.0119216
0.00248713
-5.90511e-12
0.0105906
0.00266455
-6.26245e-12
0.00913788
0.00288804
-6.37502e-12
0.00755484
0.00314275
-5.95137e-12
0.00583824
0.00341002
-5.80898e-12
0.00399433
0.00366316
-5.83276e-12
0.00203155
0.00391335
-5.94708e-12
0.00414806
-5.96546e-12
0.0168001
6.16686e-10
-7.42348e-17
0.0168001
3.35736e-09
-2.84221e-16
0.0168
1.24891e-08
-8.17572e-16
0.0168
3.20808e-08
-1.65338e-15
0.0168
8.82166e-08
-4.41352e-15
0.0167999
2.02323e-07
-8.84584e-15
0.0167997
5.23987e-07
-2.4349e-14
0.0167993
1.18959e-06
-4.94773e-14
0.0167981
3.03125e-06
-1.3904e-13
0.0167956
6.96929e-06
-2.87202e-13
0.0167885
1.85777e-05
-8.0449e-13
0.016772
4.81639e-05
-2.1593e-12
0.0167127
0.000167849
-5.97869e-12
0.0165369
0.000515778
-1.87248e-11
0.0155159
0.0030381
-5.05e-11
0.014335
0.00350396
2.587e-12
0.0131768
0.00349419
-1.31051e-12
0.0119497
0.00371211
-5.8834e-12
0.01063
0.00398182
-6.17317e-12
0.00918241
0.0043334
-6.1893e-12
0.00759659
0.00472642
-5.81406e-12
0.00587447
0.00513026
-5.69039e-12
0.00400868
0.00552718
-5.70421e-12
0.00203355
0.00588628
-5.8147e-12
0.00617958
-5.83121e-12
0.0168001
8.58465e-10
-8.32244e-17
0.0168001
4.61785e-09
-3.13526e-16
0.0168
1.72233e-08
-9.13508e-16
0.0168
4.41e-08
-1.86653e-15
0.0168
1.22007e-07
-5.01968e-15
0.0167999
2.81195e-07
-1.02989e-14
0.0167997
7.22468e-07
-2.72655e-14
0.0167992
1.70417e-06
-6.29652e-14
0.0167981
4.0057e-06
-1.34084e-13
0.0167949
1.00937e-05
-3.89873e-13
0.0167885
2.43106e-05
-6.96681e-13
0.0167716
6.47023e-05
-2.25327e-12
0.0167164
0.000220639
-5.88772e-12
0.0165494
0.000678274
-1.87261e-11
0.0155752
0.00399558
-5.15165e-11
0.014387
0.00469302
3.51756e-12
0.013235
0.00464545
-1.12553e-12
0.0120266
0.00491843
-5.85852e-12
0.0107284
0.00527781
-6.06803e-12
0.00930079
0.00575899
-5.89866e-12
0.00772348
0.00630112
-5.55344e-12
0.00600054
0.00685116
-5.4818e-12
0.00412669
0.00739922
-5.489e-12
0.00209634
0.00791441
-5.61832e-12
0.00827393
-5.6458e-12
0.0168001
9.81629e-10
-7.78762e-17
0.0168001
5.30462e-09
-2.97109e-16
0.0168001
1.97638e-08
-8.5731e-16
0.0168
5.05379e-08
-1.73674e-15
0.0168
1.4003e-07
-4.6541e-15
0.0168
3.21528e-07
-9.3997e-15
0.0167998
8.36964e-07
-2.55412e-14
0.0167996
1.91372e-06
-5.35428e-14
0.0167986
4.8741e-06
-1.41818e-13
0.0167977
1.10927e-05
-3.00067e-13
0.0167893
3.18881e-05
-8.87159e-13
0.0167754
7.84526e-05
-2.15838e-12
0.0167273
0.000266345
-5.60512e-12
0.0165606
0.000840197
-1.93201e-11
0.0156723
0.00486641
-5.26353e-11
0.014467
0.0058996
4.69745e-12
0.0133191
0.00579257
-9.75242e-13
0.0121368
0.00609869
-5.81818e-12
0.0108726
0.00653947
-5.93973e-12
0.00948443
0.00714566
-5.76719e-12
0.00794017
0.00784405
-5.33592e-12
0.00621694
0.00857242
-5.28515e-12
0.00431067
0.00930394
-5.25632e-12
0.00222939
0.00999351
-5.36673e-12
0.0105013
-5.41249e-12
0.0168001
1.00744e-09
-7.61601e-17
0.0168001
5.47047e-09
-2.89884e-16
0.0168001
2.03602e-08
-8.39561e-16
0.0168001
5.2048e-08
-1.69872e-15
0.0168
1.44105e-07
-4.58198e-15
0.0168
3.28075e-07
-9.26868e-15
0.0168
8.73997e-07
-2.5348e-14
0.0168
1.89807e-06
-5.35233e-14
0.0167994
5.38671e-06
-1.42073e-13
0.0167992
1.12225e-05
-3.01208e-13
0.016794
3.63654e-05
-9.0708e-13
0.0167889
8.33952e-05
-2.13974e-12
0.0167097
0.000343047
-5.79789e-12
0.0165677
0.000977361
-1.93804e-11
0.0157796
0.00563641
-5.40724e-11
0.014541
0.00713997
6.37981e-12
0.0134105
0.00692275
-5.3084e-13
0.012268
0.00723881
-5.62993e-12
0.0110578
0.00774734
-5.5612e-12
0.00971724
0.00848255
-5.21568e-12
0.0082189
0.00934053
-4.81055e-12
0.00653201
0.0102574
-4.92723e-12
0.00460701
0.0112275
-4.97794e-12
0.00241158
0.0121876
-5.06378e-12
0.012911
-5.13949e-12
0.0168001
9.89534e-10
-6.67411e-17
0.0168001
5.48073e-09
-2.56398e-16
0.0168001
2.03265e-08
-7.36923e-16
0.0168001
5.20945e-08
-1.48309e-15
0.0168001
1.43572e-07
-3.97105e-15
0.0168001
3.24016e-07
-7.87807e-15
0.0168
8.8432e-07
-2.25271e-14
0.0168002
1.76387e-06
-4.23636e-14
0.0167994
5.98827e-06
-1.41534e-13
0.0168008
9.81537e-06
-2.37567e-13
0.0167922
4.42569e-05
-9.32209e-13
0.0167898
8.55911e-05
-1.75089e-12
0.0167324
0.000397981
-7.33628e-12
0.0166235
0.00108269
-1.89589e-11
0.0161389
0.00610135
-5.69251e-11
0.0148168
0.0084648
7.50165e-12
0.0136434
0.00809622
4.76264e-13
0.0125103
0.00837058
-5.38173e-12
0.0113498
0.00890742
-5.35864e-12
0.0100817
0.00974967
-4.98121e-12
0.00863193
0.0107886
-4.39426e-12
0.00696898
0.0119187
-4.38551e-12
0.00503481
0.0131596
-4.43416e-12
0.00273856
0.0144815
-4.52215e-12
0.0156477
-4.66188e-12
0.0168001
1.18953e-09
-5.64531e-17
0.0168001
6.47231e-09
-2.22032e-16
0.0168001
2.40581e-08
-6.28508e-16
0.0168
6.15396e-08
-1.24643e-15
0.0168
1.69819e-07
-3.31106e-15
0.0167999
3.87102e-07
-6.36539e-15
0.0167998
1.02591e-06
-1.93055e-14
0.0167993
2.21424e-06
-2.84798e-14
0.0167987
6.50894e-06
-1.46479e-13
0.0167968
1.17445e-05
-1.05472e-13
0.0167932
4.71124e-05
-1.16207e-12
0.0167872
9.16268e-05
-1.38403e-12
0.0167725
0.000410164
-7.7709e-12
0.0167473
0.00110465
-1.85907e-11
0.0168532
0.00597521
-5.83813e-11
0.015434
0.00988659
7.3868e-12
0.0141279
0.0094025
1.72984e-12
0.0129517
0.00954438
-4.3934e-12
0.011809
0.0100469
-4.65665e-12
0.0105865
0.0109707
-4.55314e-12
0.00921303
0.0121607
-3.91998e-12
0.00760378
0.0135266
-3.8724e-12
0.00567908
0.0150832
-3.94271e-12
0.00325126
0.0169076
-4.05921e-12
0.0188972
-4.15567e-12
0.0168001
1.49065e-09
-6.13049e-17
0.0168001
6.95841e-09
-2.35601e-16
0.0168001
2.69456e-08
-6.81033e-16
0.0168
6.70742e-08
-1.36764e-15
0.0168
1.88923e-07
-3.68786e-15
0.0168
4.23564e-07
-7.36734e-15
0.0167999
1.13187e-06
-2.08923e-14
0.0167996
2.44625e-06
-4.14314e-14
0.0167992
6.80627e-06
-1.27583e-13
0.0167974
1.354e-05
-2.33357e-13
0.0167978
4.60604e-05
-9.18867e-13
0.0168028
8.64621e-05
-1.47452e-12
0.0168291
0.000381435
-7.00003e-12
0.0169491
0.00098148
-1.74098e-11
0.0180172
0.00488674
-5.77434e-11
0.0164727
0.0114333
1.18667e-12
0.0148771
0.0110001
-6.07483e-13
0.0136717
0.0107503
-4.36149e-12
0.0125414
0.0111766
-4.51677e-12
0.0113483
0.0121623
-4.26761e-12
0.0100152
0.0134925
-3.52137e-12
0.00853944
0.0150011
-3.36837e-12
0.0067495
0.0168719
-3.32729e-12
0.00422187
0.0194339
-3.29722e-12
0.0231175
-3.50516e-12
0.0168001
-5.40026e-17
2.63992e-09
0.0168001
-2.08491e-16
3.04597e-09
0.0168001
-6.01504e-16
3.70539e-08
0.0168001
-1.20131e-15
3.70806e-08
0.0168
-3.2147e-15
2.5487e-07
0.0168002
-6.39001e-15
2.43078e-07
0.0167998
-1.79521e-14
1.54199e-06
0.0168008
-3.59289e-14
1.36088e-06
0.016798
-1.05047e-13
9.61651e-06
0.0168052
-2.11795e-13
6.25264e-06
0.0167831
-6.20253e-13
6.77335e-05
0.0168383
-1.51709e-12
3.09695e-05
0.0167359
-4.24867e-12
0.000481699
0.017094
-1.13122e-11
0.000623334
0.0182066
-3.11432e-11
0.00375974
0.0172219
-2.21203e-11
0.0124093
0.0155581
-8.24167e-12
0.0126606
0.0145127
-5.35847e-12
0.0117946
0.0133647
-4.75026e-12
0.0123236
0.0123051
-4.50611e-12
0.013221
0.0111579
-3.63705e-12
0.0146389
0.0098908
-3.37556e-12
0.0162673
0.00824115
-3.00005e-12
0.0185206
0.00583278
-2.66838e-12
0.0218413
-3.01487e-12
0.0289488
0.0168001
1.92794e-10
-2.46207e-17
0.0168001
1.05036e-09
-9.94103e-17
0.0168
3.90713e-09
-2.8243e-16
0.0168
1.00413e-08
-5.53283e-16
0.0168
2.75778e-08
-1.40731e-15
0.0167999
6.31762e-08
-2.7315e-15
0.0167998
1.63862e-07
-7.38614e-15
0.0167994
3.69647e-07
-1.49134e-14
0.0167983
9.54515e-07
-4.20767e-14
0.0167962
2.18211e-06
-8.71312e-14
0.0167895
5.88279e-06
-2.47581e-13
0.0167737
1.57272e-05
-6.68675e-13
0.0167172
5.40035e-05
-1.86914e-12
0.0165435
0.000169105
-5.8787e-12
0.0155182
0.0010096
-1.5657e-11
0.0143652
0.00115309
4.49482e-13
0.0131903
0.00117411
-4.84388e-13
0.0119382
0.00124998
-1.7648e-12
0.0106001
0.00133581
-1.87825e-12
0.00916018
0.00143762
-1.92347e-12
0.0075961
0.00156188
-1.81657e-12
0.00589865
0.00169544
-1.77857e-12
0.0040757
0.0018211
-1.77682e-12
0.00212062
0.00195283
-1.82009e-12
0.00211857
-1.81612e-12
0.0168001
3.95531e-10
-2.49265e-17
0.0168001
2.15682e-09
-1.00561e-16
0.0168
8.02184e-09
-2.86437e-16
0.0168
2.05858e-08
-5.59656e-16
0.0168
5.66035e-08
-1.42219e-15
0.0167999
1.29466e-07
-2.7646e-15
0.0167997
3.36614e-07
-7.46338e-15
0.0167994
7.55105e-07
-1.50841e-14
0.0167982
1.97028e-06
-4.24184e-14
0.016796
4.43186e-06
-8.79763e-14
0.0167889
1.22067e-05
-2.48883e-13
0.0167726
3.18513e-05
-6.6951e-13
0.0167131
0.000111096
-1.87466e-12
0.0165332
0.0003444
-5.86908e-12
0.0154936
0.00203332
-1.56999e-11
0.0143243
0.00232263
5.46822e-13
0.0131609
0.00233672
-4.54977e-13
0.0119216
0.00248713
-1.7619e-12
0.0105906
0.00266455
-1.86539e-12
0.00913788
0.00288804
-1.89869e-12
0.00755484
0.00314275
-1.79256e-12
0.00583824
0.00341002
-1.75881e-12
0.00399433
0.00366316
-1.75845e-12
0.00203155
0.00391335
-1.80137e-12
0.00414806
-1.79676e-12
0.0168001
6.16684e-10
-2.5538e-17
0.0168001
3.35735e-09
-1.02257e-16
0.0168
1.24891e-08
-2.93446e-16
0.0168
3.20807e-08
-5.71065e-16
0.0168
8.82163e-08
-1.45072e-15
0.0167999
2.02322e-07
-2.81584e-15
0.0167997
5.23986e-07
-7.58684e-15
0.0167993
1.18959e-06
-1.52552e-14
0.0167981
3.03125e-06
-4.3024e-14
0.0167956
6.96925e-06
-8.82528e-14
0.0167885
1.85777e-05
-2.51732e-13
0.016772
4.81639e-05
-6.66676e-13
0.0167127
0.000167849
-1.89096e-12
0.0165369
0.000515778
-5.86522e-12
0.0155159
0.0030381
-1.59147e-11
0.014335
0.00350396
7.55297e-13
0.0131768
0.00349419
-3.92675e-13
0.0119497
0.00371211
-1.76443e-12
0.01063
0.00398182
-1.85112e-12
0.00918241
0.0043334
-1.86219e-12
0.00759659
0.00472642
-1.76833e-12
0.00587447
0.00513026
-1.74093e-12
0.00400868
0.00552718
-1.73907e-12
0.00203355
0.00588628
-1.78102e-12
0.00617958
-1.77521e-12
0.0168001
8.58466e-10
-2.8534e-17
0.0168001
4.61785e-09
-1.13231e-16
0.0168
1.72233e-08
-3.2399e-16
0.0168
4.41001e-08
-6.37189e-16
0.0168
1.22007e-07
-1.631e-15
0.0167999
2.81195e-07
-3.24213e-15
0.0167997
7.22469e-07
-8.44235e-15
0.0167992
1.70417e-06
-1.92207e-14
0.0167981
4.00569e-06
-4.15568e-14
0.0167949
1.00938e-05
-1.18579e-13
0.0167885
2.43105e-05
-2.20109e-13
0.0167716
6.47023e-05
-6.93704e-13
0.0167164
0.000220639
-1.86678e-12
0.0165494
0.000678274
-5.86821e-12
0.0155752
0.00399558
-1.6246e-11
0.014387
0.00469302
1.04141e-12
0.013235
0.00464545
-3.34452e-13
0.0120266
0.00491843
-1.77004e-12
0.0107284
0.00527781
-1.83783e-12
0.00930079
0.00575898
-1.80621e-12
0.00772348
0.00630112
-1.7212e-12
0.00600054
0.00685116
-1.70984e-12
0.00412669
0.00739922
-1.70858e-12
0.00209634
0.00791441
-1.75582e-12
0.00827393
-1.75204e-12
0.0168001
9.8163e-10
-2.6823e-17
0.0168001
5.30462e-09
-1.07488e-16
0.0168001
1.97638e-08
-3.05884e-16
0.0168
5.05379e-08
-5.98152e-16
0.0168
1.4003e-07
-1.52257e-15
0.0168
3.21528e-07
-2.98106e-15
0.0167998
8.36965e-07
-7.94184e-15
0.0167996
1.91372e-06
-1.64727e-14
0.0167986
4.87411e-06
-4.38441e-14
0.0167977
1.10928e-05
-9.22007e-14
0.0167893
3.18881e-05
-2.76357e-13
0.0167754
7.84526e-05
-6.67227e-13
0.0167273
0.000266345
-1.77343e-12
0.0165606
0.000840197
-6.04962e-12
0.0156723
0.00486642
-1.66003e-11
0.014467
0.00589959
1.39857e-12
0.0133191
0.00579257
-2.92261e-13
0.0121368
0.00609869
-1.77845e-12
0.0108726
0.00653947
-1.82595e-12
0.00948443
0.00714566
-1.79643e-12
0.00794017
0.00784406
-1.69448e-12
0.00621694
0.00857242
-1.69028e-12
0.00431067
0.00930394
-1.68472e-12
0.00222939
0.00999352
-1.72923e-12
0.0105013
-1.72734e-12
0.0168001
1.00745e-09
-2.60895e-17
0.0168001
5.47049e-09
-1.04713e-16
0.0168001
2.03602e-08
-2.99242e-16
0.0168001
5.20481e-08
-5.84805e-16
0.0168
1.44105e-07
-1.49755e-15
0.0168
3.28076e-07
-2.93522e-15
0.0168
8.73999e-07
-7.86956e-15
0.0168
1.89808e-06
-1.64219e-14
0.0167994
5.38671e-06
-4.38808e-14
0.0167992
1.12226e-05
-9.23055e-14
0.016794
3.63654e-05
-2.82173e-13
0.0167889
8.33954e-05
-6.60432e-13
0.0167097
0.000343046
-1.83374e-12
0.0165677
0.000977361
-6.06243e-12
0.0157796
0.00563642
-1.70495e-11
0.014541
0.00713997
1.90642e-12
0.0134105
0.00692275
-1.69035e-13
0.012268
0.00723881
-1.74631e-12
0.0110578
0.00774734
-1.75082e-12
0.00971724
0.00848255
-1.68522e-12
0.0082189
0.00934053
-1.59776e-12
0.00653201
0.0102574
-1.63522e-12
0.00460701
0.0112275
-1.65481e-12
0.00241158
0.0121876
-1.69992e-12
0.012911
-1.70598e-12
0.0168001
9.89536e-10
-2.26336e-17
0.0168001
5.48075e-09
-9.23435e-17
0.0168001
2.03265e-08
-2.64032e-16
0.0168001
5.20946e-08
-5.12693e-16
0.0168001
1.43572e-07
-1.3055e-15
0.0168001
3.24017e-07
-2.50571e-15
0.0168
8.84321e-07
-6.99909e-15
0.0168002
1.76387e-06
-1.29974e-14
0.0167994
5.98827e-06
-4.36396e-14
0.0168008
9.81542e-06
-7.26975e-14
0.0167922
4.42568e-05
-2.8929e-13
0.0167898
8.55913e-05
-5.39651e-13
0.0167324
0.000397981
-2.30567e-12
0.0166235
0.00108269
-5.91962e-12
0.0161389
0.00610136
-1.79039e-11
0.0148168
0.00846479
2.23911e-12
0.0136434
0.00809622
1.50744e-13
0.0125103
0.00837058
-1.70094e-12
0.0113498
0.00890742
-1.72713e-12
0.0100817
0.00974967
-1.66611e-12
0.00863194
0.0107886
-1.5361e-12
0.00696898
0.0119187
-1.55473e-12
0.00503481
0.0131596
-1.58165e-12
0.00273856
0.0144815
-1.63527e-12
0.0156477
-1.6565e-12
0.0168001
1.18953e-09
-1.89371e-17
0.0168001
6.47231e-09
-7.84192e-17
0.0168001
2.4058e-08
-2.24851e-16
0.0168
6.15396e-08
-4.31631e-16
0.0168
1.69819e-07
-1.09323e-15
0.0167999
3.87102e-07
-2.02689e-15
0.0167998
1.02591e-06
-5.98583e-15
0.0167993
2.21423e-06
-8.63892e-15
0.0167987
6.50895e-06
-4.51374e-14
0.0167968
1.17445e-05
-3.10886e-14
0.0167932
4.71125e-05
-3.61086e-13
0.0167872
9.16268e-05
-4.23836e-13
0.0167725
0.000410165
-2.43283e-12
0.0167473
0.00110465
-5.78807e-12
0.0168532
0.00597522
-1.8301e-11
0.015434
0.00988658
2.18767e-12
0.0141279
0.00940249
4.97116e-13
0.0129517
0.00954437
-1.45352e-12
0.011809
0.0100469
-1.5673e-12
0.0105865
0.0109707
-1.60204e-12
0.00921303
0.0121607
-1.46468e-12
0.00760378
0.0135266
-1.48877e-12
0.00567908
0.0150832
-1.52993e-12
0.00325126
0.0169076
-1.61388e-12
0.0188972
-1.64018e-12
0.0168001
1.49065e-09
-2.07769e-17
0.0168001
6.95842e-09
-8.4539e-17
0.0168001
2.69457e-08
-2.42809e-16
0.0168
6.70743e-08
-4.74979e-16
0.0168
1.88924e-07
-1.21639e-15
0.0168
4.23565e-07
-2.3474e-15
0.0167999
1.13187e-06
-6.48185e-15
0.0167996
2.44625e-06
-1.27106e-14
0.0167992
6.80629e-06
-3.91172e-14
0.0167974
1.354e-05
-7.12544e-14
0.0167978
4.60605e-05
-2.83661e-13
0.0168028
8.64622e-05
-4.50777e-13
0.0168291
0.000381437
-2.18076e-12
0.0169491
0.000981484
-5.39778e-12
0.0180172
0.00488676
-1.80151e-11
0.0164727
0.0114333
2.44677e-13
0.0148771
0.0110001
-2.99614e-13
0.0136717
0.0107503
-1.48807e-12
0.0125414
0.0111766
-1.57236e-12
0.0113483
0.0121623
-1.57397e-12
0.0100152
0.0134925
-1.42933e-12
0.00853944
0.0150011
-1.44649e-12
0.0067495
0.0168719
-1.4781e-12
0.00422187
0.0194339
-1.56298e-12
0.0231175
-1.65923e-12
0.0168001
-1.81401e-17
2.63992e-09
0.0168001
-7.43398e-17
3.04598e-09
0.0168001
-2.14331e-16
3.7054e-08
0.0168001
-4.18805e-16
3.70807e-08
0.0168
-1.06558e-15
2.54871e-07
0.0168002
-2.04315e-15
2.43079e-07
0.0167998
-5.57121e-15
1.54199e-06
0.0168008
-1.10117e-14
1.36088e-06
0.016798
-3.21066e-14
9.61653e-06
0.0168052
-6.45767e-14
6.25265e-06
0.0167831
-1.90491e-13
6.77336e-05
0.0168383
-4.63325e-13
3.09696e-05
0.0167359
-1.31813e-12
0.0004817
0.017094
-3.49278e-12
0.000623336
0.0182066
-9.68879e-12
0.00375975
0.0172219
-6.98955e-12
0.0124093
0.015558
-2.69625e-12
0.0126606
0.0145126
-1.82937e-12
0.0117946
0.0133647
-1.71576e-12
0.0123236
0.0123051
-1.68836e-12
0.013221
0.0111579
-1.54655e-12
0.0146389
0.0098908
-1.53332e-12
0.0162673
0.00824115
-1.54931e-12
0.0185206
0.00583278
-1.63446e-12
0.0218413
-1.87938e-12
0.0289488
0.0168001
1.92794e-10
6.03147e-17
0.0168001
1.05036e-09
2.3107e-16
0.0168
3.90713e-09
6.6104e-16
0.0168
1.00413e-08
1.32384e-15
0.0168
2.75778e-08
3.51014e-15
0.0167999
6.31762e-08
7.00572e-15
0.0167998
1.63862e-07
1.93173e-14
0.0167994
3.69647e-07
3.93811e-14
0.0167983
9.54515e-07
1.10814e-13
0.0167962
2.1821e-06
2.30832e-13
0.0167895
5.88279e-06
6.46429e-13
0.0167737
1.57272e-05
1.7637e-12
0.0167172
5.40035e-05
4.83958e-12
0.0165435
0.000169105
1.532e-11
0.0155182
0.0010096
4.06148e-11
0.0143652
0.00115309
-1.25301e-12
0.0131903
0.00117411
1.34166e-12
0.0119382
0.00124998
4.84157e-12
0.0106001
0.00133581
5.16122e-12
0.00916018
0.00143762
5.28604e-12
0.0075961
0.00156188
4.93232e-12
0.00589865
0.00169544
4.80232e-12
0.0040757
0.0018211
4.80433e-12
0.00212062
0.00195283
4.8991e-12
0.00211857
4.90936e-12
0.0168001
3.95531e-10
6.11194e-17
0.0168001
2.15681e-09
2.33932e-16
0.0168
8.02183e-09
6.69184e-16
0.0168
2.05857e-08
1.3408e-15
0.0168
5.66035e-08
3.55365e-15
0.0167999
1.29466e-07
7.09572e-15
0.0167997
3.36614e-07
1.9535e-14
0.0167994
7.55104e-07
3.98582e-14
0.0167982
1.97028e-06
1.11747e-13
0.016796
4.43186e-06
2.3318e-13
0.0167889
1.22067e-05
6.49802e-13
0.0167726
3.18513e-05
1.76613e-12
0.0167131
0.000111096
4.85296e-12
0.0165332
0.0003444
1.52922e-11
0.0154936
0.00203332
4.07161e-11
0.0143243
0.00232263
-1.51235e-12
0.0131609
0.00233672
1.26211e-12
0.0119216
0.00248713
4.82254e-12
0.0105906
0.00266455
5.11032e-12
0.00913788
0.00288804
5.19602e-12
0.00755484
0.00314275
4.84418e-12
0.00583824
0.00341002
4.72664e-12
0.00399433
0.00366316
4.73317e-12
0.00203155
0.00391335
4.82831e-12
0.00414806
4.83853e-12
0.0168001
6.16683e-10
6.26737e-17
0.0168001
3.35735e-09
2.40021e-16
0.0168
1.24891e-08
6.84902e-16
0.0168
3.20807e-08
1.37289e-15
0.0168
8.82162e-08
3.62911e-15
0.0167999
2.02322e-07
7.23981e-15
0.0167997
5.23985e-07
1.98719e-14
0.0167993
1.18959e-06
4.03278e-14
0.0167981
3.03125e-06
1.13382e-13
0.0167956
6.96924e-06
2.33948e-13
0.0167885
1.85777e-05
6.57108e-13
0.016772
4.81638e-05
1.75869e-12
0.0167127
0.000167849
4.89395e-12
0.0165369
0.000515779
1.52793e-11
0.0155159
0.0030381
4.12652e-11
0.014335
0.00350396
-2.06357e-12
0.0131768
0.00349419
1.09494e-12
0.0119497
0.00371211
4.80478e-12
0.01063
0.00398182
5.03858e-12
0.00918241
0.0043334
5.04709e-12
0.00759659
0.00472642
4.73536e-12
0.00587447
0.00513026
4.63321e-12
0.00400868
0.00552718
4.63237e-12
0.00203355
0.00588628
4.72461e-12
0.00617958
4.73361e-12
0.0168001
8.58467e-10
7.02233e-17
0.0168001
4.61785e-09
2.64625e-16
0.0168
1.72233e-08
7.63986e-16
0.0168
4.41001e-08
1.54709e-15
0.0168
1.22007e-07
4.12186e-15
0.0167999
2.81195e-07
8.41962e-15
0.0167997
7.22469e-07
2.22394e-14
0.0167992
1.70418e-06
5.12775e-14
0.0167981
4.00569e-06
1.09361e-13
0.0167949
1.00938e-05
3.17309e-13
0.0167885
2.43105e-05
5.69622e-13
0.0167716
6.47023e-05
1.83479e-12
0.0167164
0.000220639
4.82094e-12
0.0165494
0.000678274
1.5281e-11
0.0155752
0.00399558
4.20991e-11
0.014387
0.00469302
-2.82153e-12
0.013235
0.00464545
9.42125e-13
0.0120266
0.00491843
4.78443e-12
0.0107284
0.00527781
4.95447e-12
0.00930079
0.00575898
4.81424e-12
0.00772348
0.00630112
4.52769e-12
0.00600054
0.00685116
4.46873e-12
0.00412669
0.00739922
4.463e-12
0.00209634
0.00791441
4.57132e-12
0.00827393
4.58963e-12
0.0168001
9.8163e-10
6.57721e-17
0.0168001
5.30462e-09
2.50862e-16
0.0168001
1.97638e-08
7.17885e-16
0.0168
5.05379e-08
1.44132e-15
0.0168
1.4003e-07
3.82547e-15
0.0168
3.21528e-07
7.69095e-15
0.0167998
8.36965e-07
2.0843e-14
0.0167996
1.91372e-06
4.3639e-14
0.0167986
4.87411e-06
1.15647e-13
0.0167977
1.10928e-05
2.44468e-13
0.0167893
3.18881e-05
7.24319e-13
0.0167754
7.84526e-05
1.75826e-12
0.0167273
0.000266345
4.58911e-12
0.0165606
0.000840197
1.57647e-11
0.0156723
0.00486642
4.30155e-11
0.014467
0.00589959
-3.78186e-12
0.0133191
0.00579257
8.18345e-13
0.0121368
0.00609869
4.75294e-12
0.0108726
0.00653947
4.85261e-12
0.00948443
0.00714566
4.71191e-12
0.00794017
0.00784406
4.35568e-12
0.00621694
0.00857242
4.31616e-12
0.00431067
0.00930394
4.28248e-12
0.00222939
0.00999352
4.3756e-12
0.0105013
4.40869e-12
0.0168001
1.00745e-09
6.42822e-17
0.0168001
5.47049e-09
2.44829e-16
0.0168001
2.03602e-08
7.03174e-16
0.0168001
5.20481e-08
1.41011e-15
0.0168
1.44105e-07
3.76649e-15
0.0168
3.28076e-07
7.58371e-15
0.0168
8.74e-07
2.06844e-14
0.0168
1.89808e-06
4.36161e-14
0.0167994
5.38672e-06
1.15855e-13
0.0167992
1.12226e-05
2.45356e-13
0.016794
3.63654e-05
7.40521e-13
0.0167889
8.33954e-05
1.7429e-12
0.0167097
0.000343046
4.74758e-12
0.0165677
0.000977361
1.58127e-11
0.0157796
0.00563642
4.41919e-11
0.014541
0.00713997
-5.15163e-12
0.0134105
0.00692275
4.60589e-13
0.012268
0.00723881
4.60207e-12
0.0110578
0.00774734
4.54895e-12
0.00971724
0.00848255
4.27102e-12
0.0082189
0.00934053
3.93643e-12
0.00653201
0.0102574
4.03291e-12
0.00460701
0.0112275
4.06571e-12
0.00241158
0.0121876
4.13938e-12
0.012911
4.19721e-12
0.0168001
9.89537e-10
5.62786e-17
0.0168001
5.48075e-09
2.1668e-16
0.0168001
2.03265e-08
6.18135e-16
0.0168001
5.20946e-08
1.23328e-15
0.0168001
1.43572e-07
3.2684e-15
0.0168001
3.24017e-07
6.45159e-15
0.0168
8.84322e-07
1.83883e-14
0.0168002
1.76387e-06
3.45315e-14
0.0167994
5.98827e-06
1.15412e-13
0.0168008
9.81543e-06
1.93538e-13
0.0167922
4.42568e-05
7.60924e-13
0.0167898
8.55913e-05
1.42636e-12
0.0167324
0.000397981
6.0025e-12
0.0166235
0.00108269
1.54677e-11
0.0161389
0.00610136
4.65151e-11
0.0148168
0.00846479
-6.06336e-12
0.0136434
0.00809622
-3.70069e-13
0.0125103
0.00837058
4.40332e-12
0.0113498
0.00890742
4.38844e-12
0.0100817
0.00974967
4.08757e-12
0.00863194
0.0107886
3.60844e-12
0.00696898
0.0119187
3.60591e-12
0.00503481
0.0131596
3.63919e-12
0.00273856
0.0144815
3.71392e-12
0.0156477
3.82203e-12
0.0168001
1.18953e-09
4.75414e-17
0.0168001
6.4723e-09
1.87572e-16
0.0168001
2.4058e-08
5.27862e-16
0.0168
6.15396e-08
1.03815e-15
0.0168
1.69819e-07
2.72853e-15
0.0167999
3.87101e-07
5.21648e-15
0.0167998
1.02591e-06
1.57596e-14
0.0167993
2.21423e-06
2.31962e-14
0.0167987
6.50895e-06
1.19455e-13
0.0167968
1.17445e-05
8.56399e-14
0.0167932
4.71125e-05
9.48704e-13
0.0167872
9.16268e-05
1.12708e-12
0.0167725
0.000410165
6.35509e-12
0.0167473
0.00110465
1.51653e-11
0.0168532
0.00597523
4.76951e-11
0.015434
0.00988658
-5.96948e-12
0.0141279
0.00940249
-1.38955e-12
0.0129517
0.00954437
3.60578e-12
0.011809
0.0100469
3.82449e-12
0.0105865
0.0109707
3.74945e-12
0.00921303
0.0121607
3.23634e-12
0.00760378
0.0135266
3.20395e-12
0.00567908
0.0150832
3.25558e-12
0.00325126
0.0169076
3.35528e-12
0.0188972
3.42672e-12
0.0168001
1.49065e-09
5.1802e-17
0.0168001
6.95842e-09
1.99259e-16
0.0168001
2.69457e-08
5.72135e-16
0.0168
6.70743e-08
1.13889e-15
0.0168
1.88924e-07
3.0383e-15
0.0168
4.23565e-07
6.03749e-15
0.0167999
1.13187e-06
1.70582e-14
0.0167996
2.44626e-06
3.37834e-14
0.0167992
6.80629e-06
1.04015e-13
0.0167974
1.354e-05
1.90139e-13
0.0167978
4.60605e-05
7.49761e-13
0.0168028
8.64622e-05
1.20095e-12
0.0168291
0.000381437
5.72157e-12
0.0169491
0.000981485
1.41993e-11
0.0180172
0.00488677
4.71596e-11
0.0164727
0.0114333
-9.2046e-13
0.0148771
0.0110001
5.53791e-13
0.0136717
0.0107503
3.58619e-12
0.0125414
0.0111766
3.71708e-12
0.0113483
0.0121623
3.52597e-12
0.0100152
0.0134925
2.92745e-12
0.00853944
0.0150011
2.81196e-12
0.0067495
0.0168719
2.78224e-12
0.00422187
0.0194339
2.76614e-12
0.0231175
2.92463e-12
0.0168001
4.55848e-17
2.63992e-09
0.0168001
1.76318e-16
3.04599e-09
0.0168001
5.06052e-16
3.7054e-08
0.0168001
1.00209e-15
3.70808e-08
0.0168
2.65199e-15
2.54871e-07
0.0168002
5.24133e-15
2.43079e-07
0.0167998
1.46629e-14
1.54199e-06
0.0168008
2.93026e-14
1.36089e-06
0.016798
8.56389e-14
9.61654e-06
0.0168052
1.72592e-13
6.25266e-06
0.0167831
5.05973e-13
6.77337e-05
0.0168383
1.23581e-12
3.09696e-05
0.0167359
3.47171e-12
0.0004817
0.017094
9.2245e-12
0.000623337
0.0182066
2.5436e-11
0.00375975
0.0172219
1.81028e-11
0.0124093
0.015558
6.76488e-12
0.0126606
0.0145126
4.40869e-12
0.0117946
0.0133647
3.91945e-12
0.0123236
0.0123051
3.72651e-12
0.013221
0.0111579
3.03501e-12
0.0146389
0.0098908
2.83257e-12
0.0162673
0.00824115
2.54885e-12
0.0185206
0.00583278
2.31566e-12
0.0218413
2.58519e-12
0.0289488
0.0168001
1.92794e-10
-1.5644e-16
0.0168001
1.05036e-09
8.9251e-17
0.0168
3.90714e-09
5.00141e-16
0.0168
1.00414e-08
1.08098e-15
0.0168
2.75779e-08
3.07408e-15
0.0167999
6.31763e-08
6.2922e-15
0.0167998
1.63862e-07
1.77265e-14
0.0167994
3.69647e-07
3.63271e-14
0.0167983
9.54515e-07
1.03119e-13
0.0167962
2.18211e-06
2.14537e-13
0.0167895
5.88279e-06
6.05806e-13
0.0167737
1.57272e-05
1.64217e-12
0.0167172
5.40035e-05
4.51847e-12
0.0165435
0.000169105
1.4224e-11
0.0155182
0.0010096
3.68792e-11
0.0143652
0.00115309
-6.90777e-13
0.0131903
0.00117411
1.59071e-12
0.0119382
0.00124998
4.68424e-12
0.0106001
0.00133581
4.97284e-12
0.00916018
0.00143762
5.11779e-12
0.0075961
0.00156188
4.83613e-12
0.00589865
0.00169544
4.73344e-12
0.0040757
0.0018211
4.75149e-12
0.00212062
0.00195283
4.81421e-12
0.00211857
4.82263e-12
0.0168001
3.95531e-10
-1.56294e-16
0.0168001
2.15682e-09
9.43188e-17
0.0168
8.02184e-09
5.06599e-16
0.0168
2.05858e-08
1.09514e-15
0.0168
5.66036e-08
3.11154e-15
0.0167999
1.29466e-07
6.37021e-15
0.0167997
3.36614e-07
1.79163e-14
0.0167994
7.55105e-07
3.67428e-14
0.0167982
1.97028e-06
1.03939e-13
0.016796
4.43187e-06
2.1658e-13
0.0167889
1.22067e-05
6.08853e-13
0.0167726
3.18513e-05
1.64392e-12
0.0167131
0.000111096
4.53149e-12
0.0165332
0.000344399
1.42042e-11
0.0154936
0.00203332
3.70171e-11
0.0143243
0.00232263
-9.24255e-13
0.0131609
0.00233672
1.52071e-12
0.0119216
0.00248713
4.67723e-12
0.0105906
0.00266455
4.94142e-12
0.00913788
0.00288804
5.05557e-12
0.00755484
0.00314275
4.77541e-12
0.00583824
0.00341002
4.6829e-12
0.00399433
0.00366316
4.70369e-12
0.00203155
0.00391335
4.7666e-12
0.00414806
4.77387e-12
0.0168001
6.16685e-10
-1.55977e-16
0.0168001
3.35735e-09
-9.89334e-18
0.0168
1.24891e-08
5.19216e-16
0.0168
3.20807e-08
1.12216e-15
0.0168
8.82165e-08
3.17686e-15
0.0167999
2.02322e-07
6.49555e-15
0.0167997
5.23987e-07
1.82107e-14
0.0167993
1.18959e-06
3.71477e-14
0.0167981
3.03125e-06
1.05379e-13
0.0167956
6.96927e-06
2.17174e-13
0.0167885
1.85777e-05
6.1544e-13
0.016772
4.81639e-05
1.63636e-12
0.0167127
0.000167849
4.56939e-12
0.0165369
0.000515778
1.41971e-11
0.0155159
0.0030381
3.75561e-11
0.014335
0.00350396
-1.42276e-12
0.0131768
0.00349419
1.37145e-12
0.0119497
0.00371211
4.6776e-12
0.01063
0.00398182
4.89799e-12
0.00918241
0.0043334
4.9536e-12
0.00759659
0.00472642
4.69733e-12
0.00587447
0.00513026
4.61961e-12
0.00400868
0.00552718
4.63548e-12
0.00203355
0.00588628
4.69562e-12
0.00617958
4.69961e-12
0.0168001
8.58466e-10
-1.54302e-16
0.0168001
4.61785e-09
-1.45859e-17
0.0168
1.72233e-08
5.84243e-16
0.0168
4.41001e-08
1.27193e-15
0.0168
1.22007e-07
3.61252e-15
0.0167999
2.81195e-07
7.54637e-15
0.0167997
7.22469e-07
2.03239e-14
0.0167992
1.70417e-06
4.69904e-14
0.0167981
4.0057e-06
1.01654e-13
0.0167949
1.00937e-05
2.92415e-13
0.0167885
2.43105e-05
5.36421e-13
0.0167716
6.47023e-05
1.70267e-12
0.0167164
0.000220639
4.50672e-12
0.0165494
0.000678274
1.42046e-11
0.0155752
0.00399558
3.83651e-11
0.014387
0.00469302
-2.10873e-12
0.013235
0.00464545
1.23032e-12
0.0120266
0.00491843
4.68107e-12
0.0107284
0.00527781
4.84882e-12
0.00930079
0.00575898
4.79489e-12
0.00772348
0.00630112
4.55564e-12
0.00600054
0.00685116
4.5108e-12
0.00412669
0.00739922
4.52693e-12
0.00209634
0.00791441
4.5947e-12
0.00827393
4.60112e-12
0.0168001
9.81629e-10
-1.55473e-16
0.0168001
5.30462e-09
1.21343e-16
0.0168001
1.97638e-08
5.45211e-16
0.0168
5.05379e-08
1.17897e-15
0.0168
1.4003e-07
3.34476e-15
0.0168
3.21528e-07
6.8866e-15
0.0167998
8.36965e-07
1.90489e-14
0.0167996
1.91372e-06
4.00685e-14
0.0167986
4.8741e-06
1.07222e-13
0.0167977
1.10927e-05
2.2628e-13
0.0167893
3.18881e-05
6.75737e-13
0.0167754
7.84526e-05
1.63384e-12
0.0167273
0.000266345
4.28317e-12
0.0165606
0.000840197
1.46466e-11
0.0156723
0.00486641
3.92381e-11
0.014467
0.0058996
-2.9717e-12
0.0133191
0.00579257
1.1224e-12
0.0121368
0.00609869
4.68334e-12
0.0108726
0.00653947
4.79597e-12
0.00948443
0.00714566
4.7288e-12
0.00794017
0.00784405
4.45152e-12
0.00621694
0.00857242
4.41183e-12
0.00431067
0.00930394
4.41364e-12
0.00222939
0.00999351
4.47265e-12
0.0105013
4.48348e-12
0.0168001
1.00745e-09
-1.55739e-16
0.0168001
5.47048e-09
1.06229e-16
0.0168001
2.03602e-08
5.31389e-16
0.0168001
5.2048e-08
1.14846e-15
0.0168
1.44105e-07
3.28297e-15
0.0168
3.28076e-07
6.7712e-15
0.0168
8.73998e-07
1.88585e-14
0.0168
1.89808e-06
3.99302e-14
0.0167994
5.38671e-06
1.07209e-13
0.0167992
1.12225e-05
2.26451e-13
0.016794
3.63654e-05
6.89437e-13
0.0167889
8.33953e-05
1.61614e-12
0.0167097
0.000343047
4.42704e-12
0.0165677
0.000977361
1.46824e-11
0.0157796
0.00563642
4.03391e-11
0.014541
0.00713997
-4.19706e-12
0.0134105
0.00692275
8.24032e-13
0.012268
0.00723881
4.58226e-12
0.0110578
0.00774734
4.58713e-12
0.00971724
0.00848255
4.41987e-12
0.0082189
0.00934053
4.17448e-12
0.00653201
0.0102574
4.22809e-12
0.00460701
0.0112275
4.27712e-12
0.00241158
0.0121876
4.33225e-12
0.012911
4.35615e-12
0.0168001
9.89535e-10
-1.5702e-16
0.0168001
5.48074e-09
-3.76506e-18
0.0168001
2.03265e-08
4.5858e-16
0.0168001
5.20945e-08
9.89942e-16
0.0168001
1.43572e-07
2.82351e-15
0.0168001
3.24017e-07
5.72285e-15
0.0168
8.84321e-07
1.67067e-14
0.0168002
1.76387e-06
3.14993e-14
0.0167994
5.98827e-06
1.06481e-13
0.0168008
9.8154e-06
1.78188e-13
0.0167922
4.42568e-05
7.06172e-13
0.0167898
8.55912e-05
1.31974e-12
0.0167324
0.000397981
5.56646e-12
0.0166235
0.00108269
1.43423e-11
0.0161389
0.00610135
4.2435e-11
0.0148168
0.00846479
-5.0113e-12
0.0136434
0.00809622
6.04763e-14
0.0125103
0.00837058
4.44526e-12
0.0113498
0.00890742
4.49178e-12
0.0100817
0.00974967
4.31797e-12
0.00863194
0.0107886
3.95791e-12
0.00696898
0.0119187
3.95928e-12
0.00503481
0.0131596
4.01489e-12
0.00273856
0.0144815
4.08798e-12
0.0156477
4.14674e-12
0.0168001
1.18953e-09
-1.57568e-16
0.0168001
6.47231e-09
1.58649e-18
0.0168001
2.40581e-08
3.8321e-16
0.0168
6.15396e-08
8.17901e-16
0.0168
1.69819e-07
2.33191e-15
0.0167999
3.87102e-07
4.59189e-15
0.0167998
1.02591e-06
1.42738e-14
0.0167993
2.21423e-06
2.1108e-14
0.0167987
6.50894e-06
1.09859e-13
0.0167968
1.17445e-05
7.90405e-14
0.0167932
4.71124e-05
8.76037e-13
0.0167872
9.16268e-05
1.04253e-12
0.0167725
0.000410164
5.86395e-12
0.0167473
0.00110465
1.40289e-11
0.0168532
0.00597521
4.34742e-11
0.015434
0.00988659
-4.92163e-12
0.0141279
0.00940249
-7.66962e-13
0.0129517
0.00954437
3.82916e-12
0.011809
0.0100469
4.07014e-12
0.0105865
0.0109707
4.10121e-12
0.00921303
0.0121607
3.71367e-12
0.00760378
0.0135266
3.71511e-12
0.00567908
0.0150832
3.79596e-12
0.00325126
0.0169076
3.9149e-12
0.0188972
3.97894e-12
0.0168001
1.49065e-09
-1.57088e-16
0.0168001
6.95841e-09
1.87304e-17
0.0168001
2.69456e-08
4.17748e-16
0.0168
6.70742e-08
9.01822e-16
0.0168
1.88924e-07
2.60025e-15
0.0168
4.23565e-07
5.31685e-15
0.0167999
1.13187e-06
1.53893e-14
0.0167996
2.44625e-06
3.06663e-14
0.0167992
6.80628e-06
9.52244e-14
0.0167974
1.354e-05
1.74103e-13
0.0167978
4.60604e-05
6.90537e-13
0.0168028
8.64621e-05
1.10226e-12
0.0168291
0.000381436
5.26222e-12
0.0169491
0.000981482
1.30847e-11
0.0180172
0.00488675
4.29085e-11
0.0164727
0.0114333
-3.79353e-13
0.0148771
0.0110001
1.07976e-12
0.0136717
0.0107503
3.86334e-12
0.0125414
0.0111766
4.02511e-12
0.0113483
0.0121623
3.96324e-12
0.0100152
0.0134925
3.54516e-12
0.00853944
0.0150011
3.51548e-12
0.0067495
0.0168719
3.54846e-12
0.00422187
0.0194339
3.64989e-12
0.0231175
3.84832e-12
0.0168001
-1.58398e-16
2.63992e-09
0.0168001
-1.76327e-17
3.04598e-09
0.0168001
3.61667e-16
3.70539e-08
0.0168001
7.7918e-16
3.70807e-08
0.0168
2.24122e-15
2.54871e-07
0.0168002
4.57222e-15
2.43078e-07
0.0167998
1.31365e-14
1.54199e-06
0.0168008
2.64449e-14
1.36088e-06
0.016798
7.7956e-14
9.61652e-06
0.0168052
1.57303e-13
6.25265e-06
0.0167831
4.63965e-13
6.77335e-05
0.0168383
1.12802e-12
3.09695e-05
0.0167359
3.1861e-12
0.000481699
0.017094
8.46865e-12
0.000623335
0.0182066
2.31154e-11
0.00375974
0.0172219
1.66247e-11
0.0124093
0.015558
6.65672e-12
0.0126606
0.0145127
4.60987e-12
0.0117946
0.0133647
4.27013e-12
0.0123236
0.0123051
4.16786e-12
0.013221
0.0111579
3.72369e-12
0.0146389
0.0098908
3.6304e-12
0.0162673
0.00824115
3.55192e-12
0.0185206
0.00583278
3.59921e-12
0.0218413
4.10051e-12
0.0289488
0.0168001
1.92794e-10
6.17094e-16
0.0168001
1.05036e-09
3.22646e-15
0.0168
3.90714e-09
7.54645e-15
0.0168
1.00414e-08
1.58188e-14
0.0168
2.75779e-08
3.27527e-14
0.0167999
6.31763e-08
6.25442e-14
0.0167998
1.63862e-07
1.44777e-13
0.0167994
3.69647e-07
2.83694e-13
0.0167983
9.54516e-07
7.47305e-13
0.0167962
2.18211e-06
1.5246e-12
0.0167895
5.8828e-06
4.19329e-12
0.0167737
1.57272e-05
1.1273e-11
0.0167172
5.40035e-05
3.0689e-11
0.0165435
0.000169105
9.63042e-11
0.0155182
0.0010096
2.48446e-10
0.0143652
0.00115309
-4.005e-12
0.0131903
0.00117411
1.20378e-11
0.0119382
0.00124998
3.32856e-11
0.0106001
0.00133581
3.52743e-11
0.00916018
0.00143762
3.64058e-11
0.0075961
0.00156188
3.47049e-11
0.00589865
0.00169544
3.43232e-11
0.0040757
0.0018211
3.4682e-11
0.00212062
0.00195283
3.51953e-11
0.00211857
3.55356e-11
0.0168001
3.95532e-10
6.20001e-16
0.0168001
2.15682e-09
3.23891e-15
0.0168
8.02185e-09
7.5886e-15
0.0168
2.05858e-08
1.59113e-14
0.0168
5.66037e-08
3.29995e-14
0.0167999
1.29466e-07
6.30585e-14
0.0167997
3.36615e-07
1.4602e-13
0.0167994
7.55106e-07
2.86408e-13
0.0167982
1.97029e-06
7.52552e-13
0.016796
4.43187e-06
1.5377e-12
0.0167889
1.22067e-05
4.2117e-12
0.0167726
3.18513e-05
1.12786e-11
0.0167131
0.000111096
3.07594e-11
0.0165332
0.000344399
9.61163e-11
0.0154936
0.00203332
2.49238e-10
0.0143243
0.00232263
-5.61639e-12
0.0131609
0.00233672
1.15488e-11
0.0119216
0.00248713
3.32071e-11
0.0105906
0.00266455
3.50208e-11
0.00913788
0.00288804
3.59296e-11
0.00755484
0.00314275
3.42404e-11
0.00583824
0.00341002
3.39281e-11
0.00399433
0.00366316
3.43087e-11
0.00203155
0.00391335
3.48305e-11
0.00414806
3.51689e-11
0.0168001
6.16687e-10
6.25848e-16
0.0168001
3.35736e-09
3.26529e-15
0.0168
1.24891e-08
7.67077e-15
0.0168
3.20808e-08
1.60875e-14
0.0168
8.82167e-08
3.34298e-14
0.0167999
2.02323e-07
6.38879e-14
0.0167997
5.23988e-07
1.47942e-13
0.0167993
1.1896e-06
2.89082e-13
0.0167981
3.03125e-06
7.61597e-13
0.0167956
6.96931e-06
1.54144e-12
0.0167885
1.85777e-05
4.25045e-12
0.016772
4.81639e-05
1.12184e-11
0.0167127
0.000167849
3.09746e-11
0.0165369
0.000515778
9.59541e-11
0.0155159
0.0030381
2.52558e-10
0.014335
0.00350396
-9.06878e-12
0.0131768
0.00349419
1.04979e-11
0.0119497
0.00371211
3.31271e-11
0.01063
0.00398182
3.46232e-11
0.00918241
0.00433339
3.50935e-11
0.00759659
0.00472642
3.35761e-11
0.00587447
0.00513026
3.3354e-11
0.00400868
0.00552718
3.36918e-11
0.00203355
0.00588628
3.41834e-11
0.00617958
3.44959e-11
0.0168001
8.58465e-10
6.54968e-16
0.0168001
4.61784e-09
3.37914e-15
0.0168
1.72233e-08
8.09877e-15
0.0168
4.41e-08
1.7072e-14
0.0168
1.22007e-07
3.6305e-14
0.0167999
2.81195e-07
7.07906e-14
0.0167997
7.22468e-07
1.61875e-13
0.0167992
1.70417e-06
3.53561e-13
0.0167981
4.0057e-06
7.37452e-13
0.0167949
1.00937e-05
2.03295e-12
0.0167885
2.43106e-05
3.41761e-12
0.0167716
6.47023e-05
1.16222e-11
0.0167164
0.000220639
3.0534e-11
0.0165494
0.000678274
9.58356e-11
0.0155752
0.00399558
2.57558e-10
0.014387
0.00469302
-1.15398e-11
0.013235
0.00464546
9.47766e-12
0.0120266
0.00491843
3.30073e-11
0.0107284
0.00527781
3.41145e-11
0.00930079
0.00575898
3.37645e-11
0.00772348
0.00630112
3.23591e-11
0.00600054
0.00685116
3.23455e-11
0.00412669
0.00739922
3.26628e-11
0.00209634
0.00791441
3.3187e-11
0.00827393
3.35092e-11
0.0168001
9.81629e-10
6.38317e-16
0.0168001
5.30462e-09
3.29385e-15
0.0168001
1.97638e-08
7.80564e-15
0.0168
5.05379e-08
1.66125e-14
0.0168
1.4003e-07
3.4276e-14
0.0168
3.21528e-07
6.66762e-14
0.0167998
8.36964e-07
1.53358e-13
0.0167996
1.91372e-06
3.08849e-13
0.0167986
4.8741e-06
7.72263e-13
0.0167977
1.10927e-05
1.60086e-12
0.0167893
3.1888e-05
4.64483e-12
0.0167754
7.84526e-05
1.11683e-11
0.0167273
0.000266345
2.8903e-11
0.0165606
0.000840197
9.86375e-11
0.0156723
0.00486641
2.628e-10
0.014467
0.0058996
-1.98257e-11
0.0133191
0.00579257
8.7049e-12
0.0121368
0.00609869
3.28473e-11
0.0108726
0.00653947
3.35224e-11
0.00948443
0.00714566
3.30147e-11
0.00794017
0.00784405
3.13078e-11
0.00621694
0.00857242
3.13181e-11
0.00431067
0.00930394
3.14981e-11
0.00222939
0.00999351
3.19202e-11
0.0105013
3.22823e-11
0.0168001
1.00744e-09
6.30649e-16
0.0168001
5.47047e-09
3.24905e-15
0.0168001
2.03601e-08
7.69582e-15
0.0168001
5.20479e-08
1.63854e-14
0.0168
1.44105e-07
3.37991e-14
0.0168
3.28075e-07
6.58073e-14
0.0168
8.73996e-07
1.51851e-13
0.0168
1.89807e-06
3.07434e-13
0.0167994
5.38671e-06
7.70673e-13
0.0167992
1.12225e-05
1.59886e-12
0.016794
3.63654e-05
4.72646e-12
0.0167889
8.33951e-05
1.10238e-11
0.0167097
0.000343047
2.97931e-11
0.0165677
0.000977361
9.86457e-11
0.0157796
0.00563641
2.69487e-10
0.014541
0.00713998
-2.83272e-11
0.0134105
0.00692275
6.63622e-12
0.012268
0.00723881
3.19292e-11
0.0110578
0.00774734
3.17859e-11
0.00971724
0.00848255
3.04874e-11
0.0082189
0.00934053
2.8956e-11
0.00653201
0.0102574
2.96091e-11
0.00460701
0.0112275
3.00725e-11
0.00241158
0.0121876
3.03926e-11
0.012911
3.08249e-11
0.0168001
9.89533e-10
5.95582e-16
0.0168001
5.48073e-09
3.09873e-15
0.0168001
2.03264e-08
7.18532e-15
0.0168001
5.20944e-08
1.52643e-14
0.0168001
1.43572e-07
3.05932e-14
0.0168001
3.24016e-07
5.85098e-14
0.0168
8.84319e-07
1.36795e-13
0.0168002
1.76386e-06
2.49459e-13
0.0167994
5.98827e-06
7.63342e-13
0.0168008
9.81535e-06
1.26807e-12
0.0167922
4.42569e-05
4.82697e-12
0.0167898
8.5591e-05
8.99403e-12
0.0167324
0.000397981
3.74157e-11
0.0166235
0.00108269
9.61294e-11
0.0161389
0.00610135
2.82953e-10
0.0148168
0.0084648
-3.40289e-11
0.0136434
0.00809623
1.33365e-12
0.0125103
0.00837058
3.06504e-11
0.0113498
0.00890742
3.07236e-11
0.0100817
0.00974967
2.92734e-11
0.00863193
0.0107886
2.69212e-11
0.00696898
0.0119187
2.71086e-11
0.00503481
0.0131596
2.75481e-11
0.00273856
0.0144815
2.789e-11
0.0156477
2.85176e-11
0.0168001
1.18953e-09
5.5609e-16
0.0168001
6.47231e-09
2.95384e-15
0.0168001
2.40581e-08
6.66921e-15
0.0168
6.15396e-08
1.38459e-14
0.0168
1.69819e-07
2.7294e-14
0.0167999
3.87102e-07
5.01218e-14
0.0167998
1.02591e-06
1.1925e-13
0.0167993
2.21424e-06
1.75292e-13
0.0167987
6.50893e-06
7.84465e-13
0.0167968
1.17446e-05
5.72735e-13
0.0167932
4.71123e-05
5.98577e-12
0.0167872
9.16268e-05
7.06102e-12
0.0167725
0.000410164
3.94076e-11
0.0167473
0.00110465
9.38367e-11
0.0168532
0.0059752
2.89495e-10
0.015434
0.00988659
-3.36833e-11
0.0141279
0.0094025
-4.52554e-12
0.0129517
0.00954438
2.60009e-11
0.011809
0.0100469
2.735e-11
0.0105865
0.0109707
2.71743e-11
0.00921303
0.0121607
2.46033e-11
0.00760378
0.0135266
2.46408e-11
0.00567908
0.0150832
2.51229e-11
0.00325126
0.0169076
2.55486e-11
0.0188972
2.59709e-11
0.0168001
1.49065e-09
5.71651e-16
0.0168001
6.9584e-09
3.00242e-15
0.0168001
2.69456e-08
6.90333e-15
0.0168
6.70741e-08
1.4417e-14
0.0168
1.88923e-07
2.91208e-14
0.0168
4.23564e-07
5.51332e-14
0.0167999
1.13187e-06
1.267e-13
0.0167996
2.44625e-06
2.42145e-13
0.0167992
6.80627e-06
6.80403e-13
0.0167974
1.354e-05
1.23069e-12
0.0167978
4.60603e-05
4.69231e-12
0.0168028
8.6462e-05
7.50017e-12
0.0168291
0.000381435
3.52344e-11
0.0169491
0.000981478
8.74015e-11
0.0180172
0.00488672
2.85352e-10
0.0164727
0.0114333
-3.79538e-12
0.0148772
0.0110001
7.37129e-12
0.0136717
0.0107503
2.56932e-11
0.0125414
0.0111766
2.64567e-11
0.0113483
0.0121623
2.55696e-11
0.0100152
0.0134925
2.26508e-11
0.00853944
0.0150011
2.22317e-11
0.0067495
0.0168719
2.2179e-11
0.00422187
0.0194339
2.21181e-11
0.0231175
2.27577e-11
0.0168001
5.49625e-16
2.63992e-09
0.0168001
2.90265e-15
3.04597e-09
0.0168001
6.5593e-15
3.70539e-08
0.0168001
1.36391e-14
3.70806e-08
0.0168
2.67478e-14
2.5487e-07
0.0168002
5.01319e-14
2.43078e-07
0.0167998
1.11363e-13
1.54199e-06
0.0168008
2.1321e-13
1.36088e-06
0.016798
5.62911e-13
9.6165e-06
0.0168052
1.1137e-12
6.25263e-06
0.0167831
3.16888e-12
6.77334e-05
0.0168383
7.64511e-12
3.09694e-05
0.0167359
2.13258e-11
0.000481699
0.017094
5.64973e-11
0.000623333
0.0182066
1.53308e-10
0.00375973
0.0172219
1.08925e-10
0.0124093
0.0155581
4.38591e-11
0.0126606
0.0145127
3.01356e-11
0.0117946
0.0133647
2.7277e-11
0.0123236
0.0123051
2.63468e-11
0.013221
0.0111579
2.29251e-11
0.0146389
0.0098908
2.19267e-11
0.0162673
0.00824115
2.05189e-11
0.0185206
0.00583278
1.92716e-11
0.0218413
2.02268e-11
0.0289488
0.0168001
1.92796e-10
3.54639e-12
0.0168001
1.05037e-09
1.15679e-11
0.0168
3.90717e-09
1.36757e-11
0.0168
1.00414e-08
2.13909e-11
0.0168
2.75781e-08
2.18917e-11
0.0167999
6.31768e-08
2.89641e-11
0.0167998
1.63863e-07
2.96867e-11
0.0167994
3.6965e-07
4.04812e-11
0.0167983
9.54521e-07
4.29617e-11
0.0167962
2.18212e-06
8.90782e-11
0.0167895
5.88281e-06
5.96327e-11
0.0167737
1.57272e-05
3.31162e-10
0.0167172
5.40035e-05
3.03318e-10
0.0165435
0.000169105
1.46209e-09
0.0155182
0.0010096
3.023e-09
0.0143652
0.00115309
8.53775e-11
0.0131903
0.00117411
2.99361e-10
0.0119382
0.00124998
5.41268e-10
0.0106001
0.00133581
5.61503e-10
0.00916018
0.00143762
5.77969e-10
0.0075961
0.00156188
5.81285e-10
0.00589865
0.00169544
6.01007e-10
0.0040757
0.0018211
6.16097e-10
0.00212062
0.00195283
6.2841e-10
0.00211857
6.33136e-10
0.0168001
3.95535e-10
3.53665e-12
0.0168001
2.15684e-09
1.15757e-11
0.0168
8.02193e-09
1.36668e-11
0.0168
2.0586e-08
2.13994e-11
0.0168
5.66042e-08
2.18997e-11
0.0167999
1.29467e-07
2.89951e-11
0.0167997
3.36618e-07
2.97569e-11
0.0167994
7.55113e-07
4.06448e-11
0.0167982
1.9703e-06
4.32353e-11
0.016796
4.43189e-06
8.98638e-11
0.0167889
1.22068e-05
5.99355e-11
0.0167726
3.18513e-05
3.32052e-10
0.0167131
0.000111096
3.02475e-10
0.0165332
0.000344399
1.45127e-09
0.0154936
0.00203331
3.01937e-09
0.0143243
0.00232263
6.35389e-11
0.0131609
0.00233672
2.9117e-10
0.0119216
0.00248713
5.36148e-10
0.0105906
0.00266455
5.55109e-10
0.00913788
0.00288803
5.70679e-10
0.00755484
0.00314274
5.75066e-10
0.00583824
0.00341002
5.95857e-10
0.00399432
0.00366315
6.10829e-10
0.00203155
0.00391335
6.22424e-10
0.00414806
6.26848e-10
0.0168001
6.16701e-10
3.51883e-12
0.0168001
3.35743e-09
1.15883e-11
0.0168
1.24894e-08
1.36501e-11
0.0168
3.20814e-08
2.14139e-11
0.0168
8.82184e-08
2.19087e-11
0.0167999
2.02327e-07
2.90358e-11
0.0167997
5.23997e-07
2.98423e-11
0.0167993
1.18963e-06
4.07223e-11
0.0167981
3.03126e-06
4.36574e-11
0.0167956
6.96955e-06
8.95006e-11
0.0167885
1.85775e-05
6.07587e-11
0.016772
4.81642e-05
3.28428e-10
0.0167127
0.000167848
3.06035e-10
0.0165369
0.000515777
1.44278e-09
0.0155159
0.0030381
3.06991e-09
0.014335
0.00350397
3.13874e-11
0.0131768
0.00349419
2.80098e-10
0.0119497
0.00371211
5.26297e-10
0.01063
0.00398182
5.40598e-10
0.00918241
0.00433339
5.52097e-10
0.00759658
0.00472641
5.60011e-10
0.00587447
0.00513026
5.82441e-10
0.00400868
0.00552717
5.98742e-10
0.00203355
0.00588627
6.10874e-10
0.00617957
6.18808e-10
0.0168001
8.58458e-10
3.4917e-12
0.0168001
4.6178e-09
1.1615e-11
0.0168
1.72231e-08
1.36461e-11
0.0168
4.40998e-08
2.14927e-11
0.0168
1.22006e-07
2.20922e-11
0.0167999
2.81193e-07
2.9535e-11
0.0167997
7.22464e-07
3.08278e-11
0.0167992
1.70415e-06
4.55039e-11
0.0167981
4.00571e-06
4.1541e-11
0.0167949
1.00935e-05
1.26497e-10
0.0167885
2.43109e-05
1.70365e-11
0.0167716
6.47021e-05
3.71665e-10
0.0167164
0.000220637
2.41173e-10
0.0165494
0.000678274
1.41435e-09
0.0155752
0.00399557
3.06551e-09
0.014387
0.00469303
-3.02277e-11
0.013235
0.00464546
2.79592e-10
0.0120266
0.00491843
5.26755e-10
0.0107283
0.00527781
5.30576e-10
0.00930079
0.00575898
5.28791e-10
0.00772347
0.00630112
5.40534e-10
0.00600053
0.00685116
5.64193e-10
0.00412668
0.00739921
5.80856e-10
0.00209634
0.0079144
5.94577e-10
0.00827392
6.08692e-10
0.0168001
9.81624e-10
3.44398e-12
0.0168001
5.30458e-09
1.16361e-11
0.0168001
1.97637e-08
1.35456e-11
0.0168
5.05376e-08
2.15514e-11
0.0168
1.4003e-07
2.16954e-11
0.0168
3.21526e-07
2.91865e-11
0.0167998
8.3696e-07
2.97553e-11
0.0167996
1.91371e-06
4.07253e-11
0.0167986
4.87408e-06
4.42762e-11
0.0167977
1.10927e-05
8.09288e-11
0.0167893
3.1888e-05
1.06498e-10
0.0167754
7.84524e-05
2.67844e-10
0.0167273
0.000266345
3.636e-10
0.0165606
0.000840195
1.46227e-09
0.0156723
0.0048664
3.21117e-09
0.014467
0.00589961
-1.86458e-10
0.0133191
0.00579257
1.93858e-10
0.0121368
0.00609869
4.91788e-10
0.0108726
0.00653947
4.98453e-10
0.00948442
0.00714566
4.9682e-10
0.00794016
0.00784405
5.07099e-10
0.00621694
0.00857241
5.31311e-10
0.00431067
0.00930393
5.51028e-10
0.00222939
0.0099935
5.68649e-10
0.0105013
5.90174e-10
0.0168001
1.00743e-09
3.39782e-12
0.0168001
5.47038e-09
1.165e-11
0.0168001
2.03598e-08
1.34784e-11
0.0168001
5.20471e-08
2.17211e-11
0.0168
1.44102e-07
2.1409e-11
0.0168
3.28069e-07
2.93732e-11
0.0168
8.73984e-07
2.9624e-11
0.0168
1.89803e-06
4.11493e-11
0.0167994
5.38667e-06
4.4144e-11
0.0167992
1.12223e-05
8.2594e-11
0.016794
3.63653e-05
1.09751e-10
0.0167889
8.3394e-05
2.67455e-10
0.0167097
0.000343051
3.76388e-10
0.0165677
0.000977359
1.47177e-09
0.0157796
0.0056364
3.34778e-09
0.014541
0.00713999
-3.34463e-10
0.0134104
0.00692276
1.17392e-10
0.012268
0.00723881
4.61132e-10
0.0110578
0.00774734
4.65249e-10
0.00971723
0.00848254
4.54746e-10
0.00821889
0.00934052
4.58436e-10
0.006532
0.0102574
4.85809e-10
0.00460701
0.0112275
5.10737e-10
0.00241158
0.0121875
5.31608e-10
0.012911
5.61115e-10
0.0168001
9.89515e-10
3.35868e-12
0.0168001
5.48065e-09
1.16427e-11
0.0168001
2.03261e-08
1.34995e-11
0.0168001
5.20935e-08
2.15802e-11
0.0168001
1.4357e-07
2.15157e-11
0.0168001
3.24011e-07
2.91083e-11
0.0168
8.84307e-07
2.94254e-11
0.0168002
1.76383e-06
3.99458e-11
0.0167994
5.98825e-06
4.37732e-11
0.0168008
9.81505e-06
7.6628e-11
0.0167922
4.42572e-05
1.0739e-10
0.0167898
8.55899e-05
2.47072e-10
0.0167324
0.000397981
4.12311e-10
0.0166235
0.00108269
1.43657e-09
0.0161389
0.00610131
3.52656e-09
0.0148168
0.00846483
-3.66006e-10
0.0136434
0.00809624
8.32455e-11
0.0125103
0.00837059
4.49601e-10
0.0113498
0.00890742
4.51407e-10
0.0100817
0.00974967
4.28816e-10
0.00863193
0.0107886
4.12673e-10
0.00696897
0.0119187
4.3201e-10
0.00503481
0.0131596
4.54083e-10
0.00273855
0.0144814
4.75753e-10
0.0156477
5.10529e-10
0.0168001
1.18954e-09
3.33962e-12
0.0168001
6.47233e-09
1.15997e-11
0.0168001
2.40581e-08
1.36136e-11
0.0168
6.15398e-08
2.13854e-11
0.0168
1.6982e-07
2.18928e-11
0.0167999
3.87104e-07
2.90777e-11
0.0167998
1.02592e-06
2.9985e-11
0.0167993
2.21426e-06
4.24753e-11
0.0167987
6.50888e-06
4.08742e-11
0.0167968
1.17448e-05
1.10186e-10
0.0167932
4.71117e-05
3.29852e-11
0.0167872
9.16266e-05
3.24943e-10
0.0167725
0.000410159
2.69599e-10
0.0167473
0.00110464
1.33584e-09
0.0168533
0.00597512
3.40208e-09
0.0154341
0.00988663
-2.86085e-10
0.0141279
0.00940253
1.35817e-10
0.0129518
0.00954439
4.32822e-10
0.011809
0.0100469
4.29996e-10
0.0105865
0.0109707
4.01203e-10
0.00921303
0.0121607
3.7655e-10
0.00760378
0.0135266
3.88442e-10
0.00567908
0.0150832
4.022e-10
0.00325126
0.0169076
4.18584e-10
0.0188972
4.48509e-10
0.0168001
1.49064e-09
3.29782e-12
0.0168001
6.95833e-09
1.15966e-11
0.0168001
2.69454e-08
1.35871e-11
0.0168
6.70736e-08
2.13185e-11
0.0168
1.88922e-07
2.1661e-11
0.0168
4.2356e-07
2.85191e-11
0.0167999
1.13186e-06
2.86889e-11
0.0167996
2.44623e-06
3.70857e-11
0.0167992
6.80618e-06
4.17948e-11
0.0167974
1.35399e-05
6.27791e-11
0.0167978
4.60594e-05
8.46219e-11
0.0168028
8.64612e-05
2.18931e-10
0.0168291
0.000381426
3.56042e-10
0.0169491
0.000981454
1.1906e-09
0.0180173
0.00488655
3.2864e-09
0.0164728
0.0114334
1.20794e-10
0.0148772
0.0110002
2.77286e-10
0.0136718
0.0107504
4.09525e-10
0.0125414
0.0111766
3.98581e-10
0.0113483
0.0121624
3.65202e-10
0.0100152
0.0134925
3.44931e-10
0.00853944
0.0150011
3.46853e-10
0.0067495
0.0168719
3.47625e-10
0.00422187
0.0194339
3.46614e-10
0.0231174
3.66893e-10
0.0168001
3.34359e-12
2.63992e-09
0.0168001
1.15214e-11
3.04585e-09
0.0168001
1.37539e-11
3.70537e-08
0.0168001
2.13817e-11
3.70797e-08
0.0168
2.1767e-11
2.54868e-07
0.0168002
2.85248e-11
2.43073e-07
0.0167998
2.84837e-11
1.54197e-06
0.0168008
3.65243e-11
1.36085e-06
0.016798
4.00387e-11
9.61636e-06
0.0168052
5.95258e-11
6.25253e-06
0.0167831
7.04039e-11
6.77324e-05
0.0168383
2.09126e-10
3.09686e-05
0.0167359
2.27954e-10
0.000481693
0.017094
8.4162e-10
0.000623316
0.0182064
1.81259e-09
0.00375967
0.0172219
1.41126e-09
0.0124093
0.0155581
6.42188e-10
0.0126607
0.0145127
4.05189e-10
0.0117946
0.0133647
3.59144e-10
0.0123236
0.0123051
3.50079e-10
0.0132211
0.0111579
3.2676e-10
0.0146389
0.00989081
3.17907e-10
0.0162673
0.00824116
3.02173e-10
0.0185206
0.00583278
2.75627e-10
0.0218413
2.73304e-10
0.0289488
0.0168001
1.87949e-10
0.0168001
1.05018e-09
0.0168001
3.90107e-09
0.0168
1.00405e-08
0.0168
2.75803e-08
0.0167999
6.31941e-08
0.0167998
1.63913e-07
0.0167994
3.69775e-07
0.0167983
9.54757e-07
0.0167962
2.18274e-06
0.0167895
5.88337e-06
0.0167737
1.57281e-05
0.0167172
5.40039e-05
0.0165435
0.000169097
0.0155182
0.0010096
0.0143652
0.00115312
0.0131903
0.00117413
0.0119382
0.00124999
0.0106
0.00133581
0.00916014
0.00143761
0.00759607
0.00156186
0.00589864
0.00169542
0.00407571
0.00182108
0.00212064
0.00195281
0.00211859
0.0168001
3.86616e-10
0.0168001
2.15527e-09
0.0168001
8.01111e-09
0.0168
2.05867e-08
0.0168
5.66166e-08
0.0167999
1.29525e-07
0.0167997
3.36777e-07
0.0167994
7.55473e-07
0.0167982
1.97139e-06
0.016796
4.43296e-06
0.0167889
1.2212e-05
0.0167726
3.18511e-05
0.0167131
0.0001111
0.0165332
0.000344383
0.0154936
0.00203333
0.0143242
0.0023227
0.0131609
0.00233676
0.0119216
0.00248715
0.0105905
0.00266456
0.00913782
0.00288802
0.0075548
0.00314272
0.00583823
0.00340998
0.00399433
0.00366312
0.00203157
0.00391332
0.00414809
0.0168001
6.03008e-10
0.0168001
3.35755e-09
0.0168
1.24808e-08
0.0168
3.21017e-08
0.0168
8.83099e-08
0.0167999
2.02574e-07
0.0167997
5.24562e-07
0.0167993
1.19204e-06
0.0167981
3.03099e-06
0.0167955
6.98727e-06
0.0167885
1.85588e-05
0.0167719
4.81862e-05
0.0167128
0.000167817
0.0165369
0.000515759
0.0155159
0.00303808
0.014335
0.0035041
0.0131767
0.00349427
0.0119496
0.00371215
0.01063
0.00398184
0.00918237
0.00433337
0.00759655
0.00472638
0.00587445
0.0051302
0.00400868
0.00552711
0.00203356
0.00588624
0.00617962
0.0168001
8.35113e-10
0.0168001
4.60973e-09
0.0168
1.71625e-08
0.0168
4.40892e-08
0.0168
1.21808e-07
0.0167999
2.80937e-07
0.0167997
7.2185e-07
0.0167992
1.70185e-06
0.0167981
4.00626e-06
0.016795
1.00743e-05
0.0167885
2.43451e-05
0.0167717
6.4663e-05
0.0167163
0.000220702
0.0165493
0.000678316
0.015575
0.00399574
0.0143867
0.00469321
0.0132348
0.00464549
0.0120264
0.00491843
0.0107281
0.0052778
0.00930061
0.00575893
0.00772334
0.00630104
0.00600044
0.00685106
0.00412663
0.00739912
0.00209632
0.00791434
0.00827393
0.0168001
9.58627e-10
0.0168001
5.29157e-09
0.0168001
1.97128e-08
0.0168
5.05748e-08
0.0168
1.39868e-07
0.0168
3.21491e-07
0.0167998
8.36726e-07
0.0167996
1.91347e-06
0.0167986
4.87307e-06
0.0167976
1.10919e-05
0.0167893
3.18834e-05
0.0167754
7.84514e-05
0.0167273
0.000266352
0.0165607
0.000840204
0.0156725
0.00486648
0.014467
0.00589993
0.013319
0.00579271
0.0121366
0.00609875
0.0108724
0.00653948
0.00948425
0.00714562
0.00793999
0.00784396
0.0062168
0.00857228
0.00431057
0.00930381
0.00222934
0.00999339
0.0105013
0.0168001
9.88039e-10
0.0168001
5.45093e-09
0.0168001
2.03493e-08
0.0168001
5.19645e-08
0.0168
1.44112e-07
0.0168
3.27927e-07
0.0168
8.73836e-07
0.0168
1.89746e-06
0.0167994
5.38644e-06
0.0167992
1.12203e-05
0.016794
3.63634e-05
0.0167889
8.33801e-05
0.0167097
0.000343058
0.0165678
0.000977298
0.0157799
0.00563626
0.0145412
0.0071404
0.0134106
0.00692301
0.0122681
0.00723897
0.0110577
0.00774743
0.00971713
0.00848255
0.00821877
0.00934046
0.00653188
0.0102572
0.00460691
0.0112273
0.00241151
0.0121874
0.0129109
0.0168001
9.78601e-10
0.0168001
5.44852e-09
0.0168001
2.03532e-08
0.0168001
5.20001e-08
0.0168001
1.43673e-07
0.0168001
3.23972e-07
0.0168
8.84431e-07
0.0168002
1.76443e-06
0.0167994
5.98647e-06
0.0168008
9.82537e-06
0.0167923
4.42217e-05
0.0167898
8.56182e-05
0.0167325
0.000397876
0.0166236
0.00108257
0.0161395
0.00610073
0.0148173
0.00846533
0.0136437
0.00809666
0.0125105
0.00837086
0.0113499
0.00890761
0.0100817
0.00974978
0.00863189
0.0107886
0.00696889
0.0119186
0.00503472
0.0131595
0.00273851
0.0144813
0.0156476
0.0168001
1.16969e-09
0.0168001
6.46391e-09
0.0168001
2.40287e-08
0.0168
6.15119e-08
0.0168
1.69692e-07
0.0168
3.86812e-07
0.0167998
1.02513e-06
0.0167993
2.21133e-06
0.0167987
6.50778e-06
0.0167969
1.17205e-05
0.0167932
4.71247e-05
0.0167873
9.15679e-05
0.0167725
0.000410179
0.0167473
0.00110447
0.0168536
0.00597418
0.0154344
0.00988716
0.0141282
0.00940305
0.0129519
0.00954475
0.0118091
0.0100471
0.0105866
0.0109708
0.00921308
0.0121607
0.00760377
0.0135266
0.00567904
0.0150831
0.00325122
0.0169074
0.018897
0.0168001
1.52646e-09
0.0168001
6.84531e-09
0.0168001
2.71027e-08
0.0168
6.71842e-08
0.0168
1.89134e-07
0.0168
4.23623e-07
0.0167999
1.13176e-06
0.0167996
2.44531e-06
0.0167992
6.80448e-06
0.0167974
1.35324e-05
0.0167978
4.60499e-05
0.0168027
8.64332e-05
0.0168291
0.000381347
0.0169493
0.000981195
0.0180183
0.00488476
0.0164737
0.0114342
0.0148777
0.0110011
0.0136721
0.0107508
0.0125417
0.0111769
0.0113485
0.0121626
0.0100154
0.0134926
0.0085395
0.0150011
0.00674952
0.0168718
0.00422185
0.0194338
0.0231172
0.0168001
2.76803e-09
0.0168001
2.67054e-09
0.0168
3.82258e-08
0.0168001
3.66127e-08
0.0168
2.56125e-07
0.0168002
2.4244e-07
0.0167998
1.54298e-06
0.0168008
1.35976e-06
0.016798
9.61638e-06
0.0168052
6.24844e-06
0.0167831
6.77321e-05
0.0168383
3.09372e-05
0.0167358
0.000481684
0.0170939
0.000623082
0.018205
0.0037592
0.0172214
0.0124091
0.015558
0.012661
0.0145128
0.011795
0.0133649
0.0123239
0.0123053
0.0132213
0.011158
0.0146391
0.0098909
0.0162673
0.00824121
0.0185206
0.0058328
0.0218412
0.0289486
0.0168001
1.08249e-09
-3.68074e-12
0.0168001
5.62162e-09
-9.96368e-12
0.0168001
2.00089e-08
-1.74612e-11
0.0168001
5.55279e-08
-1.82047e-11
0.0168002
1.41087e-07
-2.53307e-11
0.0168001
3.52504e-07
-2.45443e-11
0.0168008
8.43767e-07
-3.1676e-11
0.0168
2.10467e-06
-3.17697e-11
0.0168047
4.88813e-06
-4.2351e-11
0.0167977
1.30993e-05
-4.71465e-11
0.0168351
3.04113e-05
-8.33901e-11
0.0167784
8.65964e-05
-1.01901e-10
0.0170226
0.000236686
-3.51313e-10
0.0168034
0.00084014
-4.04845e-10
0.0178047
0.0027469
-2.15923e-09
0.0175526
0.0126439
-2.8075e-09
0.0167823
0.0134284
-4.25942e-10
0.015441
0.0131345
-2.80579e-10
0.0144041
0.01336
-2.92731e-10
0.0134366
0.0141877
-3.04062e-10
0.0125728
0.0155018
-3.01241e-10
0.011628
0.0172111
-2.88037e-10
0.0107944
0.0193531
-2.61271e-10
0.0107823
0.0218523
-2.15331e-10
0.0234329
-1.29023e-10
0.0162969
0.0168001
8.22374e-10
-3.68729e-12
0.0168001
6.51074e-09
-9.85662e-12
0.0168001
1.99261e-08
-1.74091e-11
0.0168001
6.04267e-08
-1.82547e-11
0.0168001
1.43087e-07
-2.49654e-11
0.0168
3.82181e-07
-2.5034e-11
0.0168
8.62264e-07
-3.12513e-11
0.0167998
2.23709e-06
-3.20607e-11
0.0167996
5.10966e-06
-4.21729e-11
0.0167997
1.28123e-05
-4.60246e-11
0.0167994
3.07146e-05
-9.20924e-11
0.0168051
8.00585e-05
-7.62927e-11
0.0168226
0.000218683
-3.53307e-10
0.0169198
0.000739949
-4.08543e-10
0.0173332
0.00232661
-1.70052e-09
0.0177426
0.0122155
-3.14313e-09
0.0169829
0.0141856
-2.28075e-10
0.0160477
0.0140681
-1.46964e-10
0.0152113
0.0141947
-2.23906e-10
0.0144023
0.0149956
-2.69546e-10
0.0137312
0.016172
-2.66538e-10
0.0132259
0.0177157
-2.53216e-10
0.0130623
0.0195159
-2.23843e-10
0.0139093
0.0210044
-1.80698e-10
0.021473
-9.56779e-11
0.0158681
0.0168001
7.39368e-10
-3.63381e-12
0.0168001
5.91624e-09
-9.79322e-12
0.0168001
1.82891e-08
-1.73481e-11
0.0168001
5.52107e-08
-1.82571e-11
0.0168001
1.30873e-07
-2.49961e-11
0.0168001
3.47427e-07
-2.50882e-11
0.0168002
7.81445e-07
-3.13463e-11
0.0168004
2.03781e-06
-3.20628e-11
0.016801
4.49811e-06
-4.20238e-11
0.0168015
1.21688e-05
-4.56593e-11
0.0168061
2.61072e-05
-8.19488e-11
0.0168051
8.01872e-05
-1.1089e-10
0.0168368
0.000186645
-2.75202e-10
0.0168599
0.000714091
-3.91707e-10
0.0170885
0.00209203
-1.52051e-09
0.01799
0.0112941
-3.28683e-09
0.0173946
0.0147796
-5.71245e-11
0.0166557
0.0148057
-6.61331e-11
0.0159693
0.0148797
-1.50684e-10
0.0153689
0.0155941
-2.33364e-10
0.0148629
0.0166765
-2.32576e-10
0.0146586
0.0179191
-2.20794e-10
0.0149844
0.0191894
-1.90344e-10
0.0159235
0.0200646
-1.52999e-10
0.0201918
-8.01576e-11
0.0172038
0.0168001
6.02626e-10
-3.57517e-12
0.0168001
5.42622e-09
-9.76041e-12
0.0168001
1.63286e-08
-1.7298e-11
0.0168001
4.91063e-08
-1.82471e-11
0.0168001
1.16269e-07
-2.49745e-11
0.0168001
3.05485e-07
-2.50401e-11
0.0168002
6.83186e-07
-3.1218e-11
0.0168004
1.79525e-06
-3.17721e-11
0.0168012
3.73171e-06
-4.09415e-11
0.0168019
1.13896e-05
-4.4876e-11
0.0168084
1.95303e-05
-7.53513e-11
0.0168059
8.19482e-05
-1.0722e-10
0.0168434
0.000148799
-2.35451e-10
0.0168601
0.000694768
-4.20776e-10
0.0171211
0.00182691
-1.37283e-09
0.0187007
0.00969391
-3.34965e-09
0.0180834
0.0153967
-3.52654e-12
0.0172281
0.0156607
-2.78156e-12
0.0166781
0.0154286
-8.37757e-11
0.0162968
0.0159743
-1.98582e-10
0.0160328
0.016939
-2.07821e-10
0.016008
0.0179427
-1.86684e-10
0.0163524
0.018844
-1.58499e-10
0.0171399
0.0192763
-1.27224e-10
0.0191644
-7.40023e-11
0.0181661
0.0168001
2.72776e-10
-3.49098e-12
0.0168001
7.34322e-09
-9.80985e-12
0.0168001
1.00617e-08
-1.72648e-11
0.0168001
6.11323e-08
-1.83099e-11
0.0168001
8.01563e-08
-2.4999e-11
0.0168
3.76547e-07
-2.50206e-11
0.0168002
4.85875e-07
-3.10601e-11
0.0167998
2.22247e-06
-3.13292e-11
0.0168008
2.71486e-06
-3.91472e-11
0.0167983
1.37212e-05
-4.44751e-11
0.0168041
1.36544e-05
-6.52837e-11
0.0167904
9.50061e-05
-9.27572e-11
0.0168544
8.4483e-05
-2.2636e-10
0.0168446
0.000701896
-4.03385e-10
0.017343
0.00132546
-1.25077e-09
0.020483
0.00653004
-3.4596e-09
0.0192478
0.016632
-2.28543e-10
0.0183417
0.0165664
-9.06262e-11
0.0175331
0.0162371
-3.18288e-11
0.0171444
0.0163617
-1.52444e-10
0.0170483
0.0170341
-1.73071e-10
0.0171648
0.0178251
-1.56206e-10
0.0174838
0.0185243
-1.31261e-10
0.0180508
0.0187086
-1.04942e-10
0.0183538
-6.33092e-11
0.0188606
0.0168001
7.18016e-10
-3.8161e-12
0.0168001
3.84018e-09
-1.05511e-11
0.0168001
1.34963e-08
-1.43449e-11
0.0168001
3.58642e-08
-2.14388e-11
0.0168001
9.50001e-08
-2.19328e-11
0.0168002
2.22947e-07
-2.8494e-11
0.0168001
5.62755e-07
-2.79871e-11
0.0168011
1.29158e-06
-3.48916e-11
0.0168005
3.28687e-06
-3.5653e-11
0.0168068
7.41084e-06
-4.6411e-11
0.0168001
2.01234e-05
-5.4001e-11
0.01685
4.51509e-05
-8.97533e-11
0.016802
0.000131405
-1.22088e-10
0.0171537
0.00034893
-3.94157e-10
0.0172889
0.0011878
-4.15737e-10
0.0198349
0.00396973
-2.16434e-09
0.0203625
0.0160946
-1.4414e-09
0.0196047
0.0173227
-3.35679e-10
0.018542
0.0172984
-2.44452e-10
0.0180342
0.0168689
-1.18433e-10
0.0178978
0.0171693
-1.35932e-10
0.0180564
0.0176653
-1.31909e-10
0.0184331
0.0181466
-1.11123e-10
0.0188624
0.0182783
-8.50142e-11
0.0178127
-5.51246e-11
0.0194026
0.0168001
1.21625e-09
-4.04858e-12
0.0168001
4.4466e-09
-1.0199e-11
0.0168001
1.48703e-08
-1.48619e-11
0.0168001
3.55538e-08
-2.1977e-11
0.0168001
9.3504e-08
-2.28438e-11
0.0168001
2.11488e-07
-2.9338e-11
0.0168001
5.42618e-07
-2.97147e-11
0.0168002
1.21452e-06
-3.61148e-11
0.0168003
3.09521e-06
-3.73194e-11
0.0168007
6.96983e-06
-4.77694e-11
0.0168029
1.78133e-05
-5.28893e-11
0.0168083
3.97073e-05
-9.77153e-11
0.0168248
0.0001139
-8.99975e-11
0.0169007
0.000272481
-3.50072e-10
0.017107
0.000978042
-4.41771e-10
0.0180999
0.00296823
-1.66477e-09
0.0202245
0.0139472
-3.26056e-09
0.0199674
0.0175758
-4.53257e-10
0.0194472
0.0178166
-2.91336e-10
0.0189007
0.0174153
-6.20557e-11
0.0186862
0.0173827
-1.03912e-10
0.0187446
0.0176057
-1.103e-10
0.0190957
0.0177941
-9.75232e-11
0.019539
0.0178346
-6.81824e-11
0.017427
-5.2206e-11
0.0199229
0.0168001
2.93932e-09
-4.75897e-12
0.0168001
6.15387e-09
-1.04078e-11
0.0168001
1.88519e-08
-1.60604e-11
0.0168001
2.62243e-08
-2.32277e-11
0.0168001
9.78262e-08
-2.43042e-11
0.0168001
1.41285e-07
-3.11819e-11
0.0168001
5.47361e-07
-3.11721e-11
0.0168005
7.82775e-07
-3.8026e-11
0.0168004
3.23541e-06
-3.85229e-11
0.0168033
4.01488e-06
-4.89458e-11
0.0168002
2.07645e-05
-5.22578e-11
0.0168211
1.8775e-05
-8.63843e-11
0.0167933
0.000140908
-1.1841e-10
0.0169323
0.000132947
-2.55689e-10
0.0168745
0.00103279
-4.44563e-10
0.0176025
0.00223548
-1.42211e-09
0.0203542
0.0111724
-3.19724e-09
0.0203863
0.0175434
-3.82702e-11
0.0200447
0.0181569
1.45722e-11
0.0196092
0.017851
4.14935e-11
0.019464
0.0175283
-4.541e-11
0.0194646
0.0176046
-6.78177e-11
0.0196322
0.0176254
-7.25385e-11
0.02
0.0174651
-6.59545e-11
0.0170718
-5.11797e-11
0.0203549
0.0168001
3.08725e-09
-9.20704e-12
0.0168001
7.10779e-09
-1.53856e-11
0.0168001
1.3396e-08
-2.04742e-11
0.0168001
2.82908e-08
-2.26502e-11
0.0168001
5.73546e-08
-2.81783e-11
0.0168001
1.36136e-07
-2.84585e-11
0.0168004
2.98339e-07
-3.39142e-11
0.0168004
7.55107e-07
-3.4039e-11
0.016802
1.61956e-06
-4.18442e-11
0.0168013
4.67032e-06
-4.13889e-11
0.0168131
9.00072e-06
-6.97395e-11
0.0168012
3.02861e-05
-5.15031e-11
0.0168828
5.93562e-05
-1.43964e-10
0.0168126
0.000201281
-1.91475e-10
0.0173142
0.000529385
-5.18242e-10
0.0177094
0.00183544
-1.20645e-09
0.022196
0.00665871
-3.75302e-09
0.0215727
0.0181641
-4.44234e-10
0.0212031
0.0185283
2.3189e-10
0.0205728
0.0184815
1.73366e-10
0.020208
0.0178935
4.914e-11
0.0201735
0.0176394
-1.25594e-11
0.0202393
0.0175597
-4.09486e-11
0.0204253
0.0172779
-6.8669e-11
0.0168061
-6.35225e-11
0.0206894
0.0168001
3.23732e-09
-1.48235e-11
0.0168001
7.35116e-09
-1.96559e-11
0.0168001
1.05189e-08
-2.35404e-11
0.0168001
2.95655e-08
-2.5076e-11
0.0168001
4.14879e-08
-2.90699e-11
0.0168001
1.43466e-07
-2.91622e-11
0.0168002
2.12666e-07
-3.26277e-11
0.0168001
7.96741e-07
-3.2947e-11
0.0168006
1.15745e-06
-3.6861e-11
0.0168005
4.7458e-06
-3.9092e-11
0.0168036
5.84401e-06
-4.96681e-11
0.0168031
3.05918e-05
-5.5106e-11
0.0168332
2.90084e-05
-1.15415e-10
0.0168269
0.000206468
-9.06928e-11
0.0171123
0.000242681
-4.44725e-10
0.0174029
0.00154027
-5.24744e-10
0.0200143
0.0040375
-1.58303e-09
0.0223612
0.0157989
-2.00147e-09
0.0220269
0.0188603
-1.8015e-10
0.0214517
0.0190552
-6.80748e-11
0.0209327
0.0184121
7.01296e-11
0.020759
0.0178131
1.39938e-11
0.0207986
0.0175189
-5.13404e-11
0.0208808
0.017196
-7.55482e-11
0.0166681
-8.75274e-11
0.0210166
0.0168001
2.02899e-09
-2.14093e-11
0.0168001
4.71336e-09
-2.37698e-11
0.0168001
9.35427e-09
-2.6026e-11
0.0168001
1.75124e-08
-2.87375e-11
0.0168001
3.8674e-08
-2.88338e-11
0.0168001
8.08393e-08
-3.12454e-11
0.0168002
1.95916e-07
-3.09122e-11
0.0168005
4.30873e-07
-3.33682e-11
0.0168006
1.10818e-06
-3.37203e-11
0.016803
2.3465e-06
-3.82956e-11
0.0168018
6.88376e-06
-4.03109e-11
0.0168191
1.33335e-05
-5.6634e-11
0.0168036
4.39794e-05
-7.56616e-11
0.0169196
9.0396e-05
-1.2404e-10
0.0168474
0.000312679
-2.3499e-10
0.0175654
0.000820769
-5.73313e-10
0.0182023
0.00339187
-1.29043e-09
0.021825
0.0121536
-2.93466e-09
0.022233
0.0184505
-1.5057e-10
0.0220702
0.0192165
-3.45149e-11
0.0215611
0.0189214
1.17685e-10
0.0213215
0.0180505
1.01718e-12
0.0212981
0.0175412
-8.47749e-11
0.0213471
0.017145
-1.28833e-10
0.0166164
-1.58995e-10
0.0213962
0.0168001
1.45824e-09
-2.4942e-11
0.0168001
3.25117e-09
-2.68134e-11
0.0168001
8.27801e-09
-2.85697e-11
0.0168001
1.15494e-08
-3.0674e-11
0.0168001
3.65341e-08
-3.07055e-11
0.0168001
5.31558e-08
-3.23789e-11
0.0168001
1.89519e-07
-3.22015e-11
0.0168003
2.80973e-07
-3.36029e-11
0.0168003
1.05796e-06
-3.39282e-11
0.0168011
1.53324e-06
-3.63366e-11
0.0168017
6.20613e-06
-3.95022e-11
0.0168068
8.16729e-06
-4.99939e-11
0.0168103
4.01628e-05
-6.2769e-11
0.0168543
4.62481e-05
-1.15494e-10
0.0168838
0.000281128
-2.19877e-10
0.0172432
0.000459525
-5.60927e-10
0.0184507
0.00217727
-1.17833e-09
0.0229567
0.00762082
-3.57421e-09
0.0231153
0.0182874
-5.85992e-10
0.0229809
0.0193524
1.77214e-10
0.022562
0.0193397
1.37265e-10
0.0220145
0.018599
-2.63238e-12
0.0218086
0.0177429
-1.11116e-10
0.0217784
0.0171745
-1.78944e-10
0.0166177
-2.39572e-10
0.021773
0.0168001
1.32755e-09
-2.72126e-11
0.0168001
3.00841e-09
-2.93579e-11
0.0168001
5.56489e-09
-3.09433e-11
0.0168001
1.17728e-08
-3.15968e-11
0.0168001
2.32581e-08
-3.31579e-11
0.0168001
5.60776e-08
-3.30027e-11
0.0168001
1.19859e-07
-3.41528e-11
0.0168001
3.05759e-07
-3.39824e-11
0.0168005
6.68721e-07
-3.49937e-11
0.0168003
1.73921e-06
-3.56171e-11
0.0168026
3.83096e-06
-3.8116e-11
0.0168007
1.00365e-05
-4.29723e-11
0.0168179
2.28579e-05
-5.59864e-11
0.0168045
5.90998e-05
-6.8987e-11
0.0169337
0.000151108
-2.11352e-10
0.0169718
0.000418724
-1.86515e-10
0.0178648
0.0012851
-8.81021e-10
0.0207329
0.00474326
-1.22292e-09
0.0234143
0.0155891
-2.02185e-09
0.0234495
0.0193159
-1.37003e-10
0.0231172
0.019671
-8.68517e-11
0.0226204
0.0190939
-6.27209e-11
0.0223996
0.0179621
-1.06865e-10
0.0222638
0.0173035
-2.44731e-10
0.0166742
-3.64754e-10
0.0222044
0.0168001
1.11764e-09
-2.96496e-11
0.0168001
2.56637e-09
-3.12669e-11
0.0168001
3.89381e-09
-3.24355e-11
0.0168001
1.03211e-08
-3.29406e-11
0.0168001
1.52699e-08
-3.40943e-11
0.0168001
4.88869e-08
-3.39677e-11
0.0168001
7.69933e-08
-3.48007e-11
0.0168002
2.65036e-07
-3.46572e-11
0.0168004
4.23505e-07
-3.53586e-11
0.0168006
1.49636e-06
-3.58238e-11
0.0168021
2.36835e-06
-3.77097e-11
0.0168033
8.73157e-06
-4.09764e-11
0.0168131
1.29979e-05
-5.35426e-11
0.0168164
5.53767e-05
-5.89791e-11
0.0168923
7.49346e-05
-1.45131e-10
0.0169267
0.000382355
-1.52939e-10
0.0174824
0.000727079
-6.0944e-10
0.0190184
0.00320189
-1.10662e-09
0.0233793
0.0112026
-2.94992e-09
0.0238093
0.0188795
-6.2914e-10
0.0238308
0.0196468
-4.57509e-10
0.0234855
0.0194372
-2.47731e-10
0.0229267
0.0185198
-6.09941e-11
0.022721
0.0175035
-3.06912e-10
0.0167796
-4.08811e-10
0.0226066
0.0168001
7.33637e-10
-3.18494e-11
0.0168001
1.68832e-09
-3.26829e-11
0.0168001
3.37326e-09
-3.34603e-11
0.0168001
6.26841e-09
-3.43769e-11
0.0168001
1.4048e-08
-3.43555e-11
0.0168001
2.90315e-08
-3.50463e-11
0.0168001
7.15988e-08
-3.48892e-11
0.0168002
1.55363e-07
-3.53457e-11
0.0168002
3.95374e-07
-3.53103e-11
0.0168009
8.67581e-07
-3.58614e-11
0.016801
2.23491e-06
-3.6609e-11
0.0168048
4.91585e-06
-3.87771e-11
0.0168048
1.28569e-05
-4.34026e-11
0.0168313
2.87804e-05
-5.4572e-11
0.0168286
7.69937e-05
-8.05325e-11
0.0170227
0.000187878
-1.4488e-10
0.0171884
0.00055895
-3.0991e-10
0.0187472
0.00163761
-7.72463e-10
0.0238737
0.00606668
-1.47757e-09
0.0248816
0.0178528
-1.93632e-09
0.0246771
0.019844
-6.23729e-10
0.024164
0.0199451
-4.78553e-10
0.0235389
0.0191405
-3.41433e-10
0.0232134
0.0178245
-3.34702e-10
0.0169603
-4.99369e-10
0.0230263
0.0168001
5.11616e-10
-3.31419e-11
0.0168001
1.15166e-09
-3.37961e-11
0.0168001
2.69528e-09
-3.43919e-11
0.0168001
3.99218e-09
-3.51015e-11
0.0168001
1.1635e-08
-3.50737e-11
0.0168001
1.83282e-08
-3.55953e-11
0.0168001
5.95784e-08
-3.54619e-11
0.0168002
9.72628e-08
-3.57863e-11
0.0168002
3.28327e-07
-3.57575e-11
0.0168005
5.3825e-07
-3.61434e-11
0.0168009
1.84907e-06
-3.68044e-11
0.0168028
2.99802e-06
-3.85582e-11
0.0168049
1.06658e-05
-4.22776e-11
0.0168171
1.64912e-05
-5.45188e-11
0.0168274
6.62095e-05
-6.38946e-11
0.0169192
9.56055e-05
-1.52614e-10
0.0170249
0.000450992
-1.87284e-10
0.0177277
0.000931555
-7.27075e-10
0.0199891
0.00379735
-1.32033e-09
0.0244743
0.0133384
-3.44331e-09
0.0249298
0.019379
-8.77824e-10
0.0249537
0.019912
-7.42997e-10
0.0243503
0.0197379
-4.87331e-10
0.0237567
0.0184117
-3.2693e-10
0.0172699
-6.72117e-10
0.0234354
0.0168001
3.90541e-10
-3.39798e-11
0.0168001
8.93568e-10
-3.47093e-11
0.0168001
1.66162e-09
-3.51538e-11
0.0168001
3.47738e-09
-3.54328e-11
0.0168001
6.86154e-09
-3.58953e-11
0.0168001
1.62657e-08
-3.58225e-11
0.0168001
3.47498e-08
-3.61371e-11
0.0168001
8.69454e-08
-3.60341e-11
0.0168002
1.90389e-07
-3.6244e-11
0.0168003
4.83764e-07
-3.6337e-11
0.0168011
1.06444e-06
-3.68228e-11
0.0168013
2.72797e-06
-3.80615e-11
0.016806
5.99213e-06
-4.07938e-11
0.0168065
1.57836e-05
-4.76355e-11
0.0168384
3.42058e-05
-6.71036e-11
0.0168339
9.90749e-05
-1.00058e-10
0.0170694
0.000215043
-2.17023e-10
0.0172351
0.00076153
-5.04272e-10
0.018956
0.00206955
-1.35542e-09
0.0241972
0.00806508
-3.68984e-09
0.0253807
0.0181842
-1.36456e-09
0.0254661
0.0198204
-5.26421e-10
0.0251889
0.020005
-5.69536e-10
0.0245118
0.0190814
-5.41747e-10
0.0177484
-9.60747e-10
0.0240185
0.0168001
2.80447e-10
-3.4697e-11
0.0168001
6.35116e-10
-3.52783e-11
0.0168001
1.09157e-09
-3.56161e-11
0.0168001
2.84249e-09
-3.58638e-11
0.0168001
4.41855e-09
-3.62324e-11
0.0168001
1.32877e-08
-3.61874e-11
0.0168001
2.2212e-08
-3.64483e-11
0.0168001
7.09459e-08
-3.63734e-11
0.0168002
1.21209e-07
-3.65464e-11
0.0168003
3.94815e-07
-3.66011e-11
0.0168006
6.75431e-07
-3.69378e-11
0.0168011
2.22735e-06
-3.7793e-11
0.0168033
3.77741e-06
-3.95954e-11
0.0168062
1.28123e-05
-4.42266e-11
0.0168191
2.10922e-05
-6.03154e-11
0.0168398
7.77535e-05
-6.99981e-11
0.0169248
0.000128903
-2.05251e-10
0.017158
0.000524608
-2.53482e-10
0.018055
0.00117517
-8.16203e-10
0.0217323
0.00437155
-1.55621e-09
0.0253505
0.0145392
-2.75319e-09
0.0255606
0.0195997
-9.0498e-10
0.0256165
0.0199349
-8.72961e-10
0.0252048
0.019478
-1.01115e-09
0.0182863
-1.49468e-09
0.0246372
0.0168001
7.95036e-11
-3.52517e-11
0.0168001
4.20267e-10
-3.5604e-11
0.0168001
9.96898e-10
-3.59053e-11
0.0168001
1.56683e-09
-3.63472e-11
0.0168001
4.19803e-09
-3.62994e-11
0.0168001
6.98524e-09
-3.6638e-11
0.0168001
2.07388e-08
-3.65526e-11
0.0168001
3.65495e-08
-3.67744e-11
0.0168001
1.12989e-07
-3.67254e-11
0.0168003
2.02334e-07
-3.69207e-11
0.0168003
6.3274e-07
-3.71078e-11
0.0168014
1.13535e-06
-3.7701e-11
0.0168016
3.58387e-06
-3.92155e-11
0.016808
6.37453e-06
-4.25184e-11
0.0168079
2.09974e-05
-5.02908e-11
0.0168502
3.53028e-05
-7.41944e-11
0.0168434
0.00013444
-1.0556e-10
0.0171429
0.000224165
-2.51372e-10
0.0173277
0.000985422
-5.12162e-10
0.0191814
0.00251148
-1.39333e-09
0.0249418
0.00874027
-3.36973e-09
0.0261308
0.0183898
-1.67717e-09
0.026015
0.0200315
-1.37512e-09
0.0258163
0.019646
-1.65641e-09
0.0187553
-2.53747e-09
0.0253017
0.0168001
-4.99181e-11
-3.53392e-11
0.0168001
2.77896e-10
-3.61485e-11
0.0168001
6.48771e-10
-3.63177e-11
0.0168001
1.3295e-09
-3.65336e-11
0.0168001
2.50567e-09
-3.67439e-11
0.0168001
5.66385e-09
-3.67423e-11
0.0168001
1.17996e-08
-3.69059e-11
0.0168001
2.88831e-08
-3.68697e-11
0.0168001
6.29689e-08
-3.69841e-11
0.0168002
1.57915e-07
-3.70071e-11
0.0168005
3.48112e-07
-3.72102e-11
0.0168007
8.78369e-07
-3.76366e-11
0.0168023
1.9404e-06
-3.86608e-11
0.0168037
4.95412e-06
-4.11604e-11
0.0168138
1.0836e-05
-4.80156e-11
0.0168195
2.92448e-05
-5.72164e-11
0.0168916
6.20209e-05
-1.03353e-10
0.0169262
0.000187574
-1.24904e-10
0.0174727
0.000436096
-4.44388e-10
0.0184526
0.00152465
-6.45004e-10
0.0227468
0.00442479
-1.88455e-09
0.0263379
0.01476
-3.36599e-09
0.0263501
0.0199776
-2.21501e-09
0.0260652
0.0198843
-2.90332e-09
0.0190579
-3.94149e-09
0.0256975
0.0168001
-6.28337e-11
-3.51745e-11
0.0168001
1.49784e-10
-3.66387e-11
0.0168001
4.05759e-10
-3.67467e-11
0.0168001
9.99498e-10
-3.68841e-11
0.0168001
1.5703e-09
-3.7006e-11
0.0168001
4.3512e-09
-3.69918e-11
0.0168001
7.21434e-09
-3.70699e-11
0.0168001
2.21564e-08
-3.70341e-11
0.0168001
3.80713e-08
-3.70724e-11
0.0168001
1.21155e-07
-3.70817e-11
0.0168003
2.09953e-07
-3.71776e-11
0.0168005
6.75423e-07
-3.74629e-11
0.0168012
1.16753e-06
-3.80825e-11
0.0168023
3.80277e-06
-3.9881e-11
0.0168066
6.46764e-06
-4.34954e-11
0.0168135
2.208e-05
-5.33931e-11
0.0168398
3.53912e-05
-7.34153e-11
0.0168855
0.000140209
-1.29634e-10
0.0170961
0.000223923
-2.64726e-10
0.0175975
0.00101635
-6.41315e-10
0.0193588
0.00264961
-1.64057e-09
0.0252967
0.00877595
-4.09285e-09
0.0267865
0.0184355
-3.50876e-09
0.0267165
0.0198611
-5.41598e-09
0.019049
-7.25808e-09
0.0265989
0.0168001
-4.74969e-11
-3.50423e-11
0.0168001
9.88285e-11
-3.69267e-11
0.0168001
2.85116e-10
-3.7068e-11
0.0168001
5.66976e-10
-3.71519e-11
0.0168001
1.19669e-09
-3.71747e-11
0.0168001
2.37394e-09
-3.72375e-11
0.0168001
5.5344e-09
-3.72018e-11
0.0168001
1.18587e-08
-3.72198e-11
0.0168001
2.91334e-08
-3.71895e-11
0.0168001
6.41885e-08
-3.71931e-11
0.0168002
1.60062e-07
-3.72567e-11
0.0168005
3.5497e-07
-3.7418e-11
0.0168008
8.89166e-07
-3.79981e-11
0.0168026
1.97467e-06
-3.91766e-11
0.0168039
4.98781e-06
-4.24476e-11
0.0168149
1.10402e-05
-5.02165e-11
0.0168206
2.89988e-05
-6.42757e-11
0.0168965
6.36097e-05
-1.15833e-10
0.0169359
0.000181199
-1.70401e-10
0.0175008
0.000446537
-5.45771e-10
0.0186499
0.00148653
-9.57626e-10
0.0230084
0.00437867
-2.78324e-09
0.0269687
0.0144166
-5.46736e-09
0.0273977
0.0192543
-1.02775e-08
0.0187073
-1.11746e-08
0.0275501
0.0168001
-3.24465e-11
-3.49355e-11
0.0168001
6.4643e-11
-3.71674e-11
0.0168001
1.90274e-10
-3.72631e-11
0.0168001
3.72041e-10
-3.73177e-11
0.0168001
7.79523e-10
-3.73303e-11
0.0168001
1.54357e-09
-3.73668e-11
0.0168001
3.57668e-09
-3.7338e-11
0.0168001
7.63662e-09
-3.73389e-11
0.0168001
1.87073e-08
-3.73139e-11
0.0168001
4.10388e-08
-3.73008e-11
0.0168002
1.0213e-07
-3.73502e-11
0.0168003
2.25465e-07
-3.74536e-11
0.0168006
5.63324e-07
-3.79293e-11
0.0168013
1.24364e-06
-3.88066e-11
0.0168031
3.12316e-06
-4.17023e-11
0.0168071
6.86361e-06
-4.69528e-11
0.0168178
1.76983e-05
-6.37847e-11
0.0168425
3.81788e-05
-9.37839e-11
0.0169099
0.000110032
-1.99124e-10
0.0171181
0.000234472
-4.05006e-10
0.0177416
0.000845278
-1.18277e-09
0.0197816
0.0023135
-3.00121e-09
0.0258763
0.00819484
-8.54022e-09
0.0275066
0.0174384
-1.22777e-08
0.0175406
-1.34998e-08
0.0284524
0.0168001
-2.09513e-11
-3.48628e-11
0.0168001
4.07226e-11
-3.73274e-11
0.0168001
1.21647e-10
-3.73934e-11
0.0168001
2.37708e-10
-3.74265e-11
0.0168001
4.92886e-10
-3.74338e-11
0.0168001
9.80555e-10
-3.74526e-11
0.0168001
2.23928e-09
-3.74297e-11
0.0168001
4.80475e-09
-3.7422e-11
0.0168001
1.16207e-08
-3.74039e-11
0.0168001
2.56225e-08
-3.73884e-11
0.0168001
6.30827e-08
-3.7439e-11
0.0168002
1.39991e-07
-3.75298e-11
0.0168004
3.46656e-07
-3.79814e-11
0.0168009
7.69875e-07
-3.87703e-11
0.016802
1.91175e-06
-4.15237e-11
0.0168044
4.25772e-06
-4.62534e-11
0.016811
1.05189e-05
-6.21053e-11
0.0168241
2.41248e-05
-9.15452e-11
0.0168715
5.88563e-05
-1.85614e-10
0.0169515
0.000149132
-3.68061e-10
0.0173771
0.000400653
-1.03801e-09
0.0184649
0.00119534
-2.60916e-09
0.0224329
0.00413492
-7.44998e-09
0.0268507
0.0127426
-1.75052e-08
0.015144
-1.18116e-08
0.0290435
0.0168001
-1.30206e-11
-3.48162e-11
0.0168001
2.60067e-11
-3.7429e-11
0.0168001
7.75739e-11
-3.74769e-11
0.0168001
1.23416e-10
-3.74962e-11
0.0168001
3.36567e-10
-3.75013e-11
0.0168001
4.77767e-10
-3.75096e-11
0.0168001
1.53074e-09
-3.7491e-11
0.0168001
2.25524e-09
-3.74797e-11
0.0168001
7.89863e-09
-3.74657e-11
0.0168001
1.16949e-08
-3.74504e-11
0.0168001
4.24465e-08
-3.74947e-11
0.0168002
6.21431e-08
-3.75661e-11
0.0168003
2.30153e-07
-3.80023e-11
0.0168007
3.29889e-07
-3.87592e-11
0.0168013
1.25246e-06
-4.18214e-11
0.0168036
1.73554e-06
-4.94072e-11
0.0168063
7.04005e-06
-6.06135e-11
0.0168205
8.6231e-06
-1.45637e-10
0.0168316
4.38766e-05
-1.2876e-10
0.0169247
4.34339e-05
-6.09484e-10
0.0170207
0.000289634
-8.01588e-10
0.0177498
0.000408093
-3.79387e-09
0.0198416
0.00197257
-8.31931e-09
0.0251646
0.00693699
-2.74032e-08
0.0119608
-8.92662e-09
0.0282604
0.0168001
-6.75737e-12
-3.47849e-11
0.0168001
1.15057e-11
-3.75039e-11
0.0168001
3.57314e-11
-3.75192e-11
0.0168001
9.53382e-11
-3.75402e-11
0.0168001
1.33157e-10
-3.75512e-11
0.0168001
4.11833e-10
-3.75395e-11
0.0168001
5.83745e-10
-3.75352e-11
0.0168001
2.03021e-09
-3.75208e-11
0.0168001
2.93679e-09
-3.75063e-11
0.0168001
1.0823e-08
-3.7517e-11
0.0168001
1.55651e-08
-3.75355e-11
0.0168001
5.91516e-08
-3.76981e-11
0.0168002
8.33369e-08
-3.79771e-11
0.0168002
3.26123e-07
-3.90153e-11
0.016801
4.34622e-07
-4.08075e-11
0.0168006
1.84719e-06
-4.69122e-11
0.0168052
2.07814e-06
-5.73728e-11
0.0168015
1.07944e-05
-9.17644e-11
0.0168344
9.49317e-06
-1.50684e-10
0.016806
6.2926e-05
-3.5652e-10
0.017028
5.71198e-05
-7.77708e-10
0.0169998
0.000399799
-2.25729e-09
0.0182443
0.000658483
-6.32846e-09
0.0217066
0.00323231
-1.57859e-08
0.00802284
-1.73509e-08
0.0253313
0.0168001
-4.05746e-12
-3.4773e-11
0.0168001
7.62928e-12
-3.7522e-11
0.0168001
2.39398e-11
-3.75544e-11
0.0168001
3.16569e-11
-3.75626e-11
0.0168001
1.12281e-10
-3.75675e-11
0.0168001
1.11012e-10
-3.75696e-11
0.0168001
4.93968e-10
-3.75573e-11
0.0168001
4.6591e-10
-3.75476e-11
0.0168001
2.42716e-09
-3.7542e-11
0.0168001
2.119e-09
-3.75358e-11
0.0168001
1.23386e-08
-3.75915e-11
0.0168001
9.64317e-09
-3.76776e-11
0.0168001
6.32644e-08
-3.80892e-11
0.0168004
4.19015e-08
-3.87789e-11
0.0168004
3.41473e-07
-4.10951e-11
0.016802
1.22619e-07
-4.53767e-11
0.0168013
2.17742e-06
-5.85127e-11
0.0168116
-2.80686e-07
-8.00417e-11
0.0168015
1.61304e-05
-1.7091e-10
0.0168644
-5.29891e-06
-2.87867e-10
0.0167886
0.000114523
-8.78179e-10
0.0171287
1.99295e-05
-2.32364e-09
0.017251
0.00054045
-6.40306e-09
0.0188414
0.00130271
-1.86751e-08
0.00541188
-2.80852e-08
0.0209882
0.0168001
-2.50459e-12
-3.47623e-11
0.0168001
4.80249e-12
-3.75496e-11
0.0168001
1.39069e-11
-3.75614e-11
0.0168001
2.98498e-11
-3.75787e-11
0.0168001
5.69502e-11
-3.75877e-11
0.0168001
1.26522e-10
-3.75799e-11
0.0168001
2.61749e-10
-3.75786e-11
0.0168001
6.19858e-10
-3.75712e-11
0.0168001
1.35005e-09
-3.75669e-11
0.0168001
3.25197e-09
-3.75884e-11
0.0168001
7.20154e-09
-3.76269e-11
0.0168001
1.72307e-08
-3.78023e-11
0.0168001
3.82237e-08
-3.81009e-11
0.0168
9.02759e-08
-3.90941e-11
0.0168001
2.00151e-07
-4.07348e-11
0.0167995
4.63641e-07
-4.63316e-11
0.0168003
1.05584e-06
-5.48696e-11
0.0167962
2.42241e-06
-8.81425e-11
0.0168054
5.71518e-06
-1.36355e-10
0.0167779
1.37711e-05
-3.36104e-10
0.0168508
3.23038e-05
-7.11175e-10
0.0167281
0.000101223
-2.16169e-09
0.0169867
0.000244593
-6.01992e-09
0.0168818
0.00107857
-1.8943e-08
0.00409783
-2.90759e-08
0.0177389
0.0168001
-1.356e-12
-3.47568e-11
0.0168001
2.19951e-12
-3.75609e-11
0.0168001
6.76405e-12
-3.75714e-11
0.0168001
3.0171e-11
-3.7587e-11
0.0168001
2.13379e-11
-3.75947e-11
0.0168001
1.46102e-10
-3.75875e-11
0.0168001
9.47532e-11
-3.75856e-11
0.0168001
7.77609e-10
-3.75806e-11
0.0168001
4.97079e-10
-3.75785e-11
0.0168001
4.44247e-09
-3.76162e-11
0.0168001
2.84748e-09
-3.76807e-11
0.0168
2.62014e-08
-3.79669e-11
0.0168001
1.69611e-08
-3.8486e-11
0.0167999
1.56745e-07
-4.00554e-11
0.0167999
9.98025e-08
-4.29714e-11
0.0167991
9.5659e-07
-5.01917e-11
0.0167994
4.54705e-07
-6.48573e-11
0.0167943
6.15339e-06
-9.1071e-11
0.0167969
-3.0076e-08
-2.16043e-10
0.0167635
4.02594e-05
-2.49449e-10
0.0167924
-1.34343e-05
-8.55235e-10
0.0166143
0.000237458
-1.91245e-09
0.0166963
0.000108023
-6.03373e-09
0.0162406
0.00123981
-1.96268e-08
0.00367262
-3.09334e-08
0.0161951
0.0168001
-1.48763e-12
-3.47563e-11
0.0168001
3.54896e-12
-3.75577e-11
0.0168001
8.91847e-12
-3.75848e-11
0.0168001
9.05772e-12
-3.75897e-11
0.0168001
4.47769e-11
-3.75957e-11
0.0168001
3.45572e-11
-3.75973e-11
0.0168001
2.17284e-10
-3.75898e-11
0.0168001
1.68223e-10
-3.75849e-11
0.0168001
1.17295e-09
-3.75871e-11
0.0168001
8.93199e-10
-3.75941e-11
0.0168001
6.57844e-09
-3.76637e-11
0.0168001
4.85452e-09
-3.77868e-11
0.0168
3.75513e-08
-3.82115e-11
0.0168002
2.54645e-08
-3.89978e-11
0.0168
2.30119e-07
-4.11754e-11
0.0168007
7.1497e-08
-4.56225e-11
0.0167991
1.64224e-06
-5.77386e-11
0.0168056
-5.51778e-07
-7.81058e-11
0.016791
1.10615e-05
-1.56759e-10
0.0168346
-5.22119e-06
-2.46008e-10
0.0167405
6.45262e-05
-7.90459e-10
0.0169411
-3.28442e-06
-2.15729e-09
0.0166674
0.000318273
-4.86188e-09
0.0170125
0.000561594
-2.08922e-08
0.00316325
-3.20262e-08
0.0170508
0.0168001
-3.34314e-13
-3.47503e-11
0.0168001
4.60276e-14
-3.75748e-11
0.0168001
1.05113e-12
-3.75837e-11
0.0168001
1.26249e-11
-3.75974e-11
0.0168001
-3.14206e-12
-3.76034e-11
0.0168001
6.30492e-11
-3.75965e-11
0.0168001
-3.30872e-11
-3.75941e-11
0.0168001
3.15367e-10
-3.75897e-11
0.0168001
-2.66049e-10
-3.75877e-11
0.0168001
1.65114e-09
-3.76204e-11
0.0168001
-2.17316e-09
-3.76747e-11
0.0168001
8.75101e-09
-3.79269e-11
0.0168001
-1.60435e-08
-3.83725e-11
0.0168
4.90778e-08
-3.97899e-11
0.0168003
-1.16598e-07
-4.339e-11
0.0167997
3.32786e-07
-4.79501e-11
0.0168017
-8.61938e-07
-7.58294e-11
0.0167964
2.94944e-06
-8.5601e-11
0.0168112
-6.1339e-06
-2.03138e-10
0.0167654
2.88773e-05
-4.19756e-10
0.0168594
-4.1552e-05
-9.86724e-10
0.0166073
0.000196212
-2.08227e-09
0.0169454
-1.01839e-05
-7.41881e-09
0.01627
0.000927611
-1.76971e-08
0.00276382
-3.15567e-08
0.0161653
0.0168001
-9.54515e-13
-3.47528e-11
0.0168001
2.06757e-12
-3.7565e-11
0.0168001
5.55489e-12
-3.75908e-11
0.0168001
1.08629e-11
-3.75953e-11
0.0168001
2.31408e-11
-3.76012e-11
0.0168001
4.63722e-11
-3.76027e-11
0.0168001
1.09955e-10
-3.75958e-11
0.0168001
2.37361e-10
-3.75913e-11
0.0168001
5.87351e-10
-3.7593e-11
0.0168001
1.30006e-09
-3.75992e-11
0.0168001
3.21539e-09
-3.76591e-11
0.0168001
7.13336e-09
-3.77624e-11
0.0168
1.73905e-08
-3.8133e-11
0.0168
3.80603e-08
-3.87662e-11
0.0167997
9.22565e-08
-4.10086e-11
0.0167997
1.9592e-07
-4.47456e-11
0.0167978
4.8521e-07
-5.90135e-11
0.016799
9.73696e-07
-8.1882e-11
0.0167861
2.65477e-06
-1.67028e-10
0.0168059
5.15435e-06
-3.14596e-10
0.0167302
1.57569e-05
-7.89758e-10
0.016845
3.95927e-05
-2.49533e-09
0.0166469
0.000126653
-4.81617e-09
0.016811
0.000442746
-2.1149e-08
0.00210246
-2.90348e-08
0.0169593
0.0168001
-1.49644e-12
-3.47506e-11
0.0168001
3.96898e-12
-3.757e-11
0.0168001
1.01184e-11
-3.75947e-11
0.0168001
8.20777e-12
-3.75984e-11
0.0168001
5.2225e-11
-3.76039e-11
0.0168001
2.88676e-11
-3.76046e-11
0.0168001
2.66503e-10
-3.75979e-11
0.0168001
1.46861e-10
-3.75931e-11
0.0168001
1.51768e-09
-3.75979e-11
0.0168001
8.31619e-10
-3.76078e-11
0.0168001
8.88776e-09
-3.76902e-11
0.0168001
4.71938e-09
-3.7832e-11
0.0168
5.22344e-08
-3.83251e-11
0.0168
2.36717e-08
-3.91834e-11
0.0167996
3.12657e-07
-4.17361e-11
0.0167996
7.60774e-08
-4.59286e-11
0.0167976
1.91114e-06
-6.00826e-11
0.0167984
-6.54125e-07
-7.68921e-11
0.0167856
1.16279e-05
-1.83156e-10
0.0168035
-1.59445e-05
-2.62874e-10
0.016723
7.50374e-05
-9.21351e-10
0.0168374
-0.000106469
-2.30157e-09
0.0166006
0.000286105
-5.22076e-09
0.0167016
4.99709e-05
-1.9784e-08
0.00126069
-3.21396e-08
0.0170196
0.0168001
-5.15045e-13
-3.47448e-11
0.0168001
8.28164e-13
-3.75864e-11
0.0168001
2.93967e-12
-3.75939e-11
0.0168001
1.31894e-11
-3.76058e-11
0.0168001
9.1751e-12
-3.761e-11
0.0168001
6.13489e-11
-3.76032e-11
0.0168001
3.2569e-11
-3.75993e-11
0.0168001
3.08745e-10
-3.7596e-11
0.0168001
1.28531e-10
-3.75934e-11
0.0168001
1.67195e-09
-3.76369e-11
0.0168001
4.76201e-10
-3.77008e-11
0.0168001
9.26833e-09
-3.80391e-11
0.0168001
1.10301e-09
-3.86189e-11
0.0168
5.33209e-08
-4.03385e-11
0.0168002
-1.25707e-08
-4.50874e-11
0.0167996
3.57168e-07
-4.90476e-11
0.0168012
-3.17594e-07
-8.0227e-11
0.0167959
2.66599e-06
-9.01044e-11
0.0168081
-3.31995e-06
-2.01461e-10
0.0167646
1.56992e-05
-4.32684e-10
0.0168501
-2.21399e-05
-9.31067e-10
0.0166023
8.60028e-05
-2.30013e-09
0.0169515
-3.67418e-05
-6.35841e-09
0.0163629
0.000352623
-1.68343e-08
0.00103597
-2.76325e-08
0.0160898
0.0168001
-8.70837e-13
-3.47466e-11
0.0168001
2.12585e-12
-3.75788e-11
0.0168001
4.88578e-12
-3.76017e-11
0.0168001
3.42949e-12
-3.76037e-11
0.0168001
2.45167e-11
-3.76086e-11
0.0168001
9.10783e-12
-3.76075e-11
0.0168001
1.10287e-10
-3.76013e-11
0.0168001
1.70071e-11
-3.75959e-11
0.0168001
5.39963e-10
-3.76061e-11
0.0168001
-6.58827e-11
-3.76229e-11
0.0168001
2.67264e-09
-3.77462e-11
0.0168001
-1.31551e-09
-3.79471e-11
0.0168
1.31266e-08
-3.87125e-11
0.0168001
-1.39718e-08
-4.00846e-11
0.0167998
7.37036e-08
-4.37315e-11
0.0168001
-1.63057e-07
-5.29487e-11
0.0167984
5.80881e-07
-6.38557e-11
0.0168015
-1.6987e-06
-1.17299e-10
0.0167894
4.62522e-06
-1.60275e-10
0.0168105
-1.10146e-05
-3.44028e-10
0.0167426
2.78561e-05
-8.04914e-10
0.0168531
-5.8218e-05
-2.08083e-09
0.0166623
0.000101357
-4.16987e-09
0.0168457
-5.57175e-05
-1.59776e-08
0.000382447
-2.21341e-08
0.0170538
0.0168001
8.44753e-14
-3.47419e-11
0.0168001
-8.65661e-13
-3.75924e-11
0.0168001
-1.50227e-12
-3.75993e-11
0.0168001
5.28145e-12
-3.76105e-11
0.0168001
-1.73369e-11
-3.76138e-11
0.0168001
2.53414e-11
-3.76071e-11
0.0168001
-1.17198e-10
-3.76028e-11
0.0168001
9.72716e-11
-3.76016e-11
0.0168001
-7.95977e-10
-3.76016e-11
0.0168001
3.08032e-10
-3.76574e-11
0.0168001
-5.26735e-09
-3.77395e-11
0.0168001
7.65686e-10
-3.81488e-11
0.0168001
-3.38989e-08
-3.88305e-11
0.0168
4.31186e-09
-4.0851e-11
0.0168002
-2.18696e-07
-4.62957e-11
0.0167995
8.65762e-08
-5.05437e-11
0.0168007
-1.43327e-06
-8.67618e-11
0.0167951
1.80753e-06
-9.08915e-11
0.0168059
-9.33334e-06
-2.18668e-10
0.0167619
2.15628e-05
-4.17956e-10
0.0168417
-6.20258e-05
-9.29017e-10
0.0165997
0.000137157
-1.97479e-09
0.0169082
-0.000181778
-5.30922e-09
0.0163956
0.000278295
-1.21235e-08
0.000350063
-1.50636e-08
0.0160478
0.0168001
-3.23039e-13
-3.47455e-11
0.0168001
6.44493e-13
-3.75814e-11
0.0168001
1.47086e-12
-3.76043e-11
0.0168001
2.35132e-12
-3.76061e-11
0.0168001
3.85579e-12
-3.76113e-11
0.0168001
2.93411e-12
-3.76104e-11
0.0168001
3.08122e-13
-3.76046e-11
0.0168001
-2.26587e-11
-3.75997e-11
0.0168001
-7.234e-11
-3.761e-11
0.0168001
-2.76968e-10
-3.76275e-11
0.0168001
-7.82954e-10
-3.77412e-11
0.0168
-2.4071e-09
-3.79303e-11
0.0168
-6.32649e-09
-3.86082e-11
0.0168
-1.63704e-08
-3.9757e-11
0.0167996
-4.59975e-08
-4.33456e-11
0.0167996
-8.37616e-08
-4.94024e-11
0.0167977
-2.96915e-07
-6.64438e-11
0.0167988
-2.88725e-07
-9.81938e-11
0.0167869
-1.34564e-06
-1.72946e-10
0.0168053
-1.52119e-06
-3.22283e-10
0.0167326
-5.56957e-06
-7.14912e-10
0.0168589
-9.76967e-06
-1.67902e-09
0.016655
-2.16395e-05
-3.04349e-09
0.0168514
-7.14704e-05
-1.13404e-08
-7.90361e-05
-1.16515e-08
0.0169281
0.0168001
-4.32534e-13
-3.47444e-11
0.0168001
1.2147e-12
-3.75838e-11
0.0168001
3.44477e-12
-3.76063e-11
0.0168001
-6.521e-12
-3.76078e-11
0.0168001
2.46707e-11
-3.76129e-11
0.0168001
-4.92925e-11
-3.76117e-11
0.0168001
1.18864e-10
-3.76069e-11
0.0168001
-3.20004e-10
-3.76034e-11
0.0168001
6.1975e-10
-3.76184e-11
0.0168001
-2.05203e-09
-3.76437e-11
0.0168001
3.29503e-09
-3.77744e-11
0.0168001
-1.30025e-08
-3.79933e-11
0.0168
1.78812e-08
-3.87236e-11
0.0168
-8.22441e-08
-3.99662e-11
0.0167997
1.01411e-07
-4.37253e-11
0.0168
-5.36484e-07
-5.05403e-11
0.0167981
7.39506e-07
-6.56858e-11
0.0168007
-4.13178e-06
-1.16124e-10
0.0167879
7.88087e-06
-1.46575e-10
0.0168168
-3.53637e-05
-3.33762e-10
0.0167294
6.83754e-05
-6.51103e-10
0.016917
-0.00021781
-1.62276e-09
0.0166567
0.000200535
-2.75571e-09
0.0169262
-0.000463237
-9.46025e-09
-0.000321921
-8.98654e-09
0.0168018
0.0168001
1.67206e-13
-3.47416e-11
0.0168001
-6.6452e-13
-3.7593e-11
0.0168001
-9.90643e-13
-3.75999e-11
0.0168001
-5.19402e-12
-3.76119e-11
0.0168001
-2.04119e-12
-3.76158e-11
0.0168001
-2.94378e-11
-3.76096e-11
0.0168001
-2.03348e-11
-3.76067e-11
0.0168001
-1.89426e-10
-3.76069e-11
0.0168001
-1.81813e-10
-3.76106e-11
0.0168001
-1.22766e-09
-3.76649e-11
0.0168001
-1.4099e-09
-3.77521e-11
0.0168
-7.83129e-09
-3.81125e-11
0.0168
-1.00158e-08
-3.87311e-11
0.0167999
-4.83192e-08
-4.07341e-11
0.0168
-6.35513e-08
-4.44612e-11
0.0167993
-2.76377e-07
-5.35045e-11
0.0168
-3.58392e-07
-7.86833e-11
0.0167955
-1.44828e-06
-9.3161e-11
0.0168008
-1.05724e-06
-2.60378e-10
0.0167682
-8.27049e-06
-1.87714e-10
0.0168153
6.01414e-06
-8.30159e-10
0.0166278
-5.07199e-05
-1.02622e-09
0.0167786
2.01036e-05
-3.23931e-09
0.0164588
-0.00014874
-7.85416e-09
-0.000234186
-7.35329e-09
0.0160705
0.0168001
-3.47426e-11
0.0168001
-3.75906e-11
0.0168001
-3.75981e-11
0.0168001
-3.7611e-11
0.0168001
-3.76159e-11
0.0168001
-3.76101e-11
0.0168001
-3.76083e-11
0.0168001
-3.7609e-11
0.0168001
-3.76145e-11
0.0168001
-3.76677e-11
0.0168001
-3.7757e-11
0.0168
-3.80692e-11
0.0168
-3.86066e-11
0.0167999
-4.01159e-11
0.0167997
-4.27421e-11
0.0167991
-4.97007e-11
0.0167984
-6.17283e-11
0.0167955
-9.33277e-11
0.0167927
-1.47335e-10
0.016779
-2.76942e-10
0.016777
-5.97143e-10
0.0167114
-1.08425e-09
0.0166907
-2.81763e-09
0.0165647
-7.0852e-09
-5.81981e-09
0.0160267
0.0168001
1.05811e-09
-5.63184e-16
0.0168001
5.75483e-09
-2.44765e-15
0.0168001
1.9896e-08
-6.34568e-15
0.0168001
5.54822e-08
-1.14471e-14
0.0168002
1.4104e-07
-2.21214e-14
0.0168001
3.52333e-07
-4.03606e-14
0.0168008
8.43772e-07
-7.31678e-14
0.0168
2.10472e-06
-1.75526e-13
0.0168047
4.88831e-06
-2.64194e-13
0.0167977
1.3101e-05
-1.11417e-12
0.0168351
3.04103e-05
-1.23632e-12
0.0167784
8.6614e-05
-7.11447e-12
0.0170226
0.000236702
-1.59129e-11
0.0168035
0.000840205
-3.56947e-11
0.0178047
0.0027475
-1.47812e-10
0.0175526
0.0126441
-2.34919e-10
0.0167824
0.013428
-3.83488e-11
0.0154409
0.0131342
-2.5578e-11
0.014404
0.0133598
-2.46282e-11
0.0134365
0.0141875
-2.45824e-11
0.0125727
0.0155017
-2.34703e-11
0.0116279
0.017211
-2.12993e-11
0.0107944
0.0193531
-1.88977e-11
0.0107822
0.0218524
-1.71307e-11
0.0234331
-1.64334e-11
0.0162968
0.0168001
8.47288e-10
-5.65417e-16
0.0168001
6.56501e-09
-2.50589e-15
0.0168001
2.00104e-08
-6.31066e-15
0.0168001
6.05042e-08
-1.19939e-14
0.0168
1.43161e-07
-2.25015e-14
0.0168
3.8225e-07
-4.33231e-14
0.0168
8.62289e-07
-8.00912e-14
0.0167998
2.23718e-06
-1.82088e-13
0.0167996
5.10987e-06
-3.54478e-13
0.0167997
1.28128e-05
-9.34908e-13
0.0167994
3.07194e-05
-1.89997e-12
0.0168051
8.0048e-05
-5.31388e-12
0.0168226
0.00021872
-1.3952e-11
0.0169198
0.000739992
-3.79589e-11
0.0173336
0.00232686
-1.15525e-10
0.0177428
0.0122159
-2.56214e-10
0.016983
0.0141852
-2.21059e-11
0.0160478
0.0140678
-1.48705e-11
0.0152113
0.0141946
-2.00006e-11
0.0144022
0.0149954
-2.32511e-11
0.0137311
0.0161719
-2.22763e-11
0.0132258
0.0177156
-2.0273e-11
0.0130622
0.0195159
-1.74249e-11
0.0139092
0.0210044
-1.71152e-11
0.0214732
-1.79946e-11
0.0158681
0.0168001
7.68701e-10
-5.569e-16
0.0168001
5.96378e-09
-2.4551e-15
0.0168001
1.83565e-08
-6.19413e-15
0.0168001
5.52793e-08
-1.16946e-14
0.0168001
1.30942e-07
-2.19436e-14
0.0168001
3.47507e-07
-4.17608e-14
0.0168002
7.81572e-07
-7.74329e-14
0.0168004
2.03805e-06
-1.72283e-13
0.016801
4.49888e-06
-3.45558e-13
0.0168015
1.21699e-05
-8.51016e-13
0.0168061
2.61118e-05
-1.7888e-12
0.0168051
8.01944e-05
-5.16563e-12
0.0168368
0.000186671
-1.2396e-11
0.0168599
0.000714115
-3.16191e-11
0.0170885
0.00209223
-1.05197e-10
0.0179898
0.0112947
-2.66904e-10
0.0173945
0.0147792
-9.76372e-12
0.0166557
0.0148053
-9.39868e-12
0.0159693
0.0148795
-1.47427e-11
0.0153689
0.015594
-2.12782e-11
0.0148629
0.0166764
-2.06127e-11
0.0146585
0.017919
-1.8823e-11
0.0149844
0.0191894
-1.70808e-11
0.0159234
0.0200646
-1.68817e-11
0.0201919
-1.80502e-11
0.0172038
0.0168001
6.15746e-10
-5.39153e-16
0.0168001
5.35024e-09
-2.34363e-15
0.0168001
1.64035e-08
-5.92489e-15
0.0168001
4.91277e-08
-1.09016e-14
0.0168001
1.16278e-07
-2.0217e-14
0.0168001
3.05496e-07
-3.68931e-14
0.0168002
6.8322e-07
-6.64239e-14
0.0168004
1.79544e-06
-1.46786e-13
0.0168012
3.73263e-06
-2.60349e-13
0.0168019
1.13906e-05
-7.877e-13
0.0168084
1.95363e-05
-1.27564e-12
0.0168059
8.19611e-05
-4.87584e-12
0.0168434
0.00014882
-8.87615e-12
0.0168601
0.000694826
-3.72022e-11
0.0171211
0.00182713
-9.33972e-11
0.0187001
0.00969514
-2.71133e-10
0.0180831
0.015396
-6.63522e-12
0.0172279
0.0156602
-5.29468e-12
0.016678
0.0154283
-9.70695e-12
0.0162968
0.0159741
-1.92285e-11
0.0160327
0.0169389
-1.95695e-11
0.0160079
0.0179426
-1.74984e-11
0.0163524
0.018844
-1.62222e-11
0.0171398
0.0192763
-1.62448e-11
0.0191645
-1.6085e-11
0.0181661
0.0168001
1.79051e-10
-5.29247e-16
0.0168001
6.9844e-09
-2.3202e-15
0.0168001
1.08338e-08
-5.83694e-15
0.0168001
6.02307e-08
-1.0702e-14
0.0168001
8.0839e-08
-1.97889e-14
0.0168
3.75278e-07
-3.5894e-14
0.0168002
4.86217e-07
-6.47833e-14
0.0167998
2.22074e-06
-1.40997e-13
0.0168008
2.71503e-06
-2.64987e-13
0.0167983
1.372e-05
-7.2588e-13
0.0168041
1.36581e-05
-1.33331e-12
0.0167905
9.50118e-05
-4.80246e-12
0.0168544
8.45235e-05
-8.13038e-12
0.0168445
0.00070197
-3.57101e-11
0.0173426
0.00132597
-8.81601e-11
0.0204819
0.00653207
-2.84844e-10
0.019247
0.0166309
-2.42957e-11
0.0183411
0.0165658
-1.21593e-11
0.0175328
0.0162365
-6.22797e-12
0.0171442
0.0163613
-1.60863e-11
0.0170482
0.017034
-1.74052e-11
0.0171647
0.017825
-1.60841e-11
0.0174837
0.0185243
-1.4976e-11
0.0180507
0.0187086
-1.52022e-11
0.0183539
-1.44155e-11
0.0188606
0.0168001
5.56814e-10
-4.36052e-16
0.0168001
3.72441e-09
-2.44394e-15
0.0168001
1.3157e-08
-4.97693e-15
0.0168001
3.51987e-08
-1.03273e-14
0.0168001
9.38782e-08
-1.68448e-14
0.0168002
2.21423e-07
-3.00044e-14
0.0168001
5.60351e-07
-5.21722e-14
0.0168011
1.28884e-06
-9.21859e-14
0.0168005
3.28329e-06
-2.16504e-13
0.0168068
7.40714e-06
-3.30288e-13
0.0168001
2.01207e-05
-1.344e-12
0.01685
4.51474e-05
-1.58737e-12
0.016802
0.000131423
-8.20551e-12
0.0171538
0.000348978
-2.00464e-11
0.0172894
0.00118787
-3.80087e-11
0.0198364
0.00397073
-1.53546e-10
0.0203622
0.0160953
-1.29498e-10
0.0196044
0.0173221
-3.63278e-11
0.0185418
0.0172979
-2.72379e-11
0.018034
0.0168685
-1.41306e-11
0.0178977
0.0171691
-1.51036e-11
0.0180562
0.0176652
-1.53184e-11
0.018433
0.0181465
-1.41526e-11
0.0188624
0.0182782
-1.41633e-11
0.0178128
-1.30976e-11
0.0194026
0.0168001
6.58255e-10
-4.39478e-16
0.0168001
3.42869e-09
-2.48665e-15
0.0168001
1.27763e-08
-5.05753e-15
0.0168001
3.27044e-08
-1.05344e-14
0.0168001
9.00483e-08
-1.725e-14
0.0168001
2.07181e-07
-3.03273e-14
0.0168001
5.37965e-07
-5.36559e-14
0.0168002
1.20905e-06
-9.58663e-14
0.0168003
3.08957e-06
-2.08999e-13
0.0168008
6.96379e-06
-3.97509e-13
0.0168029
1.78072e-05
-1.05632e-12
0.0168083
3.97062e-05
-2.05976e-12
0.0168249
0.000113888
-6.10513e-12
0.0169007
0.000272522
-1.46013e-11
0.0171071
0.000978088
-4.21494e-11
0.0181006
0.00296864
-1.21261e-10
0.0202249
0.0139482
-2.78164e-10
0.0199675
0.0175755
-4.45988e-11
0.0194471
0.0178163
-3.02604e-11
0.0189006
0.0174149
-9.81572e-12
0.0186861
0.0173824
-1.32327e-11
0.0187445
0.0176055
-1.47055e-11
0.0190957
0.017794
-1.42441e-11
0.0195389
0.0178345
-1.31358e-11
0.017427
-1.29285e-11
0.0199228
0.0168001
8.05629e-10
-4.57485e-16
0.0168001
2.00037e-09
-2.66056e-15
0.0168001
1.30208e-08
-5.25648e-15
0.0168001
2.10854e-08
-1.0971e-14
0.0168001
9.02631e-08
-1.70923e-14
0.0168001
1.35462e-07
-3.00488e-14
0.0168001
5.39437e-07
-4.83162e-14
0.0168006
7.77168e-07
-8.44406e-14
0.0168004
3.22766e-06
-1.75722e-13
0.0168033
4.01112e-06
-3.02222e-13
0.0168003
2.07543e-05
-9.23818e-13
0.0168211
1.878e-05
-1.46435e-12
0.0167933
0.000140903
-5.68529e-12
0.0169323
0.00013298
-1.04942e-11
0.0168745
0.00103284
-4.281e-11
0.0176027
0.00223573
-1.05839e-10
0.0203539
0.0111737
-2.82234e-10
0.0203861
0.017543
-9.5246e-12
0.0200446
0.0181566
-5.60874e-12
0.019609
0.0178507
-1.64367e-12
0.0194639
0.017528
-9.46181e-12
0.0194645
0.0176044
-1.17667e-11
0.0196321
0.0176253
-1.24227e-11
0.0199999
0.0174651
-1.17617e-11
0.0170717
-1.2819e-11
0.0203549
0.0168001
3.15274e-10
-8.03218e-16
0.0168001
2.18699e-09
-3.09536e-15
0.0168001
6.96648e-09
-7.37724e-15
0.0168001
2.04841e-08
-1.1496e-14
0.0168001
4.93842e-08
-2.04257e-14
0.0168001
1.27538e-07
-2.83114e-14
0.0168004
2.90593e-07
-4.69573e-14
0.0168004
7.47468e-07
-7.96113e-14
0.016802
1.61409e-06
-1.12021e-13
0.0168013
4.66529e-06
-3.8119e-13
0.0168131
9.00233e-06
-3.57852e-13
0.0168012
3.02861e-05
-2.46601e-12
0.0168828
5.93697e-05
-3.04023e-12
0.0168126
0.000201341
-1.45945e-11
0.0173141
0.000529479
-3.37863e-11
0.017709
0.00183603
-1.04471e-10
0.0221948
0.00666086
-3.11471e-10
0.0215717
0.0181634
-4.78379e-11
0.0212024
0.0185276
9.73227e-12
0.0205724
0.018481
5.84278e-12
0.0202077
0.0178931
-3.09144e-12
0.0201732
0.0176391
-9.46909e-12
0.0202392
0.0175595
-9.83396e-12
0.0204252
0.0172778
-1.2542e-11
0.016806
-1.45509e-11
0.0206893
0.0168001
1.11003e-10
-1.09673e-15
0.0168001
2.47661e-09
-3.94846e-15
0.0168001
4.62973e-09
-9.13089e-15
0.0168001
2.16177e-08
-1.37103e-14
0.0168001
3.41113e-08
-2.31219e-14
0.0168001
1.34468e-07
-3.22206e-14
0.0168002
2.04975e-07
-5.10488e-14
0.0168001
7.88215e-07
-8.3131e-14
0.0168006
1.15096e-06
-1.42464e-13
0.0168005
4.73935e-06
-3.02833e-13
0.0168036
5.84295e-06
-5.97903e-13
0.0168031
3.059e-05
-1.44158e-12
0.0168332
2.90232e-05
-3.28911e-12
0.0168269
0.000206479
-7.08436e-12
0.0171123
0.000242778
-2.356e-11
0.0174034
0.00154043
-4.61522e-11
0.020016
0.0040384
-1.28948e-10
0.0223614
0.0157997
-1.8443e-10
0.0220268
0.01886
-2.61572e-11
0.0214514
0.0190547
-1.58649e-11
0.0209324
0.0184117
-2.89843e-12
0.0207588
0.0178128
-8.40432e-12
0.0207984
0.0175187
-1.20436e-11
0.0208807
0.0171958
-1.55524e-11
0.0166679
-1.84278e-11
0.0210165
0.0168001
2.11189e-10
-9.43076e-16
0.0168001
1.23674e-09
-5.85567e-15
0.0168001
4.5134e-09
-8.98766e-15
0.0168001
1.17991e-08
-1.76966e-14
0.0168001
3.1876e-08
-2.26803e-14
0.0168001
7.37932e-08
-3.65446e-14
0.0168001
1.88059e-07
-4.72433e-14
0.0168005
4.23354e-07
-7.55326e-14
0.0168005
1.10035e-06
-1.2318e-13
0.0168029
2.34003e-06
-2.08594e-13
0.0168018
6.87765e-06
-4.94051e-13
0.0168191
1.3331e-05
-8.37788e-13
0.0168036
4.39848e-05
-2.72819e-12
0.0169196
9.04054e-05
-4.63963e-12
0.0168475
0.000312719
-1.70743e-11
0.0175655
0.000820859
-3.68815e-11
0.0182028
0.00339238
-1.16973e-10
0.0218249
0.012155
-2.54644e-10
0.0222328
0.0184503
-2.53514e-11
0.0220699
0.0192161
-1.27518e-11
0.0215608
0.018921
-8.39193e-13
0.0213212
0.0180502
-1.38003e-11
0.0212979
0.017541
-1.70106e-11
0.021347
0.0171448
-2.18528e-11
0.0166163
-2.82661e-11
0.0213961
0.0168001
2.75893e-10
-1.06799e-15
0.0168001
7.15167e-10
-6.62415e-15
0.0168001
4.49302e-09
-1.00074e-14
0.0168001
7.48099e-09
-1.95284e-14
0.0168001
3.09873e-08
-2.46743e-14
0.0168001
4.77151e-08
-3.84365e-14
0.0168001
1.82816e-07
-4.95344e-14
0.0168002
2.74583e-07
-7.56438e-14
0.0168003
1.05074e-06
-1.18844e-13
0.0168011
1.52687e-06
-2.01359e-13
0.0168017
6.20008e-06
-4.47206e-13
0.0168068
8.1645e-06
-8.07793e-13
0.0168103
4.0163e-05
-2.4584e-12
0.0168543
4.62647e-05
-4.17973e-12
0.0168838
0.000281157
-1.5726e-11
0.0172431
0.000459708
-3.85169e-11
0.0184507
0.00217762
-1.01316e-10
0.0229558
0.00762323
-2.956e-10
0.0231144
0.0182871
-6.08677e-11
0.0229802
0.0193519
1.203e-12
0.0225615
0.0193391
-1.89168e-12
0.0220142
0.0185984
-1.60859e-11
0.0218084
0.0177426
-2.36761e-11
0.0217782
0.0171743
-3.09446e-11
0.0166174
-3.91775e-11
0.0217729
0.0168001
1.21003e-10
-1.74893e-15
0.0168001
8.75274e-10
-5.79554e-15
0.0168001
2.69456e-09
-1.30451e-14
0.0168001
8.16264e-09
-1.81524e-14
0.0168001
1.92353e-08
-2.93084e-14
0.0168001
5.14419e-08
-3.62235e-14
0.0168001
1.14971e-07
-5.30413e-14
0.0168001
3.00392e-07
-6.99723e-14
0.0168005
6.63281e-07
-1.06296e-13
0.0168003
1.73358e-06
-1.81276e-13
0.0168026
3.8258e-06
-3.15818e-13
0.0168006
1.00327e-05
-7.29099e-13
0.0168179
2.28562e-05
-1.46263e-12
0.0168045
5.91065e-05
-3.15244e-12
0.0169337
0.000151149
-1.1445e-11
0.016972
0.000418792
-1.61299e-11
0.0178648
0.00128543
-6.50746e-11
0.0207347
0.00474408
-1.05953e-10
0.0234142
0.0155906
-1.75495e-10
0.023449
0.0193158
-2.58837e-11
0.0231167
0.0196703
-1.90188e-11
0.0226201
0.0190932
-1.6639e-11
0.0223993
0.0179618
-2.2844e-11
0.0222636
0.0173032
-4.09521e-11
0.0166738
-5.61927e-11
0.0222042
0.0168001
4.53327e-11
-1.88045e-15
0.0168001
8.28512e-10
-6.15394e-15
0.0168001
1.67052e-09
-1.38333e-14
0.0168001
7.28733e-09
-1.90125e-14
0.0168001
1.22505e-08
-3.05497e-14
0.0168001
4.51268e-08
-3.68746e-14
0.0168001
7.33534e-08
-5.32276e-14
0.0168002
2.60824e-07
-6.60413e-14
0.0168004
4.19469e-07
-9.66557e-14
0.0168006
1.49205e-06
-1.46588e-13
0.0168021
2.36461e-06
-2.43077e-13
0.0168033
8.72854e-06
-5.17174e-13
0.0168131
1.29986e-05
-9.58263e-13
0.0168164
5.53791e-05
-2.61006e-12
0.0168923
7.49652e-05
-5.17596e-12
0.0169267
0.000382397
-1.50782e-11
0.0174825
0.000727299
-4.04507e-11
0.0190187
0.00320258
-1.01025e-10
0.023379
0.0112046
-2.49077e-10
0.023809
0.0188795
-6.7905e-11
0.0238301
0.0196465
-5.46751e-11
0.0234847
0.0194365
-3.88855e-11
0.0229263
0.018519
-2.1477e-11
0.0227208
0.017503
-5.17091e-11
0.0167793
-6.27061e-11
0.0226065
0.0168001
7.68476e-11
-1.28131e-15
0.0168001
4.39589e-10
-8.0765e-15
0.0168001
1.63639e-09
-1.17828e-14
0.0168001
4.19194e-09
-2.28542e-14
0.0168001
1.15661e-08
-2.75794e-14
0.0168001
2.63419e-08
-4.18808e-14
0.0168001
6.85754e-08
-4.86677e-14
0.0168002
1.52207e-07
-6.82337e-14
0.0168002
3.9195e-07
-8.51787e-14
0.0168008
8.64137e-07
-1.24511e-13
0.016801
2.23138e-06
-1.97728e-13
0.0168048
4.91274e-06
-3.32237e-13
0.0168048
1.28549e-05
-7.50337e-13
0.0168313
2.87798e-05
-1.33132e-12
0.0168286
7.70046e-05
-4.40977e-12
0.0170228
0.000187892
-5.93305e-12
0.0171885
0.000559055
-2.81751e-11
0.0187478
0.00163786
-5.96309e-11
0.0238756
0.00606745
-1.30162e-10
0.0248817
0.0178546
-1.78297e-10
0.024677
0.0198438
-7.1208e-11
0.0241635
0.0199449
-6.05163e-11
0.0235386
0.0191396
-5.36382e-11
0.0232131
0.017824
-5.65944e-11
0.0169598
-7.69598e-11
0.0230261
0.0168001
8.36504e-11
-1.33361e-15
0.0168001
2.50844e-10
-8.34358e-15
0.0168001
1.40883e-09
-1.21524e-14
0.0168001
2.57728e-09
-2.35255e-14
0.0168001
9.73114e-09
-2.82475e-14
0.0168001
1.64176e-08
-4.27616e-14
0.0168001
5.72338e-08
-4.90769e-14
0.0168001
9.49133e-08
-6.81387e-14
0.0168002
3.2563e-07
-8.23057e-14
0.0168005
5.3557e-07
-1.173e-13
0.0168009
1.84626e-06
-1.75905e-13
0.0168028
2.9955e-06
-2.88134e-13
0.0168049
1.06638e-05
-6.16436e-13
0.0168171
1.6492e-05
-1.15057e-12
0.0168274
6.62099e-05
-3.13151e-12
0.0169192
9.5628e-05
-6.49154e-12
0.017025
0.000451016
-1.82329e-11
0.0177278
0.000931751
-5.41362e-11
0.0199896
0.0037978
-1.22112e-10
0.0244744
0.0133404
-3.04185e-10
0.0249296
0.0193791
-9.61137e-11
0.0249536
0.0199117
-8.67683e-11
0.0243494
0.0197377
-6.88737e-11
0.0237563
0.0184106
-6.22289e-11
0.0172693
-1.04533e-10
0.0234352
0.0168001
3.54094e-11
-2.10985e-15
0.0168001
2.53769e-10
-6.82215e-15
0.0168001
7.86937e-10
-1.52539e-14
0.0168001
2.36528e-09
-2.0665e-14
0.0168001
5.59578e-09
-3.29273e-14
0.0168001
1.47817e-08
-3.8598e-14
0.0168001
3.31352e-08
-5.44977e-14
0.0168001
8.51228e-08
-6.24931e-14
0.0168002
1.8845e-07
-8.4929e-14
0.0168003
4.81654e-07
-1.07642e-13
0.0168011
1.06231e-06
-1.57565e-13
0.0168013
2.72594e-06
-2.653e-13
0.016806
5.99071e-06
-4.53607e-13
0.0168065
1.57839e-05
-1.1401e-12
0.0168384
3.42092e-05
-1.71889e-12
0.0168339
9.9094e-05
-7.41304e-12
0.0170693
0.00021507
-1.01033e-11
0.0172351
0.000761733
-4.98251e-11
0.0189559
0.00206999
-1.11502e-10
0.0241967
0.00806759
-3.29036e-10
0.0253799
0.0181844
-1.42285e-10
0.0254654
0.0198201
-7.70734e-11
0.0251888
0.0200043
-8.40702e-11
0.0245113
0.0190806
-9.14463e-11
0.0177477
-1.52006e-10
0.0240182
0.0168001
1.56935e-11
-2.15304e-15
0.0168001
2.21652e-10
-6.93956e-15
0.0168001
4.8742e-10
-1.55244e-14
0.0168001
1.96138e-09
-2.09803e-14
0.0168001
3.53713e-09
-3.34099e-14
0.0168001
1.21099e-08
-3.9e-14
0.0168001
2.1044e-08
-5.48948e-14
0.0168001
6.95073e-08
-6.21486e-14
0.0168002
1.19762e-07
-8.34114e-14
0.0168002
3.93142e-07
-1.01844e-13
0.0168006
6.73774e-07
-1.44017e-13
0.0168011
2.22569e-06
-2.2852e-13
0.0168033
3.77606e-06
-3.78421e-13
0.0168062
1.28119e-05
-8.3978e-13
0.0168191
2.10961e-05
-1.86928e-12
0.0168398
7.77578e-05
-3.82485e-12
0.0169248
0.000128949
-1.24482e-11
0.0171581
0.000524676
-2.41817e-11
0.0180552
0.00117547
-6.63332e-11
0.0217341
0.00437249
-1.49792e-10
0.0253505
0.0145414
-2.6502e-10
0.02556
0.0195999
-1.19841e-10
0.0256157
0.0199345
-1.25393e-10
0.025204
0.0194772
-1.57371e-10
0.0182852
-2.41931e-10
0.0246367
0.0168001
2.57177e-11
-1.38225e-15
0.0168001
9.7366e-11
-8.87044e-15
0.0168001
4.79128e-10
-1.27543e-14
0.0168001
9.67877e-10
-2.47348e-14
0.0168001
3.33471e-09
-2.93709e-14
0.0168001
6.13235e-09
-4.42972e-14
0.0168001
1.96431e-08
-4.96507e-14
0.0168001
3.54821e-08
-6.77251e-14
0.0168001
1.1171e-07
-7.62254e-14
0.0168003
2.01095e-07
-1.01455e-13
0.0168003
6.31357e-07
-1.28338e-13
0.0168014
1.13409e-06
-1.86805e-13
0.0168016
3.58281e-06
-3.18135e-13
0.016808
6.3742e-06
-5.46306e-13
0.0168079
2.0999e-05
-1.36812e-12
0.0168502
3.53102e-05
-2.13634e-12
0.0168434
0.000134458
-8.6857e-12
0.017143
0.000224232
-1.27068e-11
0.0173279
0.000985596
-5.59514e-11
0.0191816
0.00251239
-1.2256e-10
0.0249418
0.00874258
-3.29217e-10
0.0261302
0.0183905
-2.02429e-10
0.0260138
0.0200318
-1.974e-10
0.0258154
0.0196449
-2.44331e-10
0.0187538
-3.81159e-10
0.0253013
0.0168001
1.18137e-11
-2.1899e-15
0.0168001
8.40725e-11
-7.07365e-15
0.0168001
2.61266e-10
-1.58027e-14
0.0168001
7.82985e-10
-2.13058e-14
0.0168001
1.85555e-09
-3.39052e-14
0.0168001
4.87686e-09
-3.93214e-14
0.0168001
1.09511e-08
-5.51807e-14
0.0168001
2.79283e-08
-6.12386e-14
0.0168001
6.19819e-08
-8.09341e-14
0.0168002
1.56858e-07
-9.24785e-14
0.0168005
3.47073e-07
-1.23086e-13
0.0168007
8.77377e-07
-1.67036e-13
0.0168023
1.93966e-06
-2.51743e-13
0.0168037
4.95396e-06
-4.83925e-13
0.0168138
1.08376e-05
-8.50779e-13
0.0168194
2.92487e-05
-2.27337e-12
0.0168916
6.20371e-05
-4.20997e-12
0.0169262
0.000187596
-1.21144e-11
0.0174728
0.00043622
-3.24087e-11
0.0184533
0.00152492
-6.86657e-11
0.0227488
0.00442581
-1.92552e-10
0.0263385
0.0147621
-3.7437e-10
0.0263498
0.0199787
-3.0682e-10
0.0260646
0.0198835
-4.16378e-10
0.0190555
-5.65532e-10
0.0256977
0.0168001
4.45679e-12
-2.19782e-15
0.0168001
6.92307e-11
-7.11555e-15
0.0168001
1.51565e-10
-1.59123e-14
0.0168001
6.0903e-10
-2.14539e-14
0.0168001
1.10566e-09
-3.41372e-14
0.0168001
3.74582e-09
-3.954e-14
0.0168001
6.57034e-09
-5.54161e-14
0.0168001
2.13999e-08
-6.12054e-14
0.0168001
3.72869e-08
-8.05117e-14
0.0168001
1.20296e-07
-9.03881e-14
0.0168003
2.09085e-07
-1.18462e-13
0.0168005
6.74566e-07
-1.52821e-13
0.0168012
1.16677e-06
-2.23537e-13
0.0168023
3.8024e-06
-3.97678e-13
0.0168066
6.46796e-06
-6.91723e-13
0.0168135
2.20823e-05
-1.73682e-12
0.0168398
3.53988e-05
-3.1085e-12
0.0168855
0.000140226
-1.09667e-11
0.0170962
0.000223988
-1.67148e-11
0.0175976
0.00101653
-7.51098e-11
0.019359
0.00265047
-1.64282e-10
0.0252967
0.00877826
-4.54476e-10
0.0267861
0.0184368
-4.68954e-10
0.0267169
0.0198601
-7.61104e-10
0.0190464
-1.02042e-09
0.0265994
0.0168001
5.50029e-12
-1.41089e-15
0.0168001
3.34978e-11
-8.95407e-15
0.0168001
1.2216e-10
-1.29628e-14
0.0168001
3.17821e-10
-2.51138e-14
0.0168001
8.61866e-10
-2.9746e-14
0.0168001
1.98311e-09
-4.485e-14
0.0168001
5.06223e-09
-4.98445e-14
0.0168001
1.13431e-08
-6.76382e-14
0.0168001
2.85411e-08
-7.39876e-14
0.0168001
6.35643e-08
-9.59519e-14
0.0168002
1.59376e-07
-1.10894e-13
0.0168005
3.5429e-07
-1.48292e-13
0.0168008
8.88501e-07
-2.13094e-13
0.0168026
1.9742e-06
-3.32892e-13
0.0168039
4.98769e-06
-6.84451e-13
0.0168149
1.10415e-05
-1.27249e-12
0.0168206
2.90008e-05
-3.32704e-12
0.0168965
6.36215e-05
-6.73657e-12
0.016936
0.000181207
-1.82374e-11
0.017501
0.000446634
-5.04093e-11
0.0186507
0.00148668
-1.15867e-10
0.0230107
0.00437942
-3.29879e-10
0.0269689
0.0144195
-7.00978e-10
0.0273992
0.0192521
-1.39031e-09
0.0187047
-1.547e-09
0.0275514
0.0168001
3.95282e-12
-1.45293e-15
0.0168001
2.14465e-11
-8.85465e-15
0.0168001
7.97742e-11
-1.30565e-14
0.0168001
2.05091e-10
-2.50576e-14
0.0168001
5.58211e-10
-2.98151e-14
0.0168001
1.27792e-09
-4.48622e-14
0.0168001
3.2628e-09
-4.99339e-14
0.0168001
7.27995e-09
-6.77191e-14
0.0168001
1.83041e-08
-7.40429e-14
0.0168001
4.05911e-08
-9.59075e-14
0.0168002
1.01638e-07
-1.10111e-13
0.0168003
2.24936e-07
-1.46423e-13
0.0168006
5.62775e-07
-2.06062e-13
0.0168013
1.24313e-06
-3.17972e-13
0.0168031
3.12277e-06
-6.44018e-13
0.0168071
6.86359e-06
-1.17244e-12
0.0168178
1.76993e-05
-3.21275e-12
0.0168425
3.81802e-05
-5.9929e-12
0.0169099
0.000110045
-2.12373e-11
0.0171182
0.00023449
-3.6209e-11
0.0177416
0.000845469
-1.54688e-10
0.0197816
0.00231399
-3.57007e-10
0.0258772
0.00819698
-1.07045e-09
0.0275055
0.0174377
-1.64863e-09
0.0175378
-1.81598e-09
0.0284524
0.0168001
2.58966e-12
-1.50362e-15
0.0168001
1.37032e-11
-8.76341e-15
0.0168001
5.03439e-11
-1.33067e-14
0.0168001
1.30233e-10
-2.50914e-14
0.0168001
3.50174e-10
-3.00676e-14
0.0168001
8.06983e-10
-4.50384e-14
0.0168001
2.03532e-09
-5.02251e-14
0.0168001
4.56894e-09
-6.80068e-14
0.0168001
1.13544e-08
-7.43935e-14
0.0168001
2.532e-08
-9.62381e-14
0.0168001
6.27506e-08
-1.10528e-13
0.0168002
1.39626e-07
-1.4675e-13
0.0168004
3.46278e-07
-2.07931e-13
0.0168009
7.69511e-07
-3.20789e-13
0.0168019
1.91139e-06
-6.61339e-13
0.0168044
4.25701e-06
-1.18421e-12
0.0168109
1.05192e-05
-3.33576e-12
0.0168241
2.41135e-05
-5.86883e-12
0.0168715
5.88712e-05
-2.12235e-11
0.0169516
0.00014908
-3.17337e-11
0.0173772
0.000400775
-1.4078e-10
0.0184655
0.00119514
-3.1311e-10
0.0224344
0.00413579
-9.74596e-10
0.0268475
0.0127471
-2.3082e-09
0.0151411
-1.53875e-09
0.0290407
0.0168001
2.30269e-12
-1.52926e-15
0.0168001
5.7243e-12
-8.77521e-15
0.0168001
3.64407e-11
-1.35289e-14
0.0168001
6.01575e-11
-2.5241e-14
0.0168001
2.44199e-10
-3.03473e-14
0.0168001
3.76987e-10
-4.53019e-14
0.0168001
1.39851e-09
-5.045e-14
0.0168001
2.11354e-09
-6.81129e-14
0.0168001
7.72426e-09
-7.37772e-14
0.0168001
1.15053e-08
-9.41794e-14
0.0168001
4.22222e-08
-1.06347e-13
0.0168002
6.18924e-08
-1.36231e-13
0.0168003
2.29887e-07
-2.16993e-13
0.0168007
3.29564e-07
-3.74292e-13
0.0168013
1.25241e-06
-9.35248e-13
0.0168036
1.73566e-06
-3.03651e-12
0.0168062
7.04146e-06
-2.48549e-12
0.0168204
8.63231e-06
-2.61258e-11
0.0168316
4.38797e-05
1.48809e-12
0.0169244
4.34896e-05
-8.93655e-11
0.0170202
0.000289726
-8.74672e-11
0.0177484
0.000408636
-4.00917e-10
0.0198399
0.00197451
-1.14508e-09
0.0251554
0.00694809
-3.60306e-09
0.0119579
-1.35231e-09
0.0282507
0.0168001
4.42196e-13
-2.16546e-15
0.0168001
6.61607e-12
-7.43907e-15
0.0168001
1.22057e-11
-1.62293e-14
0.0168001
5.683e-11
-2.20826e-14
0.0168001
8.83152e-11
-3.48466e-14
0.0168001
3.43748e-10
-4.04211e-14
0.0168001
5.14019e-10
-5.6373e-14
0.0168001
1.93226e-09
-6.20532e-14
0.0168001
2.83649e-09
-8.10515e-14
0.0168001
1.06875e-08
-8.93584e-14
0.0168001
1.54229e-08
-1.14608e-13
0.0168001
5.89664e-08
-1.40256e-13
0.0168002
8.31262e-08
-1.945e-13
0.0168002
3.25876e-07
-3.26731e-13
0.0168009
4.34311e-07
-5.53099e-13
0.0168006
1.84709e-06
-1.30296e-12
0.0168052
2.07806e-06
-2.42598e-12
0.0168015
1.07992e-05
-6.86934e-12
0.0168344
9.49356e-06
-1.21785e-11
0.016806
6.2975e-05
-4.29203e-11
0.0170281
5.7148e-05
-7.8461e-11
0.0170001
0.000400162
-3.07755e-10
0.0182451
0.00065922
-8.15871e-10
0.0217146
0.00323703
-2.19947e-09
0.00803058
-2.94919e-09
0.0253312
0.0168001
9.5001e-13
-1.53752e-15
0.0168001
1.12496e-12
-8.87447e-15
0.0168001
1.25656e-11
-1.37817e-14
0.0168001
1.31601e-11
-2.54806e-14
0.0168001
8.0659e-11
-3.06735e-14
0.0168001
8.06068e-11
-4.56113e-14
0.0168001
4.45478e-10
-5.0847e-14
0.0168001
4.19816e-10
-6.84863e-14
0.0168001
2.35581e-09
-7.45226e-14
0.0168001
2.04882e-09
-9.56538e-14
0.0168001
1.22255e-08
-1.07215e-13
0.0168001
9.51811e-09
-1.405e-13
0.0168001
6.30454e-08
-1.83913e-13
0.0168004
4.1585e-08
-2.73804e-13
0.0168004
3.40851e-07
-5.33706e-13
0.016802
1.21068e-07
-8.723e-13
0.0168013
2.17467e-06
-2.81737e-12
0.0168116
-2.86266e-07
-4.35713e-12
0.0168015
1.612e-05
-1.71304e-11
0.0168644
-5.31234e-06
-3.08027e-11
0.0167886
0.000114554
-1.14837e-10
0.017129
2.00138e-05
-3.13513e-10
0.0172513
0.000540883
-8.95265e-10
0.0188448
0.00130462
-2.5437e-09
0.0054143
-3.69476e-09
0.0209927
0.0168001
2.53193e-13
-2.15004e-15
0.0168001
1.88433e-12
-7.53987e-15
0.0168001
5.79067e-12
-1.62902e-14
0.0168001
1.70772e-11
-2.22524e-14
0.0168001
4.04538e-11
-3.49645e-14
0.0168001
1.0456e-10
-4.06917e-14
0.0168001
2.35786e-10
-5.6604e-14
0.0168001
5.86777e-10
-6.25921e-14
0.0168001
1.31113e-09
-8.17494e-14
0.0168001
3.19972e-09
-9.07642e-14
0.0168001
7.1337e-09
-1.16934e-13
0.0168
1.71157e-08
-1.43076e-13
0.0168001
3.80183e-08
-1.97668e-13
0.0168
8.98424e-08
-3.18807e-13
0.0168001
1.99135e-07
-5.19942e-13
0.0167995
4.61841e-07
-1.19879e-12
0.0168003
1.04961e-06
-2.18444e-12
0.0167962
2.41918e-06
-6.55136e-12
0.0168054
5.6724e-06
-1.14643e-11
0.0167779
1.37948e-05
-4.17202e-11
0.0168509
3.22223e-05
-8.44005e-11
0.016728
0.000101398
-3.03231e-10
0.0169871
0.000244747
-8.23373e-10
0.0168819
0.00107923
-2.66676e-09
0.00409836
-4.19275e-09
0.0177397
0.0168001
-2.62773e-13
-2.14625e-15
0.0168001
2.86887e-12
-7.60464e-15
0.0168001
1.49017e-12
-1.63724e-14
0.0168001
2.17283e-11
-2.23997e-14
0.0168001
1.31655e-11
-3.5162e-14
0.0168001
1.30253e-10
-4.0968e-14
0.0168001
8.16975e-11
-5.69452e-14
0.0168001
7.56545e-10
-6.31788e-14
0.0168001
4.78343e-10
-8.25721e-14
0.0168001
4.41968e-09
-9.33158e-14
0.0168001
2.82574e-09
-1.22164e-13
0.0168
2.62092e-08
-1.59952e-13
0.0168
1.69686e-08
-2.37491e-13
0.0167999
1.56993e-07
-4.1741e-13
0.0167999
9.99905e-08
-7.48125e-13
0.0167991
9.58041e-07
-1.58515e-12
0.0167994
4.78653e-07
-3.11856e-12
0.0167943
6.15854e-06
-6.87003e-12
0.016797
-1.48769e-08
-1.8833e-11
0.0167634
4.02627e-05
-3.35722e-11
0.0167925
-1.34339e-05
-9.63579e-11
0.0166144
0.000237427
-2.79185e-10
0.0166962
0.000108018
-8.28764e-10
0.0162387
0.00123996
-2.79868e-09
0.00367136
-4.56696e-09
0.0161945
0.0168001
3.96761e-13
-1.52434e-15
0.0168001
3.12055e-13
-9.02622e-15
0.0168001
5.45234e-12
-1.38934e-14
0.0168001
4.29335e-12
-2.56655e-14
0.0168001
3.52913e-11
-3.08698e-14
0.0168001
2.76693e-11
-4.57922e-14
0.0168001
2.03778e-10
-5.1135e-14
0.0168001
1.5815e-10
-6.8723e-14
0.0168001
1.15466e-09
-7.50113e-14
0.0168001
8.78834e-10
-9.61467e-14
0.0168001
6.55405e-09
-1.082e-13
0.0168001
4.83617e-09
-1.40185e-13
0.0168
3.75283e-08
-1.82339e-13
0.0168002
2.54989e-08
-2.63491e-13
0.0168
2.29982e-07
-4.80668e-13
0.0168007
7.19057e-08
-6.55051e-13
0.0167991
1.64094e-06
-2.67645e-12
0.0168056
-5.50556e-07
-1.97749e-12
0.016791
1.10675e-05
-1.82067e-11
0.0168347
-5.25278e-06
-1.9075e-11
0.0167405
6.44915e-05
-1.04584e-10
0.0169411
-3.37817e-06
-2.80651e-10
0.0166678
0.000317573
-6.80787e-10
0.0170113
0.000561888
-2.90593e-09
0.00316067
-4.71952e-09
0.0170504
0.0168001
-3.78884e-13
-2.13027e-15
0.0168001
1.49441e-12
-7.68891e-15
0.0168001
-1.42485e-12
-1.64135e-14
0.0168001
1.00482e-11
-2.24618e-14
0.0168001
-6.41103e-12
-3.5195e-14
0.0168001
5.64365e-11
-4.09433e-14
0.0168001
-3.95726e-11
-5.68863e-14
0.0168001
3.06613e-10
-6.28597e-14
0.0168001
-2.8335e-10
-8.1959e-14
0.0168001
1.644e-09
-9.12764e-14
0.0168001
-2.18767e-09
-1.17785e-13
0.0168001
8.77383e-09
-1.4876e-13
0.0168001
-1.60042e-08
-2.14294e-13
0.0168
4.9305e-08
-3.72283e-13
0.0168003
-1.16017e-07
-7.14273e-13
0.0167997
3.33766e-07
-1.44799e-12
0.0168017
-8.57967e-07
-3.89311e-12
0.0167963
2.95272e-06
-7.23797e-12
0.0168111
-6.12888e-06
-1.88822e-11
0.0167652
2.89088e-05
-5.2043e-11
0.0168591
-4.15475e-05
-1.22604e-10
0.0166071
0.000196162
-2.92572e-10
0.0169442
-9.95674e-06
-1.01077e-09
0.0162695
0.000926814
-2.5087e-09
0.00275791
-4.57499e-09
0.0161673
0.0168001
1.15191e-13
-1.56554e-15
0.0168001
7.14366e-13
-8.97056e-15
0.0168001
2.51955e-12
-1.39744e-14
0.0168001
6.47768e-12
-2.5662e-14
0.0168001
1.74762e-11
-3.09799e-14
0.0168001
4.0003e-11
-4.58542e-14
0.0168001
1.02456e-10
-5.1335e-14
0.0168001
2.29474e-10
-6.89512e-14
0.0168001
5.78005e-10
-7.55108e-14
0.0168001
1.28957e-09
-9.69337e-14
0.0168
3.19777e-09
-1.0988e-13
0.0168
7.10069e-09
-1.43249e-13
0.0168
1.73029e-08
-1.92358e-13
0.0168
3.78397e-08
-2.852e-13
0.0167997
9.17281e-08
-5.60833e-13
0.0167997
1.94739e-07
-9.97888e-13
0.0167978
4.83274e-07
-2.85207e-12
0.016799
9.70444e-07
-5.24246e-12
0.0167861
2.64551e-06
-1.78969e-11
0.0168059
5.16061e-06
-3.23676e-11
0.0167302
1.56955e-05
-1.09778e-10
0.0168446
3.96256e-05
-3.21363e-10
0.0166477
0.000126264
-6.8366e-10
0.0168096
0.000443001
-2.91259e-09
0.00209919
-4.58518e-09
0.016979
0.0168001
6.21714e-13
-1.56153e-15
0.0168001
8.74114e-14
-9.03818e-15
0.0168001
6.86864e-12
-1.40198e-14
0.0168001
3.16302e-12
-2.578e-14
0.0168001
4.3616e-11
-3.11021e-14
0.0168001
2.28651e-11
-4.60427e-14
0.0168001
2.57161e-10
-5.15809e-14
0.0168001
1.39453e-10
-6.92733e-14
0.0168001
1.50844e-09
-7.62095e-14
0.0168001
8.18754e-10
-9.81379e-14
0.0168
8.86706e-09
-1.13866e-13
0.0168
4.66315e-09
-1.51915e-13
0.0168
5.20773e-08
-2.1573e-13
0.0168
2.33397e-08
-3.35309e-13
0.0167996
3.11268e-07
-6.51132e-13
0.0167996
7.3925e-08
-1.14911e-12
0.0167976
1.90351e-06
-3.03659e-12
0.0167984
-6.65032e-07
-4.90349e-12
0.0167856
1.16128e-05
-1.99957e-11
0.0168036
-1.60226e-05
-2.89268e-11
0.0167231
7.5002e-05
-1.23719e-10
0.0168374
-0.000106482
-3.09838e-10
0.0166017
0.000285746
-7.23962e-10
0.0167017
5.0609e-05
-2.7549e-09
0.00126068
-4.54816e-09
0.0170202
0.0168001
-8.72257e-14
-2.11602e-15
0.0168001
1.25005e-12
-7.77896e-15
0.0168001
4.431e-13
-1.64795e-14
0.0168001
9.39238e-12
-2.25746e-14
0.0168001
4.73267e-12
-3.52924e-14
0.0168001
5.42528e-11
-4.108e-14
0.0168001
2.61105e-11
-5.70213e-14
0.0168001
3.006e-10
-6.31836e-14
0.0168001
1.18816e-10
-8.25363e-14
0.0168001
1.65993e-09
-9.30048e-14
0.0168001
4.50386e-10
-1.22763e-13
0.0168
9.22929e-09
-1.59853e-13
0.0168001
9.8812e-10
-2.42918e-13
0.0168
5.30587e-08
-4.29867e-13
0.0168002
-1.30339e-08
-8.56887e-13
0.0167996
3.54826e-07
-1.64145e-12
0.0168012
-3.18486e-07
-4.10516e-12
0.0167959
2.65241e-06
-8.41037e-12
0.0168081
-3.32378e-06
-1.87189e-11
0.0167645
1.56721e-05
-5.64669e-11
0.01685
-2.21511e-05
-1.20965e-10
0.0166021
8.60065e-05
-3.33789e-10
0.0169514
-3.64043e-05
-8.90815e-10
0.0163623
0.000353998
-2.4147e-09
0.0010382
-3.89614e-09
0.0160903
0.0168001
2.63424e-13
-1.58615e-15
0.0168001
-2.45704e-14
-9.07975e-15
0.0168001
3.29868e-12
-1.40942e-14
0.0168001
9.96121e-13
-2.58314e-14
0.0168001
1.96367e-11
-3.11428e-14
0.0168001
5.27985e-12
-4.60659e-14
0.0168001
1.03938e-10
-5.16455e-14
0.0168001
1.11412e-11
-6.94112e-14
0.0168001
5.30716e-10
-7.68208e-14
0.0168001
-7.93108e-11
-9.95177e-14
0.0168001
2.64783e-09
-1.18654e-13
0.0168001
-1.36768e-09
-1.63635e-13
0.0168
1.30075e-08
-2.49595e-13
0.0168
-1.41623e-08
-4.17943e-13
0.0167998
7.28555e-08
-8.45677e-13
0.0168001
-1.63188e-07
-1.72587e-12
0.0167984
5.75638e-07
-3.62488e-12
0.0168015
-1.6972e-06
-7.86207e-12
0.0167895
4.60833e-06
-1.91747e-11
0.0168106
-1.10308e-05
-3.47739e-11
0.0167427
2.78217e-05
-1.08695e-10
0.0168534
-5.82093e-05
-2.76337e-10
0.0166629
0.000101543
-5.77095e-10
0.0168468
-5.42831e-05
-2.19979e-09
0.000385868
-3.0659e-09
0.0170561
0.0168001
-4.057e-13
-2.10968e-15
0.0168001
9.59468e-13
-7.87594e-15
0.0168001
-2.96768e-12
-1.65756e-14
0.0168001
5.07883e-12
-2.2743e-14
0.0168001
-1.82374e-11
-3.54855e-14
0.0168001
2.30058e-11
-4.13622e-14
0.0168001
-1.20268e-10
-5.7385e-14
0.0168001
9.39042e-11
-6.38759e-14
0.0168001
-8.03609e-10
-8.36835e-14
0.0168001
3.01437e-10
-9.58508e-14
0.0168001
-5.28617e-09
-1.28185e-13
0.0168
7.74767e-10
-1.74213e-13
0.0168001
-3.39068e-08
-2.71492e-13
0.0168
4.43015e-09
-4.96416e-13
0.0168002
-2.18132e-07
-1.0259e-12
0.0167995
8.67981e-08
-1.83386e-12
0.0168007
-1.42945e-06
-5.06206e-12
0.0167951
1.80475e-06
-8.36313e-12
0.0168059
-9.32774e-06
-2.1208e-11
0.0167618
2.15821e-05
-5.26514e-11
0.0168413
-6.19928e-05
-1.12869e-10
0.0166012
0.000136707
-2.64678e-10
0.0169078
-0.000180931
-6.879e-10
0.0163958
0.000280603
-1.69214e-09
0.000356198
-2.01489e-09
0.0160492
0.0168001
4.90818e-14
-1.56339e-15
0.0168001
1.74961e-13
-9.19942e-15
0.0168001
5.87812e-13
-1.41304e-14
0.0168001
1.07335e-12
-2.59836e-14
0.0168001
2.22681e-12
-3.13105e-14
0.0168001
7.92241e-13
-4.63165e-14
0.0168001
-1.82188e-12
-5.20178e-14
0.0168001
-2.38289e-11
-6.99437e-14
0.0168001
-7.65645e-11
-7.77128e-14
0.0168001
-2.86495e-10
-1.00932e-13
0.0168
-8.04487e-10
-1.21121e-13
0.0168
-2.44916e-09
-1.66335e-13
0.0168
-6.41012e-09
-2.54647e-13
0.0168
-1.65543e-08
-4.14821e-13
0.0167996
-4.62045e-08
-8.551e-13
0.0167996
-8.48158e-08
-1.59729e-12
0.0167977
-2.97779e-07
-3.77328e-12
0.0167989
-2.95921e-07
-7.32677e-12
0.016787
-1.35119e-06
-1.85076e-11
0.0168054
-1.53429e-06
-3.37007e-11
0.016733
-5.55249e-06
-9.52037e-11
0.0168578
-9.67835e-06
-2.34143e-10
0.0166558
-2.12101e-05
-4.36751e-10
0.0168542
-6.96731e-05
-1.53129e-09
-7.31677e-05
-1.5404e-09
0.0169337
0.0168001
5.86746e-13
-1.62214e-15
0.0168001
-1.39697e-12
-9.19761e-15
0.0168001
4.14542e-12
-1.42615e-14
0.0168001
-8.28624e-12
-2.61024e-14
0.0168001
2.22546e-11
-3.14895e-14
0.0168001
-5.06817e-11
-4.6513e-14
0.0168001
1.16933e-10
-5.23419e-14
0.0168001
-3.24026e-10
-7.04614e-14
0.0168001
6.16715e-10
-7.88327e-14
0.0168001
-2.06782e-09
-1.03077e-13
0.0168
3.2788e-09
-1.25619e-13
0.0168001
-1.30788e-08
-1.74999e-13
0.0168
1.77844e-08
-2.72308e-13
0.0168
-8.2645e-08
-4.48928e-13
0.0167997
1.00829e-07
-9.22456e-13
0.0168
-5.38136e-07
-1.76626e-12
0.0167981
7.34711e-07
-3.80824e-12
0.0168007
-4.12983e-06
-9.10204e-12
0.016788
7.84871e-06
-1.5972e-11
0.0168169
-3.5345e-05
-3.54634e-11
0.0167297
6.83363e-05
-8.40094e-11
0.0169174
-0.000217621
-2.05405e-10
0.0166576
0.000200562
-3.69547e-10
0.0169295
-0.000462261
-1.22021e-09
-0.000320418
-1.16605e-09
0.0168107
0.0168001
9.6076e-14
-2.12196e-15
0.0168001
-6.06899e-13
-7.95815e-15
0.0168001
-4.33283e-14
-1.6719e-14
0.0168001
-4.54913e-12
-2.29271e-14
0.0168001
-2.02917e-12
-3.5789e-14
0.0168001
-2.94561e-11
-4.17773e-14
0.0168001
-2.08388e-11
-5.80261e-14
0.0168001
-1.90636e-10
-6.49108e-14
0.0168001
-1.8386e-10
-8.53515e-14
0.0168001
-1.23208e-09
-9.89098e-14
0.0168001
-1.41783e-09
-1.32139e-13
0.0168
-7.83874e-09
-1.84425e-13
0.0168
-1.00234e-08
-2.84489e-13
0.0167999
-4.82338e-08
-5.4221e-13
0.0168
-6.32697e-08
-1.01741e-12
0.0167993
-2.75611e-07
-2.15979e-12
0.0168
-3.54518e-07
-5.02222e-12
0.0167956
-1.44673e-06
-7.60598e-12
0.0168008
-1.03603e-06
-2.46676e-11
0.0167683
-8.27783e-06
-2.52723e-11
0.0168155
6.05315e-06
-8.68944e-11
0.0166284
-5.06765e-05
-1.44438e-10
0.0167784
2.02699e-05
-3.93473e-10
0.0164594
-0.000148107
-1.03558e-09
-0.000232773
-8.67671e-10
0.0160747
0.0168001
-2.12902e-15
0.0168001
-7.89938e-15
0.0168001
-1.66593e-14
0.0168001
-2.28669e-14
0.0168001
-3.56907e-14
0.0168001
-4.17315e-14
0.0168001
-5.79246e-14
0.0168001
-6.4933e-14
0.0168001
-8.54811e-14
0.0168001
-9.91447e-14
0.0168
-1.3282e-13
0.0168
-1.80143e-13
0.0168
-2.72053e-13
0.0167999
-4.75119e-13
0.0167997
-8.30911e-13
0.0167991
-1.72987e-12
0.0167984
-3.2248e-12
0.0167956
-7.29576e-12
0.0167928
-1.3301e-11
0.0167791
-3.24376e-11
0.0167773
-5.93031e-11
0.0167121
-1.4491e-10
0.0166909
-3.31612e-10
0.016566
-9.26591e-10
-6.50428e-10
0.0160331
0.0168001
1.05811e-09
1.82789e-16
0.0168001
5.75484e-09
1.36477e-16
0.0168001
1.98961e-08
-1.28912e-16
0.0168001
5.54822e-08
-3.71111e-16
0.0168002
1.41041e-07
-7.67013e-16
0.0168001
3.52333e-07
-2.1344e-15
0.0168008
8.43773e-07
-4.15741e-15
0.0168
2.10472e-06
-1.30594e-14
0.0168047
4.88832e-06
-1.97423e-14
0.0167977
1.31011e-05
-9.62542e-14
0.0168351
3.04103e-05
-1.05301e-13
0.0167784
8.66149e-05
-6.41813e-13
0.0170226
0.000236704
-1.445e-12
0.0168036
0.00084021
-3.28184e-12
0.0178047
0.00274755
-1.36339e-11
0.0175526
0.0126441
-2.19421e-11
0.0167824
0.013428
-3.8525e-12
0.0154409
0.0131342
-2.67085e-12
0.014404
0.0133598
-2.63132e-12
0.0134365
0.0141875
-2.65635e-12
0.0125727
0.0155016
-2.59418e-12
0.0116279
0.017211
-2.48996e-12
0.0107944
0.0193532
-2.43389e-12
0.0107822
0.0218524
-2.55613e-12
0.0234331
-3.13286e-12
0.0162968
0.0168001
8.47292e-10
1.82608e-16
0.0168001
6.56503e-09
1.25546e-16
0.0168001
2.00105e-08
-1.37783e-16
0.0168001
6.05044e-08
-4.0532e-16
0.0168
1.43162e-07
-8.42577e-16
0.0168
3.82251e-07
-2.37777e-15
0.0168
8.62292e-07
-4.84971e-15
0.0167998
2.23718e-06
-1.37128e-14
0.0167996
5.10988e-06
-2.80858e-14
0.0167997
1.28129e-05
-8.02707e-14
0.0167994
3.07195e-05
-1.66067e-13
0.0168051
8.00483e-05
-4.79267e-13
0.0168226
0.000218721
-1.26574e-12
0.0169198
0.000739998
-3.49705e-12
0.0173336
0.00232688
-1.06834e-11
0.0177428
0.0122159
-2.39468e-11
0.016983
0.0141852
-2.4287e-12
0.0160478
0.0140678
-1.73938e-12
0.0152113
0.0141946
-2.21891e-12
0.0144022
0.0149954
-2.56636e-12
0.0137311
0.0161719
-2.55982e-12
0.0132258
0.0177156
-2.52412e-12
0.0130622
0.0195159
-2.51537e-12
0.0139092
0.0210045
-2.84008e-12
0.0214732
-3.4449e-12
0.0158681
0.0168001
7.6871e-10
1.81953e-16
0.0168001
5.96384e-09
1.35408e-16
0.0168001
1.83567e-08
-1.28885e-16
0.0168001
5.52798e-08
-3.7991e-16
0.0168001
1.30944e-07
-7.93329e-16
0.0168001
3.47511e-07
-2.23846e-15
0.0168002
7.8158e-07
-4.60822e-15
0.0168004
2.03807e-06
-1.28347e-14
0.016801
4.49894e-06
-2.73004e-14
0.0168015
1.217e-05
-7.28286e-14
0.0168061
2.61121e-05
-1.56288e-13
0.0168051
8.01948e-05
-4.6706e-13
0.0168368
0.000186673
-1.1268e-12
0.0168599
0.000714115
-2.92728e-12
0.0170885
0.00209224
-9.75695e-12
0.0179898
0.0112948
-2.4991e-11
0.0173945
0.0147792
-1.36296e-12
0.0166557
0.0148053
-1.29159e-12
0.0159693
0.0148795
-1.74178e-12
0.0153689
0.015594
-2.41821e-12
0.0148629
0.0166764
-2.48691e-12
0.0146585
0.017919
-2.54158e-12
0.0149844
0.0191894
-2.63199e-12
0.0159234
0.0200646
-3.02277e-12
0.0201919
-4.1477e-12
0.0172038
0.0168001
6.15758e-10
1.80707e-16
0.0168001
5.35027e-09
1.57715e-16
0.0168001
1.64036e-08
-1.06421e-16
0.0168001
4.91281e-08
-3.11091e-16
0.0168001
1.16279e-07
-6.41904e-16
0.0168001
3.05498e-07
-1.80791e-15
0.0168002
6.83224e-07
-3.62987e-15
0.0168004
1.79545e-06
-1.05707e-14
0.0168012
3.73265e-06
-1.96756e-14
0.0168019
1.13906e-05
-6.73205e-14
0.0168084
1.95364e-05
-1.10216e-13
0.0168059
8.19615e-05
-4.42121e-13
0.0168434
0.000148821
-8.0862e-13
0.0168601
0.000694831
-3.44467e-12
0.0171211
0.00182714
-8.69429e-12
0.0187
0.00969525
-2.54313e-11
0.0180831
0.015396
-9.90556e-13
0.0172279
0.0156602
-7.55256e-13
0.016678
0.0154283
-1.28516e-12
0.0162968
0.0159741
-2.27592e-12
0.0160327
0.0169389
-2.47247e-12
0.0160079
0.0179426
-2.5242e-12
0.0163524
0.018844
-2.67627e-12
0.0171398
0.0192763
-3.13557e-12
0.0191645
-3.61318e-12
0.0181661
0.0168001
1.79073e-10
1.79739e-16
0.0168001
6.98438e-09
1.64004e-16
0.0168001
1.08341e-08
-9.84506e-17
0.0168001
6.0231e-08
-2.91042e-16
0.0168001
8.08403e-08
-6.03483e-16
0.0168
3.75281e-07
-1.72096e-15
0.0168002
4.86224e-07
-3.49569e-15
0.0167998
2.22077e-06
-1.01122e-14
0.0168008
2.71506e-06
-2.01216e-14
0.0167983
1.37202e-05
-6.21456e-14
0.0168041
1.36582e-05
-1.15921e-13
0.0167905
9.50133e-05
-4.3714e-13
0.0168544
8.45245e-05
-7.40035e-13
0.0168445
0.000701981
-3.31481e-12
0.0173426
0.00132601
-8.21726e-12
0.0204818
0.00653225
-2.67087e-11
0.019247
0.0166309
-2.83842e-12
0.018341
0.0165658
-1.63804e-12
0.0175327
0.0162365
-9.8835e-13
0.0171442
0.0163613
-2.0227e-12
0.0170482
0.017034
-2.34418e-12
0.0171647
0.017825
-2.44215e-12
0.0174837
0.0185243
-2.6407e-12
0.0180507
0.0187086
-2.90898e-12
0.0183539
-3.28403e-12
0.0188606
0.0168001
5.56818e-10
1.64058e-16
0.0168001
3.72438e-09
1.77935e-16
0.0168001
1.3157e-08
-7.78101e-17
0.0168001
3.51986e-08
-1.6822e-16
0.0168001
9.38781e-08
-4.68247e-16
0.0168002
2.21423e-07
-9.53292e-16
0.0168001
5.60352e-07
-2.6554e-15
0.0168011
1.28885e-06
-5.17044e-15
0.0168005
3.28331e-06
-1.62435e-14
0.0168068
7.40717e-06
-2.5144e-14
0.0168001
2.01209e-05
-1.1829e-13
0.01685
4.51477e-05
-1.3873e-13
0.016802
0.000131424
-7.54968e-13
0.0171538
0.000348983
-1.85816e-12
0.0172894
0.00118787
-3.57593e-12
0.0198366
0.00397081
-1.44678e-11
0.0203622
0.0160954
-1.26856e-11
0.0196044
0.0173221
-3.8827e-12
0.0185417
0.0172979
-3.02557e-12
0.0180339
0.0168685
-1.83806e-12
0.0178977
0.0171691
-2.18834e-12
0.0180562
0.0176652
-2.42334e-12
0.018433
0.0181465
-2.56894e-12
0.0188624
0.0182782
-2.94408e-12
0.0178128
-3.03611e-12
0.0194026
0.0168001
6.58232e-10
1.64982e-16
0.0168001
3.42854e-09
1.75803e-16
0.0168001
1.2776e-08
-7.51801e-17
0.0168001
3.27037e-08
-1.6257e-16
0.0168001
9.00476e-08
-4.61444e-16
0.0168001
2.0718e-07
-9.46863e-16
0.0168001
5.37967e-07
-2.66757e-15
0.0168002
1.20906e-06
-5.42701e-15
0.0168003
3.08959e-06
-1.5447e-14
0.0168008
6.96384e-06
-3.128e-14
0.0168029
1.78074e-05
-9.18279e-14
0.0168083
3.97065e-05
-1.82621e-13
0.0168249
0.000113889
-5.61769e-13
0.0169008
0.000272525
-1.35358e-12
0.0171071
0.000978094
-3.9649e-12
0.0181006
0.00296867
-1.14602e-11
0.0202249
0.0139483
-2.65678e-11
0.0199675
0.0175755
-4.68911e-12
0.0194471
0.0178163
-3.36006e-12
0.0189006
0.0174149
-1.49237e-12
0.0186861
0.0173824
-2.03406e-12
0.0187445
0.0176055
-2.38672e-12
0.0190957
0.017794
-2.57184e-12
0.0195389
0.0178345
-2.74854e-12
0.017427
-3.40185e-12
0.0199228
0.0168001
8.05476e-10
1.6964e-16
0.0168001
2.00004e-09
1.66929e-16
0.0168001
1.30195e-08
-5.85444e-17
0.0168001
2.10839e-08
-1.26419e-16
0.0168001
9.02599e-08
-3.55673e-16
0.0168001
1.35459e-07
-7.25178e-16
0.0168001
5.39435e-07
-2.04076e-15
0.0168006
7.77168e-07
-4.06704e-15
0.0168004
3.22769e-06
-1.21293e-14
0.0168033
4.01112e-06
-2.21238e-14
0.0168003
2.07546e-05
-7.93482e-14
0.0168211
1.87799e-05
-1.27481e-13
0.0167933
0.000140904
-5.23781e-13
0.0169323
0.00013298
-9.72821e-13
0.0168745
0.00103285
-4.03339e-12
0.0176027
0.00223575
-1.00273e-11
0.0203539
0.0111739
-2.69499e-11
0.0203861
0.017543
-1.68814e-12
0.0200446
0.0181565
-1.13439e-12
0.019609
0.0178507
-6.66076e-13
0.0194639
0.017528
-1.66304e-12
0.0194645
0.0176044
-2.04657e-12
0.0196321
0.0176253
-2.38732e-12
0.0199999
0.0174651
-2.7899e-12
0.0170717
-2.9997e-12
0.0203549
0.0168001
3.15163e-10
2.17942e-16
0.0168001
2.18646e-09
1.20751e-16
0.0168001
6.96513e-09
-3.90499e-17
0.0168001
2.04817e-08
-1.10704e-16
0.0168001
4.93807e-08
-2.28522e-16
0.0168001
1.27533e-07
-6.28601e-16
0.0168004
2.90588e-07
-1.2171e-15
0.0168004
7.47462e-07
-3.88908e-15
0.016802
1.61408e-06
-5.38552e-15
0.0168013
4.66532e-06
-2.97744e-14
0.0168131
9.00232e-06
-2.56242e-14
0.0168012
3.02865e-05
-2.2279e-13
0.0168828
5.93701e-05
-2.73912e-13
0.0168126
0.000201345
-1.36634e-12
0.0173141
0.000529488
-3.18439e-12
0.0177089
0.00183608
-9.9098e-12
0.0221947
0.00666105
-2.96555e-11
0.0215717
0.0181634
-5.21027e-12
0.0212024
0.0185276
2.74836e-13
0.0205724
0.0184809
-1.24131e-13
0.0202077
0.0178931
-8.70121e-13
0.0201732
0.0176391
-1.68915e-12
0.0202391
0.0175595
-2.14021e-12
0.0204252
0.0172778
-2.79831e-12
0.016806
-3.24471e-12
0.0206893
0.0168001
1.11012e-10
2.38049e-16
0.0168001
2.47574e-09
-1.65705e-17
0.0168001
4.629e-09
-4.01087e-17
0.0168001
2.16148e-08
-1.16553e-16
0.0168001
3.41089e-08
-2.41901e-16
0.0168001
1.34463e-07
-6.79548e-16
0.0168002
2.04972e-07
-1.3912e-15
0.0168001
7.88213e-07
-3.93412e-15
0.0168006
1.15097e-06
-8.05264e-15
0.0168005
4.73939e-06
-2.26724e-14
0.0168036
5.84301e-06
-4.84408e-14
0.0168031
3.05904e-05
-1.27405e-13
0.0168332
2.90237e-05
-2.98207e-13
0.0168269
0.000206481
-6.6235e-13
0.0171123
0.000242783
-2.21528e-12
0.0174034
0.00154045
-4.41741e-12
0.0200162
0.00403848
-1.2406e-11
0.0223614
0.0157998
-1.82002e-11
0.0220268
0.01886
-3.11076e-12
0.0214514
0.0190547
-2.15232e-12
0.0209324
0.0184117
-8.18486e-13
0.0207588
0.0178128
-1.48835e-12
0.0207984
0.0175187
-2.36313e-12
0.0208807
0.0171958
-2.93827e-12
0.0166679
-3.43951e-12
0.0210164
0.0168001
2.11114e-10
2.29277e-16
0.0168001
1.23631e-09
-1.10267e-17
0.0168001
4.51246e-09
-3.51908e-17
0.0168001
1.17972e-08
-7.59458e-17
0.0168001
3.18732e-08
-2.07628e-16
0.0168001
7.37896e-08
-4.23436e-16
0.0168001
1.88054e-07
-1.15856e-15
0.0168005
4.23351e-07
-2.34063e-15
0.0168005
1.10035e-06
-6.57235e-15
0.0168029
2.34005e-06
-1.28136e-14
0.0168018
6.8777e-06
-3.92559e-14
0.0168191
1.33311e-05
-6.93524e-14
0.0168036
4.39852e-05
-2.48658e-13
0.0169196
9.04062e-05
-4.27312e-13
0.0168475
0.000312722
-1.62064e-12
0.0175655
0.000820865
-3.52876e-12
0.0182028
0.00339243
-1.12699e-11
0.0218249
0.0121552
-2.47885e-11
0.0222328
0.0184503
-3.02897e-12
0.0220698
0.0192161
-2.04556e-12
0.0215608
0.018921
-8.87347e-13
0.0213212
0.0180502
-1.85599e-12
0.0212979
0.017541
-2.78022e-12
0.021347
0.0171448
-3.49434e-12
0.0166163
-4.15309e-12
0.0213961
0.0168001
2.75617e-10
2.37062e-16
0.0168001
7.15198e-10
-9.83321e-18
0.0168001
4.49151e-09
-3.11251e-17
0.0168001
7.4803e-09
-6.70571e-17
0.0168001
3.0984e-08
-1.83768e-16
0.0168001
4.77133e-08
-3.74186e-16
0.0168001
1.82812e-07
-1.03439e-15
0.0168002
2.74581e-07
-2.09659e-15
0.0168003
1.05075e-06
-5.9188e-15
0.0168011
1.52688e-06
-1.19212e-14
0.0168017
6.20015e-06
-3.50096e-14
0.0168068
8.1646e-06
-6.70272e-14
0.0168103
4.01636e-05
-2.24068e-13
0.0168543
4.62655e-05
-3.84494e-13
0.0168838
0.00028116
-1.49423e-12
0.0172431
0.00045972
-3.68004e-12
0.0184508
0.00217766
-9.75924e-12
0.0229557
0.00762344
-2.85997e-11
0.0231144
0.0182871
-6.46718e-12
0.0229802
0.0193518
-5.19122e-13
0.0225614
0.0193391
-6.89271e-13
0.0220141
0.0185984
-1.95657e-12
0.0218084
0.0177426
-3.16042e-12
0.0217782
0.0171743
-4.04576e-12
0.0166174
-5.05322e-12
0.0217729
0.0168001
1.20951e-10
2.45182e-16
0.0168001
8.75029e-10
-8.91672e-18
0.0168001
2.69393e-09
-2.17916e-17
0.0168001
8.16158e-09
-6.00462e-17
0.0168001
1.92337e-08
-1.23336e-16
0.0168001
5.14399e-08
-3.32755e-16
0.0168001
1.14969e-07
-6.70792e-16
0.0168001
3.00392e-07
-1.86103e-15
0.0168005
6.63285e-07
-3.75515e-15
0.0168003
1.7336e-06
-1.06416e-14
0.0168026
3.82585e-06
-2.14902e-14
0.0168006
1.00328e-05
-6.08174e-14
0.0168179
2.28567e-05
-1.28467e-13
0.0168045
5.91074e-05
-2.91737e-13
0.0169337
0.000151153
-1.0792e-12
0.016972
0.000418797
-1.55699e-12
0.0178648
0.00128546
-6.27019e-12
0.0207348
0.00474416
-1.03837e-11
0.0234142
0.0155907
-1.7496e-11
0.023449
0.0193158
-3.12438e-12
0.0231167
0.0196703
-2.75424e-12
0.02262
0.0190931
-2.58151e-12
0.0223993
0.0179617
-3.36992e-12
0.0222636
0.0173032
-4.85645e-12
0.0166738
-6.46281e-12
0.0222042
0.0168001
4.54877e-11
2.41748e-16
0.0168001
8.27808e-10
-6.76864e-18
0.0168001
1.67084e-09
-1.66323e-17
0.0168001
7.28554e-09
-4.4271e-17
0.0168001
1.22505e-08
-9.06512e-17
0.0168001
4.51238e-08
-2.36575e-16
0.0168001
7.33532e-08
-4.7638e-16
0.0168002
2.60822e-07
-1.28348e-15
0.0168004
4.19473e-07
-2.59351e-15
0.0168006
1.49207e-06
-7.1417e-15
0.0168021
2.36464e-06
-1.43793e-14
0.0168033
8.72867e-06
-4.04657e-14
0.0168131
1.29989e-05
-8.0187e-14
0.0168164
5.538e-05
-2.40125e-13
0.0168923
7.49667e-05
-4.77558e-13
0.0169267
0.000382403
-1.45674e-12
0.0174826
0.000727313
-3.87976e-12
0.0190187
0.00320264
-9.8795e-12
0.023379
0.0112048
-2.44454e-11
0.023809
0.0188795
-7.14871e-12
0.0238301
0.0196465
-5.86122e-12
0.0234846
0.0194365
-4.31761e-12
0.0229263
0.018519
-3.10946e-12
0.0227208
0.0175029
-5.73632e-12
0.0167792
-7.01508e-12
0.0226065
0.0168001
7.68166e-11
2.4626e-16
0.0168001
4.39432e-10
-4.72306e-18
0.0168001
1.63604e-09
-1.36753e-17
0.0168001
4.19125e-09
-2.93531e-17
0.0168001
1.15651e-08
-7.27161e-17
0.0168001
2.63405e-08
-1.45468e-16
0.0168001
6.85738e-08
-3.70778e-16
0.0168002
1.52205e-07
-7.43193e-16
0.0168002
3.9195e-07
-1.96934e-15
0.0168008
8.64142e-07
-3.97211e-15
0.016801
2.2314e-06
-1.07917e-14
0.0168048
4.91279e-06
-2.15383e-14
0.0168048
1.2855e-05
-6.17196e-14
0.0168313
2.878e-05
-1.1498e-13
0.0168286
7.70056e-05
-4.13016e-13
0.0170228
0.000187893
-5.58331e-13
0.0171886
0.000559065
-2.72351e-12
0.0187479
0.00163788
-5.80746e-12
0.0238757
0.00606752
-1.28003e-11
0.0248817
0.0178548
-1.77847e-11
0.024677
0.0198438
-7.4131e-12
0.0241635
0.0199449
-6.35759e-12
0.0235386
0.0191395
-5.6448e-12
0.0232131
0.017824
-6.142e-12
0.0169597
-8.23099e-12
0.0230261
0.0168001
8.3345e-11
2.47516e-16
0.0168001
2.51184e-10
-4.02341e-18
0.0168001
1.40758e-09
-1.13045e-17
0.0168001
2.57766e-09
-2.42658e-17
0.0168001
9.72889e-09
-5.83275e-17
0.0168001
1.64178e-08
-1.15773e-16
0.0168001
5.72307e-08
-2.9062e-16
0.0168001
9.49137e-08
-5.79084e-16
0.0168002
3.25629e-07
-1.53871e-15
0.0168005
5.35574e-07
-3.09568e-15
0.0168009
1.84627e-06
-8.52651e-15
0.0168028
2.99552e-06
-1.71483e-14
0.0168049
1.06639e-05
-4.86778e-14
0.0168171
1.64921e-05
-9.81487e-14
0.0168274
6.62108e-05
-2.87841e-13
0.0169192
9.56286e-05
-6.17136e-13
0.017025
0.000451022
-1.7434e-12
0.0177278
0.000931763
-5.28988e-12
0.0199896
0.00379785
-1.18967e-11
0.0244745
0.0133406
-2.99021e-11
0.0249296
0.0193791
-9.77183e-12
0.0249536
0.0199117
-8.83621e-12
0.0243493
0.0197378
-7.09447e-12
0.0237563
0.0184105
-6.4728e-12
0.0172692
-1.06332e-11
0.0234352
0.0168001
3.5394e-11
2.32264e-16
0.0168001
2.53691e-10
-3.67273e-18
0.0168001
7.86725e-10
-9.20725e-18
0.0168001
2.36491e-09
-2.19559e-17
0.0168001
5.59518e-09
-4.40372e-17
0.0168001
1.47809e-08
-1.04129e-16
0.0168001
3.31342e-08
-2.05199e-16
0.0168001
8.5122e-08
-5.2316e-16
0.0168002
1.8845e-07
-1.0495e-15
0.0168003
4.81657e-07
-2.82267e-15
0.0168011
1.06232e-06
-5.72271e-15
0.0168013
2.72597e-06
-1.58779e-14
0.016806
5.99078e-06
-3.16546e-14
0.0168065
1.57842e-05
-9.79408e-14
0.0168384
3.42094e-05
-1.49922e-13
0.0168339
9.9096e-05
-7.03666e-13
0.0170693
0.000215071
-9.57487e-13
0.0172351
0.000761753
-4.82887e-12
0.0189559
0.00207003
-1.08485e-11
0.0241967
0.00806782
-3.21563e-11
0.0253799
0.0181845
-1.4194e-11
0.0254654
0.0198201
-7.84203e-12
0.0251888
0.0200043
-8.46431e-12
0.0245113
0.0190805
-9.17006e-12
0.0177477
-1.47739e-11
0.0240182
0.0168001
1.58505e-11
2.29996e-16
0.0168001
2.21069e-10
-3.18061e-18
0.0168001
4.88078e-10
-8.04512e-18
0.0168001
1.96008e-09
-1.84094e-17
0.0168001
3.53795e-09
-3.66562e-17
0.0168001
1.21078e-08
-8.3282e-17
0.0168001
2.10449e-08
-1.61542e-16
0.0168001
6.9505e-08
-4.04094e-16
0.0168002
1.19763e-07
-7.96247e-16
0.0168002
3.93144e-07
-2.15788e-15
0.0168006
6.73783e-07
-4.2983e-15
0.0168011
2.22571e-06
-1.22256e-14
0.0168033
3.77611e-06
-2.43152e-14
0.0168062
1.28121e-05
-6.87486e-14
0.0168191
2.10965e-05
-1.65031e-13
0.0168398
7.77591e-05
-3.55129e-13
0.0169248
0.000128952
-1.18104e-12
0.0171581
0.000524686
-2.33483e-12
0.0180552
0.0011755
-6.4266e-12
0.0217343
0.00437258
-1.46278e-11
0.0253505
0.0145416
-2.60316e-11
0.02556
0.0196
-1.18469e-11
0.0256156
0.0199345
-1.22603e-11
0.0252039
0.0194772
-1.50685e-11
0.0182851
-2.26366e-11
0.0246367
0.0168001
2.5485e-11
2.48594e-16
0.0168001
9.77065e-11
-2.77827e-18
0.0168001
4.78162e-10
-7.00835e-18
0.0168001
9.68505e-10
-1.49163e-17
0.0168001
3.33312e-09
-3.14402e-17
0.0168001
6.13318e-09
-6.02384e-17
0.0168001
1.9641e-08
-1.35441e-16
0.0168001
3.54833e-08
-2.62421e-16
0.0168001
1.11709e-07
-6.56913e-16
0.0168003
2.01099e-07
-1.31143e-15
0.0168003
6.31362e-07
-3.49687e-15
0.0168014
1.13411e-06
-7.08527e-15
0.0168016
3.58286e-06
-1.94779e-14
0.016808
6.37429e-06
-3.88797e-14
0.0168079
2.09993e-05
-1.17907e-13
0.0168502
3.53107e-05
-1.87679e-13
0.0168434
0.000134461
-8.2235e-13
0.017143
0.000224236
-1.2029e-12
0.0173279
0.000985618
-5.40871e-12
0.0191816
0.00251246
-1.18994e-11
0.0249418
0.00874281
-3.21337e-11
0.0261302
0.0183906
-1.96288e-11
0.0260137
0.0200319
-1.88406e-11
0.0258153
0.0196448
-2.30822e-11
0.0187536
-3.55011e-11
0.0253013
0.0168001
1.18096e-11
2.27998e-16
0.0168001
8.40487e-11
-2.48943e-18
0.0168001
2.61199e-10
-6.3663e-18
0.0168001
7.82852e-10
-1.33289e-17
0.0168001
1.85533e-09
-2.59946e-17
0.0168001
4.87655e-09
-5.26626e-17
0.0168001
1.09508e-08
-9.90766e-17
0.0168001
2.79279e-08
-2.24992e-16
0.0168001
6.19818e-08
-4.35635e-16
0.0168002
1.56859e-07
-1.10984e-15
0.0168005
3.47076e-07
-2.20406e-15
0.0168007
8.77388e-07
-5.98485e-15
0.0168023
1.93968e-06
-1.19698e-14
0.0168037
4.95403e-06
-3.38587e-14
0.0168138
1.08378e-05
-6.64987e-14
0.0168194
2.92491e-05
-2.01905e-13
0.0168916
6.20381e-05
-3.85195e-13
0.0169262
0.000187598
-1.14359e-12
0.0174728
0.000436231
-3.09253e-12
0.0184534
0.00152494
-6.62093e-12
0.022749
0.00442591
-1.85302e-11
0.0263385
0.0147623
-3.60199e-11
0.0263498
0.0199789
-2.89324e-11
0.0260646
0.0198834
-3.88944e-11
0.0190552
-5.28884e-11
0.0256977
0.0168001
4.69117e-12
2.27581e-16
0.0168001
6.8643e-11
-2.30139e-18
0.0168001
1.5249e-10
-5.91144e-18
0.0168001
6.07854e-10
-1.19508e-17
0.0168001
1.10701e-09
-2.31672e-17
0.0168001
3.74402e-09
-4.45971e-17
0.0168001
6.57192e-09
-8.27145e-17
0.0168001
2.13975e-08
-1.79496e-16
0.0168001
3.72887e-08
-3.43689e-16
0.0168001
1.20294e-07
-8.54651e-16
0.0168003
2.09088e-07
-1.69739e-15
0.0168005
6.7457e-07
-4.54596e-15
0.0168012
1.16678e-06
-9.16653e-15
0.0168023
3.80244e-06
-2.54183e-14
0.0168066
6.46801e-06
-5.07181e-14
0.0168135
2.20826e-05
-1.49605e-13
0.0168398
3.53991e-05
-2.76633e-13
0.0168855
0.000140228
-1.022e-12
0.0170962
0.00022399
-1.57301e-12
0.0175976
0.00101655
-7.12282e-12
0.019359
0.00265055
-1.56661e-11
0.0252967
0.0087785
-4.33455e-11
0.026786
0.018437
-4.39623e-11
0.026717
0.01986
-7.08988e-11
0.0190461
-9.57418e-11
0.0265996
0.0168001
5.5337e-12
2.49043e-16
0.0168001
3.34819e-11
-2.28699e-18
0.0168001
1.22138e-10
-5.34817e-18
0.0168001
3.17784e-10
-1.14146e-17
0.0168001
8.61785e-10
-2.12682e-17
0.0168001
1.98298e-09
-3.93709e-17
0.0168001
5.062e-09
-7.68598e-17
0.0168001
1.13428e-08
-1.4221e-16
0.0168001
2.85407e-08
-3.24233e-16
0.0168001
6.3564e-08
-6.27584e-16
0.0168002
1.59376e-07
-1.62272e-15
0.0168005
3.54291e-07
-3.23961e-15
0.0168008
8.88505e-07
-8.88729e-15
0.0168026
1.97421e-06
-1.79175e-14
0.0168039
4.98772e-06
-5.04548e-14
0.0168149
1.10416e-05
-1.02213e-13
0.0168206
2.90009e-05
-2.95819e-13
0.0168965
6.36222e-05
-6.00605e-13
0.016936
0.000181207
-1.70647e-12
0.017501
0.000446643
-4.68566e-12
0.0186508
0.00148669
-1.08893e-11
0.0230109
0.00437949
-3.10781e-11
0.0269689
0.0144199
-6.59243e-11
0.0273995
0.0192519
-1.3176e-10
0.0187045
-1.48291e-10
0.0275517
0.0168001
3.92828e-12
2.49353e-16
0.0168001
2.14717e-11
-2.23617e-18
0.0168001
7.96566e-11
-5.19231e-18
0.0168001
2.04988e-10
-1.10758e-17
0.0168001
5.57975e-10
-2.03542e-17
0.0168001
1.27763e-09
-3.75219e-17
0.0168001
3.26236e-09
-7.20546e-17
0.0168001
7.27937e-09
-1.32573e-16
0.0168001
1.83033e-08
-2.99521e-16
0.0168001
4.05901e-08
-5.78662e-16
0.0168002
1.01637e-07
-1.49646e-15
0.0168003
2.24935e-07
-2.99376e-15
0.0168006
5.62774e-07
-8.24124e-15
0.0168013
1.24313e-06
-1.66758e-14
0.0168031
3.12276e-06
-4.73233e-14
0.0168071
6.86358e-06
-9.49759e-14
0.0168178
1.76993e-05
-2.84514e-13
0.0168425
3.81798e-05
-5.42518e-13
0.0169099
0.000110045
-1.93391e-12
0.0171182
0.000234488
-3.36944e-12
0.0177415
0.000845489
-1.4179e-11
0.0197816
0.00231404
-3.32707e-11
0.0258773
0.00819723
-1.00173e-10
0.0275053
0.0174376
-1.57237e-10
0.0175375
-1.83846e-10
0.0284524
0.0168001
2.54147e-12
2.49475e-16
0.0168001
1.36642e-11
-2.2404e-18
0.0168001
5.01735e-11
-5.16775e-18
0.0168001
1.29929e-10
-1.10385e-17
0.0168001
3.49823e-10
-2.0322e-17
0.0168001
8.06353e-10
-3.74278e-17
0.0168001
2.03475e-09
-7.21892e-17
0.0168001
4.568e-09
-1.32949e-16
0.0168001
1.13538e-08
-3.02347e-16
0.0168001
2.53194e-08
-5.84862e-16
0.0168001
6.27515e-08
-1.52328e-15
0.0168002
1.3963e-07
-3.0496e-15
0.0168004
3.46284e-07
-8.46088e-15
0.0168009
7.69521e-07
-1.71083e-14
0.0168019
1.91137e-06
-4.88943e-14
0.0168044
4.25661e-06
-9.79112e-14
0.0168109
1.05195e-05
-2.91961e-13
0.0168241
2.41074e-05
-5.6768e-13
0.0168715
5.88777e-05
-1.85392e-12
0.0169517
0.00014906
-3.54262e-12
0.0173772
0.000400801
-1.2724e-11
0.0184657
0.00119511
-3.094e-11
0.0224345
0.00413582
-9.27424e-11
0.026847
0.0127478
-2.23449e-10
0.0151408
-1.72627e-10
0.0290404
0.0168001
2.11543e-12
2.49418e-16
0.0168001
5.94353e-12
-2.23278e-18
0.0168001
3.553e-11
-5.2245e-18
0.0168001
6.06445e-11
-1.10699e-17
0.0168001
2.42538e-10
-2.03254e-17
0.0168001
3.77655e-10
-3.75447e-17
0.0168001
1.3962e-09
-7.09898e-17
0.0168001
2.11428e-09
-1.31006e-16
0.0168001
7.72144e-09
-2.85619e-16
0.0168001
1.15058e-08
-5.48496e-16
0.0168001
4.2219e-08
-1.39441e-15
0.0168002
6.18915e-08
-2.75665e-15
0.0168003
2.29889e-07
-7.89173e-15
0.0168007
3.29573e-07
-1.59929e-14
0.0168012
1.25251e-06
-4.91418e-14
0.0168036
1.73599e-06
-1.06032e-13
0.0168062
7.04165e-06
-3.02647e-13
0.0168204
8.63596e-06
-7.74223e-13
0.0168316
4.38774e-05
-2.25469e-12
0.0169244
4.35008e-05
-4.85698e-12
0.0170201
0.000289732
-1.26288e-11
0.0177484
0.000408699
-4.2238e-11
0.0198394
0.00197475
-1.10933e-10
0.0251544
0.00694954
-3.47932e-10
0.0119575
-1.45108e-10
0.0282495
0.0168001
4.82225e-13
2.29494e-16
0.0168001
6.345e-12
-2.18789e-18
0.0168001
1.24595e-11
-5.55738e-18
0.0168001
5.60571e-11
-1.09327e-17
0.0168001
8.87511e-11
-2.07896e-17
0.0168001
3.42478e-10
-3.79708e-17
0.0168001
5.14542e-10
-6.86673e-17
0.0168001
1.93061e-09
-1.40826e-16
0.0168001
2.83701e-09
-2.64311e-16
0.0168001
1.06857e-08
-6.36959e-16
0.0168001
1.54232e-08
-1.25207e-15
0.0168001
5.89647e-08
-3.33537e-15
0.0168002
8.31258e-08
-6.69085e-15
0.0168002
3.25882e-07
-1.86739e-14
0.0168009
4.3432e-07
-3.74885e-14
0.0168006
1.84724e-06
-1.08234e-13
0.0168052
2.07808e-06
-2.08204e-13
0.0168015
1.08013e-05
-6.71574e-13
0.0168344
9.49292e-06
-1.11937e-12
0.016806
6.29865e-05
-4.43399e-12
0.0170281
5.71466e-05
-8.09841e-12
0.0170001
0.000400217
-3.07886e-11
0.0182453
0.000659282
-8.1668e-11
0.0217155
0.00323766
-2.17095e-10
0.00803081
-2.87883e-10
0.0253315
0.0168001
7.92686e-13
2.49403e-16
0.0168001
1.25336e-12
-2.226e-18
0.0168001
1.18707e-11
-5.0517e-18
0.0168001
1.3482e-11
-1.07048e-17
0.0168001
7.94024e-11
-1.88016e-17
0.0168001
8.1033e-11
-3.38161e-17
0.0168001
4.43682e-10
-6.07069e-17
0.0168001
4.20135e-10
-1.07701e-16
0.0168001
2.35324e-09
-2.33338e-16
0.0168001
2.04832e-09
-4.3968e-16
0.0168001
1.22205e-08
-1.14875e-15
0.0168001
9.51342e-09
-2.29305e-15
0.0168001
6.30295e-08
-6.45687e-15
0.0168004
4.15581e-08
-1.30375e-14
0.0168004
3.40787e-07
-3.84453e-14
0.016802
1.20866e-07
-7.18919e-14
0.0168013
2.17442e-06
-2.51142e-13
0.0168116
-2.87143e-07
-4.11648e-13
0.0168015
1.61191e-05
-1.61398e-12
0.0168644
-5.31509e-06
-2.87097e-12
0.0167886
0.000114559
-1.09336e-11
0.0171291
2.00207e-05
-2.87351e-11
0.0172513
0.000540935
-8.49289e-11
0.0188454
0.00130484
-2.46749e-10
0.00541435
-3.56727e-10
0.0209931
0.0168001
2.55482e-13
2.30354e-16
0.0168001
1.8522e-12
-2.32595e-18
0.0168001
5.72254e-12
-5.91907e-18
0.0168001
1.69579e-11
-1.19e-17
0.0168001
4.02605e-11
-2.29275e-17
0.0168001
1.04297e-10
-4.29065e-17
0.0168001
2.35425e-10
-7.90544e-17
0.0168001
5.8628e-10
-1.62163e-16
0.0168001
1.31047e-09
-3.07825e-16
0.0168001
3.19848e-09
-7.0961e-16
0.0168001
7.13149e-09
-1.38614e-15
0.0168
1.71098e-08
-3.47479e-15
0.0168001
3.8004e-08
-6.82744e-15
0.0168
8.98066e-08
-1.82446e-14
0.0168001
1.99041e-07
-3.58458e-14
0.0167995
4.61679e-07
-1.01503e-13
0.0168003
1.049e-06
-1.95068e-13
0.0167962
2.41896e-06
-6.19288e-13
0.0168054
5.66806e-06
-1.05682e-12
0.0167779
1.37973e-05
-4.10798e-12
0.0168509
3.22143e-05
-7.85436e-12
0.0167279
0.000101418
-2.97286e-11
0.0169871
0.000244767
-7.94108e-11
0.0168819
0.0010793
-2.58058e-10
0.00409832
-3.97915e-10
0.0177397
0.0168001
-9.48741e-14
2.30584e-16
0.0168001
2.54359e-12
-2.29885e-18
0.0168001
1.73711e-12
-5.81996e-18
0.0168001
2.09518e-11
-1.17204e-17
0.0168001
1.35937e-11
-2.23117e-17
0.0168001
1.29068e-10
-4.28997e-17
0.0168001
8.22474e-11
-7.8315e-17
0.0168001
7.55155e-10
-1.75494e-16
0.0168001
4.79095e-10
-3.36681e-16
0.0168001
4.41912e-09
-8.84036e-16
0.0168001
2.82776e-09
-1.79631e-15
0.0168
2.62159e-08
-4.92898e-15
0.0168
1.69793e-08
-1.03415e-14
0.0167999
1.57044e-07
-2.7239e-14
0.0167999
1.00047e-07
-5.67727e-14
0.0167991
9.58348e-07
-1.38495e-13
0.0167994
4.81909e-07
-2.85959e-13
0.0167943
6.16e-06
-6.55135e-13
0.016797
-1.40061e-08
-1.82034e-12
0.0167634
4.0266e-05
-3.28409e-12
0.0167925
-1.34371e-05
-9.42485e-12
0.0166144
0.000237429
-2.72004e-11
0.0166962
0.000108015
-8.02577e-11
0.0162384
0.00123999
-2.68853e-10
0.00367113
-4.29981e-10
0.0161943
0.0168001
3.25805e-13
2.49397e-16
0.0168001
4.39748e-13
-2.33951e-18
0.0168001
5.10584e-12
-5.42525e-18
0.0168001
4.43611e-12
-1.14383e-17
0.0168001
3.46615e-11
-2.06761e-17
0.0168001
2.78905e-11
-3.7593e-17
0.0168001
2.02912e-10
-6.91043e-17
0.0168001
1.58397e-10
-1.24926e-16
0.0168001
1.15359e-09
-2.62187e-16
0.0168001
8.79034e-10
-4.96045e-16
0.0168001
6.55279e-09
-1.1737e-15
0.0168001
4.83628e-09
-2.27644e-15
0.0168
3.75268e-08
-5.74011e-15
0.0168002
2.55024e-08
-1.10202e-14
0.0168
2.29973e-07
-3.13859e-14
0.0168007
7.18525e-08
-4.28675e-14
0.0167991
1.64091e-06
-2.4253e-13
0.0168056
-5.51217e-07
-1.55383e-13
0.016791
1.10683e-05
-1.77803e-12
0.0168347
-5.25863e-06
-1.82929e-12
0.0167405
6.44842e-05
-1.02551e-11
0.0169411
-3.39564e-06
-2.75551e-11
0.0166678
0.00031747
-6.59311e-11
0.0170112
0.000561898
-2.82289e-10
0.0031602
-4.47591e-10
0.0170504
0.0168001
-2.40777e-13
2.31489e-16
0.0168001
1.22243e-12
-2.31748e-18
0.0168001
-9.87901e-13
-5.83775e-18
0.0168001
9.37806e-12
-1.15739e-17
0.0168001
-5.75922e-12
-2.19542e-17
0.0168001
5.53696e-11
-4.03662e-17
0.0168001
-3.88061e-11
-7.28542e-17
0.0168001
3.05184e-10
-1.50826e-16
0.0168001
-2.82511e-10
-2.8161e-16
0.0168001
1.64233e-09
-6.96913e-16
0.0168001
-2.18769e-09
-1.37071e-15
0.0168001
8.77285e-09
-3.83208e-15
0.0168001
-1.60069e-08
-7.88901e-15
0.0168
4.93112e-08
-2.24593e-14
0.0168003
-1.16019e-07
-5.18125e-14
0.0167997
3.33792e-07
-1.22056e-13
0.0168017
-8.57887e-07
-3.45463e-13
0.0167963
2.95284e-06
-6.81883e-13
0.0168111
-6.12951e-06
-1.77404e-12
0.0167652
2.89124e-05
-5.02884e-12
0.0168591
-4.15523e-05
-1.18549e-11
0.016607
0.000196156
-2.86581e-11
0.016944
-9.93905e-06
-9.87864e-11
0.0162694
0.000926686
-2.45048e-10
0.00275691
-4.44039e-10
0.0161676
0.0168001
1.1798e-13
2.49223e-16
0.0168001
6.78214e-13
-2.39372e-18
0.0168001
2.47902e-12
-5.554e-18
0.0168001
6.37656e-12
-1.1767e-17
0.0168001
1.73544e-11
-2.15883e-17
0.0168001
3.98016e-11
-3.96284e-17
0.0168001
1.02213e-10
-7.46041e-17
0.0168001
2.29127e-10
-1.36809e-16
0.0168001
5.77511e-10
-2.91379e-16
0.0168001
1.28879e-09
-5.57396e-16
0.0168001
3.19589e-09
-1.3265e-15
0.0168
7.0965e-09
-2.59645e-15
0.0168
1.72913e-08
-6.78526e-15
0.0168
3.78105e-08
-1.34252e-14
0.0167997
9.16593e-08
-3.91715e-14
0.0167997
1.94585e-07
-7.7783e-14
0.0167978
4.83002e-07
-2.53303e-13
0.016799
9.69952e-07
-4.7425e-13
0.0167861
2.64419e-06
-1.6942e-12
0.0168059
5.16032e-06
-3.03381e-12
0.0167302
1.56871e-05
-1.06437e-11
0.0168446
3.96231e-05
-3.0931e-11
0.0166478
0.000126205
-6.70426e-11
0.0168095
0.000442996
-2.8491e-10
0.00209862
-4.54016e-10
0.0169793
0.0168001
4.75487e-13
2.49234e-16
0.0168001
2.50816e-13
-2.38016e-18
0.0168001
6.26212e-12
-5.64886e-18
0.0168001
3.45646e-12
-1.18525e-17
0.0168001
4.25755e-11
-2.20186e-17
0.0168001
2.33393e-11
-4.02984e-17
0.0168001
2.55798e-10
-7.82845e-17
0.0168001
1.4002e-10
-1.43885e-16
0.0168001
1.50678e-09
-3.29189e-16
0.0168001
8.18962e-10
-6.4036e-16
0.0168
8.864e-09
-1.6492e-15
0.0168
4.6596e-09
-3.3335e-15
0.0168
5.20634e-08
-8.78365e-15
0.0168
2.33107e-08
-1.77364e-14
0.0167996
3.11163e-07
-4.68272e-14
0.0167996
7.36964e-08
-9.05684e-14
0.0167976
1.90295e-06
-2.68409e-13
0.0167984
-6.66441e-07
-4.46786e-13
0.0167856
1.16117e-05
-1.85909e-12
0.0168036
-1.60334e-05
-2.7914e-12
0.0167232
7.49986e-05
-1.1614e-11
0.0168374
-0.000106488
-2.99238e-11
0.0166019
0.000285689
-6.95568e-11
0.0167017
5.06631e-05
-2.68213e-10
0.00126059
-4.5196e-10
0.0170204
0.0168001
-3.91529e-14
2.32256e-16
0.0168001
1.06262e-12
-2.3412e-18
0.0168001
6.39126e-13
-5.9089e-18
0.0168001
8.85996e-12
-1.18517e-17
0.0168001
5.04876e-12
-2.2526e-17
0.0168001
5.33959e-11
-4.27116e-17
0.0168001
2.64755e-11
-7.7379e-17
0.0168001
2.9944e-10
-1.70579e-16
0.0168001
1.18983e-10
-3.22916e-16
0.0168001
1.65809e-09
-8.59399e-16
0.0168001
4.49028e-10
-1.72526e-15
0.0168
9.22372e-09
-4.94505e-15
0.0168001
9.76993e-10
-1.03806e-14
0.0168
5.303e-08
-2.76112e-14
0.0168002
-1.30964e-08
-6.45628e-14
0.0167996
3.54629e-07
-1.37772e-13
0.0168012
-3.18742e-07
-3.62165e-13
0.0167959
2.65143e-06
-7.70855e-13
0.0168081
-3.3249e-06
-1.72613e-12
0.0167644
1.56703e-05
-5.29816e-12
0.01685
-2.21528e-05
-1.13748e-11
0.0166021
8.60126e-05
-3.17094e-11
0.0169514
-3.63542e-05
-8.5122e-11
0.0163622
0.000354212
-2.33298e-10
0.00103855
-3.87133e-10
0.0160903
0.0168001
2.11624e-13
2.48987e-16
0.0168001
7.43132e-14
-2.48774e-18
0.0168001
2.96726e-12
-5.84707e-18
0.0168001
1.23008e-12
-1.23489e-17
0.0168001
1.89995e-11
-2.34052e-17
0.0168001
5.5964e-12
-4.30555e-17
0.0168001
1.03009e-10
-8.72291e-17
0.0168001
1.1373e-11
-1.61783e-16
0.0168001
5.29179e-10
-3.91682e-16
0.0168001
-8.00132e-11
-7.68715e-16
0.0168001
2.64333e-09
-2.11178e-15
0.0168001
-1.37354e-09
-4.3218e-15
0.0168
1.29868e-08
-1.20491e-14
0.0168
-1.41923e-08
-2.52789e-14
0.0167998
7.27354e-08
-6.47818e-14
0.0168001
-1.63344e-07
-1.43115e-13
0.0167984
5.75021e-07
-3.21272e-13
0.0168015
-1.69782e-06
-7.04353e-13
0.0167895
4.60655e-06
-1.79083e-12
0.0168106
-1.10353e-05
-3.22225e-12
0.0167428
2.78185e-05
-1.03308e-11
0.0168535
-5.82069e-05
-2.63686e-11
0.016663
0.000101583
-5.60239e-11
0.016847
-5.40631e-05
-2.14694e-10
0.000386434
-3.09929e-10
0.0170565
0.0168001
-2.81405e-13
2.32551e-16
0.0168001
6.61647e-13
-2.55635e-18
0.0168001
-2.49126e-12
-6.39933e-18
0.0168001
4.37534e-12
-1.32349e-17
0.0168001
-1.75049e-11
-2.54017e-17
0.0168001
2.19078e-11
-5.04578e-17
0.0168001
-1.19455e-10
-9.32507e-17
0.0168001
9.23458e-11
-2.13858e-16
0.0168001
-8.03194e-10
-4.10927e-16
0.0168001
2.98569e-10
-1.10069e-15
0.0168001
-5.28782e-09
-2.2097e-15
0.0168
7.71389e-10
-6.26319e-15
0.0168001
-3.39159e-08
-1.30341e-14
0.0168
4.4248e-09
-3.37973e-14
0.0168002
-2.1814e-07
-8.04904e-14
0.0167995
8.67718e-08
-1.54951e-13
0.0168007
-1.42938e-06
-4.52118e-13
0.0167951
1.80447e-06
-7.61965e-13
0.0168059
-9.32789e-06
-1.95782e-12
0.0167618
2.15854e-05
-4.94863e-12
0.0168413
-6.19895e-05
-1.06709e-11
0.0166012
0.000136728
-2.53321e-11
0.0169078
-0.000180812
-6.64438e-11
0.0163958
0.000280989
-1.65622e-10
0.000357215
-2.09541e-10
0.0160493
0.0168001
3.41453e-14
2.49087e-16
0.0168001
1.57889e-13
-2.70627e-18
0.0168001
5.2477e-13
-6.47303e-18
0.0168001
9.82341e-13
-1.3749e-17
0.0168001
2.08809e-12
-2.7028e-17
0.0168001
6.36873e-13
-5.06153e-17
0.0168001
-2.06975e-12
-1.03767e-16
0.0168001
-2.40428e-11
-1.94602e-16
0.0168001
-7.71703e-11
-4.54165e-16
0.0168001
-2.87956e-10
-8.89507e-16
0.0168
-8.07664e-10
-2.29857e-15
0.0168
-2.45602e-09
-4.64031e-15
0.0168
-6.42461e-09
-1.23038e-14
0.0168
-1.65864e-08
-2.49663e-14
0.0167996
-4.62621e-08
-6.51919e-14
0.0167996
-8.49795e-08
-1.30903e-13
0.0167977
-2.98034e-07
-3.3328e-13
0.0167989
-2.96801e-07
-6.54289e-13
0.016787
-1.35214e-06
-1.72383e-12
0.0168054
-1.5362e-06
-3.10607e-12
0.0167331
-5.55019e-06
-9.02547e-12
0.0168578
-9.65995e-06
-2.231e-11
0.016656
-2.1139e-05
-4.22132e-11
0.0168547
-6.93756e-05
-1.49761e-10
-7.21747e-05
-1.59704e-10
0.0169346
0.0168001
4.11406e-13
2.48409e-16
0.0168001
-1.03825e-12
-2.86382e-18
0.0168001
3.40435e-12
-7.03715e-18
0.0168001
-7.48866e-12
-1.49764e-17
0.0168001
2.10245e-11
-3.02281e-17
0.0168001
-4.95491e-11
-5.73619e-17
0.0168001
1.15291e-10
-1.21893e-16
0.0168001
-3.22887e-10
-2.33668e-16
0.0168001
6.144e-10
-5.49602e-16
0.0168001
-2.06815e-09
-1.08244e-15
0.0168
3.27391e-09
-2.70629e-15
0.0168001
-1.30882e-08
-5.42862e-15
0.0168
1.7766e-08
-1.38322e-14
0.0168
-8.27021e-08
-2.78531e-14
0.0167997
1.00737e-07
-7.02683e-14
0.0168
-5.38391e-07
-1.42517e-13
0.0167981
7.34125e-07
-3.34901e-13
0.0168007
-4.13013e-06
-7.52006e-13
0.016788
7.84573e-06
-1.55002e-12
0.0168169
-3.5345e-05
-3.10701e-12
0.0167297
6.83364e-05
-7.99426e-12
0.0169175
-0.000217599
-1.96917e-11
0.0166577
0.000200587
-3.54849e-11
0.0169301
-0.000462117
-1.22842e-10
-0.000320105
-1.24349e-10
0.0168121
0.0168001
5.71733e-14
2.3185e-16
0.0168001
-5.3443e-13
-3.03746e-18
0.0168001
-1.92109e-13
-7.74442e-18
0.0168001
-4.43197e-12
-1.64816e-17
0.0168001
-2.24592e-12
-3.28047e-17
0.0168001
-2.93058e-11
-6.65598e-17
0.0168001
-2.13597e-11
-1.2679e-16
0.0168001
-1.90529e-10
-2.78703e-16
0.0168001
-1.84555e-10
-5.37743e-16
0.0168001
-1.23245e-09
-1.32262e-15
0.0168001
-1.41971e-09
-2.6186e-15
0.0168
-7.84055e-09
-6.93592e-15
0.0168
-1.00282e-08
-1.41875e-14
0.0167999
-4.82307e-08
-3.73342e-14
0.0168
-6.32565e-08
-7.85116e-14
0.0167993
-2.75554e-07
-1.84518e-13
0.0168
-3.54157e-07
-4.45437e-13
0.0167956
-1.44665e-06
-7.01037e-13
0.0168008
-1.03379e-06
-2.31471e-12
0.0167683
-8.27866e-06
-2.42814e-12
0.0168156
6.05907e-06
-8.64443e-12
0.0166285
-5.06697e-05
-1.44515e-11
0.0167783
2.03018e-05
-3.99049e-11
0.0164596
-0.000148014
-1.03579e-10
-0.000232524
-9.83922e-11
0.0160754
0.0168001
2.31453e-16
0.0168001
-3.0544e-18
0.0168001
-7.79948e-18
0.0168001
-1.67111e-17
0.0168001
-3.32376e-17
0.0168001
-6.86486e-17
0.0168001
-1.31244e-16
0.0168001
-2.92792e-16
0.0168001
-5.70962e-16
0.0168001
-1.37076e-15
0.0168
-2.72738e-15
0.0168
-6.6632e-15
0.0168
-1.33075e-14
0.0167999
-3.188e-14
0.0167997
-6.30152e-14
0.0167991
-1.48555e-13
0.0167984
-2.88543e-13
0.0167956
-6.85376e-13
0.0167928
-1.28827e-12
0.0167792
-3.10807e-12
0.0167774
-6.31357e-12
0.0167122
-1.43023e-11
0.0166909
-3.44097e-11
0.0165662
-9.33973e-11
-7.90053e-11
0.0160341
0.0168001
1.05811e-09
-3.12318e-17
0.0168001
5.75484e-09
-1.77537e-16
0.0168001
1.98961e-08
-3.88454e-16
0.0168001
5.54822e-08
-9.96842e-16
0.0168002
1.41041e-07
-1.94368e-15
0.0168001
3.52333e-07
-5.13191e-15
0.0168008
8.43773e-07
-9.83449e-15
0.0168
2.10472e-06
-3.0269e-14
0.0168047
4.88832e-06
-4.57647e-14
0.0167977
1.31011e-05
-2.19927e-13
0.0168351
3.04103e-05
-2.4128e-13
0.0167784
8.6615e-05
-1.45512e-12
0.0170226
0.000236704
-3.27523e-12
0.0168036
0.000840211
-7.41644e-12
0.0178047
0.00274756
-3.08402e-11
0.0175526
0.0126441
-4.97079e-11
0.0167824
0.013428
-7.44501e-12
0.0154409
0.0131342
-4.69456e-12
0.014404
0.0133598
-4.43208e-12
0.0134365
0.0141875
-4.3563e-12
0.0125727
0.0155016
-4.04125e-12
0.0116279
0.017211
-3.45235e-12
0.0107944
0.0193532
-2.81908e-12
0.0107822
0.0218524
-2.33242e-12
0.0234331
-2.10892e-12
0.0162968
0.0168001
8.47292e-10
-3.30682e-17
0.0168001
6.56504e-09
-1.89952e-16
0.0168001
2.00105e-08
-4.13567e-16
0.0168001
6.05045e-08
-1.08275e-15
0.0168
1.43162e-07
-2.12946e-15
0.0168
3.82251e-07
-5.71475e-15
0.0168
8.62292e-07
-1.14695e-14
0.0167998
2.23718e-06
-3.18936e-14
0.0167996
5.10988e-06
-6.51308e-14
0.0167997
1.28129e-05
-1.84133e-13
0.0167994
3.07195e-05
-3.81964e-13
0.0168051
8.00483e-05
-1.08691e-12
0.0168226
0.000218722
-2.89408e-12
0.0169198
0.000739998
-7.8979e-12
0.0173336
0.00232689
-2.4186e-11
0.0177428
0.0122159
-5.45203e-11
0.016983
0.0141852
-4.14845e-12
0.0160478
0.0140678
-2.53334e-12
0.0152113
0.0141946
-3.5545e-12
0.0144022
0.0149954
-4.1567e-12
0.0137311
0.0161719
-3.85415e-12
0.0132258
0.0177156
-3.28288e-12
0.0130622
0.0195159
-2.45307e-12
0.0139092
0.0210045
-2.49247e-12
0.0214732
-2.47834e-12
0.0158681
0.0168001
7.6871e-10
-3.10556e-17
0.0168001
5.96385e-09
-1.7936e-16
0.0168001
1.83567e-08
-3.9102e-16
0.0168001
5.52798e-08
-1.02405e-15
0.0168001
1.30944e-07
-2.01942e-15
0.0168001
3.47511e-07
-5.40954e-15
0.0168002
7.8158e-07
-1.09514e-14
0.0168004
2.03807e-06
-2.99799e-14
0.016801
4.49894e-06
-6.36175e-14
0.0168015
1.217e-05
-1.67597e-13
0.0168061
2.61121e-05
-3.6098e-13
0.0168051
8.01948e-05
-1.06435e-12
0.0168368
0.000186673
-2.5822e-12
0.0168599
0.000714115
-6.61217e-12
0.0170885
0.00209224
-2.21369e-11
0.0179898
0.0112948
-5.70456e-11
0.0173945
0.0147792
-1.6469e-12
0.0166557
0.0148053
-1.47186e-12
0.0159693
0.0148795
-2.47824e-12
0.0153689
0.015594
-3.80499e-12
0.0148629
0.0166764
-3.55532e-12
0.0146585
0.017919
-2.9834e-12
0.0149844
0.0191894
-2.54028e-12
0.0159234
0.0200646
-2.51767e-12
0.0201919
-2.61256e-12
0.0172038
0.0168001
6.15759e-10
-2.60497e-17
0.0168001
5.35027e-09
-1.51192e-16
0.0168001
1.64036e-08
-3.298e-16
0.0168001
4.91281e-08
-8.54379e-16
0.0168001
1.16279e-07
-1.65688e-15
0.0168001
3.05498e-07
-4.40099e-15
0.0168002
6.83224e-07
-8.66465e-15
0.0168004
1.79545e-06
-2.47429e-14
0.0168012
3.73265e-06
-4.58717e-14
0.0168019
1.13907e-05
-1.55368e-13
0.0168084
1.95364e-05
-2.54303e-13
0.0168059
8.19616e-05
-1.01039e-12
0.0168434
0.000148822
-1.85143e-12
0.0168601
0.000694831
-7.84039e-12
0.0171211
0.00182714
-1.97334e-11
0.0187
0.00969526
-5.80628e-11
0.0180831
0.015396
-7.18196e-13
0.0172279
0.0156602
-3.29529e-13
0.016678
0.0154283
-1.39295e-12
0.0162968
0.0159741
-3.39782e-12
0.0160327
0.0169389
-3.3845e-12
0.0160079
0.0179426
-2.82246e-12
0.0163524
0.018844
-2.46089e-12
0.0171398
0.0192763
-2.40728e-12
0.0191645
-3.02134e-12
0.0181661
0.0168001
1.79073e-10
-2.40117e-17
0.0168001
6.98438e-09
-1.41356e-16
0.0168001
1.08341e-08
-3.08397e-16
0.0168001
6.02311e-08
-8.0644e-16
0.0168001
8.08404e-08
-1.56842e-15
0.0168
3.75282e-07
-4.2099e-15
0.0168002
4.86225e-07
-8.37599e-15
0.0167998
2.22077e-06
-2.37664e-14
0.0168008
2.71507e-06
-4.70837e-14
0.0167983
1.37202e-05
-1.44038e-13
0.0168041
1.36582e-05
-2.6871e-13
0.0167905
9.50134e-05
-1.00402e-12
0.0168544
8.45246e-05
-1.70665e-12
0.0168445
0.000701982
-7.5859e-12
0.0173426
0.00132601
-1.87267e-11
0.0204818
0.00653226
-6.12178e-11
0.019247
0.0166309
-5.26533e-12
0.018341
0.0165658
-2.33298e-12
0.0175327
0.0162365
-4.69531e-13
0.0171442
0.0163613
-2.74676e-12
0.0170482
0.017034
-2.97687e-12
0.0171647
0.017825
-2.63561e-12
0.0174837
0.0185243
-2.2273e-12
0.0180507
0.0187086
-2.27621e-12
0.0183539
-2.72402e-12
0.0188606
0.0168001
5.56818e-10
-2.11275e-17
0.0168001
3.72438e-09
-8.62576e-17
0.0168001
1.3157e-08
-2.49674e-16
0.0168001
3.51987e-08
-4.93005e-16
0.0168001
9.38782e-08
-1.23799e-15
0.0168002
2.21423e-07
-2.3969e-15
0.0168001
5.60353e-07
-6.38857e-15
0.0168011
1.28885e-06
-1.22635e-14
0.0168005
3.28331e-06
-3.79888e-14
0.0168068
7.40717e-06
-5.83671e-14
0.0168001
2.01209e-05
-2.74551e-13
0.01685
4.51477e-05
-3.18064e-13
0.016802
0.000131424
-1.74453e-12
0.0171538
0.000348984
-4.27112e-12
0.0172894
0.00118787
-8.18082e-12
0.0198366
0.00397081
-3.31485e-11
0.0203622
0.0160954
-2.85565e-11
0.0196044
0.0173221
-7.54607e-12
0.0185417
0.0172979
-5.42761e-12
0.0180339
0.0168685
-2.34597e-12
0.0178977
0.0171691
-2.53789e-12
0.0180562
0.0176652
-2.61406e-12
0.018433
0.0181465
-2.20516e-12
0.0188624
0.0182782
-2.16999e-12
0.0178128
-2.56528e-12
0.0194026
0.0168001
6.58233e-10
-2.0411e-17
0.0168001
3.42855e-09
-8.31913e-17
0.0168001
1.2776e-08
-2.43669e-16
0.0168001
3.27037e-08
-4.80998e-16
0.0168001
9.00477e-08
-1.22984e-15
0.0168001
2.0718e-07
-2.39985e-15
0.0168001
5.37967e-07
-6.47112e-15
0.0168002
1.20906e-06
-1.29812e-14
0.0168003
3.08959e-06
-3.64398e-14
0.0168008
6.96384e-06
-7.35741e-14
0.0168029
1.78074e-05
-2.14245e-13
0.0168083
3.97066e-05
-4.26235e-13
0.0168249
0.000113889
-1.30034e-12
0.0169008
0.000272526
-3.14056e-12
0.0171071
0.000978094
-9.14196e-12
0.0181006
0.00296867
-2.63503e-11
0.0202249
0.0139483
-6.13819e-11
0.0199675
0.0175755
-9.4328e-12
0.0194471
0.0178163
-6.19194e-12
0.0189006
0.0174149
-1.47638e-12
0.0186861
0.0173824
-2.26853e-12
0.0187445
0.0176055
-2.64577e-12
0.0190957
0.017794
-2.52704e-12
0.0195389
0.0178345
-2.105e-12
0.017427
-2.9201e-12
0.0199228
0.0168001
8.05476e-10
-1.59454e-17
0.0168001
2.00004e-09
-6.60296e-17
0.0168001
1.30195e-08
-1.94569e-16
0.0168001
2.10839e-08
-3.838e-16
0.0168001
9.026e-08
-9.70508e-16
0.0168001
1.3546e-07
-1.86885e-15
0.0168001
5.39435e-07
-5.00403e-15
0.0168006
7.77169e-07
-9.80219e-15
0.0168004
3.22769e-06
-2.87727e-14
0.0168033
4.01112e-06
-5.22894e-14
0.0168003
2.07546e-05
-1.86096e-13
0.0168211
1.87799e-05
-2.98708e-13
0.0167933
0.000140904
-1.21803e-12
0.0169323
0.00013298
-2.26557e-12
0.0168745
0.00103285
-9.34401e-12
0.0176027
0.00223575
-2.31375e-11
0.0203539
0.0111739
-6.2413e-11
0.0203861
0.017543
-2.23836e-12
0.0200446
0.0181565
-6.6509e-13
0.019609
0.0178507
3.6852e-14
0.0194639
0.017528
-1.52148e-12
0.0194645
0.0176044
-2.15612e-12
0.0196321
0.0176253
-2.43262e-12
0.0199999
0.0174651
-3.06626e-12
0.0170717
-3.3195e-12
0.0203549
0.0168001
3.15163e-10
-9.55623e-18
0.0168001
2.18646e-09
-5.88434e-17
0.0168001
6.96514e-09
-1.32313e-16
0.0168001
2.04817e-08
-3.38934e-16
0.0168001
4.93808e-08
-6.44661e-16
0.0168001
1.27533e-07
-1.63128e-15
0.0168004
2.90588e-07
-3.03644e-15
0.0168004
7.47462e-07
-9.37639e-15
0.016802
1.61408e-06
-1.28261e-14
0.0168013
4.66532e-06
-7.05325e-14
0.0168131
9.00232e-06
-5.97889e-14
0.0168012
3.02866e-05
-5.24083e-13
0.0168828
5.93701e-05
-6.40302e-13
0.0168126
0.000201346
-3.18692e-12
0.0173141
0.000529489
-7.4216e-12
0.0177089
0.00183609
-2.30671e-11
0.0221947
0.00666107
-6.88328e-11
0.0215717
0.0181634
-1.07753e-11
0.0212024
0.0185276
2.344e-12
0.0205724
0.0184809
1.50939e-12
0.0202077
0.0178931
-2.84727e-13
0.0201732
0.0176391
-1.5557e-12
0.0202391
0.0175595
-2.3548e-12
0.0204252
0.0172778
-3.62595e-12
0.016806
-4.06409e-12
0.0206893
0.0168001
1.11012e-10
-9.55623e-18
0.0168001
2.47574e-09
-6.06823e-17
0.0168001
4.629e-09
-1.35414e-16
0.0168001
2.16149e-08
-3.56123e-16
0.0168001
3.41089e-08
-6.82531e-16
0.0168001
1.34463e-07
-1.76854e-15
0.0168002
2.04972e-07
-3.48748e-15
0.0168001
7.88214e-07
-9.57372e-15
0.0168006
1.15097e-06
-1.94203e-14
0.0168005
4.7394e-06
-5.4122e-14
0.0168036
5.84301e-06
-1.15488e-13
0.0168031
3.05904e-05
-3.01e-13
0.0168332
2.90237e-05
-7.06245e-13
0.0168269
0.000206481
-1.54768e-12
0.0171123
0.000242784
-5.2129e-12
0.0174034
0.00154045
-1.02781e-11
0.0200162
0.00403849
-2.87293e-11
0.0223614
0.0157998
-4.19669e-11
0.0220268
0.01886
-5.80908e-12
0.0214514
0.0190547
-3.41796e-12
0.0209324
0.0184117
-3.31066e-13
0.0207588
0.0178128
-1.42712e-12
0.0207984
0.0175187
-3.22386e-12
0.0208807
0.0171958
-4.20577e-12
0.0166679
-5.15991e-12
0.0210164
0.0168001
2.11114e-10
-9.23012e-18
0.0168001
1.23631e-09
-3.89872e-17
0.0168001
4.51246e-09
-1.18812e-16
0.0168001
1.17972e-08
-2.36658e-16
0.0168001
3.18732e-08
-5.93109e-16
0.0168001
7.37897e-08
-1.13178e-15
0.0168001
1.88054e-07
-2.93066e-15
0.0168005
4.23352e-07
-5.7755e-15
0.0168005
1.10035e-06
-1.59165e-14
0.0168029
2.34005e-06
-3.09098e-14
0.0168018
6.8777e-06
-9.3682e-14
0.0168191
1.33311e-05
-1.65739e-13
0.0168036
4.39852e-05
-5.88112e-13
0.0169196
9.04063e-05
-1.0119e-12
0.0168475
0.000312722
-3.80548e-12
0.0175655
0.000820866
-8.28339e-12
0.0182029
0.00339244
-2.64058e-11
0.0218249
0.0121552
-5.78583e-11
0.0222328
0.0184503
-5.76008e-12
0.0220698
0.0192161
-3.38469e-12
0.0215608
0.018921
-1.21546e-13
0.0213212
0.0180502
-2.64963e-12
0.0212979
0.017541
-4.64831e-12
0.021347
0.0171448
-6.07966e-12
0.0166163
-7.41538e-12
0.0213961
0.0168001
2.75617e-10
-7.91722e-18
0.0168001
7.15199e-10
-3.36272e-17
0.0168001
4.49152e-09
-1.04037e-16
0.0168001
7.48031e-09
-2.08102e-16
0.0168001
3.09841e-08
-5.27397e-16
0.0168001
4.77133e-08
-1.0061e-15
0.0168001
1.82812e-07
-2.6263e-15
0.0168002
2.74582e-07
-5.1858e-15
0.0168003
1.05075e-06
-1.43667e-14
0.0168011
1.52689e-06
-2.87599e-14
0.0168017
6.20016e-06
-8.38651e-14
0.0168068
8.16461e-06
-1.60111e-13
0.0168103
4.01637e-05
-5.33143e-13
0.0168543
4.62656e-05
-9.13082e-13
0.0168838
0.000281161
-3.53078e-12
0.0172431
0.000459722
-8.68994e-12
0.0184508
0.00217766
-2.30351e-11
0.0229557
0.00762346
-6.70913e-11
0.0231144
0.0182871
-1.42136e-11
0.0229802
0.0193518
7.53522e-14
0.0225614
0.0193391
-4.53259e-13
0.0220141
0.0185984
-3.22886e-12
0.0218084
0.0177426
-6.16287e-12
0.0217782
0.0171743
-8.1852e-12
0.0166174
-1.07425e-11
0.0217729
0.0168001
1.20951e-10
-4.51977e-18
0.0168001
8.75031e-10
-3.01755e-17
0.0168001
2.69394e-09
-6.91492e-17
0.0168001
8.16159e-09
-1.86739e-16
0.0168001
1.92337e-08
-3.57179e-16
0.0168001
5.144e-08
-9.02602e-16
0.0168001
1.14969e-07
-1.73198e-15
0.0168001
3.00392e-07
-4.63169e-15
0.0168005
6.63286e-07
-9.20353e-15
0.0168003
1.7336e-06
-2.58049e-14
0.0168026
3.82586e-06
-5.19397e-14
0.0168006
1.00328e-05
-1.46223e-13
0.0168179
2.28567e-05
-3.08409e-13
0.0168045
5.91074e-05
-6.94666e-13
0.0169337
0.000151153
-2.5846e-12
0.016972
0.000418798
-3.66729e-12
0.0178648
0.00128546
-1.48404e-11
0.0207348
0.00474416
-2.44096e-11
0.0234142
0.0155908
-4.09967e-11
0.023449
0.0193158
-6.43715e-12
0.0231167
0.0196703
-5.59301e-12
0.02262
0.0190931
-5.21667e-12
0.0223993
0.0179617
-7.5451e-12
0.0222636
0.0173032
-1.12691e-11
0.0166738
-1.59988e-11
0.0222042
0.0168001
4.54878e-11
-3.07981e-18
0.0168001
8.27809e-10
-2.1114e-17
0.0168001
1.67085e-09
-4.90839e-17
0.0168001
7.28555e-09
-1.34908e-16
0.0168001
1.22505e-08
-2.60463e-16
0.0168001
4.51238e-08
-6.49597e-16
0.0168001
7.33533e-08
-1.24066e-15
0.0168002
2.60822e-07
-3.21312e-15
0.0168004
4.19473e-07
-6.36421e-15
0.0168006
1.49207e-06
-1.73324e-14
0.0168021
2.36465e-06
-3.47452e-14
0.0168033
8.72869e-06
-9.76637e-14
0.0168131
1.29989e-05
-1.9324e-13
0.0168164
5.538e-05
-5.76272e-13
0.0168923
7.49669e-05
-1.15285e-12
0.0169267
0.000382404
-3.47595e-12
0.0174826
0.000727315
-9.3058e-12
0.0190187
0.00320265
-2.35759e-11
0.023379
0.0112048
-5.8276e-11
0.023809
0.0188795
-1.65981e-11
0.0238301
0.0196465
-1.35498e-11
0.0234846
0.0194365
-1.00548e-11
0.0229263
0.018519
-7.30905e-12
0.0227208
0.0175029
-1.47746e-11
0.0167792
-1.80254e-11
0.0226065
0.0168001
7.68167e-11
-2.72999e-18
0.0168001
4.39432e-10
-1.16137e-17
0.0168001
1.63604e-09
-3.87111e-17
0.0168001
4.19126e-09
-8.03936e-17
0.0168001
1.15651e-08
-2.09142e-16
0.0168001
2.63405e-08
-3.98017e-16
0.0168001
6.85739e-08
-9.84766e-16
0.0168002
1.52206e-07
-1.89872e-15
0.0168002
3.91951e-07
-4.92335e-15
0.0168008
8.64143e-07
-9.81549e-15
0.016801
2.2314e-06
-2.6505e-14
0.0168048
4.91279e-06
-5.27831e-14
0.0168048
1.2855e-05
-1.50595e-13
0.0168313
2.87801e-05
-2.80297e-13
0.0168286
7.70057e-05
-1.00468e-12
0.0170228
0.000187893
-1.34277e-12
0.0171886
0.000559066
-6.61834e-12
0.0187479
0.00163789
-1.39545e-11
0.0238757
0.00606753
-3.07504e-11
0.0248817
0.0178548
-4.29623e-11
0.024677
0.0198438
-1.7892e-11
0.0241635
0.0199449
-1.5611e-11
0.0235386
0.0191395
-1.48431e-11
0.0232131
0.017824
-1.64002e-11
0.0169597
-2.25362e-11
0.0230261
0.0168001
8.33451e-11
-1.95665e-18
0.0168001
2.51184e-10
-8.37885e-18
0.0168001
1.40758e-09
-2.88211e-17
0.0168001
2.57766e-09
-6.04553e-17
0.0168001
9.7289e-09
-1.62674e-16
0.0168001
1.64178e-08
-3.11317e-16
0.0168001
5.72308e-08
-7.78127e-16
0.0168001
9.49138e-08
-1.49129e-15
0.0168002
3.25629e-07
-3.89159e-15
0.0168005
5.35574e-07
-7.72815e-15
0.0168009
1.84627e-06
-2.11719e-14
0.0168028
2.99552e-06
-4.24447e-14
0.0168049
1.0664e-05
-1.2015e-13
0.0168171
1.64921e-05
-2.40577e-13
0.0168274
6.62108e-05
-7.11644e-13
0.0169192
9.56286e-05
-1.4964e-12
0.017025
0.000451023
-4.31434e-12
0.0177278
0.000931764
-1.28286e-11
0.0199896
0.00379785
-2.92112e-11
0.0244745
0.0133406
-7.31218e-11
0.0249296
0.0193791
-2.44455e-11
0.0249536
0.0199117
-2.25222e-11
0.0243493
0.0197378
-1.90005e-11
0.0237563
0.0184105
-1.88217e-11
0.0172692
-3.15033e-11
0.0234352
0.0168001
3.53941e-11
-9.86793e-19
0.0168001
2.53691e-10
-7.52419e-18
0.0168001
7.86726e-10
-1.77682e-17
0.0168001
2.36491e-09
-5.44566e-17
0.0168001
5.59518e-09
-1.09107e-16
0.0168001
1.47809e-08
-2.84546e-16
0.0168001
3.31342e-08
-5.41052e-16
0.0168001
8.51221e-08
-1.36954e-15
0.0168002
1.8845e-07
-2.67716e-15
0.0168003
4.81658e-07
-7.13554e-15
0.0168011
1.06233e-06
-1.43855e-14
0.0168013
2.72597e-06
-3.97725e-14
0.016806
5.99079e-06
-7.93559e-14
0.0168065
1.57842e-05
-2.43953e-13
0.0168384
3.42094e-05
-3.74654e-13
0.0168339
9.90962e-05
-1.74791e-12
0.0170693
0.000215072
-2.36914e-12
0.0172351
0.000761755
-1.19847e-11
0.0189559
0.00207003
-2.669e-11
0.0241967
0.00806785
-7.91923e-11
0.0253799
0.0181845
-3.62887e-11
0.0254654
0.0198201
-2.18511e-11
0.0251888
0.0200043
-2.40992e-11
0.0245113
0.0190805
-2.82888e-11
0.0177477
-4.70735e-11
0.0240182
0.0168001
1.58505e-11
-6.0817e-19
0.0168001
2.21069e-10
-5.30836e-18
0.0168001
4.88078e-10
-1.25327e-17
0.0168001
1.96008e-09
-4.0417e-17
0.0168001
3.53796e-09
-8.22113e-17
0.0168001
1.21078e-08
-2.21138e-16
0.0168001
2.10449e-08
-4.20053e-16
0.0168001
6.95051e-08
-1.06928e-15
0.0168002
1.19764e-07
-2.05306e-15
0.0168002
3.93144e-07
-5.53715e-15
0.0168006
6.73784e-07
-1.09616e-14
0.0168011
2.22572e-06
-3.11268e-14
0.0168033
3.77612e-06
-6.19616e-14
0.0168062
1.28121e-05
-1.74405e-13
0.0168191
2.10965e-05
-4.1818e-13
0.0168398
7.77592e-05
-8.98055e-13
0.0169248
0.000128952
-2.98168e-12
0.0171581
0.000524687
-5.88817e-12
0.0180553
0.0011755
-1.61548e-11
0.0217343
0.00437259
-3.6892e-11
0.0253505
0.0145416
-6.65723e-11
0.02556
0.0196
-3.39284e-11
0.0256156
0.0199345
-3.67091e-11
0.0252039
0.0194772
-4.80545e-11
0.0182851
-7.6351e-11
0.0246367
0.0168001
2.5485e-11
-6.24263e-19
0.0168001
9.77067e-11
-2.34713e-18
0.0168001
4.78162e-10
-1.0194e-17
0.0168001
9.68506e-10
-2.20144e-17
0.0168001
3.33312e-09
-6.90925e-17
0.0168001
6.13319e-09
-1.37624e-16
0.0168001
1.96411e-08
-3.58571e-16
0.0168001
3.54833e-08
-6.82308e-16
0.0168001
1.11709e-07
-1.73593e-15
0.0168003
2.01099e-07
-3.41169e-15
0.0168003
6.31363e-07
-9.11208e-15
0.0168014
1.13411e-06
-1.84116e-14
0.0168016
3.58287e-06
-5.06307e-14
0.016808
6.37429e-06
-1.01143e-13
0.0168079
2.09994e-05
-3.04941e-13
0.0168502
3.53107e-05
-4.90473e-13
0.0168434
0.000134461
-2.11004e-12
0.017143
0.000224236
-3.12699e-12
0.0173279
0.00098562
-1.38668e-11
0.0191816
0.00251247
-3.03691e-11
0.0249418
0.00874283
-8.23383e-11
0.0261302
0.0183906
-5.62179e-11
0.0260137
0.0200319
-5.91579e-11
0.0258153
0.0196448
-7.46301e-11
0.0187536
-1.18632e-10
0.0253013
0.0168001
1.18096e-11
-1.2282e-19
0.0168001
8.40488e-11
-2.13537e-18
0.0168001
2.61199e-10
-4.82216e-18
0.0168001
7.82853e-10
-1.9458e-17
0.0168001
1.85533e-09
-4.15207e-17
0.0168001
4.87656e-09
-1.23165e-16
0.0168001
1.09508e-08
-2.39955e-16
0.0168001
2.7928e-08
-6.08163e-16
0.0168001
6.19819e-08
-1.15943e-15
0.0168002
1.56859e-07
-2.99249e-15
0.0168005
3.47077e-07
-5.89765e-15
0.0168007
8.77389e-07
-1.60515e-14
0.0168023
1.93968e-06
-3.2048e-14
0.0168037
4.95404e-06
-9.06871e-14
0.0168138
1.08378e-05
-1.77003e-13
0.0168194
2.92491e-05
-5.41554e-13
0.0168916
6.20382e-05
-1.01508e-12
0.0169262
0.000187598
-3.07864e-12
0.0174728
0.000436232
-8.19166e-12
0.0184534
0.00152494
-1.77602e-11
0.022749
0.00442592
-4.99834e-11
0.0263385
0.0147623
-1.01359e-10
0.0263498
0.0199789
-9.19231e-11
0.0260645
0.0198834
-1.28073e-10
0.0190552
-1.75138e-10
0.0256977
0.0168001
4.6912e-12
9.5607e-29
0.0168001
6.8643e-11
-1.26293e-18
0.0168001
1.52491e-10
-2.79944e-18
0.0168001
6.07854e-10
-1.36694e-17
0.0168001
1.10701e-09
-2.98139e-17
0.0168001
3.74403e-09
-9.53175e-17
0.0168001
6.57192e-09
-1.88485e-16
0.0168001
2.13976e-08
-4.85975e-16
0.0168001
3.72888e-08
-9.24981e-16
0.0168001
1.20294e-07
-2.37299e-15
0.0168003
2.09088e-07
-4.68102e-15
0.0168005
6.74571e-07
-1.26366e-14
0.0168012
1.16678e-06
-2.54811e-14
0.0168023
3.80245e-06
-7.07367e-14
0.0168066
6.46802e-06
-1.4116e-13
0.0168135
2.20826e-05
-4.15537e-13
0.0168398
3.53991e-05
-7.65662e-13
0.0168855
0.000140228
-2.84866e-12
0.0170962
0.00022399
-4.281e-12
0.0175976
0.00101655
-1.99267e-11
0.019359
0.00265056
-4.33337e-11
0.0252967
0.00877853
-1.21937e-10
0.026786
0.018437
-1.39565e-10
0.026717
0.01986
-2.3691e-10
0.0190461
-3.2081e-10
0.0265996
0.0168001
5.53371e-12
-1.46537e-19
0.0168001
3.3482e-11
-1.96512e-19
0.0168001
1.22138e-10
-3.31105e-18
0.0168001
3.17785e-10
-7.22689e-18
0.0168001
8.61786e-10
-3.13309e-17
0.0168001
1.98298e-09
-6.61575e-17
0.0168001
5.06201e-09
-1.91452e-16
0.0168001
1.13428e-08
-3.6696e-16
0.0168001
2.85407e-08
-9.33801e-16
0.0168001
6.35641e-08
-1.79401e-15
0.0168002
1.59376e-07
-4.75122e-15
0.0168005
3.54291e-07
-9.47768e-15
0.0168008
8.88506e-07
-2.62074e-14
0.0168026
1.97421e-06
-5.28939e-14
0.0168039
4.98772e-06
-1.49041e-13
0.0168149
1.10416e-05
-3.02321e-13
0.0168206
2.9001e-05
-8.71978e-13
0.0168965
6.36222e-05
-1.77217e-12
0.016936
0.000181207
-5.03763e-12
0.017501
0.000446644
-1.37989e-11
0.0186508
0.00148669
-3.25534e-11
0.023011
0.0043795
-9.32874e-11
0.0269689
0.0144199
-2.06419e-10
0.0273995
0.0192519
-4.44248e-10
0.0187044
-5.01219e-10
0.0275517
0.0168001
3.92828e-12
-1.0842e-19
0.0168001
2.14717e-11
-7.11508e-20
0.0168001
7.96567e-11
-2.70458e-18
0.0168001
2.04988e-10
-6.08678e-18
0.0168001
5.57975e-10
-2.83595e-17
0.0168001
1.27763e-09
-6.06882e-17
0.0168001
3.26236e-09
-1.80663e-16
0.0168001
7.27938e-09
-3.47592e-16
0.0168001
1.83033e-08
-8.93619e-16
0.0168001
4.05901e-08
-1.7174e-15
0.0168002
1.01637e-07
-4.57186e-15
0.0168003
2.24935e-07
-9.14318e-15
0.0168006
5.62774e-07
-2.53871e-14
0.0168013
1.24313e-06
-5.14166e-14
0.0168031
3.12276e-06
-1.46031e-13
0.0168071
6.86357e-06
-2.92845e-13
0.0168178
1.76993e-05
-8.76986e-13
0.0168425
3.81798e-05
-1.67351e-12
0.0169099
0.000110046
-5.95123e-12
0.0171182
0.000234488
-1.04763e-11
0.0177415
0.00084549
-4.39458e-11
0.0197816
0.00231405
-1.02637e-10
0.0258773
0.00819725
-3.12591e-10
0.0275053
0.0174376
-5.32892e-10
0.0175375
-6.51064e-10
0.0284524
0.0168001
2.54146e-12
-1.05879e-19
0.0168001
1.36642e-11
-1.69407e-21
0.0168001
5.01735e-11
-2.78335e-18
0.0168001
1.29929e-10
-6.0529e-18
0.0168001
3.49823e-10
-2.96055e-17
0.0168001
8.06353e-10
-6.3414e-17
0.0168001
2.03475e-09
-1.90373e-16
0.0168001
4.568e-09
-3.66071e-16
0.0168001
1.13538e-08
-9.40444e-16
0.0168001
2.53194e-08
-1.8068e-15
0.0168001
6.27516e-08
-4.83193e-15
0.0168002
1.3963e-07
-9.65996e-15
0.0168004
3.46284e-07
-2.70905e-14
0.0168009
7.69522e-07
-5.48404e-14
0.0168019
1.91137e-06
-1.57487e-13
0.0168044
4.25661e-06
-3.16036e-13
0.0168109
1.05195e-05
-9.40806e-13
0.0168241
2.41074e-05
-1.8695e-12
0.0168715
5.88778e-05
-5.97824e-12
0.0169517
0.00014906
-1.17356e-11
0.0173772
0.000400802
-4.15199e-11
0.0184657
0.00119511
-1.01982e-10
0.0224345
0.00413583
-3.10371e-10
0.026847
0.0127478
-7.62581e-10
0.0151408
-6.55064e-10
0.0290404
0.0168001
2.11541e-12
-5.50571e-20
0.0168001
5.94353e-12
8.97855e-20
0.0168001
3.55298e-11
-2.50298e-18
0.0168001
6.06445e-11
-5.85808e-18
0.0168001
2.42538e-10
-3.0699e-17
0.0168001
3.77655e-10
-6.7766e-17
0.0168001
1.39621e-09
-1.94061e-16
0.0168001
2.11428e-09
-3.78819e-16
0.0168001
7.72146e-09
-8.76891e-16
0.0168001
1.15058e-08
-1.67782e-15
0.0168001
4.22191e-08
-4.10943e-15
0.0168002
6.18915e-08
-8.01168e-15
0.0168003
2.2989e-07
-2.24775e-14
0.0168007
3.29573e-07
-4.45038e-14
0.0168012
1.25251e-06
-1.45531e-13
0.0168036
1.73599e-06
-3.06367e-13
0.0168062
7.04169e-06
-9.81987e-13
0.0168204
8.636e-06
-2.75632e-12
0.0168315
4.38777e-05
-5.4928e-12
0.0169244
4.3501e-05
-1.9051e-11
0.0170201
0.000289735
-3.79878e-11
0.0177484
0.000408704
-1.54934e-10
0.0198394
0.00197477
-3.67277e-10
0.0251543
0.00694967
-1.20376e-09
0.0119575
-5.15001e-10
0.0282494
0.0168001
4.82228e-13
9.31736e-20
0.0168001
6.34497e-12
-6.31887e-19
0.0168001
1.24595e-11
-1.27648e-18
0.0168001
5.6057e-11
-9.92977e-18
0.0168001
8.87512e-11
-2.25023e-17
0.0168001
3.42478e-10
-8.05249e-17
0.0168001
5.14542e-10
-1.615e-16
0.0168001
1.93061e-09
-4.2725e-16
0.0168001
2.83701e-09
-8.07193e-16
0.0168001
1.06857e-08
-2.08237e-15
0.0168001
1.54232e-08
-4.06952e-15
0.0168001
5.89649e-08
-1.12318e-14
0.0168002
8.31259e-08
-2.25601e-14
0.0168002
3.25883e-07
-6.47119e-14
0.0168009
4.34321e-07
-1.30337e-13
0.0168006
1.84725e-06
-3.82389e-13
0.0168052
2.07808e-06
-7.3909e-13
0.0168015
1.08014e-05
-2.37826e-12
0.0168344
9.49295e-06
-3.9843e-12
0.016806
6.2987e-05
-1.55505e-11
0.0170281
5.71469e-05
-2.802e-11
0.0170001
0.000400221
-1.06483e-10
0.0182453
0.00065929
-2.75787e-10
0.0217156
0.00323772
-7.27637e-10
0.00803083
-8.95794e-10
0.0253315
0.0168001
7.92663e-13
1.86347e-20
0.0168001
1.25333e-12
3.47284e-19
0.0168001
1.18704e-11
-1.1147e-18
0.0168001
1.34817e-11
-2.74354e-18
0.0168001
7.94006e-11
-1.82281e-17
0.0168001
8.10303e-11
-4.03374e-17
0.0168001
4.43673e-10
-1.30454e-16
0.0168001
4.20119e-10
-2.50339e-16
0.0168001
2.35319e-09
-6.85466e-16
0.0168001
2.04823e-09
-1.29571e-15
0.0168001
1.22203e-08
-3.71412e-15
0.0168001
9.51292e-09
-7.44626e-15
0.0168001
6.30283e-08
-2.20801e-14
0.0168004
4.15555e-08
-4.50599e-14
0.0168004
3.40781e-07
-1.35048e-13
0.016802
1.20847e-07
-2.54535e-13
0.0168013
2.17439e-06
-8.79471e-13
0.0168116
-2.87226e-07
-1.45514e-12
0.0168015
1.61191e-05
-5.58639e-12
0.0168644
-5.31538e-06
-1.0041e-11
0.0167886
0.00011456
-3.73889e-11
0.0171291
2.0021e-05
-9.9943e-11
0.0172514
0.00054094
-2.87829e-10
0.0188455
0.00130485
-8.05883e-10
0.00541436
-1.0477e-09
0.0209931
0.0168001
2.55483e-13
-5.2516e-20
0.0168001
1.8522e-12
-1.47977e-18
0.0168001
5.72256e-12
-3.3407e-18
0.0168001
1.69579e-11
-1.56498e-17
0.0168001
4.02606e-11
-3.44048e-17
0.0168001
1.04297e-10
-1.05472e-16
0.0168001
2.35426e-10
-2.0775e-16
0.0168001
5.86275e-10
-5.07357e-16
0.0168001
1.31046e-09
-9.62766e-16
0.0168001
3.19843e-09
-2.31618e-15
0.0168001
7.13136e-09
-4.54056e-15
0.0168
1.71094e-08
-1.13917e-14
0.0168001
3.80027e-08
-2.26837e-14
0.0168
8.98034e-08
-5.84426e-14
0.0168001
1.99032e-07
-1.15821e-13
0.0167995
4.61664e-07
-3.08372e-13
0.0168003
1.04894e-06
-5.84802e-13
0.0167962
2.41894e-06
-1.93688e-12
0.0168054
5.66763e-06
-2.0356e-12
0.0167779
1.37975e-05
-1.55343e-11
0.0168509
3.22134e-05
-1.53011e-11
0.0167279
0.00010142
-1.07902e-10
0.0169871
0.000244768
-2.43622e-10
0.0168819
0.00107931
-8.28883e-10
0.00409832
-1.1221e-09
0.0177398
0.0168001
-9.48647e-14
2.28699e-20
0.0168001
2.54359e-12
-1.16891e-18
0.0168001
1.73716e-12
-2.45301e-18
0.0168001
2.09519e-11
-1.35915e-17
0.0168001
1.3594e-11
-2.95242e-17
0.0168001
1.29069e-10
-1.01137e-16
0.0168001
8.22496e-11
-1.97697e-16
0.0168001
7.55171e-10
-5.48748e-16
0.0168001
4.79113e-10
-1.04626e-15
0.0168001
4.41924e-09
-2.92337e-15
0.0168001
2.8279e-09
-5.92482e-15
0.0168
2.62168e-08
-1.68641e-14
0.0168
1.69803e-08
-3.56431e-14
0.0167999
1.5705e-07
-9.5595e-14
0.0167999
1.00052e-07
-2.00288e-13
0.0167991
9.5838e-07
-4.84568e-13
0.0167994
4.82206e-07
-1.0221e-12
0.0167943
6.16015e-06
-2.17453e-12
0.016797
-1.39191e-08
-6.21195e-12
0.0167634
4.02664e-05
-1.02684e-11
0.0167925
-1.34373e-05
-2.94352e-11
0.0166144
0.000237429
-8.3904e-11
0.0166962
0.000108015
-2.43858e-10
0.0162384
0.00123999
-8.2575e-10
0.00367111
-1.23522e-09
0.0161943
0.0168001
3.25803e-13
-1.90582e-19
0.0168001
4.39742e-13
-3.53213e-19
0.0168001
5.10576e-12
-3.58041e-18
0.0168001
4.43607e-12
-8.00785e-18
0.0168001
3.46611e-11
-3.16477e-17
0.0168001
2.78902e-11
-6.6537e-17
0.0168001
2.02911e-10
-1.80071e-16
0.0168001
1.58396e-10
-3.415e-16
0.0168001
1.15358e-09
-8.10304e-16
0.0168001
8.79027e-10
-1.52474e-15
0.0168001
6.55278e-09
-3.73172e-15
0.0168001
4.83627e-09
-7.17111e-15
0.0168
3.75268e-08
-1.86012e-14
0.0168002
2.55027e-08
-3.53008e-14
0.0168
2.29972e-07
-1.04765e-13
0.0168007
7.18471e-08
-1.3843e-13
0.0167991
1.64091e-06
-7.94417e-13
0.0168056
-5.51282e-07
-5.08455e-13
0.016791
1.10684e-05
-5.75602e-12
0.0168347
-5.25917e-06
-5.78166e-12
0.0167405
6.44836e-05
-3.18798e-11
0.0169411
-3.39706e-06
-8.6463e-11
0.0166678
0.00031746
-1.96657e-10
0.0170112
0.000561901
-8.85099e-10
0.00316017
-1.37283e-09
0.0170504
0.0168001
-2.4077e-13
-2.37169e-20
0.0168001
1.22241e-12
-1.0554e-18
0.0168001
-9.87873e-13
-2.51823e-18
0.0168001
9.37797e-12
-1.27445e-17
0.0168001
-5.75931e-12
-2.83883e-17
0.0168001
5.53694e-11
-9.0292e-17
0.0168001
-3.88075e-11
-1.77573e-16
0.0168001
3.05184e-10
-4.52403e-16
0.0168001
-2.82529e-10
-8.48531e-16
0.0168001
1.64234e-09
-2.18459e-15
0.0168001
-2.18778e-09
-4.27295e-15
0.0168001
8.77295e-09
-1.19696e-14
0.0168001
-1.60073e-08
-2.45407e-14
0.0168
4.9312e-08
-6.99131e-14
0.0168003
-1.16019e-07
-1.59272e-13
0.0167997
3.33794e-07
-3.84759e-13
0.0168017
-8.5788e-07
-1.05399e-12
0.0167963
2.95285e-06
-2.18999e-12
0.0168111
-6.12956e-06
-5.52896e-12
0.0167652
2.89128e-05
-1.61224e-11
0.0168591
-4.15526e-05
-3.78723e-11
0.016607
0.000196156
-9.39255e-11
0.016944
-9.93657e-06
-3.2325e-10
0.0162694
0.000926677
-8.25867e-10
0.00275683
-1.53905e-09
0.0161676
0.0168001
1.17974e-13
-2.13452e-19
0.0168001
6.78218e-13
-4.4808e-19
0.0168001
2.47898e-12
-4.12336e-18
0.0168001
6.37648e-12
-9.2081e-18
0.0168001
1.73542e-11
-3.57126e-17
0.0168001
3.98011e-11
-7.50632e-17
0.0168001
1.02212e-10
-2.00372e-16
0.0168001
2.29124e-10
-3.81898e-16
0.0168001
5.77498e-10
-8.83715e-16
0.0168001
1.28876e-09
-1.67921e-15
0.0168001
3.19577e-09
-3.96162e-15
0.0168
7.09618e-09
-7.68584e-15
0.0168
1.72904e-08
-1.96138e-14
0.0168
3.78079e-08
-3.82831e-14
0.0167997
9.16534e-08
-1.12326e-13
0.0167997
1.94572e-07
-2.18193e-13
0.0167978
4.82979e-07
-7.64564e-13
0.016799
9.6991e-07
-1.36826e-12
0.0167861
2.64408e-06
-5.54402e-12
0.0168059
5.16029e-06
-9.56942e-12
0.0167302
1.56865e-05
-3.67573e-11
0.0168446
3.9623e-05
-1.05221e-10
0.0166478
0.0001262
-2.45869e-10
0.0168095
0.000442999
-1.01735e-09
0.00209859
-1.73783e-09
0.0169794
0.0168001
4.75476e-13
-1.77877e-19
0.0168001
2.50812e-13
-5.9377e-19
0.0168001
6.26201e-12
-4.18265e-18
0.0168001
3.45636e-12
-9.63754e-18
0.0168001
4.25751e-11
-3.66198e-17
0.0168001
2.33384e-11
-7.65523e-17
0.0168001
2.55797e-10
-2.06081e-16
0.0168001
1.40013e-10
-3.90627e-16
0.0168001
1.50677e-09
-9.4705e-16
0.0168001
8.18909e-10
-1.81072e-15
0.0168
8.8639e-09
-4.5859e-15
0.0168
4.65919e-09
-9.10902e-15
0.0168
5.20623e-08
-2.39597e-14
0.0168
2.3308e-08
-4.77566e-14
0.0167996
3.11154e-07
-1.3114e-13
0.0167996
7.36752e-08
-2.50885e-13
0.0167976
1.90289e-06
-8.15601e-13
0.0167984
-6.6657e-07
-1.33678e-12
0.0167856
1.16117e-05
-6.07964e-12
0.0168036
-1.60344e-05
-9.28724e-12
0.0167232
7.49983e-05
-3.97866e-11
0.0168374
-0.000106488
-1.03626e-10
0.0166019
0.000285684
-2.55298e-10
0.0167017
5.06702e-05
-9.67506e-10
0.00126059
-1.72991e-09
0.0170204
0.0168001
-3.91541e-14
8.47033e-22
0.0168001
1.06257e-12
-1.39676e-18
0.0168001
6.39033e-13
-2.95784e-18
0.0168001
8.85956e-12
-1.44673e-17
0.0168001
5.04796e-12
-3.15122e-17
0.0168001
5.33939e-11
-9.79907e-17
0.0168001
2.64703e-11
-1.91908e-16
0.0168001
2.99429e-10
-4.80746e-16
0.0168001
1.1895e-10
-9.02972e-16
0.0168001
1.65803e-09
-2.30234e-15
0.0168001
4.48834e-10
-4.48591e-15
0.0168
9.22336e-09
-1.24405e-14
0.0168001
9.75861e-10
-2.47355e-14
0.0168
5.30275e-08
-7.26483e-14
0.0168002
-1.31023e-08
-1.46328e-13
0.0167996
3.54611e-07
-4.3474e-13
0.0168012
-3.18767e-07
-9.02102e-13
0.0167959
2.65135e-06
-2.67014e-12
0.0168081
-3.32501e-06
-5.34193e-12
0.0167644
1.56701e-05
-1.81788e-11
0.01685
-2.2153e-05
-3.87978e-11
0.0166021
8.60132e-05
-1.12533e-10
0.0169514
-3.63494e-05
-3.00938e-10
0.0163622
0.000354232
-8.51466e-10
0.00103859
-1.4645e-09
0.0160903
0.0168001
2.11607e-13
-3.29496e-19
0.0168001
7.42616e-14
-9.45289e-19
0.0168001
2.96699e-12
-5.62599e-18
0.0168001
1.22958e-12
-1.24844e-17
0.0168001
1.89978e-11
-4.28285e-17
0.0168001
5.59302e-12
-8.71775e-17
0.0168001
1.02999e-10
-2.28427e-16
0.0168001
1.13523e-11
-4.25806e-16
0.0168001
5.29123e-10
-1.09249e-15
0.0168001
-8.01313e-11
-2.08998e-15
0.0168001
2.64302e-09
-5.93915e-15
0.0168001
-1.37417e-09
-1.20882e-14
0.0168
1.29851e-08
-3.51186e-14
0.0168
-1.41952e-08
-7.37766e-14
0.0167998
7.27246e-08
-1.97229e-13
0.0168001
-1.63358e-07
-4.18287e-13
0.0167984
5.74965e-07
-1.03201e-12
0.0168015
-1.69787e-06
-1.9806e-12
0.0167895
4.60639e-06
-6.0919e-12
0.0168106
-1.10357e-05
-9.56992e-12
0.0167428
2.78183e-05
-3.34263e-11
0.0168535
-5.82067e-05
-8.76477e-11
0.016663
0.000101586
-1.77197e-10
0.016847
-5.40424e-05
-7.51723e-10
0.000386489
-1.09601e-09
0.0170565
0.0168001
-2.81408e-13
-1.43149e-19
0.0168001
6.61571e-13
-2.22854e-18
0.0168001
-2.49149e-12
-5.2516e-18
0.0168001
4.37477e-12
-2.0527e-17
0.0168001
-1.75067e-11
-4.32453e-17
0.0168001
2.19043e-11
-1.31256e-16
0.0168001
-1.19466e-10
-2.4961e-16
0.0168001
9.23269e-11
-6.92313e-16
0.0168001
-8.03255e-10
-1.31953e-15
0.0168001
2.98463e-10
-3.84219e-15
0.0168001
-5.2881e-09
-7.79652e-15
0.0168
7.71228e-10
-2.2708e-14
0.0168001
-3.39168e-08
-4.8329e-14
0.0168
4.42458e-09
-1.19621e-13
0.0168002
-2.18141e-07
-2.96874e-13
0.0167995
8.67704e-08
-5.04208e-13
0.0168007
-1.42937e-06
-1.53608e-12
0.0167951
1.80446e-06
-2.45673e-12
0.0168059
-9.32791e-06
-6.10917e-12
0.0167618
2.15857e-05
-1.58629e-11
0.0168413
-6.19891e-05
-3.2649e-11
0.0166012
0.00013673
-8.91362e-11
0.0169077
-0.000180801
-2.27894e-10
0.0163958
0.000281024
-6.35031e-10
0.000357308
-8.80765e-10
0.0160493
0.0168001
3.41312e-14
-5.42948e-19
0.0168001
1.578e-13
-2.02441e-18
0.0168001
5.24467e-13
-9.3919e-18
0.0168001
9.8146e-13
-2.06862e-17
0.0168001
2.08579e-12
-6.61982e-17
0.0168001
6.32335e-13
-1.3223e-16
0.0168001
-2.08122e-12
-3.35516e-16
0.0168001
-2.40559e-11
-6.26988e-16
0.0168001
-7.7216e-11
-1.54189e-15
0.0168001
-2.88074e-10
-2.99534e-15
0.0168
-8.07943e-10
-7.83868e-15
0.0168
-2.45662e-09
-1.58741e-14
0.0168
-6.42588e-09
-4.18529e-14
0.0168
-1.65892e-08
-8.4874e-14
0.0167996
-4.62669e-08
-2.1853e-13
0.0167996
-8.49933e-08
-4.36521e-13
0.0167977
-2.98055e-07
-1.09316e-12
0.0167989
-2.96865e-07
-2.15126e-12
0.016787
-1.35223e-06
-5.5316e-12
0.0168054
-1.53631e-06
-1.00677e-11
0.0167331
-5.54995e-06
-2.95753e-11
0.0168578
-9.65831e-06
-7.252e-11
0.016656
-2.11324e-05
-1.5046e-10
0.0168547
-6.93492e-05
-5.21572e-10
-7.20834e-05
-6.77435e-10
0.0169346
0.0168001
4.11387e-13
-7.3946e-19
0.0168001
-1.03832e-12
-2.83671e-18
0.0168001
3.40404e-12
-1.23819e-17
0.0168001
-7.48951e-12
-2.72457e-17
0.0168001
2.10226e-11
-8.26001e-17
0.0168001
-4.95551e-11
-1.63226e-16
0.0168001
1.15281e-10
-4.04246e-16
0.0168001
-3.22922e-10
-7.62422e-16
0.0168001
6.14348e-10
-1.86674e-15
0.0168001
-2.06834e-09
-3.63918e-15
0.0168
3.27364e-09
-9.3348e-15
0.0168001
-1.30892e-08
-1.87992e-14
0.0168
1.77645e-08
-4.87427e-14
0.0168
-8.27076e-08
-9.86944e-14
0.0167997
1.00728e-07
-2.50197e-13
0.0168
-5.38416e-07
-5.10148e-13
0.0167981
7.34072e-07
-1.18645e-12
0.0168007
-4.13018e-06
-2.70306e-12
0.016788
7.84546e-06
-5.40341e-12
0.0168169
-3.53451e-05
-1.09347e-11
0.0167297
6.83362e-05
-2.7747e-11
0.0169175
-0.000217598
-6.83906e-11
0.0166578
0.000200588
-1.23154e-10
0.0169301
-0.000462104
-4.34904e-10
-0.000320075
-4.56579e-10
0.0168122
0.0168001
5.717e-14
-5.43795e-19
0.0168001
-5.34449e-13
-5.30412e-18
0.0168001
-1.92205e-13
-1.24319e-17
0.0168001
-4.43222e-12
-4.23305e-17
0.0168001
-2.24655e-12
-8.76442e-17
0.0168001
-2.93077e-11
-2.19283e-16
0.0168001
-2.13659e-11
-4.12672e-16
0.0168001
-1.90542e-10
-9.48509e-16
0.0168001
-1.84587e-10
-1.78739e-15
0.0168001
-1.23251e-09
-4.4873e-15
0.0168001
-1.41986e-09
-8.83659e-15
0.0168
-7.84078e-09
-2.40504e-14
0.0168
-1.00288e-08
-4.9324e-14
0.0167999
-4.82307e-08
-1.33512e-13
0.0168
-6.32559e-08
-2.82848e-13
0.0167993
-2.7555e-07
-6.79771e-13
0.0168
-3.54128e-07
-1.67563e-12
0.0167956
-1.44665e-06
-2.5906e-12
0.0168008
-1.0336e-06
-9.18076e-12
0.0167683
-8.27877e-06
-8.39759e-12
0.0168156
6.05948e-06
-3.49978e-11
0.0166285
-5.06691e-05
-5.14787e-11
0.0167783
2.0304e-05
-1.47556e-10
0.0164596
-0.000148005
-3.63281e-10
-0.000232501
-2.6711e-10
0.0160755
0.0168001
-5.76829e-19
0.0168001
-5.53451e-18
0.0168001
-1.30291e-17
0.0168001
-4.37044e-17
0.0168001
-9.01379e-17
0.0168001
-2.27866e-16
0.0168001
-4.29211e-16
0.0168001
-9.96818e-16
0.0168001
-1.89702e-15
0.0168001
-4.63518e-15
0.0168
-9.17163e-15
0.0168
-2.30349e-14
0.0168
-4.61246e-14
0.0167999
-1.14444e-13
0.0167997
-2.27654e-13
0.0167991
-5.58993e-13
0.0167984
-1.09902e-12
0.0167956
-2.7163e-12
0.0167928
-5.26803e-12
0.0167792
-1.27931e-11
0.0167774
-2.80859e-11
0.0167123
-6.20011e-11
0.0166909
-1.46091e-10
0.0165662
-3.64059e-10
-1.64218e-10
0.0160342
0.0168001
1.05811e-09
-1.02084e-17
0.0168001
5.75484e-09
-6.20689e-17
0.0168001
1.98961e-08
-1.38197e-16
0.0168001
5.54822e-08
-3.49151e-16
0.0168002
1.41041e-07
-6.57531e-16
0.0168001
3.52333e-07
-1.65161e-15
0.0168008
8.43774e-07
-3.07279e-15
0.0168
2.10472e-06
-9.27494e-15
0.0168047
4.88831e-06
-1.38589e-14
0.0167977
1.31011e-05
-6.7105e-14
0.0168351
3.04103e-05
-7.28311e-14
0.0167784
8.66152e-05
-4.4718e-13
0.0170226
0.000236704
-1.00163e-12
0.0168036
0.000840212
-2.29959e-12
0.0178047
0.00274756
-9.52902e-12
0.0175526
0.0126441
-1.5503e-11
0.0167824
0.013428
-2.48551e-12
0.0154409
0.0131342
-1.65123e-12
0.014404
0.0133598
-1.6683e-12
0.0134364
0.0141875
-1.71024e-12
0.0125727
0.0155016
-1.69603e-12
0.0116279
0.017211
-1.68055e-12
0.0107944
0.0193532
-1.72413e-12
0.0107822
0.0218524
-1.91653e-12
0.0234331
-2.47923e-12
0.0162968
0.0168001
8.47293e-10
-1.08327e-17
0.0168001
6.56504e-09
-6.65658e-17
0.0168001
2.00105e-08
-1.47114e-16
0.0168001
6.05045e-08
-3.78127e-16
0.0168
1.43162e-07
-7.16849e-16
0.0168
3.82251e-07
-1.82986e-15
0.0168
8.62292e-07
-3.57011e-15
0.0167998
2.23719e-06
-9.7498e-15
0.0167996
5.10988e-06
-1.97431e-14
0.0167997
1.28129e-05
-5.59924e-14
0.0167994
3.07195e-05
-1.1553e-13
0.0168051
8.00484e-05
-3.33391e-13
0.0168226
0.000218722
-8.79639e-13
0.0169198
0.000739999
-2.44773e-12
0.0173336
0.00232689
-7.44797e-12
0.0177428
0.0122159
-1.69315e-11
0.016983
0.0141852
-1.51592e-12
0.0160478
0.0140678
-1.02837e-12
0.0152113
0.0141946
-1.40026e-12
0.0144022
0.0149954
-1.69617e-12
0.0137311
0.0161719
-1.74421e-12
0.0132258
0.0177156
-1.80711e-12
0.0130622
0.0195159
-1.92677e-12
0.0139092
0.0210045
-2.27278e-12
0.0214732
-3.21817e-12
0.0158681
0.0168001
7.68712e-10
-1.01043e-17
0.0168001
5.96386e-09
-6.26686e-17
0.0168001
1.83568e-08
-1.39566e-16
0.0168001
5.52799e-08
-3.57893e-16
0.0168001
1.30944e-07
-6.79878e-16
0.0168001
3.47512e-07
-1.73338e-15
0.0168002
7.81582e-07
-3.40681e-15
0.0168004
2.03808e-06
-9.1534e-15
0.016801
4.49895e-06
-1.92388e-14
0.0168015
1.217e-05
-5.08625e-14
0.0168061
2.61122e-05
-1.08991e-13
0.0168051
8.01949e-05
-3.25047e-13
0.0168368
0.000186673
-7.83822e-13
0.0168599
0.000714114
-2.04746e-12
0.0170885
0.00209225
-6.79793e-12
0.0179898
0.0112948
-1.76676e-11
0.0173945
0.0147792
-8.07406e-13
0.0166557
0.0148053
-7.55879e-13
0.0159693
0.0148795
-1.09331e-12
0.0153689
0.015594
-1.63887e-12
0.0148629
0.0166764
-1.75915e-12
0.0146585
0.017919
-1.91982e-12
0.0149844
0.0191894
-2.11915e-12
0.0159234
0.0200646
-2.57239e-12
0.0201919
-3.5105e-12
0.0172038
0.0168001
6.15759e-10
-8.43052e-18
0.0168001
5.35027e-09
-5.32419e-17
0.0168001
1.64037e-08
-1.1697e-16
0.0168001
4.91281e-08
-3.00672e-16
0.0168001
1.16279e-07
-5.63927e-16
0.0168001
3.05499e-07
-1.4249e-15
0.0168002
6.83225e-07
-2.71726e-15
0.0168004
1.79546e-06
-7.57736e-15
0.0168012
3.73265e-06
-1.39082e-14
0.0168019
1.13907e-05
-4.71185e-14
0.0168084
1.95364e-05
-7.68388e-14
0.0168059
8.19616e-05
-3.08052e-13
0.0168434
0.000148822
-5.62521e-13
0.0168601
0.000694832
-2.41359e-12
0.0171211
0.00182715
-6.05501e-12
0.0187
0.00969528
-1.7949e-11
0.0180831
0.015396
-5.86464e-13
0.0172279
0.0156602
-4.72194e-13
0.016678
0.0154283
-7.90171e-13
0.0162968
0.0159741
-1.58251e-12
0.0160327
0.0169389
-1.81878e-12
0.0160079
0.0179426
-1.96316e-12
0.0163524
0.018844
-2.21234e-12
0.0171398
0.0192763
-2.72462e-12
0.0191645
-3.56518e-12
0.0181661
0.0168001
1.79074e-10
-7.73595e-18
0.0168001
6.9844e-09
-4.98267e-17
0.0168001
1.08341e-08
-1.08547e-16
0.0168001
6.02312e-08
-2.84732e-16
0.0168001
8.08406e-08
-5.36782e-16
0.0168
3.75283e-07
-1.36716e-15
0.0168002
4.86226e-07
-2.63258e-15
0.0167998
2.22078e-06
-7.28244e-15
0.0168008
2.71507e-06
-1.4285e-14
0.0167983
1.37202e-05
-4.36397e-14
0.0168041
1.36582e-05
-8.11853e-14
0.0167905
9.50137e-05
-3.05558e-13
0.0168544
8.45248e-05
-5.17104e-13
0.0168445
0.000701984
-2.32707e-12
0.0173426
0.00132602
-5.73177e-12
0.0204818
0.00653229
-1.88501e-11
0.019247
0.0166309
-1.96617e-12
0.018341
0.0165658
-1.08014e-12
0.0175327
0.0162365
-5.96904e-13
0.0171442
0.0163613
-1.42327e-12
0.0170482
0.017034
-1.76559e-12
0.0171647
0.017825
-1.95956e-12
0.0174837
0.0185243
-2.22776e-12
0.0180507
0.0187086
-2.67529e-12
0.0183539
-3.3969e-12
0.0188606
0.0168001
5.56819e-10
-6.84403e-18
0.0168001
3.72439e-09
-3.00451e-17
0.0168001
1.3157e-08
-8.76967e-17
0.0168001
3.51987e-08
-1.75624e-16
0.0168001
9.38783e-08
-4.30227e-16
0.0168002
2.21424e-07
-8.02487e-16
0.0168001
5.60353e-07
-2.03711e-15
0.0168011
1.28885e-06
-3.81149e-15
0.0168005
3.28331e-06
-1.15939e-14
0.0168068
7.40718e-06
-1.77319e-14
0.0168001
2.01209e-05
-8.32813e-14
0.01685
4.51478e-05
-9.66176e-14
0.016802
0.000131424
-5.32022e-13
0.0171538
0.000348985
-1.30055e-12
0.0172894
0.00118787
-2.53219e-12
0.0198366
0.00397083
-1.01941e-11
0.0203622
0.0160954
-9.06837e-12
0.0196044
0.0173221
-2.69604e-12
0.0185417
0.0172979
-2.09483e-12
0.0180339
0.0168685
-1.29438e-12
0.0178977
0.0171691
-1.66608e-12
0.0180562
0.0176652
-1.97822e-12
0.018433
0.0181465
-2.20245e-12
0.0188624
0.0182782
-2.60748e-12
0.0178128
-3.22298e-12
0.0194026
0.0168001
6.58234e-10
-6.60516e-18
0.0168001
3.42855e-09
-2.89423e-17
0.0168001
1.2776e-08
-8.53928e-17
0.0168001
3.27037e-08
-1.71266e-16
0.0168001
9.00478e-08
-4.2695e-16
0.0168001
2.07181e-07
-8.02374e-16
0.0168001
5.37968e-07
-2.05832e-15
0.0168002
1.20906e-06
-4.02095e-15
0.0168003
3.0896e-06
-1.10994e-14
0.0168008
6.96385e-06
-2.22366e-14
0.0168029
1.78074e-05
-6.49382e-14
0.0168083
3.97066e-05
-1.2855e-13
0.0168249
0.000113889
-3.97036e-13
0.0169008
0.000272526
-9.52315e-13
0.0171071
0.000978095
-2.81905e-12
0.0181006
0.00296868
-8.08941e-12
0.0202249
0.0139483
-1.90318e-11
0.0199675
0.0175755
-3.29481e-12
0.0194471
0.0178163
-2.34404e-12
0.0189006
0.0174149
-1.03976e-12
0.0186861
0.0173824
-1.56456e-12
0.0187445
0.0176055
-1.94846e-12
0.0190957
0.017794
-2.2355e-12
0.0195389
0.0178345
-2.47683e-12
0.017427
-3.06653e-12
0.0199228
0.0168001
8.05478e-10
-5.17283e-18
0.0168001
2.00004e-09
-2.21177e-17
0.0168001
1.30195e-08
-6.91086e-17
0.0168001
2.1084e-08
-1.36545e-16
0.0168001
9.02601e-08
-3.39311e-16
0.0168001
1.3546e-07
-6.33963e-16
0.0168001
5.39436e-07
-1.60815e-15
0.0168006
7.7717e-07
-3.05855e-15
0.0168004
3.2277e-06
-8.78153e-15
0.0168033
4.01112e-06
-1.58116e-14
0.0168003
2.07546e-05
-5.63497e-14
0.0168211
1.87799e-05
-9.00779e-14
0.0167933
0.000140905
-3.70667e-13
0.0169323
0.00013298
-6.87007e-13
0.0168745
0.00103285
-2.87083e-12
0.0176027
0.00223575
-7.08757e-12
0.0203539
0.0111739
-1.92803e-11
0.0203861
0.017543
-1.15805e-12
0.0200446
0.0181565
-7.59752e-13
0.019609
0.0178507
-5.2815e-13
0.0194639
0.017528
-1.29834e-12
0.0194645
0.0176044
-1.73661e-12
0.0196321
0.0176253
-2.11354e-12
0.0199999
0.0174651
-2.41292e-12
0.0170717
-2.92499e-12
0.0203549
0.0168001
3.15163e-10
-3.05525e-18
0.0168001
2.18646e-09
-1.97181e-17
0.0168001
6.96514e-09
-4.73288e-17
0.0168001
2.04817e-08
-1.20452e-16
0.0168001
4.93808e-08
-2.26585e-16
0.0168001
1.27533e-07
-5.58308e-16
0.0168004
2.90588e-07
-9.95962e-16
0.0168004
7.47462e-07
-2.93454e-15
0.016802
1.61408e-06
-3.93849e-15
0.0168013
4.66533e-06
-2.13823e-14
0.0168131
9.00232e-06
-1.79017e-14
0.0168012
3.02867e-05
-1.58873e-13
0.0168828
5.93702e-05
-1.934e-13
0.0168126
0.000201346
-9.72004e-13
0.0173141
0.00052949
-2.25898e-12
0.0177089
0.0018361
-7.07399e-12
0.0221947
0.0066611
-2.11176e-11
0.0215717
0.0181634
-3.7449e-12
0.0212024
0.0185276
1.39324e-13
0.0205724
0.0184809
-6.39717e-14
0.0202077
0.0178931
-8.00116e-13
0.0201732
0.0176391
-1.45124e-12
0.0202391
0.0175595
-1.93803e-12
0.0204252
0.0172778
-2.42897e-12
0.016806
-2.91873e-12
0.0206893
0.0168001
1.11012e-10
-3.12386e-18
0.0168001
2.47574e-09
-2.04719e-17
0.0168001
4.62901e-09
-4.79277e-17
0.0168001
2.16149e-08
-1.27319e-16
0.0168001
3.4109e-08
-2.41616e-16
0.0168001
1.34464e-07
-6.04134e-16
0.0168002
2.04973e-07
-1.14221e-15
0.0168001
7.88215e-07
-3.00115e-15
0.0168006
1.15097e-06
-5.95998e-15
0.0168005
4.73941e-06
-1.6425e-14
0.0168036
5.84302e-06
-3.48511e-14
0.0168031
3.05905e-05
-9.12097e-14
0.0168332
2.90238e-05
-2.13109e-13
0.0168269
0.000206482
-4.73296e-13
0.0171123
0.000242785
-1.58067e-12
0.0174034
0.00154046
-3.17561e-12
0.0200162
0.0040385
-8.85159e-12
0.0223614
0.0157998
-1.32058e-11
0.0220268
0.01886
-2.25499e-12
0.0214514
0.0190547
-1.55046e-12
0.0209324
0.0184117
-7.06629e-13
0.0207588
0.0178128
-1.30476e-12
0.0207984
0.0175187
-2.01384e-12
0.0208807
0.0171958
-2.48993e-12
0.0166679
-2.988e-12
0.0210164
0.0168001
2.11115e-10
-3.01713e-18
0.0168001
1.23631e-09
-1.31273e-17
0.0168001
4.51247e-09
-4.13183e-17
0.0168001
1.17973e-08
-8.42569e-17
0.0168001
3.18733e-08
-2.11695e-16
0.0168001
7.37898e-08
-3.95641e-16
0.0168001
1.88054e-07
-9.71288e-16
0.0168005
4.23352e-07
-1.84479e-15
0.0168005
1.10035e-06
-4.91326e-15
0.0168029
2.34005e-06
-9.39787e-15
0.0168018
6.87771e-06
-2.84056e-14
0.0168191
1.33311e-05
-4.99622e-14
0.0168036
4.39853e-05
-1.78562e-13
0.0169196
9.04064e-05
-3.06493e-13
0.0168475
0.000312723
-1.16542e-12
0.0175655
0.000820867
-2.53209e-12
0.0182029
0.00339244
-8.13753e-12
0.0218249
0.0121552
-1.79221e-11
0.0222328
0.0184503
-2.19107e-12
0.0220698
0.0192161
-1.46736e-12
0.0215608
0.018921
-5.17415e-13
0.0213212
0.0180502
-1.40423e-12
0.0212979
0.017541
-2.19947e-12
0.021347
0.0171448
-2.76987e-12
0.0166163
-3.32009e-12
0.0213961
0.0168001
2.75618e-10
-2.66815e-18
0.0168001
7.152e-10
-1.13646e-17
0.0168001
4.49153e-09
-3.63733e-17
0.0168001
7.48033e-09
-7.34869e-17
0.0168001
3.09841e-08
-1.90189e-16
0.0168001
4.77134e-08
-3.5393e-16
0.0168001
1.82812e-07
-8.79074e-16
0.0168002
2.74582e-07
-1.67074e-15
0.0168003
1.05075e-06
-4.45304e-15
0.0168011
1.52689e-06
-8.77877e-15
0.0168017
6.20018e-06
-2.54297e-14
0.0168068
8.16463e-06
-4.83393e-14
0.0168103
4.01638e-05
-1.61747e-13
0.0168543
4.62657e-05
-2.76027e-13
0.0168838
0.000281161
-1.07763e-12
0.0172431
0.000459724
-2.64363e-12
0.0184508
0.00217767
-7.07403e-12
0.0229557
0.0076235
-2.06018e-11
0.0231144
0.0182871
-4.71791e-12
0.0229802
0.0193518
-3.75267e-13
0.0225614
0.0193391
-5.88346e-13
0.0220141
0.0185984
-1.41629e-12
0.0218084
0.0177426
-2.30643e-12
0.0217782
0.0171743
-2.98354e-12
0.0166174
-3.6355e-12
0.0217729
0.0168001
1.20952e-10
-1.55092e-18
0.0168001
8.75033e-10
-1.02559e-17
0.0168001
2.69394e-09
-2.49129e-17
0.0168001
8.16161e-09
-6.59695e-17
0.0168001
1.92337e-08
-1.29021e-16
0.0168001
5.14401e-08
-3.19279e-16
0.0168001
1.14969e-07
-5.94748e-16
0.0168001
3.00393e-07
-1.50492e-15
0.0168005
6.63288e-07
-2.89693e-15
0.0168003
1.73361e-06
-7.91713e-15
0.0168026
3.82587e-06
-1.57941e-14
0.0168006
1.00329e-05
-4.43333e-14
0.0168179
2.28568e-05
-9.33616e-14
0.0168045
5.91076e-05
-2.11423e-13
0.0169337
0.000151154
-7.82585e-13
0.016972
0.000418799
-1.12818e-12
0.0178648
0.00128546
-4.52993e-12
0.0207348
0.00474418
-7.54525e-12
0.0234142
0.0155908
-1.27857e-11
0.023449
0.0193158
-2.23242e-12
0.0231167
0.0196703
-1.93537e-12
0.02262
0.0190931
-1.78172e-12
0.0223993
0.0179617
-2.18379e-12
0.0222636
0.0173032
-3.23399e-12
0.0166738
-4.12334e-12
0.0222042
0.0168001
4.5488e-11
-1.10792e-18
0.0168001
8.27811e-10
-8.07392e-18
0.0168001
1.67085e-09
-1.80706e-17
0.0168001
7.28557e-09
-4.81572e-17
0.0168001
1.22505e-08
-9.27433e-17
0.0168001
4.5124e-08
-2.33161e-16
0.0168001
7.33535e-08
-4.3356e-16
0.0168002
2.60823e-07
-1.06585e-15
0.0168004
4.19474e-07
-2.03145e-15
0.0168006
1.49207e-06
-5.35603e-15
0.0168021
2.36465e-06
-1.05956e-14
0.0168033
8.72871e-06
-2.96051e-14
0.0168131
1.29989e-05
-5.83801e-14
0.0168164
5.53802e-05
-1.74806e-13
0.0168923
7.49672e-05
-3.48644e-13
0.0169267
0.000382405
-1.06125e-12
0.0174826
0.000727317
-2.83066e-12
0.0190187
0.00320266
-7.23509e-12
0.023379
0.0112049
-1.79063e-11
0.023809
0.0188795
-5.17762e-12
0.0238301
0.0196465
-4.16896e-12
0.0234846
0.0194365
-2.91054e-12
0.0229262
0.0185189
-1.84963e-12
0.0227208
0.0175029
-3.40226e-12
0.0167792
-4.29316e-12
0.0226065
0.0168001
7.68168e-11
-9.53759e-19
0.0168001
4.39433e-10
-5.76491e-18
0.0168001
1.63604e-09
-1.37397e-17
0.0168001
4.19127e-09
-2.89423e-17
0.0168001
1.15651e-08
-7.41764e-17
0.0168001
2.63405e-08
-1.44459e-16
0.0168001
6.8574e-08
-3.47886e-16
0.0168002
1.52206e-07
-6.48782e-16
0.0168002
3.91951e-07
-1.58792e-15
0.0168008
8.64144e-07
-3.0729e-15
0.016801
2.2314e-06
-8.10056e-15
0.0168048
4.9128e-06
-1.59741e-14
0.0168048
1.2855e-05
-4.54409e-14
0.0168313
2.87801e-05
-8.43109e-14
0.0168286
7.70059e-05
-3.03716e-13
0.0170228
0.000187894
-4.03656e-13
0.0171886
0.000559067
-2.0087e-12
0.0187479
0.00163789
-4.23245e-12
0.0238758
0.00606754
-9.35233e-12
0.0248817
0.0178548
-1.3016e-11
0.024677
0.0198438
-5.15371e-12
0.0241635
0.0199449
-4.25345e-12
0.0235386
0.0191395
-3.36987e-12
0.0232131
0.017824
-3.46643e-12
0.0169597
-4.63286e-12
0.0230261
0.0168001
8.33453e-11
-7.21672e-19
0.0168001
2.51185e-10
-4.70188e-18
0.0168001
1.40758e-09
-1.04439e-17
0.0168001
2.57767e-09
-2.21211e-17
0.0168001
9.72892e-09
-5.73966e-17
0.0168001
1.64178e-08
-1.13312e-16
0.0168001
5.72309e-08
-2.77086e-16
0.0168001
9.49139e-08
-5.14295e-16
0.0168002
3.2563e-07
-1.26837e-15
0.0168005
5.35575e-07
-2.43392e-15
0.0168009
1.84627e-06
-6.46961e-15
0.0168028
2.99553e-06
-1.28182e-14
0.0168049
1.0664e-05
-3.60566e-14
0.0168171
1.64921e-05
-7.21166e-14
0.0168274
6.6211e-05
-2.12975e-13
0.0169192
9.56287e-05
-4.49169e-13
0.017025
0.000451024
-1.29282e-12
0.0177278
0.000931767
-3.85528e-12
0.0199896
0.00379786
-8.76406e-12
0.0244745
0.0133407
-2.18911e-11
0.0249296
0.0193791
-6.67026e-12
0.0249536
0.0199117
-5.80367e-12
0.0243493
0.0197378
-4.18382e-12
0.0237563
0.0184105
-3.15505e-12
0.0172692
-5.25332e-12
0.0234351
0.0168001
3.53941e-11
-4.19281e-19
0.0168001
2.53691e-10
-4.44523e-18
0.0168001
7.86728e-10
-6.11388e-18
0.0168001
2.36492e-09
-1.98358e-17
0.0168001
5.5952e-09
-3.91677e-17
0.0168001
1.47809e-08
-1.02758e-16
0.0168001
3.31343e-08
-1.94076e-16
0.0168001
8.51223e-08
-4.71155e-16
0.0168002
1.8845e-07
-8.85033e-16
0.0168003
4.81659e-07
-2.23839e-15
0.0168011
1.06233e-06
-4.39838e-15
0.0168013
2.72598e-06
-1.19278e-14
0.016806
5.9908e-06
-2.36278e-14
0.0168065
1.57842e-05
-7.25145e-14
0.0168384
3.42095e-05
-1.10939e-13
0.0168339
9.90966e-05
-5.19609e-13
0.0170693
0.000215072
-7.04228e-13
0.0172351
0.000761759
-3.57192e-12
0.0189559
0.00207004
-7.94796e-12
0.0241966
0.00806789
-2.36507e-11
0.0253799
0.0181845
-9.76066e-12
0.0254654
0.0198201
-4.30528e-12
0.0251888
0.0200043
-4.49914e-12
0.0245113
0.0190805
-4.0313e-12
0.0177477
-6.2304e-12
0.0240182
0.0168001
1.58505e-11
-3.34578e-19
0.0168001
2.21069e-10
-2.94767e-18
0.0168001
4.8808e-10
-5.14403e-18
0.0168001
1.96009e-09
-1.49154e-17
0.0168001
3.53797e-09
-2.9381e-17
0.0168001
1.21078e-08
-7.87978e-17
0.0168001
2.1045e-08
-1.49942e-16
0.0168001
6.95053e-08
-3.65361e-16
0.0168002
1.19764e-07
-6.78418e-16
0.0168002
3.93145e-07
-1.7246e-15
0.0168006
6.73786e-07
-3.3135e-15
0.0168011
2.22572e-06
-9.17201e-15
0.0168033
3.77613e-06
-1.80816e-14
0.0168062
1.28122e-05
-5.06606e-14
0.0168191
2.10966e-05
-1.21523e-13
0.0168398
7.77595e-05
-2.59423e-13
0.0169248
0.000128952
-8.6687e-13
0.0171581
0.000524689
-1.69987e-12
0.0180553
0.0011755
-4.65903e-12
0.0217343
0.00437261
-1.05298e-11
0.0253505
0.0145417
-1.83749e-11
0.02556
0.0196
-6.56544e-12
0.0256156
0.0199345
-6.10299e-12
0.0252039
0.0194771
-6.35882e-12
0.0182851
-7.98176e-12
0.0246367
0.0168001
2.5485e-11
-2.92226e-19
0.0168001
9.77069e-11
-1.28749e-18
0.0168001
4.78163e-10
-4.91703e-18
0.0168001
9.68508e-10
-8.9506e-18
0.0168001
3.33313e-09
-2.37415e-17
0.0168001
6.13321e-09
-4.85977e-17
0.0168001
1.96411e-08
-1.24004e-16
0.0168001
3.54834e-08
-2.30812e-16
0.0168001
1.11709e-07
-5.61419e-16
0.0168003
2.011e-07
-1.05911e-15
0.0168003
6.31365e-07
-2.68464e-15
0.0168014
1.13411e-06
-5.30783e-15
0.0168016
3.58288e-06
-1.43028e-14
0.016808
6.37431e-06
-2.84019e-14
0.0168079
2.09994e-05
-8.57864e-14
0.0168502
3.53108e-05
-1.33212e-13
0.0168434
0.000134462
-6.04615e-13
0.017143
0.000224237
-8.41167e-13
0.0173279
0.000985624
-3.9741e-12
0.0191816
0.00251249
-8.52425e-12
0.0249418
0.00874288
-2.31398e-11
0.0261302
0.0183907
-1.15363e-11
0.0260136
0.0200319
-8.68792e-12
0.0258153
0.0196448
-9.79583e-12
0.0187536
-1.35987e-11
0.0253013
0.0168001
1.18096e-11
-1.38066e-19
0.0168001
8.4049e-11
-1.03762e-18
0.0168001
2.612e-10
-2.53009e-18
0.0168001
7.82855e-10
-7.34632e-18
0.0168001
1.85534e-09
-1.51365e-17
0.0168001
4.87657e-09
-4.04331e-17
0.0168001
1.09508e-08
-7.85809e-17
0.0168001
2.79281e-08
-1.94896e-16
0.0168001
6.1982e-08
-3.62938e-16
0.0168002
1.5686e-07
-8.8836e-16
0.0168005
3.47078e-07
-1.68733e-15
0.0168007
8.77391e-07
-4.42157e-15
0.0168023
1.93969e-06
-8.71378e-15
0.0168037
4.95405e-06
-2.42901e-14
0.0168138
1.08378e-05
-4.79202e-14
0.0168194
2.92492e-05
-1.42344e-13
0.0168916
6.20384e-05
-2.77254e-13
0.0169262
0.000187599
-7.90035e-13
0.0174728
0.000436234
-2.1894e-12
0.0184534
0.00152495
-4.53543e-12
0.0227491
0.00442594
-1.23725e-11
0.0263386
0.0147623
-2.27991e-11
0.0263498
0.0199789
-1.34531e-11
0.0260645
0.0198834
-1.61949e-11
0.0190551
-2.15265e-11
0.0256977
0.0168001
4.6912e-12
-1.05032e-19
0.0168001
6.86432e-11
-7.27601e-19
0.0168001
1.52491e-10
-1.73726e-18
0.0168001
6.07856e-10
-5.08559e-18
0.0168001
1.10701e-09
-1.06023e-17
0.0168001
3.74404e-09
-2.87195e-17
0.0168001
6.57193e-09
-5.65742e-17
0.0168001
2.13976e-08
-1.42731e-16
0.0168001
3.72888e-08
-2.68398e-16
0.0168001
1.20295e-07
-6.55306e-16
0.0168003
2.09089e-07
-1.24479e-15
0.0168005
6.74573e-07
-3.20777e-15
0.0168012
1.16678e-06
-6.34622e-15
0.0168023
3.80246e-06
-1.73371e-14
0.0168066
6.46802e-06
-3.44375e-14
0.0168135
2.20827e-05
-1.00927e-13
0.0168398
3.53991e-05
-1.8612e-13
0.0168855
0.000140229
-6.87959e-13
0.0170962
0.000223991
-1.04367e-12
0.0175976
0.00101656
-4.76826e-12
0.0193591
0.00265057
-1.0235e-11
0.0252967
0.00877858
-2.79866e-11
0.026786
0.0184371
-2.1195e-11
0.026717
0.01986
-2.95584e-11
0.019046
-3.86961e-11
0.0265996
0.0168001
5.53371e-12
-9.91029e-20
0.0168001
3.3482e-11
-1.26886e-18
0.0168001
1.22139e-10
-6.3951e-19
0.0168001
3.17785e-10
-3.17299e-18
0.0168001
8.61787e-10
-8.74223e-18
0.0168001
1.98299e-09
-1.79647e-17
0.0168001
5.06201e-09
-4.77117e-17
0.0168001
1.13428e-08
-9.30525e-17
0.0168001
2.85407e-08
-2.32854e-16
0.0168001
6.35642e-08
-4.38356e-16
0.0168002
1.59376e-07
-1.09897e-15
0.0168005
3.54292e-07
-2.12332e-15
0.0168008
8.88507e-07
-5.66859e-15
0.0168026
1.97421e-06
-1.13115e-14
0.0168039
4.98773e-06
-3.14545e-14
0.0168149
1.10416e-05
-6.36282e-14
0.0168206
2.9001e-05
-1.81739e-13
0.0168965
6.36223e-05
-3.70901e-13
0.016936
0.000181207
-1.02083e-12
0.017501
0.000446646
-2.87655e-12
0.0186508
0.00148669
-6.22956e-12
0.023011
0.00437951
-1.75424e-11
0.0269689
0.01442
-3.38885e-11
0.0273996
0.0192518
-5.70035e-11
0.0187043
-6.06728e-11
0.0275517
0.0168001
3.92828e-12
-7.45389e-20
0.0168001
2.14718e-11
-1.90582e-18
0.0168001
7.96567e-11
-3.66765e-19
0.0168001
2.04988e-10
-1.68051e-18
0.0168001
5.57976e-10
-6.86436e-18
0.0168001
1.27763e-09
-1.39422e-17
0.0168001
3.26236e-09
-3.76218e-17
0.0168001
7.27937e-09
-7.39155e-17
0.0168001
1.83033e-08
-1.89591e-16
0.0168001
4.05901e-08
-3.60923e-16
0.0168002
1.01637e-07
-9.19513e-16
0.0168003
2.24935e-07
-1.78376e-15
0.0168006
5.62773e-07
-4.79592e-15
0.0168013
1.24313e-06
-9.61301e-15
0.0168031
3.12276e-06
-2.69484e-14
0.0168071
6.86356e-06
-5.39708e-14
0.0168178
1.76993e-05
-1.59998e-13
0.0168425
3.81797e-05
-3.0295e-13
0.0169099
0.000110046
-1.08519e-12
0.0171182
0.000234488
-1.82983e-12
0.0177415
0.000845494
-7.83875e-12
0.0197816
0.00231405
-1.7995e-11
0.0258774
0.0081973
-5.34155e-11
0.0275053
0.0174375
-6.88371e-11
0.0175374
-7.55645e-11
0.0284524
0.0168001
2.54147e-12
-5.2516e-20
0.0168001
1.36642e-11
-1.85839e-18
0.0168001
5.01736e-11
-8.41104e-19
0.0168001
1.29929e-10
-1.17653e-18
0.0168001
3.49823e-10
-4.70866e-18
0.0168001
8.06353e-10
-1.12452e-17
0.0168001
2.03475e-09
-3.12674e-17
0.0168001
4.568e-09
-6.24145e-17
0.0168001
1.13538e-08
-1.66467e-16
0.0168001
2.53194e-08
-3.22277e-16
0.0168001
6.27517e-08
-8.41899e-16
0.0168002
1.3963e-07
-1.64191e-15
0.0168004
3.46286e-07
-4.45912e-15
0.0168009
7.69525e-07
-8.94316e-15
0.0168019
1.91137e-06
-2.51903e-14
0.0168044
4.25663e-06
-5.05164e-14
0.0168109
1.05194e-05
-1.47562e-13
0.0168241
2.41073e-05
-2.92667e-13
0.0168715
5.88778e-05
-9.10562e-13
0.0169517
0.000149058
-1.85592e-12
0.0173772
0.000400804
-6.16236e-12
0.0184657
0.0011951
-1.51679e-11
0.0224346
0.00413584
-4.3425e-11
0.0268469
0.0127479
-1.01044e-10
0.0151407
-7.25192e-11
0.0290403
0.0168001
2.11542e-12
-6.35275e-20
0.0168001
5.94349e-12
-1.74319e-18
0.0168001
3.553e-11
-7.30989e-19
0.0168001
6.06443e-11
-1.36965e-18
0.0168001
2.42539e-10
-2.75116e-18
0.0168001
3.77655e-10
-8.52877e-18
0.0168001
1.39621e-09
-2.59429e-17
0.0168001
2.11428e-09
-5.21569e-17
0.0168001
7.7215e-09
-1.51495e-16
0.0168001
1.15058e-08
-2.99701e-16
0.0168001
4.22193e-08
-7.89104e-16
0.0168002
6.18914e-08
-1.53642e-15
0.0168003
2.29891e-07
-4.01788e-15
0.0168007
3.29572e-07
-7.83055e-15
0.0168012
1.25252e-06
-2.25989e-14
0.0168036
1.73598e-06
-3.93312e-14
0.0168062
7.04176e-06
-1.53823e-13
0.0168204
8.63605e-06
-1.8288e-13
0.0168315
4.38782e-05
-1.04889e-12
0.0169244
4.35018e-05
-1.74435e-12
0.0170201
0.000289739
-6.51391e-12
0.0177484
0.000408717
-1.96271e-11
0.0198394
0.00197483
-5.21659e-11
0.0251539
0.00695001
-1.60348e-10
0.0119574
-6.19455e-11
0.028249
0.0168001
4.82225e-13
-4.15046e-20
0.0168001
6.345e-12
-1.80672e-18
0.0168001
1.24595e-11
-6.06476e-19
0.0168001
5.60572e-11
-1.70847e-18
0.0168001
8.87512e-11
-2.02187e-18
0.0168001
3.42481e-10
-1.03601e-17
0.0168001
5.14544e-10
-2.10411e-17
0.0168001
1.93063e-09
-5.93524e-17
0.0168001
2.83702e-09
-1.1839e-16
0.0168001
1.06858e-08
-3.17061e-16
0.0168001
1.54233e-08
-6.21412e-16
0.0168001
5.89655e-08
-1.63293e-15
0.0168002
8.31261e-08
-3.23809e-15
0.0168002
3.25886e-07
-8.84813e-15
0.0168009
4.34322e-07
-1.7659e-14
0.0168006
1.84728e-06
-5.0403e-14
0.0168052
2.07809e-06
-9.67517e-14
0.0168015
1.08016e-05
-3.12523e-13
0.0168344
9.4931e-06
-5.16726e-13
0.016806
6.29886e-05
-2.05691e-12
0.0170281
5.71484e-05
-3.81357e-12
0.0170002
0.000400233
-1.40687e-11
0.0182453
0.000659311
-3.79022e-11
0.0217158
0.00323788
-1.00167e-10
0.0080309
-1.32387e-10
0.0253315
0.0168001
7.92647e-13
-4.40457e-20
0.0168001
1.25321e-12
-1.64748e-18
0.0168001
1.187e-11
-5.58195e-19
0.0168001
1.34805e-11
-1.01644e-18
0.0168001
7.93972e-11
-1.61953e-18
0.0168001
8.10227e-11
-6.32395e-18
0.0168001
4.43651e-10
-1.78427e-17
0.0168001
4.20074e-10
-3.55398e-17
0.0168001
2.35306e-09
-1.00076e-16
0.0168001
2.04798e-09
-1.96121e-16
0.0168001
1.22196e-08
-5.47256e-16
0.0168001
9.51158e-09
-1.07333e-15
0.0168001
6.30251e-08
-3.02429e-15
0.0168004
4.15487e-08
-6.06127e-15
0.0168004
3.40768e-07
-1.78304e-14
0.016802
1.20801e-07
-3.33705e-14
0.0168013
2.17435e-06
-1.15737e-13
0.0168116
-2.87409e-07
-1.90658e-13
0.0168015
1.61192e-05
-7.39912e-13
0.0168644
-5.31617e-06
-1.32888e-12
0.0167886
0.000114564
-4.97893e-12
0.0171291
2.00227e-05
-1.33968e-11
0.0172514
0.000540963
-3.91636e-11
0.0188456
0.00130492
-1.14714e-10
0.00541446
-1.65553e-10
0.0209932
0.0168001
2.55491e-13
-3.30343e-20
0.0168001
1.85221e-12
-1.08166e-18
0.0168001
5.72267e-12
-1.53144e-18
0.0168001
1.69579e-11
-1.44504e-18
0.0168001
4.02611e-11
-4.0107e-18
0.0168001
1.04296e-10
-1.33357e-17
0.0168001
2.35426e-10
-2.75184e-17
0.0168001
5.86261e-10
-7.17987e-17
0.0168001
1.31044e-09
-1.42034e-16
0.0168001
3.19827e-09
-3.46453e-16
0.0168001
7.13099e-09
-6.67728e-16
0.0168
1.7108e-08
-1.64837e-15
0.0168001
3.79992e-08
-3.1953e-15
0.0168
8.97935e-08
-8.47377e-15
0.0168001
1.99007e-07
-1.65579e-14
0.0167995
4.61615e-07
-4.68585e-14
0.0168003
1.04876e-06
-8.96301e-14
0.0167962
2.41886e-06
-2.85263e-13
0.0168054
5.66599e-06
-4.85348e-13
0.0167779
1.37987e-05
-1.8818e-12
0.0168509
3.22078e-05
-3.63616e-12
0.0167279
0.000101431
-1.36072e-11
0.0169872
0.000244776
-3.66047e-11
0.0168818
0.00107936
-1.20573e-10
0.00409842
-1.85696e-10
0.0177397
0.0168001
-9.48743e-14
-3.38813e-20
0.0168001
2.54366e-12
-2.76133e-19
0.0168001
1.73717e-12
-1.43657e-18
0.0168001
2.09526e-11
-1.29173e-18
0.0168001
1.35944e-11
-4.25888e-18
0.0168001
1.29075e-10
-1.28927e-17
0.0168001
8.22542e-11
-2.69128e-17
0.0168001
7.55215e-10
-7.62592e-17
0.0168001
4.79159e-10
-1.53597e-16
0.0168001
4.41958e-09
-4.29157e-16
0.0168001
2.82829e-09
-8.57566e-16
0.0168
2.62192e-08
-2.33018e-15
0.0168
1.69832e-08
-4.83458e-15
0.0167999
1.57065e-07
-1.27292e-14
0.0167999
1.00069e-07
-2.64621e-14
0.0167991
9.58472e-07
-6.46952e-14
0.0167994
4.82962e-07
-1.35795e-13
0.0167943
6.16058e-06
-3.01709e-13
0.016797
-1.37093e-08
-8.62945e-13
0.0167634
4.02677e-05
-1.47661e-12
0.0167925
-1.34384e-05
-4.40424e-12
0.0166144
0.000237431
-1.2409e-11
0.0166962
0.000108017
-3.68659e-11
0.0162383
0.00124001
-1.25154e-10
0.00367111
-1.99379e-10
0.0161943
0.0168001
3.25804e-13
-5.50571e-20
0.0168001
4.39712e-13
-1.66865e-19
0.0168001
5.10575e-12
-6.64074e-19
0.0168001
4.43592e-12
-1.43233e-18
0.0168001
3.46609e-11
-3.9531e-18
0.0168001
2.78893e-11
-8.14846e-18
0.0168001
2.0291e-10
-2.25319e-17
0.0168001
1.58392e-10
-4.30504e-17
0.0168001
1.15358e-09
-1.12102e-16
0.0168001
8.7902e-10
-2.17992e-16
0.0168001
6.55281e-09
-5.39671e-16
0.0168001
4.83634e-09
-1.02693e-15
0.0168
3.75273e-08
-2.61107e-15
0.0168002
2.55044e-08
-4.90154e-15
0.0168
2.29976e-07
-1.43799e-14
0.0168007
7.18425e-08
-1.84011e-14
0.0167991
1.64095e-06
-1.1095e-13
0.0168056
-5.51392e-07
-6.6108e-14
0.016791
1.10689e-05
-8.19786e-13
0.0168347
-5.26026e-06
-8.37053e-13
0.0167405
6.44828e-05
-4.69327e-12
0.0169411
-3.3999e-06
-1.26041e-11
0.0166679
0.000317434
-3.01304e-11
0.0170112
0.000561903
-1.30003e-10
0.00316004
-2.04477e-10
0.0170504
0.0168001
-2.40783e-13
-1.60936e-20
0.0168001
1.22244e-12
-1.1003e-18
0.0168001
-9.87988e-13
1.04185e-19
0.0168001
9.37814e-12
-1.97528e-18
0.0168001
-5.76006e-12
-4.04543e-18
0.0168001
5.53702e-11
-1.20643e-17
0.0168001
-3.88117e-11
-2.1917e-17
0.0168001
3.05189e-10
-6.19681e-17
0.0168001
-2.82565e-10
-1.2111e-16
0.0168001
1.64238e-09
-3.28253e-16
0.0168001
-2.1879e-09
-6.33841e-16
0.0168001
8.7734e-09
-1.78844e-15
0.0168001
-1.60073e-08
-3.6098e-15
0.0168
4.93158e-08
-1.03638e-14
0.0168003
-1.16014e-07
-2.35998e-14
0.0167997
3.33815e-07
-5.63448e-14
0.0168017
-8.57829e-07
-1.5817e-13
0.0167963
2.95298e-06
-3.12655e-13
0.0168111
-6.12957e-06
-8.13348e-13
0.0167652
2.89142e-05
-2.29366e-12
0.0168591
-4.15536e-05
-5.40531e-12
0.016607
0.000196155
-1.29348e-11
0.016944
-9.93575e-06
-4.47911e-11
0.0162694
0.000926635
-1.09617e-10
0.00275656
-1.7998e-10
0.0161677
0.0168001
1.17975e-13
-4.40457e-20
0.0168001
6.78195e-13
-1.00797e-18
0.0168001
2.47894e-12
3.47284e-20
0.0168001
6.37633e-12
-1.62546e-18
0.0168001
1.73538e-11
-4.61294e-18
0.0168001
3.98003e-11
-1.0272e-17
0.0168001
1.02209e-10
-2.53856e-17
0.0168001
2.29119e-10
-5.26287e-17
0.0168001
5.77477e-10
-1.39395e-16
0.0168001
1.28872e-09
-2.69549e-16
0.0168001
3.19559e-09
-6.70914e-16
0.0168
7.09573e-09
-1.27367e-15
0.0168
1.72889e-08
-3.25182e-15
0.0168
3.78041e-08
-6.30973e-15
0.0167997
9.16445e-08
-1.8038e-14
0.0167997
1.94551e-07
-3.55155e-14
0.0167978
4.82944e-07
-1.15375e-13
0.016799
9.69846e-07
-2.14945e-13
0.0167861
2.64386e-06
-7.63424e-13
0.0168059
5.16017e-06
-1.38247e-12
0.0167302
1.56849e-05
-4.63431e-12
0.0168446
3.96217e-05
-1.39202e-11
0.0166478
0.000126186
-2.61118e-11
0.0168095
0.000442995
-1.24694e-10
0.00209846
-1.46835e-10
0.0169795
0.0168001
4.75483e-13
-7.03037e-20
0.0168001
2.50762e-13
-2.11758e-19
0.0168001
6.26197e-12
-8.55503e-19
0.0168001
3.4559e-12
-1.63139e-18
0.0168001
4.25747e-11
-4.83995e-18
0.0168001
2.33356e-11
-9.63669e-18
0.0168001
2.55794e-10
-2.93336e-17
0.0168001
1.39997e-10
-5.84571e-17
0.0168001
1.50675e-09
-1.72928e-16
0.0168001
8.1881e-10
-3.34675e-16
0.0168
8.86374e-09
-8.69924e-16
0.0168
4.65847e-09
-1.67426e-15
0.0168
5.20608e-08
-4.2178e-15
0.0168
2.33025e-08
-8.31946e-15
0.0167996
3.1114e-07
-2.16214e-14
0.0167996
7.36224e-08
-4.15518e-14
0.0167976
1.90281e-06
-1.2186e-13
0.0167984
-6.66928e-07
-2.01431e-13
0.0167856
1.16114e-05
-8.24255e-13
0.0168036
-1.60372e-05
-1.1849e-12
0.0167232
7.49975e-05
-5.03321e-12
0.0168373
-0.00010649
-1.28896e-11
0.0166019
0.000285673
-2.55908e-11
0.0167017
5.06857e-05
-1.16219e-10
0.00126061
-1.6504e-10
0.0170204
0.0168001
-3.91744e-14
-7.28448e-20
0.0168001
1.0625e-12
-1.93124e-19
0.0168001
6.38721e-13
-6.40357e-19
0.0168001
8.85893e-12
-1.78724e-18
0.0168001
5.04598e-12
-3.80402e-18
0.0168001
5.33901e-11
-1.19017e-17
0.0168001
2.6459e-11
-2.34594e-17
0.0168001
2.99406e-10
-7.89037e-17
0.0168001
1.18877e-10
-1.55135e-16
0.0168001
1.65786e-09
-4.72428e-16
0.0168001
4.48285e-10
-9.00735e-16
0.0168
9.22197e-09
-2.4267e-15
0.0168001
9.71585e-10
-4.83607e-15
0.0168
5.30174e-08
-1.26392e-14
0.0168002
-1.31322e-08
-2.79821e-14
0.0167996
3.54557e-07
-6.07383e-14
0.0168012
-3.18908e-07
-1.59459e-13
0.0167959
2.65112e-06
-2.77211e-13
0.0168081
-3.32546e-06
-7.66811e-13
0.0167644
1.56697e-05
-2.111e-12
0.01685
-2.21532e-05
-4.7729e-12
0.016602
8.60156e-05
-1.0962e-11
0.0169514
-3.63318e-05
-3.60963e-11
0.0163622
0.000354293
-9.43544e-11
0.00103869
-1.69136e-10
0.0160903
0.0168001
2.11588e-13
-3.55754e-20
0.0168001
7.41191e-14
-2.47334e-19
0.0168001
2.9665e-12
-7.41154e-19
0.0168001
1.22831e-12
-1.67374e-18
0.0168001
1.89941e-11
-5.39984e-18
0.0168001
5.58415e-12
-1.10148e-17
0.0168001
1.02974e-10
-3.73381e-17
0.0168001
1.12908e-11
-7.54418e-17
0.0168001
5.28948e-10
-2.22327e-16
0.0168001
-8.05509e-11
-4.21921e-16
0.0168001
2.64177e-09
-1.07604e-15
0.0168001
-1.37684e-09
-2.09033e-15
0.0168
1.29762e-08
-5.5844e-15
0.0168
-1.4209e-08
-1.15574e-14
0.0167998
7.26637e-08
-2.92603e-14
0.0168001
-1.63438e-07
-6.52348e-14
0.0167984
5.74678e-07
-1.41168e-13
0.0168015
-1.6982e-06
-3.23837e-13
0.0167895
4.60576e-06
-7.41885e-13
0.0168106
-1.10371e-05
-1.47491e-12
0.0167428
2.78175e-05
-4.56868e-12
0.0168535
-5.82061e-05
-1.18125e-11
0.0166631
0.000101595
-2.62381e-11
0.0168471
-5.39839e-05
-9.6893e-11
0.000386555
-1.51997e-10
0.0170566
0.0168001
-2.81461e-13
-7.28448e-20
0.0168001
6.61466e-13
-1.24768e-18
0.0168001
-2.49233e-12
-2.42251e-19
0.0168001
4.37352e-12
-3.20856e-18
0.0168001
-1.75129e-11
-6.78643e-18
0.0168001
2.18951e-11
-1.85856e-17
0.0168001
-1.19504e-10
-3.93506e-17
0.0168001
9.22684e-11
-9.15702e-17
0.0168001
-8.03457e-10
-1.80224e-16
0.0168001
2.98104e-10
-4.09272e-16
0.0168001
-5.28902e-09
-7.72963e-16
0.0168
7.70575e-10
-1.91454e-15
0.0168001
-3.39199e-08
-3.81763e-15
0.0168
4.4223e-09
-1.10477e-14
0.0168002
-2.18143e-07
-2.42757e-14
0.0167995
8.6751e-08
-6.69489e-14
0.0168007
-1.42936e-06
-1.53422e-13
0.0167951
1.8043e-06
-3.40703e-13
0.0168059
-9.32809e-06
-8.58436e-13
0.0167618
2.15862e-05
-2.21852e-12
0.0168413
-6.19893e-05
-4.89422e-12
0.0166012
0.000136735
-1.03151e-11
0.0169077
-0.000180775
-3.02959e-11
0.0163958
0.00028113
-5.78352e-11
0.00035754
-7.03918e-11
0.0160493
0.0168001
3.40963e-14
-7.36919e-20
0.0168001
1.57558e-13
-1.12401e-18
0.0168001
5.23713e-13
-3.37119e-19
0.0168001
9.79076e-13
-2.49282e-18
0.0168001
2.07956e-12
-6.7085e-18
0.0168001
6.19814e-13
-1.38778e-17
0.0168001
-2.1131e-12
-3.59574e-17
0.0168001
-2.40928e-11
-6.91196e-17
0.0168001
-7.73446e-11
-1.74562e-16
0.0168001
-2.88399e-10
-3.40596e-16
0.0168
-8.08716e-10
-8.9706e-16
0.0168
-2.45822e-09
-1.78999e-15
0.0168
-6.42937e-09
-4.96972e-15
0.0168
-1.65971e-08
-1.00942e-14
0.0167996
-4.62805e-08
-2.766e-14
0.0167996
-8.50384e-08
-5.60622e-14
0.0167977
-2.98129e-07
-1.46953e-13
0.0167989
-2.97108e-07
-2.90087e-13
0.016787
-1.35269e-06
-7.80278e-13
0.0168055
-1.53713e-06
-1.41497e-12
0.0167331
-5.55083e-06
-4.13922e-12
0.0168578
-9.65766e-06
-1.05137e-11
0.0166561
-2.11236e-05
-1.88332e-11
0.0168548
-6.93081e-05
-7.23358e-11
-7.19512e-05
-5.94078e-11
0.0169349
0.0168001
4.114e-13
-1.21126e-19
0.0168001
-1.03868e-12
-4.1674e-19
0.0168001
3.40363e-12
-1.36288e-18
0.0168001
-7.49239e-12
-3.03661e-18
0.0168001
2.10188e-11
-8.44661e-18
0.0168001
-4.95727e-11
-1.77487e-17
0.0168001
1.15256e-10
-4.60371e-17
0.0168001
-3.23018e-10
-9.34015e-17
0.0168001
6.14218e-10
-2.26636e-16
0.0168001
-2.06885e-09
-4.45461e-16
0.0168
3.27298e-09
-1.07587e-15
0.0168001
-1.30919e-08
-2.13166e-15
0.0168
1.77608e-08
-5.25384e-15
0.0168
-8.27224e-08
-1.03888e-14
0.0167997
1.00706e-07
-2.57304e-14
0.0168
-5.38488e-07
-5.07483e-14
0.0167981
7.33902e-07
-1.23564e-13
0.0168007
-4.13035e-06
-2.74056e-13
0.016788
7.84441e-06
-6.08673e-13
0.0168169
-3.53457e-05
-1.29291e-12
0.0167297
6.83336e-05
-3.374e-12
0.0169175
-0.000217598
-9.11669e-12
0.0166578
0.000200575
-1.69737e-11
0.0169302
-0.000462116
-6.09357e-11
-0.000320154
-7.10753e-11
0.0168125
0.0168001
5.71724e-14
-8.63974e-20
0.0168001
-5.34534e-13
-5.72594e-19
0.0168001
-1.92384e-13
-1.5001e-18
0.0168001
-4.433e-12
-4.16232e-18
0.0168001
-2.24808e-12
-9.00989e-18
0.0168001
-2.93131e-11
-2.33815e-17
0.0168001
-2.1382e-11
-4.80047e-17
0.0168001
-1.90575e-10
-1.16509e-16
0.0168001
-1.84672e-10
-2.28596e-16
0.0168001
-1.23268e-09
-5.46677e-16
0.0168001
-1.42026e-09
-1.07322e-15
0.0168
-7.84133e-09
-2.68128e-15
0.0168
-1.00299e-08
-5.41647e-15
0.0167999
-4.82302e-08
-1.28266e-14
0.0168
-6.32527e-08
-2.58143e-14
0.0167993
-2.75539e-07
-5.7842e-14
0.0168
-3.54041e-07
-1.3512e-13
0.0167956
-1.44669e-06
-2.30527e-13
0.0168008
-1.03306e-06
-7.09388e-13
0.0167683
-8.27941e-06
-1.10791e-12
0.0168156
6.05992e-06
-2.7703e-12
0.0166285
-5.06709e-05
-5.79417e-12
0.0167783
2.02946e-05
-1.57565e-11
0.0164596
-0.000148019
-5.06501e-11
-0.000232575
-6.58974e-11
0.0160756
0.0168001
-4.99749e-20
0.0168001
-5.94617e-19
0.0168001
-1.30528e-18
0.0168001
-4.32664e-18
0.0168001
-8.9938e-18
0.0168001
-2.43158e-17
0.0168001
-4.96285e-17
0.0168001
-1.23762e-16
0.0168001
-2.44439e-16
0.0168001
-5.83377e-16
0.0168
-1.14949e-15
0.0168
-2.722e-15
0.0168
-5.41493e-15
0.0167999
-1.22076e-14
0.0167997
-2.37901e-14
0.0167991
-4.81956e-14
0.0167984
-9.16448e-14
0.0167956
-2.16525e-13
0.0167928
-4.09635e-13
0.0167792
-1.01763e-12
0.0167774
-2.14745e-12
0.0167123
-5.05854e-12
0.0166909
-1.23052e-11
0.0165663
-3.45772e-11
-5.58246e-11
0.0160344
0.0168001
1.05811e-09
2.63038e-17
0.0168001
5.75484e-09
1.50238e-16
0.0168001
1.98961e-08
3.27867e-16
0.0168001
5.54822e-08
8.33581e-16
0.0168002
1.41041e-07
1.61168e-15
0.0168001
3.52333e-07
4.21611e-15
0.0168008
8.43774e-07
8.04592e-15
0.0168
2.10472e-06
2.4697e-14
0.0168047
4.88831e-06
3.72953e-14
0.0167977
1.31011e-05
1.79324e-13
0.0168351
3.04103e-05
1.96496e-13
0.0167784
8.66152e-05
1.18782e-12
0.0170226
0.000236704
2.66802e-12
0.0168036
0.000840212
6.06394e-12
0.0178047
0.00274757
2.51549e-11
0.0175526
0.0126441
4.0603e-11
0.0167824
0.013428
6.11857e-12
0.0154409
0.0131342
3.87411e-12
0.014404
0.0133598
3.66837e-12
0.0134364
0.0141875
3.61407e-12
0.0125727
0.0155016
3.36848e-12
0.0116279
0.017211
2.91503e-12
0.0107944
0.0193532
2.45053e-12
0.0107822
0.0218524
2.18095e-12
0.0234331
2.25364e-12
0.0162968
0.0168001
8.47293e-10
2.78589e-17
0.0168001
6.56504e-09
1.60827e-16
0.0168001
2.00105e-08
3.49078e-16
0.0168001
6.05045e-08
9.04856e-16
0.0168
1.43162e-07
1.76439e-15
0.0168
3.82251e-07
4.69231e-15
0.0168
8.62293e-07
9.38027e-15
0.0167998
2.23719e-06
2.60213e-14
0.0167996
5.10988e-06
5.30853e-14
0.0167997
1.28129e-05
1.5012e-13
0.0167994
3.07195e-05
3.11153e-13
0.0168051
8.00484e-05
8.87142e-13
0.0168226
0.000218722
2.3569e-12
0.0169198
0.00074
6.45785e-12
0.0173336
0.00232689
1.9723e-11
0.0177428
0.012216
4.45231e-11
0.016983
0.0141852
3.44361e-12
0.0160478
0.0140678
2.12637e-12
0.0152113
0.0141946
2.95584e-12
0.0144022
0.0149954
3.45929e-12
0.0137311
0.0161719
3.23397e-12
0.0132258
0.0177156
2.81425e-12
0.0130622
0.0195159
2.2742e-12
0.0139092
0.0210045
2.43372e-12
0.0214732
2.68377e-12
0.0158681
0.0168001
7.68712e-10
2.61979e-17
0.0168001
5.96386e-09
1.51926e-16
0.0168001
1.83568e-08
3.30223e-16
0.0168001
5.52799e-08
8.56548e-16
0.0168001
1.30944e-07
1.67452e-15
0.0168001
3.47512e-07
4.44379e-15
0.0168002
7.81582e-07
8.95872e-15
0.0168004
2.03808e-06
2.44627e-14
0.016801
4.49896e-06
5.18529e-14
0.0168015
1.217e-05
1.36639e-13
0.0168061
2.61122e-05
2.94075e-13
0.0168051
8.01949e-05
8.68522e-13
0.0168368
0.000186673
2.10283e-12
0.0168599
0.000714114
5.40792e-12
0.0170885
0.00209225
1.80495e-11
0.0179898
0.0112948
4.65812e-11
0.0173945
0.0147792
1.43352e-12
0.0166557
0.0148053
1.28501e-12
0.0159693
0.0148795
2.08469e-12
0.0153689
0.015594
3.18014e-12
0.0148629
0.0166764
3.01249e-12
0.0146585
0.017919
2.63099e-12
0.0149844
0.0191894
2.39784e-12
0.0159234
0.0200646
2.6074e-12
0.0201919
2.90156e-12
0.0172038
0.0168001
6.1576e-10
2.18882e-17
0.0168001
5.35028e-09
1.2811e-16
0.0168001
1.64037e-08
2.78909e-16
0.0168001
4.91282e-08
7.16394e-16
0.0168001
1.16279e-07
1.37748e-15
0.0168001
3.05499e-07
3.62183e-15
0.0168002
6.83225e-07
7.09697e-15
0.0168004
1.79546e-06
2.01998e-14
0.0168012
3.73265e-06
3.74051e-14
0.0168019
1.13907e-05
1.2668e-13
0.0168084
1.95365e-05
2.07218e-13
0.0168059
8.19617e-05
8.24426e-13
0.0168434
0.000148822
1.50814e-12
0.0168601
0.000694832
6.40913e-12
0.0171211
0.00182715
1.60903e-11
0.0187
0.00969529
4.74105e-11
0.0180831
0.015396
7.56656e-13
0.0172279
0.0156602
4.00337e-13
0.016678
0.0154283
1.21346e-12
0.0162968
0.0159741
2.86162e-12
0.0160327
0.0169389
2.89933e-12
0.0160079
0.0179426
2.53843e-12
0.0163524
0.018844
2.40078e-12
0.0171398
0.0192763
2.64759e-12
0.0191645
3.26748e-12
0.0181661
0.0168001
1.79074e-10
2.01543e-17
0.0168001
6.9844e-09
1.19863e-16
0.0168001
1.08341e-08
2.60959e-16
0.0168001
6.02312e-08
6.76978e-16
0.0168001
8.08407e-08
1.30526e-15
0.0168
3.75283e-07
3.46678e-15
0.0168002
4.86226e-07
6.86359e-15
0.0167998
2.22078e-06
1.94072e-14
0.0168008
2.71508e-06
3.84019e-14
0.0167983
1.37202e-05
1.17446e-13
0.0168041
1.36583e-05
2.19003e-13
0.0167905
9.50137e-05
8.19095e-13
0.0168544
8.45248e-05
1.39038e-12
0.0168445
0.000701985
6.19721e-12
0.0173426
0.00132602
1.52693e-11
0.0204818
0.0065323
4.99766e-11
0.019247
0.0166309
4.38257e-12
0.018341
0.0165658
1.98931e-12
0.0175327
0.0162365
5.5604e-13
0.0171442
0.0163613
2.34355e-12
0.0170482
0.017034
2.59384e-12
0.0171647
0.017825
2.41206e-12
0.0174837
0.0185243
2.30931e-12
0.0180507
0.0187086
2.55441e-12
0.0183539
3.04638e-12
0.0188606
0.0168001
5.56819e-10
1.78021e-17
0.0168001
3.72439e-09
7.29507e-17
0.0168001
1.3157e-08
2.11661e-16
0.0168001
3.51987e-08
4.15986e-16
0.0168001
9.38783e-08
1.03388e-15
0.0168002
2.21424e-07
1.98511e-15
0.0168001
5.60353e-07
5.24571e-15
0.0168011
1.28885e-06
1.00339e-14
0.0168005
3.28331e-06
3.10081e-14
0.0168068
7.40718e-06
4.76062e-14
0.0168001
2.01209e-05
2.23945e-13
0.01685
4.51478e-05
2.59289e-13
0.016802
0.000131424
1.42431e-12
0.0171538
0.000348985
3.48068e-12
0.0172894
0.00118787
6.69019e-12
0.0198366
0.00397083
2.70484e-11
0.0203622
0.0160954
2.33771e-11
0.0196044
0.0173221
6.22563e-12
0.0185417
0.0172979
4.49971e-12
0.0180339
0.0168685
2.01756e-12
0.0178977
0.0171691
2.26255e-12
0.0180562
0.0176652
2.40634e-12
0.018433
0.0181465
2.2721e-12
0.0188624
0.0182782
2.46991e-12
0.0178128
2.91441e-12
0.0194026
0.0168001
6.58234e-10
1.71855e-17
0.0168001
3.42855e-09
7.04333e-17
0.0168001
1.27761e-08
2.06694e-16
0.0168001
3.27037e-08
4.06175e-16
0.0168001
9.00478e-08
1.02757e-15
0.0168001
2.07181e-07
1.98814e-15
0.0168001
5.37968e-07
5.31406e-15
0.0168002
1.20906e-06
1.06211e-14
0.0168003
3.0896e-06
2.97473e-14
0.0168008
6.96385e-06
6.00075e-14
0.0168029
1.78074e-05
1.7477e-13
0.0168083
3.97066e-05
3.47445e-13
0.0168249
0.000113889
1.06173e-12
0.0169008
0.000272526
2.55902e-12
0.0171071
0.000978096
7.47677e-12
0.0181007
0.00296868
2.14961e-11
0.0202249
0.0139483
5.01455e-11
0.0199675
0.0175755
7.76619e-12
0.0194471
0.0178163
5.12759e-12
0.0189006
0.0174149
1.3446e-12
0.0186861
0.0173824
2.04643e-12
0.0187445
0.0176055
2.41085e-12
0.0190957
0.017794
2.45148e-12
0.0195389
0.0178345
2.35492e-12
0.017427
3.04743e-12
0.0199228
0.0168001
8.05478e-10
1.34551e-17
0.0168001
2.00004e-09
5.58347e-17
0.0168001
1.30195e-08
1.65163e-16
0.0168001
2.1084e-08
3.24744e-16
0.0168001
9.02602e-08
8.13499e-16
0.0168001
1.3546e-07
1.55314e-15
0.0168001
5.39436e-07
4.11758e-15
0.0168006
7.7717e-07
8.03061e-15
0.0168004
3.2277e-06
2.35005e-14
0.0168033
4.01112e-06
4.26639e-14
0.0168003
2.07546e-05
1.51823e-13
0.0168211
1.87799e-05
2.43557e-13
0.0167933
0.000140905
9.94363e-13
0.0169323
0.00013298
1.84643e-12
0.0168745
0.00103285
7.64125e-12
0.0176027
0.00223575
1.88725e-11
0.0203539
0.0111739
5.09807e-11
0.0203861
0.017543
1.93463e-12
0.0200446
0.0181565
7.91085e-13
0.019609
0.0178507
1.67594e-14
0.0194639
0.017528
1.46529e-12
0.0194645
0.0176044
1.9987e-12
0.0196321
0.0176253
2.32838e-12
0.0199999
0.0174651
2.75317e-12
0.0170717
3.12621e-12
0.0203549
0.0168001
3.15163e-10
7.97058e-18
0.0168001
2.18646e-09
4.97378e-17
0.0168001
6.96514e-09
1.12066e-16
0.0168001
2.04817e-08
2.86779e-16
0.0168001
4.93808e-08
5.42484e-16
0.0168001
1.27533e-07
1.35761e-15
0.0168004
2.90588e-07
2.50817e-15
0.0168004
7.47462e-07
7.68377e-15
0.016802
1.61408e-06
1.04848e-14
0.0168013
4.66533e-06
5.75632e-14
0.0168131
9.00232e-06
4.87132e-14
0.0168012
3.02867e-05
4.2769e-13
0.0168828
5.93702e-05
5.22004e-13
0.0168126
0.000201346
2.60308e-12
0.0173141
0.000529491
6.05095e-12
0.0177089
0.0018361
1.88477e-11
0.0221947
0.00666111
5.61909e-11
0.0215717
0.0181634
8.88526e-12
0.0212024
0.0185276
-1.84879e-12
0.0205724
0.0184809
-1.17788e-12
0.0202077
0.0178931
2.49705e-13
0.0201732
0.0176391
1.49917e-12
0.0202391
0.0175595
2.16451e-12
0.0204252
0.0172778
3.14021e-12
0.016806
3.60227e-12
0.0206893
0.0168001
1.11012e-10
8.05359e-18
0.0168001
2.47574e-09
5.13327e-17
0.0168001
4.62901e-09
1.14805e-16
0.0168001
2.16149e-08
3.01694e-16
0.0168001
3.4109e-08
5.74689e-16
0.0168001
1.34464e-07
1.47178e-15
0.0168002
2.04973e-07
2.87975e-15
0.0168001
7.88216e-07
7.84896e-15
0.0168006
1.15097e-06
1.58784e-14
0.0168005
4.73941e-06
4.41846e-14
0.0168036
5.84303e-06
9.42202e-14
0.0168031
3.05905e-05
2.45647e-13
0.0168332
2.90238e-05
5.75967e-13
0.0168269
0.000206482
1.26449e-12
0.0171123
0.000242785
4.24925e-12
0.0174034
0.00154046
8.41053e-12
0.0200162
0.0040385
2.34537e-11
0.0223614
0.0157999
3.43412e-11
0.0220268
0.01886
4.82374e-12
0.0214514
0.0190547
2.87901e-12
0.0209324
0.0184117
3.1992e-13
0.0207588
0.0178128
1.31776e-12
0.0207984
0.0175187
2.7838e-12
0.0208806
0.0171958
3.60296e-12
0.0166679
4.4191e-12
0.0210164
0.0168001
2.11115e-10
7.79016e-18
0.0168001
1.23631e-09
3.28352e-17
0.0168001
4.51247e-09
1.00801e-16
0.0168001
1.17973e-08
2.00682e-16
0.0168001
3.18733e-08
5.00358e-16
0.0168001
7.37899e-08
9.47252e-16
0.0168001
1.88054e-07
2.42508e-15
0.0168005
4.23353e-07
4.74952e-15
0.0168005
1.10035e-06
1.30256e-14
0.0168029
2.34005e-06
2.52488e-14
0.0168018
6.87772e-06
7.64814e-14
0.0168191
1.33312e-05
1.35217e-13
0.0168036
4.39853e-05
4.80165e-13
0.0169196
9.04065e-05
8.2539e-13
0.0168475
0.000312723
3.11125e-12
0.0175655
0.000820867
6.75688e-12
0.0182029
0.00339245
2.15922e-11
0.0218249
0.0121552
4.7283e-11
0.0222328
0.0184503
4.77363e-12
0.0220698
0.0192161
2.8316e-12
0.0215608
0.018921
1.32147e-13
0.0213212
0.0180502
2.24481e-12
0.0212979
0.017541
3.88612e-12
0.021347
0.0171448
5.08366e-12
0.0166163
6.20747e-12
0.0213961
0.0168001
2.75618e-10
6.70596e-18
0.0168001
7.15201e-10
2.82452e-17
0.0168001
4.49153e-09
8.82693e-17
0.0168001
7.48033e-09
1.76458e-16
0.0168001
3.09842e-08
4.45608e-16
0.0168001
4.77134e-08
8.43616e-16
0.0168001
1.82812e-07
2.17673e-15
0.0168002
2.74583e-07
4.26986e-15
0.0168003
1.05075e-06
1.17652e-14
0.0168011
1.52689e-06
2.3507e-14
0.0168017
6.20018e-06
6.84805e-14
0.0168068
8.16463e-06
1.30678e-13
0.0168103
4.01638e-05
4.35302e-13
0.0168543
4.62657e-05
7.44971e-13
0.0168838
0.000281161
2.88567e-12
0.0172431
0.000459724
7.0882e-12
0.0184508
0.00217767
1.88348e-11
0.0229557
0.00762351
5.48014e-11
0.0231144
0.0182871
1.1672e-11
0.0229802
0.0193518
-2.26528e-14
0.0225614
0.0193391
5.16408e-13
0.0220141
0.0185984
2.68412e-12
0.0218084
0.0177426
5.06656e-12
0.0217782
0.0171743
6.73285e-12
0.0166174
8.80587e-12
0.0217729
0.0168001
1.20952e-10
3.77099e-18
0.0168001
8.75034e-10
2.53288e-17
0.0168001
2.69395e-09
5.83462e-17
0.0168001
8.16162e-09
1.58361e-16
0.0168001
1.92338e-08
3.02438e-16
0.0168001
5.14402e-08
7.58194e-16
0.0168001
1.14969e-07
1.44271e-15
0.0168001
3.00393e-07
3.81879e-15
0.0168005
6.63289e-07
7.55265e-15
0.0168003
1.73361e-06
2.11048e-14
0.0168026
3.82587e-06
4.24322e-14
0.0168006
1.00329e-05
1.19404e-13
0.0168179
2.28568e-05
2.51771e-13
0.0168045
5.91076e-05
5.67397e-13
0.0169337
0.000151154
2.10922e-12
0.016972
0.000418799
2.99894e-12
0.0178648
0.00128546
1.21145e-11
0.0207349
0.00474418
1.99602e-11
0.0234142
0.0155908
3.35355e-11
0.023449
0.0193158
5.2969e-12
0.0231167
0.0196703
4.59189e-12
0.02262
0.0190931
4.27492e-12
0.0223993
0.0179617
6.12836e-12
0.0222636
0.0173032
9.16068e-12
0.0166738
1.29543e-11
0.0222042
0.0168001
4.5488e-11
2.5682e-18
0.0168001
8.27812e-10
1.76691e-17
0.0168001
1.67085e-09
4.11573e-17
0.0168001
7.28557e-09
1.14155e-16
0.0168001
1.22505e-08
2.20468e-16
0.0168001
4.5124e-08
5.47503e-16
0.0168001
7.33535e-08
1.03763e-15
0.0168002
2.60823e-07
2.65823e-15
0.0168004
4.19475e-07
5.23428e-15
0.0168006
1.49207e-06
1.419e-14
0.0168021
2.36466e-06
2.83995e-14
0.0168033
8.72872e-06
7.9765e-14
0.0168131
1.29989e-05
1.57732e-13
0.0168164
5.53802e-05
4.7074e-13
0.0168923
7.49672e-05
9.40479e-13
0.0169267
0.000382405
2.84321e-12
0.0174826
0.000727318
7.59182e-12
0.0190187
0.00320266
1.92861e-11
0.023379
0.0112049
4.763e-11
0.023809
0.0188795
1.3578e-11
0.0238301
0.0196465
1.10736e-11
0.0234846
0.0194365
8.19183e-12
0.0229262
0.0185189
5.90605e-12
0.0227208
0.0175029
1.1918e-11
0.0167792
1.45595e-11
0.0226065
0.0168001
7.68169e-11
2.21414e-18
0.0168001
4.39434e-10
9.5342e-18
0.0168001
1.63604e-09
3.23016e-17
0.0168001
4.19127e-09
6.7412e-17
0.0168001
1.15651e-08
1.76989e-16
0.0168001
2.63406e-08
3.36305e-16
0.0168001
6.85741e-08
8.25978e-16
0.0168002
1.52206e-07
1.57958e-15
0.0168002
3.91952e-07
4.05688e-15
0.0168008
8.64145e-07
8.05187e-15
0.016801
2.23141e-06
2.16744e-14
0.0168048
4.9128e-06
4.31158e-14
0.0168048
1.2855e-05
1.22965e-13
0.0168313
2.87801e-05
2.2876e-13
0.0168286
7.7006e-05
8.2077e-13
0.0170228
0.000187894
1.09449e-12
0.0171886
0.000559068
5.41166e-12
0.0187479
0.00163789
1.13931e-11
0.0238758
0.00606755
2.51322e-11
0.0248817
0.0178548
3.50994e-11
0.024677
0.0198438
1.45809e-11
0.0241635
0.0199449
1.26916e-11
0.0235386
0.0191395
1.19852e-11
0.0232131
0.017824
1.32003e-11
0.0169597
1.81334e-11
0.0230261
0.0168001
8.33453e-11
1.60089e-18
0.0168001
2.51185e-10
6.7229e-18
0.0168001
1.40758e-09
2.38931e-17
0.0168001
2.57767e-09
5.03231e-17
0.0168001
9.72893e-09
1.37382e-16
0.0168001
1.64178e-08
2.62976e-16
0.0168001
5.7231e-08
6.54179e-16
0.0168001
9.4914e-08
1.24395e-15
0.0168002
3.2563e-07
3.2129e-15
0.0168005
5.35575e-07
6.34723e-15
0.0168009
1.84628e-06
1.73217e-14
0.0168028
2.99553e-06
3.46814e-14
0.0168049
1.0664e-05
9.81079e-14
0.0168171
1.64921e-05
1.96412e-13
0.0168274
6.6211e-05
5.80994e-13
0.0169192
9.56287e-05
1.22135e-12
0.017025
0.000451024
3.52488e-12
0.0177278
0.000931767
1.04685e-11
0.0199896
0.00379787
2.38653e-11
0.0244745
0.0133407
5.97088e-11
0.0249296
0.0193791
1.98821e-11
0.0249536
0.0199117
1.82735e-11
0.0243493
0.0197378
1.53353e-11
0.0237563
0.0184105
1.50863e-11
0.0172692
2.52418e-11
0.0234351
0.0168001
3.53942e-11
7.64871e-19
0.0168001
2.53692e-10
6.11388e-18
0.0168001
7.86729e-10
1.43699e-17
0.0168001
2.36492e-09
4.52578e-17
0.0168001
5.5952e-09
9.12415e-17
0.0168001
1.4781e-08
2.40213e-16
0.0168001
3.31343e-08
4.55648e-16
0.0168001
8.51224e-08
1.14323e-15
0.0168002
1.88451e-07
2.21744e-15
0.0168003
4.81659e-07
5.86196e-15
0.0168011
1.06233e-06
1.17783e-14
0.0168013
2.72598e-06
3.24891e-14
0.016806
5.9908e-06
6.47828e-14
0.0168065
1.57842e-05
1.99103e-13
0.0168384
3.42095e-05
3.05529e-13
0.0168339
9.90967e-05
1.42758e-12
0.0170693
0.000215072
1.93045e-12
0.0172351
0.00076176
9.79709e-12
0.0189559
0.00207004
2.17797e-11
0.0241966
0.0080679
6.4685e-11
0.0253799
0.0181845
2.95094e-11
0.0254654
0.0198201
1.76051e-11
0.0251888
0.0200043
1.9382e-11
0.0245113
0.0190805
2.26287e-11
0.0177477
3.76216e-11
0.0240182
0.0168001
1.58505e-11
4.4808e-19
0.0168001
2.2107e-10
4.21568e-18
0.0168001
4.8808e-10
9.82389e-18
0.0168001
1.96009e-09
3.31148e-17
0.0168001
3.53797e-09
6.79143e-17
0.0168001
1.21079e-08
1.85903e-16
0.0168001
2.1045e-08
3.53209e-16
0.0168001
6.95054e-08
8.93986e-16
0.0168002
1.19764e-07
1.70357e-15
0.0168002
3.93146e-07
4.5529e-15
0.0168006
6.73787e-07
8.97755e-15
0.0168011
2.22573e-06
2.54177e-14
0.0168033
3.77613e-06
5.05553e-14
0.0168062
1.28122e-05
1.42251e-13
0.0168191
2.10966e-05
3.40768e-13
0.0168398
7.77595e-05
7.33002e-13
0.0169248
0.000128953
2.42868e-12
0.0171581
0.000524689
4.80792e-12
0.0180553
0.00117551
1.31661e-11
0.0217344
0.00437261
3.00879e-11
0.0253505
0.0145417
5.42131e-11
0.02556
0.0196
2.73354e-11
0.0256156
0.0199345
2.94721e-11
0.0252039
0.0194771
3.84323e-11
0.0182851
6.09105e-11
0.0246367
0.0168001
2.54851e-11
4.82809e-19
0.0168001
9.7707e-11
1.67458e-18
0.0168001
4.78164e-10
7.85115e-18
0.0168001
9.68509e-10
1.71355e-17
0.0168001
3.33313e-09
5.64293e-17
0.0168001
6.13321e-09
1.1371e-16
0.0168001
1.96411e-08
3.00491e-16
0.0168001
3.54835e-08
5.70676e-16
0.0168001
1.11709e-07
1.44024e-15
0.0168003
2.011e-07
2.81126e-15
0.0168003
6.31366e-07
7.45609e-15
0.0168014
1.13411e-06
1.50266e-14
0.0168016
3.58288e-06
4.12389e-14
0.016808
6.37432e-06
8.23357e-14
0.0168079
2.09995e-05
2.48311e-13
0.0168502
3.53108e-05
3.98071e-13
0.0168434
0.000134462
1.72204e-12
0.017143
0.000224237
2.5345e-12
0.0173279
0.000985626
1.13261e-11
0.0191816
0.00251249
2.47282e-11
0.0249418
0.00874289
6.71153e-11
0.0261302
0.0183907
4.53615e-11
0.0260136
0.0200319
4.74168e-11
0.0258153
0.0196448
5.9721e-11
0.0187536
9.47682e-11
0.0253013
0.0168001
1.18097e-11
1.77877e-20
0.0168001
8.40491e-11
1.41878e-18
0.0168001
2.612e-10
3.22465e-18
0.0168001
7.82856e-10
1.48315e-17
0.0168001
1.85534e-09
3.23795e-17
0.0168001
4.87657e-09
1.00977e-16
0.0168001
1.09508e-08
1.98801e-16
0.0168001
2.79281e-08
5.07598e-16
0.0168001
6.19821e-08
9.63478e-16
0.0168002
1.5686e-07
2.46566e-15
0.0168005
3.47078e-07
4.83336e-15
0.0168007
8.77392e-07
1.30957e-14
0.0168023
1.93969e-06
2.61057e-14
0.0168037
4.95406e-06
7.37905e-14
0.0168138
1.08378e-05
1.44086e-13
0.0168194
2.92492e-05
4.4019e-13
0.0168916
6.20385e-05
8.26821e-13
0.0169262
0.000187599
2.49955e-12
0.0174728
0.000436234
6.66423e-12
0.0184534
0.00152495
1.44284e-11
0.0227491
0.00442595
4.05436e-11
0.0263386
0.0147624
8.20136e-11
0.0263498
0.0199789
7.36963e-11
0.0260645
0.0198834
1.02505e-10
0.0190551
1.4023e-10
0.0256977
0.0168001
4.6912e-12
-8.04681e-20
0.0168001
6.86432e-11
7.19978e-19
0.0168001
1.52491e-10
1.40946e-18
0.0168001
6.07857e-10
9.69006e-18
0.0168001
1.10701e-09
2.19238e-17
0.0168001
3.74404e-09
7.61127e-17
0.0168001
6.57194e-09
1.53239e-16
0.0168001
2.13976e-08
4.02236e-16
0.0168001
3.72888e-08
7.64766e-16
0.0168001
1.20295e-07
1.94912e-15
0.0168003
2.09089e-07
3.8244e-15
0.0168005
6.74573e-07
1.02709e-14
0.0168012
1.16678e-06
2.06726e-14
0.0168023
3.80246e-06
5.7309e-14
0.0168066
6.46803e-06
1.14319e-13
0.0168135
2.20827e-05
3.3652e-13
0.0168398
3.53991e-05
6.19517e-13
0.0168855
0.000140229
2.31093e-12
0.0170962
0.000223991
3.45325e-12
0.0175976
0.00101656
1.61734e-11
0.0193591
0.00265058
3.50939e-11
0.0252967
0.00877859
9.87242e-11
0.026786
0.0184371
1.11996e-10
0.026717
0.0198599
1.90032e-10
0.019046
2.57415e-10
0.0265996
0.0168001
5.53372e-12
3.55754e-20
0.0168001
3.34821e-11
-1.88041e-19
0.0168001
1.22139e-10
1.77708e-18
0.0168001
3.17785e-10
4.10472e-18
0.0168001
8.61788e-10
2.27615e-17
0.0168001
1.98299e-09
5.01596e-17
0.0168001
5.06202e-09
1.54091e-16
0.0168001
1.13428e-08
2.99541e-16
0.0168001
2.85408e-08
7.67488e-16
0.0168001
6.35642e-08
1.46959e-15
0.0168002
1.59376e-07
3.86756e-15
0.0168005
3.54292e-07
7.68809e-15
0.0168008
8.88507e-07
2.1203e-14
0.0168026
1.97422e-06
4.27557e-14
0.0168039
4.98773e-06
1.20405e-13
0.0168149
1.10416e-05
2.44265e-13
0.0168206
2.9001e-05
7.04019e-13
0.0168965
6.36224e-05
1.43236e-12
0.016936
0.000181207
4.06138e-12
0.017501
0.000446646
1.11609e-11
0.0186508
0.00148669
2.62093e-11
0.023011
0.00437951
7.5221e-11
0.0269689
0.01442
1.65936e-10
0.0273996
0.0192518
3.58606e-10
0.0187043
4.04716e-10
0.0275518
0.0168001
3.92829e-12
-2.5411e-21
0.0168001
2.14718e-11
-3.51519e-19
0.0168001
7.96568e-11
1.31544e-18
0.0168001
2.04988e-10
3.02984e-18
0.0168001
5.57976e-10
2.00916e-17
0.0168001
1.27763e-09
4.46776e-17
0.0168001
3.26236e-09
1.43445e-16
0.0168001
7.27938e-09
2.80431e-16
0.0168001
1.83033e-08
7.29627e-16
0.0168001
4.05901e-08
1.39958e-15
0.0168002
1.01637e-07
3.70754e-15
0.0168003
2.24935e-07
7.39131e-15
0.0168006
5.62773e-07
2.04776e-14
0.0168013
1.24313e-06
4.14405e-14
0.0168031
3.12276e-06
1.17675e-13
0.0168071
6.86357e-06
2.35972e-13
0.0168178
1.76993e-05
7.06759e-13
0.0168425
3.81797e-05
1.34887e-12
0.0169099
0.000110046
4.79686e-12
0.0171182
0.000234488
8.4463e-12
0.0177415
0.000845495
3.54139e-11
0.0197816
0.00231405
8.2721e-11
0.0258774
0.00819731
2.5175e-10
0.0275053
0.0174375
4.31357e-10
0.0175374
5.33867e-10
0.0284524
0.0168001
2.54147e-12
-1.69407e-21
0.0168001
1.36642e-11
-4.21822e-19
0.0168001
5.01736e-11
1.22057e-18
0.0168001
1.29929e-10
2.82485e-18
0.0168001
3.49823e-10
2.05702e-17
0.0168001
8.06354e-10
4.58414e-17
0.0168001
2.03475e-09
1.49697e-16
0.0168001
4.568e-09
2.93139e-16
0.0168001
1.13538e-08
7.64523e-16
0.0168001
2.53194e-08
1.46717e-15
0.0168001
6.27517e-08
3.91149e-15
0.0168002
1.3963e-07
7.79806e-15
0.0168004
3.46286e-07
2.1852e-14
0.0168009
7.69526e-07
4.42103e-14
0.0168019
1.91137e-06
1.27097e-13
0.0168044
4.25664e-06
2.55132e-13
0.0168109
1.05195e-05
7.60223e-13
0.0168241
2.41073e-05
1.5127e-12
0.0168715
5.88778e-05
4.83268e-12
0.0169517
0.000149058
9.53025e-12
0.0173772
0.000400804
3.36095e-11
0.0184657
0.0011951
8.2784e-11
0.0224346
0.00413585
2.51871e-10
0.0268468
0.012748
6.20616e-10
0.0151407
5.52902e-10
0.0290403
0.0168001
2.11542e-12
-2.71051e-20
0.0168001
5.94349e-12
-5.50571e-19
0.0168001
3.553e-11
1.06726e-18
0.0168001
6.06443e-11
2.45894e-18
0.0168001
2.4254e-10
2.08624e-17
0.0168001
3.77655e-10
4.81081e-17
0.0168001
1.39622e-09
1.51592e-16
0.0168001
2.11428e-09
3.02215e-16
0.0168001
7.72151e-09
7.13856e-16
0.0168001
1.15058e-08
1.36522e-15
0.0168001
4.22193e-08
3.34255e-15
0.0168002
6.18914e-08
6.50152e-15
0.0168003
2.29891e-07
1.82126e-14
0.0168007
3.29572e-07
3.60027e-14
0.0168012
1.25252e-06
1.17654e-13
0.0168036
1.73598e-06
2.45012e-13
0.0168062
7.04178e-06
7.99797e-13
0.0168204
8.63606e-06
2.17786e-12
0.0168315
4.38784e-05
4.54983e-12
0.0169244
4.35019e-05
1.52285e-11
0.0170201
0.00028974
3.14381e-11
0.0177484
0.000408719
1.25554e-10
0.0198393
0.00197484
3.01372e-10
0.0251539
0.00695006
9.85102e-10
0.0119573
4.48436e-10
0.028249
0.0168001
4.82226e-13
-1.44843e-19
0.0168001
6.34501e-12
6.77626e-20
0.0168001
1.24595e-11
-2.71051e-20
0.0168001
5.60573e-11
5.75559e-18
0.0168001
8.87512e-11
1.40396e-17
0.0168001
3.42481e-10
5.97065e-17
0.0168001
5.14544e-10
1.23918e-16
0.0168001
1.93064e-09
3.43686e-16
0.0168001
2.83703e-09
6.53867e-16
0.0168001
1.06858e-08
1.69936e-15
0.0168001
1.54233e-08
3.31159e-15
0.0168001
5.89656e-08
9.16876e-15
0.0168002
8.31262e-08
1.84078e-14
0.0168002
3.25887e-07
5.30102e-14
0.0168009
4.34322e-07
1.06874e-13
0.0168006
1.84728e-06
3.14109e-13
0.0168052
2.0781e-06
6.08166e-13
0.0168015
1.08016e-05
1.95649e-12
0.0168344
9.49313e-06
3.28089e-12
0.016806
6.29889e-05
1.28338e-11
0.0170281
5.71486e-05
2.31042e-11
0.0170002
0.000400235
8.81982e-11
0.0182453
0.000659315
2.28982e-10
0.0217158
0.0032379
6.09051e-10
0.00803091
7.70661e-10
0.0253315
0.0168001
7.92646e-13
-9.82558e-20
0.0168001
1.25319e-12
-8.18234e-19
0.0168001
1.18699e-11
-8.38563e-20
0.0168001
1.34803e-11
-7.03037e-20
0.0168001
7.93967e-11
1.09496e-17
0.0168001
8.10216e-11
2.61352e-17
0.0168001
4.43648e-10
9.80542e-17
0.0168001
4.20068e-10
1.93538e-16
0.0168001
2.35304e-09
5.50942e-16
0.0168001
2.04794e-09
1.04392e-15
0.0168001
1.22195e-08
3.02174e-15
0.0168001
9.51139e-09
6.04717e-15
0.0168001
6.30247e-08
1.80546e-14
0.0168004
4.15478e-08
3.68545e-14
0.0168004
3.40766e-07
1.11078e-13
0.016802
1.20794e-07
2.09015e-13
0.0168013
2.17434e-06
7.26192e-13
0.0168116
-2.87439e-07
1.19878e-12
0.0168015
1.61192e-05
4.62908e-12
0.0168644
-5.31627e-06
8.33231e-12
0.0167886
0.000114565
3.12329e-11
0.0171291
2.00229e-05
8.40975e-11
0.0172514
0.000540965
2.4295e-10
0.0188456
0.00130493
6.85921e-10
0.00541446
9.17849e-10
0.0209932
0.0168001
2.55492e-13
-7.53859e-20
0.0168001
1.85221e-12
7.05578e-19
0.0168001
5.72269e-12
1.49501e-18
0.0168001
1.69579e-11
1.01957e-17
0.0168001
4.02612e-11
2.36e-17
0.0168001
1.04296e-10
8.03326e-17
0.0168001
2.35426e-10
1.62774e-16
0.0168001
5.8626e-10
4.10232e-16
0.0168001
1.31043e-09
7.82448e-16
0.0168001
3.19825e-09
1.88602e-15
0.0168001
7.13094e-09
3.69238e-15
0.0168
1.71078e-08
9.22907e-15
0.0168001
3.79987e-08
1.8399e-14
0.0168
8.97923e-08
4.71059e-14
0.0168001
1.99003e-07
9.35125e-14
0.0167995
4.61609e-07
2.47159e-13
0.0168003
1.04874e-06
4.66892e-13
0.0167962
2.41886e-06
1.58765e-12
0.0168054
5.66583e-06
1.39787e-12
0.0167779
1.37988e-05
1.34431e-11
0.0168509
3.22074e-05
1.11271e-11
0.0167279
0.000101432
9.42828e-11
0.0169872
0.000244777
2.09327e-10
0.0168818
0.00107937
7.2723e-10
0.00409843
1.0093e-09
0.0177397
0.0168001
-9.48766e-14
-1.10114e-19
0.0168001
2.54368e-12
4.36222e-19
0.0168001
1.73717e-12
8.09763e-19
0.0168001
2.09527e-11
8.59654e-18
0.0168001
1.35945e-11
1.96164e-17
0.0168001
1.29076e-10
7.67708e-17
0.0168001
8.2255e-11
1.54201e-16
0.0168001
7.55221e-10
4.44651e-16
0.0168001
4.79166e-10
8.50499e-16
0.0168001
4.41963e-09
2.38991e-15
0.0168001
2.82835e-09
4.82749e-15
0.0168
2.62195e-08
1.38102e-14
0.0168
1.69836e-08
2.91611e-14
0.0167999
1.57068e-07
7.87808e-14
0.0167999
1.00071e-07
1.65037e-13
0.0167991
9.58485e-07
4.03244e-13
0.0167994
4.8308e-07
8.48108e-13
0.0167943
6.16064e-06
1.85342e-12
0.016797
-1.36684e-08
5.11406e-12
0.0167634
4.02678e-05
9.18961e-12
0.0167925
-1.34384e-05
2.48605e-11
0.0166144
0.000237432
7.47882e-11
0.0166962
0.000108017
2.14526e-10
0.0162383
0.00124002
7.30295e-10
0.0036711
1.0879e-09
0.0161943
0.0168001
3.25807e-13
8.13152e-20
0.0168001
4.39703e-13
-2.66815e-19
0.0168001
5.10574e-12
1.73896e-18
0.0168001
4.43589e-12
4.01409e-18
0.0168001
3.46609e-11
2.1485e-17
0.0168001
2.78892e-11
4.7516e-17
0.0168001
2.0291e-10
1.39098e-16
0.0168001
1.58391e-10
2.69409e-16
0.0168001
1.15358e-09
6.49081e-16
0.0168001
8.79019e-10
1.2186e-15
0.0168001
6.55281e-09
2.98355e-15
0.0168001
4.83633e-09
5.66594e-15
0.0168
3.75274e-08
1.49212e-14
0.0168002
2.55045e-08
2.78368e-14
0.0168
2.29975e-07
8.70828e-14
0.0168007
7.18407e-08
1.06513e-13
0.0167991
1.64096e-06
6.95815e-13
0.0168056
-5.51414e-07
4.0203e-13
0.016791
1.10689e-05
5.14454e-12
0.0168347
-5.26045e-06
5.1571e-12
0.0167405
6.44826e-05
2.84143e-11
0.0169411
-3.40035e-06
7.66548e-11
0.0166679
0.000317431
1.7028e-10
0.0170112
0.000561905
7.59967e-10
0.00316003
1.10616e-09
0.0170504
0.0168001
-2.40787e-13
-1.06726e-19
0.0168001
1.22244e-12
4.22669e-19
0.0168001
-9.88005e-13
8.45339e-19
0.0168001
9.37817e-12
7.90705e-18
0.0168001
-5.76017e-12
1.86305e-17
0.0168001
5.53704e-11
6.74848e-17
0.0168001
-3.88124e-11
1.36846e-16
0.0168001
3.0519e-10
3.62781e-16
0.0168001
-2.82571e-10
6.82901e-16
0.0168001
1.64239e-09
1.77811e-15
0.0168001
-2.18794e-09
3.44886e-15
0.0168001
8.77344e-09
9.84025e-15
0.0168001
-1.60075e-08
2.00455e-14
0.0168
4.93162e-08
5.92356e-14
0.0168003
-1.16014e-07
1.32782e-13
0.0167997
3.33816e-07
3.42059e-13
0.0168017
-8.57825e-07
9.11423e-13
0.0167963
2.95298e-06
1.9934e-12
0.0168111
-6.12958e-06
4.97506e-12
0.0167652
2.89143e-05
1.44705e-11
0.0168591
-4.15537e-05
3.40583e-11
0.016607
0.000196155
8.062e-11
0.016944
-9.93476e-06
2.74356e-10
0.0162694
0.000926632
6.62525e-10
0.00275653
1.12575e-09
0.0161677
0.0168001
1.17973e-13
4.31987e-20
0.0168001
6.78191e-13
-8.38563e-20
0.0168001
2.47892e-12
2.12521e-18
0.0168001
6.37631e-12
5.00342e-18
0.0168001
1.73538e-11
2.51332e-17
0.0168001
3.98002e-11
5.51283e-17
0.0168001
1.02209e-10
1.60464e-16
0.0168001
2.29119e-10
3.11019e-16
0.0168001
5.77473e-10
7.46772e-16
0.0168001
1.28871e-09
1.41894e-15
0.0168001
3.19555e-09
3.4462e-15
0.0168
7.09562e-09
6.70126e-15
0.0168
1.72886e-08
1.76556e-14
0.0168
3.78033e-08
3.47881e-14
0.0167997
9.16425e-08
1.03255e-13
0.0167997
1.94547e-07
2.03738e-13
0.0167978
4.82936e-07
6.88424e-13
0.016799
9.69832e-07
1.2696e-12
0.0167861
2.64382e-06
4.75178e-12
0.0168059
5.16017e-06
8.40695e-12
0.0167302
1.56846e-05
3.01741e-11
0.0168446
3.96217e-05
8.70194e-11
0.0166478
0.000126184
1.89683e-10
0.0168095
0.000442996
8.03197e-10
0.00209845
1.26833e-09
0.0169795
0.0168001
4.75484e-13
9.31736e-20
0.0168001
2.50755e-13
-9.14796e-20
0.0168001
6.26198e-12
2.32426e-18
0.0168001
3.45585e-12
5.21688e-18
0.0168001
4.25747e-11
2.62733e-17
0.0168001
2.33352e-11
5.683e-17
0.0168001
2.55794e-10
1.72054e-16
0.0168001
1.39995e-10
3.31653e-16
0.0168001
1.50675e-09
8.54419e-16
0.0168001
8.18792e-10
1.64428e-15
0.0168
8.86371e-09
4.30798e-15
0.0168
4.65834e-09
8.66264e-15
0.0168
5.20604e-08
2.29415e-14
0.0168
2.33016e-08
4.62851e-14
0.0167996
3.11137e-07
1.22496e-13
0.0167996
7.36149e-08
2.36057e-13
0.0167976
1.9028e-06
7.06013e-13
0.0167984
-6.66975e-07
1.15346e-12
0.0167856
1.16114e-05
4.99523e-12
0.0168036
-1.60376e-05
7.24816e-12
0.0167232
7.49974e-05
3.20807e-11
0.0168373
-0.00010649
8.11579e-11
0.0166019
0.000285671
1.98009e-10
0.0167017
5.06878e-05
7.59941e-10
0.00126061
1.33339e-09
0.0170204
0.0168001
-3.91747e-14
-8.04681e-20
0.0168001
1.06249e-12
4.92973e-19
0.0168001
6.38686e-13
1.03253e-18
0.0168001
8.85884e-12
8.91079e-18
0.0168001
5.0457e-12
2.04296e-17
0.0168001
5.33896e-11
7.62059e-17
0.0168001
2.64572e-11
1.5265e-16
0.0168001
2.99403e-10
4.28285e-16
0.0168001
1.18866e-10
8.09735e-16
0.0168001
1.65785e-09
2.23648e-15
0.0168001
4.4822e-10
4.42952e-15
0.0168
9.22186e-09
1.27558e-14
0.0168001
9.71201e-10
2.66676e-14
0.0168
5.30166e-08
7.12282e-14
0.0168002
-1.31342e-08
1.65496e-13
0.0167996
3.5455e-07
3.56618e-13
0.0168012
-3.18917e-07
9.24061e-13
0.0167959
2.65109e-06
2.00937e-12
0.0168081
-3.3255e-06
4.42823e-12
0.0167644
1.56697e-05
1.38693e-11
0.01685
-2.21533e-05
2.96269e-11
0.016602
8.60158e-05
8.55929e-11
0.0169513
-3.63303e-05
2.30439e-10
0.0163622
0.000354299
6.57243e-10
0.0010387
1.14668e-09
0.0160903
0.0168001
2.11585e-13
1.19432e-19
0.0168001
7.40949e-14
1.855e-19
0.0168001
2.96643e-12
3.16113e-18
0.0168001
1.22812e-12
7.15404e-18
0.0168001
1.89936e-11
3.23922e-17
0.0168001
5.58295e-12
6.8558e-17
0.0168001
1.02971e-10
2.05477e-16
0.0168001
1.12836e-11
3.92186e-16
0.0168001
5.28929e-10
1.03206e-15
0.0168001
-8.05921e-11
1.99241e-15
0.0168001
2.64167e-09
5.50106e-15
0.0168001
-1.37706e-09
1.11938e-14
0.0168
1.29756e-08
3.12651e-14
0.0168
-1.421e-08
6.54884e-14
0.0167998
7.26599e-08
1.67901e-13
0.0168001
-1.63443e-07
3.68309e-13
0.0167984
5.74659e-07
8.35353e-13
0.0168015
-1.69822e-06
1.78719e-12
0.0167895
4.6057e-06
4.69206e-12
0.0168106
-1.10373e-05
8.22336e-12
0.0167428
2.78174e-05
2.70197e-11
0.0168535
-5.82061e-05
6.9254e-11
0.0166631
0.000101596
1.50481e-10
0.0168471
-5.39777e-05
5.87202e-10
0.000386571
8.92962e-10
0.0170567
0.0168001
-2.81468e-13
6.35275e-20
0.0168001
6.6146e-13
1.52889e-18
0.0168001
-2.49244e-12
3.50079e-18
0.0168001
4.37339e-12
1.5903e-17
0.0168001
-1.75136e-11
3.48995e-17
0.0168001
2.18941e-11
1.07294e-16
0.0168001
-1.19508e-10
2.08915e-16
0.0168001
9.22621e-11
5.43605e-16
0.0168001
-8.03479e-10
1.02981e-15
0.0168001
2.98067e-10
2.81807e-15
0.0168001
-5.28912e-09
5.61631e-15
0.0168
7.70519e-10
1.61294e-14
0.0168001
-3.39203e-08
3.3709e-14
0.0168
4.42223e-09
8.77592e-14
0.0168002
-2.18143e-07
2.10459e-13
0.0167995
8.67505e-08
4.01814e-13
0.0168007
-1.42936e-06
1.18489e-12
0.0167951
1.8043e-06
1.97251e-12
0.0168059
-9.3281e-06
5.09209e-12
0.0167618
2.15863e-05
1.28544e-11
0.0168413
-6.19892e-05
2.76496e-11
0.0166012
0.000136735
6.64578e-11
0.0169077
-0.000180771
1.7453e-10
0.0163958
0.000281141
4.46913e-10
0.000357569
5.81861e-10
0.0160493
0.0168001
3.40895e-14
3.04085e-19
0.0168001
1.5753e-13
1.09437e-18
0.0168001
5.23618e-13
6.12574e-18
0.0168001
9.78788e-13
1.38608e-17
0.0168001
2.07879e-12
4.81657e-17
0.0168001
6.18266e-13
9.92587e-17
0.0168001
-2.11704e-12
2.58082e-16
0.0168001
-2.40973e-11
4.86139e-16
0.0168001
-7.73605e-11
1.19138e-15
0.0168001
-2.8844e-10
2.29869e-15
0.0168
-8.08813e-10
6.01788e-15
0.0168
-2.45843e-09
1.21169e-14
0.0168
-6.42981e-09
3.24389e-14
0.0168
-1.65981e-08
6.5875e-14
0.0167996
-4.62822e-08
1.72868e-13
0.0167996
-8.50432e-08
3.47919e-13
0.0167977
-2.98137e-07
8.80931e-13
0.0167989
-2.97131e-07
1.75144e-12
0.016787
-1.35272e-06
4.48162e-12
0.0168055
-1.53718e-06
8.25674e-12
0.0167331
-5.55077e-06
2.35767e-11
0.0168579
-9.65719e-06
5.78816e-11
0.0166561
-2.11216e-05
1.11569e-10
0.0168548
-6.93001e-05
3.89653e-10
-7.19246e-05
4.20423e-10
0.016935
0.0168001
4.11406e-13
4.99749e-19
0.0168001
-1.03872e-12
1.71439e-18
0.0168001
3.40357e-12
8.45678e-18
0.0168001
-7.49276e-12
1.91506e-17
0.0168001
2.10183e-11
6.23272e-17
0.0168001
-4.9575e-11
1.26983e-16
0.0168001
1.15253e-10
3.20034e-16
0.0168001
-3.23031e-10
6.0809e-16
0.0168001
6.14201e-10
1.46415e-15
0.0168001
-2.06891e-09
2.83941e-15
0.0168
3.27288e-09
7.12821e-15
0.0168001
-1.30923e-08
1.42563e-14
0.0168
1.77603e-08
3.64782e-14
0.0168
-8.27244e-08
7.34556e-14
0.0167997
1.00703e-07
1.85802e-13
0.0168
-5.38497e-07
3.77964e-13
0.0167981
7.33883e-07
8.81379e-13
0.0168007
-4.13038e-06
2.02902e-12
0.016788
7.84432e-06
4.00366e-12
0.0168169
-3.53457e-05
8.29718e-12
0.0167297
6.83335e-05
2.0867e-11
0.0169175
-0.000217597
5.1185e-11
0.0166578
0.000200575
9.31625e-11
0.0169303
-0.000462113
3.15625e-10
-0.000320149
3.08522e-10
0.0168126
0.0168001
5.71742e-14
3.15943e-19
0.0168001
-5.34543e-13
3.58973e-18
0.0168001
-1.9239e-13
8.47202e-18
0.0168001
-4.4331e-12
3.0954e-17
0.0168001
-2.24826e-12
6.60194e-17
0.0168001
-2.93138e-11
1.7225e-16
0.0168001
-2.13841e-11
3.29618e-16
0.0168001
-1.90579e-10
7.54333e-16
0.0168001
-1.84683e-10
1.42222e-15
0.0168001
-1.23271e-09
3.47623e-15
0.0168001
-1.42032e-09
6.82025e-15
0.0168
-7.84142e-09
1.79578e-14
0.0168
-1.00301e-08
3.65788e-14
0.0167999
-4.82302e-08
9.57367e-14
0.0168
-6.32525e-08
2.00203e-13
0.0167993
-2.75538e-07
4.70617e-13
0.0168
-3.54032e-07
1.11321e-12
0.0167956
-1.44669e-06
1.82533e-12
0.0168008
-1.033e-06
5.64165e-12
0.0167683
-8.27946e-06
6.69473e-12
0.0168156
6.06005e-06
2.12044e-11
0.0166285
-5.06708e-05
3.88146e-11
0.0167783
2.02951e-05
1.02736e-10
0.0164596
-0.000148016
2.74667e-10
-0.00023257
2.43763e-10
0.0160756
0.0168001
2.87144e-19
0.0168001
3.75913e-18
0.0168001
8.61178e-18
0.0168001
3.20737e-17
0.0168001
6.76407e-17
0.0168001
1.79133e-16
0.0168001
3.42599e-16
0.0168001
7.9664e-16
0.0168001
1.51594e-15
0.0168001
3.63675e-15
0.0168
7.1764e-15
0.0168
1.7554e-14
0.0168
3.50312e-14
0.0167999
8.37997e-14
0.0167997
1.65526e-13
0.0167991
3.87784e-13
0.0167984
7.51261e-13
0.0167956
1.7727e-12
0.0167928
3.29476e-12
0.0167792
8.09266e-12
0.0167774
1.55547e-11
0.0167123
3.72137e-11
0.0166909
8.75691e-11
0.0165663
2.45872e-10
1.8788e-10
0.0160345
0.0168001
1.05811e-09
-1.74878e-16
0.0168001
5.75484e-09
-8.99371e-17
0.0168001
1.98961e-08
2.19562e-16
0.0168001
5.54822e-08
6.3233e-16
0.0168002
1.41041e-07
1.30676e-15
0.0168001
3.52333e-07
3.63386e-15
0.0168008
8.43774e-07
7.07764e-15
0.0168
2.10472e-06
2.21958e-14
0.0168047
4.88832e-06
3.35423e-14
0.0167977
1.31011e-05
1.63232e-13
0.0168351
3.04103e-05
1.78343e-13
0.0167784
8.66151e-05
1.08548e-12
0.0170226
0.000236704
2.43923e-12
0.0168036
0.000840211
5.52314e-12
0.0178047
0.00274756
2.29269e-11
0.0175526
0.0126441
3.66952e-11
0.0167824
0.013428
6.10679e-12
0.0154409
0.0131342
4.12961e-12
0.014404
0.0133598
4.08263e-12
0.0134365
0.0141875
4.12592e-12
0.0125727
0.0155016
4.01987e-12
0.0116279
0.017211
3.83985e-12
0.0107944
0.0193532
3.74826e-12
0.0107822
0.0218524
3.28382e-12
0.0234331
4.25158e-12
0.0162968
0.0168001
8.47293e-10
-1.74171e-16
0.0168001
6.56504e-09
-7.53038e-17
0.0168001
2.00105e-08
2.34939e-16
0.0168001
6.05045e-08
6.91064e-16
0.0168
1.43162e-07
1.43669e-15
0.0168
3.82251e-07
4.05079e-15
0.0168
8.62292e-07
8.26159e-15
0.0167998
2.23718e-06
2.33209e-14
0.0167996
5.10988e-06
4.77665e-14
0.0167997
1.28129e-05
1.36142e-13
0.0167994
3.07195e-05
2.81847e-13
0.0168051
8.00483e-05
8.09744e-13
0.0168226
0.000218722
2.14106e-12
0.0169198
0.000739999
5.8856e-12
0.0173336
0.00232689
1.797e-11
0.0177428
0.0122159
4.01348e-11
0.016983
0.0141852
3.73531e-12
0.0160478
0.0140678
2.58758e-12
0.0152113
0.0141946
3.42303e-12
0.0144022
0.0149954
4.01896e-12
0.0137311
0.0161719
4.00448e-12
0.0132258
0.0177156
3.83641e-12
0.0130622
0.0195159
3.92183e-12
0.0139092
0.0210045
3.57389e-12
0.0214732
5.28224e-12
0.0158681
0.0168001
7.68711e-10
-1.7413e-16
0.0168001
5.96385e-09
-8.85226e-17
0.0168001
1.83567e-08
2.19773e-16
0.0168001
5.52799e-08
6.47844e-16
0.0168001
1.30944e-07
1.35313e-15
0.0168001
3.47511e-07
3.81489e-15
0.0168002
7.81581e-07
7.85409e-15
0.0168004
2.03808e-06
2.1837e-14
0.016801
4.49895e-06
4.64676e-14
0.0168015
1.217e-05
1.23541e-13
0.0168061
2.61122e-05
2.65438e-13
0.0168051
8.01948e-05
7.89816e-13
0.0168368
0.000186673
1.90656e-12
0.0168599
0.000714115
4.9261e-12
0.0170885
0.00209224
1.64229e-11
0.0179898
0.0112948
4.19508e-11
0.0173945
0.0147792
1.85357e-12
0.0166557
0.0148053
1.86573e-12
0.0159693
0.0148795
2.65787e-12
0.0153689
0.015594
3.8136e-12
0.0148629
0.0166764
3.912e-12
0.0146585
0.017919
3.54703e-12
0.0149844
0.0191894
4.18226e-12
0.0159234
0.0200646
4.24264e-12
0.0201919
5.55272e-12
0.0172038
0.0168001
6.15759e-10
-1.74134e-16
0.0168001
5.35027e-09
-1.19224e-16
0.0168001
1.64037e-08
1.81254e-16
0.0168001
4.91281e-08
5.29958e-16
0.0168001
1.16279e-07
1.09372e-15
0.0168001
3.05498e-07
3.07878e-15
0.0168002
6.83225e-07
6.1814e-15
0.0168004
1.79545e-06
1.79769e-14
0.0168012
3.73265e-06
3.34509e-14
0.0168019
1.13907e-05
1.14249e-13
0.0168084
1.95364e-05
1.86967e-13
0.0168059
8.19616e-05
7.48026e-13
0.0168434
0.000148822
1.36737e-12
0.0168601
0.000694831
5.81111e-12
0.0171211
0.00182714
1.46416e-11
0.0187
0.00969527
4.27454e-11
0.0180831
0.015396
1.08888e-12
0.0172279
0.0156602
1.11765e-12
0.016678
0.0154283
1.80807e-12
0.0162968
0.0159741
3.60498e-12
0.0160327
0.0169389
3.7136e-12
0.0160079
0.0179426
3.35678e-12
0.0163524
0.018844
3.38281e-12
0.0171398
0.0192763
4.31503e-12
0.0191645
5.63877e-12
0.0181661
0.0168001
1.79074e-10
-1.73682e-16
0.0168001
6.98439e-09
-1.28343e-16
0.0168001
1.08341e-08
1.67732e-16
0.0168001
6.02311e-08
4.96237e-16
0.0168001
8.08405e-08
1.02916e-15
0.0168
3.75282e-07
2.9342e-15
0.0168002
4.86225e-07
5.95992e-15
0.0167998
2.22077e-06
1.72209e-14
0.0168008
2.71507e-06
3.4263e-14
0.0167983
1.37202e-05
1.05614e-13
0.0168041
1.36582e-05
1.97047e-13
0.0167905
9.50135e-05
7.40664e-13
0.0168544
8.45247e-05
1.25563e-12
0.0168445
0.000701983
5.60105e-12
0.0173426
0.00132602
1.38699e-11
0.0204818
0.00653228
4.5023e-11
0.019247
0.0166309
4.56059e-12
0.018341
0.0165658
2.32784e-12
0.0175327
0.0162365
1.43997e-12
0.0171442
0.0163613
3.04704e-12
0.0170482
0.017034
3.30361e-12
0.0171647
0.017825
3.87061e-12
0.0174837
0.0185243
3.89005e-12
0.0180507
0.0187086
4.17982e-12
0.0183539
5.2201e-12
0.0188606
0.0168001
5.56818e-10
-1.58426e-16
0.0168001
3.72439e-09
-1.57171e-16
0.0168001
1.3157e-08
1.32341e-16
0.0168001
3.51987e-08
2.86223e-16
0.0168001
9.38782e-08
7.9762e-16
0.0168002
2.21423e-07
1.62405e-15
0.0168001
5.60353e-07
4.52387e-15
0.0168011
1.28885e-06
8.80762e-15
0.0168005
3.28331e-06
2.76508e-14
0.0168068
7.40718e-06
4.27445e-14
0.0168001
2.01209e-05
2.01148e-13
0.01685
4.51477e-05
2.35216e-13
0.016802
0.000131424
1.28164e-12
0.0171538
0.000348984
3.14677e-12
0.0172894
0.00118787
6.04705e-12
0.0198366
0.00397082
2.44495e-11
0.0203622
0.0160954
2.13111e-11
0.0196044
0.0173221
6.3439e-12
0.0185417
0.0172979
4.89903e-12
0.0180339
0.0168685
2.66e-12
0.0178977
0.0171691
3.42772e-12
0.0180562
0.0176652
3.10777e-12
0.018433
0.0181465
3.47892e-12
0.0188624
0.0182782
4.00615e-12
0.0178128
4.8636e-12
0.0194026
0.0168001
6.58233e-10
-1.59545e-16
0.0168001
3.42855e-09
-1.55899e-16
0.0168001
1.2776e-08
1.28076e-16
0.0168001
3.27037e-08
2.76987e-16
0.0168001
9.00477e-08
7.8738e-16
0.0168001
2.0718e-07
1.61642e-15
0.0168001
5.37968e-07
4.5547e-15
0.0168002
1.20906e-06
9.26725e-15
0.0168003
3.0896e-06
2.63556e-14
0.0168008
6.96385e-06
5.33568e-14
0.0168029
1.78074e-05
1.56439e-13
0.0168083
3.97066e-05
3.10929e-13
0.0168249
0.000113889
9.55169e-13
0.0169008
0.000272526
2.29886e-12
0.0171071
0.000978095
6.72382e-12
0.0181006
0.00296868
1.94081e-11
0.0202249
0.0139483
4.49408e-11
0.0199675
0.0175755
7.73747e-12
0.0194471
0.0178163
5.46043e-12
0.0189006
0.0174149
1.89311e-12
0.0186861
0.0173824
2.61537e-12
0.0187445
0.0176055
3.80194e-12
0.0190957
0.017794
3.6642e-12
0.0195389
0.0178345
3.78229e-12
0.017427
4.69984e-12
0.0199228
0.0168001
8.05477e-10
-1.65471e-16
0.0168001
2.00004e-09
-1.51338e-16
0.0168001
1.30195e-08
9.94493e-17
0.0168001
2.1084e-08
2.14787e-16
0.0168001
9.02601e-08
6.06233e-16
0.0168001
1.3546e-07
1.23638e-15
0.0168001
5.39436e-07
3.48392e-15
0.0168006
7.77169e-07
6.94271e-15
0.0168004
3.22769e-06
2.07073e-14
0.0168033
4.01112e-06
3.77198e-14
0.0168003
2.07546e-05
1.3539e-13
0.0168211
1.87799e-05
2.17048e-13
0.0167933
0.000140905
8.91589e-13
0.0169323
0.00013298
1.6537e-12
0.0168745
0.00103285
6.85503e-12
0.0176027
0.00223575
1.7012e-11
0.0203539
0.0111739
4.56782e-11
0.0203861
0.017543
2.61884e-12
0.0200446
0.0181565
1.44713e-12
0.019609
0.0178507
1.02475e-12
0.0194639
0.017528
2.04571e-12
0.0194645
0.0176044
2.68315e-12
0.0196321
0.0176253
3.40334e-12
0.0199999
0.0174651
3.91023e-12
0.0170717
4.52595e-12
0.0203549
0.0168001
3.15163e-10
-2.15771e-16
0.0168001
2.18646e-09
-1.06819e-16
0.0168001
6.96514e-09
6.57467e-17
0.0168001
2.04817e-08
1.87758e-16
0.0168001
4.93808e-08
3.87867e-16
0.0168001
1.27533e-07
1.07203e-15
0.0168004
2.90588e-07
2.0763e-15
0.0168004
7.47462e-07
6.65018e-15
0.016802
1.61408e-06
9.18658e-15
0.0168013
4.66533e-06
5.09513e-14
0.0168131
9.00232e-06
4.36197e-14
0.0168012
3.02866e-05
3.80787e-13
0.0168828
5.93702e-05
4.66998e-13
0.0168126
0.000201346
2.3292e-12
0.0173141
0.000529489
5.4189e-12
0.0177089
0.00183609
1.68517e-11
0.0221947
0.00666109
5.04149e-11
0.0215717
0.0181634
8.67086e-12
0.0212024
0.0185276
-6.66515e-13
0.0205724
0.0184809
-3.33311e-14
0.0202077
0.0178931
1.26385e-12
0.0201732
0.0176391
2.39445e-12
0.0202391
0.0175595
3.10959e-12
0.0204252
0.0172778
4.04922e-12
0.016806
4.68618e-12
0.0206893
0.0168001
1.11012e-10
-2.35915e-16
0.0168001
2.47574e-09
2.79953e-17
0.0168001
4.629e-09
6.75814e-17
0.0168001
2.16149e-08
1.98096e-16
0.0168001
3.41089e-08
4.11839e-16
0.0168001
1.34463e-07
1.16332e-15
0.0168002
2.04972e-07
2.3849e-15
0.0168001
7.88215e-07
6.75449e-15
0.0168006
1.15097e-06
1.38324e-14
0.0168005
4.7394e-06
3.89159e-14
0.0168036
5.84302e-06
8.31794e-14
0.0168031
3.05904e-05
2.1821e-13
0.0168332
2.90238e-05
5.11234e-13
0.0168269
0.000206481
1.13065e-12
0.0171123
0.000242784
3.78663e-12
0.0174034
0.00154045
7.52782e-12
0.0200162
0.00403849
2.11248e-11
0.0223614
0.0157998
3.09274e-11
0.0220268
0.01886
5.1694e-12
0.0214514
0.0190547
3.09106e-12
0.0209324
0.0184117
1.20854e-12
0.0207588
0.0178128
2.16227e-12
0.0207984
0.0175187
3.27438e-12
0.0208807
0.0171958
4.6218e-12
0.0166679
5.21864e-12
0.0210164
0.0168001
2.11114e-10
-2.27151e-16
0.0168001
1.23631e-09
1.82561e-17
0.0168001
4.51247e-09
5.8945e-17
0.0168001
1.17973e-08
1.27441e-16
0.0168001
3.18732e-08
3.52771e-16
0.0168001
7.37898e-08
7.21071e-16
0.0168001
1.88054e-07
1.98618e-15
0.0168005
4.23352e-07
4.0173e-15
0.0168005
1.10035e-06
1.12978e-14
0.0168029
2.34005e-06
2.2037e-14
0.0168018
6.87771e-06
6.74391e-14
0.0168191
1.33311e-05
1.1917e-13
0.0168036
4.39853e-05
4.26335e-13
0.0169196
9.04064e-05
7.32489e-13
0.0168475
0.000312722
2.77233e-12
0.0175655
0.000820866
6.03124e-12
0.0182029
0.00339244
1.92409e-11
0.0218249
0.0121552
4.22774e-11
0.0222328
0.0184503
4.97626e-12
0.0220698
0.0192161
2.95146e-12
0.0215608
0.018921
1.36805e-12
0.0213212
0.0180502
2.67045e-12
0.0212979
0.017541
4.6759e-12
0.021347
0.0171448
4.89845e-12
0.0166163
5.82996e-12
0.0213961
0.0168001
2.75618e-10
-2.35238e-16
0.0168001
7.152e-10
1.60614e-17
0.0168001
4.49152e-09
5.18342e-17
0.0168001
7.48032e-09
1.11889e-16
0.0168001
3.09841e-08
3.11438e-16
0.0168001
4.77134e-08
6.36466e-16
0.0168001
1.82812e-07
1.7729e-15
0.0168002
2.74582e-07
3.59949e-15
0.0168003
1.05075e-06
1.0181e-14
0.0168011
1.52689e-06
2.05079e-14
0.0168017
6.20017e-06
6.02248e-14
0.0168068
8.16462e-06
1.15151e-13
0.0168103
4.01637e-05
3.8514e-13
0.0168543
4.62656e-05
6.59629e-13
0.0168838
0.000281161
2.5622e-12
0.0172431
0.000459723
6.302e-12
0.0184508
0.00217767
1.67064e-11
0.0229557
0.00762348
4.89165e-11
0.0231144
0.0182871
1.10072e-11
0.0229802
0.0193518
8.86375e-13
0.0225614
0.0193391
1.47056e-12
0.0220141
0.0185984
2.64265e-12
0.0218084
0.0177426
4.73067e-12
0.0217782
0.0171743
6.19487e-12
0.0166174
7.87441e-12
0.0217729
0.0168001
1.20952e-10
-2.44145e-16
0.0168001
8.75032e-10
1.45444e-17
0.0168001
2.69394e-09
3.52865e-17
0.0168001
8.1616e-09
9.98923e-17
0.0168001
1.92337e-08
2.05983e-16
0.0168001
5.144e-08
5.65941e-16
0.0168001
1.14969e-07
1.14544e-15
0.0168001
3.00393e-07
3.20141e-15
0.0168005
6.63287e-07
6.46988e-15
0.0168003
1.7336e-06
1.83632e-14
0.0168026
3.82587e-06
3.70891e-14
0.0168006
1.00329e-05
1.049e-13
0.0168179
2.28567e-05
2.21406e-13
0.0168045
5.91075e-05
5.02125e-13
0.0169337
0.000151153
1.85798e-12
0.016972
0.000418798
2.66918e-12
0.0178648
0.00128546
1.07653e-11
0.0207348
0.00474417
1.78143e-11
0.0234142
0.0155908
3.00119e-11
0.023449
0.0193158
5.12657e-12
0.0231167
0.0196703
4.3663e-12
0.02262
0.0190931
3.98649e-12
0.0223993
0.0179617
5.6082e-12
0.0222636
0.0173032
8.15157e-12
0.0166738
1.08797e-11
0.0222042
0.0168001
4.54879e-11
-2.41026e-16
0.0168001
8.2781e-10
1.07463e-17
0.0168001
1.67085e-09
2.62309e-17
0.0168001
7.28556e-09
7.23087e-17
0.0168001
1.22505e-08
1.49035e-16
0.0168001
4.51239e-08
3.98454e-16
0.0168001
7.33534e-08
8.06999e-16
0.0168002
2.60823e-07
2.19548e-15
0.0168004
4.19474e-07
4.44531e-15
0.0168006
1.49207e-06
1.22892e-14
0.0168021
2.36465e-06
2.47606e-14
0.0168033
8.7287e-06
6.98955e-14
0.0168131
1.29989e-05
1.38827e-13
0.0168164
5.53801e-05
4.13481e-13
0.0168923
7.4967e-05
8.32258e-13
0.0169267
0.000382404
2.49789e-12
0.0174826
0.000727316
6.72714e-12
0.0190187
0.00320265
1.69803e-11
0.023379
0.0112049
4.21255e-11
0.023809
0.0188795
1.22941e-11
0.0238301
0.0196465
1.00464e-11
0.0234846
0.0194365
7.33093e-12
0.0229263
0.018519
5.13589e-12
0.0227208
0.0175029
9.60529e-12
0.0167792
1.18111e-11
0.0226065
0.0168001
7.68167e-11
-2.45592e-16
0.0168001
4.39433e-10
7.03291e-18
0.0168001
1.63604e-09
2.12487e-17
0.0168001
4.19126e-09
4.5783e-17
0.0168001
1.15651e-08
1.18576e-16
0.0168001
2.63405e-08
2.39725e-16
0.0168001
6.8574e-08
6.28671e-16
0.0168002
1.52206e-07
1.26905e-15
0.0168002
3.91951e-07
3.40177e-15
0.0168008
8.64144e-07
6.87948e-15
0.016801
2.2314e-06
1.87522e-14
0.0168048
4.9128e-06
3.74478e-14
0.0168048
1.2855e-05
1.07306e-13
0.0168313
2.87801e-05
1.99893e-13
0.0168286
7.70058e-05
7.16945e-13
0.0170228
0.000187894
9.68014e-13
0.0171886
0.000559066
4.71817e-12
0.0187479
0.00163789
1.00472e-11
0.0238758
0.00606754
2.21458e-11
0.0248817
0.0178548
3.07623e-11
0.024677
0.0198438
1.27267e-11
0.0241635
0.0199449
1.08692e-11
0.0235386
0.0191395
9.57757e-12
0.0232131
0.017824
1.02734e-11
0.0169597
1.38508e-11
0.0230261
0.0168001
8.33452e-11
-2.47023e-16
0.0168001
2.51185e-10
5.78269e-18
0.0168001
1.40758e-09
1.70177e-17
0.0168001
2.57766e-09
3.66604e-17
0.0168001
9.72891e-09
9.32168e-17
0.0168001
1.64178e-08
1.87543e-16
0.0168001
5.72309e-08
4.89525e-16
0.0168001
9.49139e-08
9.84682e-16
0.0168002
3.25629e-07
2.66096e-15
0.0168005
5.35574e-07
5.3742e-15
0.0168009
1.84627e-06
1.48652e-14
0.0168028
2.99553e-06
2.99061e-14
0.0168049
1.0664e-05
8.49105e-14
0.0168171
1.64921e-05
1.7042e-13
0.0168274
6.62109e-05
5.03793e-13
0.0169192
9.56287e-05
1.06358e-12
0.017025
0.000451023
3.05521e-12
0.0177278
0.000931765
9.12337e-12
0.0199896
0.00379786
2.07298e-11
0.0244745
0.0133406
5.18211e-11
0.0249296
0.0193791
1.68061e-11
0.0249536
0.0199117
1.51475e-11
0.0243493
0.0197378
1.20302e-11
0.0237563
0.0184105
1.08191e-11
0.0172692
1.78334e-11
0.0234352
0.0168001
3.53941e-11
-2.31987e-16
0.0168001
2.53691e-10
5.24568e-18
0.0168001
7.86727e-10
1.29723e-17
0.0168001
2.36492e-09
3.30529e-17
0.0168001
5.59519e-09
6.71604e-17
0.0168001
1.47809e-08
1.68896e-16
0.0168001
3.31343e-08
3.38034e-16
0.0168001
8.51222e-08
8.91923e-16
0.0168002
1.8845e-07
1.80494e-15
0.0168003
4.81658e-07
4.91471e-15
0.0168011
1.06233e-06
9.99625e-15
0.0168013
2.72597e-06
2.7798e-14
0.016806
5.99079e-06
5.55032e-14
0.0168065
1.57842e-05
1.71349e-13
0.0168384
3.42095e-05
2.62972e-13
0.0168339
9.90964e-05
1.22906e-12
0.0170693
0.000215072
1.67371e-12
0.0172351
0.000761757
8.41916e-12
0.0189559
0.00207003
1.88972e-11
0.0241967
0.00806787
5.59366e-11
0.0253799
0.0181845
2.45231e-11
0.0254654
0.0198201
1.32123e-11
0.0251888
0.0200043
1.42676e-11
0.0245113
0.0190805
1.53401e-11
0.0177477
2.47265e-11
0.0240182
0.0168001
1.58505e-11
-2.29781e-16
0.0168001
2.21069e-10
4.37323e-18
0.0168001
4.88079e-10
1.08937e-17
0.0168001
1.96009e-09
2.68162e-17
0.0168001
3.53796e-09
5.40703e-17
0.0168001
1.21078e-08
1.32225e-16
0.0168001
2.1045e-08
2.61322e-16
0.0168001
6.95052e-08
6.83593e-16
0.0168002
1.19764e-07
1.3621e-15
0.0168002
3.93145e-07
3.75632e-15
0.0168006
6.73785e-07
7.51551e-15
0.0168011
2.22572e-06
2.14568e-14
0.0168033
3.77612e-06
4.27685e-14
0.0168062
1.28122e-05
1.20667e-13
0.0168191
2.10966e-05
2.89992e-13
0.0168398
7.77593e-05
6.21814e-13
0.0169248
0.000128952
2.07217e-12
0.0171581
0.000524688
4.07654e-12
0.0180553
0.0011755
1.12252e-11
0.0217343
0.0043726
2.54842e-11
0.0253505
0.0145416
4.52386e-11
0.02556
0.0196
2.01067e-11
0.0256156
0.0199345
2.06784e-11
0.0252039
0.0194771
2.52606e-11
0.0182851
3.78261e-11
0.0246367
0.0168001
2.5485e-11
-2.48398e-16
0.0168001
9.77068e-11
3.46945e-18
0.0168001
4.78163e-10
9.37073e-18
0.0168001
9.68507e-10
2.00196e-17
0.0168001
3.33313e-09
4.58745e-17
0.0168001
6.1332e-09
8.99651e-17
0.0168001
1.96411e-08
2.17909e-16
0.0168001
3.54834e-08
4.31119e-16
0.0168001
1.11709e-07
1.12246e-15
0.0168003
2.01099e-07
2.26451e-15
0.0168003
6.31364e-07
6.11762e-15
0.0168014
1.13411e-06
1.24396e-14
0.0168016
3.58287e-06
3.42653e-14
0.016808
6.3743e-06
6.84717e-14
0.0168079
2.09994e-05
2.0746e-13
0.0168502
3.53107e-05
3.28923e-13
0.0168434
0.000134461
1.44822e-12
0.017143
0.000224237
2.09811e-12
0.0173279
0.000985622
9.49977e-12
0.0191816
0.00251248
2.08072e-11
0.0249418
0.00874285
5.61317e-11
0.0261302
0.0183906
3.36787e-11
0.0260137
0.0200319
3.17671e-11
0.0258153
0.0196448
3.87975e-11
0.0187536
5.95596e-11
0.0253013
0.0168001
1.18096e-11
-2.27899e-16
0.0168001
8.40489e-11
3.1391e-18
0.0168001
2.61199e-10
7.83844e-18
0.0168001
7.82854e-10
1.77352e-17
0.0168001
1.85534e-09
3.51273e-17
0.0168001
4.87656e-09
7.81218e-17
0.0168001
1.09508e-08
1.51203e-16
0.0168001
2.7928e-08
3.68879e-16
0.0168001
6.1982e-08
7.28825e-16
0.0168002
1.5686e-07
1.91895e-15
0.0168005
3.47077e-07
3.84389e-15
0.0168007
8.7739e-07
1.05368e-14
0.0168023
1.93969e-06
2.11247e-14
0.0168037
4.95405e-06
5.97793e-14
0.0168138
1.08378e-05
1.17539e-13
0.0168194
2.92492e-05
3.55616e-13
0.0168916
6.20383e-05
6.79213e-13
0.0169262
0.000187598
2.00505e-12
0.0174728
0.000436233
5.4317e-12
0.0184534
0.00152494
1.15593e-11
0.022749
0.00442593
3.23086e-11
0.0263386
0.0147623
6.24105e-11
0.0263498
0.0199789
4.8978e-11
0.0260645
0.0198834
6.54238e-11
0.0190552
8.87661e-11
0.0256977
0.0168001
4.6912e-12
-2.275e-16
0.0168001
6.86431e-11
2.77319e-18
0.0168001
1.52491e-10
7.01174e-18
0.0168001
6.07855e-10
1.52339e-17
0.0168001
1.10701e-09
2.99494e-17
0.0168001
3.74403e-09
6.36503e-17
0.0168001
6.57193e-09
1.21663e-16
0.0168001
2.13976e-08
2.87192e-16
0.0168001
3.72888e-08
5.63601e-16
0.0168001
1.20294e-07
1.46161e-15
0.0168003
2.09089e-07
2.93552e-15
0.0168005
6.74572e-07
7.96512e-15
0.0168012
1.16678e-06
1.61136e-14
0.0168023
3.80245e-06
4.47683e-14
0.0168066
6.46802e-06
8.93695e-14
0.0168135
2.20826e-05
2.63304e-13
0.0168398
3.53991e-05
4.86356e-13
0.0168855
0.000140229
1.797e-12
0.0170962
0.00022399
2.74811e-12
0.0175976
0.00101656
1.24903e-11
0.019359
0.00265056
2.73337e-11
0.0252967
0.00877855
7.54582e-11
0.026786
0.0184371
7.48029e-11
0.026717
0.01986
1.19361e-10
0.019046
1.60502e-10
0.0265996
0.0168001
5.53371e-12
-2.48948e-16
0.0168001
3.3482e-11
2.60632e-18
0.0168001
1.22139e-10
6.39933e-18
0.0168001
3.17785e-10
1.36516e-17
0.0168001
8.61787e-10
2.75989e-17
0.0168001
1.98299e-09
5.23356e-17
0.0168001
5.06201e-09
1.1315e-16
0.0168001
1.13428e-08
2.16334e-16
0.0168001
2.85407e-08
5.30857e-16
0.0168001
6.35641e-08
1.04905e-15
0.0168002
1.59376e-07
2.79719e-15
0.0168005
3.54292e-07
5.62987e-15
0.0168008
8.88507e-07
1.55648e-14
0.0168026
1.97421e-06
3.145e-14
0.0168039
4.98773e-06
8.85132e-14
0.0168149
1.10416e-05
1.79513e-13
0.0168206
2.9001e-05
5.17224e-13
0.0168965
6.36223e-05
1.05198e-12
0.016936
0.000181207
2.96563e-12
0.017501
0.000446645
8.176e-12
0.0186508
0.00148669
1.87884e-11
0.023011
0.0043795
5.36882e-11
0.0269689
0.0144199
1.12844e-10
0.0273995
0.0192518
2.22085e-10
0.0187044
2.47479e-10
0.0275517
0.0168001
3.92829e-12
-2.49268e-16
0.0168001
2.14718e-11
2.50806e-18
0.0168001
7.96567e-11
6.07746e-18
0.0168001
2.04988e-10
1.30147e-17
0.0168001
5.57976e-10
2.58159e-17
0.0168001
1.27763e-09
4.88027e-17
0.0168001
3.26236e-09
1.03921e-16
0.0168001
7.27938e-09
1.97922e-16
0.0168001
1.83033e-08
4.83685e-16
0.0168001
4.05902e-08
9.55518e-16
0.0168002
1.01637e-07
2.55561e-15
0.0168003
2.24935e-07
5.15774e-15
0.0168006
5.62774e-07
1.43208e-14
0.0168013
1.24313e-06
2.90436e-14
0.0168031
3.12276e-06
8.24078e-14
0.0168071
6.86358e-06
1.65378e-13
0.0168178
1.76993e-05
4.94315e-13
0.0168425
3.81798e-05
9.41343e-13
0.0169099
0.000110046
3.3525e-12
0.0171182
0.000234488
5.82296e-12
0.0177415
0.000845493
2.45042e-11
0.0197816
0.00231405
5.73409e-11
0.0258773
0.00819728
1.72364e-10
0.0275053
0.0174376
2.64945e-10
0.0175375
3.04429e-10
0.0284524
0.0168001
2.54147e-12
-2.49395e-16
0.0168001
1.36642e-11
2.49028e-18
0.0168001
5.01736e-11
6.01732e-18
0.0168001
1.29929e-10
1.28376e-17
0.0168001
3.49823e-10
2.55499e-17
0.0168001
8.06354e-10
4.8319e-17
0.0168001
2.03475e-09
1.03388e-16
0.0168001
4.568e-09
1.97126e-16
0.0168001
1.13538e-08
4.84479e-16
0.0168001
2.53194e-08
9.58278e-16
0.0168001
6.27516e-08
2.57724e-15
0.0168002
1.3963e-07
5.20362e-15
0.0168004
3.46285e-07
1.45441e-14
0.0168009
7.69523e-07
2.9471e-14
0.0168019
1.91137e-06
8.41582e-14
0.0168044
4.25662e-06
1.68647e-13
0.0168109
1.05195e-05
5.00623e-13
0.0168241
2.41074e-05
9.8011e-13
0.0168715
5.88778e-05
3.16206e-12
0.0169517
0.00014906
6.11175e-12
0.0173772
0.000400803
2.16425e-11
0.0184657
0.00119511
5.27206e-11
0.0224345
0.00413584
1.57232e-10
0.0268469
0.0127479
3.76295e-10
0.0151408
2.79648e-10
0.0290403
0.0168001
2.11541e-12
-2.49341e-16
0.0168001
5.94352e-12
2.46825e-18
0.0168001
3.55299e-11
5.99191e-18
0.0168001
6.06444e-11
1.2791e-17
0.0168001
2.42539e-10
2.54398e-17
0.0168001
3.77655e-10
4.83436e-17
0.0168001
1.39621e-09
1.01124e-16
0.0168001
2.11428e-09
1.93994e-16
0.0168001
7.72148e-09
4.52641e-16
0.0168001
1.15058e-08
8.92317e-16
0.0168001
4.22192e-08
2.30464e-15
0.0168002
6.18915e-08
4.59117e-15
0.0168003
2.29891e-07
1.30161e-14
0.0168007
3.29573e-07
2.61821e-14
0.0168012
1.25252e-06
8.11008e-14
0.0168036
1.73599e-06
1.70751e-13
0.0168062
7.04172e-06
5.15132e-13
0.0168204
8.63603e-06
1.29805e-12
0.0168315
4.3878e-05
3.80668e-12
0.0169244
4.35014e-05
8.5701e-12
0.0170201
0.000289737
2.0761e-11
0.0177484
0.000408709
7.34864e-11
0.0198394
0.0019748
1.84716e-10
0.0251542
0.0069498
5.8518e-10
0.0119575
2.19435e-10
0.0282493
0.0168001
4.82225e-13
-2.29473e-16
0.0168001
6.34498e-12
2.48011e-18
0.0168001
1.24595e-11
6.18588e-18
0.0168001
5.60571e-11
1.29477e-17
0.0168001
8.87512e-11
2.49604e-17
0.0168001
3.42479e-10
5.00207e-17
0.0168001
5.14543e-10
9.35141e-17
0.0168001
1.93062e-09
2.11119e-16
0.0168001
2.83702e-09
4.08686e-16
0.0168001
1.06857e-08
1.03887e-15
0.0168001
1.54232e-08
2.0729e-15
0.0168001
5.89651e-08
5.61489e-15
0.0168002
8.31261e-08
1.13081e-14
0.0168002
3.25884e-07
3.16561e-14
0.0168009
4.34322e-07
6.35422e-14
0.0168006
1.84726e-06
1.83644e-13
0.0168052
2.07809e-06
3.52818e-13
0.0168015
1.08015e-05
1.13774e-12
0.0168344
9.49299e-06
1.89294e-12
0.016806
6.29876e-05
7.44904e-12
0.0170281
5.71474e-05
1.35739e-11
0.0170001
0.000400226
5.09758e-11
0.0182453
0.0006593
1.34201e-10
0.0217157
0.00323778
3.49244e-10
0.00803089
4.34454e-10
0.0253315
0.0168001
7.92659e-13
-2.49338e-16
0.0168001
1.25329e-12
2.40219e-18
0.0168001
1.18703e-11
5.65225e-18
0.0168001
1.34813e-11
1.19567e-17
0.0168001
7.93995e-11
2.23557e-17
0.0168001
8.10278e-11
4.10354e-17
0.0168001
4.43666e-10
8.14236e-17
0.0168001
4.20104e-10
1.49461e-16
0.0168001
2.35315e-09
3.56034e-16
0.0168001
2.04815e-09
6.89382e-16
0.0168001
1.222e-08
1.88821e-15
0.0168001
9.51248e-09
3.81199e-15
0.0168001
6.30272e-08
1.0881e-14
0.0168004
4.15532e-08
2.20635e-14
0.0168004
3.40776e-07
6.49604e-14
0.016802
1.20831e-07
1.22071e-13
0.0168013
2.17437e-06
4.2151e-13
0.0168116
-2.87288e-07
6.95289e-13
0.0168015
1.6119e-05
2.68129e-12
0.0168644
-5.3155e-06
4.77786e-12
0.0167886
0.000114561
1.78347e-11
0.0171291
2.00225e-05
4.66719e-11
0.0172514
0.000540948
1.35612e-10
0.0188455
0.00130489
3.8487e-10
0.00541444
5.18829e-10
0.0209932
0.0168001
2.55489e-13
-2.30291e-16
0.0168001
1.8522e-12
2.69272e-18
0.0168001
5.7226e-12
6.7949e-18
0.0168001
1.69579e-11
1.45283e-17
0.0168001
4.02608e-11
2.84027e-17
0.0168001
1.04297e-10
5.80565e-17
0.0168001
2.35426e-10
1.10516e-16
0.0168001
5.86271e-10
2.45598e-16
0.0168001
1.31046e-09
4.79181e-16
0.0168001
3.19838e-09
1.15381e-15
0.0168001
7.13124e-09
2.28487e-15
0.0168
1.71089e-08
5.81108e-15
0.0168001
3.80016e-08
1.14759e-14
0.0168
8.98006e-08
3.06483e-14
0.0168001
1.99025e-07
6.02991e-14
0.0167995
4.61652e-07
1.69166e-13
0.0168003
1.0489e-06
3.25528e-13
0.0167962
2.41894e-06
1.01232e-12
0.0168054
5.66728e-06
1.74945e-12
0.0167779
1.37979e-05
6.52528e-12
0.0168509
3.22129e-05
1.25803e-11
0.0167279
0.000101424
4.58612e-11
0.0169871
0.000244774
1.20935e-10
0.0168819
0.00107934
3.83038e-10
0.00409839
5.54012e-10
0.0177398
0.0168001
-9.48668e-14
-2.30517e-16
0.0168001
2.54361e-12
2.61564e-18
0.0168001
1.73716e-12
6.62719e-18
0.0168001
2.09522e-11
1.41336e-17
0.0168001
1.35942e-11
2.73397e-17
0.0168001
1.29071e-10
5.78075e-17
0.0168001
8.22512e-11
1.08892e-16
0.0168001
7.55185e-10
2.67441e-16
0.0168001
4.79128e-10
5.26892e-16
0.0168001
4.41935e-09
1.44689e-15
0.0168001
2.82802e-09
2.97757e-15
0.0168
2.62175e-08
8.25896e-15
0.0168
1.69812e-08
1.74245e-14
0.0167999
1.57054e-07
4.567e-14
0.0167999
1.00058e-07
9.54654e-14
0.0167991
9.58408e-07
2.28574e-13
0.0167994
4.82487e-07
4.74554e-13
0.0167943
6.16029e-06
1.03175e-12
0.016797
-1.37187e-08
3.02137e-12
0.0167634
4.02669e-05
4.74798e-12
0.0167925
-1.34368e-05
1.47886e-11
0.0166144
0.000237431
3.93577e-11
0.0166962
0.000108017
1.1795e-10
0.0162384
0.00124
3.91491e-10
0.00367112
6.20432e-10
0.0161943
0.0168001
3.258e-13
-2.49346e-16
0.0168001
4.39734e-13
2.59023e-18
0.0168001
5.10575e-12
6.2223e-18
0.0168001
4.43601e-12
1.32163e-17
0.0168001
3.46611e-11
2.55236e-17
0.0168001
2.78899e-11
4.76295e-17
0.0168001
2.02911e-10
9.60307e-17
0.0168001
1.58394e-10
1.80034e-16
0.0168001
1.15358e-09
4.08001e-16
0.0168001
8.79028e-10
7.93457e-16
0.0168001
6.55281e-09
1.94274e-15
0.0168001
4.83632e-09
3.83772e-15
0.0168
3.75271e-08
9.64091e-15
0.0168002
2.55036e-08
1.88738e-14
0.0168
2.29974e-07
5.08871e-14
0.0168007
7.18517e-08
7.54824e-14
0.0167991
1.64093e-06
3.6667e-13
0.0168056
-5.51275e-07
2.64588e-13
0.016791
1.10686e-05
2.59095e-12
0.0168347
-5.25934e-06
2.64722e-12
0.0167405
6.44837e-05
1.48903e-11
0.0169411
-3.39788e-06
4.03372e-11
0.0166678
0.000317453
9.87888e-11
0.0170112
0.000561893
4.31622e-10
0.0031601
7.33891e-10
0.0170504
0.0168001
-2.40776e-13
-2.31431e-16
0.0168001
1.22242e-12
2.63427e-18
0.0168001
-9.87912e-13
6.59839e-18
0.0168001
9.37803e-12
1.38651e-17
0.0168001
-5.75953e-12
2.67383e-17
0.0168001
5.53698e-11
5.3546e-17
0.0168001
-3.88084e-11
9.98643e-17
0.0168001
3.05187e-10
2.25352e-16
0.0168001
-2.8253e-10
4.34311e-16
0.0168001
1.64237e-09
1.11661e-15
0.0168001
-2.18772e-09
2.24012e-15
0.0168001
8.77327e-09
6.1918e-15
0.0168001
-1.60065e-08
1.28604e-14
0.0168
4.93146e-08
3.50121e-14
0.0168003
-1.16012e-07
8.22296e-14
0.0167997
3.33808e-07
1.78216e-13
0.0168017
-8.57845e-07
5.2128e-13
0.0167963
2.95292e-06
9.62793e-13
0.0168111
-6.12957e-06
2.53602e-12
0.0167652
2.89132e-05
7.26204e-12
0.0168591
-4.15537e-05
1.70342e-11
0.016607
0.000196154
4.44322e-11
0.016944
-9.9429e-06
1.55532e-10
0.0162694
0.000926643
4.16492e-10
0.00275668
8.39413e-10
0.0161677
0.0168001
1.17977e-13
-2.49145e-16
0.0168001
6.78198e-13
2.65206e-18
0.0168001
2.47897e-12
6.47133e-18
0.0168001
6.37641e-12
1.36881e-17
0.0168001
1.73541e-11
2.68713e-17
0.0168001
3.98009e-11
5.05755e-17
0.0168001
1.02212e-10
1.02562e-16
0.0168001
2.29124e-10
1.94422e-16
0.0168001
5.77501e-10
4.28708e-16
0.0168001
1.28877e-09
8.35542e-16
0.0168001
3.19581e-09
1.94858e-15
0.0168
7.0963e-09
3.80871e-15
0.0168
1.72907e-08
9.52515e-15
0.0168
3.78086e-08
1.85546e-14
0.0167997
9.16547e-08
5.34532e-14
0.0167997
1.94574e-07
1.03413e-13
0.0167978
4.82978e-07
3.60452e-13
0.016799
9.69905e-07
6.41392e-13
0.0167861
2.64397e-06
2.63412e-12
0.0168059
5.16002e-06
4.52556e-12
0.0167302
1.56853e-05
1.77704e-11
0.0168446
3.96199e-05
5.10658e-11
0.0166478
0.000126189
1.22565e-10
0.0168095
0.000442972
5.03496e-10
0.00209847
8.90007e-10
0.0169794
0.0168001
4.75476e-13
-2.49165e-16
0.0168001
2.50795e-13
2.70204e-18
0.0168001
6.26198e-12
6.5103e-18
0.0168001
3.45619e-12
1.38431e-17
0.0168001
4.25749e-11
2.71728e-17
0.0168001
2.33376e-11
5.09999e-17
0.0168001
2.55796e-10
1.04008e-16
0.0168001
1.4001e-10
1.95906e-16
0.0168001
1.50677e-09
4.46361e-16
0.0168001
8.18905e-10
8.68698e-16
0.0168
8.86392e-09
2.15388e-15
0.0168
4.65919e-09
4.2636e-15
0.0168
5.20626e-08
1.1155e-14
0.0168
2.33072e-08
2.20628e-14
0.0167996
3.11156e-07
6.22567e-14
0.0167996
7.36585e-08
1.19064e-13
0.0167976
1.90289e-06
4.05251e-13
0.0167984
-6.6671e-07
6.78245e-13
0.0167856
1.16115e-05
3.05481e-12
0.0168036
-1.60356e-05
4.93879e-12
0.0167232
7.49973e-05
1.97258e-11
0.0168373
-0.000106491
5.32269e-11
0.0166019
0.000285675
1.2593e-10
0.0167017
5.06562e-05
4.7825e-10
0.00126054
8.34201e-10
0.0170204
0.0168001
-3.91605e-14
-2.32185e-16
0.0168001
1.06255e-12
2.71051e-18
0.0168001
6.38959e-13
6.75848e-18
0.0168001
8.85942e-12
1.42657e-17
0.0168001
5.04761e-12
2.76209e-17
0.0168001
5.33932e-11
5.51723e-17
0.0168001
2.64688e-11
1.03305e-16
0.0168001
2.99424e-10
2.2598e-16
0.0168001
1.18935e-10
4.33279e-16
0.0168001
1.65797e-09
1.05483e-15
0.0168001
4.48625e-10
2.05797e-15
0.0168
9.22261e-09
5.55071e-15
0.0168001
9.73563e-10
1.06439e-14
0.0168
5.30218e-08
3.36401e-14
0.0168002
-1.31217e-08
6.10324e-14
0.0167996
3.54587e-07
2.24149e-13
0.0168012
-3.18864e-07
4.13793e-13
0.0167959
2.65126e-06
1.42644e-12
0.0168081
-3.32527e-06
2.77222e-12
0.0167644
1.56699e-05
9.63938e-12
0.01685
-2.21531e-05
2.07153e-11
0.016602
8.60134e-05
5.82709e-11
0.0169514
-3.63426e-05
1.56123e-10
0.0163622
0.000354242
4.25003e-10
0.00103858
7.0029e-10
0.0160902
0.0168001
2.11605e-13
-2.48888e-16
0.0168001
7.4231e-14
2.80198e-18
0.0168001
2.96689e-12
6.82454e-18
0.0168001
1.22929e-12
1.45122e-17
0.0168001
1.89968e-11
2.84857e-17
0.0168001
5.59036e-12
5.3253e-17
0.0168001
1.02991e-10
1.10055e-16
0.0168001
1.13273e-11
2.0448e-16
0.0168001
5.29043e-10
5.04605e-16
0.0168001
-8.0346e-11
9.79023e-16
0.0168001
2.64231e-09
2.83619e-15
0.0168001
-1.37574e-09
5.807e-15
0.0168
1.29794e-08
1.72661e-14
0.0168
-1.42039e-08
3.64108e-14
0.0167998
7.26835e-08
9.94558e-14
0.0168001
-1.63411e-07
2.07819e-13
0.0167984
5.74784e-07
5.33693e-13
0.0168015
-1.69808e-06
9.7514e-13
0.0167895
4.60605e-06
3.22091e-12
0.0168106
-1.10364e-05
4.84087e-12
0.0167428
2.7818e-05
1.7221e-11
0.0168535
-5.82067e-05
4.57051e-11
0.016663
0.000101587
8.71105e-11
0.0168471
-5.40262e-05
3.82852e-10
0.000386441
5.24939e-10
0.0170566
0.0168001
-2.8143e-13
-2.325e-16
0.0168001
6.61528e-13
2.94175e-18
0.0168001
-2.4918e-12
7.27771e-18
0.0168001
4.37427e-12
1.59598e-17
0.0168001
-1.75091e-11
3.06939e-17
0.0168001
2.19006e-11
6.8375e-17
0.0168001
-1.19482e-10
1.28713e-16
0.0168001
9.23029e-11
3.44807e-16
0.0168001
-8.0334e-10
6.84089e-16
0.0168001
2.98309e-10
2.06218e-15
0.0168001
-5.28849e-09
4.27551e-15
0.0168
7.70932e-10
1.24789e-14
0.0168001
-3.3918e-08
2.66945e-14
0.0168
4.4231e-09
6.45769e-14
0.0168002
-2.18141e-07
1.61192e-13
0.0167995
8.67563e-08
2.63515e-13
0.0168007
-1.42937e-06
7.99367e-13
0.0167951
1.80435e-06
1.28812e-12
0.0168059
-9.32805e-06
3.09179e-12
0.0167618
2.15857e-05
8.22534e-12
0.0168413
-6.19898e-05
1.65448e-11
0.0166012
0.000136731
4.77888e-11
0.0169077
-0.000180794
1.21229e-10
0.0163958
0.000281065
3.43063e-10
0.00035737
4.82503e-10
0.0160493
0.0168001
3.41193e-14
-2.48959e-16
0.0168001
1.57715e-13
3.11708e-18
0.0168001
5.24201e-13
7.95872e-18
0.0168001
9.80617e-13
1.69872e-17
0.0168001
2.08361e-12
3.65571e-17
0.0168001
6.27973e-13
7.03003e-17
0.0168001
-2.09227e-12
1.59445e-16
0.0168001
-2.40684e-11
3.09105e-16
0.0168001
-7.72597e-11
7.72973e-16
0.0168001
-2.88179e-10
1.55152e-15
0.0168
-8.08199e-10
4.08929e-15
0.0168
-2.45713e-09
8.35611e-15
0.0168
-6.42704e-09
2.1801e-14
0.0168
-1.65921e-08
4.41934e-14
0.0167996
-4.62719e-08
1.12444e-13
0.0167996
-8.50142e-08
2.23371e-13
0.0167977
-2.98094e-07
5.59649e-13
0.0167989
-2.96994e-07
1.08369e-12
0.016787
-1.35255e-06
2.87164e-12
0.0168054
-1.53693e-06
5.0976e-12
0.0167331
-5.55128e-06
1.54788e-11
0.0168578
-9.6605e-06
3.82297e-11
0.016656
-2.11352e-05
8.10517e-11
0.0168547
-6.93542e-05
2.84195e-10
-7.21042e-05
3.70413e-10
0.0169348
0.0168001
4.11394e-13
-2.48251e-16
0.0168001
-1.03844e-12
3.3983e-18
0.0168001
3.4039e-12
8.893e-18
0.0168001
-7.49049e-12
1.89202e-17
0.0168001
2.10214e-11
4.13937e-17
0.0168001
-4.9561e-11
8.04326e-17
0.0168001
1.15273e-10
1.8719e-16
0.0168001
-3.22954e-10
3.68094e-16
0.0168001
6.1431e-10
9.28991e-16
0.0168001
-2.06851e-09
1.8629e-15
0.0168
3.27345e-09
4.87439e-15
0.0168001
-1.30902e-08
9.90787e-15
0.0168
1.77633e-08
2.58598e-14
0.0168
-8.27133e-08
5.25433e-14
0.0167997
1.00719e-07
1.33244e-13
0.0168
-5.38449e-07
2.71423e-13
0.0167981
7.33983e-07
6.34867e-13
0.0168007
-4.13029e-06
1.41288e-12
0.016788
7.8448e-06
2.94116e-12
0.0168169
-3.53456e-05
5.74682e-12
0.0167297
6.83335e-05
1.49311e-11
0.0169175
-0.000217601
3.72223e-11
0.0166578
0.000200572
6.64343e-11
0.0169302
-0.000462136
2.43466e-10
-0.000320192
2.61134e-10
0.0168123
0.0168001
5.71701e-14
-2.31723e-16
0.0168001
-5.34479e-13
3.84299e-18
0.0168001
-1.92272e-13
9.71547e-18
0.0168001
-4.43249e-12
2.21482e-17
0.0168001
-2.2471e-12
4.47267e-17
0.0168001
-2.93096e-11
9.81466e-17
0.0168001
-2.13714e-11
1.91426e-16
0.0168001
-1.90553e-10
4.51791e-16
0.0168001
-1.84614e-10
8.85836e-16
0.0168001
-1.23256e-09
2.31402e-15
0.0168001
-1.41997e-09
4.62614e-15
0.0168
-7.84089e-09
1.29253e-14
0.0168
-1.00289e-08
2.67186e-14
0.0167999
-4.82298e-08
7.37573e-14
0.0168
-6.3253e-08
1.57711e-13
0.0167993
-2.75543e-07
3.82553e-13
0.0168
-3.54084e-07
9.68522e-13
0.0167956
-1.44669e-06
1.43239e-12
0.0168008
-1.03335e-06
5.32056e-12
0.0167683
-8.27927e-06
4.22768e-12
0.0168156
6.0592e-06
1.77264e-11
0.0166285
-5.0672e-05
2.72208e-11
0.0167783
2.02903e-05
7.74894e-11
0.0164596
-0.000148033
1.94524e-10
-0.000232609
1.44546e-10
0.0160755
0.0168001
-2.31309e-16
0.0168001
3.88534e-18
0.0168001
9.83066e-18
0.0168001
2.25777e-17
0.0168001
4.55704e-17
0.0168001
1.01763e-16
0.0168001
1.99098e-16
0.0168001
4.73286e-16
0.0168001
9.37597e-16
0.0168001
2.36058e-15
0.0168
4.73428e-15
0.0168
1.21132e-14
0.0168
2.43526e-14
0.0167999
6.17162e-14
0.0167997
1.23312e-13
0.0167991
3.1081e-13
0.0167984
6.16064e-13
0.0167956
1.5353e-12
0.0167928
2.95119e-12
0.0167792
7.03773e-12
0.0167774
1.45629e-11
0.0167123
3.61379e-11
0.0166909
6.87441e-11
0.0165662
1.81213e-10
7.99038e-11
0.0160343
0.0168001
1.05811e-09
5.66254e-16
0.0168001
5.75484e-09
2.46393e-15
0.0168001
1.98961e-08
6.38582e-15
0.0168001
5.54822e-08
1.15641e-14
0.0168002
1.41041e-07
2.23602e-14
0.0168001
3.52333e-07
4.10307e-14
0.0168008
8.43773e-07
7.44679e-14
0.0168
2.10472e-06
1.7962e-13
0.0168047
4.88832e-06
2.70373e-13
0.0167977
1.31011e-05
1.1443e-12
0.0168351
3.04103e-05
1.26926e-12
0.0167784
8.6615e-05
7.31513e-12
0.0170226
0.000236704
1.63637e-11
0.0168036
0.00084021
3.6719e-11
0.0178047
0.00274755
1.52058e-10
0.0175526
0.0126441
2.41737e-10
0.0167824
0.013428
3.94681e-11
0.0154409
0.0131342
2.63165e-11
0.014404
0.0133598
2.53363e-11
0.0134365
0.0141875
2.52906e-11
0.0125727
0.0155016
2.41532e-11
0.0116279
0.017211
2.19412e-11
0.0107944
0.0193532
1.95118e-11
0.0107822
0.0218524
1.77665e-11
0.0234331
1.7204e-11
0.0162968
0.0168001
8.47292e-10
5.68501e-16
0.0168001
6.56503e-09
2.5237e-15
0.0168001
2.00105e-08
6.35367e-15
0.0168001
6.05045e-08
1.21226e-14
0.0168
1.43162e-07
2.27658e-14
0.0168
3.82251e-07
4.40741e-14
0.0168
8.62292e-07
8.16184e-14
0.0167998
2.23718e-06
1.86412e-13
0.0167996
5.10988e-06
3.63322e-13
0.0167997
1.28129e-05
9.60169e-13
0.0167994
3.07195e-05
1.95221e-12
0.0168051
8.00483e-05
5.46427e-12
0.0168226
0.000218721
1.43492e-11
0.0169198
0.000739998
3.90529e-11
0.0173336
0.00232688
1.18865e-10
0.0177428
0.0122159
2.6369e-10
0.016983
0.0141852
2.27858e-11
0.0160478
0.0140678
1.53224e-11
0.0152113
0.0141946
2.05823e-11
0.0144022
0.0149954
2.39284e-11
0.0137311
0.0161719
2.29442e-11
0.0132258
0.0177156
2.09198e-11
0.0130622
0.0195159
1.80614e-11
0.0139092
0.0210045
1.78573e-11
0.0214732
1.90005e-11
0.0158681
0.0168001
7.6871e-10
5.59831e-16
0.0168001
5.96384e-09
2.47181e-15
0.0168001
1.83567e-08
6.23454e-15
0.0168001
5.52798e-08
1.18159e-14
0.0168001
1.30944e-07
2.21936e-14
0.0168001
3.47511e-07
4.24715e-14
0.0168002
7.8158e-07
7.88914e-14
0.0168004
2.03807e-06
1.7635e-13
0.016801
4.49894e-06
3.54201e-13
0.0168015
1.217e-05
8.74045e-13
0.0168061
2.61121e-05
1.83822e-12
0.0168051
8.01948e-05
5.31292e-12
0.0168368
0.000186673
1.27512e-11
0.0168599
0.000714115
3.25385e-11
0.0170885
0.00209224
1.08261e-10
0.0179898
0.0112948
2.74737e-10
0.0173945
0.0147792
1.00962e-11
0.0166557
0.0148053
9.71172e-12
0.0159693
0.0148795
1.51701e-11
0.0153689
0.015594
2.19034e-11
0.0148629
0.0166764
2.1257e-11
0.0146585
0.017919
1.94794e-11
0.0149844
0.0191894
1.77495e-11
0.0159234
0.0200646
1.76636e-11
0.0201919
1.57547e-11
0.0172038
0.0168001
6.15759e-10
5.41679e-16
0.0168001
5.35027e-09
2.35736e-15
0.0168001
1.64036e-08
5.95827e-15
0.0168001
4.91281e-08
1.10012e-14
0.0168001
1.16279e-07
2.04195e-14
0.0168001
3.05498e-07
3.74688e-14
0.0168002
6.83224e-07
6.75754e-14
0.0168004
1.79545e-06
1.50147e-13
0.0168012
3.73265e-06
2.66592e-13
0.0168019
1.13906e-05
8.09079e-13
0.0168084
1.95364e-05
1.31057e-12
0.0168059
8.19615e-05
5.01583e-12
0.0168434
0.000148821
9.13182e-12
0.0168601
0.000694831
3.82898e-11
0.0171211
0.00182714
9.6136e-11
0.0187
0.00969526
2.79131e-10
0.0180831
0.015396
6.85779e-12
0.0172279
0.0156602
5.41857e-12
0.016678
0.0154283
9.97915e-12
0.0162968
0.0159741
1.98003e-11
0.0160327
0.0169389
2.02066e-11
0.0160079
0.0179426
1.81687e-11
0.0163524
0.018844
1.69222e-11
0.0171398
0.0192763
1.70926e-11
0.0191645
1.71175e-11
0.0181661
0.0168001
1.79073e-10
5.31612e-16
0.0168001
6.98438e-09
2.3328e-15
0.0168001
1.08341e-08
5.86809e-15
0.0168001
6.0231e-08
1.07951e-14
0.0168001
8.08404e-08
1.99801e-14
0.0168
3.75282e-07
3.64435e-14
0.0168002
4.86224e-07
6.58966e-14
0.0167998
2.22077e-06
1.44223e-13
0.0168008
2.71507e-06
2.71401e-13
0.0167983
1.37202e-05
7.45677e-13
0.0168041
1.36582e-05
1.37019e-12
0.0167905
9.50133e-05
4.94155e-12
0.0168544
8.45245e-05
8.36472e-12
0.0168445
0.000701981
3.67618e-11
0.0173426
0.00132601
9.07591e-11
0.0204818
0.00653225
2.93279e-10
0.019247
0.0166309
2.51212e-11
0.018341
0.0165658
1.25737e-11
0.0175327
0.0162365
6.39109e-12
0.0171442
0.0163613
1.65764e-11
0.0170482
0.017034
1.8008e-11
0.0171647
0.017825
1.67271e-11
0.0174837
0.0185243
1.56795e-11
0.0180507
0.0187086
1.60573e-11
0.0183539
1.52512e-11
0.0188606
0.0168001
5.56818e-10
4.3729e-16
0.0168001
3.72438e-09
2.45186e-15
0.0168001
1.3157e-08
5.00113e-15
0.0168001
3.51986e-08
1.03798e-14
0.0168001
9.38781e-08
1.69945e-14
0.0168002
2.21423e-07
3.0306e-14
0.0168001
5.60352e-07
5.30202e-14
0.0168011
1.28885e-06
9.38309e-14
0.0168005
3.28331e-06
2.21694e-13
0.0168068
7.40717e-06
3.38247e-13
0.0168001
2.01209e-05
1.38189e-12
0.01685
4.51477e-05
1.63104e-12
0.016802
0.000131424
8.44726e-12
0.0171538
0.000348984
2.0637e-11
0.0172894
0.00118787
3.91396e-11
0.0198366
0.00397081
1.58144e-10
0.0203622
0.0160954
1.33472e-10
0.0196044
0.0173221
3.74394e-11
0.0185417
0.0172979
2.80604e-11
0.0180339
0.0168685
1.45519e-11
0.0178977
0.0171691
1.56739e-11
0.0180562
0.0176652
1.59649e-11
0.018433
0.0181465
1.48372e-11
0.0188624
0.0182782
1.49651e-11
0.0178128
1.38876e-11
0.0194026
0.0168001
6.58233e-10
4.40664e-16
0.0168001
3.42854e-09
2.49437e-15
0.0168001
1.2776e-08
5.08078e-15
0.0168001
3.27037e-08
1.05858e-14
0.0168001
9.00476e-08
1.73986e-14
0.0168001
2.0718e-07
3.06303e-14
0.0168001
5.37967e-07
5.45163e-14
0.0168002
1.20906e-06
9.76135e-14
0.0168003
3.08959e-06
2.13977e-13
0.0168008
6.96384e-06
4.0758e-13
0.0168029
1.78074e-05
1.08584e-12
0.0168083
3.97065e-05
2.11843e-12
0.0168249
0.000113889
6.28504e-12
0.0169008
0.000272525
1.50344e-11
0.0171071
0.000978094
4.34126e-11
0.0181006
0.00296867
1.24908e-10
0.0202249
0.0139483
2.86584e-10
0.0199675
0.0175755
4.59613e-11
0.0194471
0.0178163
3.1201e-11
0.0189006
0.0174149
1.01565e-11
0.0186861
0.0173824
1.37656e-11
0.0187445
0.0176055
1.53547e-11
0.0190957
0.017794
1.49322e-11
0.0195389
0.0178345
1.38675e-11
0.017427
1.36954e-11
0.0199228
0.0168001
8.05476e-10
4.58377e-16
0.0168001
2.00004e-09
2.66663e-15
0.0168001
1.30195e-08
5.27415e-15
0.0168001
2.10839e-08
1.10109e-14
0.0168001
9.02599e-08
1.72069e-14
0.0168001
1.35459e-07
3.02811e-14
0.0168001
5.39435e-07
4.89773e-14
0.0168006
7.77168e-07
8.57562e-14
0.0168004
3.22769e-06
1.79653e-13
0.0168033
4.01112e-06
3.09402e-13
0.0168003
2.07546e-05
9.49446e-13
0.0168211
1.87799e-05
1.50567e-12
0.0167933
0.000140904
5.85383e-12
0.0169323
0.00013298
1.08077e-11
0.0168745
0.00103285
4.40991e-11
0.0176027
0.00223575
1.09038e-10
0.0203539
0.0111739
2.90792e-10
0.0203861
0.017543
9.89241e-12
0.0200446
0.0181565
5.85246e-12
0.019609
0.0178507
1.77313e-12
0.0194639
0.017528
8.18208e-12
0.0194645
0.0176044
1.24382e-11
0.0196321
0.0176253
1.27624e-11
0.0199999
0.0174651
1.50421e-11
0.0170717
1.35541e-11
0.0203549
0.0168001
3.15163e-10
8.0468e-16
0.0168001
2.18646e-09
3.09907e-15
0.0168001
6.96513e-09
7.38981e-15
0.0168001
2.04817e-08
1.15302e-14
0.0168001
4.93807e-08
2.0497e-14
0.0168001
1.27533e-07
2.85119e-14
0.0168004
2.90588e-07
4.73437e-14
0.0168004
7.47462e-07
8.08624e-14
0.016802
1.61408e-06
1.13724e-13
0.0168013
4.66532e-06
3.90841e-13
0.0168131
9.00232e-06
3.65896e-13
0.0168012
3.02865e-05
2.53829e-12
0.0168828
5.93701e-05
3.12821e-12
0.0168126
0.000201345
1.50342e-11
0.0173141
0.000529488
3.4812e-11
0.0177089
0.00183608
1.07646e-10
0.0221947
0.00666106
3.20939e-10
0.0215717
0.0181634
4.94061e-11
0.0212024
0.0185276
-9.96661e-12
0.0205724
0.0184809
-5.92798e-12
0.0202077
0.0178931
3.29665e-12
0.0201732
0.0176391
9.2775e-12
0.0202391
0.0175595
1.02625e-11
0.0204252
0.0172778
1.31145e-11
0.016806
1.52912e-11
0.0206893
0.0168001
1.11012e-10
1.09785e-15
0.0168001
2.47574e-09
3.95287e-15
0.0168001
4.629e-09
9.1436e-15
0.0168001
2.16148e-08
1.37468e-14
0.0168001
3.41089e-08
2.31982e-14
0.0168001
1.34463e-07
3.24396e-14
0.0168002
2.04972e-07
5.14976e-14
0.0168001
7.88213e-07
8.44091e-14
0.0168006
1.15097e-06
1.45082e-13
0.0168005
4.7394e-06
3.10207e-13
0.0168036
5.84301e-06
6.13647e-13
0.0168031
3.05904e-05
1.48294e-12
0.0168332
2.90237e-05
3.38573e-12
0.0168269
0.000206481
7.29847e-12
0.0171123
0.000242783
2.42749e-11
0.0174034
0.00154045
4.75695e-11
0.0200162
0.00403848
1.32922e-10
0.0223614
0.0157998
1.90207e-10
0.0220268
0.01886
2.70015e-11
0.0214514
0.0190547
1.64167e-11
0.0209324
0.0184117
3.09408e-12
0.0207588
0.0178128
9.00609e-12
0.0207984
0.0175187
1.25626e-11
0.0208807
0.0171958
1.62433e-11
0.0166679
1.84792e-11
0.0210164
0.0168001
2.11114e-10
9.43567e-16
0.0168001
1.23631e-09
5.85924e-15
0.0168001
4.51246e-09
8.9979e-15
0.0168001
1.17972e-08
1.77197e-14
0.0168001
3.18732e-08
2.27461e-14
0.0168001
7.37897e-08
3.66785e-14
0.0168001
1.88054e-07
4.76184e-14
0.0168005
4.23351e-07
7.62907e-14
0.0168005
1.10035e-06
1.25324e-13
0.0168029
2.34005e-06
2.12775e-13
0.0168018
6.8777e-06
5.06861e-13
0.0168191
1.33311e-05
8.60421e-13
0.0168036
4.39852e-05
2.80904e-12
0.0169196
9.04062e-05
4.77859e-12
0.0168475
0.000312722
1.75984e-11
0.0175655
0.000820865
3.8022e-11
0.0182028
0.00339243
1.206e-10
0.0218249
0.0121552
2.6258e-10
0.0222328
0.0184503
2.61685e-11
0.0220698
0.0192161
1.30572e-11
0.0215608
0.018921
9.20074e-13
0.0213212
0.0180502
1.44553e-11
0.0212979
0.017541
1.7687e-11
0.021347
0.0171448
2.25654e-11
0.0166163
2.77863e-11
0.0213961
0.0168001
2.75617e-10
1.06849e-15
0.0168001
7.15198e-10
6.6271e-15
0.0168001
4.49151e-09
1.00164e-14
0.0168001
7.48031e-09
1.95483e-14
0.0168001
3.0984e-08
2.47317e-14
0.0168001
4.77133e-08
3.85541e-14
0.0168001
1.82812e-07
4.98682e-14
0.0168002
2.74582e-07
7.63227e-14
0.0168003
1.05075e-06
1.20777e-13
0.0168011
1.52689e-06
2.05259e-13
0.0168017
6.20016e-06
4.58662e-13
0.0168068
8.1646e-06
8.29722e-13
0.0168103
4.01636e-05
2.53154e-12
0.0168543
4.62655e-05
4.30508e-12
0.0168838
0.00028116
1.62114e-11
0.0172431
0.000459721
3.97083e-11
0.0184508
0.00217766
1.04475e-10
0.0229557
0.00762344
3.04823e-10
0.0231144
0.0182871
6.28146e-11
0.0229802
0.0193518
-1.21012e-12
0.0225614
0.0193391
2.00135e-12
0.0220141
0.0185984
1.67406e-11
0.0218084
0.0177426
2.45851e-11
0.0217782
0.0171743
3.21589e-11
0.0166174
4.07472e-11
0.0217729
0.0168001
1.20951e-10
1.74953e-15
0.0168001
8.7503e-10
5.79758e-15
0.0168001
2.69393e-09
1.30513e-14
0.0168001
8.16158e-09
1.817e-14
0.0168001
1.92337e-08
2.93452e-14
0.0168001
5.14399e-08
3.63283e-14
0.0168001
1.14969e-07
5.3254e-14
0.0168001
3.00392e-07
7.0576e-14
0.0168005
6.63285e-07
1.07518e-13
0.0168003
1.7336e-06
1.84761e-13
0.0168026
3.82585e-06
3.22864e-13
0.0168006
1.00328e-05
7.49025e-13
0.0168179
2.28567e-05
1.50472e-12
0.0168045
5.91074e-05
3.24747e-12
0.0169337
0.000151153
1.17984e-11
0.016972
0.000418797
1.66323e-11
0.0178648
0.00128546
6.71084e-11
0.0207348
0.00474416
1.09286e-10
0.0234142
0.0155907
1.81061e-10
0.023449
0.0193158
2.38274e-11
0.0231167
0.0196703
1.96662e-11
0.02262
0.0190931
1.7258e-11
0.0223993
0.0179617
2.35705e-11
0.0222636
0.0173032
4.24464e-11
0.0166738
5.82126e-11
0.0222042
0.0168001
4.54878e-11
1.88083e-15
0.0168001
8.27808e-10
6.15544e-15
0.0168001
1.67084e-09
1.38376e-14
0.0168001
7.28554e-09
1.90248e-14
0.0168001
1.22505e-08
3.05754e-14
0.0168001
4.51238e-08
3.69475e-14
0.0168001
7.33532e-08
5.33763e-14
0.0168002
2.60822e-07
6.64569e-14
0.0168004
4.19473e-07
9.75017e-14
0.0168006
1.49207e-06
1.48936e-13
0.0168021
2.36464e-06
2.47808e-13
0.0168033
8.72868e-06
5.30451e-13
0.0168131
1.29989e-05
9.84189e-13
0.0168164
5.538e-05
2.68961e-12
0.0168923
7.49668e-05
5.32642e-12
0.0169267
0.000382403
1.55639e-11
0.0174826
0.000727314
4.16825e-11
0.0190187
0.00320264
1.04262e-10
0.023379
0.0112048
2.56966e-10
0.023809
0.0188795
7.00907e-11
0.0238301
0.0196465
5.64431e-11
0.0234846
0.0194365
4.01616e-11
0.0229263
0.018519
2.20801e-11
0.0227208
0.0175029
5.34935e-11
0.0167792
6.4907e-11
0.0226065
0.0168001
7.68166e-11
1.28148e-15
0.0168001
4.39432e-10
8.07762e-15
0.0168001
1.63604e-09
1.1786e-14
0.0168001
4.19126e-09
2.28614e-14
0.0168001
1.15651e-08
2.75998e-14
0.0168001
2.63405e-08
4.19222e-14
0.0168001
6.85738e-08
4.8782e-14
0.0168002
1.52205e-07
6.84661e-14
0.0168002
3.9195e-07
8.58136e-14
0.0168008
8.64142e-07
1.258e-13
0.016801
2.2314e-06
2.01255e-13
0.0168048
4.91279e-06
3.39288e-13
0.0168048
1.2855e-05
7.70535e-13
0.0168313
2.87801e-05
1.36885e-12
0.0168286
7.70056e-05
4.54552e-12
0.0170228
0.000187893
6.11125e-12
0.0171886
0.000559065
2.90695e-11
0.0187479
0.00163788
6.15188e-11
0.0238757
0.00606752
1.3431e-10
0.0248817
0.0178548
1.8399e-10
0.024677
0.0198438
7.34897e-11
0.0241635
0.0199449
6.24556e-11
0.0235386
0.0191395
5.53448e-11
0.0232131
0.017824
5.85093e-11
0.0169597
7.95619e-11
0.0230261
0.0168001
8.3345e-11
1.33375e-15
0.0168001
2.51184e-10
8.34437e-15
0.0168001
1.40758e-09
1.21549e-14
0.0168001
2.57766e-09
2.35309e-14
0.0168001
9.72889e-09
2.8263e-14
0.0168001
1.64178e-08
4.27932e-14
0.0168001
5.72308e-08
4.91646e-14
0.0168001
9.49137e-08
6.83173e-14
0.0168002
3.25629e-07
8.27992e-14
0.0168005
5.35574e-07
1.18302e-13
0.0168009
1.84627e-06
1.78698e-13
0.0168028
2.99552e-06
2.93768e-13
0.0168049
1.06639e-05
6.32468e-13
0.0168171
1.64921e-05
1.18307e-12
0.0168274
6.62108e-05
3.2255e-12
0.0169192
9.56286e-05
6.6974e-12
0.017025
0.000451022
1.87959e-11
0.0177278
0.000931763
5.58853e-11
0.0199896
0.00379785
1.25954e-10
0.0244745
0.0133406
3.13893e-10
0.0249296
0.0193791
9.91721e-11
0.0249536
0.0199117
8.95165e-11
0.0243493
0.0197378
7.10608e-11
0.0237563
0.0184105
6.42274e-11
0.0172692
1.07938e-10
0.0234352
0.0168001
3.5394e-11
2.11002e-15
0.0168001
2.53691e-10
6.82266e-15
0.0168001
7.86726e-10
1.52556e-14
0.0168001
2.36491e-09
2.06698e-14
0.0168001
5.59518e-09
3.29374e-14
0.0168001
1.47809e-08
3.86264e-14
0.0168001
3.31342e-08
5.45558e-14
0.0168001
8.51221e-08
6.26548e-14
0.0168002
1.8845e-07
8.52599e-14
0.0168003
4.81657e-07
1.08559e-13
0.0168011
1.06232e-06
1.59437e-13
0.0168013
2.72597e-06
2.70535e-13
0.016806
5.99078e-06
4.64046e-13
0.0168065
1.57842e-05
1.17246e-12
0.0168384
3.42094e-05
1.7681e-12
0.0168339
9.90961e-05
7.6453e-12
0.0170693
0.000215072
1.04161e-11
0.0172351
0.000761754
5.14113e-11
0.0189559
0.00207003
1.15048e-10
0.0241967
0.00806783
3.39543e-10
0.0253799
0.0181845
1.46799e-10
0.0254654
0.0198201
7.95115e-11
0.0251888
0.0200043
8.67114e-11
0.0245113
0.0190805
9.42193e-11
0.0177477
1.56752e-10
0.0240182
0.0168001
1.58505e-11
2.15315e-15
0.0168001
2.21069e-10
6.93995e-15
0.0168001
4.88078e-10
1.55257e-14
0.0168001
1.96008e-09
2.09839e-14
0.0168001
3.53795e-09
3.34175e-14
0.0168001
1.21078e-08
3.90213e-14
0.0168001
2.10449e-08
5.49382e-14
0.0168001
6.9505e-08
6.22703e-14
0.0168002
1.19764e-07
8.36574e-14
0.0168002
3.93144e-07
1.0254e-13
0.0168006
6.73784e-07
1.45414e-13
0.0168011
2.22571e-06
2.32546e-13
0.0168033
3.77611e-06
3.86412e-13
0.0168062
1.28121e-05
8.62484e-13
0.0168191
2.10965e-05
1.92379e-12
0.0168398
7.77591e-05
3.94135e-12
0.0169248
0.000128952
1.28376e-11
0.0171581
0.000524686
2.49431e-11
0.0180552
0.0011755
6.84355e-11
0.0217343
0.00437258
1.54556e-10
0.0253505
0.0145416
2.73448e-10
0.02556
0.0196
1.23607e-10
0.0256156
0.0199345
1.29294e-10
0.0252039
0.0194772
1.62191e-10
0.0182851
2.49253e-10
0.0246367
0.0168001
2.5485e-11
1.38232e-15
0.0168001
9.77066e-11
8.87078e-15
0.0168001
4.78162e-10
1.27553e-14
0.0168001
9.68505e-10
2.47369e-14
0.0168001
3.33312e-09
2.93771e-14
0.0168001
6.13318e-09
4.43098e-14
0.0168001
1.96411e-08
4.96862e-14
0.0168001
3.54833e-08
6.77977e-14
0.0168001
1.11709e-07
7.64267e-14
0.0168003
2.01099e-07
1.01867e-13
0.0168003
6.31363e-07
1.29476e-13
0.0168014
1.13411e-06
1.89129e-13
0.0168016
3.58286e-06
3.24579e-13
0.016808
6.37429e-06
5.59193e-13
0.0168079
2.09993e-05
1.40711e-12
0.0168502
3.53107e-05
2.19899e-12
0.0168434
0.000134461
8.95571e-12
0.017143
0.000224236
1.31066e-11
0.0173279
0.000985619
5.77216e-11
0.0191816
0.00251247
1.26463e-10
0.0249418
0.00874281
3.39733e-10
0.0261302
0.0183906
2.08777e-10
0.0260137
0.0200319
2.03486e-10
0.0258153
0.0196448
2.5181e-10
0.0187536
3.92731e-10
0.0253013
0.0168001
1.18096e-11
2.18996e-15
0.0168001
8.40487e-11
7.07381e-15
0.0168001
2.61199e-10
1.58034e-14
0.0168001
7.82852e-10
2.13076e-14
0.0168001
1.85533e-09
3.3909e-14
0.0168001
4.87655e-09
3.93322e-14
0.0168001
1.09508e-08
5.52027e-14
0.0168001
2.79279e-08
6.12998e-14
0.0168001
6.19818e-08
8.10587e-14
0.0168002
1.56859e-07
9.28238e-14
0.0168005
3.47076e-07
1.23785e-13
0.0168007
8.77388e-07
1.68986e-13
0.0168023
1.93968e-06
2.55666e-13
0.0168037
4.95403e-06
4.95099e-13
0.0168138
1.08378e-05
8.72692e-13
0.0168194
2.92491e-05
2.34018e-12
0.0168916
6.20381e-05
4.33678e-12
0.0169262
0.000187598
1.24924e-11
0.0174728
0.000436231
3.34262e-11
0.0184534
0.00152494
7.08374e-11
0.022749
0.00442591
1.98641e-10
0.0263385
0.0147623
3.86165e-10
0.0263498
0.0199789
3.16256e-10
0.0260646
0.0198834
4.291e-10
0.0190552
5.82825e-10
0.0256977
0.0168001
4.69118e-12
2.19784e-15
0.0168001
6.8643e-11
7.11569e-15
0.0168001
1.5249e-10
1.59128e-14
0.0168001
6.07854e-10
2.14552e-14
0.0168001
1.10701e-09
3.41401e-14
0.0168001
3.74402e-09
3.95481e-14
0.0168001
6.57192e-09
5.54327e-14
0.0168001
2.13976e-08
6.12514e-14
0.0168001
3.72887e-08
8.06058e-14
0.0168001
1.20294e-07
9.06491e-14
0.0168003
2.09088e-07
1.18995e-13
0.0168005
6.7457e-07
1.54301e-13
0.0168012
1.16678e-06
2.26544e-13
0.0168023
3.80245e-06
4.06091e-13
0.0168066
6.46801e-06
7.08546e-13
0.0168135
2.20826e-05
1.78641e-12
0.0168398
3.53991e-05
3.20033e-12
0.0168855
0.000140228
1.13042e-11
0.0170962
0.00022399
1.72359e-11
0.0175976
0.00101655
7.74546e-11
0.019359
0.00265055
1.69446e-10
0.0252967
0.00877851
4.68781e-10
0.026786
0.018437
4.8338e-10
0.026717
0.01986
7.84393e-10
0.0190461
1.05186e-09
0.0265996
0.0168001
5.5337e-12
1.41092e-15
0.0168001
3.3482e-11
8.95421e-15
0.0168001
1.22138e-10
1.29632e-14
0.0168001
3.17784e-10
2.51147e-14
0.0168001
8.61785e-10
2.97487e-14
0.0168001
1.98298e-09
4.48556e-14
0.0168001
5.062e-09
4.98602e-14
0.0168001
1.13428e-08
6.76701e-14
0.0168001
2.85407e-08
7.4077e-14
0.0168001
6.3564e-08
9.61343e-14
0.0168002
1.59376e-07
1.11405e-13
0.0168005
3.54291e-07
1.4933e-13
0.0168008
8.88506e-07
2.16007e-13
0.0168026
1.97421e-06
3.38793e-13
0.0168039
4.98772e-06
7.01171e-13
0.0168149
1.10416e-05
1.30627e-12
0.0168206
2.90009e-05
3.42545e-12
0.0168965
6.36222e-05
6.93478e-12
0.016936
0.000181207
1.8806e-11
0.017501
0.000446643
5.19558e-11
0.0186508
0.00148669
1.19486e-10
0.0230109
0.00437949
3.4015e-10
0.0269689
0.0144199
7.22711e-10
0.0273995
0.0192519
1.4337e-09
0.0187044
1.59544e-09
0.0275517
0.0168001
3.92828e-12
1.45295e-15
0.0168001
2.14718e-11
8.85479e-15
0.0168001
7.96566e-11
1.30568e-14
0.0168001
2.04988e-10
2.50584e-14
0.0168001
5.57975e-10
2.98174e-14
0.0168001
1.27763e-09
4.48671e-14
0.0168001
3.26236e-09
4.9948e-14
0.0168001
7.27937e-09
6.77478e-14
0.0168001
1.83033e-08
7.41241e-14
0.0168001
4.05901e-08
9.60738e-14
0.0168002
1.01637e-07
1.10581e-13
0.0168003
2.24935e-07
1.47383e-13
0.0168006
5.62774e-07
2.08773e-13
0.0168013
1.24313e-06
3.23491e-13
0.0168031
3.12276e-06
6.59748e-13
0.0168071
6.86358e-06
1.20405e-12
0.0168178
1.76993e-05
3.30733e-12
0.0168425
3.81798e-05
6.17297e-12
0.0169099
0.000110045
2.1881e-11
0.0171182
0.000234488
3.73205e-11
0.0177415
0.000845489
1.59405e-10
0.0197816
0.00231404
3.68023e-10
0.0258773
0.00819724
1.10362e-09
0.0275053
0.0174376
1.70036e-09
0.0175375
1.87583e-09
0.0284524
0.0168001
2.54147e-12
1.50364e-15
0.0168001
1.36642e-11
8.76352e-15
0.0168001
5.01735e-11
1.3307e-14
0.0168001
1.29929e-10
2.50922e-14
0.0168001
3.49823e-10
3.00699e-14
0.0168001
8.06353e-10
4.50433e-14
0.0168001
2.03475e-09
5.02391e-14
0.0168001
4.568e-09
6.80356e-14
0.0168001
1.13538e-08
7.44759e-14
0.0168001
2.53194e-08
9.64071e-14
0.0168001
6.27515e-08
1.11007e-13
0.0168002
1.3963e-07
1.47731e-13
0.0168004
3.46284e-07
2.10715e-13
0.0168009
7.69522e-07
3.26454e-13
0.0168019
1.91137e-06
6.77572e-13
0.0168044
4.25661e-06
1.21681e-12
0.0168109
1.05195e-05
3.43239e-12
0.0168241
2.41074e-05
6.05884e-12
0.0168715
5.88777e-05
2.18342e-11
0.0169517
0.00014906
3.29188e-11
0.0173772
0.000400802
1.44966e-10
0.0184657
0.00119511
3.23343e-10
0.0224345
0.00413582
1.00521e-09
0.026847
0.0127478
2.38162e-09
0.0151408
1.59421e-09
0.0290404
0.0168001
2.11542e-12
1.52927e-15
0.0168001
5.94353e-12
8.77532e-15
0.0168001
3.553e-11
1.35293e-14
0.0168001
6.06445e-11
2.52418e-14
0.0168001
2.42539e-10
3.03496e-14
0.0168001
3.77655e-10
4.53068e-14
0.0168001
1.39621e-09
5.04638e-14
0.0168001
2.11428e-09
6.81417e-14
0.0168001
7.72144e-09
7.3854e-14
0.0168001
1.15058e-08
9.43373e-14
0.0168001
4.2219e-08
1.0677e-13
0.0168002
6.18915e-08
1.37084e-13
0.0168003
2.29889e-07
2.19409e-13
0.0168007
3.29573e-07
3.79116e-13
0.0168012
1.25251e-06
9.50399e-13
0.0168036
1.73599e-06
3.06744e-12
0.0168062
7.04165e-06
2.58555e-12
0.0168204
8.63597e-06
2.6263e-11
0.0168315
4.38775e-05
-8.96466e-13
0.0169244
4.35008e-05
9.10696e-11
0.0170201
0.000289733
9.14406e-11
0.0177484
0.0004087
4.15514e-10
0.0198394
0.00197475
1.18091e-09
0.0251543
0.00694957
3.71743e-09
0.0119575
1.39762e-09
0.0282495
0.0168001
4.82226e-13
2.16548e-15
0.0168001
6.34499e-12
7.4392e-15
0.0168001
1.24595e-11
1.62296e-14
0.0168001
5.60571e-11
2.20835e-14
0.0168001
8.87511e-11
3.48486e-14
0.0168001
3.42478e-10
4.04267e-14
0.0168001
5.14542e-10
5.63846e-14
0.0168001
1.93061e-09
6.2086e-14
0.0168001
2.83701e-09
8.1119e-14
0.0168001
1.06857e-08
8.95465e-14
0.0168001
1.54232e-08
1.14992e-13
0.0168001
5.89647e-08
1.41328e-13
0.0168002
8.31258e-08
1.96673e-13
0.0168002
3.25882e-07
3.32864e-13
0.0168009
4.3432e-07
5.65411e-13
0.0168006
1.84725e-06
1.33875e-12
0.0168052
2.07808e-06
2.49448e-12
0.0168015
1.08013e-05
7.09291e-12
0.0168344
9.49293e-06
1.25461e-11
0.016806
6.29866e-05
4.43939e-11
0.0170281
5.71467e-05
8.112e-11
0.0170001
0.000400218
3.17888e-10
0.0182453
0.000659284
8.42566e-10
0.0217155
0.00323768
2.27004e-09
0.00803081
3.04111e-09
0.0253315
0.0168001
7.92684e-13
1.53754e-15
0.0168001
1.25335e-12
8.87455e-15
0.0168001
1.18707e-11
1.3782e-14
0.0168001
1.34819e-11
2.54812e-14
0.0168001
7.94021e-11
3.06752e-14
0.0168001
8.10324e-11
4.56148e-14
0.0168001
4.43681e-10
5.08567e-14
0.0168001
4.20132e-10
6.85061e-14
0.0168001
2.35323e-09
7.45808e-14
0.0168001
2.04831e-09
9.57722e-14
0.0168001
1.22205e-08
1.07566e-13
0.0168001
9.51332e-09
1.41221e-13
0.0168001
6.30293e-08
1.86018e-13
0.0168004
4.15576e-08
2.78089e-13
0.0168004
3.40786e-07
5.46418e-13
0.016802
1.20862e-07
8.96123e-13
0.0168013
2.17441e-06
2.90052e-12
0.0168116
-2.87159e-07
4.49349e-12
0.0168015
1.61191e-05
1.76632e-11
0.0168644
-5.31514e-06
3.17531e-11
0.0167886
0.000114559
1.18431e-10
0.0171291
2.00208e-05
3.23007e-10
0.0172513
0.000540936
9.23075e-10
0.0188454
0.00130484
2.62395e-09
0.00541436
3.80905e-09
0.0209931
0.0168001
2.55485e-13
2.15008e-15
0.0168001
1.8522e-12
7.54002e-15
0.0168001
5.72255e-12
1.62906e-14
0.0168001
1.69579e-11
2.22536e-14
0.0168001
4.02606e-11
3.49671e-14
0.0168001
1.04297e-10
4.06989e-14
0.0168001
2.35426e-10
5.6619e-14
0.0168001
5.86279e-10
6.26319e-14
0.0168001
1.31047e-09
8.18311e-14
0.0168001
3.19847e-09
9.09765e-14
0.0168001
7.13147e-09
1.17363e-13
0.0168
1.71097e-08
1.44198e-13
0.0168001
3.80037e-08
1.99898e-13
0.0168
8.9806e-08
3.24831e-13
0.0168001
1.99039e-07
5.31806e-13
0.0167995
4.61676e-07
1.2324e-12
0.0168003
1.04899e-06
2.24902e-12
0.0167962
2.41896e-06
6.75574e-12
0.0168054
5.66797e-06
1.18136e-11
0.0167779
1.37973e-05
4.30672e-11
0.0168509
3.22141e-05
8.69843e-11
0.0167279
0.000101419
3.12921e-10
0.0169871
0.000244767
8.4921e-10
0.0168819
0.00107931
2.75034e-09
0.00409832
4.32029e-09
0.0177397
0.0168001
-9.48761e-14
2.14627e-15
0.0168001
2.5436e-12
7.6048e-15
0.0168001
1.73711e-12
1.63728e-14
0.0168001
2.09519e-11
2.24009e-14
0.0168001
1.35938e-11
3.51644e-14
0.0168001
1.29068e-10
4.09751e-14
0.0168001
8.22478e-11
5.69598e-14
0.0168001
7.55158e-10
6.32229e-14
0.0168001
4.79099e-10
8.26632e-14
0.0168001
4.41915e-09
9.35862e-14
0.0168001
2.82779e-09
1.2273e-13
0.0168
2.62161e-08
1.61562e-13
0.0168
1.69795e-08
2.40903e-13
0.0167999
1.57045e-07
4.26453e-13
0.0167999
1.00048e-07
7.67034e-13
0.0167991
9.58355e-07
1.63113e-12
0.0167994
4.81968e-07
3.21359e-12
0.0167943
6.16003e-06
7.08572e-12
0.016797
-1.3987e-08
1.94379e-11
0.0167634
4.02661e-05
3.46374e-11
0.0167925
-1.34371e-05
9.94523e-11
0.0166144
0.000237429
2.87996e-10
0.0166962
0.000108015
8.5479e-10
0.0162384
0.00123999
2.88562e-09
0.00367112
4.70475e-09
0.0161943
0.0168001
3.25807e-13
1.52437e-15
0.0168001
4.39746e-13
9.02635e-15
0.0168001
5.10583e-12
1.38937e-14
0.0168001
4.4361e-12
2.56663e-14
0.0168001
3.46615e-11
3.08721e-14
0.0168001
2.78904e-11
4.57969e-14
0.0168001
2.02912e-10
5.11477e-14
0.0168001
1.58397e-10
6.87488e-14
0.0168001
1.15359e-09
7.50799e-14
0.0168001
8.79033e-10
9.62858e-14
0.0168001
6.55279e-09
1.08564e-13
0.0168001
4.83628e-09
1.40911e-13
0.0168
3.75269e-08
1.84225e-13
0.0168002
2.55025e-08
2.67154e-13
0.0168
2.29972e-07
4.91094e-13
0.0168007
7.18517e-08
6.69587e-13
0.0167991
1.64091e-06
2.75639e-12
0.0168056
-5.51229e-07
2.03084e-12
0.016791
1.10683e-05
1.8787e-11
0.0168347
-5.25873e-06
1.96768e-11
0.0167405
6.44841e-05
1.07919e-10
0.0169411
-3.3959e-06
2.896e-10
0.0166678
0.000317468
7.0211e-10
0.0170112
0.000561898
2.99717e-09
0.0031602
4.8632e-09
0.0170504
0.0168001
-2.40779e-13
2.13029e-15
0.0168001
1.22243e-12
7.68907e-15
0.0168001
-9.87908e-13
1.64139e-14
0.0168001
9.37806e-12
2.24628e-14
0.0168001
-5.75928e-12
3.51973e-14
0.0168001
5.53697e-11
4.09495e-14
0.0168001
-3.88064e-11
5.6899e-14
0.0168001
3.05184e-10
6.28954e-14
0.0168001
-2.82514e-10
8.20314e-14
0.0168001
1.64233e-09
9.14832e-14
0.0168001
-2.18771e-09
1.18207e-13
0.0168001
8.77288e-09
1.49995e-13
0.0168001
-1.6007e-08
2.16867e-13
0.0168
4.93114e-08
3.79673e-13
0.0168003
-1.16019e-07
7.31389e-13
0.0167997
3.33792e-07
1.48811e-12
0.0168017
-8.57885e-07
4.00711e-12
0.0167963
2.95284e-06
7.4608e-12
0.0168111
-6.12952e-06
1.94639e-11
0.0167652
2.89125e-05
5.36809e-11
0.0168591
-4.15524e-05
1.26464e-10
0.016607
0.000196156
3.01857e-10
0.016944
-9.93861e-06
1.04277e-09
0.0162694
0.000926684
2.58791e-09
0.0027569
4.71791e-09
0.0161676
0.0168001
1.17978e-13
1.56557e-15
0.0168001
6.78223e-13
8.97071e-15
0.0168001
2.47901e-12
1.39747e-14
0.0168001
6.37655e-12
2.56629e-14
0.0168001
1.73544e-11
3.09824e-14
0.0168001
3.98015e-11
4.58595e-14
0.0168001
1.02213e-10
5.13493e-14
0.0168001
2.29127e-10
6.89808e-14
0.0168001
5.77508e-10
7.55882e-14
0.0168001
1.28878e-09
9.70914e-14
0.0168001
3.19587e-09
1.10288e-13
0.0168
7.09644e-09
1.44067e-13
0.0168
1.72912e-08
1.94551e-13
0.0168
3.781e-08
2.89566e-13
0.0167997
9.16582e-08
5.73638e-13
0.0167997
1.94583e-07
1.02333e-12
0.0167978
4.82998e-07
2.93502e-12
0.016799
9.69944e-07
5.39782e-12
0.0167861
2.64417e-06
1.84497e-11
0.0168059
5.16032e-06
3.33632e-11
0.0167302
1.5687e-05
1.1323e-10
0.0168446
3.9623e-05
3.31436e-10
0.0166478
0.000126204
7.0537e-10
0.0168095
0.000442996
3.00481e-09
0.00209862
4.73162e-09
0.0169793
0.0168001
4.75487e-13
1.56154e-15
0.0168001
2.50815e-13
9.03828e-15
0.0168001
6.26213e-12
1.40203e-14
0.0168001
3.45643e-12
2.57809e-14
0.0168001
4.25755e-11
3.11048e-14
0.0168001
2.33391e-11
4.60481e-14
0.0168001
2.55798e-10
5.15963e-14
0.0168001
1.40019e-10
6.9305e-14
0.0168001
1.50678e-09
7.62991e-14
0.0168001
8.18953e-10
9.83227e-14
0.0168
8.86398e-09
1.14382e-13
0.0168
4.65952e-09
1.52981e-13
0.0168
5.20632e-08
2.18603e-13
0.0168
2.33102e-08
3.41147e-13
0.0167996
3.11162e-07
6.66574e-13
0.0167996
7.36924e-08
1.17899e-12
0.0167976
1.90294e-06
3.12466e-12
0.0167984
-6.66465e-07
5.04889e-12
0.0167856
1.16117e-05
2.06057e-11
0.0168036
-1.60336e-05
2.98236e-11
0.0167232
7.49985e-05
1.27533e-10
0.0168374
-0.000106488
3.19518e-10
0.0166019
0.000285688
7.46652e-10
0.0167017
5.06641e-05
2.84173e-09
0.00126059
4.69409e-09
0.0170204
0.0168001
-3.91544e-14
2.11604e-15
0.0168001
1.06262e-12
7.77911e-15
0.0168001
6.39106e-13
1.64799e-14
0.0168001
8.85991e-12
2.25758e-14
0.0168001
5.04859e-12
3.52947e-14
0.0168001
5.33956e-11
4.10869e-14
0.0168001
2.64745e-11
5.70354e-14
0.0168001
2.99438e-10
6.32253e-14
0.0168001
1.18976e-10
8.26216e-14
0.0168001
1.65808e-09
9.32637e-14
0.0168001
4.48991e-10
1.23298e-13
0.0168
9.22365e-09
1.61452e-13
0.0168001
9.76777e-10
2.46307e-13
0.0168
5.30295e-08
4.38952e-13
0.0168002
-1.30976e-08
8.7825e-13
0.0167996
3.54626e-07
1.68668e-12
0.0168012
-3.18747e-07
4.22471e-12
0.0167959
2.65142e-06
8.66237e-12
0.0168081
-3.32493e-06
1.92825e-11
0.0167644
1.56702e-05
5.81936e-11
0.01685
-2.21529e-05
1.24659e-10
0.0166021
8.60127e-05
3.44149e-10
0.0169514
-3.63534e-05
9.1851e-10
0.0163622
0.000354215
2.49071e-09
0.00103856
4.02164e-09
0.0160903
0.0168001
2.11622e-13
1.5862e-15
0.0168001
7.43027e-14
9.07991e-15
0.0168001
2.96722e-12
1.40947e-14
0.0168001
1.22999e-12
2.58325e-14
0.0168001
1.89992e-11
3.11459e-14
0.0168001
5.59574e-12
4.60723e-14
0.0168001
1.03007e-10
5.16637e-14
0.0168001
1.1369e-11
6.94486e-14
0.0168001
5.29169e-10
7.69307e-14
0.0168001
-8.00358e-11
9.9744e-14
0.0168001
2.64327e-09
1.19323e-13
0.0168001
-1.37366e-09
1.65026e-13
0.0168
1.29865e-08
2.53556e-13
0.0168
-1.41929e-08
4.26305e-13
0.0167998
7.27334e-08
8.67177e-13
0.0168001
-1.63346e-07
1.7738e-12
0.0167984
5.7501e-07
3.73082e-12
0.0168015
-1.69783e-06
8.09981e-12
0.0167895
4.60652e-06
1.97594e-11
0.0168106
-1.10353e-05
3.58473e-11
0.0167428
2.78185e-05
1.12084e-10
0.0168535
-5.82069e-05
2.84968e-10
0.016663
0.000101583
5.95431e-10
0.016847
-5.40596e-05
2.26957e-09
0.000386442
3.16639e-09
0.0170565
0.0168001
-2.81409e-13
2.10971e-15
0.0168001
6.61633e-13
7.87616e-15
0.0168001
-2.49133e-12
1.65761e-14
0.0168001
4.37525e-12
2.27445e-14
0.0168001
-1.75053e-11
3.54888e-14
0.0168001
2.19072e-11
4.13716e-14
0.0168001
-1.19457e-10
5.74042e-14
0.0168001
9.23424e-11
6.39318e-14
0.0168001
-8.03206e-10
8.37978e-14
0.0168001
2.98549e-10
9.61896e-14
0.0168001
-5.28788e-09
1.28881e-13
0.0168
7.71357e-10
1.76247e-13
0.0168001
-3.39161e-08
2.75756e-13
0.0168
4.42474e-09
5.07539e-13
0.0168002
-2.1814e-07
1.05244e-12
0.0167995
8.67715e-08
1.88495e-12
0.0168007
-1.42938e-06
5.21096e-12
0.0167951
1.80447e-06
8.61457e-12
0.0168059
-9.3279e-06
2.18515e-11
0.0167618
2.15854e-05
5.42804e-11
0.0168413
-6.19894e-05
1.16372e-10
0.0166012
0.000136728
2.73038e-10
0.0169077
-0.00018081
7.0979e-10
0.0163958
0.000280995
1.74691e-09
0.000357231
2.08401e-09
0.0160493
0.0168001
3.4143e-14
1.56344e-15
0.0168001
1.57874e-13
9.19965e-15
0.0168001
5.24717e-13
1.41311e-14
0.0168001
9.82179e-13
2.59851e-14
0.0168001
2.08766e-12
3.13147e-14
0.0168001
6.36015e-13
4.63253e-14
0.0168001
-2.07193e-12
5.20416e-14
0.0168001
-2.40452e-11
6.9992e-14
0.0168001
-7.7179e-11
7.78437e-14
0.0168001
-2.87978e-10
1.01199e-13
0.0168
-8.07718e-10
1.21853e-13
0.0168
-2.45614e-09
1.67834e-13
0.0168
-6.42485e-09
2.58693e-13
0.0168
-1.65869e-08
4.23067e-13
0.0167996
-4.6263e-08
8.76742e-13
0.0167996
-8.49821e-08
1.64082e-12
0.0167977
-2.98038e-07
3.88401e-12
0.0167989
-2.96814e-07
7.54509e-12
0.016787
-1.35216e-06
1.90778e-11
0.0168054
-1.53622e-06
3.47353e-11
0.0167331
-5.55016e-06
9.81964e-11
0.0168578
-9.65968e-06
2.41516e-10
0.016656
-2.11379e-05
4.50803e-10
0.0168547
-6.9371e-05
1.58065e-09
-7.21596e-05
1.59345e-09
0.0169346
0.0168001
4.11408e-13
1.6222e-15
0.0168001
-1.03827e-12
9.19788e-15
0.0168001
3.40433e-12
1.42624e-14
0.0168001
-7.48886e-12
2.61044e-14
0.0168001
2.10242e-11
3.14948e-14
0.0168001
-4.95503e-11
4.65241e-14
0.0168001
1.15289e-10
5.23716e-14
0.0168001
-3.22894e-10
7.05227e-14
0.0168001
6.14391e-10
7.89953e-14
0.0168001
-2.06819e-09
1.03409e-13
0.0168
3.27386e-09
1.26486e-13
0.0168001
-1.30884e-08
1.76758e-13
0.0168
1.77657e-08
2.76858e-13
0.0168
-8.27032e-08
4.58123e-13
0.0167997
1.00735e-07
9.45768e-13
0.0168
-5.38396e-07
1.81362e-12
0.0167981
7.34115e-07
3.91952e-12
0.0168007
-4.13014e-06
9.35341e-12
0.016788
7.84568e-06
1.64861e-11
0.0168169
-3.5345e-05
3.65012e-11
0.0167297
6.83363e-05
8.66744e-11
0.0169175
-0.000217599
2.11959e-10
0.0166577
0.000200587
3.81431e-10
0.0169301
-0.000462115
1.26102e-09
-0.000320101
1.20728e-09
0.0168121
0.0168001
5.71765e-14
2.12204e-15
0.0168001
-5.34435e-13
7.95853e-15
0.0168001
-1.92121e-13
1.67199e-14
0.0168001
-4.43203e-12
2.29298e-14
0.0168001
-2.24603e-12
3.57947e-14
0.0168001
-2.93062e-11
4.17921e-14
0.0168001
-2.13608e-11
5.80565e-14
0.0168001
-1.90532e-10
6.49883e-14
0.0168001
-1.84561e-10
8.55081e-14
0.0168001
-1.23246e-09
9.93219e-14
0.0168001
-1.41974e-09
1.32969e-13
0.0168
-7.84059e-09
1.86674e-13
0.0168
-1.00283e-08
2.89112e-13
0.0167999
-4.82307e-08
5.54437e-13
0.0168
-6.32564e-08
1.04312e-12
0.0167993
-2.75553e-07
2.22042e-12
0.0168
-3.54152e-07
5.1675e-12
0.0167956
-1.44665e-06
7.83947e-12
0.0168008
-1.03376e-06
2.54194e-11
0.0167683
-8.27868e-06
2.61056e-11
0.0168156
6.05914e-06
8.97309e-11
0.0166285
-5.06696e-05
1.49371e-10
0.0167783
2.03021e-05
4.06878e-10
0.0164596
-0.000148012
1.07059e-09
-0.000232521
9.00893e-10
0.0160754
0.0168001
2.12909e-15
0.0168001
7.89978e-15
0.0168001
1.66603e-14
0.0168001
2.28697e-14
0.0168001
3.56966e-14
0.0168001
4.1747e-14
0.0168001
5.79565e-14
0.0168001
6.50155e-14
0.0168001
8.5649e-14
0.0168001
9.95742e-14
0.0168
1.3369e-13
0.0168
1.82315e-13
0.0168
2.76418e-13
0.0167999
4.85654e-13
0.0167997
8.51774e-13
0.0167991
1.77921e-12
0.0167984
3.3207e-12
0.0167956
7.52431e-12
0.0167928
1.37302e-11
0.0167792
3.34845e-11
0.0167774
6.14041e-11
0.0167123
1.49795e-10
0.0166909
3.43263e-10
0.0165662
9.58325e-10
6.77014e-10
0.0160342
0.0168001
1.05811e-09
3.68073e-12
0.0168001
5.75483e-09
9.96359e-12
0.0168001
1.9896e-08
1.7461e-11
0.0168001
5.54822e-08
1.82042e-11
0.0168002
1.4104e-07
2.53299e-11
0.0168001
3.52333e-07
2.45421e-11
0.0168008
8.43772e-07
3.16726e-11
0.0168
2.10472e-06
3.1765e-11
0.0168047
4.88831e-06
4.23359e-11
0.0167977
1.3101e-05
4.71955e-11
0.0168351
3.04103e-05
8.33174e-11
0.0167784
8.6614e-05
1.0243e-10
0.0170226
0.000236702
3.52176e-10
0.0168035
0.000840204
4.06974e-10
0.0178047
0.0027475
2.16912e-09
0.0175526
0.0126441
2.82234e-09
0.0167824
0.013428
4.284e-10
0.0154409
0.0131342
2.82225e-10
0.014404
0.0133598
2.94306e-10
0.0134365
0.0141875
3.056e-10
0.0125727
0.0155017
3.02667e-10
0.0116279
0.017211
2.89256e-10
0.0107944
0.0193531
2.62263e-10
0.0107822
0.0218524
2.16155e-10
0.0234331
1.29756e-10
0.0162968
0.0168001
8.47288e-10
3.68728e-12
0.0168001
6.56501e-09
9.85657e-12
0.0168001
2.00104e-08
1.7409e-11
0.0168001
6.05042e-08
1.82544e-11
0.0168
1.43161e-07
2.49651e-11
0.0168
3.8225e-07
2.50333e-11
0.0168
8.62289e-07
3.12509e-11
0.0167998
2.23718e-06
3.20608e-11
0.0167996
5.10987e-06
4.21778e-11
0.0167997
1.28128e-05
4.60609e-11
0.0167994
3.07194e-05
9.21204e-11
0.0168051
8.0048e-05
7.66668e-11
0.0168226
0.00021872
3.54067e-10
0.0169198
0.000739991
4.1103e-10
0.0173336
0.00232686
1.7081e-09
0.0177428
0.0122159
3.15949e-09
0.016983
0.0141852
2.29559e-10
0.0160478
0.0140678
1.4799e-10
0.0152113
0.0141946
2.25248e-10
0.0144022
0.0149954
2.7102e-10
0.0137311
0.0161719
2.67875e-10
0.0132258
0.0177156
2.54318e-10
0.0130622
0.0195159
2.24645e-10
0.0139092
0.0210044
1.81474e-10
0.0214732
9.64364e-11
0.0158681
0.0168001
7.68701e-10
3.6338e-12
0.0168001
5.96378e-09
9.79318e-12
0.0168001
1.83565e-08
1.7348e-11
0.0168001
5.52793e-08
1.82569e-11
0.0168001
1.30942e-07
2.49959e-11
0.0168001
3.47507e-07
2.50877e-11
0.0168002
7.81572e-07
3.13463e-11
0.0168004
2.03805e-06
3.2064e-11
0.016801
4.49888e-06
4.20328e-11
0.0168015
1.21699e-05
4.56895e-11
0.0168061
2.61118e-05
8.20355e-11
0.0168051
8.01944e-05
1.11089e-10
0.0168368
0.000186671
2.76056e-10
0.0168599
0.000714115
3.93571e-10
0.0170885
0.00209223
1.52733e-09
0.0179898
0.0112947
3.30393e-09
0.0173945
0.0147792
5.80392e-11
0.0166557
0.0148053
6.69796e-11
0.0159693
0.0148795
1.5176e-10
0.0153689
0.015594
2.34744e-10
0.0148629
0.0166764
2.338e-10
0.0146585
0.017919
2.21741e-10
0.0149844
0.0191894
1.91125e-10
0.0159234
0.0200646
1.53724e-10
0.0201919
8.0841e-11
0.0172038
0.0168001
6.15746e-10
3.57517e-12
0.0168001
5.35024e-09
9.76038e-12
0.0168001
1.64035e-08
1.72979e-11
0.0168001
4.91277e-08
1.82469e-11
0.0168001
1.16278e-07
2.49744e-11
0.0168001
3.05496e-07
2.50397e-11
0.0168002
6.8322e-07
3.12179e-11
0.0168004
1.79544e-06
3.17731e-11
0.0168012
3.73263e-06
4.09467e-11
0.0168019
1.13906e-05
4.4906e-11
0.0168084
1.95363e-05
7.54105e-11
0.0168059
8.19611e-05
1.07413e-10
0.0168434
0.00014882
2.36095e-10
0.0168601
0.000694826
4.2288e-10
0.0171211
0.00182713
1.37887e-09
0.0187001
0.00969514
3.36684e-09
0.0180831
0.015396
4.34715e-12
0.0172279
0.0156602
3.46506e-12
0.016678
0.0154283
8.4616e-11
0.0162968
0.0159741
1.99836e-10
0.0160327
0.0169389
2.08955e-10
0.0160079
0.0179426
1.87562e-10
0.0163524
0.018844
1.59241e-10
0.0171398
0.0192763
1.27901e-10
0.0191645
7.4814e-11
0.0181661
0.0168001
1.79051e-10
3.49098e-12
0.0168001
6.9844e-09
9.80983e-12
0.0168001
1.08338e-08
1.72648e-11
0.0168001
6.02307e-08
1.83098e-11
0.0168001
8.0839e-08
2.49989e-11
0.0168
3.75278e-07
2.50205e-11
0.0168002
4.86217e-07
3.10606e-11
0.0167998
2.22074e-06
3.13311e-11
0.0168008
2.71503e-06
3.91541e-11
0.0167983
1.372e-05
4.45001e-11
0.0168041
1.36581e-05
6.53504e-11
0.0167905
9.50118e-05
9.30063e-11
0.0168544
8.45235e-05
2.26826e-10
0.0168445
0.00070197
4.05559e-10
0.0173426
0.00132597
1.25635e-09
0.0204819
0.00653207
3.4775e-09
0.019247
0.016631
2.30786e-10
0.0183411
0.0165658
9.18909e-11
0.0175328
0.0162365
3.24233e-11
0.0171442
0.0163613
1.5348e-10
0.0170482
0.017034
1.74046e-10
0.0171647
0.017825
1.57017e-10
0.0174837
0.0185243
1.3194e-10
0.0180507
0.0187086
1.05604e-10
0.0183539
6.40078e-11
0.0188606
0.0168001
5.56813e-10
3.81609e-12
0.0168001
3.72441e-09
1.05511e-11
0.0168001
1.3157e-08
1.43448e-11
0.0168001
3.51987e-08
2.14387e-11
0.0168001
9.38782e-08
2.19324e-11
0.0168002
2.21423e-07
2.84934e-11
0.0168001
5.60351e-07
2.79854e-11
0.0168011
1.28884e-06
3.48892e-11
0.0168005
3.28329e-06
3.56513e-11
0.0168068
7.40714e-06
4.64017e-11
0.0168001
2.01207e-05
5.40672e-11
0.01685
4.51474e-05
8.97128e-11
0.016802
0.000131422
1.22695e-10
0.0171538
0.000348978
3.95323e-10
0.0172894
0.00118787
4.18083e-10
0.0198364
0.00397073
2.17493e-09
0.0203622
0.0160953
1.45035e-09
0.0196044
0.0173221
3.38237e-10
0.0185418
0.0172979
2.46324e-10
0.018034
0.0168685
1.19273e-10
0.0178977
0.0171691
1.36732e-10
0.0180562
0.0176652
1.32686e-10
0.018433
0.0181465
1.11778e-10
0.0188624
0.0182782
8.56457e-11
0.0178128
5.57716e-11
0.0194026
0.0168001
6.58255e-10
4.04857e-12
0.0168001
3.42869e-09
1.0199e-11
0.0168001
1.27763e-08
1.48619e-11
0.0168001
3.27044e-08
2.19769e-11
0.0168001
9.00483e-08
2.28436e-11
0.0168001
2.07181e-07
2.93378e-11
0.0168001
5.37965e-07
2.97141e-11
0.0168002
1.20905e-06
3.61147e-11
0.0168003
3.08957e-06
3.73206e-11
0.0168008
6.96379e-06
4.77751e-11
0.0168029
1.78072e-05
5.29338e-11
0.0168083
3.97062e-05
9.77485e-11
0.0168249
0.000113888
9.04443e-11
0.0169007
0.000272522
3.50864e-10
0.0171071
0.000978088
4.44672e-10
0.0181006
0.00296864
1.67301e-09
0.0202249
0.0139482
3.27932e-09
0.0199675
0.0175755
4.56283e-10
0.0194471
0.0178163
2.93369e-10
0.0189006
0.0174149
6.26183e-11
0.0186861
0.0173824
1.0461e-10
0.0187445
0.0176055
1.11071e-10
0.0190957
0.017794
9.82221e-11
0.0195389
0.0178345
6.88076e-11
0.017427
5.29931e-11
0.0199228
0.0168001
8.05629e-10
4.75895e-12
0.0168001
2.00037e-09
1.04077e-11
0.0168001
1.30208e-08
1.60604e-11
0.0168001
2.10854e-08
2.32276e-11
0.0168001
9.02631e-08
2.4304e-11
0.0168001
1.35462e-07
3.11816e-11
0.0168001
5.39437e-07
3.11715e-11
0.0168006
7.77168e-07
3.80253e-11
0.0168004
3.22766e-06
3.85241e-11
0.0168033
4.01112e-06
4.89491e-11
0.0168003
2.07543e-05
5.22972e-11
0.0168211
1.878e-05
8.64475e-11
0.0167933
0.000140903
1.18682e-10
0.0169323
0.00013298
2.56459e-10
0.0168745
0.00103284
4.47239e-10
0.0176027
0.00223573
1.42938e-09
0.0203539
0.0111737
3.21618e-09
0.0203861
0.017543
3.92011e-11
0.0200446
0.0181566
-1.41096e-11
0.019609
0.0178507
-4.1429e-11
0.0194639
0.017528
4.59103e-11
0.0194645
0.0176044
6.8449e-11
0.0196321
0.0176253
7.32132e-11
0.0199999
0.0174651
6.68518e-11
0.0170717
5.20498e-11
0.0203549
0.0168001
3.15274e-10
9.20699e-12
0.0168001
2.18699e-09
1.53855e-11
0.0168001
6.96647e-09
2.04741e-11
0.0168001
2.04841e-08
2.265e-11
0.0168001
4.93842e-08
2.81779e-11
0.0168001
1.27538e-07
2.84573e-11
0.0168004
2.90593e-07
3.39116e-11
0.0168004
7.47468e-07
3.40346e-11
0.016802
1.61409e-06
4.1824e-11
0.0168013
4.66529e-06
4.14042e-11
0.0168131
9.00233e-06
6.96185e-11
0.0168012
3.02861e-05
5.17575e-11
0.0168828
5.93697e-05
1.43939e-10
0.0168126
0.000201341
1.9244e-10
0.0173141
0.000529479
5.21043e-10
0.017709
0.00183603
1.21311e-09
0.0221948
0.00666086
3.77474e-09
0.0215717
0.0181634
4.47788e-10
0.0212024
0.0185276
-2.32556e-10
0.0205724
0.018481
-1.73802e-10
0.0202077
0.0178931
-4.90712e-11
0.0201732
0.0176391
1.30443e-11
0.0202392
0.0175595
4.1626e-11
0.0204252
0.0172778
6.97339e-11
0.016806
6.46206e-11
0.0206893
0.0168001
1.11002e-10
1.48235e-11
0.0168001
2.47661e-09
1.96559e-11
0.0168001
4.62973e-09
2.35404e-11
0.0168001
2.16177e-08
2.5076e-11
0.0168001
3.41113e-08
2.90698e-11
0.0168001
1.34468e-07
2.9162e-11
0.0168002
2.04975e-07
3.26276e-11
0.0168001
7.88215e-07
3.2947e-11
0.0168006
1.15096e-06
3.68621e-11
0.0168005
4.73935e-06
3.90984e-11
0.0168036
5.84295e-06
4.96837e-11
0.0168031
3.059e-05
5.51823e-11
0.0168332
2.90232e-05
1.15534e-10
0.0168269
0.000206479
9.12273e-11
0.0171123
0.000242778
4.46232e-10
0.0174034
0.00154043
5.27874e-10
0.020016
0.0040384
1.59245e-09
0.0223614
0.0157997
2.0145e-09
0.0220268
0.01886
1.82004e-10
0.0214514
0.0190547
6.91688e-11
0.0209324
0.0184117
-6.99791e-11
0.0207588
0.0178128
-1.35072e-11
0.0207984
0.0175187
5.23252e-11
0.0208807
0.0171958
7.68115e-11
0.0166679
8.90171e-11
0.0210165
0.0168001
2.11189e-10
2.14093e-11
0.0168001
1.23674e-09
2.37698e-11
0.0168001
4.5134e-09
2.6026e-11
0.0168001
1.17991e-08
2.87374e-11
0.0168001
3.1876e-08
2.88337e-11
0.0168001
7.37932e-08
3.12452e-11
0.0168001
1.88059e-07
3.09118e-11
0.0168005
4.23354e-07
3.33675e-11
0.0168005
1.10035e-06
3.37205e-11
0.0168029
2.34003e-06
3.82945e-11
0.0168018
6.87765e-06
4.0332e-11
0.0168191
1.3331e-05
5.666e-11
0.0168036
4.39848e-05
7.57613e-11
0.0169196
9.04054e-05
1.24434e-10
0.0168475
0.000312719
2.35936e-10
0.0175655
0.000820859
5.76391e-10
0.0182028
0.00339238
1.298e-09
0.0218249
0.012155
2.95309e-09
0.0222328
0.0184503
1.52478e-10
0.0220699
0.0192161
3.56476e-11
0.0215608
0.018921
-1.17607e-10
0.0213212
0.0180502
-1.36302e-13
0.0212979
0.017541
8.62729e-11
0.021347
0.0171448
1.30751e-10
0.0166163
1.61286e-10
0.0213961
0.0168001
2.75893e-10
2.4942e-11
0.0168001
7.15166e-10
2.68134e-11
0.0168001
4.49302e-09
2.85697e-11
0.0168001
7.48099e-09
3.06739e-11
0.0168001
3.09873e-08
3.07055e-11
0.0168001
4.77151e-08
3.23789e-11
0.0168001
1.82816e-07
3.22016e-11
0.0168002
2.74583e-07
3.36031e-11
0.0168003
1.05074e-06
3.39294e-11
0.0168011
1.52687e-06
3.63398e-11
0.0168017
6.20008e-06
3.95168e-11
0.0168068
8.1645e-06
5.00208e-11
0.0168103
4.0163e-05
6.2916e-11
0.0168543
4.62647e-05
1.15697e-10
0.0168838
0.000281157
2.20877e-10
0.0172431
0.000459708
5.63598e-10
0.0184507
0.00217762
1.18555e-09
0.0229558
0.00762323
3.5956e-09
0.0231144
0.0182871
5.90539e-10
0.0229802
0.0193519
-1.77167e-10
0.0225615
0.0193391
-1.36961e-10
0.0220142
0.0185984
3.75523e-12
0.0218084
0.0177426
1.13204e-10
0.0217782
0.0171743
1.81676e-10
0.0166174
2.43135e-10
0.0217729
0.0168001
1.21003e-10
2.72126e-11
0.0168001
8.75274e-10
2.93579e-11
0.0168001
2.69456e-09
3.09433e-11
0.0168001
8.16263e-09
3.15968e-11
0.0168001
1.92353e-08
3.31578e-11
0.0168001
5.14419e-08
3.30027e-11
0.0168001
1.14971e-07
3.41529e-11
0.0168001
3.00392e-07
3.39826e-11
0.0168005
6.63281e-07
3.49946e-11
0.0168003
1.73358e-06
3.56204e-11
0.0168026
3.8258e-06
3.81261e-11
0.0168006
1.00327e-05
4.30013e-11
0.0168179
2.28562e-05
5.60735e-11
0.0168045
5.91065e-05
6.91619e-11
0.0169337
0.000151149
2.12113e-10
0.016972
0.000418792
1.87615e-10
0.0178648
0.00128543
8.85831e-10
0.0207347
0.00474408
1.23047e-09
0.0234142
0.0155906
2.03497e-09
0.023449
0.0193158
1.39207e-10
0.0231167
0.0196703
8.87874e-11
0.0226201
0.0190932
6.45599e-11
0.0223993
0.0179618
1.0956e-10
0.0222636
0.0173032
2.48646e-10
0.0166738
3.70391e-10
0.0222042
0.0168001
4.53326e-11
2.96496e-11
0.0168001
8.28512e-10
3.12669e-11
0.0168001
1.67052e-09
3.24355e-11
0.0168001
7.28733e-09
3.29406e-11
0.0168001
1.22505e-08
3.40943e-11
0.0168001
4.51267e-08
3.39677e-11
0.0168001
7.33534e-08
3.48008e-11
0.0168002
2.60824e-07
3.46573e-11
0.0168004
4.19468e-07
3.53591e-11
0.0168006
1.49205e-06
3.58256e-11
0.0168021
2.36461e-06
3.77143e-11
0.0168033
8.72854e-06
4.09944e-11
0.0168131
1.29986e-05
5.35793e-11
0.0168164
5.53791e-05
5.91451e-11
0.0168923
7.49652e-05
1.45384e-10
0.0169267
0.000382396
1.54086e-10
0.0174825
0.000727299
6.1228e-10
0.0190187
0.00320258
1.11408e-09
0.023379
0.0112046
2.9686e-09
0.023809
0.0188795
6.34559e-10
0.0238301
0.0196465
4.62019e-10
0.0234847
0.0194365
2.51205e-10
0.0229263
0.018519
6.36976e-11
0.0227208
0.017503
3.12241e-10
0.0167793
4.15225e-10
0.0226065
0.0168001
7.68476e-11
3.18494e-11
0.0168001
4.39589e-10
3.26829e-11
0.0168001
1.63639e-09
3.34603e-11
0.0168001
4.19194e-09
3.43768e-11
0.0168001
1.15661e-08
3.43555e-11
0.0168001
2.63419e-08
3.50463e-11
0.0168001
6.85754e-08
3.48892e-11
0.0168002
1.52207e-07
3.53458e-11
0.0168002
3.9195e-07
3.53105e-11
0.0168008
8.64137e-07
3.58624e-11
0.016801
2.23138e-06
3.66122e-11
0.0168048
4.91274e-06
3.87875e-11
0.0168048
1.28549e-05
4.34324e-11
0.0168313
2.87798e-05
5.46529e-11
0.0168286
7.70046e-05
8.08057e-11
0.0170228
0.000187892
1.45274e-10
0.0171885
0.000559055
3.11951e-10
0.0187478
0.00163786
7.77051e-10
0.0238756
0.00606745
1.48733e-09
0.0248817
0.0178546
1.95018e-09
0.024677
0.0198438
6.29752e-10
0.0241635
0.0199449
4.83902e-10
0.0235386
0.0191396
3.46753e-10
0.0232131
0.017824
3.40699e-10
0.0169598
5.07488e-10
0.0230261
0.0168001
8.36505e-11
3.31419e-11
0.0168001
2.50844e-10
3.37961e-11
0.0168001
1.40883e-09
3.43919e-11
0.0168001
2.57728e-09
3.51015e-11
0.0168001
9.73114e-09
3.50737e-11
0.0168001
1.64176e-08
3.55953e-11
0.0168001
5.72338e-08
3.54619e-11
0.0168001
9.49133e-08
3.57864e-11
0.0168002
3.2563e-07
3.57579e-11
0.0168005
5.3557e-07
3.61445e-11
0.0168009
1.84626e-06
3.68078e-11
0.0168028
2.9955e-06
3.85668e-11
0.0168049
1.06638e-05
4.23043e-11
0.0168171
1.6492e-05
5.45831e-11
0.0168274
6.62099e-05
6.40988e-11
0.0169192
9.5628e-05
1.53029e-10
0.017025
0.000451016
1.88677e-10
0.0177278
0.00093175
7.31142e-10
0.0199896
0.0037978
1.32964e-09
0.0244744
0.0133404
3.46683e-09
0.0249296
0.0193791
8.86049e-10
0.0249536
0.0199117
7.50729e-10
0.0243494
0.0197377
4.94116e-10
0.0237563
0.0184106
3.34003e-10
0.0172693
6.83781e-10
0.0234352
0.0168001
3.54094e-11
3.39798e-11
0.0168001
2.53769e-10
3.47093e-11
0.0168001
7.86937e-10
3.51538e-11
0.0168001
2.36528e-09
3.54328e-11
0.0168001
5.59578e-09
3.58953e-11
0.0168001
1.47817e-08
3.58225e-11
0.0168001
3.31352e-08
3.61371e-11
0.0168001
8.51228e-08
3.60342e-11
0.0168002
1.8845e-07
3.62443e-11
0.0168003
4.81654e-07
3.63378e-11
0.0168011
1.06231e-06
3.68254e-11
0.0168013
2.72594e-06
3.80686e-11
0.016806
5.99071e-06
4.08128e-11
0.0168065
1.57839e-05
4.77021e-11
0.0168384
3.42092e-05
6.71601e-11
0.0168339
9.9094e-05
1.00667e-10
0.0170693
0.00021507
2.17671e-10
0.0172351
0.000761733
5.08194e-10
0.0189559
0.00206999
1.36417e-09
0.0241967
0.00806758
3.71538e-09
0.0253799
0.0181844
1.37677e-09
0.0254654
0.0198201
5.34341e-10
0.0251888
0.0200043
5.78314e-10
0.0245113
0.0190806
5.52413e-10
0.0177477
9.78623e-10
0.0240182
0.0168001
1.56935e-11
3.4697e-11
0.0168001
2.21652e-10
3.52783e-11
0.0168001
4.8742e-10
3.56161e-11
0.0168001
1.96138e-09
3.58638e-11
0.0168001
3.53713e-09
3.62324e-11
0.0168001
1.21099e-08
3.61874e-11
0.0168001
2.1044e-08
3.64484e-11
0.0168001
6.95073e-08
3.63736e-11
0.0168002
1.19762e-07
3.65467e-11
0.0168002
3.93142e-07
3.6602e-11
0.0168006
6.73774e-07
3.69402e-11
0.0168011
2.22568e-06
3.78001e-11
0.0168033
3.77606e-06
3.9612e-11
0.0168062
1.28119e-05
4.42731e-11
0.0168191
2.10961e-05
6.04433e-11
0.0168398
7.77578e-05
7.02681e-11
0.0169248
0.000128949
2.06166e-10
0.0171581
0.000524675
2.55392e-10
0.0180552
0.00117547
8.21495e-10
0.0217341
0.00437249
1.56815e-09
0.0253505
0.0145414
2.77535e-09
0.02556
0.0195999
9.17162e-10
0.0256157
0.0199345
8.8648e-10
0.025204
0.0194772
1.02925e-09
0.0182852
1.52394e-09
0.0246367
0.0168001
2.57177e-11
3.52517e-11
0.0168001
9.7366e-11
3.5604e-11
0.0168001
4.79127e-10
3.59053e-11
0.0168001
9.67877e-10
3.63472e-11
0.0168001
3.33471e-09
3.62994e-11
0.0168001
6.13235e-09
3.6638e-11
0.0168001
1.96431e-08
3.65526e-11
0.0168001
3.54821e-08
3.67745e-11
0.0168001
1.1171e-07
3.67256e-11
0.0168003
2.01095e-07
3.69213e-11
0.0168003
6.31357e-07
3.71092e-11
0.0168014
1.13409e-06
3.77047e-11
0.0168016
3.58281e-06
3.92259e-11
0.016808
6.37419e-06
4.25436e-11
0.0168079
2.0999e-05
5.03776e-11
0.0168502
3.53102e-05
7.4283e-11
0.0168434
0.000134458
1.06305e-10
0.017143
0.000224232
2.52256e-10
0.0173279
0.000985596
5.16796e-10
0.0191816
0.00251239
1.40348e-09
0.0249418
0.00874258
3.39662e-09
0.0261302
0.0183905
1.69718e-09
0.0260138
0.0200318
1.39707e-09
0.0258154
0.0196449
1.68434e-09
0.0187538
2.58228e-09
0.0253013
0.0168001
1.18137e-11
3.53392e-11
0.0168001
8.40725e-11
3.61485e-11
0.0168001
2.61266e-10
3.63177e-11
0.0168001
7.82985e-10
3.65336e-11
0.0168001
1.85555e-09
3.67439e-11
0.0168001
4.87686e-09
3.67423e-11
0.0168001
1.09511e-08
3.69059e-11
0.0168001
2.79283e-08
3.68697e-11
0.0168001
6.19818e-08
3.69842e-11
0.0168002
1.56858e-07
3.70074e-11
0.0168005
3.47073e-07
3.72112e-11
0.0168007
8.77377e-07
3.76392e-11
0.0168023
1.93965e-06
3.86671e-11
0.0168037
4.95396e-06
4.11806e-11
0.0168138
1.08376e-05
4.80566e-11
0.0168194
2.92487e-05
5.73841e-11
0.0168916
6.2037e-05
1.03588e-10
0.0169262
0.000187596
1.26008e-10
0.0174728
0.00043622
4.47024e-10
0.0184533
0.00152491
6.50921e-10
0.0227488
0.00442581
1.90197e-09
0.0263385
0.0147621
3.40111e-09
0.0263498
0.0199787
2.24911e-09
0.0260646
0.0198835
2.9511e-09
0.0190555
4.0072e-09
0.0256977
0.0168001
4.45679e-12
3.51745e-11
0.0168001
6.92307e-11
3.66387e-11
0.0168001
1.51565e-10
3.67467e-11
0.0168001
6.0903e-10
3.68841e-11
0.0168001
1.10566e-09
3.7006e-11
0.0168001
3.74582e-09
3.69918e-11
0.0168001
6.57034e-09
3.707e-11
0.0168001
2.13999e-08
3.70342e-11
0.0168001
3.72869e-08
3.70725e-11
0.0168001
1.20296e-07
3.70822e-11
0.0168003
2.09085e-07
3.71787e-11
0.0168005
6.74565e-07
3.74658e-11
0.0168012
1.16677e-06
3.80891e-11
0.0168023
3.8024e-06
3.98999e-11
0.0168066
6.46796e-06
4.35366e-11
0.0168135
2.20823e-05
5.35181e-11
0.0168398
3.53988e-05
7.3665e-11
0.0168855
0.000140226
1.30569e-10
0.0170962
0.000223987
2.66146e-10
0.0175976
0.00101653
6.48078e-10
0.019359
0.00265047
1.65559e-09
0.0252967
0.00877826
4.13475e-09
0.0267861
0.0184368
3.56034e-09
0.0267169
0.0198601
5.50416e-09
0.0190464
7.37815e-09
0.0265994
0.0168001
5.50029e-12
3.50423e-11
0.0168001
3.34978e-11
3.69267e-11
0.0168001
1.2216e-10
3.7068e-11
0.0168001
3.17821e-10
3.71519e-11
0.0168001
8.61866e-10
3.71747e-11
0.0168001
1.98311e-09
3.72375e-11
0.0168001
5.06223e-09
3.72018e-11
0.0168001
1.13431e-08
3.72199e-11
0.0168001
2.85411e-08
3.71897e-11
0.0168001
6.35643e-08
3.71934e-11
0.0168002
1.59376e-07
3.72577e-11
0.0168005
3.5429e-07
3.74204e-11
0.0168008
8.88501e-07
3.80046e-11
0.0168026
1.9742e-06
3.91912e-11
0.0168039
4.98769e-06
4.24903e-11
0.0168149
1.10415e-05
5.0308e-11
0.0168206
2.90008e-05
6.45673e-11
0.0168965
6.36215e-05
1.16363e-10
0.016936
0.000181207
1.72234e-10
0.017501
0.000446634
5.50532e-10
0.0186507
0.00148668
9.69109e-10
0.0230107
0.00437942
2.81712e-09
0.0269689
0.0144195
5.54261e-09
0.0273992
0.0192521
1.04395e-08
0.0187047
1.13587e-08
0.0275514
0.0168001
3.95282e-12
3.49355e-11
0.0168001
2.14465e-11
3.71674e-11
0.0168001
7.97742e-11
3.72631e-11
0.0168001
2.05091e-10
3.73177e-11
0.0168001
5.58211e-10
3.73303e-11
0.0168001
1.27792e-09
3.73668e-11
0.0168001
3.2628e-09
3.7338e-11
0.0168001
7.27995e-09
3.73389e-11
0.0168001
1.83041e-08
3.73141e-11
0.0168001
4.05911e-08
3.73012e-11
0.0168002
1.01638e-07
3.73514e-11
0.0168003
2.24936e-07
3.74563e-11
0.0168006
5.62775e-07
3.79369e-11
0.0168013
1.24313e-06
3.88229e-11
0.0168031
3.12277e-06
4.17493e-11
0.0168071
6.86359e-06
4.70511e-11
0.0168178
1.76993e-05
6.40817e-11
0.0168425
3.81802e-05
9.43748e-11
0.0169099
0.000110045
2.01218e-10
0.0171182
0.00023449
4.08729e-10
0.0177416
0.000845469
1.19844e-09
0.0197816
0.00231399
3.03845e-09
0.0258772
0.00819698
8.65307e-09
0.0275055
0.0174377
1.24705e-08
0.0175378
1.37266e-08
0.0284524
0.0168001
2.58966e-12
3.48628e-11
0.0168001
1.37032e-11
3.73274e-11
0.0168001
5.03439e-11
3.73934e-11
0.0168001
1.30233e-10
3.74265e-11
0.0168001
3.50174e-10
3.74338e-11
0.0168001
8.06983e-10
3.74526e-11
0.0168001
2.03532e-09
3.74297e-11
0.0168001
4.56894e-09
3.74221e-11
0.0168001
1.13544e-08
3.74041e-11
0.0168001
2.532e-08
3.73889e-11
0.0168001
6.27506e-08
3.74404e-11
0.0168002
1.39626e-07
3.75329e-11
0.0168004
3.46278e-07
3.79902e-11
0.0168009
7.69511e-07
3.87888e-11
0.0168019
1.91139e-06
4.15771e-11
0.0168044
4.25701e-06
4.6364e-11
0.0168109
1.05192e-05
6.24323e-11
0.0168241
2.41135e-05
9.22162e-11
0.0168715
5.88712e-05
1.87726e-10
0.0169516
0.00014908
3.72277e-10
0.0173772
0.000400775
1.05279e-09
0.0184655
0.00119514
2.64591e-09
0.0224344
0.00413579
7.56074e-09
0.0268475
0.0127471
1.77765e-08
0.0151411
1.20173e-08
0.0290407
0.0168001
2.3027e-12
3.48162e-11
0.0168001
5.72431e-12
3.74291e-11
0.0168001
3.64407e-11
3.74769e-11
0.0168001
6.01575e-11
3.74962e-11
0.0168001
2.44199e-10
3.75013e-11
0.0168001
3.76987e-10
3.75097e-11
0.0168001
1.39851e-09
3.7491e-11
0.0168001
2.11354e-09
3.74798e-11
0.0168001
7.72426e-09
3.7466e-11
0.0168001
1.15053e-08
3.74508e-11
0.0168001
4.22222e-08
3.74959e-11
0.0168002
6.18924e-08
3.75687e-11
0.0168003
2.29887e-07
3.80096e-11
0.0168007
3.29564e-07
3.87737e-11
0.0168013
1.25241e-06
4.18698e-11
0.0168036
1.73566e-06
4.95024e-11
0.0168062
7.04146e-06
6.0968e-11
0.0168204
8.6323e-06
1.46476e-10
0.0168316
4.38797e-05
1.30866e-10
0.0169244
4.34896e-05
6.15969e-10
0.0170202
0.000289726
8.15287e-10
0.0177484
0.000408635
3.8491e-09
0.0198399
0.00197451
8.44758e-09
0.0251554
0.00694808
2.78232e-08
0.0119579
9.08757e-09
0.0282507
0.0168001
4.42199e-13
3.47849e-11
0.0168001
6.61607e-12
3.75039e-11
0.0168001
1.22057e-11
3.75192e-11
0.0168001
5.683e-11
3.75402e-11
0.0168001
8.83152e-11
3.75512e-11
0.0168001
3.43748e-10
3.75396e-11
0.0168001
5.14019e-10
3.75353e-11
0.0168001
1.93226e-09
3.75209e-11
0.0168001
2.83649e-09
3.75066e-11
0.0168001
1.06875e-08
3.75176e-11
0.0168001
1.54229e-08
3.75368e-11
0.0168001
5.89664e-08
3.77016e-11
0.0168002
8.31262e-08
3.79843e-11
0.0168002
3.25876e-07
3.90359e-11
0.0168009
4.34311e-07
4.08495e-11
0.0168006
1.84709e-06
4.7036e-11
0.0168052
2.07806e-06
5.76115e-11
0.0168015
1.07992e-05
9.25713e-11
0.0168344
9.49356e-06
1.51961e-10
0.016806
6.29749e-05
3.61949e-10
0.0170281
5.7148e-05
7.87388e-10
0.0170001
0.000400161
2.29425e-09
0.0182451
0.000659219
6.42586e-09
0.0217146
0.00323702
1.60426e-08
0.00803057
1.76838e-08
0.0253312
0.0168001
9.50009e-13
3.4773e-11
0.0168001
1.12497e-12
3.7522e-11
0.0168001
1.25656e-11
3.75544e-11
0.0168001
1.31602e-11
3.75626e-11
0.0168001
8.06591e-11
3.75676e-11
0.0168001
8.06072e-11
3.75696e-11
0.0168001
4.45479e-10
3.75574e-11
0.0168001
4.19818e-10
3.75477e-11
0.0168001
2.35581e-09
3.75422e-11
0.0168001
2.04883e-09
3.75361e-11
0.0168001
1.22255e-08
3.75925e-11
0.0168001
9.51818e-09
3.76798e-11
0.0168001
6.30456e-08
3.80958e-11
0.0168004
4.15853e-08
3.87926e-11
0.0168004
3.40852e-07
4.11378e-11
0.016802
1.21071e-07
4.54552e-11
0.0168013
2.17468e-06
5.88094e-11
0.0168116
-2.86254e-07
8.05175e-11
0.0168015
1.612e-05
1.72795e-10
0.0168644
-5.3123e-06
2.91399e-10
0.0167886
0.000114554
8.91165e-10
0.017129
2.00137e-05
2.35883e-09
0.0172513
0.000540882
6.50422e-09
0.0188448
0.00130462
1.89679e-08
0.0054143
2.84948e-08
0.0209926
0.0168001
2.53191e-13
3.47623e-11
0.0168001
1.88433e-12
3.75496e-11
0.0168001
5.79067e-12
3.75614e-11
0.0168001
1.70772e-11
3.75787e-11
0.0168001
4.04538e-11
3.75877e-11
0.0168001
1.0456e-10
3.75799e-11
0.0168001
2.35786e-10
3.75786e-11
0.0168001
5.86778e-10
3.75713e-11
0.0168001
1.31113e-09
3.75672e-11
0.0168001
3.19973e-09
3.75891e-11
0.0168001
7.13371e-09
3.76283e-11
0.0168
1.71158e-08
3.7806e-11
0.0168001
3.80185e-08
3.81084e-11
0.0168
8.98429e-08
3.91143e-11
0.0168001
1.99136e-07
4.07753e-11
0.0167995
4.61843e-07
4.6447e-11
0.0168003
1.04962e-06
5.50956e-11
0.0167962
2.41918e-06
8.88711e-11
0.0168054
5.67245e-06
1.37545e-10
0.0167779
1.37948e-05
3.41085e-10
0.0168509
3.22224e-05
7.20436e-10
0.016728
0.000101398
2.19723e-09
0.0169871
0.000244746
6.11442e-09
0.0168819
0.00107923
1.9248e-08
0.00409836
2.95439e-08
0.0177397
0.0168001
-2.62776e-13
3.47568e-11
0.0168001
2.86887e-12
3.75609e-11
0.0168001
1.49008e-12
3.75714e-11
0.0168001
2.17283e-11
3.7587e-11
0.0168001
1.31655e-11
3.75947e-11
0.0168001
1.30252e-10
3.75875e-11
0.0168001
8.16973e-11
3.75857e-11
0.0168001
7.56543e-10
3.75808e-11
0.0168001
4.7834e-10
3.75788e-11
0.0168001
4.41966e-09
3.76171e-11
0.0168001
2.82572e-09
3.76826e-11
0.0168
2.62091e-08
3.79724e-11
0.0168
1.69685e-08
3.84978e-11
0.0167999
1.56992e-07
4.00872e-11
0.0167999
9.99897e-08
4.30369e-11
0.0167991
9.58036e-07
5.03572e-11
0.0167994
4.78611e-07
6.52124e-11
0.0167943
6.15852e-06
9.18553e-11
0.016797
-1.48896e-08
2.1824e-10
0.0167634
4.02626e-05
2.53305e-10
0.0167925
-1.34339e-05
8.66652e-10
0.0166144
0.000237426
1.94441e-09
0.0166962
0.000108018
6.12889e-09
0.0162387
0.00123996
1.99438e-08
0.00367137
3.14355e-08
0.0161945
0.0168001
3.96761e-13
3.47562e-11
0.0168001
3.12056e-13
3.75577e-11
0.0168001
5.45234e-12
3.75848e-11
0.0168001
4.29336e-12
3.75898e-11
0.0168001
3.52913e-11
3.75957e-11
0.0168001
2.76693e-11
3.75973e-11
0.0168001
2.03778e-10
3.75898e-11
0.0168001
1.5815e-10
3.75849e-11
0.0168001
1.15466e-09
3.75873e-11
0.0168001
8.78835e-10
3.75945e-11
0.0168001
6.55405e-09
3.76647e-11
0.0168001
4.83617e-09
3.77888e-11
0.0168
3.75283e-08
3.82168e-11
0.0168002
2.54989e-08
3.90073e-11
0.0168
2.29982e-07
4.12076e-11
0.0168007
7.19064e-08
4.56501e-11
0.0167991
1.64094e-06
5.80093e-11
0.0168056
-5.50547e-07
7.81527e-11
0.016791
1.10675e-05
1.58991e-10
0.0168347
-5.25271e-06
2.47943e-10
0.0167405
6.44916e-05
8.0269e-10
0.0169411
-3.37797e-06
2.19023e-09
0.0166678
0.000317574
4.93964e-09
0.0170113
0.000561888
2.12257e-08
0.00316068
3.25492e-08
0.0170504
0.0168001
-3.78884e-13
3.47503e-11
0.0168001
1.49441e-12
3.75748e-11
0.0168001
-1.42484e-12
3.75837e-11
0.0168001
1.00481e-11
3.75974e-11
0.0168001
-6.41099e-12
3.76034e-11
0.0168001
5.64364e-11
3.75966e-11
0.0168001
-3.95723e-11
3.75941e-11
0.0168001
3.06613e-10
3.75898e-11
0.0168001
-2.83347e-10
3.75879e-11
0.0168001
1.644e-09
3.7621e-11
0.0168001
-2.18765e-09
3.7676e-11
0.0168001
8.77382e-09
3.79307e-11
0.0168001
-1.60042e-08
3.83804e-11
0.0168
4.93049e-08
3.98137e-11
0.0168003
-1.16017e-07
4.34423e-11
0.0167997
3.33766e-07
4.80932e-11
0.0168017
-8.57968e-07
7.61843e-11
0.0167963
2.95271e-06
8.64524e-11
0.0168111
-6.12887e-06
2.0517e-10
0.0167652
2.89087e-05
4.25706e-10
0.0168591
-4.15475e-05
1.00093e-09
0.0166071
0.000196162
2.1161e-09
0.0169442
-9.95709e-06
7.53587e-09
0.0162695
0.000926815
1.79849e-08
0.00275792
3.20739e-08
0.0161673
0.0168001
1.15188e-13
3.47528e-11
0.0168001
7.14361e-13
3.7565e-11
0.0168001
2.51955e-12
3.75908e-11
0.0168001
6.47767e-12
3.75953e-11
0.0168001
1.74762e-11
3.76012e-11
0.0168001
4.00031e-11
3.76027e-11
0.0168001
1.02456e-10
3.75959e-11
0.0168001
2.29475e-10
3.75914e-11
0.0168001
5.78007e-10
3.75933e-11
0.0168001
1.28957e-09
3.75997e-11
0.0168
3.19779e-09
3.76604e-11
0.0168
7.10073e-09
3.7765e-11
0.0168
1.73031e-08
3.814e-11
0.0168
3.784e-08
3.87803e-11
0.0167997
9.1729e-08
4.10509e-11
0.0167997
1.94741e-07
4.48303e-11
0.0167978
4.83278e-07
5.93011e-11
0.016799
9.70451e-07
8.24154e-11
0.0167861
2.64553e-06
1.69034e-10
0.0168059
5.16061e-06
3.18097e-10
0.0167302
1.56956e-05
8.02439e-10
0.0168446
3.96256e-05
2.53208e-09
0.0166477
0.000126264
4.8949e-09
0.0168096
0.000443
2.14838e-08
0.00209919
2.95818e-08
0.016979
0.0168001
6.21716e-13
3.47506e-11
0.0168001
8.74168e-14
3.757e-11
0.0168001
6.86864e-12
3.75947e-11
0.0168001
3.16304e-12
3.75984e-11
0.0168001
4.3616e-11
3.76039e-11
0.0168001
2.28653e-11
3.76046e-11
0.0168001
2.57161e-10
3.7598e-11
0.0168001
1.39454e-10
3.75932e-11
0.0168001
1.50845e-09
3.75982e-11
0.0168001
8.18762e-10
3.76084e-11
0.0168
8.86707e-09
3.7692e-11
0.0168
4.66321e-09
3.78357e-11
0.0168
5.20775e-08
3.83351e-11
0.0168
2.33401e-08
3.92037e-11
0.0167996
3.11269e-07
4.17901e-11
0.0167996
7.3928e-08
4.60332e-11
0.0167976
1.90351e-06
6.03938e-11
0.0167984
-6.65014e-07
7.73927e-11
0.0167856
1.16128e-05
1.85381e-10
0.0168036
-1.60224e-05
2.65949e-10
0.0167231
7.50021e-05
9.35564e-10
0.0168374
-0.000106482
2.33634e-09
0.0166017
0.000285747
5.30482e-09
0.0167017
5.06081e-05
2.00977e-08
0.00126068
3.26684e-08
0.0170202
0.0168001
-8.72221e-14
3.47448e-11
0.0168001
1.25005e-12
3.75864e-11
0.0168001
4.43121e-13
3.75939e-11
0.0168001
9.39242e-12
3.76058e-11
0.0168001
4.7328e-12
3.761e-11
0.0168001
5.42531e-11
3.76032e-11
0.0168001
2.61112e-11
3.75994e-11
0.0168001
3.00601e-10
3.75962e-11
0.0168001
1.1882e-10
3.75937e-11
0.0168001
1.65994e-09
3.76378e-11
0.0168001
4.50414e-10
3.77025e-11
0.0168
9.22934e-09
3.80443e-11
0.0168001
9.88278e-10
3.86301e-11
0.0168
5.3059e-08
4.0369e-11
0.0168002
-1.30331e-08
4.51567e-11
0.0167996
3.54829e-07
4.92075e-11
0.0168012
-3.18483e-07
8.06028e-11
0.0167959
2.65242e-06
9.1039e-11
0.0168081
-3.32377e-06
2.03348e-10
0.0167645
1.56721e-05
4.388e-10
0.01685
-2.21511e-05
9.44142e-10
0.0166021
8.60064e-05
2.33796e-09
0.0169514
-3.64049e-05
6.45852e-09
0.0163623
0.000353995
1.71116e-08
0.0010382
2.80906e-08
0.0160902
0.0168001
2.63424e-13
3.47466e-11
0.0168001
-2.45607e-14
3.75788e-11
0.0168001
3.29872e-12
3.76017e-11
0.0168001
9.96198e-13
3.76037e-11
0.0168001
1.9637e-11
3.76086e-11
0.0168001
5.28035e-12
3.76075e-11
0.0168001
1.03939e-10
3.76014e-11
0.0168001
1.11442e-11
3.7596e-11
0.0168001
5.30724e-10
3.76065e-11
0.0168001
-7.92939e-11
3.76237e-11
0.0168001
2.64787e-09
3.77484e-11
0.0168001
-1.36759e-09
3.79517e-11
0.0168
1.30077e-08
3.87258e-11
0.0168
-1.41619e-08
4.01127e-11
0.0167998
7.28571e-08
4.38053e-11
0.0168001
-1.63186e-07
5.31085e-11
0.0167984
5.75646e-07
6.42406e-11
0.0168015
-1.69719e-06
1.1808e-10
0.0167895
4.60835e-06
1.62492e-10
0.0168106
-1.10308e-05
3.47813e-10
0.0167427
2.78218e-05
8.17331e-10
0.0168534
-5.82093e-05
2.1126e-09
0.0166629
0.000101543
4.23654e-09
0.0168468
-5.42859e-05
1.62297e-08
0.000385861
2.24919e-08
0.0170561
0.0168001
-4.05696e-13
3.47419e-11
0.0168001
9.59472e-13
3.75924e-11
0.0168001
-2.96764e-12
3.75993e-11
0.0168001
5.07889e-12
3.76105e-11
0.0168001
-1.82371e-11
3.76139e-11
0.0168001
2.30062e-11
3.76071e-11
0.0168001
-1.20266e-10
3.76029e-11
0.0168001
9.39069e-11
3.76018e-11
0.0168001
-8.036e-10
3.76019e-11
0.0168001
3.01452e-10
3.76585e-11
0.0168001
-5.28613e-09
3.77419e-11
0.0168
7.74791e-10
3.81555e-11
0.0168001
-3.39067e-08
3.88448e-11
0.0168
4.43019e-09
4.08888e-11
0.0168002
-2.18132e-07
4.63838e-11
0.0167995
8.67984e-08
5.07288e-11
0.0168007
-1.42946e-06
8.72621e-11
0.0167951
1.80475e-06
9.18403e-11
0.0168059
-9.32774e-06
2.20975e-10
0.0167618
2.1582e-05
4.23869e-10
0.0168413
-6.19929e-05
9.41921e-10
0.0166012
0.000136707
2.00479e-09
0.0169078
-0.000180933
5.38795e-09
0.0163958
0.000280598
1.23178e-08
0.000356186
1.52981e-08
0.0160492
0.0168001
4.90839e-14
3.47455e-11
0.0168001
1.74976e-13
3.75814e-11
0.0168001
5.8785e-13
3.76043e-11
0.0168001
1.07348e-12
3.76061e-11
0.0168001
2.22712e-12
3.76113e-11
0.0168001
7.92893e-13
3.76104e-11
0.0168001
-1.82023e-12
3.76047e-11
0.0168001
-2.38271e-11
3.75999e-11
0.0168001
-7.65581e-11
3.76104e-11
0.0168001
-2.86477e-10
3.76284e-11
0.0168
-8.04447e-10
3.77438e-11
0.0168
-2.44908e-09
3.79355e-11
0.0168
-6.40994e-09
3.86223e-11
0.0168
-1.65539e-08
3.9786e-11
0.0167996
-4.62038e-08
4.3422e-11
0.0167996
-8.48139e-08
4.95576e-11
0.0167977
-2.97776e-07
6.68406e-11
0.0167989
-2.95912e-07
9.89791e-11
0.016787
-1.35118e-06
1.75039e-10
0.0168054
-1.53427e-06
3.26042e-10
0.016733
-5.55252e-06
7.25779e-10
0.0168578
-9.67857e-06
1.70619e-09
0.0166558
-2.12111e-05
3.09354e-09
0.0168542
-6.96767e-05
1.15153e-08
-7.318e-05
1.18236e-08
0.0169336
0.0168001
5.86746e-13
3.47444e-11
0.0168001
-1.39696e-12
3.75838e-11
0.0168001
4.14545e-12
3.76063e-11
0.0168001
-8.28609e-12
3.76078e-11
0.0168001
2.22548e-11
3.76129e-11
0.0168001
-5.06808e-11
3.76118e-11
0.0168001
1.16934e-10
3.7607e-11
0.0168001
-3.24021e-10
3.76036e-11
0.0168001
6.16722e-10
3.7619e-11
0.0168001
-2.06779e-09
3.76449e-11
0.0168
3.27884e-09
3.77775e-11
0.0168001
-1.30787e-08
3.79997e-11
0.0168
1.77846e-08
3.87401e-11
0.0168
-8.26443e-08
3.99997e-11
0.0167997
1.00831e-07
4.38098e-11
0.0168
-5.38133e-07
5.07126e-11
0.0167981
7.34718e-07
6.60937e-11
0.0168007
-4.12983e-06
1.17017e-10
0.016788
7.84875e-06
1.48502e-10
0.0168169
-3.5345e-05
3.37542e-10
0.0167297
6.83363e-05
6.60814e-10
0.0169174
-0.000217622
1.64676e-09
0.0166576
0.000200562
2.79806e-09
0.0169295
-0.000462263
9.60282e-09
-0.000320422
9.11516e-09
0.0168107
0.0168001
9.60757e-14
3.47416e-11
0.0168001
-6.06894e-13
3.7593e-11
0.0168001
-4.33202e-14
3.75999e-11
0.0168001
-4.5491e-12
3.76119e-11
0.0168001
-2.02909e-12
3.76158e-11
0.0168001
-2.94558e-11
3.76097e-11
0.0168001
-2.0838e-11
3.76068e-11
0.0168001
-1.90634e-10
3.76072e-11
0.0168001
-1.83856e-10
3.76112e-11
0.0168001
-1.23207e-09
3.76664e-11
0.0168001
-1.41781e-09
3.77552e-11
0.0168
-7.83871e-09
3.81207e-11
0.0168
-1.00233e-08
3.8748e-11
0.0167999
-4.82338e-08
4.07783e-11
0.0168
-6.32697e-08
4.45541e-11
0.0167993
-2.75612e-07
5.37223e-11
0.0168
-3.54522e-07
7.91987e-11
0.0167956
-1.44673e-06
9.4019e-11
0.0168008
-1.03605e-06
2.62952e-10
0.0167683
-8.27781e-06
1.90948e-10
0.0168155
6.05309e-06
8.39929e-10
0.0166284
-5.06766e-05
1.04416e-09
0.0167784
2.02696e-05
3.28634e-09
0.0164594
-0.000148108
7.97568e-09
-0.000232776
7.45108e-09
0.0160747
0.0168001
3.47426e-11
0.0168001
3.75906e-11
0.0168001
3.75981e-11
0.0168001
3.7611e-11
0.0168001
3.76159e-11
0.0168001
3.76102e-11
0.0168001
3.76084e-11
0.0168001
3.76093e-11
0.0168001
3.76151e-11
0.0168001
3.76693e-11
0.0168
3.77603e-11
0.0168
3.80772e-11
0.0168
3.86228e-11
0.0167999
4.01545e-11
0.0167997
4.28191e-11
0.0167991
4.98808e-11
0.0167984
6.20805e-11
0.0167956
9.41558e-11
0.0167928
1.48899e-10
0.0167791
2.80723e-10
0.0167773
6.04542e-10
0.0167121
1.10145e-09
0.0166909
2.85783e-09
0.016566
7.19291e-09
5.89134e-09
0.0160331
0.0168001
1.08249e-09
0.0168001
5.62164e-09
0.0168001
2.00089e-08
0.0168001
5.5528e-08
0.0168002
1.41087e-07
0.0168001
3.52504e-07
0.0168008
8.43768e-07
0.0168
2.10467e-06
0.0168047
4.88813e-06
0.0167977
1.30993e-05
0.0168351
3.04114e-05
0.0167784
8.65963e-05
0.0170226
0.000236686
0.0168034
0.000840139
0.0178047
0.0027469
0.0175526
0.0126439
0.0167823
0.0134284
0.015441
0.0131345
0.0144041
0.01336
0.0134366
0.0141877
0.0125728
0.0155018
0.011628
0.0172111
0.0107944
0.0193531
0.0107823
0.0218523
0.0234329
0.0162969
0.0168001
8.22375e-10
0.0168001
6.51075e-09
0.0168001
1.99261e-08
0.0168001
6.04267e-08
0.0168001
1.43087e-07
0.0168
3.82181e-07
0.0168
8.62264e-07
0.0167998
2.2371e-06
0.0167996
5.10967e-06
0.0167997
1.28123e-05
0.0167994
3.07147e-05
0.0168051
8.00584e-05
0.0168226
0.000218683
0.0169198
0.000739948
0.0173332
0.00232661
0.0177426
0.0122154
0.0169829
0.0141856
0.0160477
0.0140681
0.0152113
0.0141947
0.0144023
0.0149956
0.0137312
0.016172
0.0132259
0.0177157
0.0130623
0.0195159
0.0139093
0.0210044
0.021473
0.0158681
0.0168001
7.39369e-10
0.0168001
5.91624e-09
0.0168001
1.82891e-08
0.0168001
5.52107e-08
0.0168001
1.30873e-07
0.0168001
3.47427e-07
0.0168002
7.81445e-07
0.0168004
2.03781e-06
0.016801
4.49811e-06
0.0168015
1.21688e-05
0.0168061
2.61072e-05
0.0168051
8.01872e-05
0.0168368
0.000186645
0.0168599
0.000714091
0.0170885
0.00209203
0.01799
0.0112941
0.0173946
0.0147796
0.0166557
0.0148057
0.0159693
0.0148797
0.0153689
0.0155941
0.0148629
0.0166765
0.0146586
0.0179191
0.0149844
0.0191894
0.0159235
0.0200646
0.0201918
0.0172038
0.0168001
6.02626e-10
0.0168001
5.42622e-09
0.0168001
1.63286e-08
0.0168001
4.91063e-08
0.0168001
1.16269e-07
0.0168001
3.05485e-07
0.0168002
6.83186e-07
0.0168004
1.79525e-06
0.0168012
3.73171e-06
0.0168019
1.13896e-05
0.0168084
1.95303e-05
0.0168059
8.19482e-05
0.0168434
0.000148799
0.0168601
0.000694768
0.0171211
0.00182691
0.0187007
0.0096939
0.0180834
0.0153967
0.0172281
0.0156607
0.0166781
0.0154286
0.0162968
0.0159743
0.0160328
0.016939
0.016008
0.0179427
0.0163524
0.018844
0.0171399
0.0192763
0.0191644
0.0181661
0.0168001
2.72774e-10
0.0168001
7.34322e-09
0.0168001
1.00617e-08
0.0168001
6.11323e-08
0.0168001
8.01562e-08
0.0168
3.76546e-07
0.0168002
4.85874e-07
0.0167998
2.22247e-06
0.0168008
2.71485e-06
0.0167983
1.37212e-05
0.0168041
1.36544e-05
0.0167904
9.5006e-05
0.0168544
8.4483e-05
0.0168446
0.000701895
0.017343
0.00132546
0.020483
0.00653003
0.0192478
0.016632
0.0183417
0.0165664
0.0175331
0.0162371
0.0171444
0.0163617
0.0170483
0.0170341
0.0171648
0.0178251
0.0174838
0.0185243
0.0180508
0.0187086
0.0183538
0.0188606
0.0168001
7.18017e-10
0.0168001
3.84018e-09
0.0168001
1.34964e-08
0.0168001
3.58642e-08
0.0168001
9.50002e-08
0.0168002
2.22948e-07
0.0168001
5.62755e-07
0.0168011
1.29158e-06
0.0168005
3.28687e-06
0.0168068
7.41084e-06
0.0168001
2.01234e-05
0.01685
4.51509e-05
0.016802
0.000131405
0.0171537
0.00034893
0.0172889
0.0011878
0.0198349
0.00396973
0.0203625
0.0160946
0.0196047
0.0173227
0.018542
0.0172985
0.0180342
0.0168689
0.0178978
0.0171693
0.0180564
0.0176653
0.0184331
0.0181466
0.0188624
0.0182783
0.0178127
0.0194026
0.0168001
1.21625e-09
0.0168001
4.44659e-09
0.0168001
1.48703e-08
0.0168001
3.55537e-08
0.0168001
9.3504e-08
0.0168001
2.11488e-07
0.0168001
5.42618e-07
0.0168002
1.21452e-06
0.0168003
3.09521e-06
0.0168007
6.96983e-06
0.0168029
1.78133e-05
0.0168083
3.97073e-05
0.0168248
0.0001139
0.0169007
0.000272481
0.017107
0.000978042
0.0180999
0.00296823
0.0202245
0.0139472
0.0199674
0.0175758
0.0194472
0.0178166
0.0189007
0.0174153
0.0186862
0.0173827
0.0187446
0.0176057
0.0190957
0.0177941
0.019539
0.0178346
0.017427
0.0199229
0.0168001
2.93931e-09
0.0168001
6.15385e-09
0.0168001
1.88518e-08
0.0168001
2.62242e-08
0.0168001
9.78261e-08
0.0168001
1.41285e-07
0.0168001
5.4736e-07
0.0168005
7.82773e-07
0.0168004
3.2354e-06
0.0168033
4.01488e-06
0.0168002
2.07645e-05
0.0168211
1.8775e-05
0.0167933
0.000140908
0.0169323
0.000132947
0.0168745
0.00103279
0.0176025
0.00223548
0.0203542
0.0111724
0.0203863
0.0175434
0.0200447
0.0181569
0.0196092
0.017851
0.019464
0.0175283
0.0194646
0.0176046
0.0196322
0.0176254
0.02
0.0174651
0.0170718
0.0203549
0.0168001
3.08726e-09
0.0168001
7.10781e-09
0.0168001
1.3396e-08
0.0168001
2.82909e-08
0.0168001
5.73548e-08
0.0168001
1.36136e-07
0.0168004
2.9834e-07
0.0168004
7.5511e-07
0.016802
1.61957e-06
0.0168013
4.67032e-06
0.0168131
9.00076e-06
0.0168012
3.0286e-05
0.0168828
5.93562e-05
0.0168126
0.00020128
0.0173142
0.000529384
0.0177094
0.00183544
0.022196
0.00665869
0.0215727
0.0181641
0.0212031
0.0185283
0.0205728
0.0184815
0.020208
0.0178935
0.0201735
0.0176394
0.0202393
0.0175597
0.0204253
0.0172779
0.0168061
0.0206894
0.0168001
3.23733e-09
0.0168001
7.35117e-09
0.0168001
1.0519e-08
0.0168001
2.95655e-08
0.0168001
4.14879e-08
0.0168001
1.43466e-07
0.0168002
2.12666e-07
0.0168001
7.96742e-07
0.0168006
1.15745e-06
0.0168005
4.7458e-06
0.0168036
5.84402e-06
0.0168031
3.05918e-05
0.0168332
2.90084e-05
0.0168269
0.000206467
0.0171123
0.00024268
0.0174029
0.00154026
0.0200143
0.0040375
0.0223612
0.0157989
0.0220269
0.0188603
0.0214517
0.0190552
0.0209327
0.0184121
0.020759
0.0178131
0.0207986
0.0175189
0.0208808
0.017196
0.0166681
0.0210166
0.0168001
2.029e-09
0.0168001
4.71337e-09
0.0168001
9.35429e-09
0.0168001
1.75124e-08
0.0168001
3.8674e-08
0.0168001
8.08394e-08
0.0168002
1.95917e-07
0.0168005
4.30873e-07
0.0168006
1.10818e-06
0.016803
2.3465e-06
0.0168018
6.88376e-06
0.0168191
1.33335e-05
0.0168036
4.39794e-05
0.0169196
9.03959e-05
0.0168474
0.000312679
0.0175654
0.000820768
0.0182023
0.00339187
0.021825
0.0121536
0.022233
0.0184505
0.0220702
0.0192165
0.0215611
0.0189214
0.0213215
0.0180505
0.0212981
0.0175412
0.0213471
0.017145
0.0166164
0.0213962
0.0168001
1.45824e-09
0.0168001
3.25117e-09
0.0168001
8.27802e-09
0.0168001
1.15494e-08
0.0168001
3.65341e-08
0.0168001
5.31558e-08
0.0168001
1.89519e-07
0.0168003
2.80973e-07
0.0168003
1.05796e-06
0.0168011
1.53324e-06
0.0168017
6.20613e-06
0.0168068
8.16729e-06
0.0168103
4.01627e-05
0.0168543
4.62481e-05
0.0168838
0.000281127
0.0172432
0.000459524
0.0184507
0.00217726
0.0229567
0.0076208
0.0231153
0.0182874
0.0229809
0.0193524
0.022562
0.0193397
0.0220145
0.018599
0.0218086
0.0177429
0.0217784
0.0171745
0.0166177
0.021773
0.0168001
1.32755e-09
0.0168001
3.00841e-09
0.0168001
5.56489e-09
0.0168001
1.17728e-08
0.0168001
2.32581e-08
0.0168001
5.60776e-08
0.0168001
1.19859e-07
0.0168001
3.05759e-07
0.0168005
6.68721e-07
0.0168003
1.73921e-06
0.0168026
3.83096e-06
0.0168007
1.00365e-05
0.0168179
2.28578e-05
0.0168045
5.90998e-05
0.0169337
0.000151108
0.0169718
0.000418723
0.0178648
0.00128509
0.0207329
0.00474325
0.0234143
0.015589
0.0234495
0.0193159
0.0231172
0.019671
0.0226204
0.0190939
0.0223996
0.0179621
0.0222638
0.0173035
0.0166742
0.0222044
0.0168001
1.11764e-09
0.0168001
2.56637e-09
0.0168001
3.89381e-09
0.0168001
1.03211e-08
0.0168001
1.52699e-08
0.0168001
4.88869e-08
0.0168001
7.69933e-08
0.0168002
2.65036e-07
0.0168004
4.23504e-07
0.0168006
1.49636e-06
0.0168021
2.36835e-06
0.0168033
8.73156e-06
0.0168131
1.29979e-05
0.0168164
5.53766e-05
0.0168923
7.49345e-05
0.0169267
0.000382355
0.0174824
0.000727078
0.0190184
0.00320189
0.0233793
0.0112025
0.0238093
0.0188795
0.0238308
0.0196468
0.0234855
0.0194372
0.0229267
0.0185198
0.022721
0.0175035
0.0167796
0.0226066
0.0168001
7.33637e-10
0.0168001
1.68832e-09
0.0168001
3.37326e-09
0.0168001
6.26841e-09
0.0168001
1.40481e-08
0.0168001
2.90315e-08
0.0168001
7.15989e-08
0.0168002
1.55363e-07
0.0168002
3.95374e-07
0.0168009
8.67581e-07
0.016801
2.23491e-06
0.0168048
4.91585e-06
0.0168048
1.28569e-05
0.0168313
2.87804e-05
0.0168286
7.69936e-05
0.0170227
0.000187878
0.0171884
0.000558949
0.0187472
0.00163761
0.0238737
0.00606667
0.0248816
0.0178528
0.0246771
0.019844
0.024164
0.0199451
0.0235389
0.0191405
0.0232134
0.0178245
0.0169603
0.0230263
0.0168001
5.11616e-10
0.0168001
1.15166e-09
0.0168001
2.69528e-09
0.0168001
3.99218e-09
0.0168001
1.1635e-08
0.0168001
1.83282e-08
0.0168001
5.95784e-08
0.0168002
9.72628e-08
0.0168002
3.28327e-07
0.0168005
5.38249e-07
0.0168009
1.84907e-06
0.0168028
2.99802e-06
0.0168049
1.06658e-05
0.0168171
1.64912e-05
0.0168274
6.62094e-05
0.0169192
9.56055e-05
0.0170249
0.000450992
0.0177277
0.000931554
0.0199891
0.00379735
0.0244743
0.0133384
0.0249298
0.019379
0.0249537
0.019912
0.0243503
0.0197379
0.0237567
0.0184117
0.0172699
0.0234354
0.0168001
3.90541e-10
0.0168001
8.93569e-10
0.0168001
1.66163e-09
0.0168001
3.47738e-09
0.0168001
6.86154e-09
0.0168001
1.62657e-08
0.0168001
3.47498e-08
0.0168001
8.69454e-08
0.0168002
1.90389e-07
0.0168003
4.83764e-07
0.0168011
1.06444e-06
0.0168013
2.72797e-06
0.016806
5.99213e-06
0.0168065
1.57836e-05
0.0168384
3.42058e-05
0.0168339
9.90747e-05
0.0170694
0.000215042
0.0172351
0.000761529
0.018956
0.00206955
0.0241973
0.00806506
0.0253807
0.0181842
0.0254661
0.0198204
0.0251889
0.020005
0.0245118
0.0190814
0.0177484
0.0240185
0.0168001
2.80447e-10
0.0168001
6.35116e-10
0.0168001
1.09157e-09
0.0168001
2.84249e-09
0.0168001
4.41855e-09
0.0168001
1.32877e-08
0.0168001
2.2212e-08
0.0168001
7.09458e-08
0.0168002
1.21209e-07
0.0168003
3.94814e-07
0.0168006
6.75431e-07
0.0168011
2.22735e-06
0.0168033
3.7774e-06
0.0168062
1.28123e-05
0.0168191
2.10922e-05
0.0168398
7.77533e-05
0.0169248
0.000128903
0.017158
0.000524607
0.018055
0.00117516
0.0217323
0.00437154
0.0253505
0.0145392
0.0255606
0.0195997
0.0256165
0.0199349
0.0252049
0.019478
0.0182863
0.0246372
0.0168001
7.95036e-11
0.0168001
4.20267e-10
0.0168001
9.96898e-10
0.0168001
1.56683e-09
0.0168001
4.19803e-09
0.0168001
6.98523e-09
0.0168001
2.07388e-08
0.0168001
3.65495e-08
0.0168001
1.12989e-07
0.0168003
2.02334e-07
0.0168003
6.3274e-07
0.0168014
1.13534e-06
0.0168016
3.58386e-06
0.016808
6.37452e-06
0.0168079
2.09974e-05
0.0168502
3.53027e-05
0.0168434
0.00013444
0.0171429
0.000224165
0.0173277
0.00098542
0.0191814
0.00251148
0.0249418
0.00874025
0.0261308
0.0183898
0.026015
0.0200315
0.0258163
0.019646
0.0187554
0.0253017
0.0168001
-4.99182e-11
0.0168001
2.77896e-10
0.0168001
6.48771e-10
0.0168001
1.32951e-09
0.0168001
2.50567e-09
0.0168001
5.66385e-09
0.0168001
1.17996e-08
0.0168001
2.88831e-08
0.0168001
6.29689e-08
0.0168002
1.57915e-07
0.0168005
3.48112e-07
0.0168007
8.78369e-07
0.0168023
1.9404e-06
0.0168037
4.95412e-06
0.0168138
1.0836e-05
0.0168195
2.92447e-05
0.0168916
6.20208e-05
0.0169262
0.000187574
0.0174727
0.000436095
0.0184526
0.00152465
0.0227468
0.00442478
0.0263379
0.01476
0.0263501
0.0199776
0.0260652
0.0198843
0.019058
0.0256975
0.0168001
-6.28338e-11
0.0168001
1.49784e-10
0.0168001
4.05759e-10
0.0168001
9.99499e-10
0.0168001
1.5703e-09
0.0168001
4.3512e-09
0.0168001
7.21435e-09
0.0168001
2.21564e-08
0.0168001
3.80713e-08
0.0168001
1.21155e-07
0.0168003
2.09953e-07
0.0168005
6.75422e-07
0.0168012
1.16753e-06
0.0168023
3.80277e-06
0.0168066
6.46764e-06
0.0168135
2.208e-05
0.0168398
3.53912e-05
0.0168855
0.000140208
0.0170961
0.000223923
0.0175975
0.00101635
0.0193588
0.0026496
0.0252967
0.00877593
0.0267865
0.0184355
0.0267165
0.0198611
0.0190491
0.0265989
0.0168001
-4.74969e-11
0.0168001
9.88287e-11
0.0168001
2.85116e-10
0.0168001
5.66977e-10
0.0168001
1.19669e-09
0.0168001
2.37394e-09
0.0168001
5.53441e-09
0.0168001
1.18587e-08
0.0168001
2.91334e-08
0.0168001
6.41886e-08
0.0168002
1.60062e-07
0.0168005
3.5497e-07
0.0168008
8.89166e-07
0.0168026
1.97467e-06
0.0168039
4.98781e-06
0.0168149
1.10402e-05
0.0168206
2.89988e-05
0.0168965
6.36097e-05
0.0169359
0.0001812
0.0175008
0.000446537
0.0186499
0.00148653
0.0230084
0.00437866
0.0269687
0.0144165
0.0273977
0.0192544
0.0187073
0.02755
0.0168001
-3.24465e-11
0.0168001
6.46431e-11
0.0168001
1.90274e-10
0.0168001
3.72042e-10
0.0168001
7.79524e-10
0.0168001
1.54357e-09
0.0168001
3.57668e-09
0.0168001
7.63663e-09
0.0168001
1.87074e-08
0.0168001
4.10388e-08
0.0168002
1.0213e-07
0.0168003
2.25465e-07
0.0168006
5.63325e-07
0.0168013
1.24365e-06
0.0168031
3.12317e-06
0.0168071
6.86362e-06
0.0168178
1.76983e-05
0.0168425
3.81789e-05
0.0169099
0.000110032
0.0171181
0.000234473
0.0177416
0.000845277
0.0197816
0.00231349
0.0258763
0.00819481
0.0275067
0.0174384
0.0175406
0.0284524
0.0168001
-2.09513e-11
0.0168001
4.07226e-11
0.0168001
1.21647e-10
0.0168001
2.37708e-10
0.0168001
4.92887e-10
0.0168001
9.80556e-10
0.0168001
2.23928e-09
0.0168001
4.80475e-09
0.0168001
1.16207e-08
0.0168001
2.56225e-08
0.0168001
6.30827e-08
0.0168002
1.39991e-07
0.0168004
3.46655e-07
0.0168009
7.69873e-07
0.016802
1.91175e-06
0.0168044
4.25771e-06
0.016811
1.05189e-05
0.0168241
2.41248e-05
0.0168715
5.88563e-05
0.0169515
0.000149132
0.0173771
0.000400652
0.0184649
0.00119534
0.0224329
0.00413491
0.0268508
0.0127425
0.015144
0.0290436
0.0168001
-1.30206e-11
0.0168001
2.60068e-11
0.0168001
7.7574e-11
0.0168001
1.23416e-10
0.0168001
3.36567e-10
0.0168001
4.77768e-10
0.0168001
1.53073e-09
0.0168001
2.25524e-09
0.0168001
7.89861e-09
0.0168001
1.16949e-08
0.0168001
4.24465e-08
0.0168002
6.21431e-08
0.0168003
2.30152e-07
0.0168007
3.29889e-07
0.0168013
1.25246e-06
0.0168036
1.73554e-06
0.0168063
7.04e-06
0.0168205
8.62308e-06
0.0168316
4.38762e-05
0.0169247
4.34335e-05
0.0170207
0.000289632
0.0177498
0.000408086
0.0198417
0.00197254
0.0251648
0.00693681
0.0119608
0.0282606
0.0168001
-6.75737e-12
0.0168001
1.15057e-11
0.0168001
3.57315e-11
0.0168001
9.53382e-11
0.0168001
1.33157e-10
0.0168001
4.11832e-10
0.0168001
5.83745e-10
0.0168001
2.0302e-09
0.0168001
2.93678e-09
0.0168001
1.08229e-08
0.0168001
1.55651e-08
0.0168001
5.91512e-08
0.0168002
8.33366e-08
0.0168002
3.26121e-07
0.016801
4.34621e-07
0.0168006
1.84718e-06
0.0168052
2.07814e-06
0.0168015
1.07943e-05
0.0168344
9.49313e-06
0.016806
6.29252e-05
0.017028
5.71193e-05
0.0169998
0.000399793
0.0182443
0.000658472
0.0217065
0.00323223
0.00802281
0.0253313
0.0168001
-4.05755e-12
0.0168001
7.62962e-12
0.0168001
2.39404e-11
0.0168001
3.16578e-11
0.0168001
1.12283e-10
0.0168001
1.11016e-10
0.0168001
4.93982e-10
0.0168001
4.65935e-10
0.0168001
2.42723e-09
0.0168001
2.11914e-09
0.0168001
1.2339e-08
0.0168001
9.64389e-09
0.0168001
6.32663e-08
0.0168004
4.19052e-08
0.0168004
3.41481e-07
0.016802
1.22647e-07
0.0168013
2.17745e-06
0.0168116
-2.80571e-07
0.0168015
1.61305e-05
0.0168643
-5.29853e-06
0.0167886
0.000114522
0.0171287
1.99289e-05
0.017251
0.000540444
0.0188413
0.00130268
0.00541186
0.0209881
0.0168001
-2.50459e-12
0.0168001
4.80242e-12
0.0168001
1.39069e-11
0.0168001
2.98499e-11
0.0168001
5.69501e-11
0.0168001
1.26523e-10
0.0168001
2.61749e-10
0.0168001
6.19865e-10
0.0168001
1.35006e-09
0.0168001
3.25205e-09
0.0168001
7.20172e-09
0.0168001
1.72313e-08
0.0168001
3.82254e-08
0.0168
9.02803e-08
0.0168001
2.00162e-07
0.0167995
4.63661e-07
0.0168003
1.05592e-06
0.0167962
2.42242e-06
0.0168054
5.71578e-06
0.0167779
1.37707e-05
0.0168508
3.23052e-05
0.0167281
0.00010122
0.0169867
0.000244591
0.0168818
0.00107856
0.00409783
0.0177389
0.0168001
-1.35601e-12
0.0168001
2.1995e-12
0.0168001
6.76402e-12
0.0168001
3.01706e-11
0.0168001
2.13376e-11
0.0168001
1.46099e-10
0.0168001
9.47498e-11
0.0168001
7.77584e-10
0.0168001
4.97049e-10
0.0168001
4.44229e-09
0.0168001
2.84725e-09
0.0168
2.62001e-08
0.0168001
1.69594e-08
0.0167999
1.56737e-07
0.0167999
9.97935e-08
0.0167991
9.56541e-07
0.0167994
4.5481e-07
0.0167943
6.15315e-06
0.0167969
-3.01992e-08
0.0167635
4.02589e-05
0.0167924
-1.34341e-05
0.0166143
0.000237457
0.0166963
0.000108023
0.0162406
0.00123981
0.00367265
0.0161951
0.0168001
-1.48764e-12
0.0168001
3.54897e-12
0.0168001
8.9185e-12
0.0168001
9.05784e-12
0.0168001
4.47771e-11
0.0168001
3.45577e-11
0.0168001
2.17285e-10
0.0168001
1.68225e-10
0.0168001
1.17295e-09
0.0168001
8.93206e-10
0.0168001
6.57845e-09
0.0168001
4.85453e-09
0.0168
3.75513e-08
0.0168002
2.54648e-08
0.0168
2.30119e-07
0.0168007
7.15072e-08
0.0167991
1.64223e-06
0.0168056
-5.51666e-07
0.016791
1.10614e-05
0.0168346
-5.22045e-06
0.0167405
6.45269e-05
0.0169411
-3.28261e-06
0.0166674
0.000318286
0.0170125
0.00056159
0.0031633
0.0170508
0.0168001
-3.34326e-13
0.0168001
4.60684e-14
0.0168001
1.05124e-12
0.0168001
1.26249e-11
0.0168001
-3.14143e-12
0.0168001
6.30496e-11
0.0168001
-3.30836e-11
0.0168001
3.1537e-10
0.0168001
-2.6601e-10
0.0168001
1.65116e-09
0.0168001
-2.17296e-09
0.0168001
8.75105e-09
0.0168001
-1.60425e-08
0.0168
4.90777e-08
0.0168003
-1.16595e-07
0.0167997
3.32786e-07
0.0168017
-8.61931e-07
0.0167964
2.94943e-06
0.0168112
-6.1338e-06
0.0167654
2.88768e-05
0.0168594
-4.15514e-05
0.0166073
0.000196213
0.0169454
-1.01871e-05
0.01627
0.000927622
0.00276393
0.0161653
0.0168001
-9.54536e-13
0.0168001
2.06761e-12
0.0168001
5.55497e-12
0.0168001
1.08631e-11
0.0168001
2.31411e-11
0.0168001
4.6373e-11
0.0168001
1.09958e-10
0.0168001
2.37367e-10
0.0168001
5.87374e-10
0.0168001
1.30011e-09
0.0168001
3.21559e-09
0.0168001
7.13387e-09
0.0168
1.73921e-08
0.0168
3.80642e-08
0.0167997
9.2266e-08
0.0167997
1.95941e-07
0.0167978
4.85248e-07
0.016799
9.73766e-07
0.0167861
2.65494e-06
0.0168059
5.15438e-06
0.0167302
1.57579e-05
0.016845
3.95925e-05
0.0166469
0.00012666
0.016811
0.000442742
0.00210251
0.0169593
0.0168001
-1.49643e-12
0.0168001
3.96896e-12
0.0168001
1.01184e-11
0.0168001
8.20797e-12
0.0168001
5.22249e-11
0.0168001
2.88687e-11
0.0168001
2.66503e-10
0.0168001
1.46869e-10
0.0168001
1.51768e-09
0.0168001
8.31678e-10
0.0168001
8.88786e-09
0.0168001
4.71985e-09
0.0168
5.22356e-08
0.0168
2.3675e-08
0.0167996
3.12667e-07
0.0167996
7.61039e-08
0.0167976
1.91119e-06
0.0167984
-6.53952e-07
0.0167856
1.1628e-05
0.0168035
-1.59432e-05
0.016723
7.50376e-05
0.0168374
-0.000106468
0.0166006
0.000286111
0.0167016
4.99624e-05
0.0012607
0.0170196
0.0168001
-5.15081e-13
0.0168001
8.28465e-13
0.0168001
2.93986e-12
0.0168001
1.31897e-11
0.0168001
9.17529e-12
0.0168001
6.13508e-11
0.0168001
3.25753e-11
0.0168001
3.08757e-10
0.0168001
1.2857e-10
0.0168001
1.67202e-09
0.0168001
4.76439e-10
0.0168001
9.26877e-09
0.0168001
1.1044e-09
0.0168
5.33238e-08
0.0168002
-1.25632e-08
0.0167996
3.57189e-07
0.0168012
-3.17557e-07
0.0167959
2.66609e-06
0.0168081
-3.31978e-06
0.0167646
1.56995e-05
0.0168501
-2.21395e-05
0.0166023
8.60026e-05
0.0169515
-3.67473e-05
0.0163629
0.000352599
0.00103593
0.0160897
0.0168001
-8.7091e-13
0.0168001
2.12602e-12
0.0168001
4.88619e-12
0.0168001
3.43016e-12
0.0168001
2.45187e-11
0.0168001
9.11261e-12
0.0168001
1.103e-10
0.0168001
1.70365e-11
0.0168001
5.40043e-10
0.0168001
-6.57144e-11
0.0168001
2.6731e-09
0.0168001
-1.31462e-09
0.0168
1.31292e-08
0.0168001
-1.39676e-08
0.0167998
7.37185e-08
0.0168001
-1.63032e-07
0.0167984
5.80957e-07
0.0168015
-1.6986e-06
0.0167894
4.62546e-06
0.0168105
-1.10141e-05
0.0167426
2.78567e-05
0.0168531
-5.82181e-05
0.0166623
0.000101353
0.0168457
-5.57423e-05
0.000382386
0.0170538
0.0168001
8.43957e-14
0.0168001
-8.65322e-13
0.0168001
-1.50148e-12
0.0168001
5.28223e-12
0.0168001
-1.73336e-11
0.0168001
2.5346e-11
0.0168001
-1.1718e-10
0.0168001
9.73012e-11
0.0168001
-7.95881e-10
0.0168001
3.08218e-10
0.0168001
-5.26689e-09
0.0168001
7.66103e-10
0.0168001
-3.38971e-08
0.0168
4.31317e-09
0.0168002
-2.18691e-07
0.0167995
8.65815e-08
0.0168007
-1.43326e-06
0.0167951
1.80756e-06
0.0168059
-9.33328e-06
0.0167619
2.15624e-05
0.0168417
-6.20261e-05
0.0165997
0.000137155
0.0169082
-0.000181792
0.0163956
0.00027825
0.000349947
0.0160478
0.0168001
-3.23108e-13
0.0168001
6.44734e-13
0.0168001
1.47136e-12
0.0168001
2.35244e-12
0.0168001
3.85868e-12
0.0168001
2.94372e-12
0.0168001
3.24735e-13
0.0168001
-2.26501e-11
0.0168001
-7.22583e-11
0.0168001
-2.7679e-10
0.0168001
-7.82523e-10
0.0168
-2.40617e-09
0.0168
-6.32445e-09
0.0168
-1.63659e-08
0.0167996
-4.5989e-08
0.0167996
-8.37406e-08
0.0167977
-2.96878e-07
0.0167988
-2.88636e-07
0.0167869
-1.3455e-06
0.0168053
-1.52102e-06
0.0167326
-5.56984e-06
0.0168589
-9.77171e-06
0.016655
-2.16479e-05
0.0168514
-7.15043e-05
-7.91462e-05
0.016928
0.0168001
-4.32568e-13
0.0168001
1.21486e-12
0.0168001
3.44505e-12
0.0168001
-6.51952e-12
0.0168001
2.46726e-11
0.0168001
-4.92833e-11
0.0168001
1.18878e-10
0.0168001
-3.19952e-10
0.0168001
6.1983e-10
0.0168001
-2.05175e-09
0.0168001
3.29546e-09
0.0168001
-1.3001e-08
0.0168
1.78835e-08
0.0168
-8.22364e-08
0.0167997
1.01423e-07
0.0168
-5.3645e-07
0.0167981
7.39577e-07
0.0168007
-4.1317e-06
0.0167879
7.88118e-06
0.0168168
-3.53635e-05
0.0167294
6.83754e-05
0.016917
-0.000217812
0.0166566
0.000200533
0.0169262
-0.000463253
-0.000321948
0.0168016
0.0168001
1.67161e-13
0.0168001
-6.64406e-13
0.0168001
-9.90372e-13
0.0168001
-5.19343e-12
0.0168001
-2.04011e-12
0.0168001
-2.94344e-11
0.0168001
-2.03242e-11
0.0168001
-1.89406e-10
0.0168001
-1.81759e-10
0.0168001
-1.22755e-09
0.0168001
-1.40963e-09
0.0168
-7.83088e-09
0.0168
-1.00149e-08
0.0167999
-4.83186e-08
0.0168
-6.35505e-08
0.0167993
-2.76379e-07
0.0168
-3.5842e-07
0.0167955
-1.44827e-06
0.0168008
-1.05745e-06
0.0167682
-8.27035e-06
0.0168153
6.01367e-06
0.0166278
-5.07207e-05
0.0167786
2.01005e-05
0.0164588
-0.000148751
-0.000234212
0.0160704
0.0168001
0.0168001
0.0168001
0.0168001
0.0168001
0.0168001
0.0168001
0.0168001
0.0168001
0.0168001
0.0168001
0.0168
0.0168
0.0167999
0.0167997
0.0167991
0.0167984
0.0167955
0.0167927
0.016779
0.016777
0.0167114
0.0166907
0.0165647
0.0160266
0.00744883
0.00884719
6.27924e-11
0.00282544
0.00462039
9.7485e-11
-0.00143328
0.00425566
-2.67887e-11
-0.00331462
0.00188149
5.57009e-11
-0.00459113
0.00127534
-1.00938e-11
-0.00525866
0.000665094
-5.6844e-11
-0.00549332
0.000232078
-7.7301e-11
-0.00580086
0.000305736
-8.68164e-11
-0.00614872
0.000345608
-1.21069e-10
-0.00644566
0.000294315
-1.64526e-10
-0.00666625
0.000217411
-2.01337e-10
-0.00683383
0.000165966
-1.46261e-10
-0.00695134
0.000117953
-1.44356e-11
-0.00705078
9.42897e-05
-3.99462e-10
-0.00716323
0.000103563
-6.58439e-10
-0.00724859
7.49438e-05
-8.07309e-10
-0.00727817
1.88944e-05
-8.66394e-10
-0.00725918
-3.38451e-05
-1.11077e-09
-0.00718481
-9.18661e-05
-1.29234e-09
-0.0070483
-0.000155399
-1.39403e-09
-0.00685042
-0.000216985
-1.392e-09
-0.00660161
-0.000266198
-1.28053e-09
-0.00631623
-0.000301045
-1.1113e-09
-0.00599805
-0.000330848
-9.58753e-10
-0.00566226
-0.000345693
-7.19559e-10
-0.00531357
-0.000355357
-4.83791e-10
-0.00495407
-0.000362703
-2.77199e-10
-0.00458587
-0.000369818
-1.05893e-10
-0.00420622
-0.000379632
2.60218e-11
-0.00381404
-0.000389643
1.21507e-10
-0.00341148
-0.000399252
1.93406e-10
-0.00299031
-0.000417383
2.22553e-10
-0.00255666
-0.000429125
2.61579e-10
-0.00211834
-0.000433422
2.81854e-10
-0.00167874
-0.000435345
2.67089e-10
-0.00123781
-0.000437291
2.41585e-10
-0.000793321
-0.000440606
2.3026e-10
-0.000346608
-0.00044314
1.95412e-10
0.000118281
-0.000462609
7.70344e-11
0.000575315
-0.000456256
-2.95066e-11
0.00101298
-0.000438312
-1.30955e-10
0.00143269
-0.0004212
-2.10494e-10
0.00184194
-0.000411063
-2.60683e-10
0.0022362
-0.000397158
-3.15997e-10
0.00261484
-0.000382792
-3.94898e-10
0.00298019
-0.000370343
-4.28706e-10
0.00333973
-0.000364989
-4.92356e-10
0.00369325
-0.000360388
-5.56076e-10
0.00403444
-0.000348373
-5.97794e-10
0.00436131
-0.000334606
-6.2882e-10
0.00467511
-0.00032197
-6.47196e-10
0.00497556
-0.000309573
-6.51426e-10
0.00526425
-0.000297484
-6.42807e-10
0.00554005
-0.000285578
-6.19454e-10
0.00580436
-0.000273361
-5.84695e-10
0.00605765
-0.000261825
-5.36376e-10
0.00629988
-0.000249886
-4.76669e-10
0.00653203
-0.000238624
-4.0796e-10
0.00675364
-0.000227183
-3.30054e-10
0.00696585
-0.000216293
-2.46933e-10
0.0071687
-0.000205429
-1.59308e-10
0.00736178
-0.000195071
-6.90575e-11
0.00754595
-0.000184723
2.07253e-11
0.00772135
-0.000174975
1.10112e-10
0.00788835
-0.000165244
1.96578e-10
0.0080468
-0.0001561
2.78995e-10
0.00819795
-0.000146988
3.55255e-10
0.00834095
-0.000138488
4.25185e-10
0.00847694
-0.000129956
4.86654e-10
0.00860585
-0.000122056
5.40243e-10
0.00872729
-0.000114077
5.86061e-10
0.00884268
-0.000106665
6.23774e-10
0.00895044
-9.92219e-05
6.55672e-10
0.00905237
-9.22265e-05
6.80905e-10
0.00914733
-8.52904e-05
7.01453e-10
0.00923615
-7.87232e-05
7.17071e-10
0.00931879
-7.22904e-05
7.28599e-10
0.00939538
-6.6199e-05
7.36527e-10
0.00946624
-6.02826e-05
7.41392e-10
0.00953158
-5.46658e-05
7.43943e-10
0.00959152
-4.92363e-05
7.44717e-10
0.00964642
-4.4041e-05
7.44101e-10
0.00969647
-3.9049e-05
7.4244e-10
0.0097417
-3.42786e-05
7.40131e-10
0.00978275
-2.96958e-05
7.37584e-10
0.00981908
-2.52867e-05
7.34469e-10
0.00985184
-2.11238e-05
7.31284e-10
0.0098801
-1.706e-05
7.27829e-10
0.0099048
-1.30184e-05
7.24314e-10
0.00992575
-9.41352e-06
7.20251e-10
0.00994313
-5.90402e-06
7.15444e-10
0.00995732
-2.26996e-06
7.10132e-10
0.00996741
1.14276e-06
7.04158e-10
0.00997536
4.22976e-06
6.97832e-10
0.00997899
7.55863e-06
6.89819e-10
0.0099797
1.13578e-05
6.81316e-10
0.00997527
1.57154e-05
6.70208e-10
0.00996581
2.11699e-05
6.57062e-10
0.00994887
2.81582e-05
6.42137e-10
3.70094e-05
6.2899e-10
0.0114613
0.0132525
4.50372e-11
0.00790222
0.0081777
9.41363e-11
0.00602877
0.00612455
3.93414e-11
0.00354521
0.00436304
5.21828e-11
0.00179941
0.00301934
-9.2485e-12
0.000234933
0.0022253
-6.03813e-11
-0.00125327
0.001721
-7.95157e-11
-0.00231665
0.00137309
-9.31964e-11
-0.00301431
0.001046
-1.17879e-10
-0.00347853
0.000759608
-1.30679e-10
-0.00376747
0.000505731
-1.49468e-10
-0.00400468
0.000403204
-1.86486e-10
-0.0042289
0.000341785
-2.28968e-10
-0.00438549
0.000247049
-3.23448e-10
-0.00448615
0.000196832
-6.20111e-10
-0.00454306
0.000123076
-8.05343e-10
-0.00453366
-9.99985e-07
-8.80702e-10
-0.00445988
-0.000122129
-1.16117e-09
-0.00432256
-0.000247367
-1.35626e-09
-0.00411073
-0.000388155
-1.45922e-09
-0.00383985
-0.000510285
-1.46203e-09
-0.00352651
-0.000600865
-1.34587e-09
-0.00318767
-0.000658051
-1.12701e-09
-0.0028248
-0.000710926
-1.0235e-09
-0.00245661
-0.000729351
-7.80758e-10
-0.00208023
-0.000743511
-5.45908e-10
-0.00169781
-0.000754776
-3.42368e-10
-0.00130555
-0.000770308
-1.75351e-10
-0.00090135
-0.000788358
-4.52249e-11
-0.000485718
-0.0008073
5.25791e-11
-5.23327e-05
-0.000832651
1.74692e-10
0.000375522
-0.000845917
1.07565e-10
0.000800127
-0.000853808
1.73587e-10
0.00122323
-0.000855821
2.0893e-10
0.00164861
-0.000859472
1.95577e-10
0.00207117
-0.000859419
1.64234e-10
0.00249038
-0.000858544
1.55023e-10
0.00290609
-0.00085727
1.41526e-10
0.00330145
-0.000857028
5.60489e-11
0.00369097
-0.000846118
-2.44488e-11
0.00407892
-0.00082673
-1.20256e-10
0.00446381
-0.000806558
-1.82386e-10
0.00483803
-0.000785627
-2.2617e-10
0.00520373
-0.000763622
-2.85097e-10
0.00555666
-0.000737646
-3.54106e-10
0.00589687
-0.000713221
-3.77059e-10
0.00622347
-0.000693755
-4.23698e-10
0.00654236
-0.000682263
-4.94985e-10
0.00684988
-0.00065959
-5.23038e-10
0.00714647
-0.000635185
-5.51602e-10
0.00742924
-0.000609335
-5.69125e-10
0.00770018
-0.000584989
-5.72654e-10
0.00795713
-0.000560033
-5.63463e-10
0.00820284
-0.00053623
-5.43976e-10
0.00843653
-0.000512048
-5.12742e-10
0.00865856
-0.000488728
-4.71965e-10
0.00886971
-0.000465235
-4.21043e-10
0.00907002
-0.000442661
-3.61137e-10
0.00925972
-0.00042003
-2.93711e-10
0.00943978
-0.000398331
-2.20306e-10
0.00961009
-0.000376753
-1.42416e-10
0.00977117
-0.000356071
-6.17874e-11
0.0099236
-0.000335632
1.96601e-11
0.010067
-0.000316123
1.01172e-10
0.010202
-0.000296917
1.80758e-10
0.0103288
-0.000278644
2.57499e-10
0.0104471
-0.000260724
3.29861e-10
0.0105584
-0.000243653
3.96295e-10
0.010661
-0.000227016
4.56695e-10
0.0107576
-0.000211038
5.10103e-10
0.0108462
-0.000195563
5.56439e-10
0.0109289
-0.000180601
5.95707e-10
0.0110044
-0.000166168
6.29132e-10
0.0110739
-0.000152166
6.56643e-10
0.0111367
-0.000138731
6.79189e-10
0.0111937
-0.000125724
6.97078e-10
0.0112444
-0.000113324
7.10747e-10
0.0112898
-0.000101391
7.20731e-10
0.0113293
-9.00532e-05
7.27579e-10
0.0113639
-7.91692e-05
7.31919e-10
0.0113933
-6.88084e-05
7.34396e-10
0.0114177
-5.8843e-05
7.35075e-10
0.0114377
-4.93379e-05
7.3474e-10
0.011453
-4.03172e-05
7.33375e-10
0.0114646
-3.15424e-05
7.32025e-10
0.0114719
-2.33688e-05
7.2899e-10
0.0114759
-1.5544e-05
7.26112e-10
0.0114759
-8.06498e-06
7.22567e-10
0.0114725
-3.79079e-07
7.18925e-10
0.0114664
5.2714e-06
7.14591e-10
0.0114577
1.13251e-05
7.0977e-10
0.0114467
1.73583e-05
7.04821e-10
0.0114325
2.33985e-05
6.98063e-10
0.0114161
2.93833e-05
6.91717e-10
0.0113963
3.56814e-05
6.83676e-10
0.011374
4.24876e-05
6.75056e-10
0.0113479
5.03668e-05
6.63817e-10
0.011318
5.98074e-05
6.50356e-10
0.0112827
7.18934e-05
6.34884e-10
8.74848e-05
6.20295e-10
0.0153005
0.0151541
1.62954e-11
0.0127771
0.0106989
6.71978e-11
0.0105844
0.00831506
6.54028e-11
0.00847722
0.00646587
4.40501e-11
0.00649907
0.00499256
6.39684e-12
0.00481707
0.00389953
-4.92354e-11
0.00341013
0.00312488
-7.08342e-11
0.00226791
0.00251749
-9.24396e-11
0.00130552
0.00201149
-1.20487e-10
0.000451537
0.00161533
-1.35478e-10
-0.000348383
0.00130707
-1.47362e-10
-0.000994248
0.0010499
-2.01358e-10
-0.00146073
0.000806193
-3.08924e-10
-0.00178178
0.00056464
-3.86698e-10
-0.00192217
0.000329979
-5.89404e-10
-0.00192624
0.000120373
-7.70606e-10
-0.00181586
-0.000122007
-9.88218e-10
-0.00166093
-0.000291775
-1.24764e-09
-0.0014516
-0.000476023
-1.41607e-09
-0.00115191
-0.000710665
-1.51801e-09
-0.000802364
-0.000886269
-1.52893e-09
-0.000418987
-0.00101046
-1.40318e-09
-8.97185e-06
-0.00108969
-8.88571e-10
0.000373584
-0.00111864
-1.4449e-09
0.000762999
-0.00113877
-8.75213e-10
0.00115579
-0.00115304
-6.28477e-10
0.00155601
-0.00116949
-4.34852e-10
0.00196503
-0.00119134
-2.82482e-10
0.00237896
-0.00121306
-1.64261e-10
0.00279939
-0.00123709
-7.05851e-11
0.00321699
-0.00126005
3.90673e-12
0.00363847
-0.0012771
2.05805e-11
0.00406303
-0.00128707
6.55189e-11
0.00449087
-0.00129271
1.01088e-10
0.00491539
-0.00129312
1.01202e-10
0.00533748
-0.00129125
7.34397e-11
0.00575302
-0.00128407
5.0438e-11
0.00616069
-0.00127476
5.33009e-11
0.00655352
-0.0012607
1.59639e-11
0.00693707
-0.00124102
-3.54101e-11
0.00731155
-0.00121391
-1.02941e-10
0.00767678
-0.00118368
-1.44389e-10
0.00802877
-0.00115095
-1.82245e-10
0.00836861
-0.001116
-2.36178e-10
0.00869561
-0.00107821
-2.95127e-10
0.00900826
-0.00103845
-3.10031e-10
0.00930314
-0.0010022
-3.42684e-10
0.00958095
-0.000973732
-3.97104e-10
0.00984962
-0.000942411
-4.18568e-10
0.0101063
-0.000906046
-4.39337e-10
0.0103511
-0.000867778
-4.5605e-10
0.0105815
-0.000828808
-4.60678e-10
0.0107996
-0.000790933
-4.53926e-10
0.0110045
-0.00075347
-4.34513e-10
0.0111975
-0.000717035
-4.10545e-10
0.0113784
-0.000681095
-3.80227e-10
0.0115488
-0.00064598
-3.41453e-10
0.011708
-0.000611425
-2.93681e-10
0.0118581
-0.000577685
-2.39813e-10
0.0119977
-0.000544726
-1.80053e-10
0.0121285
-0.000512559
-1.16382e-10
0.0122496
-0.000481352
-4.93071e-11
0.0123622
-0.000450941
1.95105e-11
0.0124663
-0.000421586
8.9606e-11
0.012562
-0.000393066
1.59364e-10
0.0126503
-0.000365606
2.28413e-10
0.0127308
-0.000339005
2.9427e-10
0.0128047
-0.00031343
3.56605e-10
0.0128714
-0.000288642
4.1529e-10
0.0129316
-0.000264836
4.67831e-10
0.0129853
-0.000241783
5.14332e-10
0.0130325
-0.000219609
5.55641e-10
0.0130739
-0.00019814
5.91688e-10
0.0131089
-0.000177572
6.22409e-10
0.0131387
-0.000157637
6.48597e-10
0.0131625
-0.000138683
6.69942e-10
0.0131816
-0.000120414
6.87204e-10
0.0131954
-0.000103166
7.00428e-10
0.0132049
-8.65769e-05
7.10717e-10
0.0132094
-7.09177e-05
7.18061e-10
0.0132101
-5.58656e-05
7.23444e-10
0.0132059
-4.15286e-05
7.25943e-10
0.0131986
-2.80142e-05
7.28007e-10
0.0131872
-1.52634e-05
7.28269e-10
0.0131733
-2.83954e-06
7.29303e-10
0.0131565
7.61819e-06
7.25482e-10
0.0131384
1.76254e-05
7.22559e-10
0.0131175
2.73322e-05
7.18565e-10
0.0130953
3.67814e-05
7.14564e-10
0.0130699
4.55907e-05
7.1014e-10
0.0130418
5.40528e-05
7.04624e-10
0.0130119
6.23642e-05
6.99435e-10
0.0129791
7.05113e-05
6.92171e-10
0.0129448
7.8675e-05
6.85549e-10
0.0129073
8.69568e-05
6.76623e-10
0.0128683
9.57873e-05
6.67618e-10
0.0128263
0.00010561
6.55729e-10
0.012782
0.000117206
6.41772e-10
0.0127348
0.00013155
6.25257e-10
0.000150188
6.08986e-10
0.0174121
0.015907
-3.9861e-12
0.0157119
0.0123961
3.34194e-11
0.0140602
0.00996456
6.41063e-11
0.012336
0.00818488
3.34397e-11
0.0106331
0.00669004
-4.29681e-12
0.00898381
0.0055407
-4.57943e-11
0.00745946
0.00464137
-6.80176e-11
0.00609832
0.00387122
-1.05913e-10
0.00493188
0.00317641
-1.37458e-10
0.00396193
0.00258609
-1.45775e-10
0.00314173
0.00212809
-1.61448e-10
0.00246331
0.00172911
-2.26459e-10
0.00191268
0.00135507
-3.42714e-10
0.00148612
0.000985999
-4.93073e-10
0.00118473
0.000623095
-6.6235e-10
0.00103529
0.00026006
-7.83991e-10
0.00105069
-0.000150514
-9.97687e-10
0.0012288
-0.000489118
-1.22668e-09
0.00151042
-0.000783689
-1.4757e-09
0.00187178
-0.00110034
-1.5216e-09
0.00228192
-0.00132816
-1.48425e-09
0.00270227
-0.00146379
-1.37745e-09
0.0031223
-0.00154137
-1.18284e-09
0.00354712
-0.0015741
-1.11302e-09
0.00397335
-0.00159189
-8.82911e-10
0.00440476
-0.00160768
-6.84989e-10
0.00484435
-0.00162923
-5.2409e-10
0.00528828
-0.00165346
-3.93562e-10
0.00573793
-0.00167887
-2.84667e-10
0.0061884
-0.00170227
-2.03519e-10
0.00663824
-0.00172304
-1.41679e-10
0.00708496
-0.00173677
-1.12151e-10
0.00752982
-0.00174329
-7.95703e-11
0.00796815
-0.00174248
-4.0659e-11
0.00840006
-0.00173518
-1.72787e-11
0.00882124
-0.00172298
-1.71873e-11
0.00922969
-0.00170401
-3.74693e-11
0.00962351
-0.00168062
-4.58053e-11
0.0100009
-0.00165075
-4.85606e-11
0.0103632
-0.00161605
-6.90462e-11
0.0107105
-0.00157446
-9.54801e-11
0.0110426
-0.00152966
-1.13949e-10
0.0113576
-0.00148116
-1.38656e-10
0.0116584
-0.00143151
-1.70573e-10
0.0119436
-0.00137881
-2.18639e-10
0.0122128
-0.00132375
-2.26971e-10
0.0124619
-0.00126826
-2.44274e-10
0.0126881
-0.00121845
-2.69566e-10
0.0129029
-0.00117688
-3.03339e-10
0.0131058
-0.00112862
-3.07252e-10
0.0132948
-0.00107681
-3.19781e-10
0.0134714
-0.00102489
-3.26897e-10
0.0136349
-0.000973152
-3.2428e-10
0.0137863
-0.00092297
-3.17953e-10
0.0139259
-0.000873588
-3.03284e-10
0.0140543
-0.000825836
-2.79798e-10
0.0141723
-0.000778879
-2.52185e-10
0.0142799
-0.000733548
-2.19205e-10
0.0143782
-0.000688925
-1.80587e-10
0.0144674
-0.000645935
-1.36891e-10
0.014548
-0.000603719
-8.91453e-11
0.0146208
-0.000563147
-3.77454e-11
0.0146854
-0.000523489
1.64667e-11
0.0147431
-0.000485423
7.305e-11
0.0147931
-0.000448417
1.31394e-10
0.0148364
-0.000412892
1.90248e-10
0.0148728
-0.000378502
2.49367e-10
0.0149026
-0.000345437
3.07032e-10
0.0149263
-0.000313509
3.61578e-10
0.0149433
-0.00028273
4.13125e-10
0.0149547
-0.000253027
4.62368e-10
0.0149601
-0.000224377
5.06412e-10
0.0149599
-0.00019682
5.45598e-10
0.0149545
-0.000170214
5.8085e-10
0.0149438
-0.000144824
6.11111e-10
0.0149287
-0.00012043
6.36953e-10
0.0149089
-9.73598e-05
6.58475e-10
0.0148851
-7.52886e-05
6.76211e-10
0.0148573
-5.43947e-05
6.90931e-10
0.0148259
-3.44874e-05
7.02567e-10
0.0147912
-1.58482e-05
7.12024e-10
0.0147533
1.94366e-06
7.16507e-10
0.0147144
1.70121e-05
7.21673e-10
0.0146734
3.19031e-05
7.23684e-10
0.0146309
4.61112e-05
7.22859e-10
0.0145859
5.95744e-05
7.22928e-10
0.0145383
7.22422e-05
7.21092e-10
0.0144891
8.44272e-05
7.17763e-10
0.0144371
9.60541e-05
7.12983e-10
0.0143844
0.000107149
7.08203e-10
0.0143288
0.000117675
7.01372e-10
0.014273
0.000127755
6.95387e-10
0.0142146
0.000137591
6.869e-10
0.014156
0.000147159
6.79278e-10
0.0140952
0.000156848
6.69209e-10
0.0140341
0.000166716
6.59148e-10
0.0139712
0.000177557
6.46356e-10
0.0139078
0.000189799
6.31451e-10
0.0138432
0.000204699
6.13746e-10
0.000223843
5.9528e-10
0.0185718
0.016194
-2.22725e-11
0.0175387
0.0134283
2.03901e-11
0.0163154
0.0111858
4.59992e-11
0.0150292
0.00946691
2.91079e-11
0.0136827
0.00803067
-1.42946e-11
0.0123341
0.00688218
-4.49391e-11
0.0110116
0.00595347
-8.65914e-11
0.00973433
0.00513996
-1.26785e-10
0.00849665
0.0044042
-1.72729e-10
0.00735075
0.0037247
-2.07075e-10
0.00636463
0.0031101
-2.62338e-10
0.00554753
0.00254133
-3.62346e-10
0.00489843
0.00199882
-4.88557e-10
0.00441638
0.00145821
-6.30912e-10
0.00410912
0.000916675
-7.66859e-10
0.00397381
0.000377924
-9.06366e-10
0.0039525
-0.000153403
-9.88386e-10
0.00412758
-0.000692761
-1.13693e-09
0.00448161
-0.00117394
-1.31592e-09
0.00489609
-0.00155601
-1.33294e-09
0.0053625
-0.00183574
-1.31742e-09
0.00584408
-0.00199187
-1.2823e-09
0.00633293
-0.00207547
-1.14748e-09
0.00682165
-0.00210599
-1.0546e-09
0.00730444
-0.00211175
-9.30492e-10
0.00778394
-0.00212018
-7.8054e-10
0.00825771
-0.00213352
-6.47333e-10
0.00872719
-0.00215141
-5.36232e-10
0.00919035
-0.00216882
-4.40169e-10
0.00964769
-0.00218482
-3.73728e-10
0.010094
-0.00219373
-3.24545e-10
0.0105303
-0.00219479
-2.88913e-10
0.0109522
-0.00218541
-2.50441e-10
0.0113611
-0.0021674
-2.06903e-10
0.0117529
-0.00214128
-1.63977e-10
0.0121265
-0.00210838
-1.33238e-10
0.0124808
-0.00206942
-1.19345e-10
0.012815
-0.00202465
-1.18008e-10
0.0131294
-0.00197503
-1.10875e-10
0.0134254
-0.00192044
-1.0618e-10
0.013705
-0.00186182
-1.0001e-10
0.0139684
-0.00179964
-9.52004e-11
0.0142175
-0.00173521
-9.75119e-11
0.0144499
-0.00166948
-1.13362e-10
0.0146661
-0.00160207
-1.27093e-10
0.0148658
-0.00153153
-1.30545e-10
0.0150491
-0.00146027
-1.37984e-10
0.015214
-0.00139282
-1.49141e-10
0.0153618
-0.0013346
-1.65728e-10
0.0154993
-0.00127653
-1.65604e-10
0.015628
-0.00121597
-1.74127e-10
0.0157464
-0.00115445
-1.83762e-10
0.015855
-0.00109245
-1.882e-10
0.0159534
-0.00103205
-1.8751e-10
0.0160426
-0.000972592
-1.82739e-10
0.0161224
-0.000915284
-1.74878e-10
0.0161936
-0.000858962
-1.61976e-10
0.0162562
-0.000804698
-1.44212e-10
0.0163106
-0.000751435
-1.21456e-10
0.0163573
-0.000700095
-9.43916e-11
0.0163963
-0.000649878
-6.32436e-11
0.0164287
-0.000601471
-2.8002e-11
0.0164539
-0.000554364
1.08848e-11
0.0164737
-0.000508966
5.36199e-11
0.0164869
-0.000465008
9.9638e-11
0.0164954
-0.000422639
1.4886e-10
0.016498
-0.000381745
1.99685e-10
0.0164962
-0.000342289
2.52021e-10
0.016489
-0.000304244
3.04001e-10
0.0164778
-0.000267503
3.54981e-10
0.0164614
-0.000232083
4.03599e-10
0.0164412
-0.000197913
4.49722e-10
0.0164161
-0.000165035
4.92972e-10
0.0163873
-0.000133437
5.31689e-10
0.0163541
-0.000103243
5.66542e-10
0.0163176
-7.45065e-05
5.97167e-10
0.0162771
-4.72161e-05
6.23789e-10
0.0162337
-2.16554e-05
6.47054e-10
0.0161875
2.37746e-06
6.67366e-10
0.0161396
2.39779e-05
6.83991e-10
0.0160904
4.46174e-05
6.9769e-10
0.016039
6.40915e-05
7.08734e-10
0.0159852
8.25393e-05
7.15704e-10
0.0159278
9.98417e-05
7.18782e-10
0.0158691
0.000116566
7.21439e-10
0.0158068
0.00013224
7.21115e-10
0.0157432
0.000147232
7.20239e-10
0.0156767
0.000161291
7.16669e-10
0.0156088
0.00017473
7.11941e-10
0.0155389
0.000187415
7.06195e-10
0.0154674
0.000199424
6.98451e-10
0.015395
0.000210809
6.91061e-10
0.0153211
0.000221656
6.81101e-10
0.015247
0.000232125
6.71993e-10
0.0151719
0.000242352
6.60149e-10
0.0150971
0.000252628
6.48572e-10
0.015022
0.000263371
6.33959e-10
0.0149477
0.00027527
6.17631e-10
0.0148742
0.000289096
5.97906e-10
0.000306817
5.75664e-10
0.0193705
0.0162259
-1.60019e-11
0.0187017
0.0140936
1.12889e-11
0.0178262
0.0120602
2.64066e-11
0.0168688
0.0104214
1.55813e-11
0.0158265
0.00906793
-3.45408e-11
0.0147729
0.00793093
-6.17581e-11
0.0137105
0.00700657
-1.23508e-10
0.0126419
0.00619881
-1.84263e-10
0.0115802
0.00545284
-2.66536e-10
0.0105436
0.00474913
-3.64798e-10
0.00957975
0.00405998
-4.86396e-10
0.00871852
0.00338752
-6.46102e-10
0.00800246
0.00269761
-7.99837e-10
0.00745233
0.00198908
-9.35837e-10
0.0070883
0.00125198
-1.02548e-09
0.00692592
0.000507315
-1.06743e-09
0.00696422
-0.000234064
-1.05281e-09
0.00718873
-0.00096264
-1.01348e-09
0.00758204
-0.00161854
-9.76284e-10
0.00807804
-0.00210765
-9.32397e-10
0.00860492
-0.00242062
-8.85001e-10
0.00914491
-0.00258561
-7.16662e-10
0.00967645
-0.00265655
-8.7759e-10
0.0101955
-0.00267496
-9.76631e-10
0.0106959
-0.0026575
-1.03016e-09
0.0111764
-0.00264283
-9.43477e-10
0.0116338
-0.00263113
-8.31416e-10
0.0120673
-0.00262339
-7.45764e-10
0.0124807
-0.00261694
-6.85707e-10
0.0128733
-0.00260787
-6.13288e-10
0.0132468
-0.00259384
-5.4505e-10
0.0136005
-0.00257197
-4.89709e-10
0.0139359
-0.00254121
-4.33558e-10
0.0142525
-0.00250206
-3.74183e-10
0.0145509
-0.00245557
-3.12478e-10
0.0148314
-0.00240314
-2.55349e-10
0.0150945
-0.00234544
-2.07781e-10
0.0153414
-0.00228347
-1.74957e-10
0.0155735
-0.002218
-1.48795e-10
0.015791
-0.00214806
-1.25521e-10
0.0159948
-0.0020748
-1.00938e-10
0.0161844
-0.00199839
-7.84136e-11
0.0163608
-0.00192047
-6.10111e-11
0.0165244
-0.00184168
-4.95826e-11
0.0166769
-0.0017629
-4.22123e-11
0.0168179
-0.00168076
-4.2157e-11
0.0169483
-0.0015979
-4.219e-11
0.0170659
-0.0015175
-4.20309e-11
0.0171696
-0.00144447
-4.16582e-11
0.0172631
-0.00137643
-3.92107e-11
0.0173498
-0.00130865
-4.49628e-11
0.0174282
-0.0012398
-5.54568e-11
0.0174993
-0.0011702
-6.62542e-11
0.017562
-0.00110178
-7.46743e-11
0.0176168
-0.00103429
-8.02822e-11
0.0176636
-0.000968921
-8.32542e-11
0.0177024
-0.000904904
-8.36955e-11
0.0177341
-0.000843003
-8.01075e-11
0.017758
-0.000782528
-7.27366e-11
0.0177754
-0.000723992
-6.08847e-11
0.0177854
-0.000666995
-4.50338e-11
0.0177895
-0.000611805
-2.42869e-11
0.0177868
-0.000558276
6.84962e-13
0.017779
-0.000506478
3.09711e-11
0.0177654
-0.000456403
6.56443e-11
0.0177473
-0.000407977
1.0552e-10
0.0177242
-0.000361238
1.48989e-10
0.0176969
-0.000316033
1.95928e-10
0.0176652
-0.000272411
2.44819e-10
0.0176294
-0.000230221
2.9463e-10
0.0175898
-0.000189556
3.44087e-10
0.0175463
-0.000150318
3.9158e-10
0.0174996
-0.00011267
4.38592e-10
0.0174489
-7.63815e-05
4.78397e-10
0.0173959
-4.23128e-05
5.17471e-10
0.0173397
-9.9634e-06
5.52397e-10
0.0172829
1.9546e-05
5.85404e-10
0.0172239
4.71777e-05
6.13949e-10
0.0171642
7.34601e-05
6.40549e-10
0.0171006
9.8364e-05
6.6138e-10
0.0170358
0.000121816
6.80348e-10
0.0169673
0.000144166
6.94408e-10
0.0168975
0.00016512
7.06286e-10
0.0168241
0.000185088
7.12875e-10
0.0167496
0.000203714
7.18066e-10
0.0166723
0.000221607
7.19339e-10
0.0165935
0.000238132
7.18934e-10
0.0165128
0.000254049
7.16207e-10
0.0164303
0.000268629
7.11002e-10
0.0163469
0.000282732
7.05131e-10
0.0162615
0.000295554
6.96104e-10
0.016176
0.000307945
6.87597e-10
0.0160889
0.000319206
6.75745e-10
0.0160022
0.000330155
6.64832e-10
0.0159146
0.000340286
6.50698e-10
0.0158279
0.0003504
6.37014e-10
0.0157413
0.000360328
6.19942e-10
0.0156564
0.000371077
6.01431e-10
0.0155729
0.000382935
5.79214e-10
0.000397578
5.52374e-10
0.0199438
0.0162044
-2.33089e-11
0.0195461
0.0144897
-8.81497e-13
0.0188655
0.0127359
7.59803e-13
0.0181213
0.0111619
-1.0753e-11
0.0173237
0.00985997
-5.25355e-11
0.0164845
0.00876326
-1.08662e-10
0.0156508
0.00783277
-1.75718e-10
0.0148069
0.00702973
-2.86414e-10
0.0139617
0.00628603
-4.31595e-10
0.0131149
0.00557556
-6.2238e-10
0.0123059
0.00484471
-8.84498e-10
0.0115714
0.00409751
-1.13717e-09
0.0109403
0.00329417
-1.29317e-09
0.010447
0.0024508
-1.34809e-09
0.0101241
0.00153769
-1.30855e-09
0.0100187
0.000572733
-1.23874e-09
0.0100956
-0.000356255
-1.02899e-09
0.010339
-0.00124764
-7.22575e-10
0.0107029
-0.00202661
-6.11859e-10
0.0111144
-0.00255824
-3.98154e-10
0.0115261
-0.00286549
-2.59721e-10
0.0120104
-0.00310062
-2.92325e-10
0.0124808
-0.00315536
-4.63811e-10
0.0128693
-0.00310239
-7.95542e-10
0.0133043
-0.00312963
-1.22831e-09
0.0137247
-0.0031003
-1.16688e-09
0.0141193
-0.00306031
-1.08655e-09
0.014485
-0.00301913
-1.00021e-09
0.0148243
-0.00298304
-9.04736e-10
0.0151422
-0.00295007
-8.19506e-10
0.0154412
-0.00291511
-7.49644e-10
0.0157229
-0.00287427
-6.84275e-10
0.0159897
-0.00282654
-6.14067e-10
0.0162411
-0.00277158
-5.36097e-10
0.0164791
-0.00271022
-4.55154e-10
0.0167035
-0.00264298
-3.73349e-10
0.0169154
-0.00257123
-2.99483e-10
0.0171161
-0.00249649
-2.35827e-10
0.0173049
-0.00241767
-1.80254e-10
0.0174826
-0.00233547
-1.34247e-10
0.0176496
-0.00225051
-9.14097e-11
0.0178063
-0.0021632
-5.18939e-11
0.0179534
-0.00207458
-1.75014e-11
0.0180905
-0.00198531
1.01591e-11
0.0182183
-0.00189691
3.68092e-11
0.0183359
-0.00180488
3.94333e-11
0.0184446
-0.00171272
4.42531e-11
0.0185423
-0.00162149
5.06175e-11
0.018627
-0.00153466
5.80681e-11
0.0187021
-0.0014577
6.85828e-11
0.018768
-0.00138053
6.07038e-11
0.0188255
-0.0013042
4.94731e-11
0.0188764
-0.00122785
3.49194e-11
0.0189196
-0.00115235
1.89263e-11
0.0189553
-0.00107765
3.67467e-12
0.0189834
-0.00100474
-9.56077e-12
0.0190037
-0.000933409
-2.09452e-11
0.0190171
-0.000864122
-2.93726e-11
0.019023
-0.000796651
-3.50852e-11
0.0190226
-0.000731105
-3.63918e-11
0.0190153
-0.000667465
-3.3852e-11
0.0190023
-0.000605642
-2.57544e-11
0.018983
-0.00054579
-1.28581e-11
0.0189585
-0.000487698
6.42792e-12
0.0189285
-0.000431575
3.12536e-11
0.0188939
-0.000377136
6.26653e-11
0.0188546
-0.000324575
9.93275e-11
0.0188111
-0.0002736
1.41242e-10
0.0187634
-0.000224389
1.86696e-10
0.0187116
-0.000176712
2.34835e-10
0.0186559
-0.000130825
2.84135e-10
0.0185964
-8.65451e-05
3.32582e-10
0.0185336
-4.43438e-05
3.81882e-10
0.0184672
-3.8273e-06
4.19295e-10
0.0184005
3.21327e-05
4.65402e-10
0.0183318
6.71009e-05
5.069e-10
0.0182607
0.000100165
5.45783e-10
0.0181861
0.000131387
5.80123e-10
0.0181094
0.000160896
6.12285e-10
0.0180294
0.000188876
6.38133e-10
0.0179476
0.000215253
6.61923e-10
0.0178627
0.000240241
6.7967e-10
0.0177763
0.000263685
6.95425e-10
0.0176873
0.00028586
7.05364e-10
0.0175969
0.000306531
7.12887e-10
0.0175046
0.000326128
7.16133e-10
0.0174108
0.000344289
7.16543e-10
0.017316
0.000361489
7.14585e-10
0.0172194
0.000377317
7.09211e-10
0.0171225
0.000392258
7.03082e-10
0.017024
0.000405919
6.93129e-10
0.0169256
0.000418708
6.83358e-10
0.0168262
0.000430344
6.69769e-10
0.0167274
0.00044116
6.5664e-10
0.0166283
0.000451058
6.39976e-10
0.0165304
0.000460334
6.23334e-10
0.0164332
0.000469165
6.03169e-10
0.0163381
0.000477971
5.81139e-10
0.0162448
0.000487398
5.55804e-10
0.000498159
5.22794e-10
0.0204279
0.0161288
-4.41784e-11
0.0201743
0.0147426
-3.73407e-11
0.0196814
0.0132269
-3.84155e-11
0.0190485
0.0117897
-5.9319e-11
0.0183897
0.0105134
-1.02304e-10
0.0177112
0.00943347
-1.76944e-10
0.0170251
0.0085089
-2.75522e-10
0.016349
0.00769234
-4.35084e-10
0.0156823
0.00693245
-6.94742e-10
0.0150369
0.00619833
-9.99235e-10
0.0144368
0.00541178
-1.41047e-09
0.0138779
0.00461398
-1.72739e-09
0.0133635
0.00376783
-1.77675e-09
0.0130024
0.00276852
-1.83536e-09
0.0128543
0.00163179
-1.81024e-09
0.0128424
0.000552403
-9.57986e-10
0.0129743
-0.000526339
-8.25784e-10
0.0131999
-0.00151208
-5.77342e-10
0.0134298
-0.00228298
-4.48932e-11
0.0136309
-0.00276646
8.48205e-10
0.013836
-0.0030851
2.66801e-10
0.0139896
-0.00326786
1.23828e-10
0.0142767
-0.0034623
-1.69573e-10
0.0147067
-0.00355804
-6.19115e-10
0.0150386
-0.0034934
-9.64438e-10
0.0153856
-0.00348699
-1.36179e-09
0.0157583
-0.00347302
-1.37619e-09
0.0161065
-0.00340457
-1.32163e-09
0.0164315
-0.00334267
-1.19736e-09
0.0167305
-0.00328085
-1.07246e-09
0.0170082
-0.00322173
-9.64622e-10
0.0172675
-0.00316092
-8.66317e-10
0.0175135
-0.00309689
-7.67835e-10
0.0177467
-0.00302794
-6.65136e-10
0.01797
-0.00295332
-5.64466e-10
0.0181829
-0.00287438
-4.61851e-10
0.018386
-0.0027902
-3.69631e-10
0.0185776
-0.00270196
-2.87342e-10
0.0187582
-0.0026097
-2.04718e-10
0.0189274
-0.002515
-1.39683e-10
0.0190855
-0.0024178
-8.01274e-11
0.0192322
-0.0023187
-2.46434e-11
0.0193682
-0.0022179
2.31722e-11
0.0194932
-0.0021175
5.92579e-11
0.0196077
-0.00201733
9.66765e-11
0.0197139
-0.00191723
1.02102e-10
0.0198112
-0.00181471
1.10953e-10
0.0198976
-0.00171272
1.2125e-10
0.0199726
-0.00161313
1.31664e-10
0.0200334
-0.00152221
1.44882e-10
0.0200846
-0.00143511
1.34595e-10
0.0201276
-0.00135108
1.23857e-10
0.0201628
-0.00126745
1.08809e-10
0.0201908
-0.00118514
8.92567e-11
0.0202106
-0.00110336
6.72981e-11
0.0202235
-0.00102339
4.58403e-11
0.0202282
-0.000944854
2.50841e-11
0.0202261
-0.00086851
6.86923e-12
0.0202159
-0.000794081
-9.43718e-12
0.0201991
-0.000721813
-2.13436e-11
0.0201747
-0.000651606
-2.94927e-11
0.0201444
-0.000583442
-3.15596e-11
0.0201078
-0.000517373
-2.83291e-11
0.0200662
-0.00045326
-1.80137e-11
0.0200192
-0.000391191
-1.29091e-12
0.0199677
-0.000330983
2.27943e-11
0.0199114
-0.000272681
5.34276e-11
0.0198509
-0.000216157
9.02574e-11
0.019786
-0.000161416
1.32402e-10
0.0197174
-0.000108483
1.78465e-10
0.0196452
-5.75474e-05
2.26696e-10
0.0195701
-9.05857e-06
2.74753e-10
0.0194938
3.6121e-05
3.2352e-10
0.0194165
7.91861e-05
3.81043e-10
0.0193363
0.000119622
4.26385e-10
0.0192534
0.000157944
4.69503e-10
0.0191687
0.000194437
5.11571e-10
0.0190808
0.000228894
5.48504e-10
0.0189915
0.000261532
5.83891e-10
0.0188989
0.000292295
6.13101e-10
0.0188053
0.000321311
6.40632e-10
0.0187088
0.000348637
6.61687e-10
0.0186114
0.000374239
6.80525e-10
0.0185117
0.000398354
6.93492e-10
0.0184109
0.000420756
7.03267e-10
0.0183085
0.000441873
7.08806e-10
0.0182047
0.00046133
7.10343e-10
0.0180999
0.000479634
7.09651e-10
0.0179934
0.000496348
7.04341e-10
0.0178868
0.00051195
6.9846e-10
0.0177785
0.000526071
6.8766e-10
0.0176707
0.00053904
6.77182e-10
0.0175616
0.000550663
6.61843e-10
0.0174537
0.000561066
6.46971e-10
0.0173453
0.000570318
6.27567e-10
0.0172387
0.000578355
6.07978e-10
0.0171326
0.000585587
5.84137e-10
0.0170293
0.000591875
5.57837e-10
0.0169281
0.000598207
5.28541e-10
0.000604542
4.87858e-10
0.0208034
0.0160139
-6.3933e-11
0.0206644
0.0148776
-7.70491e-11
0.0203143
0.0135755
-9.05508e-11
0.0198227
0.0122774
-1.26027e-10
0.019252
0.011077
-1.89359e-10
0.0186713
0.0100066
-2.93304e-10
0.0180959
0.00907116
-4.51285e-10
0.0175276
0.00824276
-7.12378e-10
0.0169963
0.00743883
-1.08681e-09
0.0165278
0.00663176
-1.59865e-09
0.0160462
0.00584172
-2.16188e-09
0.0156252
0.00498747
-2.27196e-09
0.0153526
0.00398485
-2.46775e-09
0.0152695
0.00278686
-2.7074e-09
0.0152418
0.00161164
-1.73861e-09
0.0153411
0.000424237
-6.69578e-10
0.0154837
-0.00069734
-4.75731e-10
0.0156025
-0.00165103
3.44725e-11
0.0156145
-0.00229233
1.03759e-09
0.0156194
-0.00276421
1.28423e-09
0.0156529
-0.00311251
9.42354e-10
0.0157464
-0.00336885
8.15972e-11
0.0158212
-0.00354677
-1.74938e-12
0.0159957
-0.00374617
-1.65979e-10
0.0163486
-0.0038683
-5.36535e-10
0.016677
-0.00385078
-1.1918e-09
0.0169876
-0.00382657
-1.58158e-09
0.0173401
-0.00379945
-1.61935e-09
0.0176915
-0.0037335
-1.49097e-09
0.0180161
-0.00364108
-1.33749e-09
0.0183091
-0.00354758
-1.18017e-09
0.0185739
-0.00345604
-1.02756e-09
0.0188164
-0.00336667
-8.84642e-10
0.0190412
-0.00327778
-7.52072e-10
0.0192539
-0.00318696
-6.32644e-10
0.0194537
-0.00309304
-5.19196e-10
0.0196417
-0.00299424
-4.15697e-10
0.0198191
-0.00289202
-3.21e-10
0.0199837
-0.00278536
-2.25209e-10
0.0201368
-0.00267711
-1.49156e-10
0.0202775
-0.002566
-7.32335e-11
0.0204049
-0.00245283
-9.97495e-12
0.0205213
-0.0023398
4.68923e-11
0.0206259
-0.00222737
8.84102e-11
0.0207203
-0.00211542
1.23956e-10
0.0208068
-0.0020062
1.53115e-10
0.0208845
-0.00189379
1.56888e-10
0.0209524
-0.00178189
1.63811e-10
0.0210102
-0.00167139
1.72264e-10
0.0210552
-0.00156783
1.8374e-10
0.0210888
-0.00146992
1.74616e-10
0.0211134
-0.0013771
1.6528e-10
0.0211299
-0.00128586
1.52834e-10
0.0211397
-0.00119673
1.34029e-10
0.021142
-0.00110859
1.09292e-10
0.0211382
-0.00102233
8.24897e-11
0.0211267
-0.000937557
5.46566e-11
0.0211094
-0.000854929
2.88281e-11
0.0210845
-0.000774302
4.55092e-12
0.0210538
-0.000695938
-1.52449e-11
0.0210157
-0.000619786
-3.12004e-11
0.020972
-0.00054586
-4.07276e-11
0.0209217
-0.000474155
-4.45779e-11
0.0208663
-0.000404568
-4.10111e-11
0.0208056
-0.000337091
-3.05456e-11
0.0207403
-0.000271585
-1.24833e-11
0.0206706
-0.000208026
1.28885e-11
0.0205967
-0.000146375
4.46195e-11
0.0205189
-8.64922e-05
8.39204e-11
0.020438
-2.9199e-05
1.26599e-10
0.0203549
2.51748e-05
1.73215e-10
0.0202703
7.66874e-05
2.25497e-10
0.0201833
0.000125614
2.75232e-10
0.0200939
0.000172123
3.27809e-10
0.0200025
0.000216262
3.78349e-10
0.0199081
0.000257978
4.25815e-10
0.0198126
0.000297533
4.71831e-10
0.0197142
0.000334929
5.12409e-10
0.0196152
0.000370206
5.51465e-10
0.0195136
0.000403494
5.84362e-10
0.0194119
0.000434669
6.15378e-10
0.0193079
0.0004641
6.39861e-10
0.0192038
0.000491411
6.61551e-10
0.019098
0.000517231
6.77413e-10
0.0189914
0.000540929
6.89363e-10
0.0188837
0.000563339
6.9705e-10
0.0187748
0.000583672
6.99933e-10
0.0186653
0.000602833
7.00398e-10
0.0185544
0.000620005
6.95547e-10
0.0184436
0.000636011
6.89722e-10
0.0183313
0.000650141
6.78466e-10
0.0182197
0.000663014
6.6697e-10
0.0181072
0.000674117
6.50171e-10
0.0179959
0.000683803
6.33138e-10
0.0178844
0.00069181
6.10961e-10
0.0177749
0.000698232
5.87762e-10
0.0176665
0.000703115
5.59674e-10
0.0175612
0.000706324
5.28009e-10
0.0174588
0.0007086
4.93568e-10
0.000709566
4.43746e-10
0.0211032
0.0159263
-1.03263e-10
0.0210298
0.0149468
-1.41575e-10
0.0207834
0.0138173
-1.7784e-10
0.0204092
0.0126457
-2.31356e-10
0.0199568
0.0115225
-3.23322e-10
0.01946
0.0104894
-4.90837e-10
0.0189768
0.00954059
-7.30911e-10
0.0185181
0.0086759
-1.16934e-09
0.0181197
0.00779981
-1.75643e-09
0.0177118
0.00698714
-2.54828e-09
0.0173822
0.00611413
-2.71867e-09
0.0171947
0.00511554
-3.06675e-09
0.0171967
0.0039002
-3.64338e-09
0.0172572
0.00266405
-2.78761e-09
0.0173562
0.00147955
-1.04829e-09
0.0174749
0.00027577
-7.72781e-10
0.0175486
-0.000792683
-1.63499e-10
0.0174867
-0.00159013
8.05411e-10
0.0173729
-0.00214821
2.23896e-09
0.0172431
-0.00261033
1.77846e-09
0.017152
-0.00300661
1.17612e-09
0.0171244
-0.00334114
5.42578e-10
0.0171742
-0.00360819
-1.29882e-10
0.0172219
-0.00380767
-2.3474e-10
0.0173572
-0.00402087
-4.48189e-10
0.0176367
-0.00415716
-7.94102e-10
0.0179479
-0.00417158
-1.25169e-09
0.0182159
-0.00410956
-1.53632e-09
0.0185325
-0.00409288
-1.58007e-09
0.0188674
-0.00401649
-1.50674e-09
0.0191787
-0.00389703
-1.37755e-09
0.0194572
-0.00376914
-1.20051e-09
0.0197045
-0.00364545
-1.01204e-09
0.0199261
-0.00352737
-8.39943e-10
0.020129
-0.00341349
-6.91321e-10
0.0203154
-0.00330031
-5.60706e-10
0.0204906
-0.00318577
-4.46645e-10
0.0206523
-0.0030688
-3.448e-10
0.0208033
-0.00294851
-2.50027e-10
0.0209421
-0.00282613
-1.59693e-10
0.0210677
-0.00270124
-8.2394e-11
0.0211829
-0.0025767
-2.79194e-11
0.0212864
-0.00245073
3.6868e-11
0.0213792
-0.00232615
9.05717e-11
0.0214628
-0.00220293
1.36224e-10
0.021538
-0.00208388
1.62108e-10
0.0216056
-0.00196218
1.66991e-10
0.021665
-0.00184154
1.75061e-10
0.0217153
-0.00172141
1.83645e-10
0.0217528
-0.00160572
1.92575e-10
0.0217802
-0.00149884
1.93009e-10
0.0217964
-0.00139543
1.81496e-10
0.0218033
-0.00129571
1.71307e-10
0.0218035
-0.00119921
1.55666e-10
0.0217968
-0.00110463
1.3197e-10
0.0217846
-0.00101214
1.03206e-10
0.0217655
-0.000921465
7.14072e-11
0.0217403
-0.000832774
4.04567e-11
0.0217077
-0.00074626
1.09706e-11
0.0216684
-0.00066188
-1.39362e-11
0.0216221
-0.000579949
-3.46527e-11
0.0215695
-0.000500227
-4.87669e-11
0.0215106
-0.000422972
-5.70269e-11
0.0214462
-0.00034785
-5.78855e-11
0.0213763
-0.000275019
-5.19762e-11
0.0213013
-0.000204148
-3.84682e-11
0.0212216
-0.000135367
-1.81806e-11
0.0211375
-6.85094e-05
1.1054e-11
0.02105
-4.12658e-06
3.64227e-11
0.0209609
5.6438e-05
8.50563e-11
0.0208699
0.000114644
1.32117e-10
0.0207764
0.000170092
1.81362e-10
0.0206811
0.000222829
2.31731e-10
0.0205831
0.000273003
2.81969e-10
0.0204833
0.000320619
3.33303e-10
0.0203806
0.000365733
3.82268e-10
0.0202766
0.000408299
4.31039e-10
0.0201698
0.000448567
4.74955e-10
0.0200624
0.000486346
5.17508e-10
0.0199527
0.000522048
5.5392e-10
0.0198427
0.000555279
5.87995e-10
0.019731
0.000586683
6.1566e-10
0.0196189
0.000615633
6.39808e-10
0.0195057
0.000642985
6.58264e-10
0.0193918
0.000667917
6.72036e-10
0.0192773
0.000691405
6.81547e-10
0.0191618
0.000712554
6.8559e-10
0.0190462
0.000732314
6.86971e-10
0.0189293
0.000749857
6.82577e-10
0.0188129
0.000765955
6.7667e-10
0.0186953
0.000779956
6.65027e-10
0.0185787
0.000792348
6.52383e-10
0.0184614
0.000802714
6.34114e-10
0.0183457
0.000811186
6.14742e-10
0.0182301
0.000817607
5.89243e-10
0.018117
0.000821686
5.61974e-10
0.0180054
0.000823619
5.29107e-10
0.0178975
0.00082272
4.90631e-10
0.0177933
0.000820005
4.49869e-10
0.000814125
3.89346e-10
0.0214206
0.0158988
-1.98197e-10
0.0213528
0.0150114
-2.30413e-10
0.0211676
0.0139965
-2.91116e-10
0.0208708
0.012934
-3.86802e-10
0.0205104
0.0118704
-5.51423e-10
0.0201174
0.0108675
-7.89268e-10
0.0197257
0.00990229
-1.29272e-09
0.0194002
0.00896442
-1.83791e-09
0.0190691
0.00806995
-2.81803e-09
0.0188337
0.00716097
-3.0529e-09
0.0187222
0.00614981
-3.57444e-09
0.0188229
0.00492374
-4.56895e-09
0.018962
0.00367046
-4.09562e-09
0.0190961
0.00248311
-1.48146e-09
0.0192898
0.00124966
-1.28146e-09
0.0193994
0.000145238
-6.12017e-10
0.0193432
-0.000733284
7.11762e-10
0.0191063
-0.00132351
2.4498e-09
0.0188637
-0.0018753
2.2119e-09
0.0186476
-0.00236779
1.74762e-09
0.018477
-0.00282016
1.18557e-09
0.0183673
-0.00322597
6.70443e-10
0.0183282
-0.00357513
1.6175e-10
0.0183609
-0.00385607
-3.77203e-10
0.0183895
-0.00406598
-4.264e-10
0.0184732
-0.00425827
-5.33095e-10
0.0186793
-0.00440186
-7.75271e-10
0.01898
-0.00444592
-1.24143e-09
0.0192047
-0.00435558
-1.37638e-09
0.0194815
-0.00433423
-1.48237e-09
0.0197944
-0.00425109
-1.47405e-09
0.0200921
-0.00410651
-1.38439e-09
0.0203667
-0.003956
-1.19817e-09
0.0206139
-0.00380412
-9.92154e-10
0.0208345
-0.00365777
-7.99131e-10
0.0210327
-0.00351664
-6.32445e-10
0.0212107
-0.0033796
-4.93923e-10
0.0213724
-0.00324378
-3.79488e-10
0.0215194
-0.00310851
-2.79664e-10
0.0216534
-0.00297155
-1.96871e-10
0.0217743
-0.00283414
-1.20029e-10
0.021884
-0.0026954
-5.34757e-11
0.0219857
-0.0025585
1.08803e-11
0.0220777
-0.0024219
7.14028e-11
0.0221602
-0.00228706
1.11411e-10
0.0222323
-0.0021561
1.28544e-10
0.0222993
-0.0020279
1.60214e-10
0.0223559
-0.00189741
1.64493e-10
0.0224016
-0.00176713
1.71718e-10
0.0224356
-0.00164029
1.80105e-10
0.022456
-0.0015206
1.90752e-10
0.0224661
-0.00140741
1.78643e-10
0.0224669
-0.00129902
1.69339e-10
0.0224606
-0.00119452
1.57411e-10
0.0224467
-0.00109284
1.37103e-10
0.0224271
-0.000993897
1.10712e-10
0.0224003
-0.000897132
7.90359e-11
0.0223678
-0.000802536
4.7191e-11
0.0223278
-0.000710143
1.59519e-11
0.0222816
-0.00061997
-1.10603e-11
0.0222284
-0.000532253
-3.38603e-11
0.0221689
-0.000446887
-5.0523e-11
0.0221033
-0.000364032
-6.12782e-11
0.0220322
-0.000283481
-6.53851e-11
0.0219557
-0.000205242
-6.29311e-11
0.0218743
-0.000129095
-5.36498e-11
0.0217883
-5.52145e-05
-3.76961e-11
0.0216986
1.57943e-05
-1.53497e-11
0.0216063
8.38922e-05
2.58669e-11
0.0215105
0.000148747
5.75417e-11
0.0214121
0.000210799
9.92939e-11
0.0213112
0.000269958
1.44904e-10
0.0212083
0.000326401
1.93758e-10
0.0211031
0.000379989
2.43014e-10
0.0209964
0.000430916
2.94065e-10
0.0208874
0.00047904
3.43318e-10
0.0207774
0.0005245
3.93351e-10
0.0206652
0.000567314
4.39094e-10
0.0205527
0.00060751
4.83776e-10
0.0204385
0.000645315
5.22549e-10
0.020324
0.00068053
5.58701e-10
0.0202084
0.000713618
5.88794e-10
0.0200923
0.000744144
6.1476e-10
0.0199755
0.000772754
6.35435e-10
0.0198579
0.000798856
6.50708e-10
0.0197399
0.000823155
6.61873e-10
0.0196207
0.000845043
6.67009e-10
0.0195016
0.000865138
6.69144e-10
0.0193815
0.000882935
6.65224e-10
0.0192618
0.000898847
6.58975e-10
0.0191414
0.000912532
6.46867e-10
0.0190221
0.000924115
6.32627e-10
0.0189026
0.000933424
6.12553e-10
0.018785
0.000940235
5.8994e-10
0.0186683
0.000944531
5.6161e-10
0.0185544
0.000945685
5.28955e-10
0.0184429
0.000943854
4.90203e-10
0.0183359
0.000937894
4.42125e-10
0.0182339
0.000928703
3.92461e-10
0.000915024
3.20964e-10
0.0217419
0.0159244
-3.02196e-10
0.0216564
0.0150908
-3.61358e-10
0.0214999
0.0141456
-4.62991e-10
0.0212661
0.0131561
-6.26768e-10
0.0209795
0.0121382
-9.37231e-10
0.0206808
0.0111425
-1.3469e-09
0.0204032
0.0101374
-2.12535e-09
0.0201559
0.0091461
-3.2254e-09
0.0199655
0.00819164
-3.41536e-09
0.0199206
0.00713092
-3.90379e-09
0.0200999
0.00588649
-4.62435e-09
0.0203203
0.00458017
-5.62872e-09
0.0205439
0.00336954
-3.48679e-09
0.0207894
0.0022069
-9.98205e-10
0.0209187
0.00109114
-6.40922e-10
0.0208799
0.00017297
2.77406e-10
0.0206176
-0.000444556
2.01122e-09
0.0203557
-0.00102679
2.34734e-09
0.0200841
-0.0015689
1.99586e-09
0.0198396
-0.00209767
1.52448e-09
0.0196343
-0.00260089
1.05154e-09
0.0194762
-0.0030646
6.35309e-10
0.0193702
-0.00347238
2.59015e-10
0.0193222
-0.00381708
-1.02587e-10
0.0193361
-0.0040919
-3.37314e-10
0.0193564
-0.00429916
-6.71349e-10
0.0193878
-0.00445309
-7.41368e-10
0.01951
-0.00459443
-9.30193e-10
0.0197707
-0.00465091
-1.24789e-09
0.0199628
-0.00455957
-1.17626e-09
0.0201829
-0.00450943
-1.37478e-09
0.0204591
-0.00442338
-1.49149e-09
0.0207492
-0.00428363
-1.39105e-09
0.0210235
-0.0041108
-1.21191e-09
0.0212706
-0.0039319
-1.00176e-09
0.0214868
-0.0037557
-7.96498e-10
0.0216745
-0.00358647
-6.17865e-10
0.0218385
-0.00342433
-4.69142e-10
0.0219828
-0.00326773
-3.49581e-10
0.022112
-0.00311403
-2.55137e-10
0.0222289
-0.00296213
-1.79544e-10
0.0223346
-0.00281116
-1.11219e-10
0.0224315
-0.00266154
-5.31e-11
0.0225192
-0.00251402
1.24625e-11
0.0225978
-0.0023685
6.07058e-11
0.0226656
-0.00222555
8.83596e-11
0.0227242
-0.0020873
1.26948e-10
0.0227735
-0.00194796
1.33155e-10
0.0228138
-0.00180906
1.433e-10
0.0228438
-0.00167221
1.55536e-10
0.0228612
-0.00154012
1.71364e-10
0.02287
-0.00141813
1.62347e-10
0.0228687
-0.00129964
1.54208e-10
0.0228596
-0.00118642
1.45435e-10
0.0228428
-0.0010771
1.3049e-10
0.0228194
-0.000971182
1.09516e-10
0.0227884
-0.000867975
8.24832e-11
0.0227511
-0.000767262
5.37249e-11
0.0227062
-0.000668955
2.4389e-11
0.022655
-0.000572992
-1.78464e-12
0.0225966
-0.000479535
-2.4671e-11
0.0225319
-0.000388504
-4.21595e-11
0.022461
-0.00030003
-5.46101e-11
0.0223846
-0.00021394
-6.11741e-11
0.022303
-0.000130177
-6.19757e-11
0.0222166
-4.88053e-05
-5.67307e-11
0.0221265
2.96029e-05
-4.34942e-11
0.0220327
0.000104767
-2.19089e-11
0.0219358
0.000176897
4.4912e-12
0.0218351
0.000245879
3.70942e-11
0.0217316
0.000311823
7.56831e-11
0.0216249
0.000374712
1.17555e-10
0.0215162
0.000434648
1.63683e-10
0.0214048
0.000491573
2.10904e-10
0.0212924
0.000545526
2.60936e-10
0.0211776
0.000596569
3.09448e-10
0.0210625
0.000644603
3.59403e-10
0.0209454
0.000689928
4.05557e-10
0.0208283
0.000732231
4.51108e-10
0.0207099
0.000772117
4.91292e-10
0.0205915
0.000808989
5.28687e-10
0.0204724
0.00084372
5.6052e-10
0.020353
0.000875476
5.87631e-10
0.0202333
0.000905274
6.09902e-10
0.0201128
0.000932185
6.26085e-10
0.0199924
0.000957192
6.38353e-10
0.0198708
0.000979436
6.44079e-10
0.0197496
0.00099972
6.46514e-10
0.0196275
0.00101734
6.42608e-10
0.0195061
0.00103285
6.35626e-10
0.0193844
0.00104571
6.22546e-10
0.0192639
0.00105614
6.06263e-10
0.0191439
0.00106372
5.83634e-10
0.0190259
0.00106831
5.57233e-10
0.0189097
0.00106954
5.23529e-10
0.018797
0.00106677
4.846e-10
0.0186881
0.00105968
4.36746e-10
0.0185855
0.00104666
3.74744e-10
0.0184889
0.00102986
3.28153e-10
0.0010086
2.56202e-10
0.0221283
0.0159936
-4.14889e-10
0.0220052
0.0152045
-5.23887e-10
0.0218383
0.0142994
-7.11823e-10
0.0216363
0.0133394
-1.02859e-09
0.0214127
0.0123362
-1.5045e-09
0.0212082
0.0113046
-2.28395e-09
0.0210474
0.0102265
-3.61427e-09
0.02089
0.00922809
-3.87922e-09
0.0208875
0.00810812
-4.40108e-09
0.0211082
0.00680813
-5.19451e-09
0.0214321
0.00543094
-6.30007e-09
0.0217359
0.00418919
-4.29853e-09
0.0219916
0.00307081
-1.78249e-09
0.0222072
0.0019568
-1.34942e-09
0.0222278
0.0010493
-3.63333e-10
0.0219596
0.000455401
1.53422e-09
0.0216891
-0.000128294
2.76208e-09
0.0213974
-0.000697377
2.44533e-09
0.0211238
-0.00126982
1.73844e-09
0.0208777
-0.00183618
1.21591e-09
0.020663
-0.00237709
8.53854e-10
0.0204794
-0.00287784
5.6924e-10
0.020331
-0.00332413
3.14583e-10
0.0202217
-0.0037114
6.68009e-11
0.0201535
-0.00403136
-1.76388e-10
0.0201282
-0.00428757
-4.17871e-10
0.0201414
-0.00448431
-5.71172e-10
0.0201368
-0.0046163
-8.21494e-10
0.0201721
-0.00471328
-8.70617e-10
0.0203674
-0.00478457
-9.66037e-10
0.0205543
-0.00472721
-1.09751e-09
0.0207282
-0.00463161
-1.2229e-09
0.0209701
-0.00456103
-1.36626e-09
0.0212461
-0.00442146
-1.34665e-09
0.0215166
-0.00423444
-1.21432e-09
0.0217639
-0.0040323
-1.03024e-09
0.0219827
-0.00383006
-8.30668e-10
0.0221721
-0.00363534
-6.41792e-10
0.0223355
-0.00344921
-4.84171e-10
0.0224767
-0.00327167
-3.61848e-10
0.022601
-0.00310057
-2.6864e-10
0.022714
-0.00293455
-1.91601e-10
0.0228155
-0.00277182
-1.26962e-10
0.0229093
-0.00261186
-6.51592e-11
0.0229922
-0.00245542
-6.47252e-15
0.0230647
-0.00230098
3.50625e-11
0.0231253
-0.00215035
6.91358e-11
0.0231801
-0.00200469
1.05062e-10
0.0232248
-0.0018559
1.09008e-10
0.0232601
-0.00170919
1.16473e-10
0.0232839
-0.0015657
1.26827e-10
0.0232955
-0.00143075
1.40683e-10
0.0232969
-0.00130242
1.39035e-10
0.0232897
-0.00117997
1.32503e-10
0.0232737
-0.00106211
1.22962e-10
0.0232501
-0.000948068
1.09742e-10
0.0232184
-0.000837417
9.09226e-11
0.0231795
-0.000729748
6.8796e-11
0.0231327
-0.000624946
4.45076e-11
0.023079
-0.000522746
2.13235e-11
0.0230178
-0.000423232
-2.13566e-13
0.02295
-0.000326232
-1.79545e-11
0.0228753
-0.00023186
-3.19873e-11
0.0227945
-0.00013986
-4.11834e-11
0.022708
-5.04359e-05
-4.5472e-11
0.0226168
3.59703e-05
-4.28401e-11
0.0225217
0.000119014
-3.31091e-11
0.0224227
0.000198708
-1.75533e-11
0.0223205
0.000275123
3.62257e-12
0.0222149
0.000348239
2.98709e-11
0.0221066
0.000418145
6.27518e-11
0.0219951
0.000484766
9.95882e-11
0.0218816
0.000548187
1.41911e-10
0.0217653
0.000608375
1.85796e-10
0.0216479
0.000665337
2.33608e-10
0.0215282
0.000719193
2.80436e-10
0.021408
0.00076979
3.29243e-10
0.0212863
0.000817487
3.74938e-10
0.0211646
0.000861913
4.20147e-10
0.0210423
0.000903693
4.60861e-10
0.0209198
0.000942244
4.98469e-10
0.0207972
0.000978372
5.31291e-10
0.0206742
0.00101137
5.58879e-10
0.0205513
0.00104206
5.82064e-10
0.0204275
0.00106976
5.9879e-10
0.0203038
0.00109515
6.11522e-10
0.0201793
0.00111767
6.17557e-10
0.0200549
0.00113779
6.19682e-10
0.0199302
0.00115507
6.15398e-10
0.0198061
0.00116974
6.0698e-10
0.0196824
0.00118143
5.92216e-10
0.0195603
0.00119011
5.72935e-10
0.0194395
0.00119536
5.46506e-10
0.0193217
0.00119677
5.14843e-10
0.0192066
0.00119388
4.7402e-10
0.0190967
0.00118555
4.26647e-10
0.018992
0.00117099
3.59581e-10
0.0188948
0.00114998
3.17316e-10
0.0188036
0.00112537
2.561e-10
0.0010919
1.4579e-10
0.0224926
0.0160977
-5.53066e-10
0.0223665
0.0153191
-7.702e-10
0.0222043
0.0144419
-1.11208e-09
0.0220318
0.0134806
-1.67567e-09
0.0218796
0.0124465
-2.36394e-09
0.0217881
0.0113187
-4.09695e-09
0.0216439
0.0102847
-4.37567e-09
0.0216874
0.00909454
-4.81633e-09
0.0219691
0.00771815
-5.56575e-09
0.0223641
0.00626965
-7.00303e-09
0.0227096
0.00498639
-4.83781e-09
0.0229798
0.00386379
-2.15361e-09
0.023269
0.00274113
-1.72151e-09
0.0233335
0.00186524
-8.13485e-10
0.0230722
0.00131531
6.29144e-10
0.0228163
0.000756773
2.89841e-09
0.0225429
0.000186048
2.6006e-09
0.0222763
-0.000401565
1.9955e-09
0.0220273
-0.00100186
1.43224e-09
0.0217951
-0.00159241
1.04001e-09
0.0215812
-0.0021542
7.66967e-10
0.0213847
-0.00267407
5.50261e-10
0.0212085
-0.00314261
3.54539e-10
0.0210541
-0.0035551
1.68025e-10
0.0209274
-0.00390819
-1.57492e-11
0.020833
-0.00420191
-2.035e-10
0.0207691
-0.00443535
-3.86102e-10
0.0207469
-0.00461261
-5.49702e-10
0.0207463
-0.00473732
-7.58822e-10
0.0207463
-0.00480768
-7.94008e-10
0.0208518
-0.00485831
-8.81054e-10
0.021032
-0.00483958
-1.00307e-09
0.0211836
-0.00474045
-1.09551e-09
0.0213843
-0.00465551
-1.29048e-09
0.0216403
-0.00452563
-1.29015e-09
0.0218987
-0.00432577
-1.21611e-09
0.0221471
-0.00411113
-1.05306e-09
0.0223732
-0.00388915
-8.62875e-10
0.0225701
-0.0036705
-6.80833e-10
0.02274
-0.00346126
-5.24589e-10
0.0228863
-0.00326297
-3.95761e-10
0.0230118
-0.00307415
-2.90053e-10
0.0231239
-0.00289361
-2.07332e-10
0.0232226
-0.00271862
-1.35189e-10
0.0233101
-0.00254808
-7.92021e-11
0.023388
-0.00238246
-2.25767e-11
0.023455
-0.0022195
1.66462e-11
0.0235113
-0.0020623
5.26583e-11
0.0235598
-0.00190652
5.91995e-11
0.0235984
-0.00175017
7.08164e-11
0.0236256
-0.00159556
8.72491e-11
0.0236391
-0.00144611
1.06535e-10
0.0236431
-0.00130801
1.34005e-10
0.0236363
-0.00117457
1.28612e-10
0.0236198
-0.00104698
1.24317e-10
0.0235945
-0.000923772
1.20043e-10
0.0235607
-0.000804761
1.10912e-10
0.0235192
-0.000689382
9.69446e-11
0.02347
-0.000577518
7.8789e-11
0.0234138
-0.000468656
5.92539e-11
0.0233502
-0.000362825
3.92493e-11
0.0232799
-0.000259669
2.11296e-11
0.0232025
-0.000159235
5.21158e-12
0.023119
-6.13058e-05
-6.82177e-12
0.0230299
3.35326e-05
-1.37148e-11
0.0229361
0.000124876
-1.48822e-11
0.022838
0.000212711
-1.07363e-11
0.0227357
0.000296947
-1.79226e-12
0.0226297
0.000377734
1.33795e-11
0.0225198
0.00045494
3.34653e-11
0.0224073
0.000528748
6.05943e-11
0.0222913
0.000598984
9.17644e-11
0.0221737
0.000665803
1.29269e-10
0.0220533
0.000729129
1.68722e-10
0.0219321
0.000788996
2.12982e-10
0.0218088
0.00084553
2.56873e-10
0.0216849
0.000898552
3.03368e-10
0.0215596
0.000948466
3.47451e-10
0.0214341
0.000994843
3.91342e-10
0.021308
0.00103836
4.31487e-10
0.0211817
0.00107838
4.68485e-10
0.0210555
0.00111574
5.01317e-10
0.0209291
0.00114972
5.28599e-10
0.0208033
0.00118114
5.51854e-10
0.0206769
0.00120932
5.68213e-10
0.0205512
0.00123488
5.80697e-10
0.020425
0.00125734
5.8597e-10
0.0202995
0.00127697
5.8717e-10
0.020174
0.00129351
5.81363e-10
0.0200495
0.00130683
5.70817e-10
0.0199259
0.00131682
5.5319e-10
0.0198043
0.0013229
5.298e-10
0.0196847
0.00132493
4.9813e-10
0.0195692
0.00132183
4.58869e-10
0.0194576
0.00131315
4.09584e-10
0.0193532
0.00129662
3.38821e-10
0.0192555
0.00127367
2.98418e-10
0.0191644
0.00124479
2.21164e-10
0.0190851
0.0012059
1.3576e-10
0.00115514
-1.96769e-11
0.022869
0.0162408
-8.09314e-10
0.0227356
0.0154341
-1.15146e-09
0.0226016
0.0145451
-1.78906e-09
0.0224796
0.0135529
-2.68018e-09
0.0224327
0.0124222
-4.07203e-09
0.0222997
0.011364
-4.47166e-09
0.0223735
0.010108
-5.52397e-09
0.0227157
0.00863518
-6.6326e-09
0.0231665
0.00713055
-7.07468e-09
0.0235337
0.00580368
-4.97863e-09
0.0238343
0.00463273
-2.06758e-09
0.024168
0.00349346
-1.56578e-09
0.0242337
0.00265499
-5.11106e-10
0.0239642
0.00214448
1.06974e-09
0.0237296
0.00158661
2.27167e-09
0.0234931
0.00102507
2.11574e-09
0.0232575
0.000443312
1.7243e-09
0.0230307
-0.000159819
1.36221e-09
0.0228132
-0.000775033
1.06021e-09
0.0226023
-0.00137197
8.33358e-10
0.0223951
-0.00193879
6.5527e-10
0.0221941
-0.00246344
5.11391e-10
0.022
-0.0029418
3.76793e-10
0.0218178
-0.00336758
2.49556e-10
0.0216516
-0.00374182
1.16228e-10
0.021507
-0.00406102
-2.63846e-11
0.0213902
-0.0043284
-1.7845e-10
0.0213072
-0.00454234
-3.37369e-10
0.0212583
-0.00470518
-4.96313e-10
0.0212494
-0.00481773
-6.04384e-10
0.0212495
-0.0048822
-7.94503e-10
0.0212893
-0.00490258
-8.34072e-10
0.0214172
-0.00489371
-9.00402e-10
0.0215795
-0.00484548
-1.02144e-09
0.0217471
-0.00472443
-1.14758e-09
0.0219727
-0.00458526
-1.246e-09
0.022228
-0.00439873
-1.17004e-09
0.0224804
-0.00417217
-1.04631e-09
0.0227155
-0.00393337
-8.9338e-10
0.022925
-0.00369475
-7.25809e-10
0.0231038
-0.00346281
-5.59779e-10
0.023257
-0.00324341
-4.12446e-10
0.0233859
-0.00303597
-2.93343e-10
0.0234971
-0.00283927
-2.02162e-10
0.0235932
-0.00265134
-1.42615e-10
0.0236757
-0.00247006
-7.6463e-11
0.0237474
-0.00229526
-4.56621e-11
0.0238066
-0.00212469
-1.01763e-11
0.0238582
-0.00196072
3.48491e-11
0.0238995
-0.00179404
4.10453e-11
0.0239313
-0.00162996
5.53933e-11
0.023952
-0.00146882
8.13633e-11
0.0239579
-0.00131519
1.27306e-10
0.0239542
-0.00117163
1.36382e-10
0.0239392
-0.00103256
1.40781e-10
0.0239146
-0.000899133
1.45504e-10
0.0238807
-0.000770926
1.45653e-10
0.0238386
-0.000647112
1.39903e-10
0.0237881
-0.000527505
1.27908e-10
0.0237304
-0.000411449
1.12058e-10
0.023665
-0.000298864
9.35786e-11
0.0235926
-0.000189252
7.48093e-11
0.0235131
-8.25012e-05
5.75235e-11
0.0234272
2.12473e-05
4.3349e-11
0.0233357
0.000121346
3.29011e-11
0.0232389
0.000217719
2.60414e-11
0.0231377
0.000310398
2.37776e-11
0.0230322
0.000399236
2.56076e-11
0.0229231
0.000484417
3.38203e-11
0.0228107
0.000565717
4.7034e-11
0.0226954
0.000643381
6.74567e-11
0.0225772
0.000717163
9.23749e-11
0.0224569
0.000787309
1.24011e-10
0.0223338
0.000853644
1.58328e-10
0.0222096
0.000916321
1.98002e-10
0.0220828
0.000975353
2.37967e-10
0.0219558
0.00103068
2.81185e-10
0.021827
0.00108262
3.22482e-10
0.0216983
0.0011308
3.64226e-10
0.0215688
0.00117589
4.02647e-10
0.0214395
0.0012172
4.38344e-10
0.0213103
0.00125565
4.70281e-10
0.021181
0.00129041
4.96675e-10
0.0210526
0.00132238
5.19401e-10
0.0209238
0.00135081
5.34793e-10
0.020796
0.0013763
5.46532e-10
0.0206679
0.00139837
5.50244e-10
0.0205413
0.00141716
5.4988e-10
0.0204147
0.00143245
5.41275e-10
0.0202903
0.00144383
5.27625e-10
0.0201672
0.0014513
5.05108e-10
0.0200475
0.00145371
4.75995e-10
0.0199311
0.00145116
4.35411e-10
0.0198205
0.00144156
3.87076e-10
0.0197166
0.00142406
3.11042e-10
0.0196211
0.00139841
2.69407e-10
0.0195322
0.00136677
1.9752e-10
0.0194552
0.0013236
7.92733e-11
0.0193974
0.0012615
-6.49393e-11
0.00119418
-2.01151e-10
0.0232408
0.0164188
-1.1412e-09
0.0231041
0.015533
-1.85827e-09
0.0230359
0.0145643
-2.82728e-09
0.0230188
0.0134891
-4.63587e-09
0.0229184
0.0124347
-4.93847e-09
0.0230472
0.0111294
-5.49841e-09
0.0234735
0.00956138
-6.3459e-09
0.0239259
0.00802364
-7.75647e-09
0.024297
0.00665958
-5.14231e-09
0.0246314
0.00541739
-1.81004e-09
0.0249682
0.00425951
-1.20863e-09
0.0249786
0.00346683
1.36448e-10
0.0247101
0.00295187
2.40875e-09
0.0245049
0.0023825
2.05916e-09
0.0242964
0.00182522
1.78023e-09
0.0240967
0.00124673
1.4384e-09
0.0239061
0.00064452
1.06219e-09
0.0237179
3.33738e-05
8.27213e-10
0.0235284
-0.000583336
6.61533e-10
0.0233337
-0.00117433
5.66836e-10
0.0231343
-0.00173487
5.00941e-10
0.0229327
-0.00225576
4.43178e-10
0.022732
-0.00273502
3.8091e-10
0.022535
-0.00316693
3.06808e-10
0.022348
-0.00355295
2.21238e-10
0.0221745
-0.00389015
1.12023e-10
0.022021
-0.00417998
-9.24073e-12
0.0218921
-0.00442269
-1.4586e-10
0.0217919
-0.00461815
-2.78443e-10
0.0217264
-0.00476864
-4.15756e-10
0.0216987
-0.0048729
-5.51562e-10
0.021708
-0.00493222
-6.5004e-10
0.0217332
-0.00494185
-8.06778e-10
0.0217647
-0.00489909
-8.20247e-10
0.0218877
-0.0048715
-8.68523e-10
0.0220821
-0.00480544
-9.61637e-10
0.0222799
-0.00462667
-1.09022e-09
0.0225102
-0.00443411
-1.08978e-09
0.022758
-0.00421087
-1.0162e-09
0.0229953
-0.00395912
-8.88568e-10
0.0232123
-0.0037022
-7.23499e-10
0.0234005
-0.0034504
-5.50197e-10
0.0235589
-0.00320929
-3.94251e-10
0.0236914
-0.0029823
-2.72204e-10
0.023802
-0.00276938
-1.84549e-10
0.0238966
-0.00256795
-1.29067e-10
0.0239754
-0.00237632
-7.58244e-11
0.0240425
-0.00219229
-3.88052e-11
0.0240957
-0.00201375
1.96746e-11
0.0241432
-0.00184135
2.49589e-11
0.0241801
-0.00166719
3.96635e-11
0.0242057
-0.00149507
7.38642e-11
0.0242169
-0.00132723
1.22683e-10
0.0242139
-0.00116882
1.76388e-10
0.0241991
-0.00101821
1.78628e-10
0.0241742
-0.000874284
1.86432e-10
0.0241397
-0.000736264
1.92055e-10
0.0240971
-0.000603346
1.93405e-10
0.0240461
-0.000475313
1.8773e-10
0.023988
-0.000351516
1.7589e-10
0.023922
-0.00023169
1.5917e-10
0.023849
-0.000115165
1.40371e-10
0.0237686
-2.16657e-06
1.21008e-10
0.0236819
0.000107147
1.04577e-10
0.0235895
0.000212538
8.94012e-11
0.0234913
0.000313875
7.614e-11
0.0233888
0.00041137
6.7101e-11
0.023281
0.00050471
6.15009e-11
0.0231701
0.000594164
6.26444e-11
0.0230546
0.000679432
6.84169e-11
0.0229368
0.000760761
8.19728e-11
0.0228153
0.000837966
1.00059e-10
0.0226921
0.00091119
1.25327e-10
0.0225661
0.000980427
1.53865e-10
0.0224387
0.00104565
1.87988e-10
0.0223095
0.00110708
2.2336e-10
0.0221795
0.00116446
2.62092e-10
0.0220484
0.0012183
2.99885e-10
0.0219173
0.00126807
3.38276e-10
0.0217858
0.00131453
3.74122e-10
0.0216547
0.00135695
4.0741e-10
0.0215242
0.00139624
4.37508e-10
0.0213939
0.00143157
4.62014e-10
0.0212652
0.00146378
4.8324e-10
0.0211365
0.00149216
4.96784e-10
0.0210098
0.0015172
5.06688e-10
0.0208834
0.00153845
5.08046e-10
0.0207587
0.00155583
5.04746e-10
0.020635
0.00156919
4.92377e-10
0.0205138
0.00157775
4.73785e-10
0.0203946
0.00158144
4.44622e-10
0.0202798
0.00157877
4.06341e-10
0.0201697
0.00156924
3.54697e-10
0.0200674
0.00155
2.7786e-10
0.0199738
0.00152245
2.36999e-10
0.0198863
0.00148834
1.57032e-10
0.0198134
0.00143988
4.27755e-11
0.0197599
0.00137294
-1.19238e-10
0.0197239
0.0012879
-3.23116e-10
0.00120567
-3.56327e-10
0.0237335
0.0166706
-1.83739e-09
0.0235854
0.0156276
-3.07241e-09
0.0234946
0.0145636
-4.77648e-09
0.0234122
0.0134843
-5.18722e-09
0.0236167
0.0121163
-6.08909e-09
0.0241366
0.0104825
-7.64739e-09
0.0246206
0.00894039
-7.10248e-09
0.0250137
0.00753949
-4.96666e-09
0.0254324
0.0062112
-1.46756e-09
0.0257743
0.00504587
-8.77378e-10
0.0257205
0.00430414
3.65082e-10
0.0254619
0.00376299
2.57065e-09
0.0252714
0.00318391
2.73509e-09
0.025072
0.00261487
1.98362e-09
0.0248885
0.00202924
1.46421e-09
0.0247229
0.00142392
1.06564e-09
0.0245636
0.000807023
7.45048e-10
0.0244054
0.000192913
5.31617e-10
0.0242351
-0.000411267
4.49293e-10
0.0240565
-0.00099114
4.26852e-10
0.023868
-0.00153959
4.23297e-10
0.0236711
-0.00205168
4.15152e-10
0.0234702
-0.0025257
3.98676e-10
0.0232656
-0.00295808
3.57963e-10
0.0230654
-0.00334915
3.05323e-10
0.0228691
-0.00369728
2.18789e-10
0.0226867
-0.00400204
1.23076e-10
0.0225189
-0.00426539
3.98098e-12
0.0223742
-0.00448402
-1.1623e-10
0.0222554
-0.00466323
-2.44105e-10
0.0221665
-0.00479665
-3.6037e-10
0.0221131
-0.00489331
-4.60407e-10
0.0221007
-0.00494492
-5.6022e-10
0.0221346
-0.00495153
-6.973e-10
0.0221481
-0.00490327
-7.00849e-10
0.0221531
-0.00482966
-7.24708e-10
0.022304
-0.00479794
-7.9085e-10
0.0225122
-0.00466714
-9.19745e-10
0.0227307
-0.00445543
-9.36529e-10
0.0229604
-0.00421431
-9.17085e-10
0.023197
-0.00396435
-8.19581e-10
0.023418
-0.00369399
-6.77115e-10
0.0236138
-0.00342341
-5.13809e-10
0.0237805
-0.0031627
-3.59152e-10
0.0239209
-0.00291754
-2.36727e-10
0.0240348
-0.00268755
-1.4849e-10
0.024129
-0.00247166
-8.25234e-11
0.0242037
-0.00226822
-1.45333e-11
0.024264
-0.00207431
2.01635e-11
0.0243125
-0.00188888
7.31229e-11
0.0243512
-0.00170561
8.20797e-11
0.0243808
-0.00152417
1.01522e-10
0.0243987
-0.00134494
1.34146e-10
0.0244026
-0.00117117
1.89605e-10
0.0243951
-0.00100871
2.2097e-10
0.0243755
-0.000852446
2.33427e-10
0.0243452
-0.000703319
2.42312e-10
0.0243054
-0.000560192
2.5031e-10
0.0242567
-0.000422708
2.51947e-10
0.0241991
-0.00029025
2.45532e-10
0.0241329
-0.000162372
2.31818e-10
0.0240585
-3.8644e-05
2.14649e-10
0.0239765
8.08252e-05
1.95454e-10
0.0238877
0.000196018
1.73115e-10
0.0237922
0.00030689
1.52237e-10
0.0236913
0.00041339
1.32887e-10
0.023585
0.000515709
1.16455e-10
0.0234748
0.000613562
1.03635e-10
0.0233603
0.000707267
9.65874e-11
0.0232428
0.000796382
9.49047e-11
0.0231221
0.000881394
1.00488e-10
0.0229989
0.000961781
1.11414e-10
0.0228739
0.00103812
1.29577e-10
0.0227463
0.00110993
1.5158e-10
0.0226181
0.00117769
1.79747e-10
0.0224876
0.00124115
2.09518e-10
0.0223574
0.00130049
2.43325e-10
0.0222254
0.00135584
2.76707e-10
0.0220939
0.00140698
3.11017e-10
0.0219619
0.00145443
3.43623e-10
0.0218302
0.00149764
3.73727e-10
0.0216991
0.00153733
4.01307e-10
0.0215686
0.00157283
4.23515e-10
0.0214395
0.00160476
4.42336e-10
0.0213113
0.00163254
4.53787e-10
0.0211852
0.00165646
4.60877e-10
0.02106
0.00167609
4.59101e-10
0.0209379
0.00169117
4.51648e-10
0.0208176
0.00170136
4.33759e-10
0.0207009
0.00170573
4.07904e-10
0.0205887
0.0017037
3.67906e-10
0.0204818
0.00169347
3.1783e-10
0.020384
0.00167309
2.3484e-10
0.0202953
0.00164337
1.99496e-10
0.0202136
0.00160621
1.12669e-10
0.0201463
0.0015549
-1.65235e-11
0.020104
0.00147839
-1.71927e-10
0.0200713
0.00139343
-4.31013e-10
0.02005
0.00129693
-4.73147e-10
0.00116947
-5.77951e-10
0.0242999
0.0169616
-2.88825e-09
0.0240784
0.0157621
-5.03538e-09
0.0239684
0.0145878
-5.59816e-09
0.0241921
0.013136
-6.7071e-09
0.0247292
0.0114297
-8.53833e-09
0.0252275
0.00984026
-7.4419e-09
0.0256472
0.0084209
-4.67276e-09
0.0261452
0.00700993
-1.31411e-09
0.0264881
0.00584599
-6.34208e-10
0.0263698
0.00516307
7.24097e-10
0.0261352
0.00457865
2.90188e-09
0.0259598
0.00398073
2.71388e-09
0.0257792
0.00339976
2.0805e-09
0.0256191
0.00280104
1.42463e-09
0.0254781
0.00218618
9.95832e-10
0.0253459
0.00156327
7.46845e-10
0.0252107
0.000943773
5.65205e-10
0.0250659
0.000336785
4.64809e-10
0.024905
-0.000251133
4.36299e-10
0.0247306
-0.000815386
4.41402e-10
0.024544
-0.00134826
4.54464e-10
0.0243478
-0.00184864
4.5872e-10
0.0241446
-0.00231323
4.5493e-10
0.0239362
-0.00274258
4.26733e-10
0.0237282
-0.00313293
3.86134e-10
0.0235209
-0.0034872
3.12171e-10
0.0233227
-0.00380003
2.31669e-10
0.0231332
-0.00407767
1.28898e-10
0.0229603
-0.00431237
3.07745e-11
0.0228048
-0.00451315
-7.02651e-11
0.0226725
-0.00467043
-1.67461e-10
0.0225641
-0.00479313
-2.58865e-10
0.0224834
-0.00487326
-3.47559e-10
0.0224406
-0.00491995
-4.40978e-10
0.0224443
-0.00492141
-5.7352e-10
0.0224821
-0.00488063
-5.41718e-10
0.0224613
-0.00479306
-5.95296e-10
0.0224923
-0.00471634
-6.31805e-10
0.0226617
-0.004645
-6.95426e-10
0.0228847
-0.0044631
-7.97776e-10
0.0231096
-0.00421464
-7.91392e-10
0.0233424
-0.00395222
-7.49427e-10
0.0235734
-0.00367566
-6.28992e-10
0.0237868
-0.00339325
-4.73549e-10
0.0239724
-0.00311486
-3.18518e-10
0.0241278
-0.00284921
-1.78808e-10
0.0242523
-0.00259989
-6.23847e-11
0.0243523
-0.00236756
2.07812e-11
0.0244286
-0.00215032
9.46028e-11
0.0244868
-0.00194585
1.25597e-10
0.0245347
-0.00175181
1.66438e-10
0.0245692
-0.00155748
1.7364e-10
0.0245937
-0.00136832
1.894e-10
0.0246073
-0.00118273
2.1711e-10
0.0246063
-0.00100471
2.65003e-10
0.0245944
-0.000836157
2.8173e-10
0.0245695
-0.000674363
2.94794e-10
0.0245346
-0.000519628
3.08036e-10
0.0244885
-0.000371307
3.15562e-10
0.024433
-0.000228886
3.15017e-10
0.0243673
-9.18046e-05
3.0629e-10
0.0242926
4.00866e-05
2.91158e-10
0.0242096
0.000166725
2.69165e-10
0.0241186
0.000288277
2.44202e-10
0.0240211
0.00040508
2.18317e-10
0.0239165
0.000517049
1.91676e-10
0.0238072
0.000624417
1.68025e-10
0.0236922
0.000727043
1.46632e-10
0.0235739
0.000824976
1.3193e-10
0.023451
0.000918267
1.21618e-10
0.0233258
0.00100668
1.19688e-10
0.0231971
0.00109067
1.2269e-10
0.0230669
0.0011696
1.33575e-10
0.0229344
0.0012444
1.48956e-10
0.0228008
0.00131402
1.70225e-10
0.0226661
0.0013798
1.9485e-10
0.0225306
0.00144039
2.22456e-10
0.0223949
0.00149732
2.51778e-10
0.0222589
0.00154917
2.80874e-10
0.0221233
0.00159745
3.10079e-10
0.021988
0.00164078
3.35944e-10
0.021854
0.0016805
3.60669e-10
0.0217208
0.00171547
3.79262e-10
0.02159
0.00174649
3.9535e-10
0.0214605
0.00177293
4.03369e-10
0.0213341
0.00179475
4.06605e-10
0.0212103
0.00181174
4.00533e-10
0.0210899
0.00182309
3.86642e-10
0.0209742
0.00182841
3.61165e-10
0.0208635
0.00182642
3.23368e-10
0.0207601
0.00181549
2.70581e-10
0.0206662
0.00179344
1.88906e-10
0.0205821
0.0017616
1.51346e-10
0.0205068
0.00172103
7.13914e-11
0.0204462
0.0016646
-8.09236e-11
0.0204107
0.00158451
-2.78878e-10
0.0203748
0.00150313
-4.04612e-10
0.0203557
0.00139746
-5.23163e-10
0.0203826
0.00125304
-7.16241e-10
0.00105376
-1.00231e-09
0.0248281
0.0173413
-5.20807e-09
0.0245662
0.0159331
-5.87631e-09
0.0247703
0.0142598
-7.21347e-09
0.0253312
0.0124048
-9.37255e-09
0.025863
0.0107555
-8.06474e-09
0.026304
0.00930704
-4.69094e-09
0.0268768
0.00781994
-1.18936e-09
0.0271989
0.00667003
-4.91255e-10
0.0270073
0.00604628
8.68591e-10
0.0267948
0.00541229
2.99386e-09
0.0266159
0.0047961
2.75264e-09
0.0264417
0.00418781
2.05382e-09
0.026297
0.00356975
1.37345e-09
0.0261755
0.00293855
8.65805e-10
0.0260695
0.00230605
6.2846e-10
0.0259597
0.00167919
5.2546e-10
0.0258413
0.00106643
4.84666e-10
0.0257053
0.000473154
4.76364e-10
0.0255534
-9.60352e-05
4.9669e-10
0.0253847
-0.000642664
5.18384e-10
0.0252041
-0.00115907
5.36093e-10
0.0250106
-0.00164567
5.39459e-10
0.0248096
-0.00210022
5.3495e-10
0.0245994
-0.00252294
5.08679e-10
0.0243862
-0.00291103
4.69369e-10
0.0241688
-0.00326586
4.05469e-10
0.0239542
-0.00358403
3.33471e-10
0.0237432
-0.00386864
2.47124e-10
0.0235414
-0.00411524
1.64619e-10
0.023353
-0.00432948
8.3935e-11
0.0231803
-0.00450535
4.64862e-12
0.0230324
-0.00465051
-7.97012e-11
0.0229108
-0.00475925
-1.62195e-10
0.0228195
-0.00483458
-2.34468e-10
0.022762
-0.0048728
-3.17279e-10
0.022743
-0.00487487
-4.31581e-10
0.022769
-0.00483091
-3.97704e-10
0.0227837
-0.00474764
-4.68717e-10
0.0227715
-0.00465068
-4.92381e-10
0.0228652
-0.00457675
-5.43525e-10
0.0230556
-0.00442629
-6.20595e-10
0.0232833
-0.0042038
-7.34632e-10
0.0235168
-0.00393389
-7.00313e-10
0.0237626
-0.00365888
-5.98369e-10
0.0239949
-0.00336255
-4.49227e-10
0.0242016
-0.00306459
-2.70799e-10
0.024376
-0.00277823
-9.99566e-11
0.0245156
-0.00250762
3.4426e-11
0.0246226
-0.00225611
1.35925e-10
0.0247016
-0.00202239
2.06116e-10
0.0247576
-0.00180528
2.38192e-10
0.0248055
-0.00160174
2.77149e-10
0.0248377
-0.00139662
2.81729e-10
0.0248577
-0.00119892
2.92906e-10
0.0248639
-0.00100627
3.13238e-10
0.0248577
-0.000824094
3.49744e-10
0.0248387
-0.000648883
3.60142e-10
0.0248082
-0.000481826
3.69473e-10
0.0247654
-0.000321696
3.76346e-10
0.024712
-0.000167966
3.78909e-10
0.024647
-2.05995e-05
3.74041e-10
0.0245727
0.000120316
3.60544e-10
0.0244883
0.000255025
3.38318e-10
0.0243952
0.000383732
3.10641e-10
0.0242941
0.000506988
2.79478e-10
0.0241854
0.000624774
2.46695e-10
0.0240713
0.000737532
2.1574e-10
0.0239507
0.000845021
1.86672e-10
0.0238271
0.000947536
1.64156e-10
0.0236978
0.0010449
1.45635e-10
0.0235671
0.00113715
1.3626e-10
0.023432
0.00122445
1.31061e-10
0.023296
0.00130642
1.35198e-10
0.0231572
0.00138379
1.42827e-10
0.0230179
0.00145562
1.58181e-10
0.0228772
0.00152326
1.75969e-10
0.0227362
0.00158522
1.98495e-10
0.0225948
0.00164336
2.22183e-10
0.0224532
0.00169572
2.46591e-10
0.0223126
0.00174449
2.71541e-10
0.0221715
0.00178753
2.92673e-10
0.0220333
0.00182681
3.14127e-10
0.0218951
0.00186062
3.28137e-10
0.0217609
0.00189002
3.40663e-10
0.0216282
0.0019141
3.4411e-10
0.0215001
0.00193279
3.42072e-10
0.0213759
0.00194552
3.29624e-10
0.021257
0.00195135
3.06774e-10
0.0211449
0.00194933
2.69924e-10
0.021041
0.00193733
2.15001e-10
0.0209491
0.00191283
1.39298e-10
0.020867
0.00187871
8.72377e-11
0.0207952
0.00183526
1.67849e-11
0.0207439
0.0017708
-1.24248e-10
0.0207046
0.00169383
-3.81598e-10
0.020671
0.00160705
-4.24019e-10
0.0206718
0.0014898
-5.30506e-10
0.0207277
0.00132495
-7.27675e-10
0.0208325
0.00112156
-1.07311e-09
0.000850057
-1.70461e-09
0.025388
0.0175555
-5.79653e-09
0.025608
0.0155779
-8.20508e-09
0.0261449
0.013515
-1.15504e-08
0.0266736
0.0117302
-8.71435e-09
0.0271244
0.010202
-4.7991e-09
0.0277356
0.00863735
-3.03764e-09
0.0279938
0.00754325
-1.90739e-10
0.0277128
0.00696179
1.74458e-09
0.0275223
0.00628611
3.07678e-09
0.0273343
0.00564342
2.6896e-09
0.0271529
0.00500616
1.84898e-09
0.0269989
0.00435681
1.16885e-09
0.0268787
0.00370202
7.06543e-10
0.0267747
0.00304951
4.50844e-10
0.0266769
0.00240815
3.88715e-10
0.0265732
0.00178551
4.18757e-10
0.026458
0.00118459
4.76842e-10
0.0263264
0.000608216
5.34639e-10
0.0261776
5.77908e-05
5.96346e-10
0.026012
-0.000470181
6.21097e-10
0.0258322
-0.000970471
6.34249e-10
0.0256415
-0.00144344
6.35844e-10
0.0254406
-0.00188766
6.2235e-10
0.025232
-0.00230236
5.95015e-10
0.0250168
-0.00268654
5.50145e-10
0.0247976
-0.00303909
4.93893e-10
0.0245773
-0.00336021
4.27175e-10
0.0243591
-0.00364832
3.64822e-10
0.0241474
-0.00390516
2.94128e-10
0.0239457
-0.00412864
2.32551e-10
0.0237586
-0.00432209
1.5934e-10
0.0235896
-0.00448235
1.09765e-10
0.0234365
-0.00461228
3.16938e-11
0.023307
-0.004709
-3.42755e-11
0.0232026
-0.00477602
-1.08458e-10
0.0231258
-0.00480748
-1.87628e-10
0.0230897
-0.0048076
-2.83607e-10
0.023092
-0.00476618
-3.61881e-10
0.0231058
-0.00468087
-3.17889e-10
0.0231017
-0.00459068
-4.12344e-10
0.0231279
-0.00447187
-4.41665e-10
0.0232738
-0.00436837
-4.95843e-10
0.0234958
-0.00417687
-6.31586e-10
0.023727
-0.00391104
-6.2169e-10
0.0239663
-0.00361922
-5.58437e-10
0.0242077
-0.00332088
-4.21005e-10
0.02443
-0.00300954
-2.56504e-10
0.0246188
-0.00270204
-8.47356e-11
0.0247702
-0.00240869
7.5131e-11
0.0248854
-0.00213577
2.07797e-10
0.0249681
-0.00188347
2.83274e-10
0.0250249
-0.00165109
3.68855e-10
0.0250707
-0.00143546
3.76279e-10
0.025098
-0.00121844
3.8827e-10
0.0251117
-0.00101162
4.06756e-10
0.0251099
-0.000812552
4.39897e-10
0.0250978
-0.000626794
4.44977e-10
0.0250715
-0.000446027
4.3976e-10
0.0250327
-0.000273688
4.36346e-10
0.0249818
-0.000108382
4.35837e-10
0.0249195
4.97972e-05
4.32108e-10
0.0248466
0.000200549
4.18305e-10
0.0247628
0.000344102
3.95223e-10
0.0246698
0.000480815
3.65281e-10
0.0245673
0.000611168
3.29675e-10
0.0244581
0.00073535
2.92642e-10
0.0243415
0.000853843
2.54696e-10
0.0242201
0.000966471
2.2006e-10
0.0240926
0.00107384
1.88939e-10
0.0239613
0.00117529
1.64242e-10
0.0238255
0.00127174
1.46317e-10
0.0236863
0.00136207
1.34596e-10
0.0235449
0.00144756
1.31345e-10
0.0234003
0.00152693
1.31693e-10
0.0232558
0.00160149
1.41205e-10
0.0231086
0.00167027
1.51461e-10
0.0229628
0.00173402
1.69424e-10
0.0228154
0.00179257
1.86435e-10
0.0226694
0.00184578
2.06761e-10
0.0225235
0.00189416
2.26196e-10
0.0223784
0.0019371
2.43287e-10
0.0222355
0.001975
2.59512e-10
0.022094
0.00200749
2.69505e-10
0.0219559
0.00203424
2.75705e-10
0.0218216
0.00205514
2.74177e-10
0.0216921
0.00206923
2.63295e-10
0.021569
0.00207584
2.42105e-10
0.0214537
0.00207368
2.05131e-10
0.0213491
0.00206017
1.52684e-10
0.0212571
0.00203332
6.54756e-11
0.0211784
0.00199536
3.68744e-11
0.0211087
0.00194888
-9.19436e-11
0.0210633
0.00187895
-1.69306e-10
0.0210192
0.00180511
-4.48847e-10
0.020992
0.00170979
-5.00224e-10
0.0210077
0.00157733
-6.17141e-10
0.0210844
0.00139135
-8.74022e-10
0.0212246
0.0011521
-1.3556e-09
0.0214202
0.000885237
-1.63496e-09
0.000584905
-1.95061e-09
0.0268061
0.0172056
-9.29891e-09
0.0271932
0.0149919
-1.0264e-08
0.0276323
0.0129157
-9.0481e-09
0.0281302
0.0111438
-4.22795e-09
0.0287836
0.00947964
-3.11712e-09
0.028905
0.00848171
-8.98209e-10
0.0285842
0.00789689
2.38938e-09
0.0283926
0.00719713
2.59327e-09
0.0281795
0.0065343
2.35474e-09
0.0279785
0.0058623
1.64714e-09
0.0278122
0.00518002
9.27869e-10
0.0276752
0.00449269
4.27339e-10
0.0275625
0.00381114
2.04568e-10
0.0274601
0.00314797
1.71235e-10
0.0273583
0.00250742
2.53796e-10
0.0272492
0.00189421
3.79781e-10
0.0271275
0.00130735
4.98998e-10
0.0269911
0.000747352
5.93145e-10
0.0268402
0.000213284
6.56496e-10
0.0266755
-0.000297169
7.00345e-10
0.0264991
-0.000783223
7.16809e-10
0.026313
-0.0012433
7.18928e-10
0.0261157
-0.00167713
7.02914e-10
0.0259107
-0.00208376
6.78686e-10
0.0256966
-0.00246281
6.34866e-10
0.0254784
-0.00281228
5.90032e-10
0.0252559
-0.00313355
5.3117e-10
0.0250346
-0.00342331
4.81329e-10
0.0248155
-0.00368552
4.20437e-10
0.0246038
-0.00391537
3.70418e-10
0.0244005
-0.00411883
3.10264e-10
0.0242085
-0.0042896
2.54298e-10
0.0240306
-0.00443518
1.95036e-10
0.0238697
-0.00454805
1.39426e-10
0.0237258
-0.00463658
7.362e-11
0.0236056
-0.00469153
1.20695e-11
0.0235102
-0.00472091
-6.55596e-11
0.0234482
-0.00471518
-1.31707e-10
0.0234304
-0.00467661
-2.18956e-10
0.0234225
-0.00459573
-2.12399e-10
0.0234426
-0.00450453
-2.41305e-10
0.0234373
-0.00437972
-4.08967e-10
0.0235086
-0.00426451
-4.35457e-10
0.0236785
-0.00409743
-4.84335e-10
0.0239064
-0.00386532
-5.66809e-10
0.0241415
-0.00357336
-5.48299e-10
0.0243824
-0.00326645
-4.94376e-10
0.0246132
-0.00294431
-3.48435e-10
0.024816
-0.00261868
-1.49755e-10
0.0249827
-0.0023034
4.99905e-11
0.0251073
-0.00200606
2.17712e-10
0.0251946
-0.00173213
3.45619e-10
0.0252501
-0.00148159
4.57109e-10
0.0252956
-0.00125328
4.6463e-10
0.0253197
-0.00102467
4.76401e-10
0.0253273
-0.000807476
5.01837e-10
0.0253167
-0.000601738
5.57261e-10
0.0252968
-0.000411884
5.2699e-10
0.0252631
-0.000226456
5.04475e-10
0.0252164
-4.99717e-05
4.86068e-10
0.0251588
0.000118298
4.76266e-10
0.0250896
0.000278834
4.60713e-10
0.0250101
0.000431721
4.36477e-10
0.0249197
0.000577217
4.04074e-10
0.0248199
0.00071535
3.66321e-10
0.0247117
0.00084664
3.25943e-10
0.0245959
0.000971111
2.83611e-10
0.0244742
0.00108941
2.43968e-10
0.0243457
0.00120146
2.05932e-10
0.0242129
0.00130753
1.75644e-10
0.0240743
0.0014077
1.4992e-10
0.0239327
0.0015017
1.32927e-10
0.0237872
0.00159007
1.21759e-10
0.0236394
0.0016721
1.16549e-10
0.0234905
0.0017487
1.18352e-10
0.0233398
0.0018191
1.22876e-10
0.0231897
0.00188405
1.33706e-10
0.0230396
0.00194309
1.45664e-10
0.02289
0.00199668
1.59447e-10
0.0227429
0.00204429
1.74115e-10
0.0225964
0.00208663
1.85364e-10
0.0224536
0.00212235
1.95713e-10
0.0223133
0.00215278
1.99901e-10
0.0221771
0.00217551
1.98249e-10
0.0220466
0.00219198
1.88654e-10
0.0219214
0.00219901
1.65689e-10
0.0218059
0.00219727
1.31152e-10
0.0217009
0.0021818
7.58908e-11
0.0216106
0.00215227
-1.61875e-11
0.021533
0.00211159
-4.36196e-11
0.0214697
0.00205792
-1.46545e-10
0.0214199
0.00198974
-3.89572e-10
0.0213767
0.00191334
-4.29355e-10
0.0213657
0.00180518
-5.30064e-10
0.0214061
0.00165259
-7.10906e-10
0.0215186
0.00143916
-1.05981e-09
0.0216767
0.0011946
-1.52017e-09
0.0218723
0.000909717
-1.82801e-09
0.0221132
0.000593469
-1.97762e-09
0.000279302
-1.98117e-09
0.0280871
0.0164647
-1.09365e-08
0.0287458
0.0142063
-8.23691e-09
0.0294195
0.0121717
-4.28025e-09
0.0300922
0.0103954
-3.247e-09
0.0300008
0.00952429
-1.12492e-09
0.0296298
0.00887606
2.19395e-09
0.0293933
0.00817036
2.85039e-09
0.02913
0.00748524
2.14779e-09
0.0288987
0.00677982
1.34441e-09
0.0287064
0.00605608
6.92779e-10
0.0285568
0.00532626
2.3027e-10
0.0284338
0.00460892
-3.85279e-12
0.0283252
0.00391314
-3.34049e-11
0.0282206
0.00324789
7.78413e-11
0.0281119
0.0026134
2.43128e-10
0.0279947
0.00201133
4.09758e-10
0.0278648
0.00143839
5.47541e-10
0.0277223
0.000893407
6.47308e-10
0.0275672
0.000374071
7.10703e-10
0.0274005
-0.000120674
7.54195e-10
0.0272233
-0.000594429
7.70689e-10
0.0270369
-0.00104296
7.72537e-10
0.0268394
-0.00146713
7.59063e-10
0.026634
-0.00186568
7.39543e-10
0.0264187
-0.00223821
7.07225e-10
0.0261985
-0.0025835
6.74275e-10
0.025972
-0.00290176
6.31902e-10
0.0257451
-0.00319166
5.91243e-10
0.0255181
-0.00345493
5.44544e-10
0.0252956
-0.00368923
4.97727e-10
0.025078
-0.00389782
4.50728e-10
0.0248698
-0.00407766
3.95152e-10
0.0246702
-0.00423227
3.43109e-10
0.0244829
-0.00435958
2.86265e-10
0.0243094
-0.00446147
2.33319e-10
0.0241509
-0.00453699
1.74327e-10
0.0240137
-0.00458588
1.19752e-10
0.023898
-0.00460755
5.2658e-11
0.0238156
-0.00460032
-9.70012e-12
0.0237709
-0.00456129
-1.07466e-10
0.0237432
-0.0044862
-9.41247e-11
0.0237392
-0.00438464
-1.5568e-10
0.0237374
-0.00427797
-3.68762e-10
0.0237594
-0.00413406
-3.94239e-10
0.0238621
-0.00398474
-4.48496e-10
0.0240501
-0.00377805
-5.2554e-10
0.0242657
-0.00350378
-6.45702e-10
0.0244881
-0.00318704
-5.91907e-10
0.0247179
-0.0028648
-4.5118e-10
0.024927
-0.00252426
-2.59533e-10
0.0251031
-0.00218702
-3.97583e-11
0.0252415
-0.00186677
1.74236e-10
0.0253402
-0.00157037
3.46549e-10
0.025401
-0.00129975
4.71942e-10
0.0254491
-0.00105603
5.48446e-10
0.0254761
-0.000817508
5.56414e-10
0.0254791
-0.000588367
5.67796e-10
0.0254586
-0.000375256
5.83298e-10
0.025428
-0.000181167
5.72355e-10
0.0253835
6.89612e-06
5.27498e-10
0.0253285
0.00018435
5.12782e-10
0.0252625
0.000353902
4.94323e-10
0.0251864
0.000515693
4.65921e-10
0.0250994
0.000669983
4.30467e-10
0.0250033
0.000816371
3.91609e-10
0.0248986
0.000955167
3.49204e-10
0.0247861
0.0010863
3.04186e-10
0.0246671
0.00121056
2.59573e-10
0.0245411
0.00132774
2.16175e-10
0.0244105
0.00143849
1.79325e-10
0.0242742
0.00154251
1.47416e-10
0.0241342
0.00164022
1.23853e-10
0.0239904
0.00173136
1.06162e-10
0.0238436
0.0018163
9.46838e-11
0.0236948
0.00189468
8.90556e-11
0.0235444
0.00196706
8.78966e-11
0.0233931
0.00203281
9.08748e-11
0.0232426
0.00209264
9.77142e-11
0.0230919
0.00214591
1.04441e-10
0.022944
0.00219292
1.13532e-10
0.0227975
0.00223338
1.18168e-10
0.0226553
0.0022668
1.2156e-10
0.0225171
0.00229308
1.16949e-10
0.0223853
0.00231088
1.0611e-10
0.0222608
0.0023197
8.1635e-11
0.0221459
0.00231733
4.28561e-11
0.022045
0.00230091
-1.33052e-11
0.0219608
0.00226653
-1.0154e-10
0.0218869
0.0022258
-1.60698e-10
0.0218341
0.00216359
-2.07743e-10
0.0217814
0.00210236
-4.78202e-10
0.0217459
0.00201517
-5.28047e-10
0.0217555
0.00189111
-6.45689e-10
0.021832
0.00171002
-8.87477e-10
0.0219712
0.00148406
-1.32415e-09
0.0221526
0.00122088
-1.58592e-09
0.0223792
0.000921411
-1.88912e-09
0.0226306
0.000607163
-1.98719e-09
0.0228849
0.000287838
-1.92914e-09
-4.73323e-06
-1.74952e-09
0.0294125
0.0153421
-8.91666e-09
0.0304411
0.0131092
-4.09598e-09
0.0312591
0.0112974
-3.0328e-09
0.0310622
0.0105686
-9.30741e-10
0.0307733
0.00984868
2.36084e-09
0.0305471
0.00914908
2.34142e-09
0.0302888
0.00846536
1.77991e-09
0.030043
0.00774445
9.54561e-10
0.0298272
0.00698996
3.01842e-10
0.02964
0.00622581
-9.27601e-11
0.0294731
0.00546869
-2.85099e-10
0.0293246
0.00473529
-2.58675e-10
0.0291885
0.0040333
-1.28507e-10
0.0290591
0.0033685
8.32485e-11
0.0289271
0.00274094
2.97207e-10
0.028791
0.00214753
4.76917e-10
0.0286478
0.00158563
6.10782e-10
0.0284985
0.00105165
7.04066e-10
0.028341
0.000544132
7.62688e-10
0.0281741
6.20795e-05
8.0443e-10
0.0279974
-0.000401033
8.18362e-10
0.0278093
-0.000839869
8.21271e-10
0.0276107
-0.00125442
8.184e-10
0.0274013
-0.00164539
8.07628e-10
0.0271835
-0.00201047
7.91555e-10
0.026959
-0.00235102
7.69813e-10
0.0267293
-0.00266511
7.39935e-10
0.0264984
-0.00295375
7.05879e-10
0.0262668
-0.00321627
6.70034e-10
0.0260366
-0.00345261
6.22575e-10
0.025811
-0.00366409
5.92624e-10
0.0255875
-0.00384936
5.41e-10
0.0253722
-0.00401102
4.95308e-10
0.0251613
-0.00414674
4.39042e-10
0.0249597
-0.00425912
3.90011e-10
0.0247682
-0.00434627
3.39383e-10
0.0245903
-0.00441018
2.82973e-10
0.0244295
-0.00444946
2.2683e-10
0.0242897
-0.00446352
1.7047e-10
0.0241747
-0.00445166
9.45103e-11
0.0240921
-0.00440967
3.40526e-12
0.0240373
-0.00433638
-1.05405e-11
0.0239832
-0.00423194
-8.76569e-11
0.0239651
-0.0041247
-1.50813e-10
0.0239517
-0.0039847
-3.79002e-10
0.0239791
-0.00381949
-4.11185e-10
0.0240959
-0.00363472
-4.82678e-10
0.0242862
-0.00339309
-6.13747e-10
0.0244922
-0.0030858
-6.16278e-10
0.0247048
-0.00275125
-5.66101e-10
0.0249189
-0.00240949
-4.06598e-10
0.0251085
-0.00205915
-1.86705e-10
0.0252618
-0.0017181
4.57825e-11
0.0253708
-0.00139959
2.60317e-10
0.0254351
-0.00110849
4.21663e-10
0.0254794
-0.000846811
5.46306e-10
0.0255067
-0.000600318
5.49939e-10
0.0255056
-0.000359114
5.6725e-10
0.0254771
-0.000138001
5.85475e-10
0.0254387
6.0615e-05
6.20057e-10
0.0253893
0.000246986
5.84233e-10
0.0253294
0.000425515
5.38605e-10
0.0252595
0.000594908
4.91394e-10
0.0251805
0.000756655
4.46128e-10
0.0250929
0.000910508
4.03302e-10
0.0249964
0.0010565
3.5844e-10
0.0248924
0.00119465
3.1129e-10
0.0247799
0.0013251
2.62086e-10
0.0246612
0.00144778
2.15064e-10
0.024536
0.00156318
1.72011e-10
0.0244063
0.0016711
1.35464e-10
0.024272
0.00177227
1.0536e-10
0.024135
0.00186615
8.22899e-11
0.0239948
0.00195365
6.44325e-11
0.0238531
0.00203386
5.2505e-11
0.0237097
0.00210788
4.48834e-11
0.0235655
0.00217452
4.1158e-11
0.0234213
0.00223487
4.1141e-11
0.0232775
0.00228769
4.14552e-11
0.0231359
0.00233369
4.26518e-11
0.0229972
0.00237163
4.0024e-11
0.0228628
0.00240174
3.35441e-11
0.0227342
0.0024223
1.73746e-11
0.022614
0.00243283
-8.18271e-12
0.0225036
0.0024307
-5.3265e-11
0.0224093
0.00241263
-1.29571e-10
0.0223333
0.00237518
-2.11735e-10
0.0222692
0.00233031
-2.37588e-10
0.0222182
0.00227066
-4.08086e-10
0.0221675
0.00220958
-4.45677e-10
0.0221536
0.00210985
-5.25618e-10
0.0221956
0.00195969
-7.07087e-10
0.022311
0.00175507
-9.94446e-10
0.0224716
0.00151407
-1.61888e-09
0.0226809
0.00123408
-1.81858e-09
0.0229308
0.000925229
-1.92084e-09
0.0231976
0.000607471
-1.94716e-09
0.0234557
0.000303978
-1.77064e-09
0.0236791
2.29621e-05
-1.57173e-09
-0.000208998
-1.02427e-09
0.0305898
0.013726
-4.88821e-09
0.0316547
0.0119978
-3.47407e-09
0.0316227
0.0113314
-4.07251e-10
0.031546
0.01067
1.70783e-09
0.0314041
0.0100298
2.12148e-09
0.0312109
0.00937466
1.19203e-09
0.0310254
0.0086643
3.05763e-10
0.0308614
0.00790177
-3.50864e-10
0.0307159
0.00711863
-6.41341e-10
0.0305834
0.00633765
-6.8755e-10
0.0304585
0.00557917
-5.65313e-10
0.030332
0.00485248
-3.65109e-10
0.0301966
0.00416303
-9.01749e-11
0.0300526
0.0035098
1.60161e-10
0.0299021
0.00289228
3.77022e-10
0.0297456
0.00230747
5.49575e-10
0.0295867
0.00175314
6.80085e-10
0.0294213
0.00122687
7.67585e-10
0.0292518
0.000726845
8.29285e-10
0.0290717
0.000252748
8.65092e-10
0.02888
-0.000198899
8.90429e-10
0.0286782
-0.000629755
9.02664e-10
0.0284674
-0.00103589
9.04817e-10
0.028249
-0.00141824
9.03755e-10
0.0280232
-0.00177673
8.8977e-10
0.0277937
-0.00211146
8.7528e-10
0.0275579
-0.00242156
8.48815e-10
0.0273204
-0.00270697
8.26636e-10
0.0270777
-0.00296736
7.79976e-10
0.0268347
-0.00320196
7.45412e-10
0.0265884
-0.00341278
6.77868e-10
0.0263424
-0.00359787
6.32123e-10
0.0260969
-0.00376081
5.82569e-10
0.0258535
-0.003899
5.38881e-10
0.0256148
-0.00401638
4.97777e-10
0.0253821
-0.00410991
4.57566e-10
0.0251591
-0.00418346
4.25933e-10
0.0249451
-0.00423303
3.823e-10
0.0247458
-0.00426238
3.30859e-10
0.024562
-0.00426704
2.702e-10
0.0244009
-0.00424961
1.97999e-10
0.0242675
-0.00420529
8.37614e-11
0.0241661
-0.00413262
7.92748e-11
0.0240695
-0.00402986
1.25185e-12
0.0240074
-0.00392535
-1.10154e-10
0.0239807
-0.00379928
-3.46969e-10
0.0239667
-0.00362759
-3.74521e-10
0.0240024
-0.00343623
-4.46296e-10
0.0241293
-0.00322097
-5.60842e-10
0.0243104
-0.00294692
-7.21981e-10
0.0245074
-0.00261828
-6.77516e-10
0.0247111
-0.00227324
-6.03649e-10
0.0249046
-0.00191675
-4.09582e-10
0.0250682
-0.00156255
-1.59576e-10
0.0251896
-0.00122497
9.0925e-11
0.0252656
-0.000913749
2.97388e-10
0.025311
-0.000632072
4.81225e-10
0.0253442
-0.00037853
4.95846e-10
0.0253491
-0.000129204
5.22868e-10
0.0253236
0.000100364
5.59761e-10
0.0252808
0.000304989
6.13142e-10
0.0252306
0.000489569
5.73293e-10
0.0251683
0.000668591
5.13887e-10
0.0250977
0.000836434
4.57203e-10
0.0250194
0.000995881
4.06682e-10
0.0249335
0.00114792
3.56883e-10
0.0248392
0.00129251
3.0522e-10
0.024737
0.00142905
2.53027e-10
0.0246277
0.00155742
2.03006e-10
0.0245122
0.00167753
1.56167e-10
0.0243919
0.00178974
1.1498e-10
0.0242677
0.00189419
7.93004e-11
0.0241405
0.00199111
5.01129e-11
0.0240116
0.00208063
2.61186e-11
0.0238812
0.00216283
7.19202e-12
0.0237507
0.00223766
-7.53181e-12
0.0236201
0.00230514
-1.87547e-11
0.0234906
0.00236493
-2.70592e-11
0.0233624
0.00241686
-3.46477e-11
0.0232368
0.00246028
-4.31576e-11
0.0231154
0.00249458
-5.57898e-11
0.0229996
0.00251876
-7.61602e-11
0.0228924
0.00253105
-1.06138e-10
0.0227961
0.00252964
-1.62766e-10
0.0227174
0.00250883
-2.32486e-10
0.0226564
0.0024709
-3.12619e-10
0.0226092
0.00242017
-3.22617e-10
0.0225569
0.00237471
-5.38862e-10
0.0225209
0.0022977
-5.95056e-10
0.0225408
0.00217864
-7.08514e-10
0.0226298
0.00200354
-9.29989e-10
0.0227775
0.00178403
-1.33688e-09
0.02297
0.00152902
-1.57891e-09
0.0232085
0.00123307
-1.83628e-09
0.0234782
0.000918312
-1.93071e-09
0.0237523
0.000605063
-1.84162e-09
0.024008
0.000312109
-1.61279e-09
0.0242226
5.67738e-05
-1.25593e-09
0.0243813
-0.000160074
-8.92566e-10
-0.000331549
-5.10944e-10
0.030529
0.0114676
-2.82254e-09
0.0310932
0.0114481
-1.04863e-09
0.0311575
0.0113325
2.14598e-09
0.0313078
0.010575
1.9436e-09
0.0314227
0.00994612
1.14125e-09
0.0314433
0.00935746
-3.36593e-10
0.0314444
0.00864342
-1.31598e-09
0.0314248
0.00788958
-1.5314e-09
0.0313842
0.00712626
-1.37498e-09
0.0313213
0.00637327
-1.05192e-09
0.0312421
0.00564217
-6.71024e-10
0.0311458
0.00494214
-3.37957e-10
0.0310322
0.00427549
-3.27363e-11
0.0309
0.00364199
2.27816e-10
0.0307545
0.00303937
4.45873e-10
0.0305995
0.00246705
6.23815e-10
0.0304373
0.00192311
7.57771e-10
0.0302688
0.00140668
8.53788e-10
0.0300934
0.000916083
9.17779e-10
0.0299099
0.000451131
9.57703e-10
0.0297128
1.3424e-05
9.70953e-10
0.0295096
-0.000410566
9.95152e-10
0.0292968
-0.000806081
1.00473e-09
0.0290749
-0.0011788
9.98147e-10
0.0288435
-0.00152822
9.90227e-10
0.0286029
-0.00185421
9.79682e-10
0.0283521
-0.00215608
9.59247e-10
0.028094
-0.00243405
9.36469e-10
0.0278275
-0.00268819
9.0385e-10
0.0275576
-0.00291854
8.64671e-10
0.0272829
-0.00312604
8.15476e-10
0.0270067
-0.00330995
7.62714e-10
0.0267294
-0.00347221
7.12999e-10
0.0264526
-0.00361217
6.6428e-10
0.026178
-0.00373139
6.24983e-10
0.0259072
-0.00383
5.85533e-10
0.0256415
-0.00390855
5.4895e-10
0.0253835
-0.00396719
5.10377e-10
0.0251351
-0.00400639
4.68865e-10
0.0248997
-0.00402534
4.18374e-10
0.0246797
-0.0040243
3.55563e-10
0.0244811
-0.0040018
2.80197e-10
0.024309
-0.00395763
1.71966e-10
0.0241678
-0.00388607
8.13792e-11
0.0240317
-0.00378561
5.59466e-11
0.0239148
-0.0036808
-6.75762e-11
0.0238453
-0.00355677
-2.52072e-10
0.023808
-0.00340327
-4.46971e-10
0.0237899
-0.00320649
-4.76659e-10
0.0238446
-0.00300601
-5.47575e-10
0.0239822
-0.00276338
-6.63038e-10
0.024155
-0.00245972
-8.71243e-10
0.0243414
-0.00211553
-7.99112e-10
0.0245361
-0.00176498
-6.2859e-10
0.024707
-0.00140227
-3.95748e-10
0.024843
-0.00104878
-1.34272e-10
0.0249385
-0.00072096
1.29991e-10
0.0249919
-0.00042192
3.10529e-10
0.0250339
-0.000157633
4.46406e-10
0.0250542
9.32058e-05
4.58528e-10
0.0250416
0.000331251
4.8376e-10
0.0250004
0.000544914
5.27074e-10
0.0249513
0.000730037
4.98532e-10
0.0248942
0.000905341
4.54389e-10
0.0248277
0.00107158
3.98533e-10
0.0247545
0.00122863
3.42026e-10
0.0246741
0.00137807
2.85566e-10
0.0245875
0.00151963
2.31979e-10
0.0244946
0.00165291
1.8024e-10
0.0243959
0.0017778
1.30393e-10
0.0242921
0.00189419
8.43631e-11
0.0241837
0.00200222
4.31201e-11
0.0240721
0.00210192
7.89599e-12
0.0239579
0.00219359
-2.21366e-11
0.0238423
0.00227713
-4.7629e-11
0.023726
0.00235269
-6.94113e-11
0.0236102
0.00241986
-8.84231e-11
0.0234955
0.00247853
-1.05896e-10
0.0233837
0.00252776
-1.23356e-10
0.0232757
0.00256717
-1.44176e-10
0.0231739
0.00259496
-1.70874e-10
0.0230804
0.00261011
-2.11552e-10
0.0229995
0.00260867
-2.59443e-10
0.0229364
0.00258715
-3.68998e-10
0.0228933
0.00254666
-3.66514e-10
0.0228531
0.00250166
-5.19005e-10
0.0228064
0.0024579
-5.49054e-10
0.0228059
0.00236556
-6.23897e-10
0.0228679
0.00222037
-8.1001e-10
0.023001
0.00202302
-1.11354e-09
0.0231795
0.00179284
-1.47246e-09
0.0234048
0.00151845
-1.76194e-09
0.023676
0.00121433
-1.91848e-09
0.0239618
0.000901596
-1.89894e-09
0.0242401
0.000597663
-1.72865e-09
0.0244854
0.000323288
-1.41102e-09
0.0246842
8.71483e-05
-1.033e-09
0.0248238
-0.00010291
-6.26292e-10
0.0249115
-0.000259063
-3.57489e-10
-0.000382862
-8.96816e-11
0.0272162
0.00943038
-9.81926e-09
0.0282757
0.0104326
2.02569e-09
0.0293369
0.0103331
2.84993e-09
0.0299598
0.0100059
1.21583e-09
0.0304045
0.00953127
-5.6297e-10
0.0307828
0.00897981
-2.10716e-09
0.0310735
0.00833637
-2.45681e-09
0.0312895
0.0076542
-2.18383e-09
0.0314494
0.00696041
-1.59608e-09
0.0315475
0.00627343
-1.078e-09
0.0315882
0.00560577
-5.2572e-10
0.031579
0.00496123
-1.3574e-10
0.0315299
0.0043373
1.6489e-10
0.0314475
0.00373749
4.08323e-10
0.0313375
0.00316071
6.03483e-10
0.0312092
0.00260853
7.61921e-10
0.0310683
0.0020812
8.81746e-10
0.0309175
0.0015793
9.68413e-10
0.0307556
0.00110263
1.03525e-09
0.0305823
0.000650997
1.0793e-09
0.0303988
0.000224822
1.12403e-09
0.0301968
-0.000180863
1.13358e-09
0.0299823
-0.000564144
1.13977e-09
0.0297536
-0.000924059
1.13982e-09
0.029511
-0.00126138
1.13043e-09
0.029255
-0.00157631
1.11467e-09
0.0289863
-0.00186815
1.0917e-09
0.0287079
-0.0021374
1.06494e-09
0.0284194
-0.00238354
1.0275e-09
0.0281245
-0.00260748
9.86802e-10
0.0278234
-0.00280918
9.39485e-10
0.0275179
-0.00298973
8.85858e-10
0.0272113
-0.00314893
8.37734e-10
0.0269023
-0.00328872
7.84738e-10
0.0265953
-0.00340764
7.44754e-10
0.0262895
-0.00350917
7.04373e-10
0.0259864
-0.00359031
6.69549e-10
0.0256879
-0.00365508
6.35525e-10
0.0253953
-0.00370063
5.98581e-10
0.0251107
-0.00372962
5.54376e-10
0.0248393
-0.00374021
5.02448e-10
0.024582
-0.00373377
4.36192e-10
0.0243453
-0.00370783
3.529e-10
0.0241353
-0.00366407
2.62382e-10
0.0239579
-0.00359558
1.48734e-10
0.0237946
-0.00350437
1.02328e-10
0.0236538
-0.00340342
-6.32532e-12
0.0235493
-0.00329065
-1.9347e-10
0.0234968
-0.00314818
-3.23453e-10
0.0234483
-0.0029596
-5.73911e-10
0.0234349
-0.00275347
-6.14075e-10
0.0235047
-0.00253605
-6.85382e-10
0.0236481
-0.00227002
-8.59163e-10
0.0238121
-0.00194313
-8.73893e-10
0.0239871
-0.00159251
-8.31955e-10
0.0241613
-0.00123607
-6.376e-10
0.0243123
-0.000877906
-3.71659e-10
0.0244252
-0.000536987
-1.06173e-10
0.0244994
-0.000224356
1.23823e-10
0.0245465
5.56365e-05
2.79357e-10
0.024583
0.000303681
3.02765e-10
0.0245903
0.000548223
3.43349e-10
0.0245632
0.000769645
4.10191e-10
0.0245206
0.000961135
4.21778e-10
0.0244705
0.00113253
3.65519e-10
0.0244106
0.00129742
3.0789e-10
0.0243448
0.00145057
2.53505e-10
0.0242745
0.00159514
2.01692e-10
0.0241991
0.00173176
1.48345e-10
0.0241186
0.00186043
9.40115e-11
0.0240329
0.00198054
4.19838e-11
0.0239433
0.00209179
-5.2724e-12
0.0238505
0.00219415
-4.66571e-11
0.0237558
0.00228755
-8.27036e-11
0.0236602
0.00237212
-1.14734e-10
0.0235648
0.00244755
-1.44295e-10
0.0234708
0.00251357
-1.72476e-10
0.0233793
0.00256953
-2.01164e-10
0.0232924
0.00261437
-2.32104e-10
0.0232117
0.00264695
-2.69128e-10
0.0231393
0.00266544
-3.18577e-10
0.0230818
0.0026653
-3.75251e-10
0.0230414
0.00264257
-4.96953e-10
0.0230199
0.00260308
-4.80913e-10
0.0229803
0.00257698
-6.51949e-10
0.0229602
0.00251064
-6.94738e-10
0.0230077
0.00239716
-7.80976e-10
0.0231253
0.00222887
-9.75983e-10
0.023295
0.00202312
-1.35236e-09
0.0235067
0.00177555
-1.57438e-09
0.0237704
0.00148891
-1.80966e-09
0.0240623
0.00118324
-1.90355e-09
0.0243586
0.000875386
-1.82782e-09
0.0246341
0.00058774
-1.5856e-09
0.0248669
0.000334254
-1.22882e-09
0.0250461
0.000121885
-8.27697e-10
0.0251678
-4.82808e-05
-4.52438e-10
0.0252392
-0.000180725
-1.59346e-10
0.0252733
-0.000296705
1.00602e-11
-0.000387612
1.32265e-10
0.0228932
0.00731037
-1.41824e-08
0.0248727
0.00851461
4.12365e-09
0.0264473
0.00881462
2.70995e-09
0.0277283
0.00874004
-3.82659e-12
0.0286799
0.00855338
-2.99611e-09
0.0294633
0.0081628
-3.62948e-09
0.0300745
0.00769266
-3.22335e-09
0.0305221
0.00716838
-2.39326e-09
0.0308307
0.00660922
-1.52168e-09
0.0310394
0.00603437
-7.42629e-10
0.0311841
0.00545304
-2.37825e-10
0.0312748
0.00487713
1.79645e-10
0.0313166
0.00430916
4.89919e-10
0.0313212
0.00375423
7.13564e-10
0.0312923
0.0032146
8.79591e-10
0.0312382
0.00269382
1.00444e-09
0.0311592
0.00219449
1.09104e-09
0.0310602
0.00171711
1.15463e-09
0.0309401
0.00126295
1.19265e-09
0.0307987
0.000831486
1.21649e-09
0.0306397
0.000423435
1.24221e-09
0.0304579
3.86224e-05
1.25172e-09
0.0302584
-0.000325902
1.26558e-09
0.030039
-0.000668099
1.2627e-09
0.0298021
-0.000988673
1.25199e-09
0.0295475
-0.0012881
1.234e-09
0.0292777
-0.00156609
1.20847e-09
0.0289943
-0.00182264
1.17967e-09
0.0286992
-0.00205846
1.14089e-09
0.028394
-0.00227277
1.09857e-09
0.0280815
-0.00246771
1.0509e-09
0.0277615
-0.00264169
9.99127e-10
0.0274387
-0.00279768
9.52022e-10
0.0271106
-0.00293386
9.0217e-10
0.0267821
-0.00305298
8.61778e-10
0.0264514
-0.00315386
8.23384e-10
0.0261208
-0.00323828
7.87594e-10
0.0257934
-0.00330586
7.56279e-10
0.0254687
-0.00335793
7.17262e-10
0.0251524
-0.00339372
6.78526e-10
0.0248458
-0.00341504
6.29177e-10
0.0245518
-0.00342017
5.70829e-10
0.0242749
-0.00341065
5.01883e-10
0.0240154
-0.0033844
4.17652e-10
0.0237811
-0.00334172
3.24576e-10
0.023574
-0.00327888
2.01148e-10
0.023383
-0.00319497
1.51282e-10
0.02321
-0.00310104
4.60321e-11
0.0230706
-0.00299781
-1.38429e-10
0.022986
-0.00286706
-3.0809e-10
0.022931
-0.00270004
-5.51943e-10
0.0228889
-0.00249799
-5.88737e-10
0.0229062
-0.00229334
-6.71825e-10
0.0230075
-0.00205707
-8.05225e-10
0.0231609
-0.00176499
-1.03025e-09
0.0233268
-0.00142394
-9.67535e-10
0.0235025
-0.00107299
-8.54006e-10
0.0236649
-0.000715025
-6.45262e-10
0.0237977
-0.000365439
-3.80253e-10
0.0238935
-4.14348e-05
-1.52073e-10
0.0239495
0.000250207
9.38453e-11
0.0240011
0.00050355
1.85535e-10
0.0240304
0.000746998
1.98464e-10
0.0240235
0.000975396
2.21471e-10
0.0239895
0.00117535
2.65006e-10
0.0239505
0.00134465
2.44336e-10
0.0239044
0.00150389
2.19173e-10
0.0238525
0.00165243
1.70625e-10
0.0237964
0.00179128
1.10351e-10
0.0237361
0.00192229
4.76642e-11
0.0236714
0.00204487
-1.14683e-11
0.0236031
0.00215861
-6.49738e-11
0.0235315
0.00226325
-1.13077e-10
0.0234581
0.00235812
-1.54192e-10
0.0233841
0.00244316
-1.92736e-10
0.0233108
0.00251748
-2.31006e-10
0.0232408
0.00258058
-2.69471e-10
0.0231749
0.00263142
-3.11566e-10
0.0231176
0.00266787
-3.60874e-10
0.0230696
0.00268954
-4.17961e-10
0.0230385
0.00268992
-4.93354e-10
0.0230313
0.00266379
-5.94932e-10
0.0230207
0.00264098
-6.67909e-10
0.0230018
0.00261162
-7.07783e-10
0.0230368
0.0025292
-8.06052e-10
0.0231409
0.0023887
-9.87798e-10
0.0232976
0.00221469
-1.32357e-09
0.0234971
0.00199745
-1.56215e-09
0.0237478
0.00173459
-1.76902e-09
0.0240385
0.0014434
-1.8744e-09
0.024346
0.00113944
-1.85936e-09
0.024646
0.000845126
-1.7019e-09
0.0249119
0.000576931
-1.40539e-09
0.025129
0.00034702
-1.03265e-09
0.025289
0.000158384
-6.54053e-10
0.025397
6.93265e-06
-3.06679e-10
0.0254525
-0.000106783
-6.13638e-11
0.0254777
-0.000204154
9.72213e-11
0.025476
-0.000294823
1.42207e-10
-0.000375048
2.18479e-10
0.019216
0.00563317
-1.54217e-08
0.0213399
0.00643645
3.51908e-09
0.0232598
0.00689964
1.12079e-09
0.0247938
0.00715081
-2.1728e-09
0.0260963
0.00717115
-4.14048e-09
0.0271882
0.00701379
-4.2171e-09
0.0281047
0.00675216
-3.2381e-09
0.0288569
0.00641637
-2.01513e-09
0.0294577
0.00602767
-9.64667e-10
0.0299226
0.00559741
-1.76282e-10
0.0302659
0.0051399
3.9127e-10
0.0305145
0.00466147
7.54648e-10
0.0306852
0.004173
1.01412e-09
0.0307891
0.00368122
1.16054e-09
0.030838
0.00319425
1.26993e-09
0.0308438
0.00271811
1.31825e-09
0.0308149
0.00225632
1.33947e-09
0.0307575
0.0018115
1.34758e-09
0.0306765
0.00138582
1.34758e-09
0.0305705
0.000979916
1.34217e-09
0.0304424
0.00059491
1.344e-09
0.0302886
0.000231487
1.34656e-09
0.0301108
-0.000111175
1.35042e-09
0.0299095
-0.000432344
1.34786e-09
0.0296862
-0.000732615
1.33935e-09
0.0294456
-0.00101268
1.32961e-09
0.0291854
-0.00127295
1.30679e-09
0.0289118
-0.00151352
1.28398e-09
0.0286215
-0.00173535
1.2476e-09
0.0283203
-0.00193794
1.20887e-09
0.0280068
-0.00212293
1.16347e-09
0.0276853
-0.00228947
1.115e-09
0.0273565
-0.00243938
1.06889e-09
0.0270221
-0.00257182
1.02222e-09
0.0266845
-0.00268852
9.82061e-10
0.0263442
-0.00278895
9.41409e-10
0.0260039
-0.00287424
9.07363e-10
0.0256654
-0.00294467
8.69924e-10
0.02533
-0.00300043
8.32568e-10
0.0250014
-0.00304253
7.92015e-10
0.0246805
-0.00307081
7.44258e-10
0.0243697
-0.00308596
6.89875e-10
0.024071
-0.00308796
6.26508e-10
0.0237868
-0.00307651
5.51608e-10
0.02352
-0.00305154
4.64557e-10
0.0232753
-0.00301172
3.66577e-10
0.0230567
-0.00295541
2.44821e-10
0.0228561
-0.00288025
1.90877e-10
0.0226721
-0.00279587
8.03616e-11
0.0225198
-0.00270295
-8.81891e-11
0.0224112
-0.00258377
-2.90687e-10
0.0223465
-0.00243406
-4.09293e-10
0.0222922
-0.00224873
-6.76762e-10
0.0222685
-0.00204579
-7.1055e-10
0.0223181
-0.00183298
-7.87812e-10
0.0224497
-0.00157568
-9.03514e-10
0.0226054
-0.00126002
-1.1027e-09
0.0227752
-0.000912993
-1.06928e-09
0.0229419
-0.000560191
-8.88317e-10
0.0230887
-0.000207877
-6.54787e-10
0.0232
0.000124415
-3.81201e-10
0.0232699
0.000426162
-1.90082e-10
0.0233253
0.000689399
-3.23551e-12
0.0233697
0.000930225
1.20726e-11
0.023386
0.00116051
4.24996e-11
0.0233678
0.00136605
8.34759e-11
0.0233393
0.00153749
1.43429e-10
0.0233066
0.00168947
1.00352e-10
0.0232676
0.00183308
4.04259e-11
0.023227
0.00196457
-2.20236e-11
0.0231849
0.00208699
-8.27371e-11
0.0231423
0.00220082
-1.3882e-10
0.0230977
0.00230583
-1.94173e-10
0.0230524
0.0024006
-2.41712e-10
0.023007
0.00248462
-2.87744e-10
0.0229636
0.00255602
-3.3585e-10
0.0229252
0.00261397
-3.92524e-10
0.0228941
0.00265626
-4.47882e-10
0.0228736
0.00268119
-5.31778e-10
0.0228701
0.00268505
-5.96289e-10
0.0228806
0.00266789
-7.39414e-10
0.0228719
0.00265998
-7.57856e-10
0.0228948
0.00260593
-8.28494e-10
0.0229958
0.00249544
-9.52735e-10
0.0231454
0.00235838
-1.18124e-09
0.0233313
0.00217416
-1.47205e-09
0.0235703
0.00194118
-1.70979e-09
0.0238571
0.0016714
-1.85412e-09
0.0241711
0.00137989
-1.89015e-09
0.0244897
0.00108676
-1.78894e-09
0.024785
0.000810382
-1.54458e-09
0.0250402
0.000566326
-1.21645e-09
0.0252373
0.000361174
-8.38652e-10
0.025382
0.000195859
-4.89712e-10
0.0254727
6.44966e-05
-2.0424e-10
0.0255189
-3.71665e-05
1.21931e-11
0.0255442
-0.000126329
1.44511e-10
0.0255534
-0.000209222
1.56789e-10
0.0255418
-0.000279145
1.85246e-10
-0.000349867
1.87746e-10
0.0170706
0.00452674
-1.61285e-08
0.0189143
0.00461029
3.09255e-09
0.0206212
0.005169
2.82376e-10
0.0221386
0.00555812
-2.81885e-09
0.0234668
0.00575032
-4.02213e-09
0.0246247
0.00577924
-3.56265e-09
0.0256325
0.00569775
-2.37852e-09
0.0265065
0.00552919
-1.1175e-09
0.0272568
0.00529409
-9.0536e-11
0.0278966
0.00500193
6.49363e-10
0.0284384
0.00466458
1.10474e-09
0.0288785
0.0042939
1.41644e-09
0.02923
0.00389634
1.57402e-09
0.0294997
0.00348588
1.66059e-09
0.0297021
0.0030664
1.64975e-09
0.0298471
0.00264875
1.61947e-09
0.0299371
0.0022363
1.56882e-09
0.0299808
0.00183424
1.51679e-09
0.0299778
0.00144573
1.46635e-09
0.029934
0.00107281
1.42375e-09
0.0298535
0.000717625
1.39817e-09
0.0297395
0.000380806
1.37534e-09
0.0295971
6.4121e-05
1.37283e-09
0.0294276
-0.000232222
1.37741e-09
0.0292324
-0.000508486
1.37453e-09
0.0290155
-0.000766029
1.37078e-09
0.0287762
-0.00100504
1.35532e-09
0.0285204
-0.00122677
1.33938e-09
0.0282489
-0.00143128
1.31278e-09
0.0279653
-0.00161954
1.27951e-09
0.0276718
-0.0017914
1.24276e-09
0.0273688
-0.00194822
1.19912e-09
0.0270577
-0.00208879
1.15665e-09
0.0267391
-0.00221554
1.11682e-09
0.0264155
-0.00232655
1.07729e-09
0.0260857
-0.00242472
1.03739e-09
0.0257533
-0.00250757
1.00795e-09
0.0254177
-0.00257843
9.63226e-10
0.0250831
-0.00263486
9.27514e-10
0.0247522
-0.00268079
8.87868e-10
0.0244263
-0.00271391
8.4047e-10
0.0241092
-0.0027372
7.94127e-10
0.0238016
-0.00274874
7.33526e-10
0.0235075
-0.00275019
6.6557e-10
0.0232286
-0.00274002
5.83933e-10
0.022967
-0.0027183
4.94709e-10
0.0227273
-0.00268422
3.94197e-10
0.022509
-0.00263458
2.76912e-10
0.0223067
-0.00256922
2.14674e-10
0.0221172
-0.00249416
1.06104e-10
0.0219543
-0.0024098
-5.97137e-11
0.0218252
-0.00230165
-2.23749e-10
0.0217348
-0.00216411
-3.91067e-10
0.0216713
-0.00199875
-6.51314e-10
0.0216165
-0.00179949
-6.88524e-10
0.0216181
-0.00159995
-7.73494e-10
0.0216968
-0.00136696
-9.13904e-10
0.0218286
-0.00108327
-1.16089e-09
0.0219817
-0.000750536
-1.1412e-09
0.0221417
-0.000409152
-1.05744e-09
0.0222974
-5.96314e-05
-8.47291e-10
0.0224186
0.00027594
-6.41557e-10
0.022506
0.000583074
-4.33117e-10
0.0225683
0.000853731
-2.73662e-10
0.0226273
0.00109278
-1.1454e-10
0.0226702
0.00131508
-1.007e-10
0.0226782
0.00152288
-7.92795e-11
0.0226632
0.00170055
-5.30061e-11
0.0226464
0.00184693
-6.70774e-11
0.0226265
0.00198158
-9.75225e-11
0.0226042
0.00210571
-1.50669e-10
0.0225809
0.00221865
-2.14622e-10
0.0225581
0.00232258
-2.77047e-10
0.0225356
0.0024154
-3.40414e-10
0.0225168
0.00249565
-4.06221e-10
0.0225017
0.00256144
-4.66624e-10
0.0224946
0.00261017
-5.55598e-10
0.0224997
0.00263887
-6.11724e-10
0.0225108
0.00265307
-7.62483e-10
0.022535
0.00264787
-7.83442e-10
0.0225613
0.00262364
-8.47746e-10
0.0226562
0.00255037
-9.70909e-10
0.0227952
0.002448
-1.1629e-09
0.022963
0.00230241
-1.3951e-09
0.0231886
0.00210242
-1.66416e-09
0.0234671
0.00185958
-1.82054e-09
0.023785
0.00158885
-1.91184e-09
0.0241151
0.00130356
-1.8634e-09
0.0244386
0.00102636
-1.69153e-09
0.0247285
0.000772602
-1.39935e-09
0.024969
0.000554425
-1.04333e-09
0.0251557
0.000374158
-7.01078e-10
0.0252859
0.000230349
-3.82458e-10
0.025371
0.000116662
-1.43306e-10
0.0254172
2.62023e-05
3.3996e-11
0.0254466
-5.6637e-05
1.21267e-10
0.0254614
-0.000132039
1.34745e-10
0.0254584
-0.00019855
1.52445e-10
0.0254461
-0.000258788
1.8847e-10
-0.000319823
1.89734e-10
0.0174793
0.00384076
-1.72335e-08
0.0182567
0.00386029
2.77081e-09
0.0192919
0.00410114
2.29413e-10
0.020357
0.00441721
-1.89599e-09
0.0213993
0.00462929
-2.43898e-09
0.0223986
0.00472872
-1.82671e-09
0.023345
0.00473712
-8.45152e-10
0.0242182
0.00467503
1.15464e-10
0.0250187
0.00454529
8.70476e-10
0.0257392
0.00435868
1.41374e-09
0.0263853
0.0041184
1.7544e-09
0.0269512
0.00383782
1.96474e-09
0.0274378
0.00352318
2.05451e-09
0.0278473
0.00318653
2.05612e-09
0.0281775
0.00283512
1.9926e-09
0.0284388
0.002477
1.89463e-09
0.0286257
0.00211933
1.77564e-09
0.0287499
0.00176587
1.65994e-09
0.0288133
0.00142251
1.55612e-09
0.0288237
0.00109065
1.47046e-09
0.0287929
0.000773764
1.41316e-09
0.0287211
0.000472467
1.37063e-09
0.0286212
0.000187654
1.35433e-09
0.0284923
-7.99271e-05
1.35488e-09
0.0283371
-0.000328616
1.35384e-09
0.0281583
-0.000560016
1.35733e-09
0.027955
-0.000775335
1.35097e-09
0.0277317
-0.000974713
1.34507e-09
0.0274905
-0.00115964
1.33151e-09
0.0272321
-0.00132965
1.30952e-09
0.0269621
-0.00148589
1.28809e-09
0.026677
-0.00162833
1.25491e-09
0.0263823
-0.00175716
1.22388e-09
0.0260783
-0.00187336
1.19126e-09
0.0257678
-0.00197615
1.16158e-09
0.0254478
-0.0020677
1.11715e-09
0.0251212
-0.00214618
1.11119e-09
0.0247937
-0.00221467
1.06736e-09
0.0244707
-0.00227253
1.01348e-09
0.0241589
-0.00232083
9.73105e-10
0.0238579
-0.00236055
9.03559e-10
0.0235679
-0.00238998
8.67533e-10
0.0232892
-0.0024115
8.08148e-10
0.0230229
-0.00242203
7.45067e-10
0.022766
-0.00242483
6.65594e-10
0.0225219
-0.00241559
5.86693e-10
0.0222841
-0.00239731
4.92117e-10
0.0220585
-0.00236526
3.97103e-10
0.0218431
-0.00232134
2.89226e-10
0.0216339
-0.00226094
2.27476e-10
0.0214317
-0.00219352
1.29164e-10
0.0212502
-0.00211644
-3.64979e-11
0.0210973
-0.00201642
-1.76984e-10
0.0209746
-0.00189097
-3.80692e-10
0.0208982
-0.00174284
-5.06933e-10
0.0208253
-0.00155746
-7.56572e-10
0.0207915
-0.00136449
-7.98367e-10
0.020827
-0.00115327
-8.90498e-10
0.0209386
-0.000901132
-1.0634e-09
0.0210747
-0.000591492
-1.19343e-09
0.0212311
-0.000259912
-1.21194e-09
0.0213844
8.03693e-05
-1.08068e-09
0.0215189
0.000410753
-8.40994e-10
0.0216277
0.000718676
-6.6481e-10
0.0217043
0.000991169
-4.02971e-10
0.021769
0.00123207
-2.8819e-10
0.0218306
0.00144537
-2.79363e-10
0.0218753
0.00164487
-2.62375e-10
0.0218889
0.00182396
-2.42942e-10
0.0218962
0.0019701
-1.90275e-10
0.021905
0.00209399
-2.46997e-10
0.0219116
0.00220864
-3.14075e-10
0.0219233
0.00230965
-3.83865e-10
0.0219386
0.00239644
-4.61029e-10
0.0219618
0.00247011
-5.47497e-10
0.0219943
0.00252341
-6.20036e-10
0.0220344
0.00256315
-7.78393e-10
0.0220707
0.00259395
-8.04169e-10
0.0221274
0.00258606
-8.69783e-10
0.0222225
0.0025379
-9.70121e-10
0.0223497
0.00247637
-1.1386e-09
0.0224995
0.00237873
-1.31051e-09
0.0226988
0.00221493
-1.60866e-09
0.0229572
0.00200936
-1.78496e-09
0.0232581
0.00176358
-1.91256e-09
0.0235849
0.0014957
-1.93208e-09
0.0239197
0.00122216
-1.82718e-09
0.0242295
0.000964407
-1.58781e-09
0.0245027
0.000734801
-1.27318e-09
0.0247209
0.000541746
-9.25405e-10
0.0248883
0.000384823
-6.03453e-10
0.0250054
0.000259348
-3.38044e-10
0.025081
0.000160522
-1.43321e-10
0.0251272
8.10432e-05
3.55703e-11
0.0251578
4.42266e-06
4.32265e-11
0.0251732
-6.38705e-05
5.76167e-11
0.0251749
-0.000126565
9.6916e-11
0.0251677
-0.00018289
1.56425e-10
0.0251555
-0.000237736
2.06836e-10
-0.000290934
2.07629e-10
0.0167144
0.00303046
-1.55484e-08
0.017588
0.00302439
2.35559e-09
0.0183595
0.00331381
1.41074e-09
0.0191001
0.00361385
-1.73771e-10
0.0198563
0.00381767
-2.00465e-10
0.0206403
0.00392706
1.96433e-10
0.0214425
0.00396121
7.37674e-10
0.0222411
0.00393603
1.23611e-09
0.0230111
0.0038559
1.60482e-09
0.0237389
0.00372352
1.86818e-09
0.0244075
0.0035443
2.05451e-09
0.0250122
0.00332446
2.17942e-09
0.0255422
0.00307296
2.23689e-09
0.0259992
0.00279753
2.22129e-09
0.0263792
0.0025072
2.13881e-09
0.026689
0.00220807
2.00959e-09
0.0269303
0.00190723
1.85565e-09
0.0271101
0.0016086
1.70064e-09
0.0272362
0.00131656
1.56269e-09
0.0273117
0.00103341
1.44871e-09
0.027347
0.00076122
1.36823e-09
0.0273412
0.000501169
1.31432e-09
0.0273008
0.000253443
1.27545e-09
0.0272279
1.92378e-05
1.29312e-09
0.027121
-0.000198481
1.29207e-09
0.0269859
-0.000402201
1.29962e-09
0.0268206
-0.000591798
1.30089e-09
0.0266308
-0.000767519
1.30547e-09
0.026419
-0.000930802
1.30682e-09
0.026186
-0.00108106
1.29839e-09
0.0259392
-0.00121992
1.29405e-09
0.0256787
-0.00134666
1.27434e-09
0.0254109
-0.00146268
1.26112e-09
0.0251342
-0.00156772
1.24069e-09
0.0248545
-0.00166284
1.21495e-09
0.0245801
-0.00174782
1.20274e-09
0.024314
-0.00182426
1.1399e-09
0.0240574
-0.00189142
1.11625e-09
0.0238032
-0.00195024
1.08313e-09
0.0235535
-0.00200006
1.03932e-09
0.023302
-0.0020415
1.00248e-09
0.023058
-0.0020741
9.37189e-10
0.0228142
-0.0020993
8.7247e-10
0.0225694
-0.00211516
8.10024e-10
0.0223205
-0.00212286
7.40206e-10
0.0220661
-0.0021211
6.62014e-10
0.0218083
-0.00211005
5.81748e-10
0.0215482
-0.00208975
4.93434e-10
0.0212954
-0.00205894
4.07617e-10
0.0210475
-0.0020171
3.02674e-10
0.020811
-0.00196217
2.46116e-10
0.0205846
-0.00190299
1.28211e-10
0.0203853
-0.00183102
1.5748e-11
0.0202152
-0.00174013
-1.61324e-10
0.0200768
-0.00162705
-2.91101e-10
0.019984
-0.00149227
-4.77225e-10
0.0199112
-0.00132551
-7.25578e-10
0.0198648
-0.0011393
-7.63851e-10
0.0198719
-0.000945559
-8.44274e-10
0.0199542
-0.000715207
-9.8939e-10
0.0200848
-0.000434134
-1.24748e-09
0.0202379
-0.000116301
-1.29529e-09
0.0204011
0.000210642
-1.16659e-09
0.0205541
0.000535826
-1.01011e-09
0.0206849
0.000839895
-7.55536e-10
0.020793
0.00111448
-6.31453e-10
0.0208801
0.001354
-4.89718e-10
0.0209629
0.001563
-4.13982e-10
0.0210408
0.00175088
-4.09647e-10
0.0210989
0.00192037
-4.08435e-10
0.0211352
0.00206795
-4.18207e-10
0.0211746
0.00218244
-4.65541e-10
0.0212161
0.00227847
-5.22072e-10
0.0212698
0.0023567
-6.18146e-10
0.0213298
0.00241853
-7.14588e-10
0.0213899
0.00247173
-8.14745e-10
0.0214573
0.00250068
-9.29744e-10
0.0215829
0.00247312
-9.75855e-10
0.0217377
0.00243338
-1.09549e-09
0.0218902
0.00238446
-1.25276e-09
0.0220906
0.00226767
-1.54581e-09
0.0223537
0.00210204
-1.72236e-09
0.0226561
0.0018929
-1.89875e-09
0.0229932
0.0016499
-1.9638e-09
0.0233378
0.00139216
-1.91689e-09
0.0236746
0.00113582
-1.7578e-09
0.023974
0.000900265
-1.48867e-09
0.0242302
0.000695649
-1.16676e-09
0.0244271
0.000526611
-8.41141e-10
0.0245752
0.000390661
-5.58585e-10
0.0246762
0.000281397
-3.46223e-10
0.0247411
0.000195155
-1.37525e-10
0.0247781
0.000123983
-6.37668e-11
0.0248017
5.54454e-05
-3.54994e-11
0.0248096
-6.62876e-06
2.26502e-11
0.024806
-6.46296e-05
7.26169e-11
0.0247901
-0.000117323
1.00703e-10
0.0247678
-0.000167723
1.30854e-10
0.0247397
-0.000215207
1.94325e-10
-0.000261877
2.00054e-10
0.0175007
0.00241863
-8.48419e-09
0.0178989
0.00266146
3.11875e-09
0.0182836
0.00290954
2.51558e-09
0.0186776
0.00315804
1.59217e-09
0.0191117
0.00334023
1.49256e-09
0.0196277
0.00342146
1.8525e-09
0.0202146
0.00343124
1.88336e-09
0.0208477
0.00338533
1.88758e-09
0.0214923
0.00329639
1.8636e-09
0.0221221
0.00316704
1.86328e-09
0.0227192
0.0030049
1.90686e-09
0.0232696
0.00281458
1.9795e-09
0.0237666
0.0026026
2.04252e-09
0.0242075
0.0023749
2.05987e-09
0.0245932
0.00213654
2.01538e-09
0.0249237
0.00189258
1.91397e-09
0.0252037
0.00164647
1.77704e-09
0.0254318
0.00140207
1.62785e-09
0.0256139
0.00116116
1.48993e-09
0.025748
0.00092662
1.37537e-09
0.0258387
0.000699061
1.29223e-09
0.0258866
0.000480524
1.23766e-09
0.0258916
0.000270983
1.21145e-09
0.0258604
7.1285e-05
1.18277e-09
0.0257916
-0.000116259
1.19055e-09
0.0256954
-0.000291462
1.21257e-09
0.0255695
-0.000454737
1.22527e-09
0.0254221
-0.000606487
1.23318e-09
0.0252558
-0.000747255
1.24963e-09
0.0250755
-0.000877573
1.25199e-09
0.0248889
-0.000998185
1.25726e-09
0.0246966
-0.00110972
1.25039e-09
0.0245027
-0.0012126
1.2377e-09
0.0243083
-0.00130707
1.23674e-09
0.024114
-0.00139316
1.23109e-09
0.0239193
-0.00147152
1.21377e-09
0.0237216
-0.00154197
1.18842e-09
0.0235198
-0.00160488
1.1692e-09
0.0233112
-0.00165984
1.13148e-09
0.0230924
-0.00170732
1.09355e-09
0.0228616
-0.00174695
1.04281e-09
0.0226188
-0.00177897
9.92993e-10
0.0223608
-0.00180322
9.25778e-10
0.0220864
-0.00181996
8.8461e-10
0.0218039
-0.00182862
8.19491e-10
0.0215142
-0.00183139
7.33762e-10
0.0212282
-0.00182623
6.51924e-10
0.0209483
-0.00181538
5.65223e-10
0.0206793
-0.00179547
4.7945e-10
0.0204252
-0.00176892
3.90986e-10
0.0201887
-0.00173075
3.02897e-10
0.0199635
-0.001684
2.42932e-10
0.0197586
-0.00163115
1.46199e-10
0.0195742
-0.00156605
2.74282e-11
0.0194145
-0.00148244
-9.52618e-11
0.0192865
-0.0013818
-2.68954e-10
0.0191968
-0.00125758
-4.30767e-10
0.0191359
-0.00110719
-6.90355e-10
0.0190977
-0.0009311
-7.27767e-10
0.0191105
-0.000751966
-8.04738e-10
0.0191954
-0.000539878
-9.64966e-10
0.0193356
-0.00028333
-1.25959e-09
0.0195025
2.06028e-05
-1.22335e-09
0.0196848
0.000336379
-1.25964e-09
0.0198632
0.000654001
-1.14528e-09
0.0200267
0.000953683
-1.02065e-09
0.0201652
0.00122697
-8.27399e-10
0.0202792
0.00146558
-7.10165e-10
0.0203797
0.00166998
-6.88163e-10
0.0204742
0.00184944
-6.65099e-10
0.0205624
0.00200202
-6.68469e-10
0.0206348
0.00213202
-6.81832e-10
0.0206982
0.00223418
-7.12368e-10
0.020757
0.00231355
-8.69261e-10
0.020821
0.00236649
-9.03619e-10
0.0209258
0.0023797
-9.89702e-10
0.0210743
0.00235526
-1.15936e-09
0.0212166
0.0023336
-1.2269e-09
0.0213838
0.00226351
-1.41519e-09
0.0216161
0.00214213
-1.66816e-09
0.0218929
0.00197289
-1.85539e-09
0.022207
0.00176451
-1.9739e-09
0.0225481
0.00152767
-2.0004e-09
0.0228884
0.00128259
-1.89919e-09
0.023214
0.00104525
-1.68808e-09
0.0234951
0.000833201
-1.39731e-09
0.0237289
0.000652565
-1.08281e-09
0.0239051
0.000505969
-7.8941e-10
0.0240329
0.000388795
-5.45578e-10
0.0241173
0.000294413
-3.63853e-10
0.0241675
0.000218132
-2.33323e-10
0.024193
0.000154587
-1.25089e-10
0.0242061
9.55925e-05
-4.86043e-11
0.0242022
3.97724e-05
-4.42147e-11
0.0241892
-1.33925e-05
-1.84807e-11
0.0241676
-6.23515e-05
4.03714e-11
0.0241395
-0.000108068
8.67838e-11
0.024105
-0.000152183
1.29769e-10
0.0240655
-0.000192931
1.92233e-10
-0.000233492
2.04285e-10
0.0175368
0.00195614
4.39819e-09
0.0178977
0.00233796
3.79149e-09
0.0181837
0.0026049
3.27081e-09
0.018456
0.00285986
3.12222e-09
0.0187603
0.00303686
2.66082e-09
0.0191317
0.00309962
2.61979e-09
0.0195793
0.00306608
2.29603e-09
0.0200766
0.00297777
1.90924e-09
0.020591
0.0028513
1.58349e-09
0.0210968
0.00269873
1.39084e-09
0.0215876
0.00252946
1.34297e-09
0.0220559
0.00234875
1.40703e-09
0.0225001
0.00216057
1.5171e-09
0.0229156
0.00196768
1.61175e-09
0.0232976
0.0017716
1.652e-09
0.0236402
0.0015739
1.62752e-09
0.0239391
0.00137581
1.55129e-09
0.0241896
0.00117879
1.44819e-09
0.0243905
0.000983987
1.34296e-09
0.0245411
0.000792876
1.25382e-09
0.0246427
0.000606431
1.18861e-09
0.0246989
0.000425992
1.14829e-09
0.0247112
0.000252267
1.12767e-09
0.0246878
8.58309e-05
1.11594e-09
0.0246331
-7.19752e-05
1.11962e-09
0.0245558
-0.000219971
1.13303e-09
0.024461
-0.000358176
1.14284e-09
0.024355
-0.000486856
1.15994e-09
0.0242424
-0.000606328
1.16531e-09
0.0241238
-0.000717663
1.17812e-09
0.0240003
-0.000820841
1.19581e-09
0.0238698
-0.000916923
1.21313e-09
0.0237339
-0.0010057
1.24288e-09
0.0235888
-0.00108806
1.24108e-09
0.0234324
-0.0011636
1.24649e-09
0.023262
-0.00123286
1.24471e-09
0.0230755
-0.00129529
1.23407e-09
0.0228709
-0.00135139
1.2159e-09
0.0226489
-0.00140067
1.18574e-09
0.0224129
-0.00144355
1.14742e-09
0.0221641
-0.00147982
1.10208e-09
0.0219029
-0.00151014
1.03845e-09
0.0216391
-0.00153384
9.81746e-10
0.0213769
-0.00155268
8.90608e-10
0.0211202
-0.00156524
8.25155e-10
0.0208683
-0.00157276
7.58385e-10
0.0206225
-0.0015739
6.92117e-10
0.0203809
-0.00156949
6.20358e-10
0.0201453
-0.00155842
5.46209e-10
0.0199158
-0.00154061
4.74542e-10
0.0196938
-0.00151527
3.90795e-10
0.0194821
-0.00148047
3.37343e-10
0.0192767
-0.00143893
2.56204e-10
0.0190879
-0.00139013
1.64102e-10
0.0189197
-0.00132916
5.57674e-11
0.018778
-0.00125309
-7.38064e-11
0.0186675
-0.00116089
-2.25867e-10
0.0185984
-0.00104748
-4.03981e-10
0.0185645
-0.000908168
-6.58294e-10
0.0185444
-0.000739004
-6.75019e-10
0.0185774
-0.000570441
-7.51138e-10
0.018669
-0.000372985
-1.00252e-09
0.0188227
-0.000136195
-1.35864e-09
0.0190017
0.00015414
-1.38561e-09
0.0191985
0.000458444
-1.4018e-09
0.0193923
0.000767601
-1.33464e-09
0.0195703
0.00106141
-1.17865e-09
0.0197244
0.00132789
-1.06165e-09
0.0198565
0.00155999
-9.23096e-10
0.0199719
0.00175504
-8.98378e-10
0.0200768
0.00191746
-9.01647e-10
0.0201791
0.00204963
-9.05722e-10
0.0202776
0.00215017
-9.47955e-10
0.0203811
0.00222049
-1.02361e-09
0.0204967
0.00225215
-1.18852e-09
0.0206312
0.00224393
-1.19297e-09
0.0207732
0.00220742
-1.34318e-09
0.0209595
0.00213174
-1.60161e-09
0.0211973
0.00200297
-1.83185e-09
0.0214767
0.00183249
-1.96357e-09
0.0217911
0.00162595
-2.03577e-09
0.0221211
0.00139844
-2.02012e-09
0.0224417
0.00116828
-1.88788e-09
0.0227361
0.000951337
-1.65799e-09
0.022982
0.00076208
-1.36494e-09
0.0231785
0.000604107
-1.06449e-09
0.0233214
0.000477959
-7.9496e-10
0.0234216
0.00037746
-5.81427e-10
0.0234838
0.000297085
-4.20222e-10
0.0235198
0.000229688
-3.07375e-10
0.0235336
0.000173484
-2.1332e-10
0.023535
0.000123092
-1.14573e-10
0.0235222
7.37864e-05
-1.02901e-10
0.0235016
2.66676e-05
-8.0632e-11
0.0234715
-1.81241e-05
-3.62411e-11
0.0234363
-5.94699e-05
4.8913e-11
0.0233943
-9.89089e-05
3.8604e-11
0.023351
-0.000136375
1.47433e-10
0.0233065
-0.000171269
1.90566e-10
-0.000206019
2.06249e-10
0.0168037
0.00134913
9.30551e-09
0.0174214
0.00181233
7.75812e-09
0.0178254
0.00221156
4.73744e-09
0.0181551
0.0025254
3.57953e-09
0.0184991
0.00271844
3.17206e-09
0.0188862
0.00277931
2.57888e-09
0.0193052
0.00272956
2.04582e-09
0.0197467
0.00261151
1.4419e-09
0.0201917
0.0024569
9.67261e-10
0.0206243
0.00228611
6.82977e-10
0.0210423
0.00211146
5.94601e-10
0.021444
0.00193868
6.6294e-10
0.0218314
0.00176983
8.21593e-10
0.0222016
0.00160454
9.98806e-10
0.0225476
0.00144241
1.13837e-09
0.0228616
0.00128227
1.21335e-09
0.0231361
0.00112366
1.22619e-09
0.0233658
0.000966323
1.19773e-09
0.0235478
0.000810463
1.15154e-09
0.023682
0.000656862
1.1078e-09
0.0237708
0.000506349
1.07648e-09
0.0238201
0.000360049
1.05974e-09
0.023835
0.000218867
1.05171e-09
0.0238241
8.31462e-05
1.04825e-09
0.0237947
-4.61233e-05
1.04702e-09
0.0237514
-0.000168016
1.05033e-09
0.0237011
-0.000282597
1.05704e-09
0.0236427
-0.000389866
1.06291e-09
0.0235778
-0.000489985
1.07472e-09
0.0235033
-0.000583721
1.09451e-09
0.0234163
-0.00067128
1.11993e-09
0.0233146
-0.000753221
1.15739e-09
0.0231955
-0.000829532
1.19056e-09
0.0230569
-0.000900616
1.21874e-09
0.0228997
-0.000966157
1.24491e-09
0.0227245
-0.00102642
1.25888e-09
0.0225332
-0.00108116
1.25876e-09
0.0223304
-0.00113049
1.24632e-09
0.0221184
-0.00117442
1.21683e-09
0.0219004
-0.00121296
1.17674e-09
0.0216807
-0.00124621
1.12275e-09
0.0214592
-0.00127437
1.05946e-09
0.0212388
-0.00129733
9.99227e-10
0.0210177
-0.00131556
9.23673e-10
0.0207956
-0.00132879
8.53818e-10
0.0205731
-0.00133716
7.87827e-10
0.0203482
-0.00134067
7.16981e-10
0.0201229
-0.00133902
6.50718e-10
0.0198957
-0.0013324
5.84276e-10
0.0196709
-0.00131995
5.22162e-10
0.0194471
-0.00130199
4.53065e-10
0.0192328
-0.00127688
3.85762e-10
0.0190239
-0.00124434
3.33185e-10
0.0188289
-0.00120721
2.57936e-10
0.0186514
-0.00116086
1.74771e-10
0.0184931
-0.00110416
7.75739e-11
0.0183657
-0.00103425
-4.55344e-11
0.0182666
-0.000949788
-1.99509e-10
0.0182078
-0.000845081
-3.73382e-10
0.0181867
-0.00071648
-6.48142e-10
0.0181776
-0.000555219
-6.83024e-10
0.018212
-0.000397018
-7.88765e-10
0.0182971
-0.000213329
-9.38133e-10
0.0184423
9.95718e-06
-1.22523e-09
0.01862
0.000275036
-1.46394e-09
0.0188147
0.000565047
-1.59714e-09
0.0190061
0.000861318
-1.54266e-09
0.0191824
0.00114378
-1.43204e-09
0.019337
0.00139651
-1.30422e-09
0.019472
0.00161212
-1.2109e-09
0.0195929
0.00178639
-1.19909e-09
0.019709
0.00192096
-1.23524e-09
0.0198268
0.00201752
-1.25603e-09
0.0199566
0.00207194
-1.36543e-09
0.0201092
0.0020773
-1.39697e-09
0.0202663
0.00205548
-1.52011e-09
0.0204536
0.00198217
-1.7041e-09
0.0206803
0.0018557
-1.90181e-09
0.0209416
0.00168545
-2.06511e-09
0.0212298
0.00148348
-2.13388e-09
0.0215247
0.00126627
-2.08334e-09
0.0218129
0.00105089
-1.93118e-09
0.022069
0.000854367
-1.68668e-09
0.0222818
0.000685768
-1.40284e-09
0.0224476
0.000548629
-1.12208e-09
0.0225671
0.000440321
-8.75798e-10
0.0226462
0.000355351
-6.78002e-10
0.0226962
0.000287158
-5.27657e-10
0.0227235
0.000229999
-4.15298e-10
0.0227315
0.000181251
-3.26253e-10
0.0227291
0.000137079
-2.25444e-10
0.0227227
9.50033e-05
-1.57978e-10
0.0227087
5.47066e-05
-1.21374e-10
0.0226856
1.57632e-05
-1.03341e-10
0.0226583
-2.07833e-05
-5.43089e-11
0.0226359
-5.71223e-05
2.91063e-11
0.0226121
-9.00077e-05
7.13207e-11
0.0225886
-0.000122399
9.72821e-11
0.0225631
-0.000150967
1.75857e-10
-0.000179935
2.21941e-10
0.0174372
0.0011066
1.10359e-08
0.0177268
0.00162563
9.26127e-09
0.0179787
0.00198574
4.97158e-09
0.0182461
0.00227008
2.85432e-09
0.0185637
0.00243908
2.04814e-09
0.0189342
0.00247341
1.4831e-09
0.0193342
0.00239751
1.0023e-09
0.0197413
0.00225368
4.96555e-10
0.02014
0.00208034
1.0342e-10
0.0205257
0.00190248
-1.36581e-10
0.020897
0.00173201
-1.97584e-10
0.0212544
0.00157246
-9.54233e-11
0.0215958
0.00142416
1.02961e-10
0.0219193
0.00128481
3.54715e-10
0.0222233
0.00115234
5.88368e-10
0.0225
0.0010241
7.6486e-10
0.0227416
0.000898272
8.70018e-10
0.0229388
0.000773961
9.19926e-10
0.0230881
0.000650781
9.38996e-10
0.0231897
0.000529199
9.48317e-10
0.0232507
0.000409821
9.59987e-10
0.0232802
0.00029366
9.74962e-10
0.0232874
0.000181396
9.8706e-10
0.0232813
7.35488e-05
9.9266e-10
0.0232669
-2.95739e-05
9.9334e-10
0.0232473
-0.0001277
9.85949e-10
0.023222
-0.000220563
9.82024e-10
0.0231877
-0.000308135
9.82812e-10
0.0231414
-0.000390506
9.94744e-10
0.0230794
-0.000468153
1.01841e-09
0.0229993
-0.000541265
1.05665e-09
0.0229004
-0.000610166
1.1011e-09
0.0227826
-0.000674833
1.1509e-09
0.0226485
-0.000735276
1.19906e-09
0.0224996
-0.000791544
1.23319e-09
0.0223394
-0.000843281
1.25844e-09
0.0221697
-0.000890667
1.26899e-09
0.0219931
-0.000933265
1.26385e-09
0.0218109
-0.000971402
1.23973e-09
0.0216237
-0.00100477
1.20056e-09
0.021432
-0.0010336
1.15008e-09
0.0212346
-0.00105793
1.08695e-09
0.021031
-0.00107797
1.01902e-09
0.020821
-0.00109356
9.47529e-10
0.0206036
-0.00110537
8.73553e-10
0.0203801
-0.00111271
8.06658e-10
0.0201503
-0.00111653
7.39762e-10
0.0199174
-0.00111585
6.80287e-10
0.0196827
-0.0011116
6.16948e-10
0.0194496
-0.00110274
5.5921e-10
0.0192214
-0.00108964
5.03695e-10
0.0190014
-0.00107148
4.44999e-10
0.0187941
-0.00104767
3.86024e-10
0.0185979
-0.00101822
3.32106e-10
0.0184201
-0.000983579
2.68009e-10
0.0182594
-0.000940418
1.87581e-10
0.0181226
-0.000888553
9.11659e-11
0.0180089
-0.000824731
-3.16318e-11
0.0179241
-0.000746601
-1.84901e-10
0.0178736
-0.000650549
-3.62066e-10
0.0178578
-0.000531075
-6.71783e-10
0.0178534
-0.000381562
-7.12391e-10
0.0178824
-0.000234527
-7.95717e-10
0.0179609
-6.52641e-05
-9.29982e-10
0.0180933
0.000133893
-1.23712e-09
0.0182558
0.000382749
-1.61881e-09
0.0184404
0.000650891
-1.75868e-09
0.0186286
0.000926038
-1.73928e-09
0.0188066
0.00118773
-1.66238e-09
0.0189694
0.00141866
-1.58465e-09
0.0191159
0.00160726
-1.49578e-09
0.0192549
0.00174847
-1.51542e-09
0.0193963
0.00184092
-1.55485e-09
0.0195485
0.00187883
-1.70241e-09
0.0197183
0.001866
-1.7508e-09
0.0199126
0.00181105
-1.97855e-09
0.0201425
0.00169738
-2.09917e-09
0.0204018
0.00153791
-2.19505e-09
0.0206764
0.00134636
-2.23085e-09
0.0209557
0.00114062
-2.17198e-09
0.0212183
0.000940163
-1.99952e-09
0.0214481
0.000760407
-1.75867e-09
0.0216378
0.000609558
-1.48604e-09
0.0217819
0.000489293
-1.22448e-09
0.021884
0.000396061
-1.00027e-09
0.0219546
0.000323881
-8.15986e-10
0.0219983
0.000266567
-6.71308e-10
0.0220209
0.000219072
-5.51605e-10
0.0220324
0.000177516
-4.60186e-10
0.022036
0.000140048
-3.5712e-10
0.0220331
0.00010567
-2.34968e-10
0.0220253
7.14886e-05
-2.19455e-10
0.0220191
3.8276e-05
-1.89946e-10
0.0220146
6.23774e-06
-1.38195e-10
0.0220081
-2.3787e-05
-4.56907e-11
0.0220035
-5.34275e-05
3.23602e-11
0.0219994
-8.11945e-05
7.11751e-11
0.0219997
-0.000107714
1.27867e-10
0.0220007
-0.000131235
1.84823e-10
-0.000154745
1.98525e-10
0.0166499
0.000629789
1.39388e-08
0.0172551
0.00114119
1.04853e-08
0.0176936
0.00157455
4.55609e-09
0.0181096
0.00187386
1.7059e-09
0.018557
0.00203627
7.04581e-10
0.0190202
0.00206552
2.4598e-10
0.0194741
0.0019884
-1.11682e-11
0.0199049
0.00184813
-3.48587e-10
0.020314
0.00168375
-6.16894e-10
0.0207025
0.00152132
-7.66394e-10
0.021065
0.00137158
-7.96639e-10
0.0214008
0.00123661
-6.89515e-10
0.0217119
0.0011147
-4.50271e-10
0.0219969
0.0010031
-1.61888e-10
0.0222529
0.000898826
1.27632e-10
0.0224723
0.000799103
3.73852e-10
0.0226524
0.000701813
5.53529e-10
0.0227912
0.000605891
6.77135e-10
0.0228904
0.000511137
7.62822e-10
0.0229562
0.000417693
8.27419e-10
0.0229965
0.000326148
8.80327e-10
0.0230204
0.000237031
9.21915e-10
0.0230353
0.000150908
9.47284e-10
0.0230446
6.80166e-05
9.5547e-10
0.0230498
-1.21499e-05
9.44944e-10
0.0230468
-8.77611e-05
9.26285e-10
0.0230342
-0.000161232
9.0979e-10
0.0230071
-0.000231032
9.01245e-10
0.022963
-0.000297604
9.10279e-10
0.0229
-0.000360776
9.40242e-10
0.0228177
-0.000420954
9.85139e-10
0.022718
-0.000477691
1.04402e-09
0.0226019
-0.00053148
1.10714e-09
0.0224733
-0.000581484
1.16911e-09
0.0223333
-0.000628411
1.22201e-09
0.0221853
-0.000671147
1.26247e-09
0.0220299
-0.000710646
1.27754e-09
0.0218679
-0.000745663
1.27805e-09
0.0216999
-0.000777263
1.25838e-09
0.0215247
-0.000804358
1.21904e-09
0.021342
-0.000828077
1.16438e-09
0.021152
-0.00084743
1.10262e-09
0.0209527
-0.000863708
1.02797e-09
0.0207451
-0.000875891
9.56446e-10
0.0205272
-0.000885339
8.81961e-10
0.0203015
-0.000891004
8.14247e-10
0.0200687
-0.000894133
7.50401e-10
0.0198316
-0.000893723
6.91675e-10
0.0195936
-0.000890717
6.38612e-10
0.0193566
-0.000884221
5.87256e-10
0.0191257
-0.000874682
5.39719e-10
0.018903
-0.000861451
4.91037e-10
0.0186917
-0.000844173
4.39122e-10
0.0184945
-0.000822181
3.91406e-10
0.0183111
-0.000796295
3.33671e-10
0.0181458
-0.000764527
2.61055e-10
0.0179976
-0.000726029
1.78919e-10
0.0178695
-0.000679317
8.35137e-11
0.0177619
-0.00062233
-3.85479e-11
0.0176801
-0.000552245
-1.90916e-10
0.0176258
-0.000466338
-3.89681e-10
0.0176042
-0.000356131
-6.87296e-10
0.0175942
-0.000223991
-7.27516e-10
0.017617
-9.07391e-05
-8.22459e-10
0.017683
5.93415e-05
-1.01147e-09
0.0178098
0.000236621
-1.36656e-09
0.0179686
0.000462002
-1.69581e-09
0.0181565
0.000703241
-1.87484e-09
0.0183549
0.000950194
-1.91031e-09
0.0185533
0.00118007
-1.90322e-09
0.0187438
0.00137658
-1.88395e-09
0.0189274
0.00152396
-1.88823e-09
0.0191125
0.00161376
-1.9567e-09
0.0193099
0.00163885
-1.9571e-09
0.0195172
0.00161011
-2.13365e-09
0.0197556
0.00151921
-2.2743e-09
0.0200161
0.00137952
-2.36129e-09
0.0202884
0.00120572
-2.36563e-09
0.0205579
0.00101734
-2.27564e-09
0.0208053
0.000833717
-2.09185e-09
0.0210185
0.000669874
-1.84514e-09
0.0211917
0.000534181
-1.5859e-09
0.0213209
0.000427578
-1.34071e-09
0.0214133
0.000346305
-1.13183e-09
0.0214766
0.00028465
-9.62505e-10
0.0215147
0.000236653
-8.20885e-10
0.0215353
0.000197504
-7.01418e-10
0.0215466
0.000163748
-5.96654e-10
0.02155
0.000133481
-5.03786e-10
0.0215456
0.000104677
-3.93721e-10
0.0215435
7.81307e-05
-2.6191e-10
0.0215438
5.14521e-05
-2.48178e-10
0.0215445
2.50554e-05
-2.11883e-10
0.0215443
-8.9287e-07
-1.43145e-10
0.0215472
-2.48069e-05
-3.30096e-11
0.0215555
-4.80705e-05
2.06001e-12
0.0215648
-7.0681e-05
5.11219e-11
0.0215789
-9.16613e-05
1.14771e-10
0.0215939
-0.000110184
1.8691e-10
-0.000128359
1.94593e-10
0.0171804
0.000453241
1.20457e-08
0.0173944
0.00100942
9.11078e-09
0.0177037
0.00132201
3.42324e-09
0.0180989
0.00153294
5.86486e-10
0.0185566
0.00164141
-2.32481e-10
0.0190272
0.00164126
-4.14595e-10
0.0194781
0.00155427
-7.71165e-10
0.0199037
0.00142068
-9.61979e-10
0.0203069
0.00127537
-1.10464e-09
0.0206925
0.00113882
-1.1937e-09
0.0210569
0.00101763
-1.19248e-09
0.0213911
0.000912274
-1.07429e-09
0.0216893
0.000819156
-8.56807e-10
0.0219534
0.000735338
-5.55338e-10
0.0221848
0.000657631
-2.35678e-10
0.0223801
0.000583934
5.43634e-11
0.0225332
0.000512694
2.96263e-10
0.0226443
0.000442749
4.79335e-10
0.0227188
0.000373975
6.21208e-10
0.0227693
0.000306287
7.34167e-10
0.0228063
0.000240178
8.23459e-10
0.0228391
0.00017579
8.88022e-10
0.0228712
0.000113514
9.23397e-10
0.0229014
5.34526e-05
9.32869e-10
0.0229244
-3.09967e-06
8.92296e-10
0.0229398
-6.07573e-05
8.78135e-10
0.0229399
-0.000114305
8.54343e-10
0.022922
-0.000166141
8.40717e-10
0.0228844
-0.000216434
8.48316e-10
0.022828
-0.000264485
8.7904e-10
0.0227524
-0.000310812
9.29863e-10
0.0226613
-0.000354479
9.99465e-10
0.0225549
-0.000396222
1.07402e-09
0.022437
-0.000434812
1.14967e-09
0.0223083
-0.00047116
1.21403e-09
0.022171
-0.000504029
1.26183e-09
0.022026
-0.000534295
1.29154e-09
0.0218729
-0.000561058
1.29274e-09
0.021712
-0.000584907
1.27637e-09
0.021541
-0.000605451
1.23671e-09
0.0213592
-0.000622867
1.18439e-09
0.0211653
-0.000637408
1.11736e-09
0.0209582
-0.000648795
1.04478e-09
0.0207389
-0.000657877
9.69408e-10
0.0205084
-0.00066401
8.96874e-10
0.0202688
-0.000668311
8.27832e-10
0.0200239
-0.000669856
7.67592e-10
0.0197759
-0.000669981
7.08047e-10
0.0195304
-0.000667208
6.6097e-10
0.0192894
-0.000663236
6.1038e-10
0.0190579
-0.000656002
5.69903e-10
0.0188367
-0.000647211
5.24172e-10
0.0186289
-0.000634751
4.80813e-10
0.0184355
-0.000619549
4.36454e-10
0.018255
-0.000600749
3.82012e-10
0.0180879
-0.000578216
3.24686e-10
0.0179353
-0.000550871
2.49629e-10
0.0177967
-0.000518038
1.63431e-10
0.0176751
-0.000478197
6.38147e-11
0.017572
-0.000429773
-7.21279e-11
0.0174904
-0.000369611
-2.12531e-10
0.0174392
-0.000296524
-4.37163e-10
0.0174109
-0.000196324
-7.40227e-10
0.0174071
-9.17129e-05
-7.8786e-10
0.0174362
2.16472e-05
-9.03017e-10
0.0175097
0.000148756
-1.11922e-09
0.0176433
0.000302191
-1.53038e-09
0.0178154
0.000495966
-1.83126e-09
0.0180225
0.000701424
-2.0366e-09
0.0182478
0.000908049
-2.15807e-09
0.0184836
0.00109268
-2.23652e-09
0.0187227
0.00123579
-2.28066e-09
0.0189658
0.00131981
-2.34766e-09
0.0192182
0.00133548
-2.42633e-09
0.0194865
0.00128794
-2.52093e-09
0.0197666
0.00118256
-2.57656e-09
0.0200495
0.00103828
-2.55276e-09
0.0203204
0.000876059
-2.42372e-09
0.0205664
0.000715762
-2.21638e-09
0.0207736
0.000572402
-1.95744e-09
0.0209373
0.000453513
-1.69482e-09
0.021061
0.000360468
-1.461e-09
0.0211474
0.000290209
-1.26115e-09
0.0212053
0.000237621
-1.09809e-09
0.021243
0.000197635
-9.63655e-10
0.0212648
0.000165974
-8.44039e-10
0.0212726
0.000139519
-7.352e-10
0.0212756
0.000116026
-6.3373e-10
0.0212741
9.47297e-05
-5.42998e-10
0.021265
7.37754e-05
-4.17322e-10
0.0212581
5.41857e-05
-2.89647e-10
0.0212541
3.4466e-05
-2.72374e-10
0.021251
1.48166e-05
-2.31434e-10
0.021246
-4.42907e-06
-1.5901e-10
0.0212441
-2.31437e-05
-3.4319e-11
0.0212464
-4.05953e-05
6.69462e-13
0.0212491
-5.75878e-05
6.39833e-11
0.0212551
-7.30247e-05
1.21169e-10
0.021262
-8.76317e-05
1.91566e-10
-9.91203e-05
1.90325e-10
0.016899
0.000367267
1.0601e-08
0.0170279
0.000910109
7.5554e-09
0.0173868
0.00109381
3.06851e-09
0.0178478
0.00118308
1.8904e-10
0.0183422
0.00121711
-6.68178e-10
0.0188285
0.00117834
-8.73392e-10
0.0192868
0.00108368
-1.03441e-09
0.0197167
0.000965284
-1.22861e-09
0.0201271
0.000848563
-1.36617e-09
0.0205222
0.00074551
-1.43224e-09
0.0208984
0.000658183
-1.41308e-09
0.0212456
0.000584536
-1.29856e-09
0.0215519
0.000520962
-1.07434e-09
0.0218196
0.000464006
-7.79249e-10
0.0220504
0.000411513
-4.40692e-10
0.0222454
0.000362047
-1.22229e-10
0.0223992
0.000314383
1.53144e-10
0.0225128
0.000267995
3.75691e-10
0.0225924
0.000222733
5.59026e-10
0.022652
0.000178566
7.03388e-10
0.022702
0.000135774
8.13619e-10
0.0227508
9.44254e-05
8.89545e-10
0.0227999
5.47752e-05
9.25984e-10
0.0228455
1.65448e-05
9.2056e-10
0.0228841
-1.93606e-05
9.1895e-10
0.0229059
-5.39948e-05
8.61769e-10
0.0229105
-8.78085e-05
8.19359e-10
0.022897
-0.000120311
7.97702e-10
0.0228646
-0.000151711
8.00434e-10
0.0228166
-0.000182058
8.32003e-10
0.0227521
-0.0002113
8.87012e-10
0.0226741
-0.000239308
9.63054e-10
0.022582
-0.000265951
1.04615e-09
0.022477
-0.000291001
1.12983e-09
0.0223606
-0.000314407
1.20445e-09
0.022232
-0.000335884
1.25846e-09
0.0220942
-0.000355452
1.29561e-09
0.0219443
-0.000372963
1.30029e-09
0.0217848
-0.000388389
1.28829e-09
0.021611
-0.000401802
1.24625e-09
0.0214248
-0.000413082
1.19426e-09
0.0212224
-0.000422531
1.1232e-09
0.0210056
-0.000429929
1.05087e-09
0.0207747
-0.000435889
9.72684e-10
0.0205326
-0.000439783
9.01493e-10
0.0202816
-0.000442773
8.31334e-10
0.020028
-0.000443623
7.73696e-10
0.0197728
-0.000443845
7.16733e-10
0.0195232
-0.000441998
6.71538e-10
0.01928
-0.00043941
6.27423e-10
0.0190469
-0.000434784
5.86858e-10
0.0188259
-0.000428984
5.48424e-10
0.0186164
-0.000421085
5.04948e-10
0.0184212
-0.000411034
4.63088e-10
0.0182376
-0.000398986
4.12476e-10
0.0180677
-0.00038435
3.56873e-10
0.0179082
-0.000366882
3.00222e-10
0.0177596
-0.000345844
2.21602e-10
0.0176243
-0.00032073
1.34274e-10
0.0175025
-0.00029007
1.7461e-11
0.0173994
-0.000252855
-1.07087e-10
0.0173184
-0.000206375
-2.89875e-10
0.0172727
-0.000148256
-4.9194e-10
0.0172414
-6.95418e-05
-8.51787e-10
0.0172457
6.47478e-06
-8.94498e-10
0.0172905
9.00426e-05
-1.00314e-09
0.0173876
0.000186313
-1.22905e-09
0.0175438
0.000308258
-1.67397e-09
0.0177494
0.000454426
-2.03425e-09
0.0179988
0.000610669
-2.33415e-09
0.0182789
0.000758218
-2.54139e-09
0.0185824
0.000875453
-2.70567e-09
0.0188981
0.000943814
-2.79458e-09
0.0192197
0.00095148
-2.87445e-09
0.0195445
0.00090129
-2.87565e-09
0.0198602
0.000806417
-2.79369e-09
0.0201547
0.000686695
-2.62258e-09
0.020413
0.000562511
-2.37351e-09
0.0206279
0.000448901
-2.09551e-09
0.0207969
0.00035368
-1.8229e-09
0.020922
0.000278845
-1.58432e-09
0.0210113
0.000222253
-1.38887e-09
0.0210707
0.000180124
-1.22708e-09
0.0211063
0.000148581
-1.09198e-09
0.0211263
0.000124283
-9.74509e-10
0.021135
0.000104676
-8.63705e-10
0.021131
8.80599e-05
-7.61023e-10
0.0211251
7.30801e-05
-6.55439e-10
0.0211155
5.94383e-05
-5.73812e-10
0.0211013
4.59274e-05
-4.10129e-10
0.0210893
3.27786e-05
-3.67271e-10
0.0210819
1.97364e-05
-2.83819e-10
0.0210761
6.60363e-06
-2.15735e-10
0.0210686
-6.41957e-06
-1.55493e-10
0.0210629
-1.89253e-05
-4.38693e-11
0.0210608
-3.06815e-05
6.76675e-12
0.0210585
-4.19724e-05
8.65835e-11
0.0210573
-5.24281e-05
1.19307e-10
0.0210548
-6.18831e-05
1.89951e-10
-6.9016e-05
1.92361e-10
0.0162886
0.000155917
1.26294e-08
0.0167302
0.000474442
8.31422e-09
0.0173218
0.000593412
2.63441e-09
0.0179621
0.000636148
-3.61716e-10
0.0185872
0.000642636
-1.07775e-09
0.0191661
0.000610228
-1.07179e-09
0.0196895
0.000549996
-1.18107e-09
0.020164
0.000481584
-1.37972e-09
0.0206025
0.000418474
-1.51294e-09
0.0210098
0.000364901
-1.56589e-09
0.0213822
0.000320748
-1.52944e-09
0.0217097
0.000283834
-1.42267e-09
0.021984
0.000252049
-1.21232e-09
0.0222055
0.000223509
-9.24816e-10
0.0223843
0.000197036
-5.79896e-10
0.0225285
0.00017198
-2.53295e-10
0.0226321
0.00014788
5.51569e-11
0.0226948
0.000124511
2.98155e-10
0.0227264
0.000101908
5.1385e-10
0.0227462
8.00343e-05
6.84871e-10
0.0227695
5.90101e-05
8.13507e-10
0.0228038
3.88204e-05
8.97379e-10
0.0228468
1.96768e-05
9.33739e-10
0.0228886
2.01346e-06
9.26053e-10
0.022922
-1.56914e-05
8.82012e-10
0.0229386
-3.19428e-05
8.30432e-10
0.0229342
-4.76059e-05
7.86484e-10
0.0229097
-6.28529e-05
7.62728e-10
0.0228666
-7.76728e-05
7.66208e-10
0.0228081
-9.21049e-05
8.01592e-10
0.0227355
-0.00010612
8.62492e-10
0.0226514
-0.000119651
9.45561e-10
0.0225553
-0.000132656
1.0359e-09
0.0224485
-0.000144927
1.12736e-09
0.0223316
-0.000156544
1.20887e-09
0.0222037
-0.000167156
1.26878e-09
0.0220672
-0.000176971
1.31029e-09
0.0219186
-0.000185653
1.31777e-09
0.0217599
-0.000193393
1.30668e-09
0.021587
-0.000200047
1.26459e-09
0.0214013
-0.000205677
1.21155e-09
0.0211993
-0.000210364
1.13829e-09
0.0209848
-0.000214052
1.06623e-09
0.0207551
-0.000217002
9.84782e-10
0.020517
-0.000218977
9.13958e-10
0.0202704
-0.000220436
8.43249e-10
0.0200209
-0.000220925
7.83104e-10
0.0197718
-0.00022096
7.29711e-10
0.0195262
-0.000220143
6.80728e-10
0.0192878
-0.00021866
6.40778e-10
0.0190563
-0.000216498
5.97243e-10
0.0188361
-0.000213383
5.64156e-10
0.0186233
-0.000209526
5.2031e-10
0.0184222
-0.000204514
4.81773e-10
0.0182295
-0.000198434
4.34801e-10
0.0180473
-0.000191232
3.85696e-10
0.0178744
-0.000182483
3.24021e-10
0.017715
-0.000172352
2.55546e-10
0.0175643
-0.000159937
1.71918e-10
0.0174308
-0.000145342
7.28985e-11
0.0173116
-0.000127287
-4.04967e-11
0.0172128
-0.00010498
-2.11594e-10
0.0171438
-7.78985e-05
-3.55507e-10
0.0170996
-3.83758e-05
-7.97091e-10
0.0170944
-1.58609e-07
-8.45498e-10
0.0171286
4.18892e-05
-9.45047e-10
0.0172085
8.91522e-05
-1.14578e-09
0.0173454
0.00014737
-1.53422e-09
0.0175402
0.000223847
-1.9703e-09
0.0177959
0.000307372
-2.40043e-09
0.0181104
0.000389643
-2.76272e-09
0.0184698
0.000456638
-3.02595e-09
0.0188563
0.000495266
-3.18656e-09
0.0192471
0.000497425
-3.22526e-09
0.0196216
0.000464639
-3.1216e-09
0.0199631
0.000407358
-2.90118e-09
0.0202575
0.000339201
-2.60277e-09
0.0204995
0.000272417
-2.28114e-09
0.020689
0.000214328
-1.98156e-09
0.0208294
0.000167694
-1.72628e-09
0.02093
0.000132089
-1.52038e-09
0.020998
0.00010554
-1.35474e-09
0.0210392
8.57992e-05
-1.2154e-09
0.0210616
7.08863e-05
-1.09458e-09
0.0210699
5.92479e-05
-9.8417e-10
0.021066
4.97292e-05
-8.75524e-10
0.0210553
4.16151e-05
-7.77477e-10
0.0210446
3.42553e-05
-6.66351e-10
0.0210276
2.74192e-05
-5.87445e-10
0.0210117
2.11859e-05
-4.21701e-10
0.0210006
1.42522e-05
-4.02521e-10
0.0209957
7.52814e-06
-3.18786e-10
0.0209903
1.07625e-06
-2.13564e-10
0.0209857
-5.53644e-06
-1.19938e-10
0.0209838
-1.16041e-05
-2.527e-11
0.0209854
-1.77367e-05
-1.70362e-11
0.0209877
-2.33139e-05
1.03717e-10
0.0209902
-2.85189e-05
1.22659e-10
0.0209906
-3.305e-05
1.94613e-10
-3.59459e-05
1.9751e-10
0.0161618
1.19673e-08
0.0166365
7.87882e-09
0.0173537
2.5964e-09
0.0180698
-5.77474e-10
0.0187283
-1.39309e-09
0.0193262
-1.29641e-09
0.0198654
-1.31874e-09
0.0203532
-1.47403e-09
0.0207977
-1.61852e-09
0.0212026
-1.65726e-09
0.0215649
-1.61072e-09
0.0218769
-1.49069e-09
0.0221323
-1.27311e-09
0.0223312
-9.84212e-10
0.0224822
-6.33956e-10
0.0225953
-3.0025e-10
0.0226732
2.61398e-11
0.02271
2.79287e-10
0.0227122
5.04676e-10
0.0227057
6.89904e-10
0.022713
8.2588e-10
0.0227437
9.1087e-10
0.0227911
9.41385e-10
0.0228424
9.21335e-10
0.0228834
8.7831e-10
0.022905
8.19834e-10
0.0229033
7.69312e-10
0.0228789
7.43443e-10
0.0228341
7.47087e-10
0.0227733
7.84519e-10
0.022698
8.47302e-10
0.022612
9.34007e-10
0.0225144
1.02687e-09
0.0224078
1.12261e-09
0.022292
1.20681e-09
0.0221662
1.26958e-09
0.0220324
1.31345e-09
0.0218861
1.32196e-09
0.0217295
1.31192e-09
0.021558
1.27011e-09
0.0213733
1.21654e-09
0.0211722
1.14305e-09
0.0209587
1.0706e-09
0.0207305
9.8841e-10
0.0204944
9.17548e-10
0.0202507
8.47325e-10
0.0200038
7.85467e-10
0.0197586
7.35181e-10
0.0195149
6.83715e-10
0.0192789
6.46349e-10
0.0190489
6.03277e-10
0.0188283
5.69405e-10
0.018616
5.28528e-10
0.018413
4.89359e-10
0.0182194
4.4452e-10
0.018034
3.93596e-10
0.0178589
3.36701e-10
0.0176936
2.70573e-10
0.0175384
1.89097e-10
0.0173986
9.65958e-11
0.0172723
-1.4169e-11
0.0171673
-1.72133e-10
0.0170876
-3.03972e-10
0.0170354
-7.50051e-10
0.0170243
-7.92007e-10
0.0170535
-8.85436e-10
0.0171273
-1.06858e-09
0.017255
-1.38372e-09
0.0174444
-1.99543e-09
0.0177077
-2.43792e-09
0.0180447
-2.88758e-09
0.0184416
-3.25017e-09
0.0188731
-3.45326e-09
0.0193057
-3.45659e-09
0.0197091
-3.26583e-09
0.0200616
-2.94349e-09
0.0203531
-2.57064e-09
0.0205838
-2.21895e-09
0.0207579
-1.91862e-09
0.0208848
-1.6806e-09
0.0209739
-1.49395e-09
0.021031
-1.34228e-09
0.0210641
-1.21231e-09
0.0210794
-1.09646e-09
0.0210791
-9.88547e-10
0.0210678
-8.78286e-10
0.0210518
-7.85441e-10
0.0210336
-6.68806e-10
0.0210103
-5.88525e-10
0.0209902
-4.41669e-10
0.0209794
-3.94511e-10
0.0209735
-2.9281e-10
0.0209647
-2.2057e-10
0.0209595
-1.74317e-10
0.0209578
-4.97021e-11
0.0209605
1.93573e-11
0.0209641
1.31801e-10
0.0209669
1.1853e-10
0.0209673
2.02978e-10
1.99577e-10
0.00744873
0.00884722
-1.43109e-11
0.00282532
0.00462036
-6.36312e-11
-0.00143344
0.00425568
-1.21959e-10
-0.00331471
0.00188142
-6.49197e-11
-0.00459119
0.00127531
-9.73182e-11
-0.00525872
0.000665091
-1.13962e-10
-0.0054934
0.000232092
-1.18281e-10
-0.00580095
0.000305751
-1.08737e-10
-0.00614881
0.000345602
-1.08205e-10
-0.00644575
0.000294309
-1.08835e-10
-0.00666631
0.000217379
-9.13611e-11
-0.00683377
0.000165862
-9.82321e-11
-0.00695114
0.000117832
-8.3157e-11
-0.00705064
9.43823e-05
-9.71394e-11
-0.00716308
0.000103586
-1.19473e-10
-0.00724833
7.48765e-05
-1.73272e-10
-0.00727774
1.87667e-05
-1.81408e-10
-0.00725859
-3.39679e-05
-2.14341e-10
-0.00718403
-9.19872e-05
-2.16412e-10
-0.00704733
-0.000155508
-2.49007e-10
-0.00684929
-0.000217058
-2.44548e-10
-0.00660037
-0.000266203
-2.16145e-10
-0.00631494
-0.000300982
-1.93877e-10
-0.00599669
-0.000330819
-1.65156e-10
-0.00566091
-0.000345589
-1.21458e-10
-0.00531225
-0.000355231
-8.11834e-11
-0.0049528
-0.000362559
-4.6588e-11
-0.00458464
-0.000369669
-1.97105e-11
-0.00420503
-0.00037948
-4.14288e-12
-0.00381288
-0.000389483
1.12743e-11
-0.00341039
-0.000399074
2.35934e-11
-0.00298922
-0.000417259
2.97086e-11
-0.00255561
-0.000428954
3.56495e-11
-0.00211736
-0.000433232
3.81235e-11
-0.00167781
-0.000435156
3.50538e-11
-0.0012369
-0.00043711
2.98111e-11
-0.000792413
-0.000440438
2.59469e-11
-0.000345701
-0.000442998
1.90246e-11
0.000119176
-0.000462459
8.90861e-13
0.000576183
-0.000456078
-1.12868e-11
0.00101383
-0.000438133
-3.34781e-11
0.00143353
-0.000421052
-4.74308e-11
0.00184275
-0.000410929
-5.75405e-11
0.002237
-0.00039704
-5.3346e-11
0.00261564
-0.000382689
-8.19192e-11
0.00298099
-0.000370255
-8.77716e-11
0.00334056
-0.000364918
-9.85912e-11
0.0036941
-0.00036034
-9.23235e-11
0.00403529
-0.00034833
-9.91964e-11
0.00436216
-0.000334573
-1.22106e-10
0.00467596
-0.000321951
-1.25542e-10
0.00497641
-0.000309572
-1.26786e-10
0.0052651
-0.000297498
-1.06952e-10
0.00554088
-0.00028561
-1.03335e-10
0.00580518
-0.000273405
-9.79211e-11
0.00605844
-0.000261882
-1.09868e-10
0.00630064
-0.000249953
-9.9239e-11
0.00653276
-0.0002387
-8.10651e-11
0.00675433
-0.000227266
-6.67298e-11
0.00696648
-0.000216381
-5.41818e-11
0.00716929
-0.000205518
-4.31311e-11
0.00736232
-0.000195161
-4.20521e-11
0.00754644
-0.00018481
-2.06049e-11
0.00772179
-0.000175059
-6.10332e-12
0.00788874
-0.000165323
7.99045e-12
0.00804714
-0.000156172
2.14056e-11
0.00819824
-0.000147051
3.38465e-11
0.0083412
-0.000138543
4.52238e-11
0.00847714
-0.000130003
5.52531e-11
0.00860601
-0.000122094
6.39515e-11
0.00872741
-0.000114108
7.13606e-11
0.00884276
-0.000106688
7.74158e-11
0.00895049
-9.92379e-05
8.24694e-11
0.00905239
-9.22363e-05
8.64096e-11
0.00914732
-8.52954e-05
8.95576e-11
0.00923612
-7.87239e-05
9.18987e-11
0.00931873
-7.22878e-05
9.35887e-11
0.00939531
-6.61939e-05
9.47088e-11
0.00946615
-6.02757e-05
9.5348e-11
0.00953146
-5.46578e-05
9.56176e-11
0.00959139
-4.92278e-05
9.56047e-11
0.00964627
-4.40323e-05
9.53792e-11
0.00969631
-3.90407e-05
9.50186e-11
0.00974152
-3.42711e-05
9.46065e-11
0.00978256
-2.9689e-05
9.42354e-11
0.00981887
-2.52812e-05
9.38944e-11
0.00985161
-2.11196e-05
9.36142e-11
0.00987986
-1.70574e-05
9.33277e-11
0.00990454
-1.30174e-05
9.30961e-11
0.00992548
-9.41403e-06
9.28434e-11
0.00994284
-5.9061e-06
9.24858e-11
0.00995703
-2.2735e-06
9.20783e-11
0.0099671
1.13867e-06
9.17299e-11
0.00997504
4.22414e-06
9.13388e-11
0.00997867
7.55174e-06
9.07197e-11
0.00997936
1.13498e-05
9.00333e-11
0.00997493
1.57064e-05
8.89258e-11
0.00996547
2.11601e-05
8.74527e-11
0.00994853
2.81478e-05
8.56173e-11
3.69979e-05
8.41344e-11
0.0114612
0.0132526
-2.08886e-11
0.00790206
0.00817768
-5.75068e-11
0.00602861
0.00612457
-7.70551e-11
0.00354502
0.00436301
-6.81404e-11
0.00179923
0.0030193
-9.70923e-11
0.0002348
0.00222525
-1.241e-10
-0.00125333
0.00172094
-1.28722e-10
-0.00231665
0.00137304
-1.072e-10
-0.00301429
0.00104597
-1.06341e-10
-0.00347852
0.000759587
-1.1391e-10
-0.00376745
0.000505688
-1.17457e-10
-0.00400461
0.000403069
-8.77829e-11
-0.00422877
0.000341602
-7.98743e-11
-0.00438516
0.000246929
-8.76356e-11
-0.00448571
0.00019678
-1.48768e-10
-0.00454249
0.000122949
-1.74505e-10
-0.00453285
-1.27333e-06
-1.50201e-10
-0.00445889
-0.000122412
-2.23249e-10
-0.00432141
-0.000247628
-2.48911e-10
-0.00410942
-0.000388362
-2.44636e-10
-0.00383843
-0.000510384
-2.56534e-10
-0.00352504
-0.000600828
-2.35035e-10
-0.00318624
-0.000657814
-1.98682e-10
-0.00282335
-0.000710854
-1.7297e-10
-0.00245523
-0.00072908
-1.36421e-10
-0.00207892
-0.000743206
-9.15366e-11
-0.00169657
-0.000754457
-6.60626e-11
-0.00130436
-0.000770001
-3.90429e-11
-0.000900199
-0.000788038
-1.19586e-11
-0.000484609
-0.000806975
-1.85308e-12
-5.11875e-05
-0.000832389
1.65261e-11
0.000376533
-0.000845552
1.20835e-11
0.000801063
-0.000853444
2.10378e-11
0.00122412
-0.000855467
2.57533e-11
0.00164946
-0.000859125
2.33969e-11
0.002072
-0.00085908
1.79474e-11
0.00249122
-0.000858221
1.48013e-11
0.00290691
-0.000856975
1.0994e-11
0.00330226
-0.000856734
-2.41474e-12
0.0036918
-0.000845831
-1.17389e-11
0.00407978
-0.000826449
-2.24721e-11
0.00446467
-0.000806301
-4.2371e-11
0.00483889
-0.000785398
-3.93245e-11
0.00520461
-0.000763415
-4.87734e-11
0.00555757
-0.000737464
-5.98131e-11
0.00589779
-0.000713066
-6.35174e-11
0.00622441
-0.000693628
-8.61487e-11
0.00654332
-0.000682169
-8.27434e-11
0.00685085
-0.000659521
-8.73865e-11
0.00714745
-0.000635134
-9.21255e-11
0.00743021
-0.00060931
-1.12132e-10
0.00770116
-0.000584992
-1.13232e-10
0.00795811
-0.000560067
-9.44524e-11
0.00820379
-0.00053629
-9.1511e-11
0.00843746
-0.000512133
-8.77399e-11
0.00865947
-0.000488837
-9.55121e-11
0.00887058
-0.000465363
-8.44568e-11
0.00907085
-0.000442806
-7.19543e-11
0.0092605
-0.000420187
-6.09658e-11
0.0094405
-0.000398497
-5.00755e-11
0.00961076
-0.000376924
-4.14996e-11
0.00977177
-0.000356243
-3.99066e-11
0.00992414
-0.000335799
-2.01229e-11
0.0100674
-0.000316284
-6.90741e-12
0.0102024
-0.000297067
6.04489e-12
0.0103292
-0.000278781
1.85219e-11
0.0104474
-0.000260847
3.02875e-11
0.0105586
-0.000243759
4.10856e-11
0.0106612
-0.000227107
5.08761e-11
0.0107578
-0.000211112
5.94803e-11
0.0108463
-0.000195622
6.69232e-11
0.010929
-0.000180645
7.31899e-11
0.0110044
-0.000166199
7.84625e-11
0.0110739
-0.000152186
8.27536e-11
0.0111366
-0.000138741
8.62183e-11
0.0111936
-0.000125726
8.89274e-11
0.0112443
-0.000113319
9.09785e-11
0.0112897
-0.000101381
9.24488e-11
0.0113292
-9.004e-05
9.34327e-11
0.0113638
-7.91538e-05
9.40075e-11
0.0113931
-6.87914e-05
9.42836e-11
0.0114176
-5.8826e-05
9.42727e-11
0.0114375
-4.93214e-05
9.4131e-11
0.0114528
-4.03019e-05
9.38582e-11
0.0114644
-3.15283e-05
9.36624e-11
0.0114716
-2.33576e-05
9.33509e-11
0.0114757
-1.55354e-05
9.31091e-11
0.0114757
-8.05923e-06
9.27786e-11
0.0114722
-3.76592e-07
9.25043e-11
0.0114662
5.27082e-06
9.22103e-11
0.0114574
1.13212e-05
9.19002e-11
0.0114464
1.73511e-05
9.16149e-11
0.0114322
2.33882e-05
9.10268e-11
0.0114158
2.93699e-05
9.06047e-11
0.011396
3.56651e-05
8.99484e-11
0.0113737
4.24687e-05
8.92359e-11
0.0113476
5.03459e-05
8.80692e-11
0.0113176
5.97849e-05
8.65329e-11
0.0112824
7.18699e-05
8.45698e-11
8.74602e-05
8.28377e-11
0.0153004
0.0151542
-2.71874e-11
0.012777
0.0106989
-4.2094e-11
0.0105843
0.00831505
-5.61272e-11
0.00847709
0.00646588
-6.47799e-11
0.00649896
0.00499254
-8.76399e-11
0.0048169
0.00389956
-1.08558e-10
0.00340993
0.00312486
-1.12833e-10
0.00226773
0.00251743
-1.07696e-10
0.0013054
0.0020114
-1.08591e-10
0.000451485
0.00161523
-1.20001e-10
-0.000348337
0.00130693
-1.25935e-10
-0.000994109
0.00104968
-8.39829e-11
-0.00146048
0.00080591
-8.82315e-11
-0.00178124
0.000564245
-9.59299e-11
-0.0019213
0.00032962
-1.46999e-10
-0.00192511
0.000119988
-1.71157e-10
-0.00181458
-0.000122481
-1.66486e-10
-0.00165956
-0.000292122
-2.07107e-10
-0.00145005
-0.000476421
-2.35353e-10
-0.00115025
-0.000710947
-2.7289e-10
-0.000800642
-0.000886357
-2.70605e-10
-0.00041725
-0.00101032
-2.35674e-10
-6.76271e-06
-0.00108951
-1.73346e-10
0.000375099
-0.00111809
-2.35056e-10
0.000764358
-0.00113825
-1.47108e-10
0.00115705
-0.00115252
-1.13711e-10
0.0015572
-0.00116899
-8.2223e-11
0.00196615
-0.00119084
-4.74465e-11
0.00238003
-0.00121255
-2.85908e-11
0.00280041
-0.00123659
-1.51381e-11
0.00321793
-0.00125958
-7.479e-12
0.00363939
-0.0012766
-3.07119e-12
0.00406395
-0.00128657
3.10572e-12
0.00449178
-0.00129223
8.23633e-12
0.0049163
-0.00129265
8.06621e-12
0.00533839
-0.00129079
3.74179e-12
0.00575394
-0.00128362
-7.63905e-13
0.00616163
-0.00127432
-1.80718e-12
0.00655448
-0.0012603
-7.71091e-12
0.00693808
-0.00124063
-1.45813e-11
0.00731259
-0.00121354
-2.02328e-11
0.00767784
-0.00118335
-3.55072e-11
0.00802986
-0.00115065
-3.28735e-11
0.00836972
-0.00111572
-5.30134e-11
0.00869675
-0.00107797
-5.06583e-11
0.00900943
-0.00103824
-5.30451e-11
0.00930434
-0.00100204
-5.83096e-11
0.00958217
-0.000973603
-6.7169e-11
0.00985085
-0.000942328
-7.08107e-11
0.0101075
-0.000905993
-7.42803e-11
0.0103524
-0.00086776
-7.71006e-11
0.0105827
-0.000828828
-8.18786e-11
0.0108009
-0.00079099
-9.36036e-11
0.0110057
-0.000753565
-7.83832e-11
0.0111987
-0.000717165
-7.77636e-11
0.0113796
-0.000681256
-7.5931e-11
0.0115499
-0.000646166
-6.86437e-11
0.0117091
-0.000611635
-6.0768e-11
0.0118591
-0.00057791
-5.25797e-11
0.0119986
-0.000544964
-4.36494e-11
0.0121294
-0.000512801
-4.03465e-11
0.0122504
-0.000481595
-3.74061e-11
0.012363
-0.000451179
-1.97299e-11
0.0124669
-0.000421814
-8.4099e-12
0.0125625
-0.000393281
2.91222e-12
0.0126509
-0.000365803
1.41184e-11
0.0127313
-0.000339183
2.48666e-11
0.0128051
-0.000313585
3.50195e-11
0.0128717
-0.000288774
4.44742e-11
0.0129319
-0.000264946
5.2955e-11
0.0129855
-0.000241871
6.04262e-11
0.0130327
-0.000219676
6.69817e-11
0.013074
-0.000198189
7.26366e-11
0.013109
-0.000177604
7.74215e-11
0.0131387
-0.000157655
8.14274e-11
0.0131625
-0.00013869
8.47049e-11
0.0131816
-0.000120411
8.73534e-11
0.0131953
-0.000103156
8.93986e-11
0.0132048
-8.65619e-05
9.09734e-11
0.0132093
-7.08992e-05
9.20741e-11
0.0132099
-5.58447e-05
9.28703e-11
0.0132057
-4.15077e-05
9.32467e-11
0.0131984
-2.79932e-05
9.34958e-11
0.013187
-1.52436e-05
9.34767e-11
0.013173
-2.82065e-06
9.35305e-11
0.0131562
7.63067e-06
9.32791e-11
0.0131381
1.7635e-05
9.3075e-11
0.0131172
2.73383e-05
9.27249e-11
0.0130949
3.6783e-05
9.2333e-11
0.0130695
4.55879e-05
9.19422e-11
0.0130414
5.4045e-05
9.14516e-11
0.0130116
6.23515e-05
9.11325e-11
0.0129787
7.04938e-05
9.04753e-11
0.0129444
7.86529e-05
8.99891e-11
0.012907
8.69307e-05
8.91482e-11
0.0128679
9.57574e-05
8.8323e-11
0.0128259
0.000105577
8.70267e-11
0.0127816
0.00011717
8.53698e-11
0.0127344
0.000131513
8.32236e-11
0.00015015
8.12312e-11
0.0174121
0.0159071
-2.61153e-11
0.0157118
0.0123962
-3.71549e-11
0.0140601
0.00996454
-4.44338e-11
0.0123359
0.00818488
-6.21413e-11
0.010633
0.00669004
-7.86275e-11
0.00898375
0.0055407
-9.79144e-11
0.00745939
0.00464138
-1.02613e-10
0.00609819
0.00387121
-1.01871e-10
0.00493173
0.00317636
-1.00537e-10
0.0039618
0.00258595
-1.10005e-10
0.00314169
0.00212786
-1.11678e-10
0.00246338
0.00172876
-8.33316e-11
0.00191293
0.00135461
-9.24554e-11
0.00148657
0.000985415
-1.12218e-10
0.00118547
0.000622455
-1.57389e-10
0.00103646
0.000259268
-1.74543e-10
0.00105215
-0.000151269
-2.03633e-10
0.00123054
-0.000489733
-2.03368e-10
0.0015123
-0.000784186
-2.45674e-10
0.0018737
-0.00110063
-2.54043e-10
0.00228379
-0.00132813
-2.64255e-10
0.00270409
-0.0014635
-2.30862e-10
0.00312394
-0.00154088
-1.98613e-10
0.0035487
-0.00157342
-1.92692e-10
0.00397482
-0.00159116
-1.55833e-10
0.00440615
-0.00160696
-1.14665e-10
0.00484566
-0.00162852
-9.78592e-11
0.00528952
-0.00165277
-6.60306e-11
0.00573911
-0.00167818
-4.82773e-11
0.00618952
-0.0017016
-4.4863e-11
0.00663931
-0.00172239
-2.57901e-11
0.007086
-0.00173613
-2.07107e-11
0.00753084
-0.00174266
-2.1483e-11
0.00796915
-0.00174187
-1.3795e-11
0.00840104
-0.00173458
-9.2274e-12
0.00882223
-0.00172239
-9.10468e-12
0.0092307
-0.00170344
-1.10349e-11
0.00962454
-0.00168006
-1.22681e-11
0.010002
-0.00165022
-1.61306e-11
0.0103643
-0.00161555
-1.59073e-11
0.0107116
-0.001574
-1.94736e-11
0.0110437
-0.00152923
-3.00738e-11
0.0113588
-0.00148077
-2.66067e-11
0.0116595
-0.00143115
-4.14791e-11
0.0119449
-0.00137849
-4.98093e-11
0.0122141
-0.00132348
-5.12737e-11
0.0124632
-0.00126804
-5.44233e-11
0.0126895
-0.00121828
-5.9261e-11
0.0129043
-0.00117676
-5.9361e-11
0.0131072
-0.00112855
-6.16774e-11
0.0132962
-0.00107678
-6.39264e-11
0.0134728
-0.00102492
-6.36925e-11
0.0136362
-0.000973218
-6.43634e-11
0.0137876
-0.000923078
-6.35831e-11
0.0139272
-0.000873734
-6.12944e-11
0.0140555
-0.000826019
-5.7944e-11
0.0141735
-0.000779092
-5.37539e-11
0.0142811
-0.000733789
-4.86613e-11
0.0143793
-0.000689186
-4.2828e-11
0.0144684
-0.000646211
-3.62001e-11
0.014549
-0.000604002
-3.87056e-11
0.0146217
-0.000563431
-3.48175e-11
0.0146862
-0.000523768
-1.95771e-11
0.0147438
-0.000485691
-1.04985e-11
0.0147937
-0.00044867
-1.11478e-12
0.014837
-0.000413125
8.39802e-12
0.0148734
-0.000378712
1.79099e-11
0.0149031
-0.000345621
2.72111e-11
0.0149267
-0.000313668
3.60338e-11
0.0149437
-0.000282861
4.43335e-11
0.014955
-0.000253134
5.21215e-11
0.0149603
-0.00022446
5.90808e-11
0.0149602
-0.00019688
6.5264e-11
0.0149547
-0.000170254
7.06934e-11
0.014944
-0.000144848
7.53727e-11
0.0149288
-0.00012044
7.9377e-11
0.014909
-9.73592e-05
8.28e-11
0.0148851
-7.52796e-05
8.55935e-11
0.0148573
-5.43794e-05
8.79451e-11
0.0148258
-3.44677e-05
8.97582e-11
0.0147911
-1.5826e-05
9.12157e-11
0.0147532
1.96322e-06
9.21461e-11
0.0147142
1.70343e-05
9.28586e-11
0.0146733
3.19233e-05
9.32231e-11
0.0146308
4.61289e-05
9.33307e-11
0.0145858
5.95873e-05
9.32802e-11
0.014538
7.22505e-05
9.30883e-11
0.0144888
8.44297e-05
9.28318e-11
0.0144369
9.60513e-05
9.23933e-11
0.0143841
0.00010714
9.19742e-11
0.0143285
0.000117661
9.13196e-11
0.0142727
0.000127735
9.0828e-11
0.0142143
0.000137565
9.0003e-11
0.0141557
0.000147128
8.93141e-11
0.0140949
0.000156813
8.82639e-11
0.0140337
0.000166676
8.72309e-11
0.0139709
0.000177514
8.57503e-11
0.0139074
0.000189753
8.39278e-11
0.0138429
0.000204651
8.15583e-11
0.000223791
7.92227e-11
0.0185718
0.0161941
-2.57408e-11
0.0175387
0.0134284
-3.25764e-11
0.0163153
0.0111858
-3.96835e-11
0.0150291
0.0094669
-5.65784e-11
0.0136827
0.00803067
-7.22678e-11
0.0123341
0.00688216
-8.58517e-11
0.0110116
0.00595349
-9.49117e-11
0.00973433
0.00513994
-9.49311e-11
0.00849666
0.00440416
-8.12084e-11
0.00735076
0.00372455
-8.3666e-11
0.00636467
0.00310981
-8.60039e-11
0.00554767
0.00254086
-9.48423e-11
0.00489876
0.00199816
-1.10633e-10
0.00441696
0.00145738
-1.30457e-10
0.00411002
0.000915711
-1.33281e-10
0.00397502
0.000376869
-1.86328e-10
0.00395407
-0.000154525
-1.97655e-10
0.00412951
-0.000693751
-1.89601e-10
0.00448381
-0.00117462
-2.41812e-10
0.00489837
-0.00155636
-2.23039e-10
0.0053648
-0.00183567
-2.37751e-10
0.00584633
-0.0019914
-2.15025e-10
0.00633501
-0.0020747
-1.92262e-10
0.00682355
-0.00210507
-1.76875e-10
0.00730618
-0.00211079
-1.55954e-10
0.00778558
-0.00211924
-1.30595e-10
0.00825929
-0.00213263
-1.08298e-10
0.00872873
-0.00215056
-1.01828e-10
0.00919185
-0.00216804
-7.38936e-11
0.00964913
-0.00218405
-6.30746e-11
0.0100954
-0.00219297
-5.49698e-11
0.0105316
-0.00219404
-5.77583e-11
0.0109534
-0.00218466
-5.05947e-11
0.0113623
-0.00216667
-3.55132e-11
0.011754
-0.00214057
-3.61628e-11
0.0121275
-0.00210769
-2.41702e-11
0.0124818
-0.00206875
-2.19592e-11
0.012816
-0.00202401
-2.16011e-11
0.0131304
-0.00197441
-2.07075e-11
0.0134264
-0.00191986
-2.66359e-11
0.0137059
-0.00186127
-2.61936e-11
0.0139693
-0.00179913
-2.55187e-11
0.0142185
-0.00173474
-2.10411e-11
0.0144508
-0.00166906
-2.35723e-11
0.0146671
-0.0016017
-3.30519e-11
0.0148668
-0.00153122
-2.68345e-11
0.0150502
-0.00146001
-3.54548e-11
0.015215
-0.00139262
-3.77974e-11
0.0153629
-0.00133445
-3.67837e-11
0.0155004
-0.00127643
-3.72222e-11
0.0156291
-0.00121594
-3.89115e-11
0.0157475
-0.00115447
-4.07623e-11
0.0158561
-0.00109252
-4.17872e-11
0.0159545
-0.00103216
-4.19791e-11
0.0160437
-0.000972744
-4.15139e-11
0.0161234
-0.000915473
-4.04717e-11
0.0161946
-0.000859184
-3.87676e-11
0.0162572
-0.000804949
-3.63397e-11
0.0163115
-0.000751709
-3.33356e-11
0.0163583
-0.000700384
-3.14584e-11
0.0163972
-0.000650177
-3.61784e-11
0.0164295
-0.000601772
-3.27361e-11
0.0164547
-0.000554662
-2.28904e-11
0.0164744
-0.000509254
-1.33207e-11
0.0164876
-0.000465281
-5.98184e-12
0.016496
-0.000422893
1.92906e-12
0.0164985
-0.000381976
1.01205e-11
0.0164967
-0.000342493
1.8548e-11
0.0164894
-0.00030442
2.68866e-11
0.0164781
-0.000267652
3.50287e-11
0.0164616
-0.000232204
4.27814e-11
0.0164413
-0.000198008
5.00397e-11
0.0164161
-0.000165106
5.68115e-11
0.0163874
-0.000133487
6.2744e-11
0.0163541
-0.000103275
6.81585e-11
0.0163175
-7.45232e-05
7.29879e-11
0.016277
-4.72203e-05
7.73507e-11
0.0162335
-2.16503e-05
8.1056e-11
0.0161873
2.38941e-06
8.43629e-11
0.0161394
2.39955e-05
8.69743e-11
0.0160902
4.46385e-05
8.92387e-11
0.0160388
6.41129e-05
9.09121e-11
0.0159849
8.25608e-05
9.22911e-11
0.0159275
9.98613e-05
9.30421e-11
0.0158688
0.000116582
9.35995e-11
0.0158065
0.000132251
9.36489e-11
0.0157429
0.000147236
9.35939e-11
0.0156763
0.00016129
9.33001e-11
0.0156084
0.000174722
9.28261e-11
0.0155386
0.0001874
9.22958e-11
0.0154671
0.000199402
9.14243e-11
0.0153947
0.000210781
9.07064e-11
0.0153207
0.000221623
8.95532e-11
0.0152466
0.000232086
8.86102e-11
0.0151715
0.000242308
8.71946e-11
0.0150967
0.000252578
8.58888e-11
0.0150216
0.000263318
8.40609e-11
0.0149473
0.000275213
8.1996e-11
0.0148738
0.000289036
7.92877e-11
0.000306752
7.63537e-11
0.0193705
0.0162259
-2.13485e-11
0.0187018
0.0140937
-2.85241e-11
0.0178262
0.0120602
-3.71121e-11
0.0168688
0.0104214
-5.11027e-11
0.0158265
0.00906792
-6.89589e-11
0.0147728
0.0079309
-7.92291e-11
0.0137105
0.00700655
-8.45787e-11
0.0126419
0.00619878
-7.32419e-11
0.0115803
0.00545273
-8.06498e-11
0.0105437
0.00474891
-9.43078e-11
0.00957998
0.0040596
-1.11674e-10
0.0087189
0.00338685
-1.3417e-10
0.00800303
0.00269671
-1.72558e-10
0.00745328
0.00198788
-1.59217e-10
0.00708967
0.00125062
-1.72517e-10
0.00692777
0.000505806
-1.78849e-10
0.00696644
-0.000235522
-2.02644e-10
0.00719125
-0.000963884
-1.94505e-10
0.00758487
-0.00161944
-1.85758e-10
0.00808105
-0.00210803
-1.75292e-10
0.00860791
-0.00242036
-1.6879e-10
0.00914752
-0.00258473
-1.21496e-10
0.00967885
-0.00265548
-1.67736e-10
0.0101976
-0.00267376
-1.80219e-10
0.0106979
-0.00265634
-1.87024e-10
0.0111784
-0.00264167
-1.71795e-10
0.0116357
-0.00263004
-1.39064e-10
0.012069
-0.00262238
-1.24616e-10
0.0124823
-0.00261594
-1.25604e-10
0.0128748
-0.00260691
-1.02672e-10
0.0132481
-0.00259292
-1.01848e-10
0.0136017
-0.00257108
-9.20928e-11
0.013937
-0.00254035
-8.23537e-11
0.0142535
-0.00250123
-7.20567e-11
0.0145519
-0.00245477
-5.28611e-11
0.0148324
-0.00240237
-5.19316e-11
0.0150954
-0.00234471
-3.59562e-11
0.0153423
-0.00228276
-3.07147e-11
0.0155744
-0.00221732
-3.35039e-11
0.0157918
-0.00214743
-2.31442e-11
0.0159957
-0.0020742
-2.56947e-11
0.0161852
-0.00199784
-2.08099e-11
0.0163617
-0.00191996
-1.74995e-11
0.0165253
-0.00184122
-1.61894e-11
0.0166777
-0.00176249
-1.63462e-11
0.0168188
-0.00168042
-1.6473e-11
0.0169491
-0.00159761
-1.68301e-11
0.0170667
-0.00151727
-1.75667e-11
0.0171705
-0.0014443
-1.91156e-11
0.017264
-0.00137631
-2.02787e-11
0.0173506
-0.0013086
-2.08984e-11
0.017429
-0.0012398
-2.18578e-11
0.0175002
-0.00117026
-2.32473e-11
0.0175629
-0.00110188
-2.46014e-11
0.0176177
-0.00103443
-2.56942e-11
0.0176645
-0.000969103
-2.64688e-11
0.0177033
-0.00090512
-2.68909e-11
0.017735
-0.000843248
-2.69091e-11
0.0177588
-0.000782797
-2.67086e-11
0.0177763
-0.000724276
-3.01411e-11
0.0177862
-0.000667291
-3.30804e-11
0.0177903
-0.000612104
-3.13761e-11
0.0177876
-0.000558575
-2.62063e-11
0.0177797
-0.000506769
-1.6422e-11
0.0177661
-0.000456681
-1.09915e-11
0.0177479
-0.000408238
-4.67619e-12
0.0177248
-0.000361478
2.21863e-12
0.0176974
-0.000316248
9.67892e-12
0.0176656
-0.0002726
1.74286e-11
0.0176298
-0.000230382
2.52995e-11
0.0175901
-0.00018969
3.31075e-11
0.0175465
-0.000150426
4.05768e-11
0.0174997
-0.000112753
4.78499e-11
0.017449
-7.64453e-05
5.40136e-11
0.0173959
-4.23566e-05
6.04184e-11
0.0173397
-9.99054e-06
6.60625e-11
0.0172828
1.95331e-05
7.14759e-11
0.0172237
4.71765e-05
7.61243e-11
0.017164
7.34678e-05
8.02787e-11
0.0171004
9.83784e-05
8.37226e-11
0.0170355
0.000121835
8.67924e-11
0.0169669
0.000144186
8.91042e-11
0.0168971
0.000165139
9.1152e-11
0.0168238
0.000185105
9.2424e-11
0.0167492
0.000203726
9.34561e-11
0.0166719
0.000221615
9.38364e-11
0.0165931
0.000238133
9.39616e-11
0.0165124
0.000254043
9.37473e-11
0.0164299
0.000268616
9.32016e-11
0.0163465
0.000282712
9.26018e-11
0.0162611
0.000295528
9.15143e-11
0.0161757
0.000307911
9.05833e-11
0.0160886
0.000319166
8.90874e-11
0.0160018
0.000330108
8.783e-11
0.0159142
0.000340234
8.60057e-11
0.0158275
0.000350342
8.43365e-11
0.0157409
0.000360266
8.20888e-11
0.015656
0.000371009
7.96662e-11
0.0155725
0.000382863
7.65698e-11
0.000397499
7.29618e-11
0.0199437
0.0162044
-1.9793e-11
0.0195461
0.0144897
-2.61886e-11
0.0188656
0.0127359
-3.65597e-11
0.0181213
0.0111619
-4.86477e-11
0.0173238
0.00985995
-6.32953e-11
0.0164845
0.00876323
-7.20551e-11
0.0156508
0.00783271
-6.6539e-11
0.014807
0.00702965
-7.93114e-11
0.0139619
0.00628583
-1.00396e-10
0.0131152
0.00557523
-1.29427e-10
0.0123063
0.00484413
-1.83988e-10
0.0115721
0.00409657
-2.20279e-10
0.0109413
0.00329299
-2.42029e-10
0.0104483
0.00244925
-2.26171e-10
0.0101259
0.00153573
-2.19379e-10
0.0100208
0.000571058
-2.27457e-10
0.0100978
-0.000357873
-1.94011e-10
0.0103417
-0.00124911
-1.22309e-10
0.0107056
-0.0020275
-1.25223e-10
0.0111164
-0.00255794
-9.21838e-11
0.0115279
-0.00286483
-6.56771e-11
0.0120123
-0.00309976
-6.48513e-11
0.0124827
-0.00315412
-8.22911e-11
0.012871
-0.00310109
-1.35155e-10
0.013306
-0.0031285
-2.24585e-10
0.0137263
-0.00309902
-1.95666e-10
0.0141207
-0.00305911
-1.9767e-10
0.0144863
-0.00301801
-1.6721e-10
0.0148255
-0.00298198
-1.51148e-10
0.0151433
-0.00294907
-1.49425e-10
0.0154422
-0.00291416
-1.2533e-10
0.0157239
-0.00287335
-1.2542e-10
0.0159906
-0.00282565
-1.02883e-10
0.016242
-0.00277073
-9.96602e-11
0.01648
-0.00270939
-7.64275e-11
0.0167043
-0.00264217
-6.28996e-11
0.0169162
-0.00257046
-5.9449e-11
0.0171169
-0.00249574
-4.86868e-11
0.0173057
-0.00241696
-3.18146e-11
0.0174833
-0.0023348
-3.15561e-11
0.0176503
-0.00224988
-2.27032e-11
0.017807
-0.00216261
-1.54388e-11
0.0179541
-0.00207404
-1.33766e-11
0.0180912
-0.00198482
-1.34133e-11
0.018219
-0.00189647
-7.30067e-12
0.0183366
-0.0018045
-7.01584e-12
0.0184453
-0.0017124
-6.56372e-12
0.0185431
-0.00162123
-6.12882e-12
0.0186277
-0.00153445
-5.90724e-12
0.0187029
-0.00145756
-5.83547e-12
0.0187688
-0.00138045
-7.10221e-12
0.0188263
-0.00130418
-8.91378e-12
0.0188772
-0.00122787
-1.20445e-11
0.0189204
-0.00115243
-1.81746e-11
0.0189562
-0.00107776
-2.22319e-11
0.0189842
-0.00100489
-2.3977e-11
0.0190046
-0.000933599
-2.40358e-11
0.0190179
-0.000864341
-2.40519e-11
0.0190238
-0.000796896
-2.45259e-11
0.0190234
-0.000731368
-2.61199e-11
0.0190162
-0.000667742
-2.9991e-11
0.0190031
-0.000605926
-3.06747e-11
0.0189838
-0.000546076
-2.9191e-11
0.0189592
-0.000487979
-2.48871e-11
0.0189292
-0.000431847
-1.62675e-11
0.0188946
-0.000377395
-1.14058e-11
0.0188552
-0.000324815
-5.68777e-12
0.0188117
-0.000273819
8.75821e-13
0.0187639
-0.000224584
8.03005e-12
0.018712
-0.000176882
1.55976e-11
0.0186561
-0.000130969
2.33509e-11
0.0185966
-8.66649e-05
3.09708e-11
0.0185337
-4.44414e-05
3.85392e-11
0.0184673
-3.90718e-06
4.45496e-11
0.0184006
3.2081e-05
5.23701e-11
0.0183318
6.70659e-05
5.94599e-11
0.0182607
0.000100145
6.55407e-11
0.0181859
0.000131379
7.09476e-11
0.0181093
0.000160899
7.59594e-11
0.0180292
0.000188886
8.01597e-11
0.0179474
0.000215267
8.3977e-11
0.0178624
0.000240258
8.69377e-11
0.017776
0.0002637
8.95765e-11
0.017687
0.000285873
9.13941e-11
0.0175965
0.000306539
9.28731e-11
0.0175043
0.000326131
9.36538e-11
0.0174104
0.000344285
9.40215e-11
0.0173156
0.000361478
9.39516e-11
0.017219
0.000377299
9.34166e-11
0.017122
0.000392232
9.27342e-11
0.0170235
0.000405886
9.15114e-11
0.0169252
0.000418667
9.03204e-11
0.0168257
0.000430297
8.85469e-11
0.0167269
0.000441106
8.68814e-11
0.0166278
0.000450999
8.46492e-11
0.01653
0.000460268
8.2477e-11
0.0164327
0.000469094
7.97335e-11
0.0163376
0.000477893
7.67621e-11
0.0162443
0.000487314
7.31838e-11
0.000498065
6.8669e-11
0.0204279
0.0161287
-1.6176e-11
0.0201743
0.0147426
-2.7532e-11
0.0196814
0.0132269
-3.67947e-11
0.0190486
0.0117897
-4.73132e-11
0.0183897
0.0105133
-5.37079e-11
0.0177113
0.00943339
-5.68205e-11
0.0170252
0.00850879
-7.225e-11
0.0163492
0.00769215
-9.70502e-11
0.0156826
0.00693215
-1.38285e-10
0.0150373
0.00619779
-1.97735e-10
0.0144376
0.00541091
-2.58389e-10
0.0138788
0.00461289
-2.91166e-10
0.0133647
0.00376626
-3.1095e-10
0.0130044
0.0027663
-3.09866e-10
0.0128564
0.00162967
-3.11271e-10
0.0128447
0.000550512
-1.83758e-10
0.0129769
-0.000528006
-1.381e-10
0.0132023
-0.00151327
-1.18685e-10
0.0134315
-0.00228319
-4.55258e-11
0.0136326
-0.00276616
1.04171e-10
0.0138373
-0.00308429
1.21022e-11
0.013991
-0.00326695
-3.31869e-12
0.0142786
-0.00346128
-4.1854e-11
0.0147085
-0.00355689
-1.32154e-10
0.0150401
-0.00349198
-1.85737e-10
0.0153872
-0.00348603
-2.287e-10
0.0157598
-0.00347187
-2.47913e-10
0.0161079
-0.00340347
-2.21502e-10
0.0164329
-0.00334162
-2.14036e-10
0.0167317
-0.00327986
-1.79413e-10
0.0170094
-0.00322078
-1.73126e-10
0.0172686
-0.00316002
-1.55949e-10
0.0175146
-0.00309602
-1.39206e-10
0.0177477
-0.00302709
-1.11392e-10
0.0179709
-0.00295247
-1.04956e-10
0.0181838
-0.00287356
-8.73273e-11
0.0183868
-0.0027894
-6.24862e-11
0.0185784
-0.00270118
-4.91662e-11
0.0187589
-0.00260895
-3.62063e-11
0.018928
-0.00251428
-3.33517e-11
0.0190861
-0.00241712
-2.0259e-11
0.0192329
-0.00231807
-1.485e-11
0.0193688
-0.00221731
-8.27924e-12
0.0194938
-0.00211697
-3.13248e-12
0.0196083
-0.00201685
1.83504e-12
0.0197145
-0.00191679
2.54754e-12
0.0198117
-0.00181433
3.65612e-12
0.0198981
-0.00171241
4.80618e-12
0.0199732
-0.00161288
5.70649e-12
0.020034
-0.00152201
6.5258e-12
0.0200852
-0.00143497
4.80639e-12
0.0201282
-0.001351
3.10554e-12
0.0201635
-0.00126743
6.1642e-13
0.0201914
-0.00118516
-2.70865e-12
0.0202113
-0.00110342
-6.50861e-12
0.0202243
-0.00102349
-1.03308e-11
0.020229
-0.000944992
-1.79725e-11
0.0202269
-0.000868678
-2.23393e-11
0.0202167
-0.000794279
-2.37294e-11
0.0201999
-0.000722033
-2.40573e-11
0.0201756
-0.000651845
-2.46127e-11
0.0201453
-0.000583692
-2.65633e-11
0.0201087
-0.000517631
-3.03136e-11
0.020067
-0.000453518
-3.00886e-11
0.02002
-0.000391445
-2.71393e-11
0.0199684
-0.000331229
-2.0049e-11
0.0199121
-0.000272914
-1.30682e-11
0.0198515
-0.000216374
-7.39285e-12
0.0197865
-0.000161613
-8.08093e-13
0.0197179
-0.000108659
6.39213e-12
0.0196455
-5.77004e-05
1.39973e-11
0.0195704
-9.18936e-06
2.14958e-11
0.019494
3.60165e-05
2.96935e-11
0.0194166
7.91001e-05
3.90173e-11
0.0193363
0.000119556
4.59532e-11
0.0192533
0.000157897
5.27422e-11
0.0191685
0.000194406
5.94854e-11
0.0190806
0.000228876
6.55572e-11
0.0189913
0.000261525
7.13143e-11
0.0188987
0.000292296
7.61904e-11
0.018805
0.000321317
8.07047e-11
0.0187084
0.000348646
8.42953e-11
0.018611
0.000374248
8.74787e-11
0.0185113
0.000398361
8.98246e-11
0.0184105
0.000420759
9.16819e-11
0.0183081
0.00044187
9.28766e-11
0.0182042
0.000461321
9.34692e-11
0.0180995
0.000479617
9.36375e-11
0.017993
0.000496325
9.31399e-11
0.0178864
0.000511919
9.24722e-11
0.017778
0.000526033
9.11153e-11
0.0176703
0.000538994
8.9744e-11
0.0175612
0.000550611
8.76861e-11
0.0174533
0.000561006
8.5666e-11
0.0173449
0.000570253
8.29976e-11
0.0172382
0.000578282
8.03062e-11
0.0171322
0.000585507
7.69917e-11
0.0170289
0.000591786
7.33493e-11
0.0169277
0.00059811
6.91834e-11
0.000604432
6.3549e-11
0.0208034
0.0160139
-1.69197e-11
0.0206644
0.0148775
-2.20716e-11
0.0203143
0.0135754
-2.78346e-11
0.0198228
0.0122773
-3.68355e-11
0.0192521
0.0110768
-4.93561e-11
0.0186715
0.0100065
-6.76295e-11
0.0180962
0.00907094
-9.39134e-11
0.0175279
0.00824243
-1.23986e-10
0.0169968
0.0074383
-1.8369e-10
0.0165286
0.00663085
-2.81355e-10
0.016047
0.00584077
-3.64641e-10
0.0156264
0.00498594
-3.81085e-10
0.0153545
0.00398262
-4.10191e-10
0.0152716
0.00278446
-4.45655e-10
0.0152438
0.00160962
-2.94694e-10
0.0153435
0.000422026
-1.37477e-10
0.0154861
-0.000699053
-8.58132e-11
0.0156046
-0.00165184
-3.32975e-11
0.015616
-0.00229192
1.27152e-10
0.0156206
-0.00276357
1.67689e-10
0.0156539
-0.00311178
1.16479e-10
0.0157472
-0.00336794
-1.31867e-11
0.0158221
-0.003546
-3.14649e-11
0.0159969
-0.0037453
-4.53309e-11
0.0163505
-0.00386732
-1.05926e-10
0.0166784
-0.00384952
-1.94794e-10
0.0169892
-0.00382582
-2.6409e-10
0.0173416
-0.00379854
-2.7123e-10
0.0176929
-0.00373248
-2.50105e-10
0.0180174
-0.00364007
-2.37311e-10
0.0183103
-0.00354663
-2.10235e-10
0.018575
-0.00345513
-1.72053e-10
0.0188174
-0.0033658
-1.48095e-10
0.0190421
-0.00327693
-1.37791e-10
0.0192547
-0.00318612
-1.17769e-10
0.0194544
-0.00309221
-9.87035e-11
0.0196424
-0.00299342
-8.1411e-11
0.0198197
-0.00289121
-5.50736e-11
0.0199842
-0.00278458
-4.95115e-11
0.0201372
-0.00267636
-3.06288e-11
0.020278
-0.00256528
-2.02998e-11
0.0204054
-0.00245217
-1.84968e-11
0.0205217
-0.00233917
-5.68224e-12
0.0206263
-0.00222679
6.31266e-13
0.0207207
-0.00211488
5.66872e-12
0.0208071
-0.00200571
9.70582e-12
0.0208848
-0.00189335
1.02135e-11
0.0209527
-0.00178152
1.10844e-11
0.0210105
-0.00167107
1.20049e-11
0.0210555
-0.00156757
1.30486e-11
0.0210892
-0.00146972
1.12369e-11
0.0211139
-0.00137695
9.63094e-12
0.0211303
-0.00128577
7.58376e-12
0.0211402
-0.00119668
4.48375e-12
0.0211425
-0.00110858
3.60918e-13
0.0211387
-0.00102236
-4.20984e-12
0.0211273
-0.000937625
-9.00283e-12
0.02111
-0.000855031
-1.74743e-11
0.0210852
-0.000774436
-2.1782e-11
0.0210544
-0.0006961
-2.20703e-11
0.0210164
-0.000619972
-2.23022e-11
0.0209727
-0.000546063
-2.34081e-11
0.0209225
-0.00047437
-2.45454e-11
0.020867
-0.000404791
-2.72566e-11
0.0208063
-0.000337317
-3.17231e-11
0.020741
-0.000271808
-2.98602e-11
0.0206712
-0.000208243
-2.37758e-11
0.0205973
-0.000146581
-1.49025e-11
0.0205195
-8.66848e-05
-8.68153e-12
0.0204384
-2.93737e-05
-2.11593e-12
0.0203553
2.50207e-05
5.24209e-12
0.0202705
7.65521e-05
1.36954e-11
0.0201835
0.0001255
2.18372e-11
0.0200941
0.000172028
3.04619e-11
0.0200025
0.000216186
3.84498e-11
0.0199081
0.00025792
4.58874e-11
0.0198125
0.00029749
5.32623e-11
0.0197141
0.0003349
5.99206e-11
0.019615
0.000370188
6.63273e-11
0.0195133
0.000403485
7.18207e-11
0.0194115
0.000434665
7.69492e-11
0.0193076
0.0004641
8.11248e-11
0.0192034
0.000491412
8.47997e-11
0.0190975
0.000517231
8.76302e-11
0.0189909
0.000540926
8.98248e-11
0.0188832
0.000563331
9.13837e-11
0.0187742
0.000583659
9.21876e-11
0.0186648
0.000602813
9.25786e-11
0.0185539
0.000619979
9.21513e-11
0.018443
0.000635976
9.15115e-11
0.0183308
0.0006501
9.00599e-11
0.0182192
0.000662964
8.85212e-11
0.0181067
0.000674061
8.6202e-11
0.0179954
0.000683738
8.38274e-11
0.017884
0.000691738
8.07051e-11
0.0177745
0.00069815
7.74514e-11
0.0176661
0.000703024
7.34812e-11
0.0175608
0.000706222
6.90377e-11
0.0174585
0.000708485
6.41233e-11
0.000709435
5.71769e-11
0.0211031
0.0159262
-2.15928e-11
0.0210298
0.0149467
-2.93655e-11
0.0207834
0.0138172
-3.71476e-11
0.0204093
0.0126456
-4.83112e-11
0.0199569
0.0115223
-6.5354e-11
0.0194602
0.0104892
-9.39444e-11
0.018977
0.00954021
-1.2425e-10
0.0185186
0.00867536
-1.96945e-10
0.0181205
0.00779891
-2.97656e-10
0.0177126
0.00698619
-4.16246e-10
0.0173833
0.00611269
-4.41971e-10
0.0171964
0.00511334
-4.94591e-10
0.0171987
0.00389762
-5.82291e-10
0.0172593
0.00266175
-4.57355e-10
0.0173586
0.00147726
-1.77181e-10
0.0174768
0.000274015
-1.33608e-10
0.0175498
-0.000793661
-5.3372e-11
0.0174868
-0.00158997
8.80312e-11
0.0173733
-0.00214808
3.08599e-10
0.0172437
-0.00260992
2.41217e-10
0.0171526
-0.0030061
1.52737e-10
0.0171252
-0.00334058
5.66755e-11
0.0171749
-0.00360749
-3.88647e-11
0.0172229
-0.00380713
-5.327e-11
0.0173585
-0.00402027
-8.67155e-11
0.0176384
-0.00415645
-1.33908e-10
0.0179493
-0.00417046
-2.1084e-10
0.0182174
-0.00410901
-2.69942e-10
0.018534
-0.00409201
-2.77781e-10
0.0188687
-0.00401553
-2.65886e-10
0.01918
-0.00389607
-2.31027e-10
0.0194584
-0.00376821
-2.01175e-10
0.0197056
-0.00364456
-1.6951e-10
0.019927
-0.00352651
-1.40702e-10
0.0201298
-0.00341264
-1.15954e-10
0.0203161
-0.00329947
-1.07214e-10
0.0204912
-0.00318494
-7.57286e-11
0.0206529
-0.00306798
-7.11001e-11
0.0208037
-0.00294771
-4.46929e-11
0.0209425
-0.00282536
-3.38624e-11
0.0210682
-0.00270051
-2.2528e-11
0.0211833
-0.00257599
-2.23708e-11
0.0212868
-0.00245007
-8.54833e-12
0.0213795
-0.00232552
2.86726e-15
0.021463
-0.00220234
6.99308e-12
0.0215382
-0.00208334
1.05644e-11
0.0216057
-0.00196168
1.12563e-11
0.0216651
-0.0018411
1.23798e-11
0.0217155
-0.00172102
1.35059e-11
0.021753
-0.00160538
1.45099e-11
0.0217805
-0.00149855
1.40277e-11
0.0217967
-0.0013952
1.20635e-11
0.0218037
-0.00129553
1.03503e-11
0.0218039
-0.00119907
7.78043e-12
0.0217972
-0.00110454
3.88476e-12
0.021785
-0.00101209
-9.05994e-13
0.021766
-0.000921455
-6.2571e-12
0.0217408
-0.0008328
-1.41388e-11
0.0217082
-0.000746322
-2.04894e-11
0.021669
-0.000661974
-2.0674e-11
0.0216227
-0.000580072
-2.15159e-11
0.0215702
-0.000500374
-2.31614e-11
0.0215113
-0.000423139
-2.45254e-11
0.021447
-0.000348031
-2.54048e-11
0.021377
-0.000275209
-2.65507e-11
0.0213021
-0.000204342
-3.28117e-11
0.0212223
-0.000135562
-3.14293e-11
0.0211382
-6.87004e-05
-2.49028e-11
0.0210506
-4.32058e-06
-1.6617e-11
0.0209614
5.62665e-05
-8.77752e-12
0.0208703
0.000114488
-1.2762e-12
0.0207768
0.000169952
6.71249e-12
0.0206814
0.000222706
1.48593e-11
0.0205832
0.000272897
2.3109e-11
0.0204834
0.000320531
3.15009e-11
0.0203806
0.000365663
3.94104e-11
0.0202765
0.000408244
4.72439e-11
0.0201697
0.000448525
5.43637e-11
0.0200622
0.000486315
6.12753e-11
0.0199525
0.000522028
6.72892e-11
0.0198424
0.000555264
7.29132e-11
0.0197307
0.000586673
7.75931e-11
0.0196185
0.000615625
8.16876e-11
0.0195053
0.000642977
8.4934e-11
0.0193913
0.000667908
8.74271e-11
0.0192768
0.000691392
8.92689e-11
0.0191612
0.000712537
9.02526e-11
0.0190457
0.00073229
9.07908e-11
0.0189288
0.000749828
9.04294e-11
0.0188124
0.000765917
8.97822e-11
0.0186948
0.000779912
8.82521e-11
0.0185782
0.000792295
8.6532e-11
0.0184609
0.000802654
8.39618e-11
0.0183452
0.000811115
8.12158e-11
0.0182297
0.000817528
7.76101e-11
0.0181165
0.000821594
7.37367e-11
0.018005
0.000823517
6.90534e-11
0.0178971
0.000822601
6.36258e-11
0.017793
0.000819869
5.78198e-11
0.000813967
4.9383e-11
0.0214205
0.0158986
-3.35735e-11
0.0213528
0.0150112
-4.28724e-11
0.0211676
0.0139963
-5.51786e-11
0.0208709
0.0129338
-7.27925e-11
0.0205106
0.0118701
-1.00943e-10
0.0201177
0.010867
-1.39545e-10
0.0197262
0.00990172
-2.17605e-10
0.019401
0.00896337
-3.01243e-10
0.0190699
0.00806897
-4.49242e-10
0.018835
0.00715942
-4.84896e-10
0.018724
0.00614768
-5.63785e-10
0.0188252
0.00492093
-7.1434e-10
0.0189644
0.00366789
-6.52154e-10
0.0190987
0.00248097
-2.53522e-10
0.019292
0.00124762
-2.39528e-10
0.0194002
0.000143853
-1.29765e-10
0.0193428
-0.000733476
5.27855e-11
0.0191067
-0.00132328
3.66804e-10
0.018864
-0.00187495
3.07286e-10
0.0186479
-0.0023675
2.35383e-10
0.0184774
-0.00281991
1.52941e-10
0.0183679
-0.00322573
7.63162e-11
0.018329
-0.00357483
-6.9404e-13
0.0183616
-0.00385565
-7.54446e-11
0.0183902
-0.00406556
-8.39626e-11
0.018474
-0.00425791
-9.88526e-11
0.0186808
-0.00440131
-1.47474e-10
0.0189814
-0.00444497
-2.21247e-10
0.019206
-0.00435479
-2.31295e-10
0.0194829
-0.0043334
-2.48883e-10
0.0197958
-0.00425017
-2.59804e-10
0.0200934
-0.00410556
-2.32386e-10
0.0203678
-0.00395506
-2.0094e-10
0.0206147
-0.0038032
-1.66324e-10
0.0208352
-0.00365687
-1.48255e-10
0.0210332
-0.00351577
-1.06448e-10
0.0212112
-0.00337874
-8.37606e-11
0.0213728
-0.00324294
-7.80443e-11
0.0215198
-0.0031077
-6.12302e-11
0.0216538
-0.00297076
-4.4163e-11
0.0217747
-0.00283337
-2.91013e-11
0.0218843
-0.00269466
-2.05932e-11
0.0219858
-0.00255779
-1.60085e-11
0.0220778
-0.00242122
-3.79859e-12
0.0221602
-0.00228641
2.24102e-12
0.0222323
-0.00215548
4.89455e-12
0.0222993
-0.00202733
9.57303e-12
0.0223559
-0.00189688
1.01882e-11
0.0224017
-0.00176666
1.11992e-11
0.0224357
-0.00163987
1.22794e-11
0.0224561
-0.00152022
1.35075e-11
0.0224663
-0.00140708
1.13154e-11
0.0224672
-0.00129875
9.6692e-12
0.0224609
-0.00119429
7.65596e-12
0.022447
-0.00109266
4.35849e-12
0.0224274
-0.000993759
1.08988e-14
0.0224007
-0.000897038
-5.20693e-12
0.0223682
-0.000802482
-1.20559e-11
0.0223283
-0.000710129
-1.98591e-11
0.0222821
-0.000619993
-2.02233e-11
0.0222289
-0.00053231
-2.11325e-11
0.0221695
-0.000446974
-2.3049e-11
0.022104
-0.000364145
-2.47158e-11
0.0220328
-0.000283615
-2.58076e-11
0.0219564
-0.000205393
-2.64248e-11
0.0218749
-0.000129258
-2.87392e-11
0.0217889
-5.53833e-05
-3.3849e-11
0.0216992
1.56243e-05
-3.14337e-11
0.0216069
8.37238e-05
-2.04453e-11
0.021511
0.000148584
-1.33452e-11
0.0214125
0.000210644
-6.49643e-12
0.0213116
0.000269815
9.78402e-13
0.0212086
0.000326271
8.91929e-12
0.0211033
0.000379874
1.69902e-11
0.0209965
0.000430816
2.53467e-11
0.0208874
0.000478956
3.34094e-11
0.0207773
0.000524429
4.14988e-11
0.0206651
0.000567258
4.89536e-11
0.0205525
0.000607464
5.62143e-11
0.0204382
0.00064528
6.26187e-11
0.0203236
0.000680502
6.85928e-11
0.020208
0.000713596
7.36601e-11
0.0200918
0.000744125
7.80699e-11
0.019975
0.000772736
8.16547e-11
0.0198573
0.000798838
8.43999e-11
0.0197393
0.000823134
8.64736e-11
0.0196201
0.000845019
8.76201e-11
0.0195011
0.000865109
8.82518e-11
0.0193809
0.000882902
8.79467e-11
0.0192612
0.000898806
8.72388e-11
0.0191409
0.000912484
8.56202e-11
0.0190215
0.000924057
8.36594e-11
0.0189021
0.000933358
8.08052e-11
0.0187845
0.000940157
7.75925e-11
0.0186678
0.000944441
7.3494e-11
0.018554
0.000945579
6.88523e-11
0.0184425
0.000943732
6.33454e-11
0.0183355
0.000937748
5.66001e-11
0.0182336
0.00092853
4.95801e-11
0.000914829
3.96968e-11
0.0217418
0.0159242
-4.8742e-11
0.0216564
0.0150906
-5.91264e-11
0.0215
0.0141453
-7.66598e-11
0.0212662
0.0131557
-1.03947e-10
0.0209797
0.0121377
-1.51988e-10
0.0206813
0.0111418
-2.16036e-10
0.0204041
0.0101363
-3.34379e-10
0.0201567
0.00914501
-5.00055e-10
0.0199669
0.00818991
-5.2873e-10
0.0199227
0.00712855
-6.03629e-10
0.0201032
0.0058832
-7.16024e-10
0.0203233
0.00457769
-8.77249e-10
0.0205462
0.00336766
-5.6756e-10
0.0207921
0.00220455
-1.71195e-10
0.0209209
0.00108948
-1.17891e-10
0.020881
0.000172435
-9.55271e-12
0.020618
-0.000444219
2.56372e-10
0.0203558
-0.00102638
3.16736e-10
0.0200841
-0.00156865
2.6712e-10
0.0198398
-0.00209758
1.98789e-10
0.0196347
-0.00260087
1.30207e-10
0.0194768
-0.0030646
6.94989e-11
0.0193708
-0.00347234
1.35492e-11
0.0193228
-0.00381694
-4.55138e-11
0.0193368
-0.00409165
-6.90926e-11
0.019357
-0.00429879
-1.27804e-10
0.0193886
-0.00445268
-1.3107e-10
0.0195113
-0.004594
-1.67214e-10
0.0197719
-0.00465026
-2.23098e-10
0.019964
-0.00455873
-1.9733e-10
0.0201842
-0.00450873
-2.30479e-10
0.0204604
-0.00442256
-2.50645e-10
0.0207502
-0.00428265
-2.33709e-10
0.0210244
-0.00410981
-2.17045e-10
0.0212713
-0.00393093
-1.68095e-10
0.0214874
-0.00375478
-1.33766e-10
0.021675
-0.00358558
-1.04161e-10
0.0218389
-0.00342347
-7.9879e-11
0.0219832
-0.00326689
-7.33037e-11
0.0221123
-0.00311321
-5.74919e-11
0.0222292
-0.00296133
-4.07602e-11
0.0223348
-0.00281039
-2.79761e-11
0.0224316
-0.00266078
-2.02116e-11
0.0225192
-0.00251329
-1.63008e-11
0.0225978
-0.00236779
-6.10457e-12
0.0226656
-0.00222488
-1.71433e-12
0.0227242
-0.00208666
4.06057e-12
0.0227735
-0.00194736
4.95978e-12
0.0228138
-0.00180851
6.42062e-12
0.0228439
-0.00167171
8.12975e-12
0.0228614
-0.00153966
1.02671e-11
0.0228701
-0.00141771
8.58477e-12
0.0228689
-0.00129927
7.05686e-12
0.0228598
-0.00118609
5.47042e-12
0.0228429
-0.00107683
2.9961e-12
0.0228197
-0.000970956
-4.45589e-13
0.0227887
-0.000867796
-4.84126e-12
0.0227514
-0.000767127
-9.60086e-12
0.0227066
-0.000668863
-1.88088e-11
0.0226554
-0.000572942
-2.06691e-11
0.0225971
-0.000479524
-2.06581e-11
0.0225325
-0.00038853
-2.22221e-11
0.0224616
-0.000300089
-2.39362e-11
0.0223852
-0.000214027
-2.52699e-11
0.0223036
-0.000130288
-2.6189e-11
0.0222172
-4.89344e-05
-2.71765e-11
0.022127
2.94614e-05
-3.34941e-11
0.0220333
0.000104617
-3.232e-11
0.0219363
0.000176743
-2.68916e-11
0.0218356
0.000245724
-1.63782e-11
0.021732
0.000311672
-1.00654e-11
0.0216253
0.000374567
-3.18801e-12
0.0215165
0.000434512
4.34576e-12
0.021405
0.000491448
1.21136e-11
0.0212926
0.000545414
2.02938e-11
0.0211777
0.000596471
2.82859e-11
0.0210625
0.000644518
3.64169e-11
0.0209452
0.000689857
4.39944e-11
0.0208281
0.00073217
5.14204e-11
0.0207096
0.000772068
5.80572e-11
0.0205911
0.000808947
6.42394e-11
0.020472
0.000843685
6.95686e-11
0.0203525
0.000875445
7.41709e-11
0.0202328
0.000905246
7.79873e-11
0.0201122
0.000932159
8.08809e-11
0.0199918
0.000957164
8.31039e-11
0.0198702
0.000979408
8.43308e-11
0.019749
0.000999686
8.49869e-11
0.0196269
0.00101731
8.46671e-11
0.0195055
0.00103281
8.38336e-11
0.0193838
0.00104565
8.20618e-11
0.0192633
0.00105608
7.97895e-11
0.0191434
0.00106365
7.65674e-11
0.0190254
0.00106823
7.27991e-11
0.0189092
0.00106943
6.79827e-11
0.0187966
0.00106665
6.2457e-11
0.0186877
0.00105953
5.56917e-11
0.0185851
0.00104648
4.70277e-11
0.0184886
0.00102967
4.05305e-11
0.00100837
3.06711e-11
0.0221282
0.0159933
-6.41026e-11
0.0220052
0.0152042
-8.16264e-11
0.0218383
0.014299
-1.10775e-10
0.0216364
0.0133389
-1.5882e-10
0.021413
0.0123354
-2.31243e-10
0.021209
0.0113034
-3.47294e-10
0.0210482
0.0102253
-5.46398e-10
0.0208916
0.00922615
-5.86875e-10
0.02089
0.00810553
-6.67828e-10
0.0211118
0.00680466
-7.93544e-10
0.021435
0.00542824
-9.68068e-10
0.0217381
0.00418717
-6.89266e-10
0.0219943
0.00306852
-2.9993e-10
0.0222091
0.00195532
-2.55747e-10
0.0222287
0.00104878
-8.91074e-11
0.0219599
0.000456087
1.8109e-10
0.021689
-0.000128135
3.63184e-10
0.0213974
-0.000697376
3.24482e-10
0.021124
-0.0012699
2.24621e-10
0.0208781
-0.00183635
1.49599e-10
0.0206634
-0.00237731
9.8149e-11
0.0204799
-0.00287805
5.77061e-11
0.0203314
-0.00332428
2.08285e-11
0.0202221
-0.00371146
-1.60033e-11
0.0201541
-0.00403131
-4.44265e-11
0.0201289
-0.00428739
-8.19214e-11
0.0201423
-0.00448404
-1.05768e-10
0.0201377
-0.00461592
-1.41124e-10
0.0201732
-0.00471289
-1.46306e-10
0.0203687
-0.00478403
-1.77347e-10
0.0205554
-0.00472639
-1.98835e-10
0.0207293
-0.00463095
-2.05395e-10
0.0209711
-0.00456017
-2.42531e-10
0.0212471
-0.00442048
-2.38996e-10
0.0215175
-0.00423344
-2.16909e-10
0.0217646
-0.00403133
-1.72964e-10
0.0219834
-0.00382911
-1.53098e-10
0.0221726
-0.00363443
-1.21677e-10
0.0223359
-0.00344832
-9.53952e-11
0.0224771
-0.00327081
-7.49111e-11
0.0226013
-0.00309973
-4.80412e-11
0.0227142
-0.00293373
-3.73878e-11
0.0228156
-0.00277101
-3.06021e-11
0.0229093
-0.00261107
-2.12063e-11
0.0229922
-0.00245466
-1.98698e-11
0.0230646
-0.00230024
-1.01399e-11
0.0231253
-0.00214964
-4.93727e-12
0.0231801
-0.00200402
1.7229e-13
0.0232248
-0.00185527
7.34039e-13
0.0232601
-0.0017086
1.78864e-12
0.023284
-0.00156516
3.21168e-12
0.0232955
-0.00143025
5.04755e-12
0.023297
-0.00130196
4.55392e-12
0.0232897
-0.00117956
3.31279e-12
0.0232738
-0.00106175
1.67896e-12
0.0232503
-0.000947758
-4.95321e-13
0.0232186
-0.000837156
-3.53138e-12
0.0231797
-0.000729533
-7.15762e-12
0.023133
-0.000624779
-1.28938e-11
0.0230794
-0.000522624
-1.96682e-11
0.0230183
-0.000423156
-2.18844e-11
0.0229505
-0.000326199
-2.19955e-11
0.0228758
-0.000231866
-2.27025e-11
0.0227951
-0.000139902
-2.3959e-11
0.0227085
-5.05074e-05
-2.53658e-11
0.0226174
3.58741e-05
-2.7753e-11
0.0225222
0.000118898
-3.25834e-11
0.0224232
0.000198577
-3.12305e-11
0.022321
0.000274981
-2.66801e-11
0.0222153
0.000348092
-1.75438e-11
0.0221069
0.000417995
-1.18042e-11
0.0219954
0.000484619
-5.7186e-12
0.0218819
0.000548045
1.22445e-12
0.0217655
0.000608242
8.48156e-12
0.021648
0.000665213
1.63098e-11
0.0215282
0.000719082
2.40358e-11
0.021408
0.00076969
3.20077e-11
0.0212862
0.0008174
3.95241e-11
0.0211644
0.000861837
4.69203e-11
0.0210419
0.000903628
5.36353e-11
0.0209194
0.000942188
5.98578e-11
0.0207968
0.000978324
6.53264e-11
0.0206737
0.00101133
6.99949e-11
0.0205507
0.00104202
7.39388e-11
0.0204269
0.00106972
7.68973e-11
0.0203032
0.00109512
7.91787e-11
0.0201787
0.00111764
8.043e-11
0.0200543
0.00113775
8.1026e-11
0.0199296
0.00115503
8.06341e-11
0.0198055
0.0011697
7.9579e-11
0.0196818
0.00118137
7.75614e-11
0.0195597
0.00119004
7.48559e-11
0.0194389
0.00119528
7.11072e-11
0.0193212
0.00119667
6.66065e-11
0.0192061
0.00119376
6.08236e-11
0.0190962
0.0011854
5.41535e-11
0.0189916
0.00117081
4.47458e-11
0.0188945
0.00114978
3.89904e-11
0.0188033
0.00112512
3.05084e-11
0.0010916
1.53728e-11
0.0224925
0.0160973
-8.30497e-11
0.0223665
0.0153186
-1.15583e-10
0.0222045
0.0144413
-1.66543e-10
0.0220322
0.0134798
-2.49877e-10
0.0218802
0.0124453
-3.51881e-10
0.0217889
0.0113173
-6.07511e-10
0.0216455
0.0102827
-6.52064e-10
0.0216896
0.00909175
-7.21711e-10
0.0219724
0.00771452
-8.34366e-10
0.0223671
0.00626686
-1.05282e-09
0.0227121
0.00498435
-7.67334e-10
0.0229826
0.00386148
-3.76099e-10
0.0232708
0.00273971
-2.90063e-10
0.0233341
0.00186494
-1.62106e-10
0.0230714
0.00131622
3.81982e-11
0.0228161
0.000757036
3.85041e-10
0.0225427
0.000186064
3.40064e-10
0.0222764
-0.000401831
2.54949e-10
0.0220275
-0.00100225
1.75857e-10
0.0217954
-0.00159283
1.21193e-10
0.0215814
-0.00215462
8.36464e-11
0.0213849
-0.00267444
5.3584e-11
0.0212087
-0.0031429
2.5878e-11
0.0210544
-0.00355529
-1.13176e-12
0.0209278
-0.00390827
-3.49402e-11
0.0208335
-0.00420187
-4.78895e-11
0.0207698
-0.00443521
-7.59063e-11
0.0207477
-0.00461236
-9.58037e-11
0.0207471
-0.00473695
-1.43347e-10
0.0207471
-0.00480722
-1.33531e-10
0.0208529
-0.00485783
-1.47972e-10
0.0210329
-0.00483881
-1.83141e-10
0.0211845
-0.00473971
-1.98149e-10
0.0213853
-0.00465473
-2.29818e-10
0.0216414
-0.00452468
-2.16854e-10
0.0218997
-0.00432481
-2.16443e-10
0.022148
-0.00411014
-1.76847e-10
0.022374
-0.00388816
-1.5756e-10
0.0225707
-0.00366954
-1.27232e-10
0.0227404
-0.00346033
-1.01125e-10
0.0228866
-0.00326207
-7.96345e-11
0.023012
-0.00307328
-5.09515e-11
0.023124
-0.00289275
-3.85925e-11
0.0232226
-0.00271778
-3.05033e-11
0.0233101
-0.00254726
-2.28197e-11
0.023388
-0.00238167
-2.07353e-11
0.0234548
-0.00221874
-1.63599e-11
0.0235112
-0.00206158
-7.95164e-12
0.0235597
-0.00190582
-7.00624e-12
0.0235984
-0.00174951
-5.31219e-12
0.0236256
-0.00159495
-2.90557e-12
0.0236391
-0.00144554
-8.29361e-14
0.0236431
-0.00130748
3.92622e-12
0.0236363
-0.00117409
3.0176e-12
0.0236198
-0.00104654
2.26262e-12
0.0235946
-0.000923384
1.5142e-12
0.0235608
-0.000804423
2.54441e-15
0.0235193
-0.000689095
-2.33555e-12
0.0234702
-0.000577283
-5.40376e-12
0.023414
-0.000468471
-8.78412e-12
0.0233505
-0.00036269
-1.4445e-11
0.0232802
-0.000259582
-2.0287e-11
0.0232029
-0.000159192
-2.38971e-11
0.0231194
-6.13045e-05
-2.60528e-11
0.0230303
3.34977e-05
-2.79179e-11
0.0229366
0.00012481
-2.94491e-11
0.0228385
0.000212618
-2.93339e-11
0.0227361
0.000296833
-2.76293e-11
0.0226301
0.000377605
-2.35348e-11
0.0225202
0.0004548
-1.60617e-11
0.0224076
0.000528601
-1.16508e-11
0.0222916
0.000598835
-6.48605e-12
0.0221739
0.000665656
-3.30126e-13
0.0220535
0.000728989
6.20849e-12
0.0219322
0.000788862
1.34648e-11
0.0218088
0.000845407
2.07133e-11
0.0216848
0.00089844
2.83267e-11
0.0215595
0.000948366
3.55898e-11
0.0214339
0.000994755
4.27947e-11
0.0213077
0.00103828
4.94182e-11
0.0211813
0.00107831
5.55487e-11
0.0210551
0.00111568
6.10051e-11
0.0209286
0.00114967
6.56169e-11
0.0208027
0.00118109
6.95526e-11
0.0206763
0.00120928
7.24426e-11
0.0205505
0.00123484
7.46699e-11
0.0204243
0.0012573
7.57997e-11
0.0202988
0.00127692
7.62475e-11
0.0201734
0.00129346
7.56326e-11
0.0200489
0.00130677
7.42668e-11
0.0199253
0.00131675
7.18486e-11
0.0198037
0.00132282
6.85699e-11
0.0196842
0.00132483
6.41075e-11
0.0195686
0.0013217
5.85697e-11
0.0194571
0.00131299
5.1655e-11
0.0193528
0.00129643
4.17726e-11
0.0192551
0.00127346
3.62308e-11
0.0191641
0.00124454
2.56304e-11
0.0190849
0.00120557
1.39157e-11
0.00115473
-6.01401e-12
0.0228689
0.0162403
-1.19783e-10
0.0227356
0.0154335
-1.6986e-10
0.0226019
0.0145443
-2.62955e-10
0.0224803
0.0135516
-3.9314e-10
0.0224328
0.0124208
-5.97623e-10
0.0223012
0.0113623
-6.57109e-10
0.0223768
0.0101054
-8.15631e-10
0.0227195
0.00863149
-9.84857e-10
0.0231692
0.0071275
-1.05564e-09
0.0235358
0.00580168
-7.77211e-10
0.0238369
0.00463045
-3.50229e-10
0.0241695
0.00349226
-2.64573e-10
0.0242334
0.00265542
-1.29592e-10
0.0239636
0.00214517
1.00741e-10
0.0237298
0.00158679
2.81704e-10
0.0234933
0.00102507
2.63625e-10
0.0232578
0.000443041
2.11927e-10
0.023031
-0.000160284
1.64311e-10
0.0228136
-0.000775591
1.22864e-10
0.0226026
-0.00137255
9.15541e-11
0.0223953
-0.00193935
6.71578e-11
0.0221943
-0.00246392
4.73734e-11
0.0220001
-0.00294219
2.88028e-11
0.0218179
-0.00336787
1.10194e-11
0.0216519
-0.003742
-7.96749e-12
0.0215074
-0.0040611
-3.58299e-11
0.0213907
-0.00432837
-4.34206e-11
0.0213078
-0.0045422
-6.79028e-11
0.0212591
-0.00470494
-9.36875e-11
0.0212502
-0.00481739
-1.10845e-10
0.0212502
-0.00488176
-1.48953e-10
0.0212902
-0.00490206
-1.5538e-10
0.021418
-0.00489307
-1.51248e-10
0.0215804
-0.00484482
-1.85892e-10
0.021748
-0.00472364
-2.05915e-10
0.0219736
-0.00458442
-2.21506e-10
0.0222289
-0.00439772
-2.08444e-10
0.0224812
-0.00417114
-1.75712e-10
0.0227161
-0.00393234
-1.61496e-10
0.0229256
-0.00369374
-1.33439e-10
0.0231043
-0.00346184
-1.05852e-10
0.0232573
-0.00324247
-8.15348e-11
0.0233861
-0.00303507
-5.12145e-11
0.0234972
-0.00283839
-4.4482e-11
0.0235932
-0.00265048
-3.22759e-11
0.0236756
-0.00246923
-2.23998e-11
0.0237473
-0.00229446
-2.00095e-11
0.0238065
-0.00212392
-2.21897e-11
0.0238581
-0.00195998
-1.06885e-11
0.0238995
-0.00179333
-9.75573e-12
0.0239312
-0.00162929
-7.55274e-12
0.0239519
-0.0014682
-3.52441e-12
0.0239578
-0.00131462
3.62549e-12
0.0239542
-0.00117109
5.07518e-12
0.0239392
-0.00103205
5.72229e-12
0.0239146
-0.000898677
6.34603e-12
0.0238807
-0.000770524
6.19598e-12
0.0238386
-0.000646763
5.04664e-12
0.0237882
-0.000527211
2.86878e-12
0.0237305
-0.000411209
2.88693e-14
0.0236651
-0.000298678
-3.24594e-12
0.0235928
-0.000189118
-6.69129e-12
0.0235134
-8.24169e-05
-9.83621e-12
0.0234275
2.12861e-05
-1.29154e-11
0.023336
0.000121343
-1.72625e-11
0.0232393
0.000217679
-1.96291e-11
0.023138
0.000310327
-2.03217e-11
0.0230325
0.000399138
-1.94208e-11
0.0229235
0.000484299
-1.58456e-11
0.022811
0.000565583
-1.32756e-11
0.0226957
0.000643237
-9.95874e-12
0.0225774
0.000717014
-5.83622e-12
0.0224571
0.000787159
-6.54212e-13
0.0223339
0.000853498
5.01978e-12
0.0222096
0.000916181
1.1521e-11
0.0220828
0.000975223
1.81262e-11
0.0219557
0.00103056
2.52194e-11
0.0218269
0.00108251
3.205e-11
0.0216981
0.0011307
3.89271e-11
0.0215685
0.0011758
4.52872e-11
0.0214391
0.00121712
5.12143e-11
0.0213098
0.00125558
5.65173e-11
0.0211805
0.00129035
6.09787e-11
0.021052
0.00132232
6.48035e-11
0.0209231
0.00135076
6.75326e-11
0.0207954
0.00137625
6.96209e-11
0.0206672
0.00139832
7.05162e-11
0.0205406
0.0014171
7.07237e-11
0.020414
0.0014324
6.97169e-11
0.0202897
0.00144376
6.79141e-11
0.0201665
0.00145122
6.4832e-11
0.0200469
0.00145361
6.07775e-11
0.0199305
0.00145104
5.51151e-11
0.0198199
0.00144139
4.83723e-11
0.0197161
0.00142386
3.77917e-11
0.0196207
0.00139819
3.21433e-11
0.0195319
0.00136651
2.22555e-11
0.019455
0.00132325
6.10045e-12
0.0193974
0.00126103
-1.35898e-11
0.00119368
-3.20695e-11
0.0232407
0.0164181
-1.70352e-10
0.0231044
0.0155322
-2.73175e-10
0.0230363
0.014563
-4.11611e-10
0.0230193
0.0134879
-6.77096e-10
0.0229193
0.0124328
-7.21719e-10
0.0230492
0.0111263
-8.04607e-10
0.0234767
0.00955763
-9.32738e-10
0.0239287
0.00802118
-1.14973e-09
0.024299
0.00665787
-7.85941e-10
0.024634
0.00541531
-3.13616e-10
0.0249697
0.00425863
-2.05577e-10
0.0249784
0.00346755
-4.09076e-11
0.0247099
0.00295224
2.92157e-10
0.0245052
0.00238286
2.44089e-10
0.0242967
0.0018253
2.0833e-10
0.0240971
0.00124644
1.64033e-10
0.0239067
0.000644023
1.16036e-10
0.0237185
3.27945e-05
8.6253e-11
0.023529
-0.000583982
6.45732e-11
0.0233342
-0.00117497
5.24534e-11
0.0231346
-0.00173546
4.42563e-11
0.0229329
-0.00225629
3.71286e-11
0.0227322
-0.00273546
2.92955e-11
0.0225352
-0.00316728
1.96437e-11
0.0223482
-0.0035532
8.06548e-12
0.0221748
-0.00389033
-7.31896e-12
0.0220215
-0.00418004
-3.139e-11
0.0218926
-0.00442268
-3.7916e-11
0.0217925
-0.00461803
-5.80675e-11
0.0217271
-0.00476845
-8.00913e-11
0.0216994
-0.00487259
-1.02391e-10
0.0217087
-0.00493182
-1.18375e-10
0.021734
-0.00494133
-1.35706e-10
0.0217653
-0.00489843
-1.52942e-10
0.0218885
-0.0048709
-1.60718e-10
0.0220828
-0.00480474
-1.75598e-10
0.0222808
-0.00462582
-1.83104e-10
0.022511
-0.00443312
-1.94489e-10
0.0227587
-0.00420983
-1.70669e-10
0.0229959
-0.00395807
-1.59698e-10
0.0232127
-0.00370118
-1.21421e-10
0.0234008
-0.00344941
-1.03392e-10
0.0235591
-0.00320835
-6.69413e-11
0.0236915
-0.00298139
-5.27149e-11
0.0238019
-0.00276851
-3.84985e-11
0.0238964
-0.00256711
-2.99255e-11
0.0239751
-0.00237551
-2.22762e-11
0.0240422
-0.0021915
-2.42225e-11
0.0240955
-0.00201299
-1.43921e-11
0.024143
-0.0018406
-1.24364e-11
0.0241799
-0.00166649
-9.31503e-12
0.0242055
-0.0014944
-3.90249e-12
0.0242167
-0.00132661
3.89373e-12
0.0242138
-0.00116824
1.25404e-11
0.024199
-0.00101766
1.28796e-11
0.0241741
-0.00087378
1.38616e-11
0.0241396
-0.000735813
1.43543e-11
0.024097
-0.000602949
1.41178e-11
0.024046
-0.000474973
1.27994e-11
0.023988
-0.000351233
1.05496e-11
0.023922
-0.000231463
7.53938e-12
0.023849
-0.000114993
4.23965e-12
0.0237687
-2.04971e-06
7.40866e-13
0.0236821
0.000107217
-2.31318e-12
0.0235897
0.000212562
-5.1441e-12
0.0234915
0.000313859
-7.51645e-12
0.023389
0.000411317
-9.191e-12
0.0232812
0.000504627
-1.01728e-11
0.0231704
0.000594057
-1.00851e-11
0.0230548
0.000679307
-9.13988e-12
0.0229371
0.000760621
-6.97067e-12
0.0228155
0.00083782
-3.99875e-12
0.0226922
0.000911039
1.08546e-13
0.0225662
0.000980279
4.7993e-12
0.0224388
0.00104551
1.03867e-11
0.0223095
0.00110694
1.6231e-11
0.0221795
0.00116434
2.26216e-11
0.0220483
0.00121818
2.89001e-11
0.0219171
0.00126796
3.52738e-11
0.0217855
0.00131444
4.12365e-11
0.0216543
0.00135686
4.67977e-11
0.0215237
0.00139616
5.18035e-11
0.0213933
0.0014315
5.59613e-11
0.0212646
0.00146372
5.95316e-11
0.0211359
0.0014921
6.19602e-11
0.0210091
0.00151713
6.37569e-11
0.0208826
0.00153839
6.42962e-11
0.0207579
0.00155576
6.40779e-11
0.0206343
0.00156912
6.25475e-11
0.0205131
0.00157766
6.00629e-11
0.0203939
0.00158133
5.60892e-11
0.0202792
0.00157865
5.08008e-11
0.0201692
0.00156907
4.36702e-11
0.0200669
0.0015498
3.30262e-11
0.0199735
0.00152222
2.75156e-11
0.019886
0.00148807
1.66131e-11
0.0198132
0.00143952
9.64146e-13
0.0197599
0.00137243
-2.08253e-11
0.019724
0.00128738
-4.8677e-11
0.00120504
-5.31719e-11
0.0237335
0.0166696
-2.74863e-10
0.0235859
0.0156262
-4.4868e-10
0.0234948
0.0145623
-6.9505e-10
0.0234133
0.0134821
-7.54571e-10
0.0236188
0.0121129
-8.86019e-10
0.0241385
0.010479
-1.11451e-09
0.0246223
0.00893786
-1.04813e-09
0.0250149
0.007538
-7.54438e-10
0.0254344
0.00620929
-2.54804e-10
0.0257755
0.00504528
-1.79572e-10
0.0257197
0.00430515
6.94767e-12
0.0254615
0.00376345
3.20084e-10
0.0252712
0.00318419
3.44833e-10
0.0250721
0.00261489
2.38081e-10
0.0248888
0.00202892
1.6477e-10
0.0247234
0.00142335
1.10561e-10
0.0245642
0.000806352
6.85215e-11
0.024406
0.000192219
4.10591e-11
0.0242356
-0.000411959
3.14472e-11
0.0240568
-0.000991798
3.03832e-11
0.0238682
-0.00154019
3.18055e-11
0.0236713
-0.00205222
3.24652e-11
0.0234703
-0.00252616
3.16672e-11
0.0232657
-0.00295847
2.72277e-11
0.0230656
-0.00334944
2.07052e-11
0.0228695
-0.00369751
8.9035e-12
0.0226871
-0.00400217
-4.83134e-12
0.0225195
-0.00426545
-2.72948e-11
0.0223748
-0.00448398
-3.3864e-11
0.022256
-0.00466312
-5.25497e-11
0.022167
-0.00479643
-7.07103e-11
0.0221137
-0.00489301
-8.71419e-11
0.0221012
-0.00494452
-1.03688e-10
0.0221352
-0.00495102
-1.26327e-10
0.0221485
-0.00490263
-1.24959e-10
0.0221535
-0.00482905
-1.22204e-10
0.0223046
-0.00479736
-1.33061e-10
0.0225128
-0.00466626
-1.67572e-10
0.0227313
-0.00445447
-1.5726e-10
0.022961
-0.00421333
-1.64655e-10
0.0231975
-0.00396335
-1.37546e-10
0.0234184
-0.003693
-1.23343e-10
0.0236141
-0.00342245
-8.62906e-11
0.0237806
-0.00316179
-6.54671e-11
0.0239208
-0.00291667
-4.62704e-11
0.0240347
-0.00268672
-3.22123e-11
0.0241288
-0.00247086
-2.25375e-11
0.0242035
-0.00226745
-2.05237e-11
0.0242638
-0.00207355
-1.12292e-11
0.0243123
-0.00188815
-2.98777e-12
0.024351
-0.00170489
-1.59013e-12
0.0243805
-0.00152348
1.50641e-12
0.0243984
-0.00134429
6.74115e-12
0.0244024
-0.00117056
1.5663e-11
0.0243949
-0.00100814
2.05972e-11
0.0243753
-0.000851919
2.21919e-11
0.024345
-0.000702838
2.29781e-11
0.0243052
-0.000559763
2.35741e-11
0.0242564
-0.000422335
2.32639e-11
0.0241989
-0.000289935
2.18498e-11
0.0241327
-0.000162115
1.93541e-11
0.0240585
-3.84429e-05
1.62262e-11
0.0239765
8.09717e-05
1.27884e-11
0.0238878
0.000196113
9.05768e-12
0.0237923
0.000306937
5.52552e-12
0.0236915
0.000413394
2.28563e-12
0.0235852
0.000515674
-5.0367e-13
0.023475
0.000613493
-2.64177e-12
0.0233605
0.00070717
-3.86818e-12
0.023243
0.000796264
-4.17314e-12
0.0231223
0.00088126
-3.3267e-12
0.0229991
0.000961637
-1.57232e-12
0.022874
0.00103797
1.34285e-12
0.0227463
0.00110978
4.9382e-12
0.0226181
0.00117754
9.53809e-12
0.0224876
0.001241
1.44773e-11
0.0223572
0.00130035
2.00836e-11
0.0222253
0.00135571
2.56796e-11
0.0220936
0.00140686
3.14335e-11
0.0219616
0.00145433
3.69067e-11
0.0218298
0.00149755
4.19867e-11
0.0216987
0.00153725
4.66042e-11
0.0215681
0.00157275
5.03954e-11
0.0214389
0.00160468
5.35826e-11
0.0213106
0.00163247
5.56757e-11
0.0211845
0.00165639
5.70286e-11
0.0210593
0.00167602
5.71145e-11
0.0209372
0.00169109
5.62856e-11
0.0208169
0.00170127
5.39995e-11
0.0207002
0.00170562
5.05257e-11
0.0205881
0.00170356
4.50908e-11
0.0204813
0.00169329
3.82209e-11
0.0203836
0.00167287
2.68863e-11
0.0202949
0.00164314
2.20483e-11
0.0202134
0.00160592
1.03517e-11
0.0201461
0.00155452
-6.11587e-12
0.020104
0.00147788
-2.81992e-11
0.0200713
0.00139293
-6.33669e-11
0.0200502
0.0012963
-6.91499e-11
0.00116863
-8.35286e-11
0.0242998
0.01696
-4.29633e-10
0.024078
0.0157609
-7.30031e-10
0.0239691
0.0145855
-8.10418e-10
0.0241941
0.0131325
-9.69699e-10
0.0247313
0.0114262
-1.23485e-09
0.0252294
0.00983734
-1.09214e-09
0.0256485
0.00841926
-7.08141e-10
0.0261469
0.00700809
-2.3375e-10
0.0264885
0.00584558
-1.12342e-10
0.0263687
0.00516421
5.51587e-11
0.0261346
0.00457909
3.66924e-10
0.0259593
0.00398098
3.40784e-10
0.0257789
0.00339974
2.52654e-10
0.0256191
0.00280073
1.59777e-10
0.0254784
0.00218558
9.94175e-11
0.0253464
0.00156252
6.52634e-11
0.0252113
0.000942985
4.17222e-11
0.0250665
0.000336016
2.99232e-11
0.0249056
-0.000251869
2.81247e-11
0.024731
-0.000816071
3.1196e-11
0.0245442
-0.00134888
3.53155e-11
0.0243479
-0.0018492
3.80129e-11
0.0241446
-0.00231372
3.92929e-11
0.0239362
-0.00274299
3.68053e-11
0.0237282
-0.00313326
3.22009e-11
0.023521
-0.00348747
2.23567e-11
0.0233228
-0.00380021
1.1136e-11
0.0231334
-0.0040778
-3.74816e-12
0.0229606
-0.00431242
-1.83593e-11
0.0228051
-0.00451313
-3.72607e-11
0.0226728
-0.00467034
-4.10736e-11
0.0225644
-0.00479295
-5.53692e-11
0.0224838
-0.00487301
-6.93907e-11
0.0224409
-0.00491959
-8.45771e-11
0.0224447
-0.00492094
-1.06077e-10
0.0224824
-0.00488005
-1.00937e-10
0.0224616
-0.00479248
-1.16304e-10
0.0224928
-0.00471574
-1.06918e-10
0.0226623
-0.00464425
-1.31228e-10
0.0228854
-0.00446223
-1.46278e-10
0.0231102
-0.00421371
-1.32864e-10
0.023343
-0.00395128
-1.25775e-10
0.0235738
-0.00367471
-1.13955e-10
0.023787
-0.00339231
-8.8056e-11
0.0239724
-0.00311397
-6.27878e-11
0.0241277
-0.00284835
-3.61066e-11
0.024252
-0.00259907
-2.11141e-11
0.024352
-0.00236679
-9.72415e-12
0.0244282
-0.00214959
1.97414e-12
0.0244864
-0.00194514
6.56633e-12
0.0245344
-0.00175114
1.29542e-11
0.0245689
-0.00155681
1.40401e-11
0.0245934
-0.00136768
1.64456e-11
0.024607
-0.00118212
2.07098e-11
0.024606
-0.00100414
2.81031e-11
0.024594
-0.000835617
3.03532e-11
0.0245691
-0.000673863
3.17501e-11
0.0245342
-0.000519175
3.30868e-11
0.0244881
-0.000370909
3.36635e-11
0.0244326
-0.000228545
3.31475e-11
0.024367
-9.15224e-05
3.13717e-11
0.0242924
4.03115e-05
2.87453e-11
0.0242095
0.000166895
2.49746e-11
0.0241185
0.000288394
2.09459e-11
0.0240211
0.000405146
1.67659e-11
0.0239166
0.000517069
1.24774e-11
0.0238073
0.000624396
8.55635e-12
0.0236923
0.000726987
5.04462e-12
0.023574
0.000824889
2.53788e-12
0.0234511
0.000918158
8.03211e-13
0.0233259
0.00100655
3.89377e-13
0.0231973
0.00109053
8.24318e-13
0.023067
0.00116945
2.5527e-12
0.0229345
0.00124425
5.03583e-12
0.0228008
0.00131388
8.54916e-12
0.0226661
0.00137965
1.26121e-11
0.0225305
0.00144026
1.72719e-11
0.0223948
0.0014972
2.21901e-11
0.0222586
0.00154905
2.71701e-11
0.022123
0.00159734
3.21092e-11
0.0219876
0.00164069
3.65678e-11
0.0218536
0.00168041
4.07496e-11
0.0217203
0.00171539
4.4009e-11
0.0215895
0.00174641
4.67706e-11
0.0214598
0.00177285
4.83592e-11
0.0213334
0.00179467
4.91353e-11
0.0212096
0.00181166
4.86015e-11
0.0210892
0.001823
4.68759e-11
0.0209735
0.0018283
4.35384e-11
0.0208628
0.00182628
3.84501e-11
0.0207596
0.0018153
3.1308e-11
0.0206657
0.00179321
2.01101e-11
0.0205817
0.00176137
1.51763e-11
0.0205065
0.00172073
4.39032e-12
0.020446
0.00166419
-1.61181e-11
0.0204105
0.00158403
-4.26622e-11
0.0203749
0.00150265
-5.40748e-11
0.0203561
0.00139683
-7.8431e-11
0.020383
0.00125219
-1.04649e-10
0.00105256
-1.41391e-10
0.0248273
0.0173402
-7.52963e-10
0.0245666
0.0159306
-8.47238e-10
0.0247724
0.0142561
-1.03635e-09
0.0253332
0.0124013
-1.34348e-09
0.0258647
0.0107525
-1.17192e-09
0.0263051
0.00930504
-7.08014e-10
0.0268783
0.00781785
-2.00932e-10
0.0271988
0.00666972
-9.68656e-11
0.0270058
0.00604735
7.02457e-11
0.0267941
0.00541269
3.72182e-10
0.0266153
0.00479635
3.42456e-10
0.0264412
0.00418772
2.44871e-10
0.0262967
0.00356937
1.4969e-10
0.0261755
0.00293797
7.83972e-11
0.0260696
0.00230531
4.58904e-11
0.0259601
0.00167838
3.36493e-11
0.0258417
0.00106561
3.03045e-11
0.0257058
0.000472374
3.16926e-11
0.0255538
-9.67796e-05
3.6878e-11
0.025385
-0.00064335
4.20979e-11
0.0252043
-0.00115971
4.67264e-11
0.0250106
-0.00164624
4.91137e-11
0.0248096
-0.00210073
5.01692e-11
0.0245993
-0.00252338
4.79049e-11
0.0243862
-0.00291141
4.34359e-11
0.0241689
-0.00326617
3.51918e-11
0.0239544
-0.00358428
2.51778e-11
0.0237435
-0.00386883
1.31391e-11
0.0235418
-0.00411538
1.25918e-12
0.0233534
-0.00432955
-1.06796e-11
0.0231806
-0.00450538
-2.70454e-11
0.0230327
-0.00465043
-3.76744e-11
0.022911
-0.00475913
-4.01643e-11
0.0228197
-0.00483435
-5.14802e-11
0.0227623
-0.0048725
-6.46461e-11
0.0227434
-0.00487446
-8.30938e-11
0.0227694
-0.00483039
-7.75481e-11
0.0227841
-0.00474708
-8.86919e-11
0.022772
-0.00465011
-9.92988e-11
0.0228658
-0.00457616
-1.06517e-10
0.0230562
-0.00442548
-1.04697e-10
0.0232838
-0.00420284
-1.32798e-10
0.0235172
-0.00393295
-1.2548e-10
0.0237628
-0.00365791
-1.00386e-10
0.023995
-0.00336158
-8.25353e-11
0.0242015
-0.00306365
-5.3631e-11
0.0243757
-0.00277736
-2.25891e-11
0.0245152
-0.00250681
-5.50141e-12
0.0246222
-0.00225537
1.02541e-11
0.0247012
-0.0020217
2.07493e-11
0.0247572
-0.00180464
2.59555e-11
0.024805
-0.00160111
3.13655e-11
0.0248372
-0.00139602
3.19948e-11
0.0248572
-0.00119833
3.3548e-11
0.0248634
-0.0010057
3.63987e-11
0.0248572
-0.000823554
4.14743e-11
0.0248382
-0.000648375
4.24979e-11
0.0248076
-0.00048136
4.34134e-11
0.0247649
-0.000321281
4.40319e-11
0.0247115
-0.000167607
4.39942e-11
0.0246466
-2.02969e-05
4.27462e-11
0.0245723
0.00012056
4.03174e-11
0.024488
0.000255212
3.66423e-11
0.024395
0.000383864
3.2234e-11
0.0242941
0.000507068
2.72545e-11
0.0241854
0.000624808
2.20093e-11
0.0240715
0.000737523
1.69258e-11
0.0239509
0.000844975
1.21484e-11
0.0238272
0.000947457
8.34883e-12
0.023698
0.0010448
5.27579e-12
0.0235673
0.00113702
3.64553e-12
0.0234321
0.00122432
2.79995e-12
0.0232961
0.00130628
3.42933e-12
0.0231573
0.00138365
4.72635e-12
0.0230179
0.00145548
7.24256e-12
0.0228772
0.00152312
1.02488e-11
0.0227361
0.00158508
1.40233e-11
0.0225947
0.00164324
1.80624e-11
0.022453
0.00169561
2.22646e-11
0.0223124
0.00174439
2.65396e-11
0.0221712
0.00178744
3.02954e-11
0.022033
0.00182672
3.39663e-11
0.0218947
0.00186055
3.65889e-11
0.0217604
0.00188994
3.88155e-11
0.0216277
0.00191402
3.97656e-11
0.0214995
0.00193271
3.97999e-11
0.0213753
0.00194542
3.83699e-11
0.0212564
0.00195123
3.54323e-11
0.0211443
0.00194918
3.0539e-11
0.0210405
0.00193714
2.31443e-11
0.0209487
0.00191259
1.28758e-11
0.0208666
0.00187844
5.96992e-12
0.0207948
0.00183496
-3.49144e-12
0.0207438
0.00177036
-2.07022e-11
0.0207046
0.0016934
-5.74121e-11
0.0206711
0.0016065
-6.30266e-11
0.0206721
0.00148906
-7.69613e-11
0.0207285
0.0013239
-1.03698e-10
0.0208337
0.00112032
-1.50087e-10
0.000848715
-2.34856e-10
0.0253908
0.0175517
-8.28033e-10
0.0256122
0.0155741
-1.16954e-09
0.0261474
0.0135122
-1.64424e-09
0.0266752
0.0117277
-1.25249e-09
0.0271279
0.0101995
-7.15003e-10
0.0277356
0.00863514
-4.74954e-10
0.0279908
0.00754361
-8.98753e-11
0.027711
0.0069625
1.90925e-10
0.0275212
0.00628615
3.56974e-10
0.0273335
0.00564343
3.17887e-10
0.0271524
0.00500596
2.05393e-10
0.0269987
0.00435639
1.12479e-10
0.0268786
0.00370141
4.92104e-11
0.0267749
0.0030488
1.54783e-11
0.0266772
0.00240739
9.51983e-12
0.0265736
0.00178473
1.7074e-11
0.0264584
0.00118384
2.8643e-11
0.0263268
0.000607499
3.99087e-11
0.0261779
5.71176e-05
5.10746e-11
0.0260122
-0.000470827
5.67322e-11
0.0258323
-0.000971073
6.05519e-11
0.0256415
-0.00144399
6.2536e-11
0.0254405
-0.00188816
6.22316e-11
0.0252319
-0.00230279
5.97169e-11
0.0250167
-0.00268693
5.44867e-11
0.0247976
-0.00303941
4.73767e-11
0.0245774
-0.00336049
3.87379e-11
0.0243593
-0.00364854
3.01395e-11
0.0241476
-0.00390535
2.02103e-11
0.0239459
-0.00412877
1.1505e-11
0.0237588
-0.00432218
8.22433e-13
0.0235898
-0.00448237
-6.65201e-12
0.0234367
-0.00461225
-1.83714e-11
0.0233072
-0.00470888
-3.5357e-11
0.0232029
-0.00477585
-3.56914e-11
0.0231261
-0.00480721
-4.46229e-11
0.0230901
-0.00480725
-5.93335e-11
0.0230925
-0.00476574
-7.16195e-11
0.0231062
-0.00468033
-6.43409e-11
0.023102
-0.00459011
-8.61774e-11
0.0231283
-0.00447125
-7.62805e-11
0.0232742
-0.00436763
-9.78566e-11
0.0234962
-0.00417597
-1.15997e-10
0.0237273
-0.00391003
-1.12314e-10
0.0239664
-0.00361818
-9.38243e-11
0.0242077
-0.00331983
-7.06944e-11
0.0244298
-0.00300856
-4.97108e-11
0.0246185
-0.00270114
-1.9052e-11
0.0247698
-0.00240788
2.791e-12
0.0248849
-0.00213504
2.33874e-11
0.0249675
-0.00188281
3.53485e-11
0.0250242
-0.00165048
4.75443e-11
0.02507
-0.00143486
4.85413e-11
0.0250973
-0.00121787
5.00832e-11
0.025111
-0.00101108
5.23815e-11
0.0251091
-0.000812032
5.65032e-11
0.0250971
-0.000626287
5.67988e-11
0.0250708
-0.000445563
5.56704e-11
0.025032
-0.000273269
5.48057e-11
0.0249812
-0.000108014
5.40855e-11
0.0249189
5.01106e-05
5.27677e-11
0.0248461
0.000200806
5.02188e-11
0.0247624
0.000344302
4.64406e-11
0.0246696
0.000480958
4.16937e-11
0.0245671
0.000611259
3.60229e-11
0.0244581
0.000735392
3.00344e-11
0.0243414
0.000853842
2.38045e-11
0.0242202
0.00096643
1.80471e-11
0.0240927
0.00107377
1.28717e-11
0.0239614
0.00117519
8.78931e-12
0.0238257
0.00127162
5.85325e-12
0.0236864
0.00136194
4.01572e-12
0.023545
0.00144743
3.51059e-12
0.0234004
0.00152679
3.71666e-12
0.0232559
0.00160135
5.26094e-12
0.0231087
0.00167014
7.11219e-12
0.0229628
0.00173389
1.00528e-11
0.0228153
0.00179245
1.3045e-11
0.0226692
0.00184567
1.65173e-11
0.0225233
0.00189406
1.99427e-11
0.0223782
0.001937
2.30606e-11
0.0222353
0.00197491
2.59754e-11
0.0220937
0.00200741
2.80227e-11
0.0219555
0.00203415
2.93837e-11
0.0218212
0.00205505
2.96392e-11
0.0216916
0.00206913
2.84845e-11
0.0215685
0.00207571
2.58547e-11
0.0214532
0.00207353
2.10096e-11
0.0213486
0.00205996
1.4016e-11
0.0212567
0.00203306
2.20449e-12
0.021178
0.00199509
-1.32604e-12
0.0211084
0.00194851
-1.5736e-11
0.0210631
0.00187854
-2.81074e-11
0.021019
0.00180469
-6.68473e-11
0.020992
0.00170922
-7.37659e-11
0.021008
0.00157654
-8.93727e-11
0.0210851
0.00139021
-1.23787e-10
0.0212256
0.00115081
-1.88269e-10
0.0214215
0.000883757
-2.25804e-10
0.000583368
-2.69347e-10
0.0268073
0.0172015
-1.31108e-09
0.0271951
0.0149876
-1.45131e-09
0.027634
0.0129128
-1.29071e-09
0.0281328
0.0111405
-6.30067e-10
0.0287857
0.00947794
-4.80762e-10
0.0289042
0.00848254
-1.56467e-10
0.028583
0.00789677
2.42935e-10
0.0283917
0.00719708
2.77326e-10
0.0281788
0.0065341
2.46661e-10
0.0279782
0.00586187
1.56345e-10
0.0278122
0.0051794
6.2281e-11
0.0276754
0.00449197
-2.04131e-12
0.0275629
0.00381038
-2.78374e-11
0.0274606
0.00314721
-2.732e-11
0.0273588
0.00250669
-1.09136e-11
0.0272496
0.00189353
1.10236e-11
0.0271279
0.00130672
3.16646e-11
0.0269915
0.000746756
4.8244e-11
0.0268405
0.000212722
5.97553e-11
0.0266756
-0.000297712
6.79403e-11
0.0264991
-0.000783741
7.19534e-11
0.0263129
-0.00124378
7.38017e-11
0.0261155
-0.00167758
7.29545e-11
0.0259106
-0.00208416
7.08882e-11
0.0256965
-0.00246318
6.58927e-11
0.0254784
-0.00281259
6.05477e-11
0.025256
-0.00313383
5.30511e-11
0.0250346
-0.00342355
4.66571e-11
0.0248156
-0.00368573
3.84922e-11
0.0246039
-0.00391554
3.17018e-11
0.0244005
-0.00411896
2.31231e-11
0.0242085
-0.00428967
1.48212e-11
0.0240306
-0.0044352
6.40087e-12
0.0238697
-0.00454801
-2.35228e-12
0.0237259
-0.00463647
-1.17935e-11
0.0236058
-0.00469136
-2.47863e-11
0.0235104
-0.00472065
-3.79797e-11
0.0234485
-0.00471485
-3.62633e-11
0.0234307
-0.00467616
-4.88105e-11
0.0234228
-0.00459516
-4.74092e-11
0.0234428
-0.00450397
-5.16384e-11
0.0234375
-0.004379
-8.30244e-11
0.0235088
-0.00426376
-8.66627e-11
0.0236787
-0.00409652
-9.3089e-11
0.0239066
-0.00386426
-1.03728e-10
0.0241416
-0.00357225
-9.84263e-11
0.0243824
-0.00326537
-8.31626e-11
0.0246131
-0.00294325
-6.31274e-11
0.0248157
-0.0026177
-3.13371e-11
0.0249822
-0.00230252
8.68567e-13
0.0251067
-0.00200528
2.81186e-11
0.0251938
-0.00173143
4.80084e-11
0.0252493
-0.00148097
6.36522e-11
0.0252947
-0.00125269
6.46113e-11
0.0253187
-0.00102411
6.59966e-11
0.0253263
-0.00080696
6.90823e-11
0.0253157
-0.000601271
7.59327e-11
0.0252957
-0.00041144
7.11884e-11
0.0252621
-0.000226047
6.73962e-11
0.0252155
-4.96131e-05
6.35638e-11
0.025158
0.000118614
6.09559e-11
0.0250889
0.0002791
5.80537e-11
0.0250095
0.000431931
5.4078e-11
0.0249192
0.000577372
4.88901e-11
0.0248195
0.00071545
4.27725e-11
0.0247115
0.000846691
3.6132e-11
0.0245957
0.000971118
2.91159e-11
0.0244741
0.00108937
2.24692e-11
0.0243457
0.00120139
1.61933e-11
0.024213
0.00130744
1.11978e-11
0.0240744
0.00140759
7.10137e-12
0.0239328
0.00150157
4.43326e-12
0.0237874
0.00158994
2.74743e-12
0.0236396
0.00167197
2.05909e-12
0.0234907
0.00174857
2.40537e-12
0.0233399
0.00181897
3.2936e-12
0.0231898
0.00188393
5.09135e-12
0.0230396
0.00194298
7.19741e-12
0.0228899
0.00199658
9.6407e-12
0.0227428
0.00204419
1.22779e-11
0.0225962
0.00208654
1.45254e-11
0.0224533
0.00212225
1.66008e-11
0.022313
0.00215269
1.78302e-11
0.0221767
0.00217541
1.81422e-11
0.0220462
0.00219187
1.73038e-11
0.021921
0.00219887
1.45097e-11
0.0218055
0.0021971
1.01174e-11
0.0217005
0.00218158
2.71809e-12
0.0216103
0.00215198
-1.15275e-11
0.0215327
0.00211133
-1.08239e-11
0.0214695
0.0020575
-2.65875e-11
0.0214197
0.00198936
-6.00389e-11
0.0213766
0.00191281
-6.53647e-11
0.0213659
0.00180447
-7.87536e-11
0.0214068
0.00165162
-1.03825e-10
0.0215195
0.00143799
-1.48957e-10
0.0216779
0.00119333
-2.10425e-10
0.0218738
0.000908298
-2.52107e-10
0.0221148
0.000591994
-2.72457e-10
0.000277868
-2.74598e-10
0.0280884
0.0164609
-1.51956e-09
0.0287464
0.0142027
-1.15077e-09
0.029422
0.0121676
-6.23447e-10
0.0300936
0.0103935
-4.88016e-10
0.0299997
0.00952517
-2.13983e-10
0.0296294
0.00887602
2.08626e-10
0.0293925
0.00817004
2.86443e-10
0.0291294
0.00748475
1.89199e-10
0.0288984
0.00677912
8.32142e-11
0.0287064
0.00605517
3.78009e-12
0.0285569
0.00532528
-4.98842e-11
0.0284341
0.00460796
-9.23896e-11
0.0283256
0.00391226
-8.72955e-11
0.028221
0.00324712
-5.06667e-11
0.0281123
0.00261273
-1.56312e-11
0.0279951
0.00201076
1.36827e-11
0.0278652
0.00143789
3.73985e-11
0.0277226
0.00089296
5.48643e-11
0.0275674
0.000373657
6.64556e-11
0.0274006
-0.00012107
7.45969e-11
0.0272233
-0.000594807
7.86136e-11
0.0270368
-0.00104332
8.04893e-11
0.0268392
-0.00146747
8.01186e-11
0.0266339
-0.001866
7.88267e-11
0.0264186
-0.00223849
7.55756e-11
0.0261984
-0.00258376
7.20571e-11
0.025972
-0.002902
6.70619e-11
0.0257451
-0.00319187
6.21246e-11
0.025518
-0.00345511
5.6217e-11
0.0252955
-0.00368939
5.00421e-11
0.0250778
-0.00389793
4.37508e-11
0.0248697
-0.00407774
3.58156e-11
0.0246701
-0.00423231
2.86606e-11
0.0244827
-0.00435958
1.98552e-11
0.0243094
-0.00446141
1.26056e-11
0.0241509
-0.00453688
3.06498e-12
0.0240137
-0.00458569
-4.4874e-12
0.0238981
-0.00460729
-1.50533e-11
0.0238157
-0.00459995
-2.97159e-11
0.023771
-0.00456083
-3.24412e-11
0.0237432
-0.00448561
-3.11414e-11
0.0237392
-0.00438403
-3.80169e-11
0.0237375
-0.00427725
-6.39987e-11
0.0237595
-0.00413324
-7.98198e-11
0.0238624
-0.00398385
-7.61279e-11
0.0240505
-0.003777
-8.84291e-11
0.024266
-0.0035026
-1.13457e-10
0.0244882
-0.00318584
-1.03001e-10
0.0247179
-0.00286361
-7.57009e-11
0.0249268
-0.00252315
-4.59832e-11
0.0251026
-0.00218601
-8.91061e-12
0.0252407
-0.00186588
2.55009e-11
0.0253392
-0.00156959
5.0902e-11
0.0253999
-0.00129907
6.88608e-11
0.0254479
-0.00105544
7.91708e-11
0.0254749
-0.00081695
8.01355e-11
0.0254779
-0.000587885
8.13054e-11
0.0254575
-0.00037483
8.26969e-11
0.0254269
-0.000180782
7.98226e-11
0.0253826
7.23784e-06
7.30659e-11
0.0253277
0.000184669
6.88151e-11
0.0252617
0.000354173
6.4937e-11
0.0251857
0.00051591
6.01056e-11
0.0250988
0.000670146
5.42751e-11
0.0250028
0.000816481
4.77938e-11
0.0248982
0.000955227
4.07037e-11
0.0247857
0.00108632
3.31686e-11
0.0246669
0.00121053
2.56928e-11
0.024541
0.00132768
1.85402e-11
0.0244104
0.0014384
1.25048e-11
0.0242742
0.0015424
7.43337e-12
0.0241343
0.0016401
3.73096e-12
0.0239906
0.00173123
1.01028e-12
0.0238437
0.00181618
-6.95883e-13
0.023695
0.00189455
-1.50919e-12
0.0235446
0.00196694
-1.57632e-12
0.0233933
0.00203269
-9.85791e-13
0.0232427
0.00209253
2.53797e-13
0.0230919
0.00214581
1.60938e-12
0.022944
0.00219282
3.38177e-12
0.0227974
0.00223328
4.64618e-12
0.0226552
0.0022667
5.75349e-12
0.0225169
0.00229297
5.76041e-12
0.022385
0.00231075
4.83998e-12
0.0222605
0.00231955
1.98576e-12
0.0221455
0.00231714
-2.99639e-12
0.0220446
0.00230067
-1.25753e-11
0.0219605
0.00226621
-2.06647e-11
0.0218866
0.00222547
-2.94786e-11
0.0218339
0.00216321
-3.56374e-11
0.0217811
0.00210198
-7.2077e-11
0.0217459
0.00201464
-7.88093e-11
0.0217558
0.00189036
-9.46422e-11
0.0218326
0.00170895
-1.27265e-10
0.021972
0.00148286
-1.85315e-10
0.0221537
0.00121951
-2.20279e-10
0.0223806
0.000919972
-2.6067e-10
0.0226321
0.000605769
-2.74251e-10
0.0228863
0.000286559
-2.66585e-10
-5.74856e-06
-2.45807e-10
0.0294128
0.0153387
-1.19876e-09
0.0304424
0.0131046
-5.64506e-10
0.0312592
0.0112948
-4.31051e-10
0.0310603
0.0105684
-1.62243e-10
0.0307723
0.00984788
2.49702e-10
0.0305458
0.0091483
2.24457e-10
0.0302877
0.00846435
1.28615e-10
0.0300425
0.00774332
5.65849e-12
0.0298272
0.00698873
-8.16235e-11
0.0296404
0.00622456
-1.58117e-10
0.0294738
0.00546751
-1.19539e-10
0.0293253
0.00473424
-1.03309e-10
0.0291891
0.00403242
-1.0498e-10
0.0290597
0.00336778
-5.43796e-11
0.0289276
0.00274036
-1.25485e-11
0.0287913
0.00214707
1.87858e-11
0.028648
0.00158526
4.276e-11
0.0284986
0.00105135
5.9984e-11
0.0283409
0.000543883
7.15049e-11
0.0281739
6.18691e-05
7.98244e-11
0.0279971
-0.000401234
8.37834e-11
0.0278091
-0.000840058
8.60485e-11
0.0276105
-0.0012546
8.73551e-11
0.0274012
-0.00164556
8.74799e-11
0.0271833
-0.00201064
8.66845e-11
0.0269588
-0.00235118
8.49249e-11
0.0267292
-0.00266527
8.19083e-11
0.0264982
-0.00295389
7.80908e-11
0.0262665
-0.00321641
7.38861e-11
0.0260363
-0.00345274
6.78069e-11
0.0258107
-0.00366421
6.3866e-11
0.0255872
-0.00384946
5.65801e-11
0.025372
-0.0040111
5.03539e-11
0.0251611
-0.00414678
4.20103e-11
0.0249596
-0.00425911
3.52922e-11
0.0247681
-0.0043462
2.74592e-11
0.0245902
-0.00441004
1.99318e-11
0.0244293
-0.00444924
1.13775e-11
0.0242896
-0.00446321
3.32218e-12
0.0241746
-0.00445127
-7.91583e-12
0.024092
-0.00440917
-2.60211e-11
0.0240372
-0.00433577
-2.84468e-11
0.0239832
-0.00423128
-2.86827e-11
0.023965
-0.00412394
-3.59686e-11
0.0239515
-0.0039838
-6.5345e-11
0.0239791
-0.00381854
-7.02071e-11
0.0240959
-0.00363364
-9.15305e-11
0.0242862
-0.00339185
-1.02939e-10
0.0244921
-0.00308447
-1.02598e-10
0.0247046
-0.00274995
-9.59768e-11
0.0249184
-0.00240821
-6.55968e-11
0.0251078
-0.00205797
-2.91564e-11
0.0252609
-0.00171705
6.2808e-12
0.0253697
-0.00139869
3.8374e-11
0.025434
-0.00110773
6.23352e-11
0.0254782
-0.00084618
8.06009e-11
0.0255055
-0.000599734
8.07293e-11
0.0255044
-0.00035863
8.28736e-11
0.0254759
-0.000137599
8.46306e-11
0.0254376
6.09516e-05
8.83073e-11
0.0253883
0.000247304
8.15093e-11
0.0253285
0.000425782
7.35718e-11
0.0252587
0.000595122
6.57047e-11
0.0251798
0.000756818
5.81903e-11
0.0250923
0.000910622
5.09763e-11
0.0249959
0.00105656
4.34666e-11
0.024892
0.00119467
3.55782e-11
0.0247796
0.00132508
2.73575e-11
0.024661
0.00144772
1.94838e-11
0.0245359
0.0015631
1.23366e-11
0.0244063
0.00167099
6.35526e-12
0.024272
0.00177216
1.51245e-12
0.0241351
0.00186603
-2.14809e-12
0.0239949
0.00195352
-4.91764e-12
0.0238533
0.00203373
-6.71417e-12
0.0237099
0.00210775
-7.79826e-12
0.0235656
0.0021744
-8.2047e-12
0.0234214
0.00223475
-8.00631e-12
0.0232776
0.00228757
-7.61592e-12
0.0231359
0.00233358
-6.99842e-12
0.0229971
0.00237151
-6.8004e-12
0.0228626
0.00240161
-7.06406e-12
0.022734
0.00242216
-8.66567e-12
0.0226138
0.00243266
-1.43234e-11
0.0225033
0.00243049
-1.44011e-11
0.0224091
0.00241231
-2.49858e-11
0.0223331
0.00237486
-3.53154e-11
0.022269
0.00232991
-3.95115e-11
0.0222178
0.00227041
-6.3775e-11
0.0221673
0.00220909
-6.87725e-11
0.0221536
0.00210918
-7.92423e-11
0.022196
0.00195877
-1.03055e-10
0.0223119
0.00175396
-1.42333e-10
0.0224726
0.0015129
-2.27871e-10
0.022682
0.00123274
-2.53499e-10
0.0229321
0.000923849
-2.65703e-10
0.0231988
0.000606169
-2.68698e-10
0.0234568
0.000302857
-2.45218e-10
0.02368
2.20644e-05
-2.19175e-10
-0.000209609
-1.45075e-10
0.0305885
0.013721
-6.8588e-10
0.0316525
0.0119939
-5.112e-10
0.0316205
0.0113299
-1.08888e-10
0.0315447
0.0106683
1.52105e-10
0.0314027
0.0100283
2.32302e-10
0.0312096
0.00937298
9.27121e-11
0.0310245
0.00866236
-5.75017e-11
0.0308609
0.00789985
-2.05112e-10
0.0307158
0.00711681
-1.80008e-10
0.0305836
0.00633602
-1.79591e-10
0.0304588
0.00557773
-1.53672e-10
0.0303323
0.00485127
-1.1787e-10
0.0301969
0.00416204
-1.13038e-10
0.0300529
0.00350905
-4.47613e-11
0.0299023
0.00289174
-5.6366e-12
0.0297458
0.00230711
2.51575e-11
0.0295867
0.00175291
4.87577e-11
0.0294213
0.00122674
6.54332e-11
0.0292517
0.000726796
7.75658e-11
0.0290716
0.000252751
8.52892e-11
0.0288799
-0.000198882
9.10658e-11
0.0286781
-0.000629727
9.50385e-11
0.0284673
-0.00103586
9.74254e-11
0.0282488
-0.00141822
9.92157e-11
0.0280229
-0.00177673
9.90598e-11
0.0277934
-0.00211147
9.85878e-11
0.0275575
-0.00242159
9.63921e-11
0.0273201
-0.00270701
9.4406e-11
0.0270773
-0.00296741
8.90152e-11
0.0268343
-0.00320201
8.47896e-11
0.0265881
-0.00341282
7.61143e-11
0.0263421
-0.0035979
6.99798e-11
0.0260965
-0.00376082
6.30222e-11
0.0258531
-0.003899
5.69139e-11
0.0256144
-0.00401633
5.09381e-11
0.0253817
-0.00410982
4.53784e-11
0.0251587
-0.00418332
4.04814e-11
0.0249447
-0.00423284
3.44804e-11
0.0247454
-0.00426211
2.72228e-11
0.0245616
-0.00426669
1.84332e-11
0.0244006
-0.00424917
8.2893e-12
0.0242672
-0.00420474
-8.17446e-12
0.0241656
-0.00413195
-8.86119e-12
0.0240691
-0.00402911
-2.40442e-11
0.024007
-0.00392454
-3.13385e-11
0.0239802
-0.00379833
-5.98452e-11
0.0239662
-0.00362653
-6.39584e-11
0.0240022
-0.00343514
-8.36799e-11
0.0241293
-0.0032197
-9.44624e-11
0.0243102
-0.00294548
-1.19459e-10
0.0245071
-0.0026168
-1.15039e-10
0.0247106
-0.00227184
-9.69929e-11
0.0249039
-0.00191539
-6.47407e-11
0.0250674
-0.00156131
-2.54891e-11
0.0251887
-0.00122391
1.30551e-11
0.0252645
-0.000912862
4.46989e-11
0.0253098
-0.000631354
7.19166e-11
0.025343
-0.000377907
7.40765e-11
0.0253479
-0.000128659
7.78316e-11
0.0253223
0.000100787
8.25736e-11
0.0252796
0.000305297
8.90006e-11
0.0252296
0.000489831
8.12547e-11
0.0251674
0.000668798
7.12321e-11
0.0250969
0.000836589
6.17823e-11
0.0250187
0.000995991
5.32815e-11
0.0249329
0.00114798
4.50142e-11
0.0248388
0.00129253
3.64842e-11
0.0247367
0.00142903
2.77261e-11
0.0246275
0.00155736
1.91321e-11
0.0245121
0.00167745
1.10406e-11
0.0243918
0.00178964
3.9878e-12
0.0242677
0.00189407
-1.97214e-12
0.0241405
0.00199099
-6.71705e-12
0.0240116
0.0020805
-1.15801e-11
0.0238812
0.00216269
-1.68388e-11
0.0237507
0.00223752
-1.94515e-11
0.02362
0.002305
-2.05662e-11
0.0234905
0.00236479
-2.08956e-11
0.0233623
0.00241672
-2.06069e-11
0.0232367
0.00246014
-1.92292e-11
0.0231153
0.00249443
-1.72696e-11
0.0229994
0.0025186
-1.91384e-11
0.0228922
0.00253086
-2.29288e-11
0.0227959
0.0025294
-3.08865e-11
0.0227172
0.00250852
-4.27782e-11
0.0226562
0.00247063
-5.31161e-11
0.0226091
0.00241981
-5.37347e-11
0.0225567
0.00237439
-8.31184e-11
0.0225209
0.00229721
-9.0618e-11
0.0225409
0.00217794
-1.05588e-10
0.0226303
0.00200257
-1.34836e-10
0.0227782
0.00178293
-1.88598e-10
0.0229709
0.00152775
-2.21293e-10
0.0232097
0.00123174
-2.5558e-10
0.0234794
0.000917015
-2.67029e-10
0.0237533
0.000603898
-2.54425e-10
0.0240088
0.000311162
-2.23342e-10
0.0242231
5.60849e-05
-1.75445e-10
0.0243815
-0.000160495
-1.27299e-10
-0.000331751
-7.63575e-11
0.0305237
0.011458
-4.95344e-10
0.031088
0.0114443
-2.68964e-10
0.0311528
0.0113304
7.21972e-11
0.0313047
0.010572
1.25032e-10
0.0314204
0.00994363
1.04119e-10
0.0314419
0.00935428
-5.80475e-11
0.0314437
0.00864036
-2.34766e-10
0.0314246
0.00788686
-2.80792e-10
0.0313841
0.00712388
-2.72236e-10
0.0313213
0.00637123
-2.28243e-10
0.0312421
0.00564047
-1.69768e-10
0.0311457
0.00494075
-1.2527e-10
0.0310321
0.00427441
-1.09439e-10
0.0309001
0.00364122
-3.88732e-11
0.0307545
0.00303888
8.43422e-13
0.0305995
0.00246678
3.25935e-11
0.0304372
0.00192302
5.66163e-11
0.0302685
0.00140673
7.43673e-11
0.0300931
0.000916235
8.6943e-11
0.0299095
0.000451348
9.56122e-11
0.0297123
1.36536e-05
9.99479e-11
0.0295091
-0.000410301
1.06032e-10
0.0292962
-0.000805831
1.09807e-10
0.0290742
-0.00117857
1.11126e-10
0.0288427
-0.00152802
1.12063e-10
0.0286022
-0.00185405
1.12412e-10
0.0283513
-0.00215595
1.11223e-10
0.0280933
-0.00243395
1.09331e-10
0.0278268
-0.00268813
1.05879e-10
0.0275569
-0.00291849
1.0114e-10
0.0272822
-0.00312601
9.49007e-11
0.027006
-0.00330992
8.7848e-11
0.0267286
-0.00347217
8.10853e-11
0.0264519
-0.00361213
7.43637e-11
0.0261772
-0.00373131
6.89399e-11
0.0259065
-0.00382989
6.34718e-11
0.0256407
-0.0039084
5.86072e-11
0.0253828
-0.003967
5.33581e-11
0.0251344
-0.00400614
4.77769e-11
0.024899
-0.00402503
4.07197e-11
0.024679
-0.0040239
3.20064e-11
0.0244804
-0.00400133
2.08879e-11
0.0243083
-0.00395704
5.39274e-12
0.0241671
-0.00388539
-8.31914e-12
0.024031
-0.0037848
-1.22237e-11
0.023914
-0.00367995
-2.58599e-11
0.0238446
-0.00355578
-5.54278e-11
0.0238073
-0.00340213
-7.56849e-11
0.0237893
-0.00320524
-8.03604e-11
0.0238442
-0.00300474
-1.00713e-10
0.023982
-0.00276195
-1.12545e-10
0.0241547
-0.00245812
-1.38605e-10
0.024341
-0.00211394
-1.24892e-10
0.0245355
-0.00176344
-9.80789e-11
0.0247063
-0.00140086
-6.15507e-11
0.0248421
-0.00104754
-2.09674e-11
0.0249374
-0.000719921
1.95072e-11
0.0249907
-0.000421067
4.65659e-11
0.0250327
-0.000156952
6.70344e-11
0.025053
9.37664e-05
6.86566e-11
0.0250404
0.000331689
7.18152e-11
0.0249992
0.000545218
7.68307e-11
0.0249502
0.000730266
7.11659e-11
0.0248932
0.000905516
6.35601e-11
0.0248268
0.00107169
5.41565e-11
0.0247538
0.00122868
4.47197e-11
0.0246735
0.00137809
3.53723e-11
0.0245869
0.00151961
2.62818e-11
0.0244942
0.00165285
1.71566e-11
0.0243956
0.00177772
8.23761e-12
0.0242919
0.00189408
7.79746e-14
0.0241836
0.00200209
-6.98308e-12
0.024072
0.00210178
-1.64487e-11
0.0239579
0.00219344
-1.68716e-11
0.0238422
0.00227698
-1.77436e-11
0.023726
0.00235254
-2.01058e-11
0.0236101
0.00241971
-2.24605e-11
0.0234954
0.00247837
-2.47168e-11
0.0233837
0.00252759
-2.70235e-11
0.0232756
0.00256699
-2.98246e-11
0.0231738
0.00259476
-3.35038e-11
0.0230803
0.00260989
-3.93066e-11
0.0229995
0.00260838
-4.81132e-11
0.0229364
0.00258683
-6.21532e-11
0.0228933
0.00254629
-6.17348e-11
0.022853
0.00250139
-8.18608e-11
0.0228064
0.00245746
-8.56674e-11
0.0228061
0.00236496
-9.55665e-11
0.0228685
0.00221955
-1.20025e-10
0.0230016
0.00202204
-1.60037e-10
0.0231804
0.00179175
-2.07523e-10
0.0234059
0.00151725
-2.46135e-10
0.0236771
0.00121311
-2.666e-10
0.0239629
0.000900446
-2.62858e-10
0.0242411
0.000596684
-2.38882e-10
0.024486
0.000322542
-1.953e-10
0.0246845
8.66593e-05
-1.44091e-10
0.0248238
-0.000103162
-8.96836e-11
0.0249114
-0.000259124
-5.38688e-11
-0.000382816
-1.55304e-11
0.0272137
0.00942563
-1.75489e-09
0.0282711
0.0104299
-2.60834e-12
0.0293325
0.0103299
1.2276e-10
0.029956
0.0100016
2.95149e-12
0.0304015
0.00952781
-1.07906e-10
0.0307809
0.00897537
-2.62295e-10
0.0310721
0.0083323
-3.36472e-10
0.0312881
0.00765072
-3.53972e-10
0.031448
0.00695752
-2.93022e-10
0.0315463
0.00627107
-2.26667e-10
0.031587
0.00560378
-1.51935e-10
0.031578
0.00495964
-1.48127e-10
0.031529
0.00433612
-6.39065e-11
0.0314467
0.00373669
-1.79111e-11
0.0313369
0.00316026
1.89735e-11
0.0312085
0.00260836
4.84664e-11
0.0310675
0.00208126
7.0933e-11
0.0309165
0.00157952
8.76846e-11
0.0307545
0.00110296
1.00893e-10
0.0305812
0.000651407
1.10544e-10
0.0303976
0.000225264
1.19534e-10
0.0301955
-0.000180408
1.2328e-10
0.029981
-0.000563697
1.26572e-10
0.0297523
-0.000923642
1.29021e-10
0.0295098
-0.00126101
1.30027e-10
0.0292538
-0.00157598
1.2991e-10
0.0289851
-0.00186787
1.28568e-10
0.0287067
-0.00213717
1.26351e-10
0.0284183
-0.00238335
1.2241e-10
0.0281234
-0.00260733
1.17614e-10
0.0278223
-0.00280905
1.11683e-10
0.0275167
-0.00298962
1.04625e-10
0.0272101
-0.00314882
9.815e-11
0.0269012
-0.00328862
9.09849e-11
0.0265941
-0.00340753
8.55525e-11
0.0262884
-0.00350904
8.01504e-11
0.0259852
-0.00359016
7.56318e-11
0.0256867
-0.00365489
7.12205e-11
0.0253942
-0.00370041
6.64857e-11
0.0251095
-0.00372933
6.06095e-11
0.0248381
-0.00373986
5.36086e-11
0.0245808
-0.00373335
4.41808e-11
0.0243441
-0.00370731
3.244e-11
0.024134
-0.00366346
1.9004e-11
0.0239566
-0.00359485
2.29188e-12
0.0237933
-0.00350353
-4.63812e-12
0.0236526
-0.00340255
-2.75577e-11
0.0235482
-0.00328966
-4.31891e-11
0.0234958
-0.00314704
-6.96106e-11
0.0234474
-0.00295829
-9.63752e-11
0.0234342
-0.00275216
-1.08965e-10
0.0235042
-0.00253461
-1.18032e-10
0.0236477
-0.00226841
-1.3991e-10
0.0238118
-0.00194146
-1.39815e-10
0.0239868
-0.00159091
-1.3086e-10
0.0241608
-0.00123453
-9.94162e-11
0.0243116
-0.000876511
-5.76265e-11
0.0244242
-0.000535807
-1.672e-11
0.0244983
-0.000223386
1.85137e-11
0.0245454
5.63689e-05
4.21312e-11
0.0245818
0.000304301
4.54905e-11
0.0245889
0.000548721
5.09984e-11
0.0245618
0.000769977
6.02954e-11
0.0245194
0.00096134
6.06716e-11
0.0244695
0.00113267
5.13086e-11
0.0244097
0.00129749
4.13451e-11
0.0243441
0.00145059
3.2067e-11
0.0242739
0.00159512
2.31797e-11
0.0241986
0.00173171
1.37177e-11
0.0241182
0.00186035
3.9033e-12
0.0240327
0.00198043
-5.39484e-12
0.0239431
0.00209166
-1.42755e-11
0.0238503
0.002194
-1.66863e-11
0.0237557
0.00228739
-2.16434e-11
0.0236601
0.00237195
-2.63341e-11
0.0235646
0.00244737
-3.06436e-11
0.0234707
0.00251339
-3.47523e-11
0.0233792
0.00256934
-3.88643e-11
0.0232922
0.00261416
-4.3589e-11
0.0232116
0.00264672
-4.73414e-11
0.0231393
0.00266518
-5.78002e-11
0.0230817
0.00266498
-6.30181e-11
0.0230415
0.00264216
-8.15099e-11
0.0230199
0.00260269
-7.83681e-11
0.0229802
0.00257667
-1.01871e-10
0.0229603
0.00251011
-1.07507e-10
0.023008
0.00239641
-1.18529e-10
0.0231258
0.00222801
-1.4397e-10
0.0232957
0.0020221
-1.91697e-10
0.0235076
0.00177439
-2.22044e-10
0.0237714
0.00148771
-2.53285e-10
0.0240633
0.0011821
-2.64854e-10
0.0243596
0.000874391
-2.53067e-10
0.0246348
0.000586955
-2.1881e-10
0.0248673
0.000333714
-1.69553e-10
0.0250463
0.000121586
-1.14619e-10
0.0251676
-4.83699e-05
-6.45014e-11
0.0252388
-0.000180675
-2.54057e-11
0.0252729
-0.000296585
-3.59554e-12
-0.000387436
1.26939e-11
0.0228903
0.00731008
-2.11908e-09
0.0248696
0.00851175
1.32477e-10
0.026444
0.00881076
3.13516e-11
0.0277252
0.00873543
-2.00714e-10
0.0286781
0.00854881
-3.90441e-10
0.0294618
0.00815808
-4.20011e-10
0.0300734
0.00768826
-4.04537e-10
0.0305215
0.00716459
-3.59112e-10
0.0308304
0.00660609
-2.74429e-10
0.0310388
0.00603183
-1.74516e-10
0.031183
0.00545103
-1.66222e-10
0.0312735
0.00487558
-7.33416e-11
0.0313152
0.00430806
-1.78919e-11
0.0313197
0.00375354
2.4743e-11
0.0312906
0.00321428
5.71631e-11
0.0312364
0.00269378
8.15177e-11
0.0311573
0.00219468
9.89238e-11
0.0310582
0.00171747
1.12099e-10
0.0309381
0.00126344
1.21109e-10
0.0307966
0.000832054
1.27804e-10
0.0306376
0.000424041
1.34234e-10
0.0304559
3.92257e-05
1.3808e-10
0.0302563
-0.000325308
1.42555e-10
0.0300369
-0.000667543
1.4476e-10
0.0298
-0.000988169
1.45692e-10
0.0295455
-0.00128765
1.45375e-10
0.0292757
-0.0015657
1.43765e-10
0.0289923
-0.0018223
1.41402e-10
0.0286972
-0.00205818
1.37329e-10
0.028392
-0.00227254
1.32496e-10
0.0280795
-0.00246751
1.26575e-10
0.0277596
-0.00264152
1.19934e-10
0.0274368
-0.00279754
1.13661e-10
0.0271087
-0.00293373
1.07065e-10
0.0267803
-0.00305285
1.01628e-10
0.0264497
-0.00315373
9.6681e-11
0.0261191
-0.00323815
9.20879e-11
0.0257917
-0.0033057
8.82665e-11
0.0254671
-0.00335774
8.34084e-11
0.0251508
-0.00339348
7.85577e-11
0.0248442
-0.00341476
7.21206e-11
0.0245502
-0.00341982
6.41456e-11
0.0242732
-0.00341022
5.45729e-11
0.0240138
-0.00338389
4.22546e-11
0.0237795
-0.00334112
2.88661e-11
0.0235724
-0.00327818
1.01109e-11
0.0233814
-0.00319416
2.49588e-12
0.0232085
-0.00310019
-1.3406e-11
0.0230693
-0.00299684
-3.40523e-11
0.0229849
-0.00286595
-6.51601e-11
0.02293
-0.00269877
-9.26583e-11
0.0228881
-0.00249663
-1.05335e-10
0.0229058
-0.00229198
-1.12942e-10
0.0230073
-0.00205557
-1.34839e-10
0.0231607
-0.00176332
-1.65146e-10
0.0233266
-0.00142223
-1.52908e-10
0.0235023
-0.00107139
-1.3287e-10
0.0236645
-0.000713546
-9.91418e-11
0.023797
-0.000364139
-5.75777e-11
0.0238926
-4.03392e-05
-2.33055e-11
0.0239484
0.000251044
1.49169e-11
0.024
0.000504185
2.79286e-11
0.0240293
0.000747518
2.96988e-11
0.0240224
0.000975746
3.27543e-11
0.0239884
0.00117555
3.84187e-11
0.0239496
0.00134476
3.33573e-11
0.0239035
0.00150394
2.77149e-11
0.0238518
0.00165242
1.93119e-11
0.0237958
0.00179122
9.07911e-12
0.0237356
0.00192219
-1.8562e-12
0.0236711
0.00204474
-1.035e-11
0.0236029
0.00215846
-1.75296e-11
0.0235314
0.00226308
-2.67922e-11
0.023458
0.00235794
-2.93123e-11
0.0233841
0.00244296
-3.41224e-11
0.0233107
0.00251727
-4.72455e-11
0.0232408
0.00258035
-5.24021e-11
0.0231749
0.00263117
-5.25302e-11
0.0231176
0.00266758
-6.06559e-11
0.0230697
0.00268923
-7.03476e-11
0.0230386
0.00268954
-8.23639e-11
0.0230315
0.00266334
-9.60484e-11
0.0230207
0.00264068
-1.05025e-10
0.0230019
0.00261113
-1.10241e-10
0.0230372
0.00252856
-1.2308e-10
0.0231415
0.00238797
-1.46648e-10
0.0232982
0.00221378
-1.90752e-10
0.0234979
0.00199639
-2.22348e-10
0.0237487
0.00173346
-2.48461e-10
0.0240395
0.00144226
-2.61572e-10
0.0243469
0.0011384
-2.58331e-10
0.0246466
0.00084427
-2.35541e-10
0.0249123
0.000576316
-1.93864e-10
0.0251291
0.000346648
-1.42062e-10
0.0252888
0.000158234
-9.01993e-11
0.0253965
6.96794e-06
-4.20851e-11
0.0254519
-0.000106636
-1.00941e-11
0.0254771
-0.000203976
1.01439e-11
0.0254754
-0.00029461
1.5493e-11
-0.000374865
2.45576e-11
0.0192157
0.00563317
-2.38934e-09
0.0213387
0.00643433
1.2716e-10
0.023259
0.00689556
-1.4532e-10
0.0247931
0.00714645
-4.41271e-10
0.026096
0.00716669
-5.37127e-10
0.0271874
0.0070096
-4.87347e-10
0.0281032
0.00674823
-3.95924e-10
0.0288548
0.0064128
-2.98883e-10
0.0294553
0.00602453
-1.86606e-10
0.0299201
0.00559478
-1.55446e-10
0.0302635
0.00513777
-4.79571e-11
0.0305121
0.00465991
1.09204e-11
0.0306829
0.00417195
5.86639e-11
0.030787
0.00368061
8.98516e-11
0.030836
0.00319401
1.13405e-10
0.0308417
0.00271818
1.26477e-10
0.0308127
0.00225662
1.34162e-10
0.0307551
0.00181198
1.38947e-10
0.0306739
0.00138643
1.42057e-10
0.0305679
0.000980604
1.44313e-10
0.0304397
0.000595633
1.47204e-10
0.0302861
0.000232206
1.50134e-10
0.0301083
-0.000110483
1.52953e-10
0.0299072
-0.000431702
1.54976e-10
0.0296838
-0.000732038
1.56156e-10
0.0294431
-0.00101217
1.57e-10
0.0291829
-0.00127252
1.55924e-10
0.0289093
-0.00151315
1.54496e-10
0.028619
-0.00173504
1.50894e-10
0.0283179
-0.00193768
1.46688e-10
0.0280044
-0.00212271
1.41193e-10
0.0276829
-0.00228929
1.35114e-10
0.0273543
-0.00243923
1.29118e-10
0.0270199
-0.00257169
1.23024e-10
0.0266824
-0.0026884
1.17798e-10
0.0263422
-0.00278885
1.12661e-10
0.0260019
-0.00287413
1.08458e-10
0.0256634
-0.00294456
1.03936e-10
0.025328
-0.00300029
9.94963e-11
0.0249995
-0.00304236
9.45625e-11
0.0246785
-0.0030706
8.85599e-11
0.0243677
-0.00308569
8.14014e-11
0.0240691
-0.00308763
7.2789e-11
0.0237848
-0.0030761
6.2185e-11
0.0235182
-0.00305104
4.96187e-11
0.0232735
-0.00301114
3.51873e-11
0.0230549
-0.00295472
1.68077e-11
0.0228544
-0.00287946
8.75213e-12
0.0226706
-0.00279503
-7.67165e-12
0.0225184
-0.00270202
-2.70174e-11
0.0224101
-0.00258268
-5.114e-11
0.0223457
-0.00243288
-6.93645e-11
0.0222916
-0.0022474
-1.17236e-10
0.0222682
-0.00204447
-1.21906e-10
0.022318
-0.00183155
-1.32582e-10
0.0224499
-0.00157412
-1.47803e-10
0.0226056
-0.00125835
-1.73682e-10
0.0227753
-0.000911373
-1.65165e-10
0.0229419
-0.000558629
-1.35429e-10
0.0230885
-0.000206468
-9.85097e-11
0.0231995
0.00012559
-5.66055e-11
0.0232693
0.000427097
-2.73911e-11
0.0233246
0.000690079
-3.34006e-13
0.0233688
0.000930751
1.9479e-12
0.0233851
0.00116091
5.85616e-12
0.0233668
0.00136629
1.09593e-11
0.0233385
0.00153759
1.78924e-11
0.0233058
0.0016895
1.00753e-11
0.023267
0.00183304
-1.27859e-13
0.0232265
0.00196448
-9.07289e-12
0.0231845
0.00208687
-2.15655e-11
0.023142
0.00220067
-3.13075e-11
0.0230975
0.00230565
-4.02629e-11
0.0230522
0.0024004
-4.78941e-11
0.0230069
0.00248439
-5.47342e-11
0.0229635
0.00255577
-5.65541e-11
0.0229252
0.00261368
-6.60513e-11
0.0228941
0.00265594
-7.54364e-11
0.0228737
0.00268082
-8.86892e-11
0.0228702
0.00268462
-9.76798e-11
0.0228807
0.00266745
-1.16489e-10
0.0228719
0.00265956
-1.1881e-10
0.0228951
0.00260532
-1.27981e-10
0.0229962
0.00249473
-1.44103e-10
0.023146
0.00235757
-1.7394e-10
0.023332
0.00217316
-2.12314e-10
0.0235712
0.00194008
-2.42803e-10
0.0238581
0.00167028
-2.60099e-10
0.024172
0.00137883
-2.62783e-10
0.0244903
0.00108585
-2.47394e-10
0.0247853
0.000809679
-2.12805e-10
0.0250403
0.00056586
-1.67005e-10
0.0252371
0.000360943
-1.14849e-10
0.0253814
0.000195817
-6.71006e-11
0.025472
6.4604e-05
-2.82401e-11
0.0255181
-3.69943e-05
-1.20094e-12
0.0255434
-0.000126144
1.62014e-11
0.0255526
-0.000209018
1.76764e-11
0.025541
-0.000278935
2.09521e-11
-0.000349666
2.09993e-11
0.0170705
0.00452649
-2.54576e-09
0.0189152
0.00460784
1.04026e-10
0.0206219
0.00516556
-2.73877e-10
0.0221397
0.00555431
-5.15884e-10
0.0234681
0.00574675
-4.94975e-10
0.0246255
0.00577585
-3.89111e-10
0.0256324
0.00569447
-2.80758e-10
0.0265053
0.00552607
-1.78355e-10
0.0272547
0.00529124
-1.19846e-10
0.0278936
0.00499946
-1.08195e-11
0.0284348
0.00466255
5.32017e-11
0.0288748
0.00429239
1.07474e-10
0.0292261
0.00389533
1.42219e-10
0.0294958
0.00348533
1.64927e-10
0.0296981
0.00306625
1.7147e-10
0.0298431
0.0026489
1.72306e-10
0.0299332
0.00223672
1.68619e-10
0.0299771
0.00183484
1.63753e-10
0.0299744
0.00144646
1.58846e-10
0.0299308
0.00107362
1.55042e-10
0.0298505
0.000718456
1.53754e-10
0.0297367
0.000381618
1.52838e-10
0.0295944
6.48794e-05
1.54576e-10
0.029425
-0.000231543
1.57491e-10
0.0292298
-0.00050789
1.59411e-10
0.0290129
-0.000765518
1.60999e-10
0.0287737
-0.00100461
1.60939e-10
0.0285177
-0.00122641
1.60398e-10
0.0282462
-0.00143099
1.58195e-10
0.0279625
-0.00161931
1.54828e-10
0.027669
-0.00179121
1.50694e-10
0.0273659
-0.00194807
1.45417e-10
0.0270549
-0.00208867
1.40253e-10
0.0267363
-0.00221545
1.35161e-10
0.0264128
-0.00232647
1.30373e-10
0.0260831
-0.00242465
1.2548e-10
0.0257507
-0.00250751
1.22062e-10
0.0254152
-0.00257837
1.16758e-10
0.0250807
-0.00263478
1.12712e-10
0.0247498
-0.00268066
1.08033e-10
0.024424
-0.00271374
1.02244e-10
0.0241069
-0.00273696
9.62901e-11
0.0237992
-0.00274844
8.82215e-11
0.0235051
-0.0027498
7.87919e-11
0.0232262
-0.00273957
6.71588e-11
0.0229648
-0.00271774
5.41435e-11
0.0227251
-0.0026836
3.92363e-11
0.022507
-0.00263386
2.1669e-11
0.0223048
-0.00256842
1.24333e-11
0.0221156
-0.00249333
-3.7524e-12
0.0219531
-0.00240888
-2.75432e-11
0.0218244
-0.00230062
-4.62638e-11
0.0217343
-0.00216299
-6.63598e-11
0.021671
-0.00199749
-1.13073e-10
0.0216164
-0.00179817
-1.1606e-10
0.0216183
-0.00159864
-1.2979e-10
0.0216973
-0.00136552
-1.48822e-10
0.0218292
-0.00108166
-1.8178e-10
0.0219824
-0.000748893
-1.76194e-10
0.0221422
-0.000407589
-1.60638e-10
0.0222976
-5.81861e-05
-1.27588e-10
0.0224187
0.000277156
-9.55484e-11
0.0225058
0.000584064
-6.42494e-11
0.022568
0.000854465
-4.06928e-11
0.0226269
0.00109334
-1.79841e-11
0.0226698
0.00131551
-1.62033e-11
0.0226777
0.00152314
-1.35598e-11
0.0226627
0.00170066
-9.25595e-12
0.0226459
0.00184695
-1.19029e-11
0.0226261
0.00198153
-1.7169e-11
0.0226039
0.00210559
-3.08876e-11
0.0225808
0.00221848
-3.63767e-11
0.0225581
0.00232236
-4.67085e-11
0.0225356
0.00241515
-5.73335e-11
0.0225169
0.00249535
-7.13615e-11
0.0225018
0.00256112
-7.87559e-11
0.0224948
0.00260978
-9.27438e-11
0.0225001
0.00263846
-1.00323e-10
0.0225111
0.00265268
-1.20564e-10
0.0225353
0.00264735
-1.22692e-10
0.0225616
0.00262305
-1.31471e-10
0.0226566
0.00254975
-1.48175e-10
0.0227956
0.0024473
-1.74168e-10
0.0229635
0.00230147
-2.04936e-10
0.0231893
0.0021014
-2.39505e-10
0.0234678
0.00185849
-2.59076e-10
0.0237857
0.00158778
-2.68761e-10
0.0241156
0.0013026
-2.59263e-10
0.0244388
0.00102557
-2.33525e-10
0.0247284
0.000772041
-1.92154e-10
0.0249686
0.000554091
-1.42659e-10
0.025155
0.000374028
-9.54086e-11
0.025285
0.000230383
-5.20446e-11
0.0253699
0.000116814
-2.0436e-11
0.0254161
2.64029e-05
4.88973e-12
0.0254455
-5.64623e-05
1.11282e-11
0.0254603
-0.000131851
1.68347e-11
0.0254573
-0.00019836
1.73702e-11
0.025445
-0.000258604
2.03889e-11
-0.000319653
2.02723e-11
0.0174794
0.00384141
-2.6982e-09
0.0182579
0.00385812
6.51143e-11
0.0192944
0.00409814
-1.99228e-10
0.0203601
0.00441461
-2.86689e-10
0.0214023
0.00462678
-2.38838e-10
0.0224007
0.00472621
-1.71364e-10
0.0233458
0.00473451
-1.11409e-10
0.0242177
0.00467242
-4.77208e-11
0.0250169
0.00454286
2.10113e-11
0.0257362
0.00435658
9.05254e-11
0.0263814
0.00411675
1.48232e-10
0.0269468
0.00383665
1.92512e-10
0.027433
0.0035225
2.18348e-10
0.0278425
0.00318628
2.28276e-10
0.0281728
0.00283526
2.25397e-10
0.0284344
0.00247743
2.14993e-10
0.0286218
0.00211998
2.00164e-10
0.0287464
0.00176666
1.85155e-10
0.0288102
0.00142338
1.71741e-10
0.0288209
0.00109156
1.61177e-10
0.0287904
0.000774645
1.54851e-10
0.0287185
0.000473299
1.50962e-10
0.0286187
0.000188403
1.50607e-10
0.0284897
-7.92609e-05
1.52618e-10
0.0283345
-0.000328048
1.54674e-10
0.0281556
-0.00055954
1.57243e-10
0.0279523
-0.000774952
1.58457e-10
0.027729
-0.00097441
1.59327e-10
0.0274878
-0.00115941
1.59022e-10
0.0272293
-0.00132948
1.57332e-10
0.0269593
-0.00148577
1.55407e-10
0.0266742
-0.00162826
1.51723e-10
0.0263794
-0.00175712
1.48281e-10
0.0260754
-0.00187335
1.44356e-10
0.0257649
-0.00197616
1.40927e-10
0.025445
-0.00206771
1.35825e-10
0.0251185
-0.0021462
1.3519e-10
0.024791
-0.00221464
1.30195e-10
0.0244677
-0.00227248
1.23938e-10
0.0241556
-0.00232072
1.19508e-10
0.0238545
-0.00236039
1.11027e-10
0.0235643
-0.00238976
1.06305e-10
0.0232856
-0.00241122
9.8895e-11
0.0230193
-0.00242169
9.05026e-11
0.0227624
-0.00242443
7.92434e-11
0.0225186
-0.00241513
6.79054e-11
0.0222811
-0.0023968
5.39825e-11
0.0220559
-0.00236469
3.976e-11
0.0218409
-0.00232069
2.36097e-11
0.0216322
-0.00226024
1.41452e-11
0.0214305
-0.00219278
-4.59723e-13
0.0212494
-0.00211564
-2.95071e-11
0.0210969
-0.00201549
-3.88757e-11
0.0209745
-0.00188994
-6.45136e-11
0.0208983
-0.0017417
-8.50525e-11
0.0208255
-0.0015562
-1.26751e-10
0.0207919
-0.00136325
-1.3236e-10
0.0208277
-0.00115194
-1.44655e-10
0.0209395
-0.000899686
-1.67891e-10
0.0210757
-0.000589937
-1.83515e-10
0.0212319
-0.000258411
-1.83795e-10
0.0213852
8.17681e-05
-1.61845e-10
0.0215194
0.000412002
-1.25128e-10
0.0216281
0.000719713
-9.91992e-11
0.0217046
0.000991943
-6.07773e-11
0.0217691
0.0012326
-4.55101e-11
0.0218306
0.00144576
-4.41352e-11
0.0218751
0.00164513
-4.22357e-11
0.0218887
0.00182407
-4.03579e-11
0.0218959
0.00197004
-3.20495e-11
0.0219047
0.00209384
-4.15313e-11
0.0219113
0.00220841
-5.28792e-11
0.0219231
0.00230936
-6.61413e-11
0.0219385
0.00239608
-7.77552e-11
0.0219616
0.0024697
-9.04709e-11
0.0219942
0.00252292
-1.01069e-10
0.0220343
0.00256267
-1.23093e-10
0.0220707
0.00259341
-1.26628e-10
0.0221277
0.00258532
-1.35652e-10
0.0222228
0.00253723
-1.49462e-10
0.0223501
0.00247565
-1.72085e-10
0.0225001
0.0023778
-1.95134e-10
0.0226996
0.0022139
-2.34638e-10
0.022958
0.00200826
-2.56799e-10
0.0232589
0.00176248
-2.72123e-10
0.0235854
0.00149467
-2.72429e-10
0.0239201
0.00122129
-2.55406e-10
0.0242296
0.00096373
-2.20171e-10
0.0245025
0.000734359
-1.75381e-10
0.0247203
0.00054151
-1.26773e-10
0.0248875
0.00038476
-8.2438e-11
0.0250044
0.000259427
-4.62332e-11
0.0250799
0.000160671
-2.0197e-11
0.025126
8.12238e-05
1.54124e-12
0.0251566
4.62795e-06
2.14594e-12
0.0251721
-6.36762e-05
4.33475e-12
0.0251737
-0.000126386
8.77402e-12
0.0251665
-0.000182737
1.82727e-11
0.0251544
-0.000237595
2.23473e-11
-0.00029081
2.19735e-11
0.0167145
0.00303577
-2.3584e-09
0.0175903
0.00302146
1.18441e-10
0.0183633
0.00331119
6.90471e-11
0.0191048
0.00361179
-1.43118e-11
0.0198608
0.00381615
4.03122e-11
0.0206436
0.00392546
2.75114e-11
0.0214443
0.00395944
3.4788e-11
0.0222414
0.00393421
6.31193e-11
0.0230101
0.00385424
1.05435e-10
0.0237369
0.00372217
1.53418e-10
0.0244048
0.00354336
1.97801e-10
0.025009
0.00332395
2.32348e-10
0.0255388
0.00307285
2.52904e-10
0.0259958
0.00279776
2.58509e-10
0.026376
0.00250771
2.51009e-10
0.026686
0.00220877
2.34496e-10
0.0269275
0.00190805
2.13327e-10
0.0271074
0.00160948
1.91664e-10
0.0272336
0.00131745
1.72568e-10
0.0273092
0.00103428
1.57356e-10
0.0273444
0.000762042
1.47228e-10
0.0273386
0.000501929
1.41389e-10
0.0272981
0.00025413
1.37424e-10
0.0272253
1.98458e-05
1.42135e-10
0.0271185
-0.000197981
1.44016e-10
0.0269835
-0.000401788
1.46897e-10
0.0268183
-0.000591476
1.49166e-10
0.0266286
-0.000767279
1.51362e-10
0.0264169
-0.000930637
1.53221e-10
0.0261839
-0.00108097
1.53416e-10
0.025937
-0.00121988
1.54007e-10
0.0256765
-0.00134666
1.52356e-10
0.0254085
-0.00146271
1.51451e-10
0.0251318
-0.00156776
1.4947e-10
0.0248518
-0.00166289
1.47012e-10
0.0245769
-0.00174786
1.45945e-10
0.0243104
-0.00182427
1.39103e-10
0.0240536
-0.00189141
1.36926e-10
0.0237993
-0.00195021
1.33509e-10
0.0235496
-0.00200001
1.28487e-10
0.023298
-0.00204143
1.24317e-10
0.0230541
-0.00207398
1.16787e-10
0.0228105
-0.00209915
1.07788e-10
0.022566
-0.00211498
9.96684e-11
0.0223175
-0.00212263
8.96002e-11
0.0220637
-0.00212084
7.86389e-11
0.0218064
-0.00210973
6.67026e-11
0.0215468
-0.00208938
5.35559e-11
0.0212945
-0.00205848
4.07063e-11
0.021047
-0.00201657
2.49801e-11
0.0208107
-0.00196156
1.66188e-11
0.0205845
-0.00190235
-5.51621e-13
0.0203852
-0.00183026
-1.94647e-11
0.0202153
-0.00173929
-3.67055e-11
0.0200771
-0.00162612
-5.50537e-11
0.0199845
-0.00149124
-8.22491e-11
0.0199116
-0.00132434
-1.20331e-10
0.0198654
-0.00113817
-1.2517e-10
0.0198728
-0.000944354
-1.36609e-10
0.0199552
-0.000713923
-1.56575e-10
0.0200858
-0.00043269
-1.92328e-10
0.0202387
-0.000114886
-1.96194e-10
0.0204017
0.000212008
-1.77257e-10
0.0205544
0.000537026
-1.52822e-10
0.0206848
0.000840862
-1.15483e-10
0.0207927
0.00111519
-9.66004e-11
0.0208796
0.00135449
-7.64672e-11
0.0209623
0.00156328
-6.65506e-11
0.02104
0.00175098
-6.59661e-11
0.021098
0.00192033
-6.62927e-11
0.0211343
0.00206777
-6.85559e-11
0.0211737
0.00218215
-7.636e-11
0.0212151
0.00227811
-8.50136e-11
0.0212689
0.00235622
-9.90699e-11
0.0213289
0.00241801
-1.13033e-10
0.0213893
0.00247115
-1.27156e-10
0.0214567
0.00250004
-1.43483e-10
0.0215824
0.00247226
-1.49564e-10
0.0217372
0.00243263
-1.65893e-10
0.0218898
0.00238359
-1.87551e-10
0.0220904
0.00226664
-2.2658e-10
0.0223537
0.00210094
-2.50069e-10
0.0226561
0.00189175
-2.72593e-10
0.0229933
0.0016488
-2.79511e-10
0.023338
0.00139117
-2.70917e-10
0.0236747
0.00113501
-2.46922e-10
0.0239738
0.000899665
-2.08025e-10
0.0242298
0.00069527
-1.6235e-10
0.0244266
0.000526421
-1.16866e-10
0.0245745
0.000390623
-7.77029e-11
0.0246755
0.000281465
-4.85136e-11
0.0247404
0.000195285
-2.14192e-11
0.0247775
0.000124158
-3.21116e-12
0.024801
5.56093e-05
2.78918e-12
0.0248089
-6.47003e-06
-1.51258e-11
0.0248056
-6.44645e-05
-3.6662e-12
0.0247897
-0.000117172
1.3038e-11
0.0247674
-0.000167587
1.34155e-11
0.0247393
-0.000215094
2.01711e-11
-0.000261785
2.07177e-11
0.0175006
0.00241961
-9.32604e-10
0.0179026
0.00266142
4.81363e-10
0.0182889
0.00290868
3.27559e-10
0.0186841
0.00315701
2.28941e-10
0.0191176
0.00333954
1.55633e-10
0.019632
0.00342067
1.6771e-10
0.0202174
0.00343041
1.37636e-10
0.0208491
0.00338459
1.30526e-10
0.0214927
0.00329583
1.40092e-10
0.0221217
0.00316675
1.60935e-10
0.0227183
0.00300487
1.86909e-10
0.0232683
0.0028148
2.12183e-10
0.0237649
0.00260303
2.30698e-10
0.0242055
0.00237549
2.38451e-10
0.024591
0.00213724
2.34439e-10
0.0249212
0.00189335
2.20642e-10
0.0252011
0.00164726
2.01047e-10
0.025429
0.00140287
1.797e-10
0.0256111
0.00116194
1.60255e-10
0.0257453
0.000927376
1.44682e-10
0.0258361
0.000699774
1.34002e-10
0.0258842
0.000481183
1.27729e-10
0.0258893
0.000271575
1.26072e-10
0.0258583
7.18068e-05
1.2323e-10
0.0257897
-0.000115835
1.26552e-10
0.0256936
-0.000291134
1.31369e-10
0.0255678
-0.0004545
1.35314e-10
0.0254204
-0.000606335
1.38273e-10
0.0252539
-0.00074718
1.42336e-10
0.0250734
-0.000877556
1.4434e-10
0.0248864
-0.000998207
1.46564e-10
0.0246937
-0.00110976
1.47092e-10
0.0244994
-0.00121266
1.46788e-10
0.0243047
-0.00130714
1.47731e-10
0.02411
-0.00139323
1.4812e-10
0.0239151
-0.00147159
1.46997e-10
0.0237173
-0.00154204
1.44964e-10
0.0235155
-0.00160494
1.43567e-10
0.0233071
-0.00165989
1.3972e-10
0.0230887
-0.00170736
1.35768e-10
0.0228583
-0.00174698
1.29847e-10
0.022616
-0.00177899
1.23998e-10
0.0223587
-0.00180322
1.15181e-10
0.0220848
-0.00181994
1.09814e-10
0.0218028
-0.00182855
1.00468e-10
0.0215135
-0.00183126
8.87789e-11
0.0212276
-0.00182602
7.66794e-11
0.0209478
-0.0018151
6.40298e-11
0.0206788
-0.00179511
5.13194e-11
0.0204247
-0.00176848
3.80267e-11
0.0201882
-0.00173024
2.50782e-11
0.0199631
-0.00168344
1.61012e-11
0.0197582
-0.00163054
2.14676e-12
0.0195741
-0.00156536
-1.47193e-11
0.0194144
-0.00148169
-2.70008e-11
0.0192866
-0.00138095
-5.60522e-11
0.0191971
-0.00125665
-7.89227e-11
0.0191361
-0.00110611
-1.14567e-10
0.0190979
-0.000930065
-1.19767e-10
0.0191108
-0.000750862
-1.30692e-10
0.0191957
-0.000538689
-1.51593e-10
0.0193358
-0.000282006
-1.90634e-10
0.0195024
2.20606e-05
-2.01222e-10
0.0196845
0.000337641
-1.95417e-10
0.0198624
0.000655116
-1.73801e-10
0.0200256
0.000954581
-1.54075e-10
0.0201639
0.00122761
-1.26454e-10
0.0202778
0.00146597
-1.09082e-10
0.0203782
0.0016702
-1.06151e-10
0.0204726
0.00184947
-1.02943e-10
0.0205609
0.0020019
-1.03523e-10
0.0206334
0.00213176
-1.05771e-10
0.020697
0.0022338
-1.10773e-10
0.0207558
0.0023131
-1.33361e-10
0.0208199
0.00236591
-1.38268e-10
0.020925
0.00237894
-1.50473e-10
0.0210737
0.00235448
-1.7447e-10
0.021216
0.00233284
-1.8321e-10
0.0213833
0.00226264
-2.08124e-10
0.0216159
0.00214108
-2.4325e-10
0.0218929
0.00197178
-2.67616e-10
0.0222071
0.0017634
-2.82488e-10
0.0225482
0.00152662
-2.84475e-10
0.0228884
0.00128167
-2.68897e-10
0.0232139
0.00104451
-2.38271e-10
0.0234949
0.000832664
-1.96985e-10
0.0237286
0.000652223
-1.52794e-10
0.0239047
0.000505788
-1.1188e-10
0.0240326
0.00038874
-7.82158e-11
0.0241171
0.000294445
-5.31969e-11
0.0241674
0.000218224
-3.54728e-11
0.0241929
0.000154723
-2.12642e-11
0.0242063
9.57232e-05
-1.01703e-11
0.0242024
3.99076e-05
-9.29093e-12
0.0241895
-1.3262e-05
-8.13176e-12
0.0241678
-6.22202e-05
1.69919e-13
0.0241398
-0.000107965
6.75738e-12
0.0241052
-0.000152074
1.19348e-11
0.0240657
-0.000192845
1.98941e-11
-0.000233433
2.13505e-11
0.0175378
0.00195454
6.93169e-10
0.0179023
0.00233785
5.94873e-10
0.01819
0.00260469
4.80322e-10
0.0184625
0.00285943
4.06587e-10
0.0187663
0.00303645
2.97304e-10
0.0191363
0.00309949
2.49696e-10
0.0195826
0.00306621
1.88246e-10
0.020079
0.00297818
1.41407e-10
0.0205928
0.00285193
1.13653e-10
0.0210981
0.00269952
1.05756e-10
0.0215884
0.00253031
1.14345e-10
0.022056
0.0023496
1.33898e-10
0.0224994
0.00216138
1.55759e-10
0.0229141
0.00196846
1.72395e-10
0.0232956
0.00177235
1.79314e-10
0.0236379
0.00157462
1.75926e-10
0.0239367
0.0013765
1.6479e-10
0.0241872
0.00117946
1.49939e-10
0.0243884
0.000984642
1.35223e-10
0.0245394
0.000793509
1.23313e-10
0.0246413
0.000607032
1.15353e-10
0.0246978
0.000426547
1.11194e-10
0.0247104
0.000252761
1.10235e-10
0.0246872
8.62475e-05
1.10496e-10
0.0246325
-7.16499e-05
1.12976e-10
0.0245551
-0.000219743
1.16722e-10
0.0244601
-0.000358036
1.20183e-10
0.0243536
-0.000486799
1.24567e-10
0.0242406
-0.000606331
1.27322e-10
0.0241215
-0.000717716
1.30976e-10
0.0239977
-0.000820926
1.35061e-10
0.0238668
-0.000917029
1.3912e-10
0.0237307
-0.00100581
1.445e-10
0.0235854
-0.00108817
1.46224e-10
0.0234291
-0.00116372
1.48543e-10
0.0232588
-0.00123298
1.49914e-10
0.0230726
-0.0012954
1.50141e-10
0.0228684
-0.00135151
1.49232e-10
0.0226468
-0.00140078
1.46605e-10
0.0224111
-0.00144365
1.42738e-10
0.0221627
-0.00147991
1.37612e-10
0.0219017
-0.00151021
1.30073e-10
0.021638
-0.00153387
1.2269e-10
0.0213758
-0.00155267
1.10789e-10
0.0211191
-0.00156518
1.01602e-10
0.0208672
-0.00157265
9.20659e-11
0.0206214
-0.00157374
8.21923e-11
0.02038
-0.00156926
7.16078e-11
0.0201446
-0.00155815
6.04874e-11
0.0199153
-0.00154027
4.97108e-11
0.0196935
-0.00151488
3.74329e-11
0.0194819
-0.00148002
2.94497e-11
0.0192767
-0.00143846
1.79331e-11
0.019088
-0.0013896
5.15492e-12
0.0189197
-0.00132856
-1.01611e-11
0.018778
-0.00125243
-2.3667e-11
0.0186674
-0.00116014
-4.8968e-11
0.0185982
-0.00104665
-6.78044e-11
0.0185641
-0.000907196
-1.08899e-10
0.0185438
-0.000738089
-1.11531e-10
0.0185765
-0.000569466
-1.22809e-10
0.0186682
-0.000371926
-1.52611e-10
0.018822
-0.00013496
-1.9644e-10
0.019001
0.000155389
-2.06245e-10
0.0191975
0.000459611
-2.09975e-10
0.0193911
0.000768636
-2.00656e-10
0.019569
0.00106225
-1.78312e-10
0.0197229
0.0013285
-1.62115e-10
0.0198549
0.00156036
-1.41401e-10
0.0199705
0.00175521
-1.36124e-10
0.0200754
0.00191746
-1.37231e-10
0.0201779
0.00204946
-1.37838e-10
0.0202766
0.00214986
-1.43675e-10
0.0203803
0.00222004
-1.54512e-10
0.0204963
0.00225153
-1.77615e-10
0.0206309
0.0022433
-1.78301e-10
0.020773
0.00220661
-1.99064e-10
0.0209597
0.00213088
-2.33487e-10
0.0211977
0.00200203
-2.64195e-10
0.0214772
0.00183148
-2.81821e-10
0.0217917
0.00162494
-2.90868e-10
0.0221217
0.00139748
-2.87481e-10
0.0224424
0.00116746
-2.67937e-10
0.0227367
0.000950683
-2.3516e-10
0.0229826
0.000761603
-1.93924e-10
0.0231791
0.000603794
-1.52156e-10
0.0233219
0.000477781
-1.14896e-10
0.0234222
0.000377381
-8.55307e-11
0.0234844
0.000297076
-6.34074e-11
0.0235204
0.000229725
-4.78865e-11
0.0235343
0.000173559
-3.54929e-11
0.0235359
0.000123186
-2.03438e-11
0.0235231
7.38888e-05
-1.82158e-11
0.0235026
2.67672e-05
-1.48333e-11
0.0234725
-1.80224e-05
-9.86513e-12
0.0234373
-5.9376e-05
1.12223e-12
0.0233952
-9.88079e-05
1.24518e-12
0.0233517
-0.000136298
1.41436e-11
0.0233069
-0.000171212
2.01105e-11
-0.000205976
2.20791e-11
0.0168032
0.00134822
1.4353e-09
0.0174235
0.00181146
1.21941e-09
0.0178291
0.00221044
7.08555e-10
0.0181591
0.00252416
4.63846e-10
0.0185025
0.00271753
3.51196e-10
0.0188889
0.00277909
2.43482e-10
0.0193072
0.00273008
1.692e-10
0.0197483
0.00261261
9.5478e-11
0.020193
0.00245831
4.21734e-11
0.0206255
0.00228757
1.41251e-11
0.021043
0.00211279
1.04384e-11
0.0214441
0.0019398
2.60769e-11
0.0218309
0.00177074
5.22699e-11
0.0222005
0.00160528
7.94928e-11
0.022546
0.00144303
1.00223e-10
0.0228599
0.0012828
1.11035e-10
0.0231345
0.00112415
1.12693e-10
0.0233644
0.000966802
1.08568e-10
0.0235468
0.000810937
1.02368e-10
0.0236814
0.000657329
9.70907e-11
0.0237705
0.000506797
9.40969e-11
0.0238201
0.000360459
9.35671e-11
0.0238351
0.00021922
9.44772e-11
0.0238241
8.3426e-05
9.61376e-11
0.0237945
-4.59283e-05
9.81266e-11
0.0237508
-0.000167903
1.00938e-10
0.0237
-0.000282558
1.04158e-10
0.0236412
-0.000389886
1.0749e-10
0.0235758
-0.000490046
1.11253e-10
0.0235011
-0.000583805
1.16195e-10
0.023414
-0.000671376
1.21684e-10
0.0233123
-0.000753322
1.28803e-10
0.0231933
-0.00082963
1.35259e-10
0.023055
-0.00090071
1.41309e-10
0.022898
-0.000966251
1.46848e-10
0.022723
-0.00102651
1.50804e-10
0.0225319
-0.00108126
1.5277e-10
0.0223291
-0.00113059
1.52941e-10
0.0221172
-0.00117451
1.50653e-10
0.0218992
-0.00121305
1.46705e-10
0.0216794
-0.00124629
1.40775e-10
0.0214578
-0.00127444
1.3293e-10
0.0212374
-0.00129738
1.25251e-10
0.0210163
-0.00131557
1.15218e-10
0.0207943
-0.00132877
1.05629e-10
0.020572
-0.0013371
9.59313e-11
0.0203472
-0.00134058
8.56317e-11
0.0201222
-0.00133888
7.57187e-11
0.0198953
-0.00133221
6.5872e-11
0.0196707
-0.00131971
5.64354e-11
0.0194471
-0.0013017
4.62146e-11
0.0192329
-0.00127654
3.62155e-11
0.0190241
-0.00124395
2.88609e-11
0.018829
-0.0012068
1.82473e-11
0.0186514
-0.00116038
6.96617e-12
0.018493
-0.00110363
-6.29085e-12
0.0183653
-0.00103366
-2.52865e-11
0.018266
-0.000949139
-3.57779e-11
0.0182071
-0.000844359
-6.25885e-11
0.0181859
-0.000715623
-1.06044e-10
0.0181766
-0.000554433
-1.11219e-10
0.0182112
-0.000396188
-1.25321e-10
0.0182964
-0.000212437
-1.4596e-10
0.0184417
1.08379e-05
-1.8559e-10
0.0186196
0.00027619
-2.19023e-10
0.0188144
0.00056615
-2.38992e-10
0.0190059
0.000862334
-2.31687e-10
0.0191822
0.00114463
-2.15951e-10
0.0193369
0.00139715
-1.96553e-10
0.019472
0.00161255
-1.80727e-10
0.0195931
0.00178663
-1.80162e-10
0.0197093
0.00192102
-1.81081e-10
0.0198272
0.0020174
-1.8542e-10
0.0199571
0.00207163
-2.00804e-10
0.02011
0.00207687
-2.06073e-10
0.0202674
0.00205497
-2.22662e-10
0.0204549
0.0019814
-2.47265e-10
0.020682
0.00185483
-2.7399e-10
0.0209434
0.00168454
-2.95474e-10
0.0212318
0.00148256
-3.03986e-10
0.0215266
0.00126542
-2.96383e-10
0.0218146
0.00105015
-2.74468e-10
0.0220706
0.00085378
-2.40079e-10
0.0222833
0.000685341
-2.00564e-10
0.0224489
0.00054834
-1.61696e-10
0.0225684
0.00044014
-1.27885e-10
0.0226474
0.000355251
-1.00836e-10
0.0226974
0.000287116
-8.03324e-11
0.0227248
0.00022999
-6.45119e-11
0.0227328
0.000181276
-5.27874e-11
0.0227303
0.000137143
-3.79085e-11
0.0227237
9.50452e-05
-2.75593e-11
0.0227097
5.47513e-05
-2.1399e-11
0.0226865
1.58206e-05
-1.9072e-11
0.022659
-2.06995e-05
-1.10655e-11
0.0226362
-5.70261e-05
-1.42908e-12
0.0226121
-8.99153e-05
5.09195e-12
0.0225884
-0.00012233
9.5371e-12
0.0225626
-0.000150916
1.9412e-11
-0.000179905
2.43562e-11
0.0174384
0.0011067
1.67716e-09
0.0177292
0.00162424
1.40813e-09
0.0179818
0.0019838
7.37934e-10
0.0182492
0.00226803
3.77131e-10
0.018566
0.00243764
2.15811e-10
0.0189359
0.00247305
1.15605e-10
0.0193356
0.00239827
4.64092e-11
0.0197426
0.0022552
-1.92096e-11
0.0201413
0.00208218
-7.28368e-11
0.0205269
0.00190426
-1.1902e-10
0.0208979
0.00173352
-1.20603e-10
0.0212549
0.00157364
-1.03982e-10
0.0215958
0.00142502
-5.51233e-11
0.0219189
0.00128541
-1.80178e-11
0.0222225
0.00115276
1.61385e-11
0.0224991
0.00102444
4.19235e-11
0.0227408
0.000898571
5.7241e-11
0.0229385
0.000774257
6.46883e-11
0.0230883
0.000651084
6.79713e-11
0.0231905
0.000529507
7.02801e-11
0.0232518
0.000410116
7.33483e-11
0.0232814
0.000293919
7.72468e-11
0.0232884
0.000181601
8.09029e-11
0.0232819
7.36876e-05
8.3765e-11
0.023267
-2.9503e-05
8.61005e-11
0.0232468
-0.000127692
8.75714e-11
0.0232211
-0.000220603
8.94804e-11
0.0231865
-0.000308205
9.21088e-11
0.02314
-0.000390587
9.60089e-11
0.023078
-0.000468231
1.01653e-10
0.022998
-0.000541331
1.09075e-10
0.0228991
-0.000610216
1.17777e-10
0.0227814
-0.000674869
1.27047e-10
0.0226473
-0.000735301
1.36292e-10
0.0224985
-0.000791565
1.4355e-10
0.0223383
-0.000843301
1.49601e-10
0.0221685
-0.000890697
1.534e-10
0.0219918
-0.000933305
1.5488e-10
0.0218096
-0.000971452
1.53419e-10
0.0216223
-0.00100483
1.49661e-10
0.0214306
-0.00103367
1.43849e-10
0.0212333
-0.00105799
1.36194e-10
0.0210298
-0.00107803
1.27563e-10
0.02082
-0.00109361
1.17851e-10
0.0206028
-0.00110539
1.07778e-10
0.0203797
-0.00111271
9.82349e-11
0.0201502
-0.0011165
8.86461e-11
0.0199175
-0.00111577
7.96371e-11
0.0196829
-0.00111148
7.01363e-11
0.0194499
-0.00110258
6.14295e-11
0.0192218
-0.00108944
5.3173e-11
0.0190016
-0.00107123
4.47009e-11
0.0187942
-0.00104738
3.62902e-11
0.0185978
-0.00101789
2.90606e-11
0.0184198
-0.00098321
2.03791e-11
0.0182589
-0.000940013
9.65281e-12
0.0181218
-0.000888111
-3.32125e-12
0.018008
-0.000824241
-2.37985e-11
0.017923
-0.000746054
-4.02714e-11
0.0178726
-0.000649945
-6.49372e-11
0.0178568
-0.000530331
-1.07188e-10
0.0178525
-0.000380885
-1.13177e-10
0.0178818
-0.000233805
-1.25537e-10
0.0179605
-6.44744e-05
-1.44777e-10
0.0180935
0.000134805
-1.91083e-10
0.0182562
0.000383859
-2.44193e-10
0.0184411
0.000651954
-2.62858e-10
0.0186295
0.000927007
-2.59642e-10
0.0188076
0.00118856
-2.47914e-10
0.0189704
0.00141928
-2.34935e-10
0.0191171
0.00160765
-2.22032e-10
0.0192561
0.00174864
-2.22917e-10
0.0193977
0.00184085
-2.28277e-10
0.01955
0.00187853
-2.47688e-10
0.0197199
0.00186565
-2.54599e-10
0.0199144
0.00181047
-2.85493e-10
0.0201444
0.00169665
-3.01785e-10
0.0204038
0.00153707
-3.14447e-10
0.0206785
0.00134551
-3.1866e-10
0.0209577
0.00113982
-3.09568e-10
0.0212203
0.000939479
-2.85282e-10
0.0214499
0.000759861
-2.51438e-10
0.0216394
0.000609155
-2.13583e-10
0.0217835
0.00048901
-1.77483e-10
0.0218856
0.000395873
-1.46691e-10
0.0219561
0.000323762
-1.21498e-10
0.0219999
0.000266495
-1.01628e-10
0.0220223
0.000219033
-8.52685e-11
0.0220337
0.0001775
-7.18363e-11
0.0220371
0.000140057
-5.83984e-11
0.0220342
0.000105695
-4.01238e-11
0.0220261
7.15258e-05
-3.71464e-11
0.0220194
3.83112e-05
-3.20669e-11
0.0220146
6.28678e-06
-2.52722e-11
0.0220079
-2.37201e-05
-1.00982e-11
0.0220029
-5.33754e-05
-9.17901e-13
0.0219985
-8.1134e-05
5.35972e-12
0.0219984
-0.000107658
1.32426e-11
0.0219991
-0.000131189
2.11747e-11
-0.000154718
2.2847e-11
0.0166484
0.000629718
2.08354e-09
0.0172544
0.00113903
1.57855e-09
0.0176936
0.00157152
6.73719e-10
0.0181094
0.00187105
2.26733e-10
0.0185566
0.00203438
5.26909e-11
0.0190197
0.0020649
-3.12004e-11
0.0194738
0.00198913
-9.5406e-11
0.0199048
0.00184967
-1.02484e-10
0.0203141
0.00168556
-1.38721e-10
0.0207027
0.00152301
-1.63774e-10
0.0210653
0.00137291
-1.68938e-10
0.0214011
0.00123756
-1.48852e-10
0.0217121
0.00111531
-1.15018e-10
0.021997
0.00100346
-1.15748e-10
0.0222531
0.000899028
-5.28728e-11
0.0224727
0.000799228
-1.67175e-11
0.0226532
0.00070192
9.29397e-12
0.0227924
0.000606006
2.71654e-11
0.0228919
0.000511267
3.97078e-11
0.022958
0.000417827
4.95866e-11
0.0229981
0.000326272
5.82712e-11
0.0230218
0.000237126
6.57585e-11
0.0230362
0.000150961
7.12444e-11
0.023045
6.80236e-05
7.46594e-11
0.0230497
-1.21877e-05
7.57656e-11
0.0230463
-8.78278e-05
7.57405e-11
0.0230334
-0.000161311
7.5897e-11
0.0230062
-0.000231105
7.72084e-11
0.0229622
-0.000297659
8.08245e-11
0.0228992
-0.000360806
8.74048e-11
0.022817
-0.000420957
9.62019e-11
0.0227173
-0.000477668
1.07228e-10
0.0226012
-0.00053144
1.1894e-10
0.0224726
-0.000581435
1.30682e-10
0.0223324
-0.000628362
1.41002e-10
0.0221843
-0.000671107
1.49576e-10
0.0220287
-0.000710618
1.54508e-10
0.0218666
-0.000745658
1.56926e-10
0.0216985
-0.000777277
1.56196e-10
0.0215233
-0.000804394
1.52464e-10
0.0213407
-0.00082813
1.46376e-10
0.0211508
-0.000847493
1.38622e-10
0.0209517
-0.000863774
1.29155e-10
0.0207443
-0.000875953
1.19223e-10
0.0205268
-0.000885386
1.09101e-10
0.0203014
-0.000891032
9.90731e-11
0.0200689
-0.000894131
8.98766e-11
0.019832
-0.000893692
8.0972e-11
0.0195941
-0.000890643
7.29292e-11
0.0193572
-0.000884113
6.53001e-11
0.0191261
-0.00087453
5.82344e-11
0.0189033
-0.000861265
5.12533e-11
0.0186918
-0.000843947
4.40054e-11
0.0184943
-0.000821925
3.75531e-11
0.0183106
-0.000796013
3.00442e-11
0.0181451
-0.000764219
2.06035e-11
0.0179967
-0.000725696
1.00789e-11
0.0178685
-0.00067896
-3.31229e-12
0.0177609
-0.000621939
-1.98098e-11
0.0176792
-0.000551805
-3.33799e-11
0.0176251
-0.000465843
-6.68822e-11
0.0176036
-0.000355501
-1.08942e-10
0.0175939
-0.000223435
-1.14608e-10
0.017617
-9.01309e-05
-1.2787e-10
0.0176834
5.99982e-05
-1.54812e-10
0.0178105
0.000237408
-2.04925e-10
0.0179695
0.000462942
-2.50926e-10
0.0181576
0.000704204
-2.75251e-10
0.0183562
0.000951078
-2.82189e-10
0.0185546
0.00118079
-2.8227e-10
0.0187451
0.00137709
-2.78575e-10
0.0189288
0.00152421
-2.77703e-10
0.0191139
0.00161376
-2.85125e-10
0.0193114
0.00163859
-2.85282e-10
0.0195189
0.00160964
-3.09072e-10
0.0197573
0.00151858
-3.27969e-10
0.020018
0.00137878
-3.39377e-10
0.0202903
0.00120495
-3.39471e-10
0.0205598
0.00101661
-3.26526e-10
0.0208072
0.000833088
-3.00686e-10
0.0210202
0.000669368
-2.66327e-10
0.0211934
0.000533797
-2.3004e-10
0.0213226
0.000427302
-1.96047e-10
0.021415
0.000346111
-1.67024e-10
0.0214783
0.000284514
-1.43523e-10
0.0215164
0.00023656
-1.23867e-10
0.0215369
0.000197442
-1.07131e-10
0.0215481
0.000163707
-9.23332e-11
0.0215514
0.000133455
-7.86855e-11
0.0215468
0.000104672
-6.36904e-11
0.0215443
7.81386e-05
-4.39556e-11
0.0215442
5.14693e-05
-4.1899e-11
0.0215446
2.50841e-05
-3.60988e-11
0.0215441
-8.6476e-07
-2.65959e-11
0.0215464
-2.47651e-05
-8.44412e-12
0.0215543
-4.8028e-05
-3.9266e-12
0.0215633
-7.0634e-05
3.81425e-12
0.021577
-9.16255e-05
1.23273e-11
0.0215917
-0.000110156
2.17033e-11
-0.000128343
2.29052e-11
0.0171843
0.00045269
1.72352e-09
0.0173963
0.00100669
1.30547e-09
0.0177045
0.00131916
4.76681e-10
0.0180988
0.0015304
5.31369e-11
0.0185563
0.00163989
-5.73274e-11
0.0190272
0.00164113
-9.62284e-11
0.0194785
0.00155527
-1.73483e-10
0.0199044
0.00142228
-1.66763e-10
0.0203077
0.00127709
-2.309e-10
0.0206933
0.00114033
-2.03298e-10
0.0210577
0.00101878
-2.47521e-10
0.0213922
0.000913034
-1.9746e-10
0.0216904
0.000819607
-1.75667e-10
0.0219546
0.000735575
-1.31129e-10
0.0221862
0.000657742
-1.22795e-10
0.0223817
0.000583986
-6.24512e-11
0.0225352
0.000512728
-2.66731e-11
0.0226466
0.000442788
-6.66782e-14
0.0227213
0.000374023
2.03492e-11
0.0227716
0.000306332
3.67087e-11
0.0228082
0.000240209
4.99924e-11
0.0228403
0.000175794
6.00535e-11
0.0228718
0.000113485
6.63109e-11
0.0229014
5.3388e-05
6.91102e-11
0.022924
-3.20541e-06
6.58274e-11
0.022939
-6.08546e-05
6.53075e-11
0.0229391
-0.000114395
6.38186e-11
0.0229211
-0.000166206
6.40493e-11
0.0228835
-0.000216464
6.74427e-11
0.0228272
-0.000264477
7.44642e-11
0.0227516
-0.000310769
8.46328e-11
0.0226605
-0.000354409
9.76972e-11
0.022554
-0.000396136
1.11703e-10
0.0224359
-0.000434721
1.25879e-10
0.0223071
-0.000471074
1.3842e-10
0.0221696
-0.000503959
1.4854e-10
0.0220245
-0.000534244
1.5554e-10
0.0218713
-0.000561034
1.58596e-10
0.0217104
-0.000584905
1.5848e-10
0.0215395
-0.000605479
1.54954e-10
0.0213579
-0.000622914
1.48865e-10
0.0211644
-0.000637476
1.40545e-10
0.0209576
-0.00064887
1.30987e-10
0.0207388
-0.000657955
1.20919e-10
0.0205086
-0.000664079
1.1048e-10
0.0202693
-0.000668367
1.00829e-10
0.0200246
-0.000669886
9.15956e-11
0.0197767
-0.000669987
8.28419e-11
0.0195311
-0.000667179
7.5448e-11
0.01929
-0.000663176
6.79071e-11
0.0190583
-0.000655911
6.17738e-11
0.0188368
-0.000647087
5.5372e-11
0.0186287
-0.000634604
4.94556e-11
0.0184349
-0.000619371
4.37554e-11
0.0182542
-0.000600558
3.69232e-11
0.0180869
-0.000578003
2.93467e-11
0.0179343
-0.000550638
2.08723e-11
0.0177956
-0.000517787
8.37139e-12
0.0176741
-0.000477924
-3.21823e-12
0.0175711
-0.000429469
-1.92291e-11
0.0174897
-0.000369267
-3.60987e-11
0.0174387
-0.000296118
-7.33017e-11
0.0174106
-0.000195782
-1.15797e-10
0.0174071
-9.12853e-05
-1.22426e-10
0.0174365
2.21023e-05
-1.37871e-10
0.0175103
0.000149293
-1.67136e-10
0.0176442
0.000302905
-2.23082e-10
0.0178166
0.000496779
-2.64851e-10
0.0180239
0.000702236
-2.96735e-10
0.0182493
0.000908748
-3.1804e-10
0.0184851
0.0010932
-3.31324e-10
0.0187243
0.00123606
-3.36611e-10
0.0189674
0.00131983
-3.44112e-10
0.0192198
0.00133526
-3.52835e-10
0.0194882
0.00128748
-3.64028e-10
0.0197684
0.00118197
-3.71217e-10
0.0200513
0.00103764
-3.678e-10
0.0203222
0.000875434
-3.50158e-10
0.0205682
0.000715213
-3.21445e-10
0.0207753
0.000571954
-2.85699e-10
0.020939
0.000453171
-2.4915e-10
0.0210628
0.000360214
-2.16242e-10
0.0211492
0.000290024
-1.88112e-10
0.0212071
0.000237487
-1.64892e-10
0.0212448
0.000197536
-1.45604e-10
0.0212667
0.000165901
-1.28443e-10
0.0212744
0.000139466
-1.12661e-10
0.0212772
0.000115989
-9.79733e-11
0.0212756
9.47028e-05
-8.4081e-11
0.0212663
7.37654e-05
-6.70679e-11
0.021259
5.41734e-05
-4.70849e-11
0.0212546
3.44723e-05
-4.46784e-11
0.0212512
1.48304e-05
-3.90471e-11
0.0212459
-4.41076e-06
-2.69661e-11
0.0212437
-2.31217e-05
-9.49115e-12
0.0212456
-4.05683e-05
-4.41921e-12
0.0212479
-5.75653e-05
5.20017e-12
0.0212536
-7.3006e-05
1.31836e-11
0.0212603
-8.76189e-05
2.23161e-11
-9.91083e-05
2.25464e-11
0.0169063
0.000365841
1.47884e-09
0.0170314
0.000907904
1.04163e-09
0.0173869
0.00109172
3.88211e-10
0.0178473
0.00118152
-4.0363e-11
0.0183421
0.00121659
-1.56814e-10
0.0188291
0.00117895
-1.86819e-10
0.0192879
0.00108506
-2.127e-10
0.0197181
0.000966983
-2.46007e-10
0.0201284
0.000850188
-2.30587e-10
0.0205234
0.000746851
-2.83701e-10
0.0208995
0.000659166
-2.38325e-10
0.0212469
0.000585189
-2.206e-10
0.0215535
0.000521372
-2.08915e-10
0.0218214
0.000464257
-1.62074e-10
0.0220523
0.000411675
-1.10987e-10
0.0222474
0.000362166
-1.09205e-10
0.0224015
0.00031449
-4.76844e-11
0.0225153
0.000268099
-1.52376e-11
0.022595
0.000222832
1.11438e-11
0.0226542
0.000178649
3.18782e-11
0.0227036
0.00013583
4.79902e-11
0.0227517
9.44446e-05
5.96245e-11
0.0228001
5.47524e-05
6.59426e-11
0.0228451
1.64801e-05
6.65474e-11
0.0228833
-1.94568e-05
6.68764e-11
0.0229049
-5.41097e-05
6.04371e-11
0.0229094
-8.79221e-05
5.60888e-11
0.0228959
-0.000120408
5.49181e-11
0.0228635
-0.00015178
5.76839e-11
0.0228153
-0.000182096
6.49507e-11
0.0227507
-0.000211308
7.61104e-11
0.0226726
-0.000239292
9.05103e-11
0.0225804
-0.00026592
1.0636e-10
0.0224753
-0.000290963
1.22178e-10
0.0223588
-0.000314371
1.36742e-10
0.0222301
-0.000335858
1.48066e-10
0.0220923
-0.00035544
1.56525e-10
0.0219424
-0.000372969
1.60155e-10
0.021783
-0.000388412
1.60697e-10
0.0216094
-0.000401845
1.56889e-10
0.0214236
-0.000413139
1.50827e-10
0.0212216
-0.000422601
1.42137e-10
0.0210054
-0.000430002
1.32361e-10
0.0207749
-0.000435965
1.21912e-10
0.0205332
-0.000439852
1.11635e-10
0.0202825
-0.000442832
1.01616e-10
0.020029
-0.000443667
9.27479e-11
0.0197739
-0.000443868
8.41813e-11
0.0195241
-0.000442003
7.70963e-11
0.0192807
-0.000439391
7.03759e-11
0.0190472
-0.000434748
6.44482e-11
0.0188259
-0.000428924
5.89847e-11
0.0186161
-0.000421012
5.31777e-11
0.0184206
-0.000410939
4.78156e-11
0.0182367
-0.000398879
4.15435e-11
0.0180666
-0.000384227
3.45894e-11
0.0179071
-0.000366747
2.75038e-11
0.0177585
-0.00034569
1.72963e-11
0.0176234
-0.00032056
6.54348e-12
0.0175017
-0.000289873
-1.02131e-11
0.0173988
-0.00025263
-2.08259e-11
0.0173179
-0.000206119
-4.85211e-11
0.0172725
-0.000147923
-8.1044e-11
0.0172414
-6.919e-05
-1.31274e-10
0.0172459
6.84391e-06
-1.36957e-10
0.0172909
9.04287e-05
-1.51667e-10
0.0173884
0.000186757
-1.82282e-10
0.0175449
0.000308815
-2.42951e-10
0.0177507
0.000455019
-2.96726e-10
0.0180003
0.000611227
-3.4253e-10
0.0182806
0.000758656
-3.73125e-10
0.0185842
0.000875717
-3.95349e-10
0.0188999
0.000943843
-4.06669e-10
0.0192216
0.000951299
-4.1589e-10
0.0195463
0.000900931
-4.15233e-10
0.019862
0.000805957
-4.03778e-10
0.0201564
0.000686221
-3.80474e-10
0.0204147
0.000562078
-3.46718e-10
0.0206295
0.000448545
-3.08636e-10
0.0207986
0.000353405
-2.7103e-10
0.0209237
0.000278639
-2.37594e-10
0.021013
0.000222102
-2.09626e-10
0.0210726
0.000180012
-1.86134e-10
0.0211083
0.000148497
-1.66164e-10
0.0211283
0.00012422
-1.48568e-10
0.0211371
0.000104629
-1.32078e-10
0.0211331
8.80248e-05
-1.16622e-10
0.0211269
7.3054e-05
-1.01112e-10
0.0211173
5.94258e-05
-8.80245e-11
0.0211029
4.59118e-05
-6.5255e-11
0.0210904
3.27621e-05
-5.86625e-11
0.0210824
1.97307e-05
-4.57044e-11
0.0210764
6.60742e-06
-3.56722e-11
0.0210688
-6.40729e-06
-2.72838e-11
0.0210627
-1.89077e-05
-9.96801e-12
0.0210602
-3.06641e-05
-3.01897e-12
0.0210577
-4.19525e-05
7.67673e-12
0.0210563
-5.24181e-05
1.29004e-11
0.0210536
-6.18725e-05
2.17754e-11
-6.90079e-05
2.31079e-11
0.0162891
0.000154578
1.73126e-09
0.0167278
0.000472527
1.12404e-09
0.0173162
0.000591909
3.14655e-10
0.0179561
0.000635236
-8.59593e-11
0.0185824
0.000642482
-2.25572e-10
0.0191628
0.000610764
-2.25066e-10
0.0196872
0.00055093
-2.41763e-10
0.0201625
0.000482617
-2.33091e-10
0.0206015
0.000419391
-2.9572e-10
0.0210092
0.000365615
-3.06493e-10
0.0213822
0.000321248
-2.57571e-10
0.0217105
0.000284157
-2.40542e-10
0.0219855
0.000252248
-2.10121e-10
0.0222076
0.000223635
-1.88664e-10
0.0223868
0.000197125
-1.31201e-10
0.0225313
0.000172052
-1.18211e-10
0.0226353
0.000147952
-6.02631e-11
0.0226983
0.000124579
-2.42713e-11
0.0227299
0.00010197
6.95225e-12
0.0227492
8.00842e-05
3.16161e-11
0.0227717
5.90406e-05
5.02997e-11
0.022805
3.88256e-05
6.28177e-11
0.0228471
1.96523e-05
6.86705e-11
0.0228884
1.96578e-06
6.83315e-11
0.0229216
-1.57692e-05
6.21379e-11
0.0229381
-3.20293e-05
5.54111e-11
0.0229338
-4.76932e-05
4.99796e-11
0.0229093
-6.29308e-05
4.78145e-11
0.0228662
-7.77345e-05
5.02143e-11
0.0228075
-9.21466e-05
5.78405e-11
0.0227348
-0.000106143
6.9855e-11
0.0226505
-0.000119657
8.54569e-11
0.0225542
-0.000132652
1.02615e-10
0.0224472
-0.000144916
1.19856e-10
0.0223302
-0.000156533
1.35726e-10
0.0222021
-0.000167148
1.48134e-10
0.0220655
-0.00017697
1.5751e-10
0.021917
-0.000185661
1.61691e-10
0.0217584
-0.000193411
1.62594e-10
0.0215857
-0.000200075
1.58807e-10
0.0214004
-0.000205712
1.52736e-10
0.0211987
-0.000210406
1.4368e-10
0.0209848
-0.000214096
1.34088e-10
0.0207555
-0.000217047
1.23027e-10
0.0205177
-0.000219018
1.12915e-10
0.0202713
-0.000220471
1.02639e-10
0.0200219
-0.000220954
9.3708e-11
0.0197728
-0.000220977
8.53607e-11
0.0195271
-0.000220153
7.81724e-11
0.0192884
-0.000218657
7.16802e-11
0.0190567
-0.000216487
6.57067e-11
0.0188361
-0.000213363
6.07226e-11
0.0186231
-0.000209497
5.50988e-11
0.0184218
-0.000204478
5.0198e-11
0.018229
-0.000198388
4.43521e-11
0.0180466
-0.000191181
3.85403e-11
0.0178737
-0.000182421
3.09184e-11
0.0177143
-0.000172283
2.23781e-11
0.0175635
-0.000159857
1.17357e-11
0.0174302
-0.00014525
-1.5609e-12
0.0173111
-0.000127179
-1.38285e-11
0.0172124
-0.000104853
-3.57906e-11
0.0171436
-7.77399e-05
-5.98246e-11
0.0170995
-3.81976e-05
-1.2403e-10
0.0170945
5.05647e-09
-1.30995e-10
0.017129
4.21015e-05
-1.44923e-10
0.017209
8.93855e-05
-1.72979e-10
0.0173461
0.000147667
-2.27314e-10
0.0175412
0.000224151
-2.89529e-10
0.0177973
0.000307678
-3.50558e-10
0.0181119
0.000389894
-4.01278e-10
0.0184714
0.000456779
-4.37398e-10
0.018858
0.000495275
-4.59093e-10
0.0192488
0.000497307
-4.64421e-10
0.0196232
0.000464427
-4.50458e-10
0.0199646
0.000407103
-4.20756e-10
0.0202589
0.000338949
-3.80666e-10
0.0205009
0.000272199
-3.37283e-10
0.0206904
0.000214155
-2.96319e-10
0.0208309
0.000167564
-2.609e-10
0.0209317
0.000131994
-2.31564e-10
0.0209999
0.000105472
-2.07281e-10
0.0210413
8.57488e-05
-1.86322e-10
0.0210638
7.08492e-05
-1.67792e-10
0.0210722
5.92214e-05
-1.50648e-10
0.0210684
4.97103e-05
-1.34097e-10
0.0210575
4.16011e-05
-1.18856e-10
0.0210466
3.42467e-05
-1.02412e-10
0.0210294
2.74146e-05
-8.9807e-11
0.0210133
2.11821e-05
-6.57696e-11
0.0210015
1.42552e-05
-6.30835e-11
0.020996
7.52631e-06
-5.0696e-11
0.0209904
1.07323e-06
-3.55988e-11
0.0209856
-5.54255e-06
-2.12909e-11
0.0209833
-1.15936e-05
-8.31615e-12
0.0209846
-1.77194e-05
-4.90623e-12
0.0209866
-2.33039e-05
9.5449e-12
0.020989
-2.85187e-05
1.31854e-11
0.0209894
-3.30443e-05
2.22162e-11
-3.59446e-05
2.40024e-11
0.0161632
1.64375e-09
0.0166327
1.05556e-09
0.0173457
3.10225e-10
0.0180622
-1.49516e-10
0.0187224
-2.36703e-10
0.0193219
-2.65004e-10
0.0198625
-2.24557e-10
0.0203512
-2.93824e-10
0.0207964
-2.72107e-10
0.0212021
-2.78463e-10
0.0215651
-2.71069e-10
0.021878
-2.51772e-10
0.0221342
-2.45317e-10
0.0223339
-1.9436e-10
0.0224853
-1.41496e-10
0.0225988
-1.16645e-10
0.0226771
-7.2655e-11
0.0227143
-2.76107e-11
0.0227165
5.47158e-12
0.0227093
3.25396e-11
0.0227154
5.25841e-11
0.0227448
6.53874e-11
0.0227913
7.04523e-11
0.022842
6.80978e-11
0.0228829
6.24912e-11
0.0229046
5.43919e-11
0.022903
4.75285e-11
0.0228787
4.46297e-11
0.0228339
4.68267e-11
0.022773
5.46516e-11
0.0226975
6.70606e-11
0.0226113
8.33076e-11
0.0225134
1.01076e-10
0.0224066
1.19091e-10
0.0222907
1.35569e-10
0.0221647
1.48525e-10
0.0220307
1.58356e-10
0.0218845
1.62736e-10
0.0217281
1.63828e-10
0.0215568
1.60007e-10
0.0213725
1.53937e-10
0.0211718
1.44667e-10
0.0209586
1.35109e-10
0.0207309
1.2375e-10
0.0204951
1.13745e-10
0.0202515
1.03285e-10
0.0200047
9.4373e-11
0.0197594
8.60765e-11
0.0195156
7.89788e-11
0.0192793
7.23648e-11
0.0190491
6.68726e-11
0.0188282
6.15079e-11
0.0186157
5.63911e-11
0.0184125
5.14899e-11
0.0182188
4.58324e-11
0.0180334
3.98562e-11
0.0178582
3.28543e-11
0.0176929
2.45817e-11
0.0175377
1.42374e-11
0.017398
2.01744e-12
0.0172718
-1.54768e-11
0.0171669
-2.95678e-11
0.0170873
-5.11376e-11
0.0170352
-1.17274e-10
0.0170243
-1.23232e-10
0.0170536
-1.36833e-10
0.0171276
-1.63541e-10
0.0172556
-2.08696e-10
0.0174453
-2.97372e-10
0.0177089
-3.56264e-10
0.0180461
-4.15775e-10
0.0184431
-4.64825e-10
0.0188747
-4.93472e-10
0.0193073
-4.95424e-10
0.0197106
-4.71008e-10
0.020063
-4.28273e-10
0.0203543
-3.78403e-10
0.020585
-3.30956e-10
0.0207591
-2.8968e-10
0.0208862
-2.56426e-10
0.0209755
-2.29391e-10
0.0210329
-2.06769e-10
0.0210663
-1.86752e-10
0.0210817
-1.6862e-10
0.0210816
-1.51526e-10
0.0210703
-1.34609e-10
0.0210542
-1.19773e-10
0.0210359
-1.02643e-10
0.0210124
-8.97315e-11
0.0209918
-6.82156e-11
0.0209803
-6.13901e-11
0.020974
-4.65004e-11
0.0209649
-3.60484e-11
0.0209595
-2.91448e-11
0.0209573
-1.01643e-11
0.0209597
-1.64621e-12
0.020963
1.22456e-11
0.0209658
1.29579e-11
0.0209661
2.32234e-11
2.44621e-11
0.00744872
0.00884722
-3.54077e-12
0.00282529
0.00462038
-1.39522e-11
-0.00143349
0.00425569
-1.98397e-11
-0.00331475
0.00188141
-1.00582e-11
-0.00459124
0.00127531
-1.41869e-11
-0.00525876
0.000665085
-1.58358e-11
-0.00549343
0.00023209
-1.621e-11
-0.005801
0.000305761
-1.46883e-11
-0.00614886
0.000345604
-1.48578e-11
-0.00644579
0.000294307
-1.57762e-11
-0.00666635
0.000217373
-1.6129e-11
-0.0068338
0.000165849
-1.45767e-11
-0.00695114
0.000117816
-1.22798e-11
-0.00705066
9.43965e-05
-1.71049e-11
-0.00716309
0.000103589
-2.03783e-11
-0.00724833
7.48665e-05
-2.22445e-11
-0.00727771
1.87482e-05
-2.29713e-11
-0.00725853
-3.39856e-05
-2.57521e-11
-0.00718395
-9.20046e-05
-2.75733e-11
-0.00704722
-0.000155523
-2.82313e-11
-0.00684915
-0.000217067
-2.74263e-11
-0.00660022
-0.000266203
-2.51154e-11
-0.00631478
-0.000300972
-2.19532e-11
-0.00599652
-0.000330811
-1.87318e-11
-0.00566074
-0.000345572
-1.47903e-11
-0.00531209
-0.000355211
-1.09923e-11
-0.00495264
-0.000362536
-7.58279e-12
-0.00458449
-0.000369646
-4.56368e-12
-0.00420488
-0.000379455
-2.03674e-12
-0.00381274
-0.000389457
-1.88996e-13
-0.00341025
-0.000399046
1.30827e-12
-0.00298909
-0.000417238
2.28228e-12
-0.00255549
-0.000428927
3.00975e-12
-0.00211724
-0.000433203
3.28553e-12
-0.0016777
-0.000435127
3.00243e-12
-0.0012368
-0.000437081
2.43858e-12
-0.000792306
-0.000440411
1.91508e-12
-0.000345594
-0.000442975
1.05041e-12
0.000119281
-0.000462435
-4.67527e-13
0.000576287
-0.000456052
-2.04473e-12
0.00101393
-0.000438107
-3.58194e-12
0.00143363
-0.000421029
-5.09723e-12
0.00184285
-0.000410909
-6.13684e-12
0.0022371
-0.000397022
-7.48635e-12
0.00261574
-0.000382673
-8.67477e-12
0.0029811
-0.000370242
-9.34066e-12
0.00334067
-0.000364907
-1.04991e-11
0.00369422
-0.000360333
-1.17821e-11
0.00403541
-0.000348324
-1.24784e-11
0.00436228
-0.000334569
-1.30928e-11
0.00467608
-0.00032195
-1.33991e-11
0.00497653
-0.000309573
-1.36137e-11
0.00526522
-0.000297501
-1.36102e-11
0.00554101
-0.000285616
-1.34917e-11
0.0058053
-0.000273413
-1.31319e-11
0.00605856
-0.000261892
-1.26431e-11
0.00630075
-0.000249965
-1.19093e-11
0.00653287
-0.000238713
-1.10072e-11
0.00675443
-0.000227281
-9.9267e-12
0.00696658
-0.000216396
-8.7279e-12
0.00716938
-0.000205534
-7.43749e-12
0.0073624
-0.000195177
-6.09873e-12
0.00754651
-0.000184826
-4.32292e-12
0.00772186
-0.000175074
-3.95786e-12
0.0078888
-0.000165337
-2.01151e-12
0.00804719
-0.000156185
-7.70122e-13
0.00819829
-0.000147063
3.53752e-13
0.00834124
-0.000138553
1.36387e-12
0.00847717
-0.000130011
2.24726e-12
0.00860604
-0.000122101
3.01837e-12
0.00872743
-0.000114114
3.67729e-12
0.00884278
-0.000106693
4.22637e-12
0.0089505
-9.92417e-05
4.67883e-12
0.00905239
-9.22391e-05
5.03e-12
0.00914733
-8.52974e-05
5.30736e-12
0.00923612
-7.87252e-05
5.50612e-12
0.00931873
-7.22885e-05
5.64617e-12
0.0093953
-6.61942e-05
5.73073e-12
0.00946614
-6.02756e-05
5.77331e-12
0.00953145
-5.46575e-05
5.78326e-12
0.00959138
-4.92273e-05
5.77123e-12
0.00964626
-4.40318e-05
5.74592e-12
0.00969629
-3.90402e-05
5.71571e-12
0.0097415
-3.42706e-05
5.68722e-12
0.00978253
-2.96887e-05
5.67005e-12
0.00981885
-2.5281e-05
5.6611e-12
0.00985158
-2.11196e-05
5.6635e-12
0.00987983
-1.70576e-05
5.6641e-12
0.00990451
-1.30179e-05
5.669e-12
0.00992545
-9.41475e-06
5.66952e-12
0.00994281
-5.90709e-06
5.65517e-12
0.00995699
-2.27475e-06
5.6386e-12
0.00996706
1.13746e-06
5.62494e-12
0.009975
4.22264e-06
5.60362e-12
0.00997863
7.55004e-06
5.55032e-12
0.00997932
1.13479e-05
5.48215e-12
0.00997489
1.57044e-05
5.3577e-12
0.00996542
2.1158e-05
5.18166e-12
0.00994849
2.81457e-05
4.94149e-12
3.69958e-05
4.69358e-12
0.0114612
0.0132527
-4.98536e-12
0.00790204
0.0081777
-1.23902e-11
0.00602858
0.00612459
-1.30875e-11
0.00354497
0.00436301
-1.06148e-11
0.00179918
0.0030193
-1.4173e-11
0.000234744
0.00222526
-1.74021e-11
-0.00125339
0.00172094
-1.73592e-11
-0.00231669
0.00137304
-1.41653e-11
-0.00301434
0.00104597
-1.44219e-11
-0.00347856
0.000759578
-1.56564e-11
-0.00376748
0.000505676
-1.64554e-11
-0.00400464
0.000403056
-1.57097e-11
-0.0042288
0.000341579
-1.55832e-11
-0.00438515
0.000246914
-1.63861e-11
-0.00448569
0.000196773
-2.01088e-11
-0.00454245
0.00012293
-2.24233e-11
-0.00453277
-1.31195e-06
-2.33305e-11
-0.00445879
-0.000122452
-2.66207e-11
-0.00432128
-0.000247665
-2.86254e-11
-0.00410926
-0.00038839
-2.92425e-11
-0.00383826
-0.000510397
-2.84384e-11
-0.00352486
-0.00060082
-2.6005e-11
-0.00318607
-0.000657777
-2.23992e-11
-0.00282317
-0.000710835
-1.9543e-11
-0.00245507
-0.000729036
-1.56422e-11
-0.00207877
-0.000743158
-1.2021e-11
-0.00169643
-0.000754407
-8.76484e-12
-0.00130422
-0.000769953
-5.95992e-12
-0.000900068
-0.000787988
-3.57199e-12
-0.000484484
-0.000806924
-1.55643e-12
-5.10595e-05
-0.000832346
1.24745e-13
0.000376646
-0.000845496
6.60086e-13
0.000801166
-0.000853389
1.59243e-12
0.00122422
-0.000855412
1.91526e-12
0.00164955
-0.000859071
1.66639e-12
0.00207209
-0.000859027
1.20626e-12
0.00249132
-0.00085817
8.6836e-13
0.002907
-0.000856928
3.13714e-13
0.00330235
-0.000856688
-8.62646e-13
0.0036919
-0.000845787
-2.03639e-12
0.00407989
-0.000826406
-3.41229e-12
0.00446477
-0.000806262
-4.58899e-12
0.004839
-0.000785363
-5.66661e-12
0.00520472
-0.000763383
-6.87083e-12
0.00555768
-0.000737436
-8.11129e-12
0.00589791
-0.000713042
-8.52702e-12
0.00622453
-0.000693608
-9.40233e-12
0.00654345
-0.000682154
-1.07889e-11
0.00685099
-0.000659511
-1.13015e-11
0.00714758
-0.000635128
-1.18075e-11
0.00743035
-0.000609308
-1.21438e-11
0.0077013
-0.000584995
-1.23047e-11
0.00795825
-0.000560074
-1.23229e-11
0.00820393
-0.000536302
-1.22169e-11
0.0084376
-0.000512149
-1.19722e-11
0.0086596
-0.000488856
-1.1558e-11
0.0088707
-0.000465386
-1.09653e-11
0.00907097
-0.000442831
-1.01897e-11
0.00926061
-0.000420215
-9.27707e-12
0.00944061
-0.000398526
-8.22209e-12
0.00961086
-0.000376954
-7.08539e-12
0.00977186
-0.000356273
-5.87224e-12
0.00992421
-0.000335829
-4.48447e-12
0.0100675
-0.000316312
-3.99516e-12
0.0102025
-0.000297094
-2.16355e-12
0.0103292
-0.000278806
-1.00004e-12
0.0104474
-0.000260869
6.95848e-14
0.0105587
-0.000243779
1.06279e-12
0.0106612
-0.000227124
1.92815e-12
0.0107578
-0.000211127
2.683e-12
0.0108463
-0.000195634
3.35379e-12
0.010929
-0.000180655
3.91343e-12
0.0110044
-0.000166207
4.37428e-12
0.0110739
-0.000152192
4.74399e-12
0.0111366
-0.000138745
5.0378e-12
0.0111936
-0.000125728
5.26168e-12
0.0112443
-0.000113321
5.42876e-12
0.0112897
-0.000101382
5.54433e-12
0.0113292
-9.00402e-05
5.61834e-12
0.0113638
-7.91535e-05
5.65804e-12
0.0113931
-6.87908e-05
5.67382e-12
0.0114175
-5.88252e-05
5.67115e-12
0.0114374
-4.93206e-05
5.66086e-12
0.0114528
-4.03013e-05
5.64501e-12
0.0114643
-3.15278e-05
5.64027e-12
0.0114716
-2.33575e-05
5.63545e-12
0.0114757
-1.55356e-05
5.64161e-12
0.0114756
-8.0599e-06
5.63857e-12
0.0114722
-3.77708e-07
5.64483e-12
0.0114661
5.26937e-06
5.64152e-12
0.0114573
1.13191e-05
5.63387e-12
0.0114463
1.73485e-05
5.62378e-12
0.0114322
2.33851e-05
5.58987e-12
0.0114158
2.93663e-05
5.56198e-12
0.0113959
3.5661e-05
5.51306e-12
0.0113737
4.24644e-05
5.44077e-12
0.0113475
5.03412e-05
5.31604e-12
0.0113176
5.97802e-05
5.13581e-12
0.0112823
7.18651e-05
4.88539e-12
8.74554e-05
4.59695e-12
0.0153004
0.0151542
-5.25247e-12
0.012777
0.010699
-9.1324e-12
0.0105843
0.00831507
-1.0583e-11
0.00847707
0.0064659
-1.04658e-11
0.00649893
0.00499255
-1.31836e-11
0.00481686
0.00389957
-1.53025e-11
0.00340987
0.00312487
-1.52989e-11
0.00226768
0.00251743
-1.44616e-11
0.00130535
0.00201139
-1.48823e-11
0.000451432
0.00161522
-1.64729e-11
-0.000348387
0.00130691
-1.72093e-11
-0.000994142
0.00104965
-1.58434e-11
-0.0014605
0.00080587
-1.66002e-11
-0.00178121
0.000564187
-1.70734e-11
-0.00192123
0.000329567
-2.0043e-11
-0.00192499
0.000119931
-2.24205e-11
-0.00181444
-0.00012255
-2.54143e-11
-0.0016594
-0.000292172
-2.8239e-11
-0.00144986
-0.000476478
-2.97962e-11
-0.00115005
-0.000710986
-3.03203e-11
-0.000800432
-0.000886366
-2.96768e-11
-0.000417039
-0.00101029
-2.7015e-11
-6.48996e-06
-0.00108948
-2.08336e-11
0.000375279
-0.001118
-2.36515e-11
0.000764517
-0.00113817
-1.67469e-11
0.00115719
-0.00115244
-1.30968e-11
0.00155733
-0.00116891
-1.0214e-11
0.00196627
-0.00119076
-7.77341e-12
0.00238014
-0.00121247
-5.53626e-12
0.00280052
-0.00123651
-3.70803e-12
0.00321803
-0.00125951
-2.3372e-12
0.00363949
-0.00127652
-1.40684e-12
0.00406404
-0.00128649
-4.68684e-13
0.00449187
-0.00129215
1.61615e-13
0.00491639
-0.00129257
2.63052e-13
0.00533848
-0.00129071
-4.24667e-14
0.00575403
-0.00128354
-4.57906e-13
0.00616173
-0.00127426
-8.60679e-13
0.00655458
-0.00126023
-1.48531e-12
0.00693818
-0.00124057
-2.34546e-12
0.00731271
-0.00121349
-3.29562e-12
0.00767796
-0.0011833
-4.13052e-12
0.00802998
-0.0011506
-4.88556e-12
0.00836985
-0.00111568
-5.93026e-12
0.00869689
-0.00107793
-7.07982e-12
0.00900957
-0.00103821
-7.39625e-12
0.00930449
-0.00100201
-8.11478e-12
0.00958232
-0.000973584
-9.32662e-12
0.00985101
-0.000942316
-9.80468e-12
0.0101077
-0.000905987
-1.01485e-11
0.0103525
-0.000867759
-1.04195e-11
0.0105829
-0.000828833
-1.05637e-11
0.010801
-0.000791002
-1.05927e-11
0.0110059
-0.000753583
-1.0481e-11
0.0111989
-0.000717189
-1.03897e-11
0.0113797
-0.000681285
-1.00913e-11
0.0115501
-0.000646199
-9.65192e-12
0.0117092
-0.000611672
-9.05053e-12
0.0118592
-0.00057795
-8.30683e-12
0.0119987
-0.000545005
-7.44482e-12
0.0121295
-0.000512843
-6.48617e-12
0.0122506
-0.000481637
-5.45795e-12
0.0123631
-0.00045122
-4.40331e-12
0.012467
-0.000421854
-3.79328e-12
0.0125626
-0.000393319
-2.30514e-12
0.0126509
-0.000365838
-1.31438e-12
0.0127313
-0.000339215
-3.54139e-13
0.0128052
-0.000313613
5.58195e-13
0.0128718
-0.000288799
1.31889e-12
0.0129319
-0.000264968
2.0813e-12
0.0129856
-0.000241888
2.79923e-12
0.0130327
-0.00021969
3.39492e-12
0.013074
-0.0001982
3.89243e-12
0.013109
-0.000177613
4.3125e-12
0.0131387
-0.000157662
4.64414e-12
0.0131625
-0.000138694
4.92578e-12
0.0131816
-0.000120414
5.13226e-12
0.0131953
-0.000103158
5.30813e-12
0.0132047
-8.65628e-05
5.42334e-12
0.0132092
-7.08994e-05
5.51586e-12
0.0132099
-5.58445e-05
5.57076e-12
0.0132057
-4.15073e-05
5.60526e-12
0.0131984
-2.79928e-05
5.62646e-12
0.0131869
-1.52433e-05
5.62565e-12
0.013173
-2.82062e-06
5.6412e-12
0.0131561
7.6304e-06
5.63961e-12
0.013138
1.76342e-05
5.66337e-12
0.0131171
2.73369e-05
5.64129e-12
0.0130949
3.67808e-05
5.65257e-12
0.0130695
4.5585e-05
5.62631e-12
0.0130413
5.40413e-05
5.64074e-12
0.0130115
6.2347e-05
5.62333e-12
0.0129786
7.04886e-05
5.60489e-12
0.0129443
7.86471e-05
5.5661e-12
0.0129069
8.69243e-05
5.50572e-12
0.0128678
9.57505e-05
5.42702e-12
0.0128259
0.00010557
5.29025e-12
0.0127816
0.000117163
5.11219e-12
0.0127344
0.000131506
4.84889e-12
0.000150143
4.49509e-12
0.0174121
0.0159071
-4.80059e-12
0.0157118
0.0123962
-7.31035e-12
0.0140601
0.00996456
-8.93334e-12
0.0123359
0.0081849
-1.05008e-11
0.010633
0.00669005
-1.16744e-11
0.00898373
0.00554072
-1.38547e-11
0.00745936
0.0046414
-1.41431e-11
0.00609815
0.00387123
-1.40259e-11
0.00493168
0.00317635
-1.43035e-11
0.00396175
0.00258594
-1.55105e-11
0.00314165
0.00212783
-1.59431e-11
0.00246336
0.00172872
-1.58903e-11
0.00191293
0.00135455
-1.69226e-11
0.00148659
0.000985333
-1.86362e-11
0.00118554
0.000622362
-2.09248e-11
0.00103658
0.000259154
-2.24796e-11
0.00105232
-0.00015138
-2.48918e-11
0.00123076
-0.000489824
-2.74742e-11
0.00151254
-0.000784259
-3.0136e-11
0.00187394
-0.00110067
-2.98013e-11
0.00228403
-0.00132812
-2.84934e-11
0.00270432
-0.00146345
-2.60217e-11
0.00312414
-0.00154079
-2.26833e-11
0.00354889
-0.00157331
-2.01498e-11
0.00397499
-0.00159105
-1.64924e-11
0.0044063
-0.00160684
-1.36463e-11
0.0048458
-0.00162841
-1.13658e-11
0.00528965
-0.00165266
-9.35729e-12
0.00573923
-0.00167807
-7.4872e-12
0.00618963
-0.00170149
-6.06901e-12
0.00663941
-0.00172229
-4.95004e-12
0.0070861
-0.00173603
-4.00597e-12
0.00753093
-0.00174256
-3.07713e-12
0.00796925
-0.00174177
-2.34501e-12
0.00840114
-0.00173449
-1.85717e-12
0.00882233
-0.0017223
-1.74142e-12
0.0092308
-0.00170335
-1.82085e-12
0.00962465
-0.00167998
-2.04855e-12
0.0100021
-0.00165014
-2.32609e-12
0.0103644
-0.00161548
-2.73289e-12
0.0107118
-0.00157393
-3.29534e-12
0.0110438
-0.00152917
-3.74938e-12
0.0113589
-0.00148071
-4.31111e-12
0.0116597
-0.0014311
-5.01555e-12
0.011945
-0.00137844
-5.83557e-12
0.0122142
-0.00132344
-6.00775e-12
0.0124634
-0.00126801
-6.40513e-12
0.0126897
-0.00121826
-7.07267e-12
0.0129045
-0.00117675
-8.04417e-12
0.0131074
-0.00112854
-8.13865e-12
0.0132964
-0.00107678
-8.36068e-12
0.0134729
-0.00102492
-8.54002e-12
0.0136364
-0.000973233
-8.61391e-12
0.0137877
-0.0009231
-8.63423e-12
0.0139274
-0.000873762
-8.45785e-12
0.0140557
-0.000826053
-8.3113e-12
0.0141736
-0.000779132
-8.03216e-12
0.0142812
-0.000733833
-7.65476e-12
0.0143794
-0.000689233
-7.17575e-12
0.0144686
-0.000646261
-6.59705e-12
0.0145491
-0.000604053
-5.94357e-12
0.0146218
-0.000563482
-5.1983e-12
0.0146863
-0.000523819
-3.74887e-12
0.0147439
-0.00048574
-3.32605e-12
0.0147938
-0.000448716
-3.05018e-12
0.0148371
-0.000413168
-1.74612e-12
0.0148734
-0.000378751
-8.78691e-13
0.0149032
-0.000345656
-6.7255e-14
0.0149267
-0.000313698
7.84744e-13
0.0149437
-0.000282888
1.50064e-12
0.0149551
-0.000253156
2.10396e-12
0.0149603
-0.000224478
2.68396e-12
0.0149602
-0.000196895
3.22345e-12
0.0149547
-0.000170266
3.68931e-12
0.014944
-0.000144857
4.0818e-12
0.0149288
-0.000120446
4.44257e-12
0.0149089
-9.73639e-05
4.73522e-12
0.0148851
-7.52827e-05
5.00032e-12
0.0148573
-5.43813e-05
5.18887e-12
0.0148258
-3.44688e-05
5.35277e-12
0.0147911
-1.58265e-05
5.45824e-12
0.0147532
1.96298e-06
5.55106e-12
0.0147142
1.70341e-05
5.60727e-12
0.0146732
3.1923e-05
5.63028e-12
0.0146307
4.61283e-05
5.67779e-12
0.0145857
5.95861e-05
5.66569e-12
0.014538
7.22486e-05
5.68952e-12
0.0144888
8.44269e-05
5.68121e-12
0.0144368
9.60476e-05
5.69496e-12
0.0143841
0.000107135
5.67585e-12
0.0143284
0.000117655
5.67321e-12
0.0142726
0.000127728
5.63859e-12
0.0142142
0.000137558
5.60935e-12
0.0141556
0.00014712
5.53984e-12
0.0140948
0.000156804
5.47113e-12
0.0140337
0.000166667
5.35824e-12
0.0139708
0.000177504
5.22095e-12
0.0139074
0.000189743
5.02338e-12
0.0138428
0.000204641
4.76625e-12
0.000223782
4.43447e-12
0.0185718
0.0161941
-4.26542e-12
0.0175387
0.0134284
-6.18456e-12
0.0163153
0.0111858
-7.71997e-12
0.0150291
0.00946692
-9.63248e-12
0.0136827
0.00803069
-1.07061e-11
0.0123341
0.00688219
-1.2144e-11
0.0110116
0.00595352
-1.31862e-11
0.00973432
0.00513996
-1.34745e-11
0.00849663
0.00440417
-1.40369e-11
0.00735073
0.00372454
-1.54092e-11
0.00636464
0.00310978
-1.60455e-11
0.00554765
0.0025408
-1.67365e-11
0.00489877
0.00199808
-1.78225e-11
0.00441701
0.00145726
-1.92961e-11
0.00411012
0.000915573
-2.08992e-11
0.00397516
0.000376717
-2.2452e-11
0.00395427
-0.000154689
-2.33737e-11
0.00412976
-0.000693896
-2.4941e-11
0.0044841
-0.00117472
-2.66975e-11
0.00489867
-0.0015564
-2.60719e-11
0.0053651
-0.00183565
-2.54892e-11
0.00584661
-0.00199132
-2.41612e-11
0.00633527
-0.00207457
-2.17768e-11
0.00682377
-0.00210491
-1.94258e-11
0.00730639
-0.00211064
-1.70479e-11
0.00778577
-0.00211909
-1.47119e-11
0.00825947
-0.00213249
-1.2827e-11
0.0087289
-0.00215042
-1.1221e-11
0.00919201
-0.00216791
-9.81167e-12
0.00964928
-0.00218393
-8.75435e-12
0.0100955
-0.00219285
-7.83734e-12
0.0105317
-0.00219392
-6.9333e-12
0.0109535
-0.00218455
-5.98694e-12
0.0113624
-0.00216656
-5.06222e-12
0.0117541
-0.00214046
-4.25264e-12
0.0121276
-0.00210759
-3.67556e-12
0.0124819
-0.00206865
-3.34121e-12
0.0128161
-0.00202391
-3.24142e-12
0.0131305
-0.00197432
-3.20562e-12
0.0134265
-0.00191977
-3.17697e-12
0.013706
-0.00186119
-3.27032e-12
0.0139694
-0.00179906
-3.37305e-12
0.0142186
-0.00173467
-3.64665e-12
0.014451
-0.001669
-3.96744e-12
0.0146672
-0.00160165
-4.53279e-12
0.0148669
-0.00153118
-4.62794e-12
0.0150503
-0.00145997
-4.83828e-12
0.0152152
-0.00139259
-5.21335e-12
0.0153631
-0.00133443
-5.834e-12
0.0155005
-0.00127643
-5.96947e-12
0.0156293
-0.00121594
-6.14316e-12
0.0157476
-0.00115448
-6.33697e-12
0.0158563
-0.00109253
-6.49104e-12
0.0159546
-0.00103219
-6.58647e-12
0.0160438
-0.000972774
-6.62856e-12
0.0161236
-0.00091551
-6.58956e-12
0.0161947
-0.000859226
-6.51097e-12
0.0162573
-0.000804996
-6.34767e-12
0.0163117
-0.000751759
-6.08312e-12
0.0163584
-0.000700437
-5.74121e-12
0.0163973
-0.000650232
-5.31147e-12
0.0164297
-0.000601827
-4.79736e-12
0.0164548
-0.000554717
-3.94102e-12
0.0164745
-0.000509307
-3.42746e-12
0.0164877
-0.000465332
-3.46792e-12
0.0164961
-0.00042294
-2.26192e-12
0.0164986
-0.000382019
-1.53569e-12
0.0164967
-0.000342532
-8.18684e-13
0.0164894
-0.000304455
-9.24913e-14
0.0164781
-0.000267682
6.1987e-13
0.0164616
-0.000232229
1.29234e-12
0.0164413
-0.00019803
1.9211e-12
0.0164162
-0.000165124
2.49525e-12
0.0163874
-0.000133502
3.01001e-12
0.0163541
-0.000103286
3.46862e-12
0.0163175
-7.45318e-05
3.90461e-12
0.0162769
-4.72265e-05
4.2857e-12
0.0162335
-2.16547e-05
4.61865e-12
0.0161873
2.38655e-06
4.89649e-12
0.0161394
2.39936e-05
5.1204e-12
0.0160902
4.46373e-05
5.31041e-12
0.0160387
6.41119e-05
5.44028e-12
0.0159848
8.25598e-05
5.57495e-12
0.0159274
9.98601e-05
5.65011e-12
0.0158687
0.00011658
5.71997e-12
0.0158064
0.000132249
5.73134e-12
0.0157428
0.000147233
5.75819e-12
0.0156763
0.000161286
5.74899e-12
0.0156084
0.000174717
5.75238e-12
0.0155386
0.000187394
5.72406e-12
0.0154671
0.000199395
5.69651e-12
0.0153947
0.000210773
5.64554e-12
0.0153207
0.000221614
5.58693e-12
0.0152466
0.000232076
5.50142e-12
0.0151714
0.000242298
5.40551e-12
0.0150966
0.000252568
5.27272e-12
0.0150216
0.000263307
5.12177e-12
0.0149473
0.000275201
4.91116e-12
0.0148737
0.000289024
4.66101e-12
0.00030674
4.38008e-12
0.0193705
0.0162259
-3.91365e-12
0.0187018
0.0140937
-5.28977e-12
0.0178262
0.0120602
-6.82381e-12
0.0168688
0.0104214
-8.63981e-12
0.0158265
0.00906794
-1.01051e-11
0.0147728
0.00793091
-1.1303e-11
0.0137105
0.00700658
-1.23872e-11
0.0126419
0.0061988
-1.33175e-11
0.0115803
0.00545274
-1.45349e-11
0.0105437
0.0047489
-1.62058e-11
0.00957999
0.00405956
-1.78811e-11
0.00871892
0.00338677
-1.9573e-11
0.00800308
0.00269659
-2.11297e-11
0.00745338
0.00198771
-2.25454e-11
0.00708983
0.00125043
-2.30613e-11
0.00692801
0.000505588
-2.30256e-11
0.00696672
-0.000235733
-2.26526e-11
0.00719158
-0.000964063
-2.15829e-11
0.00758524
-0.00161957
-2.03758e-11
0.00808145
-0.00210808
-1.89252e-11
0.0086083
-0.00242031
-1.85245e-11
0.00914786
-0.00258458
-1.58819e-11
0.00967914
-0.00265531
-1.79534e-11
0.0101979
-0.00267357
-1.85186e-11
0.0106981
-0.00265615
-1.85858e-11
0.0111786
-0.00264149
-1.67667e-11
0.0116359
-0.00262987
-1.48556e-11
0.0120692
-0.00262222
-1.34741e-11
0.0124825
-0.00261579
-1.26298e-11
0.012875
-0.00260677
-1.17179e-11
0.0132483
-0.00259279
-1.0904e-11
0.0136019
-0.00257095
-1.00416e-11
0.0139371
-0.00254022
-9.01039e-12
0.0142536
-0.00250111
-7.84308e-12
0.014552
-0.00245465
-6.66954e-12
0.0148325
-0.00240226
-5.64366e-12
0.0150955
-0.0023446
-4.76599e-12
0.0153424
-0.00228266
-4.18046e-12
0.0155745
-0.00221723
-3.80387e-12
0.0157919
-0.00214733
-3.47882e-12
0.0159958
-0.00207411
-3.23346e-12
0.0161853
-0.00199776
-3.03349e-12
0.0163618
-0.00191989
-2.96327e-12
0.0165254
-0.00184116
-2.98558e-12
0.0166778
-0.00176244
-3.12222e-12
0.0168189
-0.00168037
-3.15596e-12
0.0169493
-0.00159757
-3.24326e-12
0.0170668
-0.00151724
-3.43363e-12
0.0171706
-0.00144428
-3.79389e-12
0.0172641
-0.0013763
-4.02881e-12
0.0173507
-0.00130859
-4.19412e-12
0.0174292
-0.00123981
-4.37839e-12
0.0175003
-0.00117027
-4.59061e-12
0.017563
-0.0011019
-4.79104e-12
0.0176178
-0.00103446
-4.96801e-12
0.0176646
-0.000969139
-5.09632e-12
0.0177034
-0.000905162
-5.17488e-12
0.0177351
-0.000843294
-5.20919e-12
0.017759
-0.000782847
-5.19027e-12
0.0177764
-0.00072433
-5.10075e-12
0.0177864
-0.000667346
-4.92699e-12
0.0177904
-0.00061216
-4.66644e-12
0.0177877
-0.000558631
-4.32422e-12
0.0177799
-0.000506823
-3.85608e-12
0.0177662
-0.000456733
-2.97621e-12
0.017748
-0.000408287
-3.47919e-12
0.0177249
-0.000361524
-2.22687e-12
0.0176974
-0.00031629
-1.57318e-12
0.0176657
-0.000272637
-8.84367e-13
0.0176298
-0.000230415
-2.06806e-13
0.0175901
-0.000189719
4.6882e-13
0.0175465
-0.00015045
1.112e-12
0.0174997
-0.000112773
1.71726e-12
0.017449
-7.64625e-05
2.24736e-12
0.0173959
-4.23701e-05
2.8232e-12
0.0173396
-1.00012e-05
3.33103e-12
0.0172827
1.95254e-05
3.82064e-12
0.0172237
4.71706e-05
4.23581e-12
0.0171639
7.34636e-05
4.58561e-12
0.0171003
9.83753e-05
4.88487e-12
0.0170355
0.000121832
5.14275e-12
0.0169669
0.000144184
5.33815e-12
0.0168971
0.000165137
5.50995e-12
0.0168237
0.000185102
5.63483e-12
0.0167492
0.000203723
5.72824e-12
0.0166719
0.000221611
5.78741e-12
0.016593
0.000238129
5.81282e-12
0.0165123
0.000254038
5.82729e-12
0.0164298
0.000268609
5.80573e-12
0.0163464
0.000282704
5.78554e-12
0.0162611
0.000295519
5.72304e-12
0.0161756
0.000307901
5.66403e-12
0.0160885
0.000319156
5.56504e-12
0.0160018
0.000330097
5.45925e-12
0.0159142
0.000340223
5.32407e-12
0.0158275
0.00035033
5.1628e-12
0.0157408
0.000360253
4.98032e-12
0.0156559
0.000370996
4.74504e-12
0.0155724
0.000382849
4.47782e-12
0.000397485
4.19571e-12
0.0199437
0.0162044
-3.37466e-12
0.0195461
0.0144897
-4.69817e-12
0.0188656
0.0127359
-6.43737e-12
0.0181213
0.0111619
-7.83138e-12
0.0173238
0.00985997
-9.3624e-12
0.0164845
0.00876325
-1.082e-11
0.0156508
0.00783272
-1.24014e-11
0.014807
0.00702967
-1.41105e-11
0.0139619
0.00628583
-1.62251e-11
0.0131153
0.00557521
-1.89123e-11
0.0123064
0.00484407
-2.21689e-11
0.0115722
0.00409646
-2.52775e-11
0.0109414
0.00329283
-2.70238e-11
0.0104484
0.00244904
-2.72351e-11
0.0101262
0.00153545
-2.5384e-11
0.0100211
0.000570821
-2.42008e-11
0.0100981
-0.000358106
-2.07358e-11
0.010342
-0.00124932
-1.54427e-11
0.0107059
-0.00202763
-1.3904e-11
0.0111167
-0.00255789
-1.10492e-11
0.0115281
-0.00286473
-9.28002e-12
0.0120125
-0.00309961
-9.82634e-12
0.012483
-0.00315392
-1.23249e-11
0.0128712
-0.00310089
-1.67238e-11
0.0133062
-0.00312832
-2.16918e-11
0.0137265
-0.00309883
-1.99721e-11
0.0141209
-0.00305893
-1.81067e-11
0.0144865
-0.00301783
-1.65247e-11
0.0148257
-0.00298182
-1.52263e-11
0.0151434
-0.00294892
-1.41544e-11
0.0154423
-0.00291401
-1.34625e-11
0.015724
-0.00287322
-1.27343e-11
0.0159908
-0.00282552
-1.16485e-11
0.0162421
-0.0027706
-1.02953e-11
0.0164801
-0.00270927
-8.85841e-12
0.0167044
-0.00264206
-7.44319e-12
0.0169162
-0.00257034
-6.20018e-12
0.0171169
-0.00249564
-5.17969e-12
0.0173057
-0.00241686
-4.34652e-12
0.0174834
-0.0023347
-3.67707e-12
0.0176504
-0.00224979
-3.04367e-12
0.0178071
-0.00216253
-2.59261e-12
0.0179542
-0.00207396
-2.25203e-12
0.0180912
-0.00198475
-2.04221e-12
0.0182191
-0.00189641
-1.91243e-12
0.0183367
-0.00180445
-1.90894e-12
0.0184454
-0.00171235
-1.87106e-12
0.0185432
-0.0016212
-1.90527e-12
0.0186278
-0.00153443
-1.83407e-12
0.018703
-0.00145755
-2.03097e-12
0.0187689
-0.00138045
-2.40358e-12
0.0188264
-0.00130418
-2.32798e-12
0.0188773
-0.00122789
-2.82542e-12
0.0189205
-0.00115244
-3.27872e-12
0.0189563
-0.00107779
-3.58884e-12
0.0189844
-0.00100493
-3.87674e-12
0.0190047
-0.000933637
-4.13461e-12
0.0190181
-0.000864384
-4.34374e-12
0.019024
-0.000796943
-4.51214e-12
0.0190236
-0.000731419
-4.6074e-12
0.0190163
-0.000667795
-4.63294e-12
0.0190032
-0.00060598
-4.55957e-12
0.0189839
-0.00054613
-4.40185e-12
0.0189593
-0.000488033
-4.15228e-12
0.0189293
-0.000431899
-3.80624e-12
0.0188947
-0.000377444
-2.87977e-12
0.0188553
-0.000324862
-3.3141e-12
0.0188117
-0.000273862
-2.54764e-12
0.0187639
-0.000224624
-1.6895e-12
0.018712
-0.000176917
-1.04636e-12
0.0186562
-0.000131
-3.83318e-13
0.0185967
-8.66919e-05
2.71324e-13
0.0185337
-4.44645e-05
8.95424e-13
0.0184673
-3.92773e-06
1.43523e-12
0.0184006
3.20665e-05
2.16788e-12
0.0183318
6.70539e-05
2.84351e-12
0.0182606
0.000100135
3.35908e-12
0.0181859
0.000131372
3.81492e-12
0.0181092
0.000160893
4.23575e-12
0.0180292
0.000188881
4.59327e-12
0.0179473
0.000215263
4.91911e-12
0.0178624
0.000240254
5.17612e-12
0.0177759
0.000263696
5.40131e-12
0.0176869
0.000285869
5.57342e-12
0.0175964
0.000306535
5.70516e-12
0.0175042
0.000326125
5.79983e-12
0.0174103
0.000344279
5.84044e-12
0.0173155
0.000361471
5.86739e-12
0.0172189
0.000377291
5.83419e-12
0.017122
0.000392223
5.80997e-12
0.0170235
0.000405876
5.72019e-12
0.0169251
0.000418656
5.64955e-12
0.0168257
0.000430285
5.51307e-12
0.0167269
0.000441093
5.39329e-12
0.0166278
0.000450986
5.2167e-12
0.0165299
0.000460254
5.04155e-12
0.0164326
0.000469079
4.82073e-12
0.0163375
0.000477878
4.57289e-12
0.0162443
0.000487298
4.27879e-12
0.000498049
3.96685e-12
0.0204279
0.0161287
-4.02001e-12
0.0201743
0.0147426
-4.97164e-12
0.0196814
0.0132269
-6.111e-12
0.0190486
0.0117897
-7.50871e-12
0.0183897
0.0105133
-9.03212e-12
0.0177114
0.0094334
-1.0795e-11
0.0170252
0.00850879
-1.28208e-11
0.0163493
0.00769215
-1.53267e-11
0.0156826
0.00693214
-1.90926e-11
0.0150374
0.00619774
-2.33466e-11
0.0144377
0.00541081
-2.8808e-11
0.0138789
0.00461276
-3.25446e-11
0.0133649
0.00376605
-3.3057e-11
0.0130046
0.00276599
-3.32744e-11
0.0128566
0.00162937
-3.16202e-11
0.012845
0.000550244
-1.94594e-11
0.0129772
-0.000528242
-1.74635e-11
0.0132026
-0.00151344
-1.3476e-11
0.0134317
-0.00228321
-6.1018e-12
0.0136329
-0.00276611
6.48107e-12
0.0138374
-0.00308416
-2.06745e-12
0.0139912
-0.00326681
-3.94213e-12
0.0142789
-0.00346112
-7.47982e-12
0.0147087
-0.00355671
-1.42961e-11
0.0150403
-0.00349175
-1.84159e-11
0.0153874
-0.00348588
-2.31603e-11
0.01576
-0.0034717
-2.22816e-11
0.0161081
-0.0034033
-2.09773e-11
0.0164331
-0.00334147
-1.9118e-11
0.0167319
-0.00327971
-1.74664e-11
0.0170096
-0.00322064
-1.6215e-11
0.0172688
-0.00315989
-1.50423e-11
0.0175147
-0.00309589
-1.37387e-11
0.0177478
-0.00302696
-1.21758e-11
0.017971
-0.00295235
-1.05537e-11
0.0181839
-0.00287344
-8.81169e-12
0.0183868
-0.00278928
-7.32454e-12
0.0185784
-0.00270107
-6.02653e-12
0.018759
-0.00260884
-4.71818e-12
0.0189281
-0.00251418
-3.76711e-12
0.0190862
-0.00241703
-2.92326e-12
0.0192329
-0.00231798
-2.19146e-12
0.0193689
-0.00221723
-1.63184e-12
0.0194939
-0.00211689
-1.26178e-12
0.0196083
-0.00201679
-8.55208e-13
0.0197146
-0.00191674
-9.82994e-13
0.0198118
-0.00181428
-1.08454e-12
0.0198982
-0.00171237
-9.21716e-13
0.0199732
-0.00161285
-9.51366e-13
0.0200341
-0.00152199
-1.17432e-12
0.0200853
-0.00143496
-1.63265e-12
0.0201283
-0.00135099
-1.91349e-12
0.0201635
-0.00126743
-1.66197e-12
0.0201915
-0.00118518
-1.76772e-12
0.0202114
-0.00110344
-2.15694e-12
0.0202244
-0.00102351
-2.67226e-12
0.0202291
-0.000945023
-3.32508e-12
0.020227
-0.000868714
-3.701e-12
0.0202168
-0.00079432
-4.01779e-12
0.0202
-0.000722077
-4.25904e-12
0.0201757
-0.000651892
-4.44347e-12
0.0201454
-0.000583741
-4.52832e-12
0.0201088
-0.00051768
-4.53158e-12
0.0200671
-0.000453568
-4.42339e-12
0.0200201
-0.000391495
-4.22278e-12
0.0199685
-0.000331277
-3.57063e-12
0.0199122
-0.00027296
-3.14575e-12
0.0198516
-0.000216417
-3.00209e-12
0.0197866
-0.000161653
-2.94615e-12
0.0197179
-0.000108695
-1.83755e-12
0.0196456
-5.77333e-05
-1.18079e-12
0.0195704
-9.21859e-06
-5.44178e-13
0.019494
3.59919e-05
2.12639e-13
0.0194166
7.90784e-05
1.04654e-12
0.0193363
0.000119538
1.61226e-12
0.0192533
0.000157882
2.19547e-12
0.0191685
0.000194394
2.78017e-12
0.0190806
0.000228867
3.3203e-12
0.0189912
0.000261517
3.82662e-12
0.0188986
0.00029229
4.25646e-12
0.018805
0.000321312
4.65327e-12
0.0187084
0.000348641
4.96866e-12
0.018611
0.000374243
5.25229e-12
0.0185112
0.000398356
5.46398e-12
0.0184104
0.000420753
5.64039e-12
0.018308
0.000441864
5.75985e-12
0.0182041
0.000461314
5.83342e-12
0.0180994
0.000479609
5.86889e-12
0.0179929
0.000496316
5.85117e-12
0.0178863
0.000511908
5.81706e-12
0.017778
0.000526022
5.72485e-12
0.0176702
0.000538982
5.63126e-12
0.0175611
0.000550598
5.47626e-12
0.0174532
0.000560992
5.32618e-12
0.0173448
0.000570238
5.11592e-12
0.0172382
0.000578266
4.90666e-12
0.0171321
0.000585491
4.63998e-12
0.0170288
0.000591769
4.3562e-12
0.0169276
0.000598092
4.01685e-12
0.000604413
3.62242e-12
0.0208034
0.0160139
-3.92667e-12
0.0206644
0.0148775
-4.95462e-12
0.0203143
0.0135754
-6.01707e-12
0.0198228
0.0122773
-7.48059e-12
0.0192521
0.0110768
-9.2361e-12
0.0186715
0.0100065
-1.14206e-11
0.0180962
0.00907093
-1.42112e-11
0.0175279
0.00824241
-1.8278e-11
0.0169968
0.00743825
-2.36481e-11
0.0165287
0.00663075
-3.07623e-11
0.0160471
0.00584066
-3.81076e-11
0.0156265
0.00498574
-3.95188e-11
0.0153547
0.00398232
-4.18726e-11
0.0152719
0.00278412
-4.44419e-11
0.0152441
0.00160934
-3.04654e-11
0.0153438
0.00042171
-1.56849e-11
0.0154864
-0.000699298
-1.30794e-11
0.0156048
-0.00165196
-5.82303e-12
0.0156162
-0.00229185
7.485e-12
0.0156207
-0.00276347
1.12108e-11
0.015654
-0.00311167
6.69007e-12
0.0157473
-0.0033678
-4.48061e-12
0.0158223
-0.00354589
-5.5307e-12
0.0159971
-0.00374517
-7.5233e-12
0.0163508
-0.00386717
-1.17393e-11
0.0166786
-0.00384932
-2.05431e-11
0.0169894
-0.0038257
-2.55193e-11
0.0173419
-0.0037984
-2.59061e-11
0.0176931
-0.00373232
-2.38934e-11
0.0180176
-0.00363992
-2.15949e-11
0.0183105
-0.00354648
-1.9414e-11
0.0185752
-0.003455
-1.73788e-11
0.0188176
-0.00336567
-1.54339e-11
0.0190423
-0.0032768
-1.35084e-11
0.0192548
-0.003186
-1.16487e-11
0.0194545
-0.0030921
-9.80356e-12
0.0196425
-0.00299331
-8.10613e-12
0.0198197
-0.0028911
-6.5791e-12
0.0199842
-0.00278447
-5.07238e-12
0.0201373
-0.00267625
-3.96571e-12
0.020278
-0.00256518
-2.84068e-12
0.0204054
-0.00245207
-1.9768e-12
0.0205217
-0.00233909
-1.27091e-12
0.0206263
-0.00222671
-6.52998e-13
0.0207207
-0.00211481
-4.45834e-13
0.0208072
-0.00200565
-2.2406e-13
0.0208849
-0.0018933
-1.98934e-13
0.0209527
-0.00178147
-1.79369e-13
0.0210105
-0.00167103
-2.18481e-13
0.0210556
-0.00156754
-3.60989e-13
0.0210892
-0.00146969
-6.88063e-13
0.0211139
-0.00137694
-9.03452e-13
0.0211304
-0.00128576
-1.12373e-12
0.0211403
-0.00119668
-1.77141e-12
0.0211426
-0.00110859
-1.54617e-12
0.0211388
-0.00102237
-1.94027e-12
0.0211274
-0.000937646
-2.46998e-12
0.0211101
-0.000855057
-3.30791e-12
0.0210853
-0.000774467
-3.73264e-12
0.0210545
-0.000696135
-4.08176e-12
0.0210166
-0.00062001
-4.36662e-12
0.0209728
-0.000546104
-4.55303e-12
0.0209226
-0.000474414
-4.66217e-12
0.0208671
-0.000404835
-4.65772e-12
0.0208064
-0.000337361
-4.56469e-12
0.0207411
-0.000271853
-4.36335e-12
0.0206713
-0.000208286
-4.05359e-12
0.0205974
-0.000146623
-3.21481e-12
0.0205195
-8.67242e-05
-2.73848e-12
0.0204385
-2.94104e-05
-3.17002e-12
0.0203553
2.49876e-05
-1.93188e-12
0.0202706
7.65221e-05
-1.18713e-12
0.0201835
0.000125473
-4.60609e-13
0.0200941
0.000172005
3.11218e-13
0.0200025
0.000216166
9.90096e-13
0.0199081
0.000257902
1.61937e-12
0.0198125
0.000297475
2.25563e-12
0.019714
0.000334888
2.84803e-12
0.019615
0.000370177
3.41334e-12
0.0195133
0.000403477
3.90401e-12
0.0194115
0.000434657
4.35639e-12
0.0193075
0.000464093
4.7293e-12
0.0192033
0.000491405
5.05777e-12
0.0190974
0.000517225
5.31326e-12
0.0189908
0.000540919
5.51981e-12
0.0188831
0.000563323
5.66703e-12
0.0187741
0.00058365
5.76015e-12
0.0186647
0.000602803
5.80862e-12
0.0185538
0.000619969
5.79907e-12
0.018443
0.000635965
5.76102e-12
0.0183307
0.000650088
5.66416e-12
0.0182191
0.000662951
5.55182e-12
0.0181066
0.000674047
5.381e-12
0.0179953
0.000683723
5.20129e-12
0.0178839
0.000691722
4.96419e-12
0.0177744
0.000698133
4.71596e-12
0.017666
0.000703006
4.41365e-12
0.0175607
0.000706203
4.08452e-12
0.0174584
0.000708465
3.7076e-12
0.000709413
3.2342e-12
0.0211031
0.0159262
-4.14632e-12
0.0210298
0.0149467
-5.33522e-12
0.0207834
0.0138172
-6.5077e-12
0.0204093
0.0126456
-8.07536e-12
0.019957
0.0115223
-1.01292e-11
0.0194602
0.0104892
-1.31533e-11
0.0189771
0.00954018
-1.70316e-11
0.0185187
0.00867531
-2.36021e-11
0.0181206
0.00779881
-3.19423e-11
0.0177127
0.00698608
-4.27523e-11
0.0173834
0.00611251
-4.50584e-11
0.0171967
0.00511305
-4.96847e-11
0.017199
0.00389727
-5.72739e-11
0.0172596
0.00266143
-4.56707e-11
0.017359
0.00147693
-2.27473e-11
0.0174771
0.000273766
-1.90274e-11
0.01755
-0.000793796
-1.05788e-11
0.0174868
-0.00158993
2.84959e-12
0.0173734
-0.00214805
2.23295e-11
0.0172437
-0.00260986
1.69838e-11
0.0171527
-0.00300603
9.73475e-12
0.0171253
-0.00334049
1.6416e-12
0.017175
-0.00360739
-6.82083e-12
0.017223
-0.00380704
-8.20788e-12
0.0173587
-0.00402018
-1.10321e-11
0.0176387
-0.00415634
-1.55668e-11
0.0179495
-0.00417028
-2.12988e-11
0.0182177
-0.00410892
-2.44036e-11
0.0185342
-0.00409187
-2.53822e-11
0.0188689
-0.00401538
-2.44439e-11
0.0191802
-0.00389593
-2.26193e-11
0.0194586
-0.00376808
-2.01516e-11
0.0197058
-0.00364443
-1.74767e-11
0.0199272
-0.00352638
-1.49476e-11
0.0201299
-0.00341252
-1.26577e-11
0.0203162
-0.00329935
-1.05631e-11
0.0204913
-0.00318482
-8.67983e-12
0.0206529
-0.00306787
-7.02184e-12
0.0208038
-0.0029476
-5.49637e-12
0.0209426
-0.00282525
-4.18507e-12
0.0210682
-0.00270041
-2.93938e-12
0.0211833
-0.0025759
-2.23459e-12
0.0212868
-0.00244998
-1.40627e-12
0.0213795
-0.00232543
-6.16445e-13
0.0214631
-0.00220226
-1.77004e-13
0.0215383
-0.00208326
-2.29705e-14
0.0216058
-0.00196161
1.54474e-14
0.0216651
-0.00184104
6.38047e-14
0.0217155
-0.00172097
6.88117e-14
0.021753
-0.00160534
-2.17161e-14
0.0217806
-0.00149852
-3.3592e-13
0.0217968
-0.00139517
-6.07235e-13
0.0218038
-0.00129551
-8.17969e-13
0.0218039
-0.00119906
-1.11624e-12
0.0217973
-0.00110454
-1.70173e-12
0.021785
-0.00101209
-1.60802e-12
0.0217661
-0.000921464
-2.24918e-12
0.0217409
-0.000832814
-2.98537e-12
0.0217083
-0.000746342
-3.59309e-12
0.0216691
-0.000661998
-3.99892e-12
0.0216228
-0.000580101
-4.32574e-12
0.0215703
-0.000500407
-4.57091e-12
0.0215115
-0.000423174
-4.73679e-12
0.0214471
-0.000348068
-4.81057e-12
0.0213771
-0.000275248
-4.79342e-12
0.0213022
-0.000204382
-4.67986e-12
0.0212224
-0.000135602
-4.46988e-12
0.0211383
-6.87399e-05
-4.07275e-12
0.0210507
-4.36092e-06
-3.71583e-12
0.0209615
5.62301e-05
-2.93394e-12
0.0208704
0.000114454
-2.94493e-12
0.0207768
0.000169921
-1.76178e-12
0.0206814
0.000222678
-1.05179e-12
0.0205833
0.000272872
-3.19356e-13
0.0204834
0.000320509
4.21116e-13
0.0203806
0.000365643
1.11117e-12
0.0202765
0.000408227
1.7864e-12
0.0201697
0.000448511
2.40786e-12
0.0200622
0.000486302
3.00825e-12
0.0199525
0.000522016
3.53875e-12
0.0198424
0.000555254
4.03173e-12
0.0197306
0.000586664
4.44875e-12
0.0196184
0.000615616
4.8145e-12
0.0195052
0.000642968
5.10879e-12
0.0193912
0.000667899
5.34345e-12
0.0192768
0.000691382
5.518e-12
0.0191611
0.000712527
5.62938e-12
0.0190456
0.00073228
5.69378e-12
0.0189287
0.000749816
5.69269e-12
0.0188123
0.000765905
5.65796e-12
0.0186947
0.0007799
5.55773e-12
0.0185781
0.000792281
5.43497e-12
0.0184609
0.000802639
5.2478e-12
0.0183451
0.000811099
5.04515e-12
0.0182296
0.000817512
4.77043e-12
0.0181165
0.000821576
4.48459e-12
0.0180049
0.000823498
4.13906e-12
0.0178971
0.00082258
3.75182e-12
0.0177929
0.000819846
3.3234e-12
0.000813941
2.75754e-12
0.0214205
0.0158986
-5.05704e-12
0.0213528
0.0150112
-6.01438e-12
0.0211676
0.0139963
-7.48006e-12
0.0208709
0.0129338
-9.4482e-12
0.0205106
0.01187
-1.24325e-11
0.0201178
0.010867
-1.62792e-11
0.0197263
0.00990166
-2.37858e-11
0.0194011
0.00896324
-3.18934e-11
0.01907
0.00806886
-4.54411e-11
0.0188352
0.00715923
-4.87649e-11
0.0187243
0.00614741
-5.60051e-11
0.0188255
0.00492055
-6.96571e-11
0.0189647
0.00366754
-6.40181e-11
0.0190991
0.00248067
-3.03246e-11
0.0192923
0.00124735
-2.86315e-11
0.0194004
0.000143663
-2.03409e-11
0.0193426
-0.000733497
-1.87024e-12
0.0191068
-0.00132324
2.60724e-11
0.018864
-0.00187489
2.1757e-11
0.0186479
-0.00236746
1.65824e-11
0.0184775
-0.00281987
1.01689e-11
0.018368
-0.00322569
3.88976e-12
0.0183291
-0.00357479
-2.66697e-12
0.0183617
-0.00385559
-9.91868e-12
0.0183903
-0.00406549
-1.06174e-11
0.0184742
-0.00425786
-1.20098e-11
0.018681
-0.00440123
-1.49469e-11
0.0189816
-0.00444482
-2.04263e-11
0.0192062
-0.00435467
-2.24361e-11
0.0194831
-0.00433328
-2.4306e-11
0.019796
-0.00425003
-2.43743e-11
0.0200936
-0.00410542
-2.33239e-11
0.020368
-0.00395492
-2.06475e-11
0.0206149
-0.00380306
-1.75324e-11
0.0208353
-0.00365674
-1.45218e-11
0.0210333
-0.00351564
-1.18372e-11
0.0212112
-0.00337862
-9.54332e-12
0.0213729
-0.00324282
-7.64173e-12
0.0215199
-0.00310758
-6.00235e-12
0.0216538
-0.00297065
-4.72748e-12
0.0217747
-0.00283327
-3.53887e-12
0.0218843
-0.00269456
-2.59629e-12
0.0219859
-0.00255769
-1.69772e-12
0.0220778
-0.00242113
-9.59696e-13
0.0221603
-0.00228632
-3.82647e-13
0.0222323
-0.0021554
-4.48929e-13
0.0222993
-0.00202725
-9.77827e-14
0.0223559
-0.00189681
-6.43442e-14
0.0224017
-0.0017666
-3.45334e-14
0.0224357
-0.00163982
-6.82246e-14
0.0224562
-0.00152018
-2.12776e-13
0.0224663
-0.00140704
-5.57732e-13
0.0224672
-0.00129871
-8.1222e-13
0.0224609
-0.00119427
-1.10766e-12
0.022447
-0.00109264
-1.67531e-12
0.0224275
-0.000993748
-1.57478e-12
0.0224007
-0.000897034
-2.18894e-12
0.0223682
-0.000802484
-2.8273e-12
0.0223283
-0.000710137
-3.51143e-12
0.0222822
-0.000620006
-3.91023e-12
0.022229
-0.000532328
-4.24275e-12
0.0221696
-0.000446997
-4.50058e-12
0.0221041
-0.000364172
-4.69784e-12
0.0220329
-0.000283645
-4.8205e-12
0.0219565
-0.000205425
-4.86897e-12
0.0218751
-0.000129293
-4.82848e-12
0.021789
-5.54192e-05
-4.70812e-12
0.0216993
1.55883e-05
-4.47055e-12
0.021607
8.36883e-05
-3.89236e-12
0.0215111
0.00014855
-3.05838e-12
0.0214126
0.000210611
-3.32229e-12
0.0213116
0.000269783
-2.25149e-12
0.0212086
0.000326242
-1.55184e-12
0.0211033
0.000379847
-8.42851e-13
0.0209965
0.000430792
-1.07253e-13
0.0208874
0.000478934
6.02898e-13
0.0207773
0.00052441
1.307e-12
0.0206651
0.000567241
1.9588e-12
0.0205525
0.000607449
2.59346e-12
0.0204381
0.000645266
3.1576e-12
0.0203236
0.000680489
3.68634e-12
0.0202079
0.000713584
4.13672e-12
0.0200918
0.000744114
4.53478e-12
0.019975
0.000772725
4.8587e-12
0.0198572
0.000798827
5.11751e-12
0.0197392
0.000823124
5.31387e-12
0.0196201
0.000845009
5.43908e-12
0.019501
0.000865098
5.51498e-12
0.0193808
0.00088289
5.51865e-12
0.0192612
0.000898793
5.48406e-12
0.0191408
0.000912471
5.3787e-12
0.0190214
0.000924042
5.24359e-12
0.018902
0.000933342
5.03976e-12
0.0187844
0.00094014
4.80891e-12
0.0186677
0.000944423
4.51942e-12
0.0185539
0.000945559
4.19037e-12
0.0184424
0.00094371
3.79858e-12
0.0183355
0.000937723
3.33392e-12
0.0182335
0.000928502
2.83739e-12
0.000914799
2.1874e-12
0.0217418
0.0159241
-6.27492e-12
0.0216564
0.0150906
-7.13091e-12
0.0215
0.0141453
-9.43094e-12
0.0212663
0.0131557
-1.18186e-11
0.0209798
0.0121376
-1.69782e-11
0.0206813
0.0111417
-2.31844e-11
0.0204042
0.0101362
-3.40685e-11
0.0201568
0.00914488
-5.01954e-11
0.0199671
0.00818969
-5.29372e-11
0.019923
0.00712824
-5.97357e-11
0.0201037
0.00588275
-6.98734e-11
0.0203238
0.00457737
-8.44341e-11
0.0205465
0.00336741
-5.77598e-11
0.0207925
0.00220423
-2.60279e-11
0.0209212
0.00108925
-2.13148e-11
0.0208811
0.00017237
-1.10604e-11
0.0206181
-0.00044416
1.48718e-11
0.0203558
-0.00102632
2.12823e-11
0.0200841
-0.00156861
1.84255e-11
0.0198398
-0.00209756
1.39013e-11
0.0196347
-0.00260087
8.8367e-12
0.0194768
-0.0030646
3.94397e-12
0.0193708
-0.00347233
-1.03352e-12
0.0193229
-0.00381692
-6.05871e-12
0.0193369
-0.00409162
-9.40129e-12
0.0193571
-0.00429874
-1.35242e-11
0.0193887
-0.00445262
-1.4361e-11
0.0195115
-0.00459395
-1.66352e-11
0.0197721
-0.00465016
-2.04834e-11
0.0199642
-0.00455861
-1.97318e-11
0.0201844
-0.00450863
-2.31306e-11
0.0204606
-0.00442244
-2.54211e-11
0.0207504
-0.00428251
-2.40094e-11
0.0210246
-0.00410967
-2.1239e-11
0.0212714
-0.00393079
-1.78866e-11
0.0214875
-0.00375464
-1.45445e-11
0.0216751
-0.00358545
-1.15743e-11
0.021839
-0.00342335
-9.08992e-12
0.0219833
-0.00326677
-7.1023e-12
0.0221124
-0.0031131
-5.58313e-12
0.0222293
-0.00296122
-4.40515e-12
0.0223348
-0.00281028
-3.40949e-12
0.0224316
-0.00266068
-2.58366e-12
0.0225192
-0.00251319
-1.70774e-12
0.0225978
-0.00236769
-1.14339e-12
0.0226656
-0.00222479
-8.53602e-13
0.0227242
-0.00208658
-4.23648e-13
0.0227735
-0.00194728
-5.32522e-13
0.0228138
-0.00180843
-3.77826e-13
0.0228439
-0.00167164
-3.36271e-13
0.0228614
-0.00153961
-3.56826e-13
0.0228702
-0.00141766
-6.88376e-13
0.0228689
-0.00129922
-1.12432e-12
0.0228598
-0.00118606
-1.56656e-12
0.022843
-0.0010768
-1.51579e-12
0.0228197
-0.000970932
-1.61926e-12
0.0227888
-0.000867779
-2.20424e-12
0.0227515
-0.000767116
-2.6411e-12
0.0227067
-0.000668859
-3.36149e-12
0.0226555
-0.000572943
-3.722e-12
0.0225972
-0.000479532
-4.03148e-12
0.0225326
-0.000388543
-4.28704e-12
0.0224617
-0.000300107
-4.49981e-12
0.0223853
-0.00021405
-4.66073e-12
0.0223037
-0.000130314
-4.76541e-12
0.0222173
-4.89639e-05
-4.80141e-12
0.0221271
2.943e-05
-4.71783e-12
0.0220334
0.000104584
-4.4741e-12
0.0219364
0.00017671
-4.16757e-12
0.0218357
0.000245691
-3.33986e-12
0.0217321
0.000311639
-2.58447e-12
0.0216253
0.000374536
-3.20667e-12
0.0215166
0.000434482
-1.93308e-12
0.0214051
0.00049142
-1.25278e-12
0.0212926
0.000545388
-5.36384e-13
0.0211777
0.000596447
1.70197e-13
0.0210625
0.000644496
8.82567e-13
0.0209452
0.000689837
1.55111e-12
0.0208281
0.000732152
2.20254e-12
0.0207095
0.000772051
2.79016e-12
0.0205911
0.000808932
3.33794e-12
0.0204719
0.000843671
3.81413e-12
0.0203524
0.000875432
4.23045e-12
0.0202327
0.000905233
4.5783e-12
0.0201121
0.000932147
4.85221e-12
0.0199917
0.000957152
5.0659e-12
0.0198701
0.000979396
5.20102e-12
0.0197489
0.000999673
5.28375e-12
0.0196268
0.00101729
5.29094e-12
0.0195054
0.00103279
5.2513e-12
0.0193838
0.00104564
5.14067e-12
0.0192632
0.00105606
4.9878e-12
0.0191433
0.00106363
4.76549e-12
0.0190253
0.00106821
4.5036e-12
0.0189092
0.00106941
4.16924e-12
0.0187965
0.00106663
3.79246e-12
0.0186876
0.0010595
3.32982e-12
0.0185851
0.00104645
2.75486e-12
0.0184886
0.00102964
2.29953e-12
0.00100834
1.65926e-12
0.0221282
0.0159933
-7.32791e-12
0.0220052
0.0152041
-9.50645e-12
0.0218384
0.014299
-1.20345e-11
0.0216365
0.0133389
-1.70356e-11
0.0214131
0.0123353
-2.36342e-11
0.0212091
0.0113033
-3.44138e-11
0.0210483
0.0102252
-5.5695e-11
0.0208919
0.00922591
-5.88258e-11
0.0208904
0.00810518
-6.57524e-11
0.0211123
0.00680418
-7.67742e-11
0.0214355
0.00542787
-9.24428e-11
0.0217385
0.00418691
-6.93583e-11
0.0219947
0.0030682
-3.74379e-11
0.0222094
0.00195513
-3.17395e-11
0.0222289
0.00104872
-1.85547e-11
0.0219599
0.000456202
6.9445e-12
0.021689
-0.000128101
2.38153e-11
0.0213974
-0.000697369
2.21107e-11
0.021124
-0.00126991
1.51009e-11
0.0208781
-0.00183638
1.00634e-11
0.0206634
-0.00237734
6.48992e-12
0.0204799
-0.00287809
3.23534e-12
0.0203315
-0.00332431
-1.85636e-13
0.0202222
-0.00371147
-3.45404e-12
0.0201541
-0.00403131
-7.12486e-12
0.020129
-0.00428737
-1.00533e-11
0.0201424
-0.00448401
-1.1651e-11
0.0201378
-0.00461587
-1.46598e-11
0.0201734
-0.00471283
-1.52929e-11
0.0203689
-0.00478395
-1.66188e-11
0.0205555
-0.00472626
-1.85914e-11
0.0207294
-0.00463085
-2.11329e-11
0.0209713
-0.00456005
-2.36739e-11
0.0212473
-0.00442034
-2.35548e-11
0.0215176
-0.0042333
-2.14086e-11
0.0217648
-0.00403119
-1.83269e-11
0.0219835
-0.00382898
-1.49732e-11
0.0221727
-0.0036343
-1.18053e-11
0.022336
-0.0034482
-9.17511e-12
0.0224772
-0.00327069
-7.16757e-12
0.0226013
-0.00309961
-5.68517e-12
0.0227142
-0.00293361
-4.52475e-12
0.0228156
-0.0027709
-3.59562e-12
0.0229093
-0.00261096
-2.75372e-12
0.0229922
-0.00245456
-1.91005e-12
0.0230646
-0.00230014
-1.51783e-12
0.0231253
-0.00214954
-1.15221e-12
0.0231801
-0.00200393
-7.86582e-13
0.0232249
-0.00185519
-6.83159e-13
0.0232601
-0.00170852
-6.16174e-13
0.023284
-0.00156509
-6.42797e-13
0.0232956
-0.00143019
-1.05579e-12
0.023297
-0.00130191
-1.3191e-12
0.0232898
-0.00117951
-1.38419e-12
0.0232739
-0.0010617
-1.4514e-12
0.0232503
-0.000947721
-1.58911e-12
0.0232186
-0.000837126
-1.91237e-12
0.0231797
-0.000729511
-2.28874e-12
0.023133
-0.000624763
-2.92401e-12
0.0230795
-0.000522615
-3.31666e-12
0.0230184
-0.000423153
-3.62988e-12
0.0229506
-0.000326203
-3.90059e-12
0.0228759
-0.000231876
-4.13301e-12
0.0227952
-0.000139917
-4.31456e-12
0.0227086
-5.05277e-05
-4.46817e-12
0.0226175
3.58499e-05
-4.5303e-12
0.0225223
0.000118871
-4.48745e-12
0.0224233
0.000198547
-4.33717e-12
0.0223211
0.000274949
-4.0938e-12
0.0222153
0.000348059
-3.48313e-12
0.022107
0.000417963
-2.90398e-12
0.0219954
0.000484587
-3.31504e-12
0.021882
0.000548014
-2.18689e-12
0.0217656
0.000608212
-1.55175e-12
0.0216481
0.000665185
-8.67347e-13
0.0215282
0.000719056
-1.84003e-13
0.021408
0.000769666
5.17478e-13
0.0212862
0.000817378
1.18351e-12
0.0211644
0.000861816
1.83779e-12
0.0210419
0.00090361
2.4341e-12
0.0209194
0.000942171
2.99087e-12
0.0207967
0.000978308
3.48019e-12
0.0206736
0.00101131
3.9068e-12
0.0205506
0.00104201
4.26691e-12
0.0204268
0.00106971
4.54953e-12
0.0203031
0.0010951
4.77073e-12
0.0201786
0.00111763
4.91042e-12
0.0200542
0.00113774
4.99317e-12
0.0199295
0.00115501
4.99821e-12
0.0198054
0.00116968
4.94928e-12
0.0196817
0.00118136
4.82687e-12
0.0195596
0.00119002
4.65289e-12
0.0194388
0.00119526
4.40445e-12
0.0193211
0.00119665
4.1047e-12
0.0192061
0.00119374
3.72074e-12
0.0190962
0.00118537
3.28162e-12
0.0189916
0.00117078
2.65524e-12
0.0188944
0.00114975
2.25865e-12
0.0188033
0.00112508
1.69466e-12
0.00109156
7.6367e-13
0.0224925
0.0160973
-9.03332e-12
0.0223666
0.0153186
-1.24011e-11
0.0222045
0.0144413
-1.69517e-11
0.0220323
0.0134797
-2.4851e-11
0.0218803
0.0124452
-3.40523e-11
0.021789
0.0113172
-6.02317e-11
0.0216457
0.0102824
-6.39587e-11
0.0216899
0.00909138
-6.99173e-11
0.0219728
0.00771402
-8.0338e-11
0.0223676
0.00626649
-1.01351e-10
0.0227124
0.00498408
-7.7225e-11
0.0229831
0.00386117
-4.31269e-11
0.0232711
0.00273953
-3.75165e-11
0.0233343
0.00186492
-2.55724e-11
0.0230712
0.00131638
-6.15186e-12
0.0228161
0.000757087
2.50052e-11
0.0225427
0.000186077
2.2184e-11
0.0222764
-0.000401863
1.62489e-11
0.0220275
-0.00100231
1.08605e-11
0.0217954
-0.0015929
7.3927e-12
0.0215815
-0.00215469
5.03386e-12
0.0213849
-0.00267449
2.72977e-12
0.0212088
-0.00314295
1.91471e-13
0.0210544
-0.00355532
-2.649e-12
0.0209279
-0.00390829
-4.68819e-12
0.0208336
-0.00420187
-6.74991e-12
0.0207699
-0.00443519
-8.69638e-12
0.0207479
-0.00461233
-1.04676e-11
0.0207472
-0.0047369
-1.338e-11
0.0207473
-0.00480716
-1.38955e-11
0.0208531
-0.00485777
-1.53344e-11
0.0210331
-0.0048387
-1.75894e-11
0.0211847
-0.00473961
-1.93533e-11
0.0213855
-0.00465462
-2.29242e-11
0.0216415
-0.00452454
-2.2828e-11
0.0218999
-0.00432466
-2.14156e-11
0.0221481
-0.00410999
-1.85608e-11
0.0223741
-0.00388801
-1.52906e-11
0.0225708
-0.0036694
-1.22015e-11
0.0227405
-0.00346019
-9.59938e-12
0.0228867
-0.00326195
-7.52449e-12
0.023012
-0.00307316
-5.89142e-12
0.0231241
-0.00289263
-4.67314e-12
0.0232226
-0.00271766
-3.665e-12
0.0233101
-0.00254715
-2.90733e-12
0.023388
-0.00238156
-2.23809e-12
0.0234548
-0.00221863
-1.7664e-12
0.0235112
-0.00206148
-1.48541e-12
0.0235597
-0.00190573
-1.42894e-12
0.0235984
-0.00174943
-1.33906e-12
0.0236256
-0.00159487
-1.23706e-12
0.0236391
-0.00144547
-1.00455e-12
0.0236431
-0.00130742
-1.32657e-12
0.0236364
-0.00117403
-1.3688e-12
0.0236199
-0.00104649
-1.38412e-12
0.0235946
-0.000923335
-1.38011e-12
0.0235608
-0.000804382
-1.4069e-12
0.0235193
-0.000689061
-1.54297e-12
0.0234702
-0.000577256
-2.0819e-12
0.0234141
-0.000468452
-2.34712e-12
0.0233505
-0.000362678
-3.02028e-12
0.0232803
-0.000259577
-3.4149e-12
0.0232029
-0.000159195
-3.64363e-12
0.0231195
-6.13135e-05
-3.82808e-12
0.0230304
3.34831e-05
-3.98349e-12
0.0229367
0.00012479
-4.07057e-12
0.0228385
0.000212594
-4.09554e-12
0.0227362
0.000296807
-4.03697e-12
0.0226302
0.000377575
-3.85075e-12
0.0225203
0.000454769
-3.20848e-12
0.0224077
0.000528569
-2.78626e-12
0.0222916
0.000598803
-3.17692e-12
0.022174
0.000665624
-2.64503e-12
0.0220536
0.000728958
-1.73054e-12
0.0219322
0.000788832
-1.09513e-12
0.0218088
0.000845379
-4.52064e-13
0.0216848
0.000898414
2.20518e-13
0.0215595
0.000948342
8.67043e-13
0.0214339
0.000994732
1.50772e-12
0.0213076
0.00103826
2.0989e-12
0.0211812
0.00107829
2.65077e-12
0.021055
0.00111566
3.14212e-12
0.0209285
0.00114966
3.56792e-12
0.0208026
0.00118107
3.93107e-12
0.0206762
0.00120926
4.2139e-12
0.0205504
0.00123483
4.4353e-12
0.0204242
0.00125728
4.57279e-12
0.0202988
0.00127691
4.64985e-12
0.0201733
0.00129344
4.64676e-12
0.0200488
0.00130676
4.58228e-12
0.0199252
0.00131673
4.44137e-12
0.0198036
0.0013228
4.23746e-12
0.0196841
0.00132481
3.95385e-12
0.0195686
0.00132168
3.59618e-12
0.019457
0.00131297
3.1591e-12
0.0193527
0.0012964
2.50625e-12
0.0192551
0.00127343
2.07838e-12
0.019164
0.00124451
1.36608e-12
0.0190849
0.00120553
6.41413e-13
0.00115468
-5.88405e-13
0.0228689
0.0162402
-1.22647e-11
0.0227356
0.0154334
-1.68988e-11
0.022602
0.0145442
-2.63385e-11
0.0224804
0.0135514
-3.85819e-11
0.0224328
0.0124207
-5.60205e-11
0.0223015
0.011362
-6.23407e-11
0.0223773
0.0101051
-7.86375e-11
0.0227201
0.00863098
-9.57985e-11
0.0231695
0.00712709
-1.01933e-10
0.0235362
0.00580142
-7.89114e-11
0.0238372
0.00463015
-4.23818e-11
0.0241697
0.00349211
-3.5942e-11
0.0242334
0.0026555
-2.21412e-11
0.0239636
0.00214529
-1.28764e-12
0.0237298
0.00158683
1.55077e-11
0.0234934
0.00102509
1.4604e-11
0.0232578
0.000443012
1.12736e-11
0.0230311
-0.000160345
8.44917e-12
0.0228136
-0.000775669
6.06513e-12
0.0226026
-0.00137263
4.47887e-12
0.0223953
-0.00193943
3.27585e-12
0.0221943
-0.002464
1.92906e-12
0.0220001
-0.00294226
2.52686e-13
0.021818
-0.00336792
-1.42025e-12
0.0216519
-0.00374204
-3.09886e-12
0.0215074
-0.00406112
-4.16499e-12
0.0213908
-0.00432837
-5.42374e-12
0.0213079
-0.00454218
-7.02545e-12
0.0212592
-0.00470491
-9.18235e-12
0.0212503
-0.00481735
-1.07131e-11
0.0212503
-0.0048817
-1.43041e-11
0.0212903
-0.00490199
-1.50369e-11
0.0214182
-0.00489298
-1.64038e-11
0.0215805
-0.00484472
-1.88355e-11
0.0217482
-0.00472352
-2.07595e-11
0.0219738
-0.0045843
-2.21965e-11
0.022229
-0.00439757
-2.0639e-11
0.0224813
-0.00417099
-1.82739e-11
0.0227162
-0.00393219
-1.55146e-11
0.0229257
-0.0036936
-1.26437e-11
0.0231043
-0.0034617
-9.93077e-12
0.0232573
-0.00324234
-7.61677e-12
0.0233861
-0.00303494
-5.81519e-12
0.0234972
-0.00283827
-4.4934e-12
0.0235932
-0.00265036
-3.68171e-12
0.0236757
-0.00246911
-2.80925e-12
0.0237473
-0.00229435
-2.49244e-12
0.0238065
-0.00212382
-2.12441e-12
0.0238581
-0.00195988
-1.72873e-12
0.0238995
-0.00179323
-1.67249e-12
0.0239313
-0.0016292
-1.5478e-12
0.0239519
-0.00146811
-1.34019e-12
0.0239579
-0.00131454
-1.17088e-12
0.0239542
-0.00117101
-1.21103e-12
0.0239392
-0.00103199
-1.09723e-12
0.0239146
-0.000898619
-9.23348e-13
0.0238807
-0.000770473
-8.82175e-13
0.0238386
-0.00064672
-1.19853e-12
0.0237882
-0.000527176
-1.56288e-12
0.0237305
-0.000411182
-1.60798e-12
0.0236652
-0.000298659
-1.91227e-12
0.0235929
-0.000189107
-2.38338e-12
0.0235135
-8.24132e-05
-2.79266e-12
0.0234276
2.12827e-05
-2.9398e-12
0.0233361
0.000121333
-3.24348e-12
0.0232394
0.000217663
-3.48057e-12
0.0231381
0.000310306
-3.528e-12
0.0230326
0.000399114
-3.59645e-12
0.0229235
0.000484271
-3.51971e-12
0.022811
0.000565553
-2.98986e-12
0.0226958
0.000643205
-2.61072e-12
0.0225774
0.000716982
-3.1231e-12
0.0224571
0.000787126
-2.73867e-12
0.022334
0.000853466
-1.80804e-12
0.0222097
0.00091615
-1.2368e-12
0.0220829
0.000975194
-6.50131e-13
0.0219558
0.00103053
-2.16613e-14
0.0218269
0.00108249
5.89041e-13
0.0216981
0.00113068
1.20205e-12
0.0215685
0.00117578
1.7746e-12
0.021439
0.0012171
2.31058e-12
0.0213098
0.00125557
2.7936e-12
0.0211805
0.00129034
3.21085e-12
0.0210519
0.00132231
3.56895e-12
0.0209231
0.00135074
3.84529e-12
0.0207953
0.00137623
4.0598e-12
0.0206672
0.00139831
4.18775e-12
0.0205405
0.00141708
4.25204e-12
0.0204139
0.00143238
4.23077e-12
0.0202896
0.00144374
4.1449e-12
0.0201665
0.0014512
3.96869e-12
0.0200468
0.00145359
3.73082e-12
0.0199305
0.00145101
3.37894e-12
0.0198198
0.00144136
2.96269e-12
0.019716
0.00142382
2.29619e-12
0.0196206
0.00139816
1.82671e-12
0.0195318
0.00136647
9.94164e-13
0.019455
0.0013232
-9.84708e-14
0.0193974
0.00126096
-1.16044e-12
0.00119362
-2.12469e-12
0.0232408
0.0164181
-1.68522e-11
0.0231044
0.0155321
-2.67357e-11
0.0230364
0.0145628
-3.91297e-11
0.0230194
0.0134877
-6.44809e-11
0.0229195
0.0124325
-6.83031e-11
0.0230495
0.0111259
-7.62033e-11
0.0234771
0.00955712
-8.9093e-11
0.0239291
0.00802086
-1.10687e-10
0.0242993
0.00665765
-7.88537e-11
0.0246344
0.00541504
-3.77543e-11
0.0249699
0.00425853
-3.02322e-11
0.0249784
0.00346767
-1.12672e-11
0.0247099
0.00295231
1.56218e-11
0.0245053
0.00238293
1.17525e-11
0.0242968
0.00182533
9.07372e-12
0.0240972
0.00124641
5.77703e-12
0.0239068
0.000643963
2.62415e-12
0.0237186
3.27176e-05
1.14882e-12
0.0235291
-0.000584072
6.68955e-13
0.0233343
-0.00117506
9.89537e-13
0.0231347
-0.00173555
1.26911e-12
0.022933
-0.00225637
1.05664e-12
0.0227322
-0.00273553
3.06116e-13
0.0225353
-0.00316734
-6.29152e-13
0.0223483
-0.00355324
-1.40958e-12
0.0221749
-0.00389036
-1.8049e-12
0.0220215
-0.00418006
-2.91567e-12
0.0218927
-0.00442268
-4.10628e-12
0.0217926
-0.00461802
-5.66407e-12
0.0217272
-0.00476842
-7.84777e-12
0.0216995
-0.00487255
-1.03666e-11
0.0217088
-0.00493176
-1.23024e-11
0.0217341
-0.00494126
-1.52936e-11
0.0217654
-0.00489833
-1.56412e-11
0.0218886
-0.00487081
-1.65589e-11
0.022083
-0.00480464
-1.81258e-11
0.0222809
-0.00462569
-1.97167e-11
0.0225112
-0.00443298
-1.91728e-11
0.0227588
-0.00420968
-1.75638e-11
0.022996
-0.00395792
-1.52155e-11
0.0232128
-0.00370103
-1.24154e-11
0.0234008
-0.00344927
-9.60394e-12
0.0235591
-0.00320822
-7.16709e-12
0.0236915
-0.00298127
-5.32417e-12
0.0238019
-0.00276839
-4.06289e-12
0.0238964
-0.00256699
-3.33697e-12
0.0239751
-0.0023754
-2.6614e-12
0.0240422
-0.00219139
-2.28758e-12
0.0240955
-0.00201289
-1.77659e-12
0.024143
-0.0018405
-1.71594e-12
0.0241799
-0.00166639
-1.54995e-12
0.0242055
-0.00149431
-1.14882e-12
0.0242167
-0.00132652
-6.96161e-13
0.0242138
-0.00116816
-1.53413e-13
0.024199
-0.00101759
-1.3e-13
0.0241741
-0.000873715
-1.42353e-14
0.0241396
-0.000735755
9.16112e-14
0.024097
-0.0006029
3.31087e-14
0.024046
-0.000474932
-3.07119e-13
0.023988
-0.0003512
-8.51431e-13
0.023922
-0.000231439
-1.48348e-12
0.023849
-0.000114977
-2.18509e-12
0.0237687
-2.04162e-06
-2.76121e-12
0.0236821
0.000107218
-2.25574e-12
0.0235897
0.000212556
-2.22174e-12
0.0234916
0.000313847
-2.38421e-12
0.0233891
0.0004113
-2.31103e-12
0.0232813
0.000504605
-2.9856e-12
0.0231704
0.000594031
-2.61324e-12
0.0230549
0.000679278
-2.50971e-12
0.0229371
0.00076059
-2.32756e-12
0.0228156
0.000837788
-3.1152e-12
0.0226923
0.000911007
-2.57849e-12
0.0225662
0.000980246
-1.79307e-12
0.0224388
0.00104547
-1.30576e-12
0.0223095
0.00110691
-7.80342e-13
0.0221795
0.00116431
-2.16737e-13
0.0220483
0.00121815
3.4901e-13
0.0219171
0.00126793
9.18954e-13
0.0217855
0.00131441
1.45766e-12
0.0216543
0.00135684
1.96769e-12
0.0215237
0.00139614
2.42729e-12
0.0213933
0.00143148
2.82574e-12
0.0212645
0.0014637
3.16945e-12
0.0211358
0.00149209
3.42871e-12
0.021009
0.00151712
3.6297e-12
0.0208825
0.00153838
3.73996e-12
0.0207578
0.00155574
3.78503e-12
0.0206342
0.0015691
3.73571e-12
0.020513
0.00157764
3.62269e-12
0.0203938
0.00158131
3.39232e-12
0.0202791
0.00157862
3.1015e-12
0.0201691
0.00156904
2.67616e-12
0.0200669
0.00154976
1.97395e-12
0.0199734
0.00152219
1.56797e-12
0.0198859
0.00148803
5.89512e-13
0.0198132
0.00143947
-8.15064e-13
0.0197599
0.00137236
-2.25914e-12
0.019724
0.00128732
-3.42596e-12
0.00120495
-3.63964e-12
0.0237335
0.0166695
-2.62946e-11
0.0235859
0.015626
-4.40685e-11
0.0234949
0.0145622
-6.64816e-11
0.0234134
0.0134819
-7.18381e-11
0.0236192
0.0121125
-8.40184e-11
0.0241388
0.0104786
-1.06361e-10
0.0246226
0.00893753
-1.01808e-10
0.0250151
0.00753782
-7.52424e-11
0.0254347
0.00620905
-3.13613e-11
0.0257757
0.00504522
-2.42482e-11
0.0257196
0.00430531
-8.71111e-12
0.0254614
0.00376354
2.01201e-11
0.0252712
0.00318426
2.12866e-11
0.0250722
0.00261491
1.21106e-11
0.0248889
0.0020289
5.64375e-12
0.0247235
0.00142329
1.30087e-12
0.0245643
0.000806267
-1.51022e-12
0.0244061
0.000192126
-2.85226e-12
0.0242357
-0.000412054
-2.5662e-12
0.0240569
-0.000991891
-1.44187e-12
0.0238683
-0.00154028
-3.37028e-13
0.0236713
-0.0020523
1.91287e-13
0.0234704
-0.00252623
1.75982e-13
0.0232658
-0.00295854
-1.60759e-13
0.0230657
-0.00334949
-3.76895e-13
0.0228695
-0.00369755
-6.58375e-13
0.0226872
-0.0040022
-8.96069e-13
0.0225196
-0.00426547
-1.93088e-12
0.0223749
-0.00448398
-3.40318e-12
0.0222561
-0.00466311
-5.39052e-12
0.0221671
-0.00479641
-7.45749e-12
0.0221138
-0.00489297
-9.54071e-12
0.0221013
-0.00494447
-1.15851e-11
0.0221353
-0.00495095
-1.39223e-11
0.0221486
-0.00490254
-1.41671e-11
0.0221536
-0.00482896
-1.452e-11
0.0223047
-0.00479728
-1.53613e-11
0.022513
-0.00466614
-1.68994e-11
0.0227314
-0.00445433
-1.67055e-11
0.0229611
-0.00421319
-1.59021e-11
0.0231976
-0.0039632
-1.39971e-11
0.0234185
-0.00369286
-1.149e-11
0.0236142
-0.00342232
-8.8092e-12
0.0237806
-0.00316166
-6.39243e-12
0.0239208
-0.00291656
-4.55585e-12
0.0240346
-0.00268661
-3.31971e-12
0.0241288
-0.00247075
-2.49572e-12
0.0242034
-0.00226735
-1.68211e-12
0.0242637
-0.00207345
-1.4254e-12
0.0243122
-0.00188806
-8.78783e-13
0.024351
-0.0017048
-6.90112e-13
0.0243805
-0.00152339
-6.82616e-13
0.0243984
-0.00134421
-1.89445e-13
0.0244024
-0.00117048
4.32223e-13
0.0243949
-0.00100807
7.57944e-13
0.0243753
-0.000851851
8.52808e-13
0.024345
-0.000702777
9.1862e-13
0.0243051
-0.000559709
9.29627e-13
0.0242564
-0.00042229
7.18565e-13
0.0241989
-0.000289898
2.6278e-13
0.0241327
-0.000162087
-2.73956e-13
0.0240585
-3.84231e-05
-9.46358e-13
0.0239765
8.09837e-05
-1.15723e-12
0.0238878
0.000196118
-1.46627e-12
0.0237923
0.000306935
-1.7232e-12
0.0236915
0.000413385
-2.43901e-12
0.0235853
0.000515659
-2.43606e-12
0.023475
0.000613473
-2.11741e-12
0.0233605
0.000707146
-2.11447e-12
0.023243
0.000796236
-2.23527e-12
0.0231224
0.00088123
-2.92774e-12
0.0229991
0.000961605
-2.90141e-12
0.022874
0.00103794
-2.25e-12
0.0227464
0.00110974
-1.73576e-12
0.0226182
0.00117751
-1.33253e-12
0.0224876
0.00124097
-8.89005e-13
0.0223572
0.00130032
-3.91703e-13
0.0222252
0.00135569
1.12221e-13
0.0220936
0.00140684
6.30754e-13
0.0219616
0.0014543
1.12744e-12
0.0218297
0.00149753
1.59936e-12
0.0216986
0.00153722
2.0305e-12
0.021568
0.00157273
2.40335e-12
0.0214388
0.00160467
2.72417e-12
0.0213105
0.00163246
2.9641e-12
0.0211844
0.00165637
3.14319e-12
0.0210592
0.001676
3.22855e-12
0.0209371
0.00169107
3.24732e-12
0.0208168
0.00170126
3.15594e-12
0.0207001
0.0017056
2.99625e-12
0.020588
0.00170354
2.70639e-12
0.0204812
0.00169326
2.2606e-12
0.0203835
0.00167284
1.77437e-12
0.0202949
0.00164311
1.11708e-12
0.0202133
0.00160588
2.1118e-13
0.0201461
0.00155447
-1.20843e-12
0.020104
0.00147781
-3.12925e-12
0.0200713
0.00139287
-4.7639e-12
0.0200502
0.00129622
-5.06139e-12
0.00116852
-5.84021e-12
0.0242998
0.0169599
-4.23278e-11
0.0240779
0.0157607
-6.73872e-11
0.0239692
0.0145852
-7.51794e-11
0.0241944
0.0131321
-9.13335e-11
0.0247316
0.0114257
-1.17625e-10
0.0252296
0.00983696
-1.08696e-10
0.0256487
0.00841906
-7.32686e-11
0.0261472
0.00700786
-2.89671e-11
0.0264886
0.00584555
-2.02485e-11
0.0263685
0.0051644
-2.66517e-12
0.0261345
0.00457918
2.57824e-11
0.0259592
0.00398104
2.24733e-11
0.0257789
0.00339976
1.37366e-11
0.0256191
0.0028007
5.17468e-12
0.0254784
0.00218551
-2.63094e-13
0.0253465
0.00156242
-2.71767e-12
0.0252115
0.000942882
-3.82566e-12
0.0250666
0.000335913
-3.82669e-12
0.0249057
-0.00025197
-2.85441e-12
0.0247311
-0.000816166
-1.36964e-12
0.0245443
-0.00134897
-5.94537e-14
0.024348
-0.00184928
5.8436e-13
0.0241447
-0.00231379
7.00343e-13
0.0239362
-0.00274306
5.47416e-13
0.0237283
-0.00313332
5.8066e-13
0.023521
-0.00348751
5.77767e-13
0.0233229
-0.00380025
5.06656e-13
0.0231334
-0.00407782
-1.35978e-13
0.0229606
-0.00431243
-1.26896e-12
0.0228052
-0.00451313
-2.90851e-12
0.0226729
-0.00467033
-4.86016e-12
0.0225645
-0.00479293
-6.81752e-12
0.0224838
-0.00487297
-8.60624e-12
0.022441
-0.00491954
-1.03133e-11
0.0224448
-0.00492088
-1.23419e-11
0.0224825
-0.00487997
-1.19273e-11
0.0224616
-0.0047924
-1.24803e-11
0.0224929
-0.00471566
-1.28843e-11
0.0226624
-0.00464414
-1.35262e-11
0.0228855
-0.00446211
-1.44877e-11
0.0231103
-0.00421357
-1.38847e-11
0.0233431
-0.00395115
-1.26909e-11
0.0235739
-0.00367457
-1.05182e-11
0.023787
-0.00339218
-7.95352e-12
0.0239724
-0.00311385
-5.5303e-12
0.0241277
-0.00284824
-3.48661e-12
0.024252
-0.00259897
-1.9096e-12
0.024352
-0.00236668
-8.99884e-13
0.0244282
-0.0021495
-1.12462e-13
0.0244864
-0.00194504
2.70313e-13
0.0245344
-0.00175105
6.29365e-13
0.0245689
-0.00155672
7.03563e-13
0.0245933
-0.00136759
8.72052e-13
0.024607
-0.00118204
1.18074e-12
0.0246059
-0.00100407
1.70873e-12
0.024594
-0.000835549
1.78684e-12
0.0245691
-0.0006738
1.7757e-12
0.0245341
-0.000519119
1.76526e-12
0.024488
-0.000370861
1.63817e-12
0.0244326
-0.000228505
1.34459e-12
0.024367
-9.14913e-05
8.84463e-13
0.0242923
4.03342e-05
4.6096e-13
0.0242095
0.000166909
-5.27175e-14
0.0241185
0.000288401
-4.15417e-13
0.0240211
0.000405146
-6.8215e-13
0.0239166
0.000517063
-9.74039e-13
0.0238074
0.000624383
-1.28747e-12
0.0236924
0.000726969
-1.58879e-12
0.0235741
0.000824866
-2.17008e-12
0.0234512
0.000918132
-2.51542e-12
0.023326
0.00100652
-2.5708e-12
0.0231973
0.0010905
-2.44429e-12
0.023067
0.00116942
-1.88284e-12
0.0229345
0.00124422
-1.66969e-12
0.0228008
0.00131384
-1.35617e-12
0.0226661
0.00137962
-9.97414e-13
0.0225305
0.00144023
-5.75646e-13
0.0223948
0.00149717
-1.35796e-13
0.0222586
0.00154903
3.2082e-13
0.0221229
0.00159732
7.71933e-13
0.0219876
0.00164067
1.19486e-12
0.0218536
0.00168039
1.59354e-12
0.0217202
0.00171537
1.92965e-12
0.0215894
0.0017464
2.22339e-12
0.0214598
0.00177284
2.4341e-12
0.0213333
0.00179465
2.58338e-12
0.0212095
0.00181164
2.63627e-12
0.0210892
0.00182298
2.60916e-12
0.0209734
0.00182828
2.47818e-12
0.0208628
0.00182626
2.19121e-12
0.0207595
0.00181527
1.93346e-12
0.0206657
0.00179318
9.86481e-13
0.0205816
0.00176133
1.1764e-12
0.0205065
0.00172069
-2.88366e-13
0.020446
0.00166413
-1.81317e-12
0.0204105
0.00158397
-2.85356e-12
0.020375
0.00150258
-3.38888e-12
0.0203561
0.00139675
-4.8935e-12
0.0203831
0.00125207
-5.79444e-12
0.0010524
-8.17601e-12
0.0248272
0.0173401
-7.23688e-11
0.0245667
0.0159303
-7.99886e-11
0.0247727
0.0142556
-9.72385e-11
0.0253335
0.0124009
-1.27039e-10
0.025865
0.0107521
-1.13657e-10
0.0263053
0.00930479
-7.48267e-11
0.0268786
0.00781758
-2.92161e-11
0.0271989
0.0066697
-1.97477e-11
0.0270056
0.00604752
-1.64879e-12
0.026794
0.00541276
2.67842e-11
0.0266153
0.0047964
2.41209e-11
0.0264412
0.00418772
1.47332e-11
0.0262967
0.00356933
5.26821e-12
0.0261756
0.0029379
-1.73165e-12
0.0260697
0.00230522
-4.787e-12
0.0259602
0.00167828
-5.50157e-12
0.0258418
0.0010655
-5.04068e-12
0.0257059
0.000472269
-3.90649e-12
0.0255539
-9.68818e-05
-2.20297e-12
0.0253851
-0.000643446
-4.59778e-13
0.0252043
-0.0011598
8.327e-13
0.0250107
-0.00164632
1.36436e-12
0.0248096
-0.0021008
1.45914e-12
0.0245993
-0.00252344
1.46264e-12
0.0243862
-0.00291146
1.72949e-12
0.0241689
-0.00326622
2.03433e-12
0.0239544
-0.00358432
2.145e-12
0.0237436
-0.00386886
1.69015e-12
0.0235418
-0.0041154
6.75277e-13
0.0233535
-0.00432957
-8.08173e-13
0.0231807
-0.00450538
-2.57892e-12
0.0230328
-0.00465043
-4.35001e-12
0.0229111
-0.00475911
-6.04288e-12
0.0228198
-0.00483432
-7.42995e-12
0.0227624
-0.00487246
-8.7401e-12
0.0227435
-0.00487441
-1.03639e-11
0.0227694
-0.00483031
-9.75855e-12
0.0227841
-0.004747
-1.04815e-11
0.022772
-0.00465003
-1.0722e-11
0.0228659
-0.00457607
-1.1198e-11
0.0230564
-0.00442537
-1.18495e-11
0.0232839
-0.0042027
-1.27151e-11
0.0235173
-0.00393282
-1.17589e-11
0.0237629
-0.00365778
-9.84624e-12
0.023995
-0.00336145
-7.36218e-12
0.0242015
-0.00306353
-4.63633e-12
0.0243757
-0.00277724
-2.16635e-12
0.0245152
-0.00250671
-3.43108e-13
0.0246222
-0.00225528
8.72637e-13
0.0247011
-0.00202162
1.83364e-12
0.0247571
-0.00180456
1.94505e-12
0.024805
-0.00160103
2.34891e-12
0.0248372
-0.00139594
2.39857e-12
0.0248571
-0.00119826
2.53981e-12
0.0248633
-0.00100563
2.76229e-12
0.0248572
-0.000823487
3.11907e-12
0.0248381
-0.000648313
2.98839e-12
0.0248076
-0.000481304
2.85385e-12
0.0247648
-0.000321231
2.66236e-12
0.0247114
-0.000167565
2.37184e-12
0.0246465
-2.02636e-05
1.97335e-12
0.0245723
0.000120584
1.58832e-12
0.024488
0.000255229
1.15134e-12
0.024395
0.000383873
7.3553e-13
0.0242941
0.00050707
3.37955e-13
0.0241855
0.000624803
-6.37708e-14
0.0240715
0.000737511
-4.78438e-13
0.0239509
0.000844958
-8.86918e-13
0.0238273
0.000947436
-1.23626e-12
0.023698
0.00104477
-1.52199e-12
0.0235673
0.001137
-1.69009e-12
0.0234321
0.00122429
-1.86687e-12
0.0232961
0.00130625
-1.73833e-12
0.0231573
0.00138362
-1.62852e-12
0.0230179
0.00145545
-1.40808e-12
0.0228772
0.00152309
-1.13744e-12
0.0227361
0.00158506
-7.94226e-13
0.0225947
0.00164321
-4.24216e-13
0.022453
0.00169559
-3.175e-14
0.0223124
0.00174436
3.67361e-13
0.0221712
0.00178742
7.38181e-13
0.0220329
0.0018267
1.0979e-12
0.0218946
0.00186053
1.39292e-12
0.0217603
0.00188992
1.65166e-12
0.0216277
0.001914
1.82781e-12
0.0214995
0.00193269
1.934e-12
0.0213752
0.0019454
1.95072e-12
0.0212563
0.00195121
1.83891e-12
0.0211443
0.00194916
1.68284e-12
0.0210404
0.00193711
1.17357e-12
0.0209486
0.00191255
8.90905e-13
0.0208666
0.00187841
1.19947e-13
0.0207948
0.00183492
-1.31958e-14
0.0207437
0.0017703
-1.47956e-12
0.0207046
0.00169334
-3.94118e-12
0.0206711
0.00160642
-4.3136e-12
0.0206722
0.00148896
-4.49277e-12
0.0207286
0.00132376
-4.25448e-12
0.0208338
0.00112015
-5.30358e-12
0.000848539
-8.43182e-12
0.0253913
0.0175513
-7.80208e-11
0.0256128
0.0155736
-1.1077e-10
0.0261477
0.0135118
-1.56412e-10
0.0266755
0.0117274
-1.23087e-10
0.0271285
0.0101991
-7.44584e-11
0.0277357
0.00863486
-5.26562e-11
0.0279904
0.00754368
-1.37569e-11
0.0277108
0.00696261
9.68492e-12
0.0275211
0.00628617
2.58657e-11
0.0273334
0.00564344
2.24856e-11
0.0271524
0.00500594
1.22135e-11
0.0269987
0.00435634
3.38681e-12
0.0268787
0.00370133
-3.08666e-12
0.026775
0.00304871
-6.9434e-12
0.0266773
0.00240729
-8.02056e-12
0.0265737
0.00178463
-7.1193e-12
0.0264585
0.00118374
-5.55441e-12
0.0263268
0.000607402
-3.60372e-12
0.0261779
5.70254e-05
-1.28783e-12
0.0260123
-0.000470917
5.45624e-13
0.0258324
-0.000971158
1.76515e-12
0.0256416
-0.00144406
2.30359e-12
0.0254406
-0.00188823
2.51283e-12
0.025232
-0.00230286
2.82929e-12
0.0250167
-0.00268698
3.35171e-12
0.0247976
-0.00303946
3.87435e-12
0.0245775
-0.00336053
4.00568e-12
0.0243594
-0.00364857
3.59513e-12
0.0241476
-0.00390539
2.49384e-12
0.023946
-0.0041288
1.07936e-12
0.0237589
-0.0043222
-6.60059e-13
0.0235898
-0.00448238
-2.38283e-12
0.0234367
-0.00461225
-3.60706e-12
0.0233073
-0.00470887
-4.81249e-12
0.023203
-0.00477583
-5.90791e-12
0.0231262
-0.00480718
-6.96785e-12
0.0230902
-0.0048072
-8.16867e-12
0.0230926
-0.00476568
-9.04437e-12
0.0231063
-0.00468025
-8.27647e-12
0.0231021
-0.00459002
-9.28851e-12
0.0231284
-0.00447116
-9.57981e-12
0.0232743
-0.00436753
-1.00778e-11
0.0234962
-0.00417584
-1.12371e-11
0.0237273
-0.00390989
-1.05841e-11
0.0239665
-0.00361803
-9.20126e-12
0.0242077
-0.00331969
-6.84277e-12
0.0244298
-0.00300842
-4.22525e-12
0.0246185
-0.00270102
-1.67851e-12
0.0247697
-0.00240778
5.40811e-13
0.0248848
-0.00213495
2.21584e-12
0.0249674
-0.00188273
3.02623e-12
0.0250242
-0.00165041
3.98084e-12
0.02507
-0.00143479
4.05367e-12
0.0250972
-0.0012178
4.1678e-12
0.0251109
-0.00101101
4.33933e-12
0.0251091
-0.000811971
4.64973e-12
0.025097
-0.000626227
4.56114e-12
0.0250707
-0.000445508
4.26421e-12
0.0250319
-0.00027322
3.90905e-12
0.0249811
-0.000107972
3.48654e-12
0.0249189
5.01447e-05
3.01949e-12
0.0248461
0.000200832
2.56126e-12
0.0247624
0.00034432
2.11954e-12
0.0246695
0.000480969
1.68287e-12
0.0245671
0.000611263
1.22161e-12
0.0244581
0.000735388
7.43157e-13
0.0243415
0.000853832
2.28087e-13
0.0242202
0.000966414
-2.72667e-13
0.0240928
0.00107375
-7.3833e-13
0.0239615
0.00117517
-1.12073e-12
0.0238257
0.0012716
-1.40558e-12
0.0236865
0.00136191
-1.58869e-12
0.0235451
0.0014474
-1.65591e-12
0.0234005
0.00152676
-1.64143e-12
0.0232559
0.00160132
-1.5142e-12
0.0231087
0.00167011
-1.33411e-12
0.0229628
0.00173386
-1.06601e-12
0.0228154
0.00179243
-7.72337e-13
0.0226693
0.00184564
-4.39037e-13
0.0225234
0.00189404
-1.00458e-13
0.0223782
0.00193698
2.2352e-13
0.0222353
0.00197489
5.3155e-13
0.0220936
0.00200739
7.88621e-13
0.0219555
0.00203413
9.9509e-13
0.0218212
0.00205503
1.13165e-12
0.0216915
0.00206911
1.17575e-12
0.0215684
0.00207569
1.12593e-12
0.0214532
0.00207351
9.28471e-13
0.0213485
0.00205993
6.35964e-13
0.0212566
0.00203303
-7.68071e-14
0.021178
0.00199505
3.80941e-14
0.0211084
0.00194846
-1.41322e-12
0.0210631
0.00187849
-1.29583e-12
0.021019
0.00180463
-4.68487e-12
0.020992
0.00170915
-5.11152e-12
0.021008
0.00157644
-5.87149e-12
0.0210852
0.00139006
-7.76481e-12
0.0212258
0.00115064
-1.00938e-11
0.0214217
0.000883562
-1.20965e-11
0.000583167
-1.50532e-11
0.0268075
0.017201
-1.2351e-10
0.0271953
0.0149871
-1.4071e-10
0.0276343
0.0129125
-1.28247e-10
0.0281332
0.01114
-6.81325e-11
0.028786
0.00947774
-5.38861e-11
0.0289042
0.00848266
-2.53783e-11
0.0285829
0.00789676
1.68324e-11
0.0283917
0.00719708
2.02876e-11
0.0281788
0.00653408
1.75591e-11
0.0279782
0.00586182
9.06605e-12
0.0278123
0.00517932
1.29724e-13
0.0276755
0.00449187
-6.98713e-12
0.027563
0.00381028
-7.80448e-12
0.0274607
0.00314711
-8.54232e-12
0.0273589
0.0025066
-1.21426e-11
0.0272497
0.00189344
-8.08441e-12
0.027128
0.00130663
-5.89856e-12
0.0269916
0.000746677
-3.71439e-12
0.0268405
0.000212646
-1.54285e-12
0.0266757
-0.000297787
4.47315e-13
0.0264991
-0.000783814
1.76248e-12
0.0263129
-0.00124385
2.61055e-12
0.0261156
-0.00167764
3.31564e-12
0.0259106
-0.00208422
4.20448e-12
0.0256966
-0.00246323
5.07465e-12
0.0254784
-0.00281264
5.73941e-12
0.025256
-0.00313388
5.72881e-12
0.0250347
-0.00342359
5.13364e-12
0.0248156
-0.00368577
3.86596e-12
0.0246039
-0.00391557
2.42379e-12
0.0244005
-0.00411898
8.54809e-13
0.0242085
-0.00428969
-5.27344e-13
0.0240306
-0.00443521
-1.69637e-12
0.0238697
-0.00454801
-3.20758e-12
0.0237259
-0.00463646
-2.85878e-12
0.0236058
-0.00469135
-4.23034e-12
0.0235105
-0.00472061
-5.12993e-12
0.0234485
-0.00471481
-5.85653e-12
0.0234307
-0.00467609
-6.8953e-12
0.0234228
-0.00459508
-6.61656e-12
0.0234428
-0.00450389
-6.87708e-12
0.0234375
-0.0043789
-8.67418e-12
0.0235088
-0.00426366
-8.91642e-12
0.0236788
-0.00409639
-9.30052e-12
0.0239067
-0.00386412
-9.89632e-12
0.0241417
-0.0035721
-9.04989e-12
0.0243825
-0.00326523
-7.67972e-12
0.0246131
-0.00294311
-5.23202e-12
0.0248156
-0.00261757
-2.30914e-12
0.0249822
-0.00230241
4.48239e-13
0.0251066
-0.00200519
2.63557e-12
0.0251937
-0.00173135
4.16806e-12
0.0252492
-0.00148089
5.45632e-12
0.0252946
-0.00125262
5.53764e-12
0.0253186
-0.00102404
5.66036e-12
0.0253262
-0.000806902
5.92054e-12
0.0253155
-0.000601219
6.46909e-12
0.0252956
-0.00041139
5.94848e-12
0.025262
-0.000226001
5.32989e-12
0.0252154
-4.95738e-05
4.60948e-12
0.025158
0.000118647
3.9427e-12
0.0250889
0.000279127
3.38287e-12
0.0250095
0.00043195
2.89437e-12
0.0249192
0.000577383
2.42059e-12
0.0248195
0.000715455
1.92154e-12
0.0247115
0.000846688
1.38318e-12
0.0245957
0.000971109
7.9927e-13
0.0244741
0.00108936
2.17849e-13
0.0243457
0.00120137
-3.42545e-13
0.024213
0.00130741
-8.14172e-13
0.0240744
0.00140757
-1.20226e-12
0.0239329
0.00150155
-1.47128e-12
0.0237874
0.00158991
-1.83163e-12
0.0236397
0.00167194
-1.97628e-12
0.0234907
0.00174854
-1.80889e-12
0.0233399
0.00181894
-1.58567e-12
0.0231898
0.00188391
-1.40366e-12
0.0230396
0.00194295
-1.17929e-12
0.02289
0.00199655
-9.16755e-13
0.0227428
0.00204417
-6.35083e-13
0.0225962
0.00208652
-3.68203e-13
0.0224533
0.00212223
-1.14958e-13
0.022313
0.00215267
9.06685e-14
0.0221767
0.00217539
2.36177e-13
0.0220462
0.00219185
3.10777e-13
0.021921
0.00219885
2.68713e-13
0.0218054
0.00219708
1.20233e-13
0.0217005
0.00218155
-1.93772e-13
0.0216103
0.00215193
-8.2963e-13
0.0215327
0.00211129
-9.4963e-13
0.0214695
0.00205744
-1.54062e-12
0.0214197
0.00198931
-3.53387e-12
0.0213766
0.00191274
-3.80041e-12
0.021366
0.00180437
-4.60068e-12
0.0214069
0.00165149
-6.20099e-12
0.0215196
0.00143783
-8.98184e-12
0.0216781
0.00119316
-1.2994e-11
0.021874
0.000908112
-1.54537e-11
0.022115
0.000591801
-1.7665e-11
0.000277681
-1.64431e-11
0.0280886
0.0164605
-1.50411e-10
0.0287465
0.0142023
-1.20119e-10
0.0294223
0.0121672
-7.10563e-11
0.0300939
0.0103933
-5.76833e-11
0.0299996
0.00952531
-2.96269e-11
0.0296294
0.00887601
1.43922e-11
0.0293925
0.00816998
2.35503e-11
0.0291294
0.00748467
1.49472e-11
0.0288984
0.00677901
4.87685e-12
0.0287065
0.00605504
-3.10123e-12
0.028557
0.00532514
-8.01295e-12
0.0284342
0.00460783
-1.17922e-11
0.0283257
0.00391214
-1.24129e-11
0.0282212
0.00324702
-1.14332e-11
0.0281124
0.00261265
-1.13004e-11
0.0279952
0.00201069
-7.79223e-12
0.0278653
0.00143783
-5.92564e-12
0.0277227
0.000892902
-4.03916e-12
0.0275675
0.000373602
-2.19921e-12
0.0274006
-0.000121123
-4.50567e-13
0.0272233
-0.00059486
9.59889e-13
0.0270368
-0.00104337
2.22139e-12
0.0268393
-0.00146751
3.50151e-12
0.0266339
-0.00186604
4.86826e-12
0.0264186
-0.00223854
5.9912e-12
0.0261984
-0.0025838
6.63583e-12
0.025972
-0.00290204
6.52511e-12
0.0257451
-0.00319191
5.78066e-12
0.0255181
-0.00345514
4.56205e-12
0.0252955
-0.00368942
3.1988e-12
0.0250778
-0.00389796
1.91465e-12
0.0248697
-0.00407776
7.58702e-13
0.0246701
-0.00423232
-1.18583e-13
0.0244827
-0.00435959
-8.57016e-13
0.0243094
-0.0044614
-1.42817e-12
0.024151
-0.00453688
-2.02619e-12
0.0240138
-0.00458567
-3.13859e-12
0.0238981
-0.00460726
-3.30792e-12
0.0238157
-0.0045999
-4.00978e-12
0.023771
-0.00456076
-5.20309e-12
0.0237432
-0.00448553
-4.89753e-12
0.0237393
-0.00438394
-5.54497e-12
0.0237375
-0.00427716
-7.99086e-12
0.0237595
-0.00413313
-8.24792e-12
0.0238625
-0.00398372
-8.7561e-12
0.0240505
-0.00377686
-9.37952e-12
0.024266
-0.00350244
-1.02256e-11
0.0244883
-0.00318568
-8.93213e-12
0.0247179
-0.00286345
-6.53475e-12
0.0249268
-0.002523
-3.60993e-12
0.0251026
-0.00218588
-5.04843e-13
0.0252406
-0.00186576
2.27765e-12
0.025339
-0.00156949
4.45663e-12
0.0253997
-0.00129899
5.91276e-12
0.0254478
-0.00105537
6.81239e-12
0.0254747
-0.000816888
6.89353e-12
0.0254777
-0.000587833
6.98723e-12
0.0254574
-0.000374785
7.08822e-12
0.0254268
-0.000180742
6.52164e-12
0.0253825
7.27322e-06
5.7175e-12
0.0253276
0.000184701
4.94355e-12
0.0252616
0.000354199
4.2881e-12
0.0251857
0.00051593
3.71031e-12
0.0250988
0.000670158
3.15608e-12
0.0250028
0.000816486
2.5908e-12
0.0248982
0.000955226
1.97766e-12
0.0247857
0.00108631
1.31514e-12
0.0246669
0.00121052
6.37156e-13
0.024541
0.00132766
-2.00972e-14
0.0244105
0.00143838
-5.96449e-13
0.0242742
0.00154238
-1.08142e-12
0.0241343
0.00164007
-1.56816e-12
0.0239906
0.00173121
-2.16611e-12
0.0238438
0.00181615
-2.26827e-12
0.023695
0.00189452
-2.32457e-12
0.0235446
0.00196691
-2.34674e-12
0.0233933
0.00203267
-2.28018e-12
0.0232427
0.00209251
-2.03215e-12
0.023092
0.00214578
-1.56984e-12
0.022944
0.0021928
-1.2487e-12
0.0227974
0.00223326
-1.04448e-12
0.0226552
0.00226668
-8.49991e-13
0.0225169
0.00229295
-7.17729e-13
0.022385
0.00231073
-6.39801e-13
0.0222605
0.00231953
-6.79054e-13
0.0221455
0.00231711
-8.05927e-13
0.0220446
0.00230064
-1.14651e-12
0.0219605
0.00226617
-1.71113e-12
0.0218866
0.00222543
-2.02225e-12
0.0218339
0.00216316
-2.28232e-12
0.0217811
0.00210193
-4.23733e-12
0.0217459
0.00201457
-4.58863e-12
0.0217558
0.00189026
-5.41978e-12
0.0218327
0.0017088
-7.17923e-12
0.0219721
0.0014827
-1.03898e-11
0.0221539
0.00121933
-1.26165e-11
0.0223808
0.000919784
-1.52725e-11
0.0226324
0.000605588
-1.66294e-11
0.0228865
0.000286394
-1.70635e-11
-5.87783e-06
-1.51576e-11
0.0294128
0.0153384
-1.31674e-10
0.0304426
0.013104
-7.10074e-11
0.0312592
0.0112945
-5.71545e-11
0.0310601
0.0105684
-2.91571e-11
0.0307722
0.00984779
1.51031e-11
0.0305457
0.0091482
1.62927e-11
0.0302876
0.00846419
1.00555e-11
0.0300425
0.00774314
-1.23261e-13
0.0298273
0.00698855
-8.14675e-12
0.0296406
0.00622438
-1.28714e-11
0.029474
0.00546735
-1.5006e-11
0.0293255
0.00473409
-1.4643e-11
0.0291893
0.0040323
-1.31043e-11
0.0290598
0.00336768
-8.94065e-12
0.0289277
0.00274029
-1.08501e-11
0.0287915
0.00214702
-6.786e-12
0.0286481
0.00158521
-5.3143e-12
0.0284986
0.00105132
-3.94813e-12
0.028341
0.000543853
-2.62104e-12
0.0281739
6.18431e-05
-1.31784e-12
0.0279971
-0.00040126
6.70256e-14
0.0278091
-0.000840083
1.59186e-12
0.0276105
-0.00125463
3.26998e-12
0.0274012
-0.00164559
4.87077e-12
0.0271834
-0.00201066
6.08047e-12
0.0269588
-0.0023512
6.62965e-12
0.0267292
-0.00266529
6.45941e-12
0.0264982
-0.00295391
5.71712e-12
0.0262665
-0.00321644
4.72646e-12
0.0260362
-0.00345276
3.58875e-12
0.0258107
-0.00366423
2.76126e-12
0.0255872
-0.00384948
1.95183e-12
0.025372
-0.00401111
1.40082e-12
0.0251611
-0.00414679
8.69204e-13
0.0249596
-0.00425912
4.74499e-13
0.0247681
-0.0043462
5.86714e-14
0.0245902
-0.00441003
-4.17083e-13
0.0244294
-0.00444921
-9.75911e-13
0.0242896
-0.00446318
-1.59788e-12
0.0241746
-0.00445121
-2.00112e-12
0.024092
-0.0044091
-3.59585e-12
0.0240372
-0.00433568
-3.66148e-12
0.0239832
-0.00423119
-4.51422e-12
0.023965
-0.00412383
-5.20765e-12
0.0239516
-0.00398368
-7.81333e-12
0.0239791
-0.00381842
-8.14023e-12
0.0240959
-0.00363349
-8.80608e-12
0.0242862
-0.00339167
-9.97522e-12
0.0244922
-0.00308428
-9.40108e-12
0.0247046
-0.00274978
-8.08257e-12
0.0249184
-0.00240804
-5.48507e-12
0.0251077
-0.00205781
-2.32564e-12
0.0252608
-0.00171692
8.04796e-13
0.0253696
-0.00139858
3.49343e-12
0.0254339
-0.00110764
5.46148e-12
0.0254781
-0.00084611
6.94031e-12
0.0255053
-0.000599669
6.92009e-12
0.0255042
-0.00035858
7.04648e-12
0.0254758
-0.000137559
7.04952e-12
0.0254374
6.09835e-05
7.08364e-12
0.0253882
0.000247335
6.25119e-12
0.0253284
0.000425807
5.39169e-12
0.0252586
0.000595141
4.59908e-12
0.0251797
0.00075683
3.87758e-12
0.0250923
0.000910628
3.19173e-12
0.0249958
0.00105656
2.47795e-12
0.0248919
0.00119466
1.72498e-12
0.0247796
0.00132506
9.42943e-13
0.0246611
0.00144771
1.9229e-13
0.0245359
0.00156308
-4.91679e-13
0.0244063
0.00167097
-1.0671e-12
0.024272
0.00177213
-1.84965e-12
0.0241351
0.001866
-1.55922e-12
0.0239949
0.00195349
-1.70057e-12
0.0238533
0.00203371
-2.00597e-12
0.0237099
0.00210772
-2.07907e-12
0.0235656
0.00217437
-2.08886e-12
0.0234214
0.00223473
-2.01447e-12
0.0232776
0.00228755
-1.91718e-12
0.0231359
0.00233355
-1.75583e-12
0.0229971
0.00237148
-1.68605e-12
0.0228627
0.00240159
-1.60023e-12
0.022734
0.00242213
-1.66359e-12
0.0226138
0.00243263
-1.69557e-12
0.0225033
0.00243046
-1.89549e-12
0.0224091
0.00241226
-2.33658e-12
0.0223331
0.00237481
-2.84416e-12
0.022269
0.00232985
-2.87517e-12
0.0222178
0.00227038
-3.99702e-12
0.0221673
0.00220902
-4.26415e-12
0.0221537
0.0021091
-4.86199e-12
0.0221961
0.00195865
-6.09123e-12
0.022312
0.00175381
-8.17259e-12
0.0224728
0.00151275
-1.22384e-11
0.0226822
0.00123257
-1.39866e-11
0.0229323
0.000923669
-1.49332e-11
0.023199
0.000606
-1.54548e-11
0.023457
0.000302714
-1.4737e-11
0.0236802
2.19518e-05
-1.38661e-11
-0.000209683
-1.00181e-11
0.0305884
0.0137204
-8.46937e-11
0.0316522
0.0119935
-6.55787e-11
0.0316203
0.0113297
-2.37209e-11
0.0315446
0.0106681
5.90429e-12
0.0314025
0.0100282
1.24711e-11
0.0312095
0.00937276
1.41285e-12
0.0310245
0.00866208
-1.02066e-11
0.030861
0.00789957
-1.71399e-11
0.030716
0.00711654
-2.03382e-11
0.0305837
0.00633578
-2.0409e-11
0.0304589
0.00557753
-1.85072e-11
0.0303324
0.0048511
-1.56705e-11
0.030197
0.00416191
-1.22232e-11
0.030053
0.00350895
-8.62607e-12
0.0299024
0.00289167
-8.3192e-12
0.0297458
0.00230706
-5.01727e-12
0.0295868
0.00175289
-3.76157e-12
0.0294213
0.00122673
-2.77295e-12
0.0292517
0.000726794
-1.82158e-12
0.0290716
0.000252756
-8.119e-13
0.02888
-0.000198876
3.28269e-13
0.0286782
-0.000629721
1.8213e-12
0.0284673
-0.00103586
3.41065e-12
0.0282488
-0.00141822
4.84627e-12
0.0280229
-0.00177673
5.77848e-12
0.0277933
-0.00211147
6.16248e-12
0.0275575
-0.00242159
5.96791e-12
0.0273201
-0.00270701
5.47044e-12
0.0270773
-0.00296742
4.66508e-12
0.0268343
-0.00320202
3.99853e-12
0.0265881
-0.00341283
3.21653e-12
0.026342
-0.00359791
2.75597e-12
0.0260965
-0.00376083
2.3774e-12
0.0258531
-0.003899
2.11059e-12
0.0256144
-0.00401633
1.89222e-12
0.0253817
-0.00410981
1.63723e-12
0.0251587
-0.0041833
1.41627e-12
0.0249447
-0.00423281
1.01871e-12
0.0247454
-0.00426208
5.05415e-13
0.0245616
-0.00426664
-1.94993e-13
0.0244005
-0.00424911
-1.02308e-12
0.0242672
-0.00420467
-2.12793e-12
0.0241656
-0.00413186
-2.18856e-12
0.0240691
-0.00402901
-3.32122e-12
0.024007
-0.00392443
-4.61518e-12
0.0239802
-0.0037982
-7.31164e-12
0.0239662
-0.00362638
-7.59548e-12
0.0240022
-0.00343498
-8.29397e-12
0.0241293
-0.00321952
-9.35791e-12
0.0243102
-0.00294528
-1.08394e-11
0.0245071
-0.0026166
-9.65449e-12
0.0247106
-0.00227165
-8.02575e-12
0.0249039
-0.00191521
-5.16233e-12
0.0250673
-0.00156115
-1.76942e-12
0.0251886
-0.00122377
1.44024e-12
0.0252644
-0.000912754
4.02656e-12
0.0253097
-0.000631271
6.17427e-12
0.0253429
-0.000377838
6.33797e-12
0.0253477
-0.0001286
6.60448e-12
0.0253222
0.00010083
6.90319e-12
0.0252795
0.000305324
7.25409e-12
0.0252294
0.000489854
6.46873e-12
0.0251673
0.000668814
5.49085e-12
0.0250968
0.000836599
4.55291e-12
0.0250186
0.000995995
3.69245e-12
0.0249328
0.00114798
2.84661e-12
0.0248387
0.00129252
1.98399e-12
0.0247367
0.00142901
1.11453e-12
0.0246275
0.00155735
2.81301e-13
0.0245121
0.00167743
-4.868e-13
0.0243918
0.00178962
-1.39909e-12
0.0242677
0.00189405
-1.38875e-12
0.0241406
0.00199096
-1.85383e-12
0.0240116
0.00208047
-2.44765e-12
0.0238812
0.00216266
-2.67714e-12
0.0237507
0.0022375
-2.81939e-12
0.0236201
0.00230497
-2.88305e-12
0.0234906
0.00236476
-2.88564e-12
0.0233623
0.00241669
-2.84259e-12
0.0232367
0.00246011
-2.78153e-12
0.0231153
0.0024944
-2.73027e-12
0.0229994
0.00251857
-2.72648e-12
0.0228922
0.00253083
-2.7955e-12
0.0227959
0.00252936
-3.06691e-12
0.0227172
0.00250847
-3.4819e-12
0.0226562
0.00247059
-3.88623e-12
0.0226091
0.00241976
-3.80473e-12
0.0225567
0.00237435
-5.31504e-12
0.0225209
0.00229714
-5.69012e-12
0.022541
0.00217785
-6.42825e-12
0.0226304
0.00200244
-7.90435e-12
0.0227783
0.00178279
-1.0599e-11
0.022971
0.00152758
-1.23234e-11
0.0232099
0.00123156
-1.41674e-11
0.0234796
0.000916846
-1.49071e-11
0.0237535
0.000603749
-1.44194e-11
0.0240089
0.000311043
-1.30457e-11
0.0242232
5.60017e-05
-1.0851e-11
0.0243816
-0.000160542
-8.70625e-12
-0.000331767
-6.13974e-12
0.030523
0.0114568
-6.14305e-11
0.0310874
0.0114438
-3.55078e-11
0.0311522
0.0113301
1.12231e-11
0.0313043
0.0105716
1.03378e-11
0.0314201
0.00994331
2.75765e-13
0.0314417
0.00935387
-1.84858e-11
0.0314436
0.00863995
-3.06569e-11
0.0314246
0.00788649
-3.28422e-11
0.0313843
0.00712355
-3.02055e-11
0.0313215
0.00637095
-2.54412e-11
0.0312422
0.00564024
-2.01163e-11
0.0311458
0.00494056
-1.53989e-11
0.0310322
0.00427427
-1.11784e-11
0.0309002
0.00364112
-6.83126e-12
0.0307546
0.00303882
-4.84081e-12
0.0305996
0.00246675
-2.79753e-12
0.0304372
0.00192302
-1.38313e-12
0.0302686
0.00140675
-3.78308e-13
0.0300931
0.000916262
3.92677e-13
0.0299095
0.000451384
1.1491e-12
0.0297123
1.36905e-05
1.65418e-12
0.0295091
-0.00041026
2.98651e-12
0.0292962
-0.000805792
4.18321e-12
0.0290742
-0.00117853
5.06874e-12
0.0288427
-0.00152799
5.66549e-12
0.0286021
-0.00185402
5.90292e-12
0.0283513
-0.00215593
5.7993e-12
0.0280932
-0.00243394
5.4993e-12
0.0278267
-0.00268812
5.13243e-12
0.0275568
-0.00291849
4.73876e-12
0.0272821
-0.003126
4.38373e-12
0.0270059
-0.00330992
4.06258e-12
0.0267286
-0.00347216
3.81495e-12
0.0264518
-0.00361213
3.58942e-12
0.0261772
-0.0037313
3.4208e-12
0.0259064
-0.00382988
3.20715e-12
0.0256407
-0.00390838
2.98351e-12
0.0253827
-0.00396697
2.66516e-12
0.0251343
-0.00400611
2.27621e-12
0.024899
-0.00402499
1.72114e-12
0.0246789
-0.00402385
1.00186e-12
0.0244803
-0.00400126
8.44101e-14
0.0243082
-0.00395696
-1.22637e-12
0.024167
-0.00388529
-2.37604e-12
0.0240309
-0.00378469
-2.59562e-12
0.023914
-0.00367983
-4.00526e-12
0.0238445
-0.00355565
-6.11006e-12
0.0238072
-0.00340197
-8.28024e-12
0.0237892
-0.00320507
-8.5884e-12
0.0238441
-0.00300457
-9.26059e-12
0.023982
-0.00276175
-1.02817e-11
0.0241547
-0.0024579
-1.19828e-11
0.024341
-0.00211372
-1.05794e-11
0.0245355
-0.00176324
-7.99952e-12
0.0247063
-0.00140068
-4.74345e-12
0.024842
-0.00104738
-1.31206e-12
0.0249373
-0.000719789
2.02092e-12
0.0249906
-0.000420962
4.17568e-12
0.0250325
-0.000156872
5.84074e-12
0.0250528
9.38295e-05
5.96037e-12
0.0250402
0.000331735
6.1751e-12
0.0249991
0.000545246
6.48266e-12
0.02495
0.000730284
5.84506e-12
0.0248931
0.000905528
5.00021e-12
0.0248267
0.0010717
4.01636e-12
0.0247537
0.00122868
3.03405e-12
0.0246734
0.00137808
2.06891e-12
0.0245869
0.0015196
1.14003e-12
0.0244942
0.00165284
2.47673e-13
0.0243956
0.0017777
-5.87911e-13
0.0242919
0.00189405
-1.05853e-12
0.0241836
0.00200207
-1.9354e-12
0.0240721
0.00210175
-2.4734e-12
0.0239579
0.00219342
-2.87128e-12
0.0238423
0.00227695
-3.17432e-12
0.023726
0.00235251
-3.39457e-12
0.0236102
0.00241968
-3.54316e-12
0.0234955
0.00247835
-3.63529e-12
0.0233837
0.00252757
-3.68731e-12
0.0232757
0.00256696
-3.73448e-12
0.0231739
0.00259473
-3.80104e-12
0.0230804
0.00260985
-3.96555e-12
0.0229996
0.00260834
-4.16693e-12
0.0229364
0.00258678
-4.87942e-12
0.0228934
0.00254624
-4.64665e-12
0.022853
0.00250135
-5.59292e-12
0.0228064
0.00245739
-5.77505e-12
0.0228061
0.00236487
-6.23483e-12
0.0228685
0.00221944
-7.41713e-12
0.0230018
0.0020219
-9.38421e-12
0.0231806
0.00179161
-1.17506e-11
0.0234061
0.00151709
-1.37123e-11
0.0236773
0.00121295
-1.47944e-11
0.0239631
0.000900298
-1.46558e-11
0.0242412
0.00059656
-1.35028e-11
0.0244861
0.000322451
-1.13621e-11
0.0246846
8.66043e-05
-8.86244e-12
0.0248239
-0.000103185
-6.27087e-12
0.0249114
-0.00025912
-4.59598e-12
-0.000382797
-2.89316e-12
0.0272133
0.009425
-1.65508e-10
0.0282706
0.0104295
1.3501e-11
0.029332
0.0103295
2.15705e-11
0.0299555
0.010001
1.14361e-12
0.0304011
0.00952735
-2.14825e-11
0.0307806
0.00897478
-4.16446e-11
0.0310719
0.00833174
-4.60819e-11
0.031288
0.00765024
-4.20096e-11
0.0314479
0.00695711
-3.38153e-11
0.0315463
0.00627074
-2.63717e-11
0.031587
0.00560351
-1.88724e-11
0.031578
0.00495943
-1.33328e-11
0.0315289
0.00433597
-8.87916e-12
0.0314467
0.00373659
-6.44669e-12
0.0313369
0.00316021
-2.34864e-12
0.0312085
0.00260834
-1.40609e-13
0.0310674
0.00208127
1.45405e-12
0.0309164
0.00157955
2.54168e-12
0.0307544
0.00110302
3.36597e-12
0.030581
0.000651471
4.05102e-12
0.0303975
0.000225333
4.96656e-12
0.0301954
-0.000180337
5.33012e-12
0.0299809
-0.000563627
5.83556e-12
0.0297522
-0.000923577
6.30397e-12
0.0295096
-0.00126095
6.55995e-12
0.0292537
-0.00157593
6.6119e-12
0.028985
-0.00186783
6.51393e-12
0.0287066
-0.00213713
6.34323e-12
0.0284182
-0.00238332
6.1355e-12
0.0281233
-0.00260731
5.92975e-12
0.0278221
-0.00280903
5.73416e-12
0.0275166
-0.00298961
5.49828e-12
0.02721
-0.00314881
5.30009e-12
0.0269011
-0.00328861
5.05415e-12
0.026594
-0.00340751
4.86767e-12
0.0262882
-0.00350902
4.64962e-12
0.0259851
-0.00359014
4.43809e-12
0.0256866
-0.00365487
4.17674e-12
0.0253941
-0.00370038
3.853e-12
0.0251094
-0.0037293
3.39471e-12
0.024838
-0.00373981
2.824e-12
0.0245807
-0.00373329
2.04188e-12
0.024344
-0.00370724
1.05446e-12
0.0241339
-0.00366338
-3.37912e-14
0.0239565
-0.00359476
-1.41985e-12
0.0237931
-0.00350341
-1.61012e-12
0.0236525
-0.00340243
-3.15459e-12
0.0235481
-0.00328952
-5.38626e-12
0.0234957
-0.00314689
-6.93001e-12
0.0234473
-0.00295811
-9.49243e-12
0.0234341
-0.00275197
-9.88333e-12
0.0235042
-0.00253441
-1.0567e-11
0.0236477
-0.00226819
-1.21369e-11
0.0238118
-0.00194123
-1.17096e-11
0.0239868
-0.00159069
-1.05613e-11
0.0241608
-0.00123432
-7.73855e-12
0.0243115
-0.000876325
-4.1784e-12
0.0244241
-0.000535652
-7.86479e-13
0.0244981
-0.000223262
2.08829e-12
0.0245453
5.64583e-05
3.95626e-12
0.0245817
0.000304375
4.21619e-12
0.0245888
0.000548777
4.59705e-12
0.0245617
0.00077001
5.2415e-12
0.0245193
0.000961356
4.99772e-12
0.0244694
0.00113268
4.03026e-12
0.0244096
0.00129749
2.99412e-12
0.024344
0.00145058
2.00085e-12
0.0242738
0.0015951
1.0546e-12
0.0241986
0.00173169
1.19332e-13
0.0241182
0.00186033
-8.24406e-13
0.0240326
0.00198041
-1.61231e-12
0.0239431
0.00209164
-2.32297e-12
0.0238503
0.00219397
-2.91057e-12
0.0237557
0.00228736
-3.38646e-12
0.0236601
0.00237192
-3.76837e-12
0.0235647
0.00244734
-4.07301e-12
0.0234707
0.00251336
-4.31489e-12
0.0233792
0.00256931
-4.51323e-12
0.0232923
0.00261412
-4.68707e-12
0.0232116
0.00264669
-4.87483e-12
0.0231393
0.00266514
-5.12038e-12
0.0230818
0.00266494
-5.42204e-12
0.0230415
0.0026421
-6.21282e-12
0.02302
0.00260264
-5.86159e-12
0.0229802
0.00257663
-7.01032e-12
0.0229604
0.00251004
-7.27677e-12
0.0230081
0.00239631
-7.74015e-12
0.0231259
0.00222789
-8.96335e-12
0.0232958
0.00202196
-1.11971e-11
0.0235078
0.00177423
-1.27209e-11
0.0237716
0.00148755
-1.42356e-11
0.0240635
0.00118195
-1.47417e-11
0.0243597
0.000874265
-1.40908e-11
0.0246349
0.000586858
-1.23219e-11
0.0248674
0.000333652
-9.84958e-12
0.0250463
0.000121558
-7.07784e-12
0.0251676
-4.837e-05
-4.69951e-12
0.0252388
-0.000180656
-2.85035e-12
0.0252729
-0.000296556
-1.66583e-12
-0.000387399
-1.20546e-12
0.0228901
0.0073099
-1.9667e-10
0.0248694
0.00851137
3.15103e-11
0.0264438
0.00881032
1.90052e-11
0.0277248
0.00873486
-1.48171e-11
0.0286777
0.00854818
-5.31667e-11
0.0294614
0.00815739
-6.17282e-11
0.0300731
0.00768762
-5.64972e-11
0.0305214
0.00716404
-4.53421e-11
0.0308304
0.00660565
-3.33651e-11
0.0310387
0.00603147
-2.27249e-11
0.031183
0.00545076
-1.54458e-11
0.0312734
0.00487538
-9.45306e-12
0.0313151
0.00430792
-6.25165e-12
0.0313196
0.00375346
-1.41296e-12
0.0312905
0.00321425
1.2621e-12
0.0312362
0.00269379
3.27153e-12
0.0311571
0.00219472
4.69907e-12
0.031058
0.00171754
5.7056e-12
0.0309378
0.00126352
6.32927e-12
0.0307964
0.000832143
6.76298e-12
0.0306374
0.000424136
7.19849e-12
0.0304556
3.93198e-05
7.38889e-12
0.0302561
-0.000325216
7.69836e-12
0.0300367
-0.000667457
7.84032e-12
0.0297998
-0.000988091
7.85916e-12
0.0295453
-0.00128758
7.78301e-12
0.0292755
-0.00156564
7.668e-12
0.0289921
-0.00182225
7.55437e-12
0.028697
-0.00205813
7.41964e-12
0.0283918
-0.0022725
7.28084e-12
0.0280793
-0.00246748
7.11203e-12
0.0277593
-0.0026415
6.9089e-12
0.0274366
-0.00279752
6.69461e-12
0.0271085
-0.00293372
6.46204e-12
0.0267801
-0.00305283
6.23264e-12
0.0264495
-0.00315371
6.02778e-12
0.0261189
-0.00323813
5.78681e-12
0.0257916
-0.00330568
5.56308e-12
0.0254669
-0.00335772
5.23535e-12
0.0251506
-0.00339345
4.86026e-12
0.024844
-0.00341472
4.35128e-12
0.02455
-0.00341977
3.69446e-12
0.024273
-0.00341016
2.90282e-12
0.0240136
-0.00338382
1.89369e-12
0.0237793
-0.00334104
7.94743e-13
0.0235722
-0.00327808
-7.01223e-13
0.0233812
-0.00319404
-1.23274e-12
0.0232083
-0.00310007
-2.45154e-12
0.0230692
-0.00299671
-4.57405e-12
0.0229848
-0.0028658
-6.49703e-12
0.0229299
-0.0026986
-9.16298e-12
0.022888
-0.00249644
-9.53537e-12
0.0229058
-0.00229179
-1.03381e-11
0.0230073
-0.00205536
-1.15699e-11
0.0231608
-0.00176308
-1.35722e-11
0.0233266
-0.001422
-1.22743e-11
0.0235023
-0.00107117
-1.03522e-11
0.0236644
-0.000713344
-7.38392e-12
0.0237969
-0.000363964
-3.93408e-12
0.0238925
-4.01946e-05
-1.21016e-12
0.0239483
0.000251151
1.90337e-12
0.0239999
0.000504263
2.77843e-12
0.0240292
0.000747579
2.87642e-12
0.0240223
0.000975783
3.00582e-12
0.0239883
0.00117556
3.22947e-12
0.0239495
0.00134476
2.55693e-12
0.0239034
0.00150394
1.81736e-12
0.0238518
0.00165241
9.00574e-13
0.0237958
0.0017912
-9.81805e-14
0.0237356
0.00192217
-1.08962e-12
0.0236711
0.00204472
-1.99706e-12
0.0236029
0.00215844
-2.78637e-12
0.0235314
0.00226305
-3.45116e-12
0.023458
0.00235791
-3.99675e-12
0.0233841
0.00244293
-4.44971e-12
0.0233107
0.00251724
-4.84432e-12
0.0232408
0.00258031
-5.18436e-12
0.0231749
0.00263114
-5.50507e-12
0.0231176
0.00266754
-5.83275e-12
0.0230697
0.00268918
-6.19106e-12
0.0230387
0.00268949
-6.62513e-12
0.0230315
0.00266328
-7.34046e-12
0.0230208
0.00264064
-7.5892e-12
0.023002
0.00261106
-7.84305e-12
0.0230373
0.00252848
-8.45181e-12
0.0231416
0.00238787
-9.52183e-12
0.0232984
0.00221366
-1.16063e-11
0.0234981
0.00199625
-1.3223e-11
0.0237489
0.00173331
-1.43893e-11
0.0240397
0.00144211
-1.48652e-11
0.024347
0.00113827
-1.44972e-11
0.0246468
0.000844163
-1.31589e-11
0.0249123
0.000576244
-1.09245e-11
0.0251292
0.000346609
-8.24723e-12
0.0252888
0.000158226
-5.6642e-12
0.0253965
6.98642e-06
-3.16701e-12
0.0254519
-0.000106605
-1.78767e-12
0.0254771
-0.000203941
-1.00389e-12
0.0254753
-0.000294569
-8.60723e-13
-0.000374828
-6.32664e-13
0.0192157
0.00563307
-2.17858e-10
0.0213387
0.00643405
3.05636e-11
0.023259
0.00689508
-8.29653e-13
0.024793
0.00714589
-4.30364e-11
0.0260959
0.00716605
-6.82685e-11
0.0271872
0.00700895
-6.95312e-11
0.0281029
0.00674762
-5.69326e-11
0.0288545
0.00641227
-4.07421e-11
0.029455
0.00602408
-2.64343e-11
0.0299199
0.00559442
-1.5555e-11
0.0302632
0.00513749
-6.32266e-12
0.0305119
0.00465971
-2.30975e-12
0.0306827
0.00417182
1.56685e-12
0.0307868
0.00368055
3.93135e-12
0.0308358
0.003194
5.89665e-12
0.0308414
0.0027182
7.05134e-12
0.0308124
0.00225668
7.7887e-12
0.0307549
0.00181206
8.2421e-12
0.0306736
0.00138652
8.49611e-12
0.0305676
0.000980713
8.63576e-12
0.0304395
0.000595747
8.76132e-12
0.0302859
0.000232318
8.8638e-12
0.0301081
-0.000110375
8.8902e-12
0.0299069
-0.000431602
8.87941e-12
0.0296835
-0.000731948
8.85498e-12
0.0294429
-0.00101209
8.84397e-12
0.0291826
-0.00127245
8.80364e-12
0.028909
-0.0015131
8.78448e-12
0.0286187
-0.00173499
8.70926e-12
0.0283176
-0.00193764
8.61476e-12
0.0280041
-0.00212268
8.45905e-12
0.0276827
-0.00228927
8.25938e-12
0.027354
-0.00243921
8.03027e-12
0.0270196
-0.00257168
7.78935e-12
0.0266822
-0.00268838
7.5463e-12
0.0263419
-0.00278884
7.30346e-12
0.0260016
-0.00287412
7.07523e-12
0.0256632
-0.00294455
6.7975e-12
0.0253278
-0.00300027
6.50408e-12
0.0249992
-0.00304234
6.1288e-12
0.0246783
-0.00307057
5.6696e-12
0.0243675
-0.00308566
5.09184e-12
0.0240688
-0.00308759
4.39249e-12
0.0237846
-0.00307605
3.53402e-12
0.0235179
-0.00305098
2.52062e-12
0.0232733
-0.00301106
1.36676e-12
0.0230547
-0.00295463
-8.27594e-14
0.0228542
-0.00287935
-6.74706e-13
0.0226704
-0.00279492
-1.90126e-12
0.0225183
-0.00270189
-3.86911e-12
0.02241
-0.00258253
-6.1232e-12
0.0223457
-0.00243272
-7.54209e-12
0.0222916
-0.00224721
-1.01988e-11
0.0222682
-0.00204429
-1.05283e-11
0.022318
-0.00183135
-1.12625e-11
0.0224499
-0.0015739
-1.22475e-11
0.0226056
-0.00125811
-1.38794e-11
0.0227754
-0.000911147
-1.28379e-11
0.022942
-0.000558413
-1.02346e-11
0.0230885
-0.000206275
-7.11546e-12
0.0231995
0.000125748
-3.7526e-12
0.0232692
0.000427221
-1.46226e-12
0.0233245
0.000690165
5.11518e-13
0.0233688
0.000930815
6.45512e-13
0.023385
0.00116096
8.62691e-13
0.0233667
0.00136632
9.97967e-13
0.0233384
0.00153759
1.23144e-12
0.0233058
0.00168949
3.71227e-13
0.0232669
0.00183303
-6.12722e-13
0.0232265
0.00196447
-1.59838e-12
0.0231845
0.00208684
-2.52705e-12
0.023142
0.00220065
-3.36513e-12
0.0230975
0.00230562
-4.10812e-12
0.0230522
0.00240037
-4.73238e-12
0.023007
0.00248435
-5.27312e-12
0.0229636
0.00255573
-5.76517e-12
0.0229252
0.00261364
-6.25756e-12
0.0228942
0.0026559
-6.70115e-12
0.0228738
0.00268077
-7.28504e-12
0.0228702
0.00268456
-7.75723e-12
0.0228808
0.00266738
-8.64031e-12
0.022872
0.0026595
-8.72442e-12
0.0228952
0.00260524
-9.12742e-12
0.0229963
0.00249463
-9.83904e-12
0.0231461
0.00235746
-1.11666e-11
0.0233321
0.00217303
-1.31512e-11
0.0235713
0.00193993
-1.44798e-11
0.0238582
0.00167014
-1.52148e-11
0.0241721
0.00137869
-1.51077e-11
0.0244905
0.00108573
-1.40441e-11
0.0247854
0.000809594
-1.20223e-11
0.0250403
0.000565808
-9.50652e-12
0.0252371
0.000360923
-6.77796e-12
0.0253814
0.000195824
-4.40351e-12
0.0254719
6.46303e-05
-2.48231e-12
0.025518
-3.69603e-05
-1.35413e-12
0.0255433
-0.000126107
-7.90787e-13
0.0255526
-0.000208978
-7.58916e-13
0.0255409
-0.000278897
-7.30521e-13
-0.000349628
-7.67028e-13
0.0170705
0.00452636
-2.31917e-10
0.0189153
0.00460751
2.5558e-11
0.0206221
0.00516514
-1.18165e-11
0.0221399
0.00555379
-5.14359e-11
0.0234681
0.00574619
-6.67074e-11
0.0246256
0.00577529
-6.10479e-11
0.0256324
0.00569395
-4.58535e-11
0.0265052
0.00552562
-2.92003e-11
0.0272545
0.00529085
-1.53378e-11
0.0278933
0.00499914
-5.18634e-12
0.0284344
0.0046623
1.28752e-12
0.0288743
0.0042922
5.79247e-12
0.0292257
0.00389522
8.34416e-12
0.0294954
0.00348528
1.00101e-11
0.0296976
0.00306625
1.03888e-11
0.0298426
0.00264894
1.04447e-11
0.0299327
0.0022368
1.02457e-11
0.0299767
0.00183494
9.93446e-12
0.029974
0.00144658
9.60441e-12
0.0299304
0.00107374
9.29194e-12
0.0298502
0.000718587
9.14235e-12
0.0297364
0.000381745
8.95839e-12
0.0295941
6.49973e-05
8.93796e-12
0.0294247
-0.000231437
9.05625e-12
0.0292295
-0.000507798
9.13899e-12
0.0290126
-0.000765438
9.22825e-12
0.0287734
-0.00100454
9.30033e-12
0.0285174
-0.00122636
9.37735e-12
0.0282459
-0.00143094
9.40599e-12
0.0279622
-0.00161927
9.37584e-12
0.0276686
-0.00179118
9.29341e-12
0.0273655
-0.00194805
9.12848e-12
0.0270545
-0.00208865
8.93895e-12
0.0267359
-0.00221543
8.7368e-12
0.0264125
-0.00232646
8.5175e-12
0.0260828
-0.00242464
8.27752e-12
0.0257504
-0.0025075
8.09813e-12
0.0254149
-0.00257836
7.77501e-12
0.0250804
-0.00263477
7.51268e-12
0.0247495
-0.00268064
7.16423e-12
0.0244237
-0.00271372
6.73537e-12
0.0241066
-0.00273693
6.25222e-12
0.023799
-0.0027484
5.61143e-12
0.0235048
-0.00274975
4.864e-12
0.023226
-0.00273951
3.94395e-12
0.0229645
-0.00271767
2.91203e-12
0.0227249
-0.00268352
1.74557e-12
0.0225068
-0.00263376
3.66202e-13
0.0223046
-0.00256832
-3.11588e-13
0.0221154
-0.00249322
-1.28313e-12
0.021953
-0.00240876
-3.42034e-12
0.0218243
-0.00230049
-5.2558e-12
0.0217342
-0.00216283
-7.10024e-12
0.021671
-0.00199732
-9.73739e-12
0.0216165
-0.00179798
-1.00892e-11
0.0216184
-0.00159845
-1.08895e-11
0.0216974
-0.00136531
-1.21886e-11
0.0218293
-0.00108144
-1.44076e-11
0.0219825
-0.000748662
-1.37001e-11
0.0221423
-0.00040737
-1.22038e-11
0.0222977
-5.79854e-05
-9.42966e-12
0.0224187
0.000277323
-6.82701e-12
0.0225058
0.000584199
-4.40137e-12
0.022568
0.000854562
-2.65597e-12
0.0226269
0.00109341
-1.11146e-12
0.0226698
0.00131556
-1.02889e-12
0.0226777
0.00152317
-9.82839e-13
0.0226627
0.00170067
-1.09288e-12
0.0226459
0.00184694
-1.58098e-12
0.0226261
0.00198152
-2.25682e-12
0.022604
0.00210557
-3.09896e-12
0.0225808
0.00221845
-3.97733e-12
0.0225581
0.00232233
-4.79959e-12
0.0225356
0.00241512
-5.55341e-12
0.022517
0.00249531
-6.25179e-12
0.0225019
0.00256107
-6.85482e-12
0.0224949
0.00260973
-7.6148e-12
0.0225001
0.0026384
-8.07856e-12
0.0225111
0.00265262
-9.1506e-12
0.0225354
0.00264728
-9.25122e-12
0.0225617
0.00262297
-9.68282e-12
0.0226567
0.00254966
-1.05229e-11
0.0227957
0.00244721
-1.18005e-11
0.0229636
0.00230134
-1.32733e-11
0.0231894
0.00210126
-1.4778e-11
0.023468
0.00185834
-1.55636e-11
0.0237858
0.00158763
-1.57932e-11
0.0241158
0.00130247
-1.5042e-11
0.0244389
0.00102547
-1.34068e-11
0.0247285
0.000771975
-1.10157e-11
0.0249685
0.000554057
-8.30043e-12
0.0251549
0.000374022
-5.80173e-12
0.0252849
0.000230398
-3.64835e-12
0.0253698
0.000116845
-2.18426e-12
0.025416
2.64398e-05
-1.29824e-12
0.0254454
-5.64289e-05
-9.22664e-13
0.0254602
-0.000131817
-8.16452e-13
0.0254572
-0.000198324
-8.73204e-13
0.0254449
-0.000258571
-9.56092e-13
-0.000319621
-9.85802e-13
0.0174795
0.00384141
-2.49302e-10
0.0182581
0.00385783
2.00841e-11
0.0192948
0.00409778
-1.20416e-11
0.0203605
0.00441422
-3.87533e-11
0.0214026
0.00462638
-4.59609e-11
0.022401
0.00472582
-3.86133e-11
0.023346
0.00473414
-2.60403e-11
0.0242177
0.00467208
-1.25166e-11
0.0250167
0.00454256
-3.09302e-12
0.0257359
0.00435633
4.41375e-12
0.0263809
0.00411656
9.30523e-12
0.0269463
0.00383653
1.24545e-11
0.0274324
0.00352244
1.40567e-11
0.0278419
0.00318627
1.45296e-11
0.0281722
0.00283531
1.41288e-11
0.0284338
0.00247751
1.32407e-11
0.0286213
0.00212009
1.20964e-11
0.028746
0.00176679
1.09442e-11
0.0288099
0.00142352
9.92558e-12
0.0288206
0.0010917
9.10511e-12
0.0287901
0.000774783
8.58134e-12
0.0287183
0.000473429
8.25844e-12
0.0286184
0.00018852
8.16559e-12
0.0284895
-7.91569e-05
8.31983e-12
0.0283342
-0.000327958
8.50329e-12
0.0281553
-0.000559465
8.75656e-12
0.027952
-0.00077489
8.99067e-12
0.0277287
-0.000974359
9.22421e-12
0.0274874
-0.00115937
9.4082e-12
0.0272289
-0.00132945
9.52463e-12
0.0269589
-0.00148575
9.59122e-12
0.0266738
-0.00162824
9.55435e-12
0.0263791
-0.00175711
9.48495e-12
0.0260751
-0.00187335
9.37645e-12
0.0257646
-0.00197615
9.25878e-12
0.0254447
-0.00206771
9.02292e-12
0.0251182
-0.00214619
9.02236e-12
0.0247906
-0.00221464
8.72699e-12
0.0244674
-0.00227247
8.34391e-12
0.0241553
-0.0023207
8.01656e-12
0.023854
-0.00236037
7.45636e-12
0.0235639
-0.00238973
6.97397e-12
0.0232852
-0.00241118
6.45946e-12
0.0230189
-0.00242164
5.8057e-12
0.022762
-0.00242438
4.93536e-12
0.0225182
-0.00241507
4.04165e-12
0.0222808
-0.00239673
2.96858e-12
0.0220556
-0.00236461
1.85502e-12
0.0218407
-0.00232061
5.98951e-13
0.021632
-0.00226015
-9.89202e-14
0.0214303
-0.00219268
-1.49669e-12
0.0212493
-0.00211553
-3.03369e-12
0.0210968
-0.00201537
-4.56799e-12
0.0209745
-0.0018898
-6.77866e-12
0.0208984
-0.00174154
-8.009e-12
0.0208256
-0.00155603
-1.05252e-11
0.020792
-0.00136308
-1.09127e-11
0.0208278
-0.00115175
-1.17606e-11
0.0209396
-0.000899481
-1.33328e-11
0.0210758
-0.000589717
-1.42399e-11
0.0212321
-0.000258199
-1.38851e-11
0.0213853
8.19652e-05
-1.20612e-11
0.0215195
0.000412177
-9.16364e-12
0.0216282
0.000719856
-7.20673e-12
0.0217046
0.000992049
-4.3178e-12
0.0217692
0.00123267
-3.38733e-12
0.0218306
0.00144581
-3.30772e-12
0.0218752
0.00164516
-3.24979e-12
0.0218887
0.00182408
-3.27161e-12
0.0218959
0.00197003
-3.15864e-12
0.0219048
0.00209382
-3.96502e-12
0.0219113
0.00220837
-4.82117e-12
0.0219231
0.00230932
-5.66499e-12
0.0219385
0.00239602
-6.52973e-12
0.0219617
0.00246964
-7.40101e-12
0.0219943
0.00252285
-8.12998e-12
0.0220344
0.0025626
-9.43383e-12
0.0220708
0.00259334
-9.63909e-12
0.0221278
0.00258522
-1.01471e-11
0.0222229
0.00253714
-1.08887e-11
0.0223502
0.00247555
-1.20682e-11
0.0225002
0.00237767
-1.32959e-11
0.0226998
0.00221376
-1.51954e-11
0.0229582
0.00200811
-1.60499e-11
0.0232591
0.00176233
-1.65068e-11
0.0235856
0.00149453
-1.61562e-11
0.0239202
0.00122118
-1.49321e-11
0.0242297
0.000963647
-1.28094e-11
0.0245025
0.000734308
-1.02421e-11
0.0247203
0.000541488
-7.58848e-12
0.0248874
0.000384761
-5.26948e-12
0.0250043
0.000259446
-3.49959e-12
0.0250798
0.000160701
-2.30613e-12
0.0251259
8.12577e-05
-1.84655e-12
0.0251565
4.66057e-06
-1.82856e-12
0.025172
-6.36434e-05
-1.41613e-12
0.0251736
-0.000126355
-1.29977e-12
0.0251664
-0.00018271
-1.08062e-12
0.0251542
-0.00023757
-1.069e-12
-0.000290787
-1.09375e-12
0.0167145
0.0030364
-2.26966e-10
0.0175906
0.00302099
1.63271e-11
0.0183638
0.00331083
5.42441e-12
0.0191054
0.00361148
-1.51516e-11
0.0198614
0.00381594
-1.59896e-11
0.0206441
0.00392526
-1.22978e-11
0.0214446
0.00395924
-4.54271e-12
0.0222415
0.00393402
9.9707e-13
0.0230101
0.00385406
6.13871e-12
0.0237367
0.00372203
9.91898e-12
0.0244045
0.00354327
1.27295e-11
0.0250087
0.00332391
1.47279e-11
0.0255384
0.00307287
1.58679e-11
0.0259954
0.00279782
1.60508e-11
0.0263756
0.0025078
1.5347e-11
0.0266856
0.00220889
1.40036e-11
0.0269271
0.00190818
1.23342e-11
0.0271071
0.00160962
1.06373e-11
0.0272333
0.00131759
9.14793e-12
0.0273089
0.00103441
7.97337e-12
0.0273441
0.000762172
7.17759e-12
0.0273383
0.000502048
6.75888e-12
0.0272978
0.000254239
6.43581e-12
0.027225
1.99423e-05
6.95502e-12
0.0271182
-0.0001979
7.22037e-12
0.0269832
-0.000401721
7.55992e-12
0.026818
-0.000591422
7.94149e-12
0.0266283
-0.000767237
8.32086e-12
0.0264167
-0.000930606
8.70304e-12
0.0261836
-0.00108094
8.98584e-12
0.0259368
-0.00121986
9.26572e-12
0.0256762
-0.00134665
9.40147e-12
0.0254082
-0.0014627
9.54569e-12
0.0251315
-0.00156776
9.59801e-12
0.0248514
-0.00166289
9.5954e-12
0.0245765
-0.00174785
9.62916e-12
0.02431
-0.00182427
9.30265e-12
0.0240531
-0.0018914
9.19915e-12
0.0237988
-0.00195021
9.01292e-12
0.0235491
-0.002
8.6677e-12
0.0232976
-0.00204141
8.3542e-12
0.0230536
-0.00207397
7.89162e-12
0.02281
-0.00209913
7.16421e-12
0.0225656
-0.00211495
6.52761e-12
0.0223172
-0.0021226
5.75536e-12
0.0220634
-0.0021208
4.90279e-12
0.0218062
-0.00210968
3.99066e-12
0.0215467
-0.00208933
2.95953e-12
0.0212944
-0.00205842
1.96197e-12
0.0210469
-0.0020165
7.63714e-13
0.0208107
-0.00196148
1.33178e-13
0.0205845
-0.00190227
-1.36994e-12
0.0203852
-0.00183016
-2.36181e-12
0.0202153
-0.00173917
-4.27892e-12
0.0200771
-0.00162599
-5.58789e-12
0.0199846
-0.0014911
-7.45568e-12
0.0199117
-0.00132417
-9.95506e-12
0.0198655
-0.00113801
-1.03291e-11
0.0198729
-0.000944182
-1.11031e-11
0.0199554
-0.000713739
-1.24519e-11
0.0200859
-0.000432483
-1.47139e-11
0.0202389
-0.000114683
-1.48207e-11
0.0204018
0.000212199
-1.32347e-11
0.0205545
0.000537196
-1.1288e-11
0.0206849
0.000840999
-8.53118e-12
0.0207927
0.00111529
-7.067e-12
0.0208796
0.00135455
-5.69781e-12
0.0209622
0.00156332
-5.12021e-12
0.0210399
0.001751
-5.11055e-12
0.0210979
0.00192032
-5.20992e-12
0.0211342
0.00206775
-5.50098e-12
0.0211736
0.00218211
-6.14643e-12
0.0212151
0.00227806
-6.84175e-12
0.0212688
0.00235615
-7.83541e-12
0.0213289
0.00241794
-8.77607e-12
0.0213892
0.00247108
-9.66794e-12
0.0214566
0.00249996
-1.06921e-11
0.0215824
0.00247215
-1.10269e-11
0.0217372
0.00243253
-1.19637e-11
0.0218898
0.00238347
-1.31645e-11
0.0220905
0.0022665
-1.51565e-11
0.0223537
0.00210079
-1.62586e-11
0.0226562
0.0018916
-1.71629e-11
0.0229934
0.00164865
-1.71705e-11
0.023338
0.00139104
-1.63319e-11
0.0236747
0.00113491
-1.46871e-11
0.0239738
0.000899591
-1.23518e-11
0.0242298
0.000695226
-9.75869e-12
0.0244265
0.000526403
-7.29272e-12
0.0245745
0.000390625
-5.26224e-12
0.0246754
0.000281481
-3.81663e-12
0.0247403
0.000195308
-2.72278e-12
0.0247774
0.000124185
-1.84593e-12
0.024801
5.5635e-05
-1.88178e-12
0.0248089
-6.44087e-06
-2.02838e-12
0.0248055
-6.44373e-05
-1.72245e-12
0.0247897
-0.000117147
-1.50805e-12
0.0247674
-0.000167564
-1.48695e-12
0.0247393
-0.000215074
-1.23778e-12
-0.000261768
-1.21303e-12
0.0175001
0.00241957
-1.01148e-10
0.0179031
0.00266131
3.75028e-11
0.0182897
0.00290853
2.22001e-11
0.018685
0.00315687
9.01086e-12
0.0191184
0.00333949
5.11589e-12
0.0196327
0.00342063
8.98511e-12
0.0202179
0.00343037
9.25677e-12
0.0208495
0.00338455
9.40339e-12
0.0214928
0.00329581
9.28771e-12
0.0221218
0.00316675
9.50228e-12
0.0227183
0.0030049
1.03441e-11
0.0232682
0.00281486
1.16018e-11
0.0237648
0.00260311
1.2778e-11
0.0242053
0.00237559
1.33662e-11
0.0245907
0.00213735
1.31214e-11
0.0249209
0.00189347
1.21156e-11
0.0252007
0.00164739
1.06196e-11
0.0254287
0.001403
8.96725e-12
0.0256108
0.00116207
7.44883e-12
0.025745
0.000927495
6.24704e-12
0.0258358
0.000699886
5.43334e-12
0.0258839
0.000481286
4.98917e-12
0.025889
0.000271669
4.9745e-12
0.0258581
7.189e-05
4.76415e-12
0.0257895
-0.000115766
5.24869e-12
0.0256934
-0.000291079
5.83536e-12
0.0255676
-0.000454458
6.41144e-12
0.0254202
-0.000606305
6.90687e-12
0.0252537
-0.00074716
7.48342e-12
0.0250732
-0.000877545
7.92929e-12
0.0248861
-0.000998201
8.37747e-12
0.0246934
-0.00110976
8.71437e-12
0.0244991
-0.00121265
8.97425e-12
0.0243042
-0.00130715
9.28214e-12
0.0241095
-0.00139324
9.52629e-12
0.0239146
-0.00147159
9.61978e-12
0.0237168
-0.00154204
9.63044e-12
0.023515
-0.00160495
9.61484e-12
0.0233066
-0.00165989
9.42612e-12
0.0230882
-0.00170737
9.16391e-12
0.0228579
-0.00174698
8.7724e-12
0.0226157
-0.00177899
8.3193e-12
0.0223584
-0.00180322
7.69362e-12
0.0220847
-0.00181994
7.20348e-12
0.0218027
-0.00182854
6.49381e-12
0.0215134
-0.00183124
5.61489e-12
0.0212275
-0.00182599
4.72722e-12
0.0209478
-0.00181506
3.76557e-12
0.0206788
-0.00179506
2.80546e-12
0.0204246
-0.00176842
1.81766e-12
0.0201882
-0.00173018
8.12996e-13
0.019963
-0.00168337
1.73239e-13
0.0197582
-0.00163046
-8.8891e-13
0.0195741
-0.00156527
-2.13223e-12
0.0194144
-0.00148159
-3.39232e-12
0.0192867
-0.00138084
-5.16112e-12
0.0191971
-0.00125652
-6.82802e-12
0.0191362
-0.00110596
-9.33784e-12
0.019098
-0.000929917
-9.70278e-12
0.0191109
-0.000750704
-1.04588e-11
0.0191958
-0.000538519
-1.1889e-11
0.0193359
-0.000281816
-1.46191e-11
0.0195025
2.22559e-05
-1.5377e-11
0.0196845
0.000337825
-1.46735e-11
0.0198624
0.000655278
-1.2894e-11
0.0200255
0.00095471
-1.12139e-11
0.0201638
0.00122771
-9.3104e-12
0.0202776
0.00146603
-7.96151e-12
0.020378
0.00167024
-7.82472e-12
0.0204724
0.00184948
-7.69129e-12
0.0205608
0.00200188
-7.76277e-12
0.0206332
0.00213172
-7.99876e-12
0.0206969
0.00223375
-8.49094e-12
0.0207557
0.00231304
-9.98948e-12
0.0208198
0.00236583
-1.03071e-11
0.0209249
0.00237884
-1.10811e-11
0.0210736
0.00235437
-1.25917e-11
0.021216
0.00233274
-1.30012e-11
0.0213834
0.00226253
-1.43675e-11
0.021616
0.00214094
-1.63573e-11
0.021893
0.00197163
-1.7464e-11
0.0222072
0.00176325
-1.80034e-11
0.0225483
0.00152648
-1.77734e-11
0.0228885
0.00128155
-1.65737e-11
0.0232139
0.00104442
-1.45929e-11
0.0234949
0.000832597
-1.21274e-11
0.0237286
0.000652183
-9.6104e-12
0.0239048
0.000505769
-7.38966e-12
0.0240326
0.000388738
-5.63093e-12
0.0241172
0.000294454
-4.39781e-12
0.0241674
0.00021824
-3.57777e-12
0.024193
0.000154745
-3.12653e-12
0.0242063
9.57434e-05
-2.63314e-12
0.0242025
3.99279e-05
-2.594e-12
0.0241896
-1.32423e-05
-2.44675e-12
0.0241679
-6.22e-05
-2.45534e-12
0.0241398
-0.000107948
-1.83907e-12
0.0241053
-0.000152057
-1.61753e-12
0.0240657
-0.00019283
-1.24485e-12
-0.000233421
-1.17494e-12
0.0175379
0.00195424
4.62032e-11
0.017903
0.0023378
3.92442e-11
0.0181908
0.00260465
3.23655e-11
0.0184634
0.00285939
2.89532e-11
0.0187672
0.00303644
2.20624e-11
0.019137
0.00309954
1.96969e-11
0.0195832
0.0030663
1.51459e-11
0.0200794
0.00297829
9.90097e-12
0.0205931
0.00285206
5.60364e-12
0.0210984
0.00269966
3.12103e-12
0.0215885
0.00253044
2.63189e-12
0.0220561
0.00234973
3.69029e-12
0.0224994
0.00216151
5.44454e-12
0.022914
0.00196858
7.02897e-12
0.0232953
0.00177246
7.88888e-12
0.0236376
0.00157473
7.86815e-12
0.0239364
0.00137661
7.14146e-12
0.0241869
0.00117957
6.04736e-12
0.0243881
0.000984744
4.92675e-12
0.0245392
0.000793607
4.02325e-12
0.0246411
0.000607125
3.44214e-12
0.0246977
0.000426633
3.18243e-12
0.0247104
0.000252839
3.22347e-12
0.0246871
8.63141e-05
3.35449e-12
0.0246325
-7.15963e-05
3.74755e-12
0.024555
-0.000219702
4.25598e-12
0.02446
-0.000358008
4.79919e-12
0.0243535
-0.000486782
5.41283e-12
0.0242404
-0.000606323
5.94829e-12
0.0241213
-0.000717713
6.55855e-12
0.0239974
-0.000820928
7.18109e-12
0.0238665
-0.000917033
7.82109e-12
0.0237303
-0.00100582
8.50872e-12
0.023585
-0.00108818
8.93742e-12
0.0234287
-0.00116372
9.36809e-12
0.0232585
-0.00123299
9.68567e-12
0.0230722
-0.00129541
9.88082e-12
0.0228681
-0.00135152
9.94239e-12
0.0226465
-0.00140079
9.84591e-12
0.0224109
-0.00144366
9.62189e-12
0.0221625
-0.00147992
9.26624e-12
0.0219016
-0.00151022
8.73953e-12
0.0216379
-0.00153387
8.19092e-12
0.0213756
-0.00155267
7.36024e-12
0.021119
-0.00156518
6.653e-12
0.0208671
-0.00157264
5.91125e-12
0.0206213
-0.00157372
5.15514e-12
0.0203799
-0.00156924
4.33307e-12
0.0201445
-0.00155811
3.5028e-12
0.0199152
-0.00154023
2.67345e-12
0.0196934
-0.00151483
1.77062e-12
0.0194819
-0.00147995
1.17208e-12
0.0192767
-0.0014384
3.53643e-13
0.019088
-0.00138952
-5.83493e-13
0.0189198
-0.00132848
-1.70151e-12
0.018778
-0.00125233
-2.97047e-12
0.0186675
-0.00116003
-4.51816e-12
0.0185982
-0.00104654
-6.29718e-12
0.0185641
-0.000907057
-8.7711e-12
0.0185438
-0.000737957
-9.02929e-12
0.0185765
-0.000569326
-9.84773e-12
0.0186682
-0.000371773
-1.16883e-11
0.018822
-0.000134784
-1.47958e-11
0.0190009
0.00015557
-1.54473e-11
0.0191974
0.00045978
-1.55465e-11
0.019391
0.000768785
-1.46785e-11
0.0195689
0.00106237
-1.295e-11
0.0197228
0.00132859
-1.18212e-11
0.0198548
0.00156042
-1.0241e-11
0.0199704
0.00175524
-9.88445e-12
0.0200753
0.00191747
-1.01769e-11
0.0201778
0.00204944
-1.02841e-11
0.0202765
0.00214982
-1.0707e-11
0.0203803
0.00221998
-1.13933e-11
0.0204963
0.00225145
-1.28608e-11
0.0206309
0.00224321
-1.28015e-11
0.0207731
0.0022065
-1.40273e-11
0.0209598
0.00213076
-1.59463e-11
0.0211978
0.00200191
-1.76285e-11
0.0214774
0.00183134
-1.84996e-11
0.0217918
0.0016248
-1.87794e-11
0.0221219
0.00139735
-1.83092e-11
0.0224425
0.00116735
-1.69553e-11
0.0227368
0.000950598
-1.4887e-11
0.0229827
0.000761542
-1.24511e-11
0.0231792
0.000603756
-1.00722e-11
0.023322
0.00047776
-8.02629e-12
0.0234223
0.000377373
-6.48273e-12
0.0234845
0.000297077
-5.32342e-12
0.0235205
0.000229731
-4.56328e-12
0.0235344
0.00017357
-4.13383e-12
0.0235361
0.000123199
-3.35073e-12
0.0235233
7.39029e-05
-3.26234e-12
0.0235027
2.67806e-05
-3.08705e-12
0.0234726
-1.80085e-05
-2.53835e-12
0.0234374
-5.93628e-05
-2.51422e-12
0.0233953
-9.87936e-05
-2.43199e-12
0.0233518
-0.000136287
-1.51957e-12
0.023307
-0.000171202
-1.15018e-12
-0.000205969
-1.07129e-12
0.0168031
0.00134811
1.14991e-10
0.0174238
0.00181135
9.62191e-11
0.0178296
0.00221031
5.31668e-11
0.0181597
0.00252403
3.56402e-11
0.0185031
0.00271746
2.87866e-11
0.0188893
0.00277911
1.97672e-11
0.0193076
0.0027302
1.21745e-11
0.0197486
0.0026128
4.03006e-12
0.0201933
0.00245853
-2.3769e-12
0.0206257
0.00228779
-6.22795e-12
0.0210432
0.00211299
-7.37774e-12
0.0214442
0.00193997
-6.32196e-12
0.0218308
0.00177088
-3.94885e-12
0.0222004
0.00160539
-1.27461e-12
0.0225458
0.00144312
8.97857e-13
0.0228597
0.00128289
2.17355e-12
0.0231343
0.00112423
2.58127e-12
0.0233642
0.000966876
2.41268e-12
0.0235467
0.00081101
2.00907e-12
0.0236813
0.000657401
1.65469e-12
0.0237705
0.000506866
1.48599e-12
0.0238201
0.000360522
1.52444e-12
0.0238352
0.000219275
1.70628e-12
0.0238242
8.34712e-05
1.95857e-12
0.0237945
-4.58947e-05
2.27159e-12
0.0237507
-0.00016788
2.71147e-12
0.0236999
-0.000282546
3.20947e-12
0.023641
-0.00038988
3.76087e-12
0.0235756
-0.000490046
4.3546e-12
0.0235009
-0.000583808
5.0679e-12
0.0234137
-0.00067138
5.82015e-12
0.0233121
-0.000753327
6.71371e-12
0.0231931
-0.000829635
7.55244e-12
0.0230548
-0.000900715
8.33352e-12
0.0228978
-0.000966256
9.02646e-12
0.0227228
-0.00102652
9.57233e-12
0.0225317
-0.00108126
9.93499e-12
0.022329
-0.00113059
1.01104e-11
0.022117
-0.00117452
1.00681e-11
0.021899
-0.00121306
9.8631e-12
0.0216793
-0.0012463
9.47184e-12
0.0214576
-0.00127445
8.94661e-12
0.0212372
-0.00129738
8.35561e-12
0.0210161
-0.00131558
7.64033e-12
0.0207941
-0.00132877
6.91695e-12
0.0205718
-0.0013371
6.18296e-12
0.0203471
-0.00134057
5.41756e-12
0.0201221
-0.00133886
4.65892e-12
0.0198952
-0.00133219
3.90994e-12
0.0196707
-0.00131968
3.18389e-12
0.0194471
-0.00130167
2.45183e-12
0.0192329
-0.0012765
1.68661e-12
0.0190241
-0.0012439
1.18696e-12
0.018829
-0.00120674
4.02122e-13
0.0186514
-0.00116031
-3.88535e-13
0.0184929
-0.00110356
-1.336e-12
0.0183653
-0.00103358
-2.52182e-12
0.018266
-0.000949047
-4.03764e-12
0.0182071
-0.000844257
-5.67077e-12
0.0181858
-0.0007155
-8.37364e-12
0.0181765
-0.000554319
-8.72822e-12
0.0182111
-0.000396067
-9.68986e-12
0.0182963
-0.000212307
-1.11015e-11
0.0184416
1.0966e-05
-1.38013e-11
0.0186195
0.000276353
-1.59034e-11
0.0188144
0.000566307
-1.7175e-11
0.0190059
0.000862479
-1.65418e-11
0.0191822
0.00114475
-1.54074e-11
0.0193369
0.00139724
-1.4023e-11
0.0194721
0.00161262
-1.30819e-11
0.0195931
0.00178667
-1.29951e-11
0.0197094
0.00192103
-1.31178e-11
0.0198273
0.00201739
-1.34437e-11
0.0199572
0.0020716
-1.43067e-11
0.0201101
0.00207682
-1.46419e-11
0.0202676
0.0020549
-1.55362e-11
0.0204551
0.0019813
-1.69202e-11
0.0206823
0.00185471
-1.83605e-11
0.0209437
0.00168442
-1.94438e-11
0.0212321
0.00148244
-1.97379e-11
0.0215269
0.00126531
-1.91218e-11
0.0218149
0.00105006
-1.76838e-11
0.0220709
0.000853703
-1.56272e-11
0.0222835
0.000685286
-1.33258e-11
0.0224491
0.000548303
-1.11255e-11
0.0225686
0.000440117
-9.26046e-12
0.0226476
0.000355239
-7.78185e-12
0.0226976
0.000287111
-6.71391e-12
0.0227249
0.000229989
-5.74165e-12
0.0227329
0.000181279
-5.35043e-12
0.0227304
0.000137151
-4.44146e-12
0.0227238
9.50498e-05
-3.97293e-12
0.0227099
5.47559e-05
-3.52373e-12
0.0226867
1.5827e-05
-3.37828e-12
0.022659
-2.06894e-05
-2.86891e-12
0.0226362
-5.70149e-05
-2.74093e-12
0.0226121
-8.99043e-05
-1.86254e-12
0.0225884
-0.000122321
-1.57402e-12
0.0225626
-0.000150909
-1.06855e-12
-0.000179901
-9.13816e-13
0.0174386
0.00110677
1.39703e-10
0.0177296
0.00162408
1.16545e-10
0.0179823
0.00198356
5.71731e-11
0.0182497
0.00226778
2.71905e-11
0.0185665
0.00243748
1.47902e-11
0.0189363
0.00247304
6.26242e-12
0.0193359
0.0023984
-7.6942e-13
0.0197428
0.00225544
-8.42462e-12
0.0201415
0.00208245
-1.12103e-11
0.0205271
0.00190452
-1.54026e-11
0.020898
0.00173374
-1.76486e-11
0.021255
0.00157381
-1.51271e-11
0.0215959
0.00142514
-1.17936e-11
0.0219189
0.0012855
-1.14627e-11
0.0222224
0.00115283
-6.36206e-12
0.022499
0.00102449
-3.78059e-12
0.0227408
0.000898618
-2.19006e-12
0.0229385
0.000774303
-1.36532e-12
0.0230884
0.000651131
-9.60662e-13
0.0231907
0.000529553
-6.69236e-13
0.023252
0.00041016
-3.26758e-13
0.0232815
0.000293959
8.81993e-14
0.0232885
0.000181632
4.92119e-13
0.023282
7.37106e-05
8.40573e-13
0.023267
-2.94889e-05
1.18907e-12
0.0232468
-0.000127686
1.5017e-12
0.023221
-0.000220604
1.87976e-12
0.0231863
-0.000308209
2.35397e-12
0.0231399
-0.000390592
2.94116e-12
0.0230778
-0.000468235
3.69667e-12
0.0229978
-0.000541333
4.61699e-12
0.022899
-0.000610215
5.63389e-12
0.0227813
-0.000674866
6.69325e-12
0.0226472
-0.000735296
7.74059e-12
0.0224984
-0.00079156
8.62956e-12
0.0223382
-0.000843297
9.36272e-12
0.0221684
-0.000890695
9.89398e-12
0.0219917
-0.000933305
1.01912e-11
0.0218094
-0.000971454
1.02307e-11
0.0216221
-0.00100483
1.00622e-11
0.0214304
-0.00103368
9.69823e-12
0.0212331
-0.001058
9.17593e-12
0.0210297
-0.00107804
8.54911e-12
0.0208199
-0.00109361
7.83467e-12
0.0206027
-0.00110539
7.09001e-12
0.0203796
-0.00111271
6.34296e-12
0.0201502
-0.00111649
5.61325e-12
0.0199175
-0.00111576
4.9129e-12
0.019683
-0.00111147
4.22259e-12
0.01945
-0.00110256
3.57016e-12
0.0192219
-0.00108941
2.96052e-12
0.0190017
-0.0010712
2.34303e-12
0.0187943
-0.00104734
1.73339e-12
0.0185978
-0.00101785
1.23664e-12
0.0184198
-0.00098316
6.08921e-13
0.0182589
-0.000939957
-9.63492e-14
0.0181218
-0.000888049
-1.11865e-12
0.0180079
-0.000824172
-2.17139e-12
0.0179229
-0.000745976
-3.59302e-12
0.0178725
-0.000649859
-5.28332e-12
0.0178567
-0.000530224
-8.19978e-12
0.0178524
-0.000380788
-8.60984e-12
0.0178817
-0.000233701
-9.44207e-12
0.0179605
-6.43605e-05
-1.07188e-11
0.0180936
0.000134938
-1.3814e-11
0.0182563
0.00038402
-1.73807e-11
0.0184412
0.000652108
-1.85938e-11
0.0186297
0.000927148
-1.83606e-11
0.0188077
0.00118868
-1.75383e-11
0.0189706
0.00141937
-1.66488e-11
0.0191173
0.0016077
-1.59424e-11
0.0192563
0.00174866
-1.59935e-11
0.0193979
0.00184085
-1.62674e-11
0.0195503
0.00187849
-1.74497e-11
0.0197201
0.0018656
-1.7736e-11
0.0199147
0.0018104
-1.94732e-11
0.0201447
0.00169655
-2.02939e-11
0.0204041
0.00153696
-2.08559e-11
0.0206788
0.00134539
-2.09302e-11
0.020958
0.00113971
-2.02385e-11
0.0212206
0.000939387
-1.87398e-11
0.0214502
0.000759788
-1.6743e-11
0.0216397
0.000609101
-1.45831e-11
0.0217838
0.000488972
-1.256e-11
0.0218858
0.000395847
-1.08348e-11
0.0219563
0.000323745
-9.43214e-12
0.0220001
0.000266484
-8.29977e-12
0.0220225
0.000219026
-7.38172e-12
0.0220339
0.000177495
-6.43034e-12
0.0220373
0.000140056
-5.93874e-12
0.0220343
0.000105697
-4.63954e-12
0.0220262
7.15286e-05
-4.4875e-12
0.0220195
3.83136e-05
-4.17452e-12
0.0220146
6.29055e-06
-3.64247e-12
0.0220079
-2.3714e-05
-2.69297e-12
0.0220029
-5.33706e-05
-2.66085e-12
0.0219984
-8.11283e-05
-1.79768e-12
0.0219983
-0.000107652
-1.3799e-12
0.0219989
-0.000131185
-9.18059e-13
-0.000154716
-8.47113e-13
0.0166482
0.000629744
1.7869e-10
0.0172542
0.00113872
1.34121e-10
0.0176936
0.0015711
5.24699e-11
0.0181095
0.00187067
1.29068e-11
0.0185565
0.00203412
-1.84468e-12
0.0190197
0.00206483
-1.06184e-11
0.0194738
0.00198924
-1.28998e-11
0.0199048
0.00184989
-1.85144e-11
0.0203141
0.00168582
-2.24948e-11
0.0207028
0.00152324
-2.48054e-11
0.0210654
0.0013731
-2.53544e-11
0.0214012
0.0012377
-2.39209e-11
0.0217121
0.0011154
-2.06218e-11
0.0219971
0.00100352
-1.65298e-11
0.0222531
0.000899062
-9.95131e-12
0.0224728
0.000799252
-1.07073e-11
0.0226533
0.000701941
-6.32847e-12
0.0227926
0.000606027
-4.57015e-12
0.0228922
0.000511289
-3.34528e-12
0.0229582
0.000417849
-2.39413e-12
0.0229984
0.000326292
-1.56282e-12
0.023022
0.000237142
-8.38603e-13
0.0230363
0.00015097
-2.84138e-13
0.0230451
6.80266e-05
9.93451e-14
0.0230497
-1.21906e-05
3.14016e-13
0.0230462
-8.78345e-05
5.07084e-13
0.0230334
-0.000161319
7.15645e-13
0.0230061
-0.000231112
1.04832e-12
0.0229621
-0.000297664
1.5783e-12
0.0228992
-0.000360806
2.38702e-12
0.022817
-0.000420953
3.40229e-12
0.0227173
-0.000477659
4.6078e-12
0.0226011
-0.000531429
5.8777e-12
0.0224725
-0.000581422
7.13322e-12
0.0223323
-0.000628349
8.27088e-12
0.0221841
-0.000671095
9.21709e-12
0.0220285
-0.000710608
9.85387e-12
0.0218664
-0.000745651
1.025e-11
0.0216983
-0.000777274
1.03719e-11
0.0215231
-0.000804394
1.02178e-11
0.0213405
-0.000828132
9.85664e-12
0.0211507
-0.000847497
9.32689e-12
0.0209516
-0.00086378
8.66239e-12
0.0207442
-0.000875958
7.93131e-12
0.0205268
-0.000885391
7.17766e-12
0.0203014
-0.000891035
6.4216e-12
0.0200689
-0.00089413
5.71198e-12
0.0198321
-0.000893688
5.03495e-12
0.0195942
-0.000890635
4.41626e-12
0.0193573
-0.000884101
3.84219e-12
0.0191262
-0.000874512
3.30969e-12
0.0189033
-0.000861242
2.80965e-12
0.0186918
-0.000843918
2.29433e-12
0.0184943
-0.000821892
1.86677e-12
0.0183106
-0.000795976
1.34619e-12
0.0181451
-0.000764177
7.22125e-13
0.0179967
-0.00072565
1.41632e-14
0.0178684
-0.00067891
-7.24954e-13
0.0177609
-0.000621882
-1.96204e-12
0.0176791
-0.000551743
-3.4088e-12
0.0176251
-0.000465771
-5.24845e-12
0.0176035
-0.000355411
-8.10902e-12
0.0175939
-0.000223355
-8.49829e-12
0.017617
-9.00435e-05
-9.39264e-12
0.0176835
6.00928e-05
-1.12654e-11
0.0178106
0.000237521
-1.46012e-11
0.0179697
0.000463079
-1.78574e-11
0.0181578
0.000704345
-1.95462e-11
0.0183564
0.000951207
-1.99e-11
0.0185548
0.00118089
-1.97584e-11
0.0187453
0.00137716
-1.94494e-11
0.018929
0.00152425
-1.93771e-11
0.0191142
0.00161377
-1.98267e-11
0.0193117
0.00163856
-1.97572e-11
0.0195192
0.00160959
-2.11063e-11
0.0197576
0.0015185
-2.21069e-11
0.0200183
0.00137869
-2.26553e-11
0.0202906
0.00120485
-2.25476e-11
0.0205601
0.00101651
-2.16965e-11
0.0208075
0.000833003
-2.01516e-11
0.0210205
0.0006693
-1.81556e-11
0.0211937
0.000533744
-1.60876e-11
0.0213229
0.000427263
-1.41632e-11
0.0214152
0.000346083
-1.25214e-11
0.0214785
0.000284494
-1.11529e-11
0.0215166
0.000236545
-9.98079e-12
0.0215371
0.000197431
-8.94771e-12
0.0215483
0.000163699
-8.01588e-12
0.0215516
0.000133449
-7.00462e-12
0.021547
0.000104669
-6.33884e-12
0.0215444
7.81368e-05
-4.88091e-12
0.0215442
5.14687e-05
-4.73277e-12
0.0215446
2.50846e-05
-4.38923e-12
0.021544
-8.63793e-07
-3.76201e-12
0.0215464
-2.47629e-05
-2.63608e-12
0.0215542
-4.80251e-05
-1.81778e-12
0.0215631
-7.06303e-05
-1.8273e-12
0.0215768
-9.16229e-05
-1.32673e-12
0.0215914
-0.000110154
-8.2237e-13
-0.000128342
-7.50909e-13
0.0171849
0.000452697
1.52345e-10
0.0173965
0.00100634
1.13654e-10
0.0177046
0.00131879
3.59482e-11
0.0180988
0.00153005
-3.28348e-12
0.0185562
0.00163968
-1.43449e-11
0.0190271
0.00164111
-1.77654e-11
0.0194786
0.00155541
-2.31756e-11
0.0199045
0.00142251
-2.63645e-11
0.0203078
0.00127734
-2.88555e-11
0.0206934
0.00114055
-3.04174e-11
0.0210579
0.00101894
-3.06218e-11
0.0213924
0.000913143
-2.90301e-11
0.0216907
0.000819674
-2.59444e-11
0.0219549
0.000735612
-2.16588e-11
0.0221864
0.000657762
-1.71219e-11
0.0223819
0.000583997
-1.29836e-11
0.0225355
0.000512736
-1.13109e-11
0.0226469
0.000442796
-7.08696e-12
0.0227216
0.000374031
-5.15272e-12
0.0227719
0.000306339
-3.60893e-12
0.0228085
0.000240213
-2.34284e-12
0.0228405
0.000175795
-1.35512e-12
0.0228719
0.000113481
-6.83569e-13
0.0229014
5.33793e-05
-3.2534e-13
0.0229239
-3.21964e-06
-1.32676e-13
0.0229389
-6.08675e-05
-2.027e-13
0.022939
-0.000114406
-2.16784e-13
0.022921
-0.000166214
-1.8842e-14
0.0228834
-0.000216467
4.74136e-13
0.0228271
-0.000264474
1.28734e-12
0.0227515
-0.000310761
2.40265e-12
0.0226604
-0.000354397
3.74841e-12
0.0225539
-0.00039612
5.20605e-12
0.0224358
-0.000434705
6.65384e-12
0.0223069
-0.000471058
7.97251e-12
0.0221694
-0.000503945
9.05957e-12
0.0220243
-0.000534232
9.87527e-12
0.0218711
-0.000561026
1.0341e-11
0.0217102
-0.0005849
1.05137e-11
0.0215393
-0.000605479
1.03897e-11
0.0213577
-0.000622917
1.00346e-11
0.0211642
-0.000637481
9.48335e-12
0.0209575
-0.000648877
8.80575e-12
0.0207387
-0.000657963
8.05743e-12
0.0205086
-0.000664086
7.2879e-12
0.0202693
-0.000668373
6.54005e-12
0.0200247
-0.000669889
5.83282e-12
0.0197768
-0.000669986
5.17561e-12
0.0195312
-0.000667175
4.59355e-12
0.0192901
-0.000663167
4.05482e-12
0.0190583
-0.000655899
3.58574e-12
0.0188368
-0.000647071
3.14184e-12
0.0186287
-0.000634584
2.72188e-12
0.0184349
-0.000619347
2.33694e-12
0.0182541
-0.000600532
1.88845e-12
0.0180868
-0.000577973
1.39612e-12
0.0179342
-0.000550606
8.01172e-13
0.0177955
-0.000517752
3.78142e-14
0.0176739
-0.000477885
-7.42989e-13
0.017571
-0.000429425
-2.09092e-12
0.0174896
-0.000369218
-3.36344e-12
0.0174387
-0.000296059
-5.52171e-12
0.0174106
-0.000195704
-8.42997e-12
0.0174071
-9.12233e-05
-8.87207e-12
0.0174365
2.21683e-05
-9.95465e-12
0.0175104
0.00014937
-1.20332e-11
0.0176444
0.000303007
-1.60236e-11
0.0178168
0.000496895
-1.88737e-11
0.0180241
0.000702352
-2.08531e-11
0.0182495
0.000908849
-2.19541e-11
0.0184854
0.00109328
-2.26024e-11
0.0187245
0.0012361
-2.28874e-11
0.0189677
0.00131984
-2.33727e-11
0.0192201
0.00133523
-2.38777e-11
0.0194884
0.00128742
-2.45668e-11
0.0197687
0.00118189
-2.49467e-11
0.0200516
0.00103755
-2.46915e-11
0.0203225
0.00087535
-2.36476e-11
0.0205684
0.000715139
-2.19612e-11
0.0207756
0.000571893
-1.99244e-11
0.0209393
0.000453123
-1.78076e-11
0.021063
0.000360178
-1.59183e-11
0.0211494
0.000289996
-1.42458e-11
0.0212073
0.000237466
-1.28537e-11
0.0212451
0.00019752
-1.16269e-11
0.0212669
0.000165888
-1.05086e-11
0.0212747
0.000139455
-9.45497e-12
0.0212774
0.000115981
-8.4584e-12
0.0212758
9.46959e-05
-7.37662e-12
0.0212665
7.3761e-05
-6.56846e-12
0.0212591
5.41683e-05
-5.05737e-12
0.0212547
3.447e-05
-4.88378e-12
0.0212513
1.48295e-05
-4.50823e-12
0.0212459
-4.41117e-06
-3.83715e-12
0.0212437
-2.31214e-05
-2.50067e-12
0.0212455
-4.05671e-05
-1.81991e-12
0.0212478
-5.75644e-05
-1.69769e-12
0.0212535
-7.30055e-05
-1.23791e-12
0.0212601
-8.76191e-05
-7.67105e-13
-9.91081e-05
-6.8521e-13
0.0169075
0.000365718
1.30769e-10
0.017032
0.000907656
9.00902e-11
0.017387
0.00109146
2.89733e-11
0.0178473
0.00118132
-9.8716e-12
0.0183421
0.00121652
-2.14617e-11
0.0188291
0.00117904
-2.44376e-11
0.0192881
0.00108526
-2.70781e-11
0.0197183
0.000967223
-3.02519e-11
0.0201286
0.000850416
-3.26512e-11
0.0205236
0.000747038
-3.38948e-11
0.0208997
0.000659302
-3.38561e-11
0.0212471
0.00058528
-3.23619e-11
0.0215538
0.000521428
-2.91838e-11
0.0218217
0.00046429
-2.49129e-11
0.0220526
0.000411695
-2.00789e-11
0.0222477
0.000362179
-1.5541e-11
0.0224019
0.000314501
-1.01262e-11
0.0225157
0.000268109
-1.06254e-11
0.0225954
0.000222841
-6.04603e-12
0.0226546
0.000178656
-4.08158e-12
0.0227039
0.000135833
-2.53905e-12
0.0227519
9.4443e-05
-1.39721e-12
0.0228002
5.47455e-05
-7.1198e-13
0.0228451
1.64681e-05
-4.73034e-13
0.0228833
-1.9472e-05
-6.09329e-13
0.0229049
-5.41268e-05
-8.1783e-13
0.0229094
-8.7938e-05
-9.51393e-13
0.0228958
-0.00012042
-8.53484e-13
0.0228634
-0.000151788
-3.97864e-13
0.0228153
-0.000182098
4.2422e-13
0.0227506
-0.000211306
1.62094e-12
0.0226725
-0.000239286
3.06276e-12
0.0225803
-0.000265911
4.67004e-12
0.0224751
-0.000290953
6.24826e-12
0.0223586
-0.000314361
7.72787e-12
0.0222299
-0.00033585
8.92835e-12
0.0220921
-0.000355434
9.85485e-12
0.0219422
-0.000372965
1.03982e-11
0.0217828
-0.000388411
1.06175e-11
0.0216092
-0.000401847
1.05123e-11
0.0214234
-0.000413143
1.01436e-11
0.0212215
-0.000422607
9.58612e-12
0.0210053
-0.000430009
8.87987e-12
0.0207748
-0.000435973
8.12661e-12
0.0205332
-0.000439858
7.33666e-12
0.0202826
-0.000442837
6.59327e-12
0.0200292
-0.00044367
5.8863e-12
0.019774
-0.000443869
5.25548e-12
0.0195242
-0.000442002
4.691e-12
0.0192808
-0.000439387
4.19762e-12
0.0190473
-0.000434742
3.75617e-12
0.0188259
-0.000428914
3.36897e-12
0.018616
-0.000421001
2.98179e-12
0.0184205
-0.000410925
2.62507e-12
0.0182366
-0.000398864
2.22443e-12
0.0180665
-0.00038421
1.79822e-12
0.017907
-0.000366728
1.31876e-12
0.0177584
-0.000345668
6.88044e-13
0.0176233
-0.000320536
-7.22034e-14
0.0175016
-0.000289845
-1.10715e-12
0.0173987
-0.000252598
-2.25124e-12
0.0173179
-0.000206082
-3.96371e-12
0.0172725
-0.000147874
-5.90979e-12
0.0172414
-6.9139e-05
-9.35295e-12
0.0172459
6.89783e-06
-9.73605e-12
0.017291
9.04858e-05
-1.07506e-11
0.0173885
0.000186822
-1.28782e-11
0.0175451
0.000308894
-1.70995e-11
0.0177509
0.000455103
-2.0556e-11
0.0180006
0.000611306
-2.33727e-11
0.0182809
0.000758719
-2.52639e-11
0.0185845
0.000875756
-2.66627e-11
0.0189002
0.00094385
-2.73713e-11
0.0192219
0.000951278
-2.79879e-11
0.0195466
0.000900885
-2.7992e-11
0.0198623
0.000805897
-2.7335e-11
0.0201567
0.000686158
-2.60063e-11
0.020415
0.00056202
-2.40882e-11
0.0206297
0.000448497
-2.19008e-11
0.0207988
0.000353366
-1.9727e-11
0.020924
0.000278609
-1.77421e-11
0.0210133
0.000222079
-1.6035e-11
0.0210729
0.000179994
-1.45407e-11
0.0211086
0.000148482
-1.32245e-11
0.0211286
0.000124209
-1.20203e-11
0.0211373
0.000104619
-1.08648e-11
0.0211333
8.8017e-05
-9.77137e-12
0.0211271
7.30475e-05
-8.69586e-12
0.0211175
5.94211e-05
-7.62084e-12
0.0211031
4.59072e-05
-6.35683e-12
0.0210905
3.27574e-05
-5.86695e-12
0.0210825
1.97277e-05
-4.92114e-12
0.0210765
6.60577e-06
-4.22375e-12
0.0210688
-6.40756e-06
-3.73117e-12
0.0210627
-1.89078e-05
-2.68996e-12
0.0210602
-3.06642e-05
-1.71133e-12
0.0210576
-4.19522e-05
-1.5422e-12
0.0210562
-5.24185e-05
-1.16295e-12
0.0210535
-6.18727e-05
-7.88387e-13
-6.90081e-05
-5.69173e-13
0.0162892
0.000154438
1.53318e-10
0.0167275
0.000472293
9.70798e-11
0.0173154
0.000591717
2.17023e-11
0.0179553
0.000635114
-1.50726e-11
0.0185817
0.00064246
-2.75973e-11
0.0191623
0.000610838
-2.7551e-11
0.019687
0.00055106
-2.9353e-11
0.0201623
0.000482761
-3.25106e-11
0.0206014
0.000419519
-3.47947e-11
0.0210092
0.000365713
-3.59834e-11
0.0213823
0.000321316
-3.57725e-11
0.0217106
0.000284201
-3.43363e-11
0.0219858
0.000252274
-3.13163e-11
0.022208
0.00022365
-2.70727e-11
0.0223872
0.000197135
-2.20787e-11
0.0225318
0.000172059
-1.73425e-11
0.0226358
0.000147959
-1.10535e-11
0.0226988
0.000124586
-1.1223e-11
0.0227304
0.000101976
-6.56543e-12
0.0227496
8.00885e-05
-4.24336e-12
0.022772
5.90423e-05
-2.47352e-12
0.0228051
3.88241e-05
-1.2392e-12
0.0228472
1.96469e-05
-5.6785e-13
0.0228884
1.95755e-06
-4.23065e-13
0.0229215
-1.57813e-05
-7.23457e-13
0.022938
-3.20421e-05
-1.10839e-12
0.0229338
-4.77056e-05
-1.38951e-12
0.0229093
-6.29414e-05
-1.39794e-12
0.0228661
-7.77422e-05
-9.82654e-13
0.0228075
-9.21511e-05
-1.40056e-13
0.0227347
-0.000106145
1.1196e-12
0.0226504
-0.000119656
2.65454e-12
0.0225541
-0.000132649
4.36941e-12
0.022447
-0.000144912
6.05898e-12
0.02233
-0.000156529
7.64792e-12
0.0222019
-0.000167144
8.93952e-12
0.0220653
-0.000176967
9.94151e-12
0.0219168
-0.00018566
1.05335e-11
0.0217582
-0.000193411
1.07822e-11
0.0215855
-0.000200076
1.06831e-11
0.0214002
-0.000205715
1.0311e-11
0.0211986
-0.00021041
9.73223e-12
0.0209847
-0.0002141
9.01939e-12
0.0207555
-0.000217051
8.23374e-12
0.0205177
-0.000219022
7.44144e-12
0.0202714
-0.000220475
6.67811e-12
0.020022
-0.000220956
5.9682e-12
0.0197729
-0.000220979
5.33966e-12
0.0195272
-0.000220153
4.7798e-12
0.0192885
-0.000218656
4.30043e-12
0.0190567
-0.000216485
3.87461e-12
0.0188362
-0.00021336
3.51456e-12
0.0186231
-0.000209492
3.15549e-12
0.0184217
-0.000204473
2.82873e-12
0.0182289
-0.000198381
2.46604e-12
0.0180466
-0.000191173
2.10717e-12
0.0178736
-0.000182412
1.61391e-12
0.0177142
-0.000172273
1.07492e-12
0.0175635
-0.000159846
3.6493e-13
0.0174301
-0.000145236
-4.36909e-13
0.017311
-0.000127163
-1.53077e-12
0.0172124
-0.000104835
-3.12817e-12
0.0171435
-7.77168e-05
-4.46862e-12
0.0170996
-3.81714e-05
-8.64887e-12
0.0170946
2.83846e-08
-9.11503e-12
0.017129
4.21339e-05
-1.00415e-11
0.017209
8.9421e-05
-1.19271e-11
0.0173462
0.000147711
-1.55818e-11
0.0175414
0.000224193
-1.97224e-11
0.0177976
0.000307721
-2.37423e-11
0.0181122
0.000389929
-2.70689e-11
0.0184717
0.0004568
-2.94247e-11
0.0188583
0.000495278
-3.08221e-11
0.0192491
0.000497293
-3.12417e-11
0.0196235
0.0004644
-3.05203e-11
0.0199648
0.00040707
-2.8875e-11
0.0202592
0.000338916
-2.66227e-11
0.0205011
0.000272169
-2.41451e-11
0.0206907
0.000214131
-2.17622e-11
0.0208311
0.000167545
-1.96363e-11
0.0209319
0.00013198
-1.78033e-11
0.0210002
0.000105461
-1.62145e-11
0.0210416
8.57402e-05
-1.47903e-11
0.0210641
7.08422e-05
-1.34819e-11
0.0210725
5.92158e-05
-1.22525e-11
0.0210687
4.97057e-05
-1.10518e-11
0.0210577
4.15972e-05
-9.93298e-12
0.0210468
3.42436e-05
-8.78898e-12
0.0210297
2.74122e-05
-7.78156e-12
0.0210135
2.11796e-05
-6.22628e-12
0.0210017
1.42544e-05
-6.05182e-12
0.0209961
7.52492e-06
-5.2557e-12
0.0209905
1.0718e-06
-4.18942e-12
0.0209856
-5.54469e-06
-3.37264e-12
0.0209832
-1.15937e-05
-2.62463e-12
0.0209845
-1.7719e-05
-1.91087e-12
0.0209865
-2.33041e-05
-1.43685e-12
0.0209889
-2.85196e-05
-1.10271e-12
0.0209893
-3.30445e-05
-7.56759e-13
-3.59451e-05
-5.19986e-13
0.0161634
1.45165e-10
0.0166322
9.08554e-11
0.0173446
2.10406e-11
0.0180612
-1.85447e-11
0.0187216
-3.18238e-11
0.0193214
-3.07645e-11
0.0198621
-3.1546e-11
0.020351
-3.416e-11
0.0207963
-3.6561e-11
0.0212021
-3.75109e-11
0.0215653
-3.71607e-11
0.0218782
-3.55647e-11
0.0221346
-3.24483e-11
0.0223344
-2.81576e-11
0.0224858
-2.30517e-11
0.0225994
-1.81672e-11
0.0226777
-1.30325e-11
0.0227149
-1.10357e-11
0.0227172
-6.72983e-12
0.0227098
-4.20948e-12
0.0227158
-2.32907e-12
0.022745
-1.0755e-12
0.0227913
-4.59327e-13
0.022842
-4.21583e-13
0.0228828
-7.12197e-13
0.0229046
-1.2013e-12
0.0229029
-1.59127e-12
0.0228787
-1.66823e-12
0.0228339
-1.28078e-12
0.0227729
-4.32348e-13
0.0226975
8.54713e-13
0.0226112
2.43341e-12
0.0225133
4.19812e-12
0.0224065
5.94328e-12
0.0222905
7.58327e-12
0.0221645
8.92002e-12
0.0220305
9.96061e-12
0.0218842
1.05753e-11
0.0217279
1.0844e-11
0.0215566
1.07471e-11
0.0213723
1.03787e-11
0.0211717
9.78768e-12
0.0209586
9.07648e-12
0.0207309
8.2711e-12
0.0204951
7.48615e-12
0.0202516
6.70537e-12
0.0200048
6.00369e-12
0.0197595
5.36907e-12
0.0195157
4.81852e-12
0.0192794
4.3374e-12
0.0190491
3.93001e-12
0.0188282
3.56799e-12
0.0186157
3.2333e-12
0.0184125
2.91721e-12
0.0182188
2.5739e-12
0.0180333
2.20556e-12
0.0178581
1.75806e-12
0.0176928
1.2372e-12
0.0175376
5.63257e-13
0.0173979
-2.67354e-13
0.0172717
-1.22992e-12
0.0171668
-2.72296e-12
0.0170873
-3.8931e-12
0.0170352
-8.1166e-12
0.0170243
-8.50309e-12
0.0170537
-9.38549e-12
0.0171277
-1.1121e-11
0.0172558
-1.41179e-11
0.0174455
-1.99944e-11
0.0177091
-2.39712e-11
0.0180463
-2.79835e-11
0.0184434
-3.12353e-11
0.0188749
-3.31255e-11
0.0193076
-3.33798e-11
0.0197108
-3.20808e-11
0.0200632
-2.97062e-11
0.0203545
-2.68925e-11
0.0205852
-2.4148e-11
0.0207593
-2.17064e-11
0.0208864
-1.96365e-11
0.0209758
-1.78786e-11
0.0210332
-1.63326e-11
0.0210666
-1.49198e-11
0.021082
-1.36022e-11
0.021082
-1.23447e-11
0.0210706
-1.11191e-11
0.0210545
-9.98165e-12
0.0210362
-8.81873e-12
0.0210126
-7.80315e-12
0.020992
-6.36242e-12
0.0209804
-5.8891e-12
0.0209741
-4.90354e-12
0.020965
-4.21816e-12
0.0209595
-3.72802e-12
0.0209573
-2.62871e-12
0.0209596
-2.14669e-12
0.0209629
-1.3515e-12
0.0209656
-1.09398e-12
0.020966
-7.33404e-13
-5.06223e-13
0.00744872
0.00884722
-3.06063e-12
0.00282528
0.00462038
-9.07672e-12
-0.0014335
0.00425569
-2.38243e-11
-0.00331476
0.00188141
-1.89094e-11
-0.00459124
0.00127531
-2.38532e-11
-0.00525877
0.000665083
-2.79358e-11
-0.00549344
0.00023209
-2.85135e-11
-0.005801
0.000305763
-2.61142e-11
-0.00614886
0.000345604
-2.63477e-11
-0.0064458
0.000294306
-2.79811e-11
-0.00666635
0.000217372
-2.88762e-11
-0.0068338
0.000165848
-2.46806e-11
-0.00695114
0.000117815
-1.69343e-11
-0.00705066
9.4398e-05
-3.32778e-11
-0.00716309
0.000103589
-4.44273e-11
-0.00724833
7.48655e-05
-5.09317e-11
-0.0072777
1.87466e-05
-5.35406e-11
-0.00725852
-3.39871e-05
-6.47052e-11
-0.00718394
-9.2006e-05
-7.32077e-11
-0.00704721
-0.000155524
-7.79818e-11
-0.00684914
-0.000217068
-7.78237e-11
-0.0066002
-0.000266203
-7.25482e-11
-0.00631477
-0.00030097
-6.44336e-11
-0.0059965
-0.00033081
-5.69737e-11
-0.00566073
-0.00034557
-4.59009e-11
-0.00531207
-0.000355209
-3.50122e-11
-0.00495263
-0.000362534
-2.5273e-11
-0.00458448
-0.000369644
-1.6868e-11
-0.00420487
-0.000379453
-1.00198e-11
-0.00381273
-0.000389455
-4.56458e-12
-0.00341024
-0.000399044
-9.47549e-15
-0.00298908
-0.000417235
2.42746e-12
-0.00255548
-0.000428924
5.23294e-12
-0.00211723
-0.0004332
6.82563e-12
-0.00167769
-0.000435124
6.81508e-12
-0.00123679
-0.000437079
5.82008e-12
-0.000792301
-0.000440408
5.00717e-12
-0.000345589
-0.000442972
3.80554e-12
0.000119286
-0.000462432
-1.55442e-12
0.000576292
-0.000456049
-6.58757e-12
0.00101394
-0.000438105
-1.16986e-11
0.00143363
-0.000421027
-1.5163e-11
0.00184285
-0.000410907
-1.76619e-11
0.00223711
-0.00039702
-2.04366e-11
0.00261575
-0.000382672
-2.48141e-11
0.0029811
-0.00037024
-2.63286e-11
0.00334068
-0.000364906
-2.9611e-11
0.00369422
-0.000360332
-3.26534e-11
0.00403542
-0.000348324
-3.51691e-11
0.00436229
-0.000334568
-3.67718e-11
0.00467609
-0.000321949
-3.81649e-11
0.00497654
-0.000309573
-3.85414e-11
0.00526523
-0.000297501
-3.85475e-11
0.00554101
-0.000285617
-3.75674e-11
0.0058053
-0.000273414
-3.6194e-11
0.00605857
-0.000261893
-3.3958e-11
0.00630076
-0.000249967
-3.12822e-11
0.00653287
-0.000238715
-2.80176e-11
0.00675443
-0.000227282
-2.43446e-11
0.00696658
-0.000216398
-2.02653e-11
0.00716938
-0.000205535
-1.59797e-11
0.00736241
-0.000195178
-1.13987e-11
0.00754652
-0.000184827
-6.68715e-12
0.00772186
-0.000175075
-2.16091e-12
0.0078888
-0.000165338
1.40491e-12
0.00804719
-0.000156186
5.7076e-12
0.00819828
-0.000147064
9.58287e-12
0.00834124
-0.000138554
1.31382e-11
0.00847717
-0.000130012
1.62509e-11
0.00860603
-0.000122102
1.89828e-11
0.00872742
-0.000114114
2.13238e-11
0.00884277
-0.000106693
2.32886e-11
0.0089505
-9.92421e-05
2.49761e-11
0.00905239
-9.22394e-05
2.63654e-11
0.00914732
-8.52977e-05
2.75387e-11
0.00923612
-7.87254e-05
2.84858e-11
0.00931873
-7.22888e-05
2.9242e-11
0.0093953
-6.61944e-05
2.9821e-11
0.00946614
-6.02758e-05
3.0243e-11
0.00953145
-5.46577e-05
3.05389e-11
0.00959137
-4.92274e-05
3.07293e-11
0.00964625
-4.40319e-05
3.08362e-11
0.00969628
-3.90403e-05
3.08747e-11
0.00974149
-3.42707e-05
3.0871e-11
0.00978253
-2.96887e-05
3.08429e-11
0.00981884
-2.52811e-05
3.07883e-11
0.00985158
-2.11196e-05
3.0714e-11
0.00987983
-1.70577e-05
3.06322e-11
0.00990451
-1.3018e-05
3.05288e-11
0.00992545
-9.41484e-06
3.04165e-11
0.0099428
-5.9072e-06
3.02498e-11
0.00995698
-2.27488e-06
3.00633e-11
0.00996706
1.13735e-06
2.98286e-11
0.009975
4.2225e-06
2.95799e-11
0.00997862
7.54988e-06
2.92485e-11
0.00997931
1.13477e-05
2.88888e-11
0.00997489
1.57042e-05
2.84215e-11
0.00996542
2.11578e-05
2.78576e-11
0.00994848
2.81454e-05
2.72446e-11
3.69955e-05
2.67557e-11
0.0114612
0.0132527
-4.42489e-12
0.00790204
0.0081777
-1.05941e-11
0.00602857
0.00612459
-1.80904e-11
0.00354496
0.00436301
-1.94046e-11
0.00179917
0.0030193
-2.42355e-11
0.000234733
0.00222525
-2.95133e-11
-0.0012534
0.00172094
-3.04601e-11
-0.0023167
0.00137304
-2.60274e-11
-0.00301434
0.00104597
-2.60365e-11
-0.00347856
0.000759577
-2.72513e-11
-0.00376749
0.000505674
-2.80735e-11
-0.00400465
0.000403056
-2.7574e-11
-0.0042288
0.000341577
-2.77361e-11
-0.00438516
0.000246913
-3.04894e-11
-0.00448569
0.000196772
-4.34583e-11
-0.00454244
0.000122928
-5.18744e-11
-0.00453277
-1.31528e-06
-5.53465e-11
-0.00445878
-0.000122455
-6.81113e-11
-0.00432127
-0.000247668
-7.76076e-11
-0.00410925
-0.000388392
-8.27999e-11
-0.00383825
-0.000510397
-8.30609e-11
-0.00352484
-0.000600818
-7.76381e-11
-0.00318605
-0.000657773
-6.70838e-11
-0.00282316
-0.000710832
-6.13217e-11
-0.00245506
-0.000729032
-4.93257e-11
-0.00207876
-0.000743153
-3.79371e-11
-0.00169642
-0.000754402
-2.81587e-11
-0.00130421
-0.000769948
-1.96828e-11
-0.000900059
-0.000787983
-1.3148e-11
-0.000484477
-0.000806919
-8.20429e-12
-5.10526e-05
-0.000832341
-1.66995e-12
0.000376651
-0.000845491
-3.49189e-12
0.00080117
-0.000853383
3.44793e-13
0.00122422
-0.000855407
2.81576e-12
0.00164956
-0.000859066
3.08096e-12
0.0020721
-0.000859022
1.75612e-12
0.00249132
-0.000858165
1.09826e-12
0.002907
-0.000856924
9.33435e-13
0.00330235
-0.000856684
-2.78011e-12
0.0036919
-0.000845783
-6.48011e-12
0.00407989
-0.000826401
-1.1076e-11
0.00446478
-0.000806258
-1.37799e-11
0.004839
-0.000785359
-1.59334e-11
0.00520473
-0.00076338
-1.88206e-11
0.00555769
-0.000737434
-2.24367e-11
0.00589792
-0.00071304
-2.35536e-11
0.00622454
-0.000693607
-2.58882e-11
0.00654345
-0.000682153
-2.94703e-11
0.00685099
-0.00065951
-3.10978e-11
0.00714759
-0.000635127
-3.2745e-11
0.00743036
-0.000609307
-3.39028e-11
0.0077013
-0.000584995
-3.4339e-11
0.00795825
-0.000560075
-3.41502e-11
0.00820394
-0.000536302
-3.33944e-11
0.0084376
-0.00051215
-3.20657e-11
0.00865961
-0.000488858
-3.02696e-11
0.00887071
-0.000465388
-2.79558e-11
0.00907098
-0.000442834
-2.52014e-11
0.00926062
-0.000420218
-2.20197e-11
0.00944062
-0.000398529
-1.85246e-11
0.00961086
-0.000376957
-1.47347e-11
0.00977186
-0.000356276
-1.07502e-11
0.00992422
-0.000335832
-6.44921e-12
0.0100675
-0.000316315
-2.34611e-12
0.0102025
-0.000297097
7.68085e-13
0.0103292
-0.000278808
4.78381e-12
0.0104474
-0.000260871
8.46389e-12
0.0105587
-0.000243781
1.18133e-11
0.0106612
-0.000227125
1.48707e-11
0.0107578
-0.000211128
1.75806e-11
0.0108463
-0.000195635
1.99345e-11
0.010929
-0.000180656
2.19559e-11
0.0110044
-0.000166208
2.37105e-11
0.0110739
-0.000152192
2.5195e-11
0.0111366
-0.000138746
2.64529e-11
0.0111936
-0.000125729
2.75001e-11
0.0112443
-0.000113321
2.83506e-11
0.0112897
-0.000101382
2.90256e-11
0.0113292
-9.00405e-05
2.95423e-11
0.0113638
-7.91537e-05
2.9924e-11
0.0113931
-6.8791e-05
3.02001e-11
0.0114175
-5.88254e-05
3.03706e-11
0.0114374
-4.93208e-05
3.04731e-11
0.0114528
-4.03014e-05
3.05138e-11
0.0114643
-3.1528e-05
3.05369e-11
0.0114716
-2.33576e-05
3.04864e-11
0.0114757
-1.55357e-05
3.04222e-11
0.0114756
-8.06008e-06
3.03366e-11
0.0114722
-3.7788e-07
3.02252e-11
0.0114661
5.26918e-06
3.00996e-11
0.0114573
1.13189e-05
2.99371e-11
0.0114463
1.73483e-05
2.97702e-11
0.0114322
2.33848e-05
2.95101e-11
0.0114158
2.9366e-05
2.92548e-11
0.0113959
3.56607e-05
2.89271e-11
0.0113737
4.24639e-05
2.85531e-11
0.0113475
5.03408e-05
2.80829e-11
0.0113176
5.97797e-05
2.74955e-11
0.0112823
7.18645e-05
2.68537e-11
8.74549e-05
2.63008e-11
0.0153004
0.0151542
-4.35949e-12
0.012777
0.010699
-7.41949e-12
0.0105843
0.00831507
-1.41211e-11
0.00847706
0.0064659
-1.75928e-11
0.00649892
0.00499255
-2.19821e-11
0.00481684
0.00389957
-2.64272e-11
0.00340986
0.00312487
-2.75816e-11
0.00226767
0.00251743
-2.62628e-11
0.00130534
0.00201139
-2.65333e-11
0.000451421
0.00161522
-2.83444e-11
-0.000348398
0.00130691
-2.91867e-11
-0.00099415
0.00104964
-2.85128e-11
-0.0014605
0.000805867
-3.16937e-11
-0.00178121
0.000564182
-3.39351e-11
-0.00192123
0.000329561
-4.31248e-11
-0.00192498
0.000119926
-5.06589e-11
-0.00181443
-0.000122555
-6.11257e-11
-0.00165939
-0.000292176
-7.38167e-11
-0.00144985
-0.000476482
-8.21423e-11
-0.00115004
-0.000710988
-8.73725e-11
-0.000800417
-0.000886365
-8.83663e-11
-0.000417024
-0.00101029
-8.27733e-11
-6.47179e-06
-0.00108947
-5.93601e-11
0.00037529
-0.00111799
-8.1913e-11
0.000764527
-0.00113816
-5.5049e-11
0.0011572
-0.00115243
-4.23042e-11
0.00155734
-0.0011689
-3.2039e-11
0.00196628
-0.00119075
-2.39167e-11
0.00238015
-0.00121247
-1.81005e-11
0.00280052
-0.0012365
-1.32059e-11
0.00321803
-0.0012595
-9.13655e-12
0.00363949
-0.00127651
-7.64048e-12
0.00406404
-0.00128649
-4.92803e-12
0.00449187
-0.00129214
-2.74829e-12
0.00491639
-0.00129257
-1.78375e-12
0.00533848
-0.00129071
-2.66691e-12
0.00575403
-0.00128354
-3.86837e-12
0.00616173
-0.00127425
-3.62775e-12
0.00655459
-0.00126023
-5.05268e-12
0.00693819
-0.00124056
-7.34639e-12
0.00731271
-0.00121348
-1.04037e-11
0.00767796
-0.00118329
-1.22495e-11
0.00802999
-0.0011506
-1.41889e-11
0.00836986
-0.00111567
-1.67991e-11
0.0086969
-0.00107793
-1.97411e-11
0.00900958
-0.00103821
-2.04438e-11
0.0093045
-0.00100201
-2.20067e-11
0.00958234
-0.000973582
-2.46303e-11
0.00985102
-0.000942315
-2.58337e-11
0.0101077
-0.000905986
-2.70536e-11
0.0103526
-0.000867759
-2.80973e-11
0.0105829
-0.000828834
-2.85301e-11
0.010801
-0.000791003
-2.84098e-11
0.0110059
-0.000753584
-2.75324e-11
0.0111989
-0.000717191
-2.65154e-11
0.0113797
-0.000681287
-2.52821e-11
0.0115501
-0.000646202
-2.35932e-11
0.0117092
-0.000611675
-2.14399e-11
0.0118593
-0.000577954
-1.89599e-11
0.0119987
-0.000545009
-1.61596e-11
0.0121295
-0.000512847
-1.31224e-11
0.0122506
-0.000481641
-9.86099e-12
0.0123631
-0.000451224
-6.31469e-12
0.012467
-0.000421858
-2.57879e-12
0.0125626
-0.000393323
-8.65672e-14
0.0126509
-0.000365842
3.48737e-12
0.0127313
-0.000339218
6.83051e-12
0.0128052
-0.000313616
9.96623e-12
0.0128718
-0.000288802
1.29592e-11
0.0129319
-0.00026497
1.56185e-11
0.0129856
-0.00024189
1.79541e-11
0.0130327
-0.000219692
2.00632e-11
0.013074
-0.000198202
2.19277e-11
0.013109
-0.000177615
2.35485e-11
0.0131387
-0.000157663
2.49547e-11
0.0131625
-0.000138695
2.61453e-11
0.0131815
-0.000120415
2.71503e-11
0.0131953
-0.000103158
2.79669e-11
0.0132047
-8.65632e-05
2.86436e-11
0.0132092
-7.08997e-05
2.91665e-11
0.0132099
-5.58448e-05
2.9585e-11
0.0132057
-4.15075e-05
2.98532e-11
0.0131984
-2.79929e-05
3.00781e-11
0.0131869
-1.52434e-05
3.02024e-11
0.013173
-2.82076e-06
3.03425e-11
0.0131561
7.63029e-06
3.02641e-11
0.013138
1.7634e-05
3.02148e-11
0.0131171
2.73367e-05
3.01013e-11
0.0130949
3.67806e-05
2.99943e-11
0.0130695
4.55847e-05
2.98422e-11
0.0130413
5.40409e-05
2.96489e-11
0.0130115
6.23465e-05
2.9454e-11
0.0129786
7.04881e-05
2.91721e-11
0.0129443
7.86464e-05
2.89035e-11
0.0129069
8.69236e-05
2.85318e-11
0.0128678
9.57497e-05
2.81457e-11
0.0128259
0.000105569
2.7631e-11
0.0127816
0.000117162
2.70223e-11
0.0127344
0.000131505
2.63018e-11
0.000150142
2.56196e-11
0.0174121
0.0159071
-3.84666e-12
0.0157118
0.0123962
-6.46869e-12
0.0140601
0.00996456
-1.11954e-11
0.0123359
0.00818491
-1.57994e-11
0.010633
0.00669006
-2.0047e-11
0.00898372
0.00554073
-2.42896e-11
0.00745935
0.0046414
-2.52502e-11
0.00609814
0.00387123
-2.54151e-11
0.00493166
0.00317635
-2.61351e-11
0.00396174
0.00258594
-2.74037e-11
0.00314164
0.00212783
-2.78986e-11
0.00246335
0.00172872
-2.904e-11
0.00191292
0.00135455
-3.2961e-11
0.00148659
0.000985325
-3.90139e-11
0.00118554
0.000622354
-4.65317e-11
0.00103659
0.000259143
-5.19315e-11
0.00105233
-0.000151389
-6.17032e-11
0.00123077
-0.000489831
-7.25314e-11
0.00151255
-0.000784264
-8.46393e-11
0.00187396
-0.00110068
-8.66763e-11
0.00228405
-0.00132812
-8.44713e-11
0.00270433
-0.00146345
-7.95875e-11
0.00312415
-0.00154078
-6.99531e-11
0.0035489
-0.0015733
-6.5662e-11
0.003975
-0.00159104
-5.41107e-11
0.00440631
-0.00160683
-4.38223e-11
0.00484581
-0.0016284
-3.51656e-11
0.00528966
-0.00165265
-2.78616e-11
0.00573924
-0.00167806
-2.24908e-11
0.00618964
-0.00170148
-1.83475e-11
0.00663941
-0.00172228
-1.53043e-11
0.0070861
-0.00173602
-1.35236e-11
0.00753093
-0.00174255
-1.17323e-11
0.00796925
-0.00174176
-9.50238e-12
0.00840114
-0.00173448
-7.88883e-12
0.00882233
-0.00172229
-7.47381e-12
0.0092308
-0.00170334
-8.2852e-12
0.00962465
-0.00167997
-8.68158e-12
0.0100021
-0.00165014
-8.66246e-12
0.0103644
-0.00161547
-9.50032e-12
0.0107118
-0.00157392
-1.05382e-11
0.0110439
-0.00152916
-1.13268e-11
0.0113589
-0.0014807
-1.25717e-11
0.0116597
-0.00143109
-1.39906e-11
0.011945
-0.00137844
-1.64104e-11
0.0122143
-0.00132344
-1.68024e-11
0.0124634
-0.001268
-1.76175e-11
0.0126897
-0.00121826
-1.8811e-11
0.0129045
-0.00117674
-2.0427e-11
0.0131074
-0.00112854
-2.0762e-11
0.0132964
-0.00107678
-2.15108e-11
0.0134729
-0.00102492
-2.19729e-11
0.0136364
-0.000973235
-2.1956e-11
0.0137877
-0.000923102
-2.18629e-11
0.0139274
-0.000873764
-2.12998e-11
0.0140557
-0.000826056
-2.01724e-11
0.0141736
-0.000779135
-1.89335e-11
0.0142812
-0.000733837
-1.74437e-11
0.0143795
-0.000689238
-1.56789e-11
0.0144686
-0.000646265
-1.36591e-11
0.0145491
-0.000604058
-1.14185e-11
0.0146218
-0.000563487
-8.96038e-12
0.0146863
-0.000523824
-6.23707e-12
0.0147439
-0.000485744
-3.08283e-12
0.0147938
-0.000448721
-9.32222e-13
0.0148371
-0.000413172
1.71059e-12
0.0148734
-0.000378755
4.7494e-12
0.0149032
-0.00034566
7.66517e-12
0.0149267
-0.000313702
1.0387e-11
0.0149437
-0.000282891
1.29833e-11
0.0149551
-0.000253159
1.55062e-11
0.0149603
-0.00022448
1.77619e-11
0.0149602
-0.000196897
1.97647e-11
0.0149547
-0.000170267
2.15977e-11
0.014944
-0.000144858
2.31729e-11
0.0149288
-0.000120447
2.45799e-11
0.0149089
-9.73648e-05
2.57681e-11
0.0148851
-7.52834e-05
2.6804e-11
0.0148573
-5.43819e-05
2.76733e-11
0.0148258
-3.44692e-05
2.84028e-11
0.0147911
-1.58269e-05
2.90061e-11
0.0147532
1.96273e-06
2.93864e-11
0.0147142
1.70339e-05
2.97555e-11
0.0146732
3.19228e-05
2.99509e-11
0.0146307
4.61281e-05
3.00377e-11
0.0145857
5.95859e-05
3.01048e-11
0.014538
7.22484e-05
3.0115e-11
0.0144888
8.44267e-05
3.00248e-11
0.0144368
9.60472e-05
2.98845e-11
0.0143841
0.000107134
2.97254e-11
0.0143284
0.000117655
2.94659e-11
0.0142726
0.000127728
2.92517e-11
0.0142142
0.000137557
2.88991e-11
0.0141556
0.000147119
2.86031e-11
0.0140948
0.000156803
2.81624e-11
0.0140336
0.000166666
2.7741e-11
0.0139708
0.000177503
2.71684e-11
0.0139074
0.000189742
2.65178e-11
0.0138428
0.00020464
2.5723e-11
0.000223781
2.48883e-11
0.0185718
0.0161941
-4.62034e-12
0.0175387
0.0134284
-6.33777e-12
0.0163153
0.0111858
-9.76306e-12
0.0150291
0.00946692
-1.42837e-11
0.0136827
0.00803069
-1.84244e-11
0.0123341
0.00688219
-2.19145e-11
0.0110116
0.00595352
-2.41934e-11
0.00973431
0.00513996
-2.52527e-11
0.00849662
0.00440417
-2.6884e-11
0.00735072
0.00372454
-2.89389e-11
0.00636463
0.00310978
-3.06548e-11
0.00554765
0.0025408
-3.37078e-11
0.00489877
0.00199807
-3.81751e-11
0.004417
0.00145725
-4.39039e-11
0.00411012
0.00091556
-4.97183e-11
0.00397516
0.000376704
-5.58387e-11
0.00395428
-0.000154703
-5.95981e-11
0.00412978
-0.000693908
-6.61231e-11
0.00448411
-0.00117473
-7.4246e-11
0.00489869
-0.0015564
-7.4539e-11
0.00536511
-0.00183565
-7.38224e-11
0.00584663
-0.00199131
-7.18688e-11
0.00633528
-0.00207455
-6.53715e-11
0.00682379
-0.0021049
-6.09941e-11
0.0073064
-0.00211062
-5.49954e-11
0.00778578
-0.00211908
-4.76224e-11
0.00825948
-0.00213247
-4.03762e-11
0.00872891
-0.00215041
-3.43284e-11
0.00919201
-0.0021679
-2.93354e-11
0.00964929
-0.00218392
-2.59073e-11
0.0100955
-0.00219284
-2.35096e-11
0.0105317
-0.00219391
-2.1755e-11
0.0109535
-0.00218454
-1.98717e-11
0.0113624
-0.00216655
-1.76546e-11
0.0117541
-0.00214046
-1.53581e-11
0.0121276
-0.00210758
-1.35991e-11
0.0124819
-0.00206864
-1.26942e-11
0.0128161
-0.0020239
-1.24842e-11
0.0131305
-0.00197431
-1.20888e-11
0.0134265
-0.00191976
-1.18381e-11
0.013706
-0.00186119
-1.14483e-11
0.0139694
-0.00179905
-1.11732e-11
0.0142186
-0.00173467
-1.12139e-11
0.014451
-0.001669
-1.20197e-11
0.0146672
-0.00160164
-1.24524e-11
0.0148669
-0.00153117
-1.25972e-11
0.0150503
-0.00145997
-1.29216e-11
0.0152152
-0.00139259
-1.34097e-11
0.0153631
-0.00133443
-1.41255e-11
0.0155005
-0.00127643
-1.41197e-11
0.0156293
-0.00121594
-1.45508e-11
0.0157476
-0.00115448
-1.50375e-11
0.0158563
-0.00109253
-1.52759e-11
0.0159546
-0.00103219
-1.52988e-11
0.0160439
-0.000972777
-1.51274e-11
0.0161236
-0.000915514
-1.48555e-11
0.0161947
-0.00085923
-1.43168e-11
0.0162573
-0.000805
-1.35428e-11
0.0163117
-0.000751764
-1.25469e-11
0.0163584
-0.000700442
-1.13334e-11
0.0163973
-0.000650237
-9.91866e-12
0.0164297
-0.000601832
-8.2785e-12
0.0164548
-0.000554722
-6.39908e-12
0.0164745
-0.000509313
-4.08699e-12
0.0164877
-0.000465337
-1.68006e-12
0.0164961
-0.000422945
-3.7037e-14
0.0164986
-0.000382024
2.4617e-12
0.0164967
-0.000342536
5.1427e-12
0.0164894
-0.000304459
7.77292e-12
0.0164781
-0.000267685
1.0342e-11
0.0164616
-0.000232232
1.27942e-11
0.0164413
-0.000198032
1.51391e-11
0.0164162
-0.000165126
1.7314e-11
0.0163874
-0.000133504
1.92839e-11
0.0163541
-0.000103288
2.10537e-11
0.0163175
-7.45332e-05
2.26667e-11
0.0162769
-4.72276e-05
2.40865e-11
0.0162335
-2.16556e-05
2.5357e-11
0.0161873
2.38584e-06
2.64808e-11
0.0161394
2.3993e-05
2.74267e-11
0.0160902
4.46368e-05
2.82369e-11
0.0160387
6.41115e-05
2.88913e-11
0.0159848
8.25595e-05
2.93745e-11
0.0159274
9.98598e-05
2.96605e-11
0.0158687
0.00011658
2.98997e-11
0.0158064
0.000132248
2.99831e-11
0.0157428
0.000147233
3.00282e-11
0.0156763
0.000161286
2.99401e-11
0.0156084
0.000174716
2.97988e-11
0.0155385
0.000187393
2.95954e-11
0.015467
0.000199394
2.93039e-11
0.0153946
0.000210772
2.90132e-11
0.0153206
0.000221613
2.86071e-11
0.0152466
0.000232075
2.82261e-11
0.0151714
0.000242296
2.7717e-11
0.0150966
0.000252566
2.72121e-11
0.0150216
0.000263306
2.65629e-11
0.0149472
0.0002752
2.58345e-11
0.0148737
0.000289023
2.49453e-11
0.000306738
2.39258e-11
0.0193705
0.0162259
-3.35561e-12
0.0187018
0.0140937
-5.66243e-12
0.0178262
0.0120602
-8.80653e-12
0.0168688
0.0104215
-1.26871e-11
0.0158265
0.00906795
-1.75648e-11
0.0147728
0.00793092
-2.048e-11
0.0137105
0.00700658
-2.38775e-11
0.0126419
0.0061988
-2.67114e-11
0.0115803
0.00545274
-3.0372e-11
0.0105437
0.0047489
-3.47473e-11
0.00957998
0.00405956
-3.96231e-11
0.00871891
0.00338676
-4.57025e-11
0.00800308
0.00269658
-5.16911e-11
0.00745338
0.00198769
-5.72668e-11
0.00708984
0.00125041
-6.06484e-11
0.00692802
0.000505569
-6.20155e-11
0.00696674
-0.000235751
-6.1125e-11
0.0071916
-0.000964076
-5.82913e-11
0.00758526
-0.00161958
-5.52788e-11
0.00808147
-0.00210808
-5.18198e-11
0.00860833
-0.0024203
-4.98379e-11
0.00914788
-0.00258457
-4.10638e-11
0.00967916
-0.00265529
-4.91504e-11
0.0101979
-0.00267355
-5.46783e-11
0.0106981
-0.00265614
-5.82029e-11
0.0111786
-0.00264147
-5.42194e-11
0.0116359
-0.00262985
-4.8457e-11
0.0120692
-0.0026222
-4.35798e-11
0.0124825
-0.00261578
-3.99228e-11
0.012875
-0.00260676
-3.63615e-11
0.0132483
-0.00259277
-3.34479e-11
0.0136019
-0.00257093
-3.11716e-11
0.0139372
-0.00254021
-2.8759e-11
0.0142536
-0.0025011
-2.60146e-11
0.014552
-0.00245464
-2.30086e-11
0.0148325
-0.00240225
-2.01144e-11
0.0150955
-0.00234459
-1.76858e-11
0.0153424
-0.00228265
-1.59493e-11
0.0155745
-0.00221722
-1.45574e-11
0.0157919
-0.00214733
-1.32948e-11
0.0159958
-0.00207411
-1.20649e-11
0.0161854
-0.00199775
-1.09841e-11
0.0163618
-0.00191988
-1.01018e-11
0.0165254
-0.00184115
-9.48112e-12
0.0166779
-0.00176243
-8.97389e-12
0.0168189
-0.00168036
-8.94547e-12
0.0169493
-0.00159757
-8.89221e-12
0.0170668
-0.00151724
-8.79509e-12
0.0171706
-0.00144427
-8.61958e-12
0.0172641
-0.0013763
-8.41169e-12
0.0173508
-0.00130859
-8.61625e-12
0.0174292
-0.00123981
-9.06259e-12
0.0175003
-0.00117027
-9.54328e-12
0.017563
-0.0011019
-9.93046e-12
0.0176178
-0.00103446
-1.02012e-11
0.0176646
-0.000969143
-1.03709e-11
0.0177034
-0.000905166
-1.04377e-11
0.0177351
-0.000843299
-1.03129e-11
0.017759
-0.000782852
-1.00194e-11
0.0177764
-0.000724335
-9.50514e-12
0.0177864
-0.000667351
-8.80953e-12
0.0177904
-0.000612165
-7.86245e-12
0.0177877
-0.000558636
-6.68491e-12
0.0177799
-0.000506828
-5.18711e-12
0.0177662
-0.000456739
-3.14818e-12
0.017748
-0.000408292
-1.2554e-12
0.0177249
-0.000361528
1.96459e-13
0.0176974
-0.000316294
2.52023e-12
0.0176657
-0.000272641
5.02454e-12
0.0176298
-0.000230419
7.54651e-12
0.0175901
-0.000189722
1.00249e-11
0.0175465
-0.000150453
1.24251e-11
0.0174997
-0.000112776
1.47561e-11
0.017449
-7.64648e-05
1.67695e-11
0.0173959
-4.23721e-05
1.87704e-11
0.0173396
-1.00028e-05
2.05784e-11
0.0172827
1.95241e-05
2.22991e-11
0.0172237
4.71695e-05
2.38022e-11
0.0171639
7.34626e-05
2.52008e-11
0.0171003
9.83746e-05
2.63318e-11
0.0170355
0.000121832
2.73707e-11
0.0169669
0.000144184
2.8177e-11
0.0168971
0.000165136
2.88697e-11
0.0168237
0.000185102
2.93276e-11
0.0167492
0.000203723
2.9683e-11
0.0166719
0.00022161
2.9864e-11
0.016593
0.000238128
2.99347e-11
0.0165123
0.000254037
2.98977e-11
0.0164298
0.000268608
2.97377e-11
0.0163464
0.000282703
2.95283e-11
0.0162611
0.000295518
2.91869e-11
0.0161756
0.0003079
2.88348e-11
0.0160885
0.000319154
2.83517e-11
0.0160018
0.000330095
2.78734e-11
0.0159141
0.000340221
2.72676e-11
0.0158274
0.000350328
2.66534e-11
0.0157408
0.000360252
2.58961e-11
0.0156559
0.000370995
2.50572e-11
0.0155724
0.000382848
2.40547e-11
0.000397483
2.2818e-11
0.0199437
0.0162044
-3.45255e-12
0.0195461
0.0144897
-5.12505e-12
0.0188656
0.0127359
-8.32292e-12
0.0181213
0.0111619
-1.17561e-11
0.0173238
0.00985997
-1.61032e-11
0.0164845
0.00876326
-2.08237e-11
0.0156508
0.00783273
-2.44867e-11
0.014807
0.00702967
-3.00262e-11
0.0139619
0.00628583
-3.69175e-11
0.0131153
0.00557521
-4.56698e-11
0.0123064
0.00484407
-5.67893e-11
0.0115722
0.00409645
-6.73437e-11
0.0109414
0.00329282
-7.37198e-11
0.0104484
0.00244902
-7.55388e-11
0.0101262
0.00153542
-7.2176e-11
0.0100211
0.000570801
-6.87063e-11
0.0100981
-0.000358125
-5.80378e-11
0.010342
-0.00124934
-4.1512e-11
0.010706
-0.00202764
-3.50488e-11
0.0111167
-0.00255788
-2.42269e-11
0.0115281
-0.00286471
-1.73622e-11
0.0120126
-0.0030996
-1.87867e-11
0.012483
-0.00315389
-2.69901e-11
0.0128712
-0.00310087
-4.44754e-11
0.0133063
-0.0031283
-6.65875e-11
0.0137265
-0.00309881
-6.42106e-11
0.0141209
-0.00305891
-6.03429e-11
0.0144865
-0.00301782
-5.56079e-11
0.0148257
-0.00298181
-5.05311e-11
0.0151435
-0.0029489
-4.62839e-11
0.0154423
-0.002914
-4.31757e-11
0.015724
-0.0028732
-4.03752e-11
0.0159908
-0.00282551
-3.73918e-11
0.0162421
-0.00277059
-3.38349e-11
0.0164801
-0.00270926
-3.00134e-11
0.0167044
-0.00264205
-2.60243e-11
0.0169163
-0.00257033
-2.24207e-11
0.0171169
-0.00249563
-1.927e-11
0.0173058
-0.00241685
-1.64732e-11
0.0174834
-0.00233469
-1.41275e-11
0.0176504
-0.00224978
-1.20533e-11
0.0178071
-0.00216252
-1.01252e-11
0.0179542
-0.00207395
-8.44036e-12
0.0180913
-0.00198474
-7.06148e-12
0.0182191
-0.00189641
-5.63402e-12
0.0183367
-0.00180445
-5.48363e-12
0.0184454
-0.00171235
-5.19826e-12
0.0185432
-0.00162119
-4.80583e-12
0.0186279
-0.00153442
-4.31005e-12
0.018703
-0.00145755
-3.56744e-12
0.0187689
-0.00138045
-3.86119e-12
0.0188264
-0.00130418
-4.29772e-12
0.0188773
-0.00122789
-4.91029e-12
0.0189205
-0.00115245
-5.61707e-12
0.0189563
-0.00107779
-6.31069e-12
0.0189844
-0.00100493
-6.92471e-12
0.0190047
-0.000933641
-7.47206e-12
0.0190181
-0.000864388
-7.88706e-12
0.019024
-0.000796948
-8.18635e-12
0.0190236
-0.000731424
-8.27714e-12
0.0190163
-0.0006678
-8.18921e-12
0.0190032
-0.000605985
-7.83078e-12
0.0189839
-0.000546136
-7.22061e-12
0.0189594
-0.000488038
-6.28472e-12
0.0189293
-0.000431904
-5.01426e-12
0.0188947
-0.000377449
-3.14915e-12
0.0188553
-0.000324867
-1.27508e-12
0.0188117
-0.000273866
1.11648e-13
0.0187639
-0.000224628
2.31613e-12
0.0187121
-0.000176921
4.79013e-12
0.0186562
-0.000131004
7.26963e-12
0.0185967
-8.66951e-05
9.69942e-12
0.0185337
-4.44673e-05
1.21248e-11
0.0184673
-3.93037e-06
1.4024e-11
0.0184006
3.20645e-05
1.63917e-11
0.0183318
6.70521e-05
1.85341e-11
0.0182606
0.000100134
2.04858e-11
0.0181859
0.00013137
2.2206e-11
0.0181092
0.000160892
2.38415e-11
0.0180292
0.00018888
2.51796e-11
0.0179473
0.000215263
2.64319e-11
0.0178624
0.000240253
2.74028e-11
0.0177759
0.000263695
2.8271e-11
0.0176869
0.000285869
2.88835e-11
0.0175964
0.000306534
2.93535e-11
0.0175042
0.000326125
2.96398e-11
0.0174103
0.000344278
2.97567e-11
0.0173155
0.00036147
2.97711e-11
0.0172189
0.00037729
2.96037e-11
0.017122
0.000392222
2.93949e-11
0.0170235
0.000405875
2.90069e-11
0.0169251
0.000418655
2.8606e-11
0.0168257
0.000430284
2.80398e-11
0.0167269
0.000441092
2.74662e-11
0.0166277
0.000450984
2.67445e-11
0.0165299
0.000460252
2.59968e-11
0.0164326
0.000469078
2.51007e-11
0.0163375
0.000477876
2.40968e-11
0.0162443
0.000487297
2.29524e-11
0.000498047
2.14392e-11
0.0204279
0.0161288
-4.72045e-12
0.0201743
0.0147426
-6.4374e-12
0.0196814
0.0132269
-8.7255e-12
0.0190486
0.0117897
-1.21163e-11
0.0183897
0.0105133
-1.62515e-11
0.0177114
0.0094334
-2.15986e-11
0.0170252
0.0085088
-2.73893e-11
0.0163493
0.00769215
-3.37342e-11
0.0156826
0.00693214
-4.90242e-11
0.0150374
0.00619773
-6.25207e-11
0.0144377
0.00541081
-8.00486e-11
0.0138789
0.00461275
-9.32585e-11
0.0133649
0.00376604
-9.54906e-11
0.0130046
0.00276597
-9.75847e-11
0.0128567
0.00162935
-9.47822e-11
0.012845
0.000550222
-5.36609e-11
0.0129772
-0.000528261
-4.71072e-11
0.0132027
-0.00151345
-3.2849e-11
0.0134317
-0.00228322
-5.65559e-12
0.0136329
-0.00276611
3.8851e-11
0.0138375
-0.00308415
1.00887e-11
0.0139912
-0.00326679
4.36997e-12
0.0142789
-0.0034611
-1.08985e-11
0.0147088
-0.00355669
-3.52908e-11
0.0150403
-0.00349173
-5.3243e-11
0.0153874
-0.00348587
-7.43846e-11
0.01576
-0.00347168
-7.44344e-11
0.0161081
-0.00340329
-7.15211e-11
0.0164331
-0.00334145
-6.51121e-11
0.0167319
-0.00327969
-5.88208e-11
0.0170096
-0.00322063
-5.37124e-11
0.0172688
-0.00315987
-4.92718e-11
0.0175147
-0.00309587
-4.48932e-11
0.0177478
-0.00302695
-4.01996e-11
0.017971
-0.00295234
-3.55469e-11
0.0181839
-0.00287343
-3.05334e-11
0.0183868
-0.00278927
-2.61964e-11
0.0185785
-0.00270106
-2.2179e-11
0.018759
-0.00260883
-1.80439e-11
0.0189281
-0.00251417
-1.48618e-11
0.0190862
-0.00241702
-1.19396e-11
0.0192329
-0.00231797
-9.21338e-12
0.0193689
-0.00221723
-6.87304e-12
0.0194939
-0.00211689
-5.09644e-12
0.0196083
-0.00201678
-3.20026e-12
0.0197146
-0.00191673
-2.92371e-12
0.0198118
-0.00181428
-2.46017e-12
0.0198982
-0.00171237
-1.89578e-12
0.0199732
-0.00161284
-1.26241e-12
0.0200341
-0.00152199
-3.09046e-13
0.0200853
-0.00143496
-7.24104e-13
0.0201283
-0.001351
-1.13258e-12
0.0201636
-0.00126743
-1.75554e-12
0.0201915
-0.00118518
-2.61407e-12
0.0202114
-0.00110344
-3.59494e-12
0.0202244
-0.00102352
-4.56362e-12
0.0202291
-0.000945026
-5.5104e-12
0.0202271
-0.000868718
-6.34417e-12
0.0202169
-0.000794324
-7.09716e-12
0.0202
-0.000722081
-7.6419e-12
0.0201757
-0.000651896
-8.01052e-12
0.0201454
-0.000583746
-8.08734e-12
0.0201088
-0.000517686
-7.89726e-12
0.0200671
-0.000453574
-7.36342e-12
0.0200201
-0.0003915
-6.48782e-12
0.0199685
-0.000331282
-5.23343e-12
0.0199122
-0.000272965
-3.42301e-12
0.0198516
-0.000216422
-1.40591e-12
0.0197866
-0.000161657
-2.45023e-14
0.0197179
-0.000108699
2.12455e-12
0.0196456
-5.77371e-05
4.59162e-12
0.0195704
-9.22204e-06
6.99142e-12
0.019494
3.59889e-05
9.46792e-12
0.0194166
7.90756e-05
1.23357e-11
0.0193363
0.000119536
1.45427e-11
0.0192533
0.00015788
1.66683e-11
0.0191685
0.000194392
1.87725e-11
0.0190806
0.000228865
2.06299e-11
0.0189912
0.000261516
2.24364e-11
0.0188986
0.000292289
2.39322e-11
0.0188049
0.000321311
2.53697e-11
0.0187084
0.00034864
2.64885e-11
0.018611
0.000374242
2.75136e-11
0.0185112
0.000398355
2.82587e-11
0.0184104
0.000420752
2.88486e-11
0.018308
0.000441863
2.92381e-11
0.0182041
0.000461313
2.94224e-11
0.0180994
0.000479608
2.94987e-11
0.0179929
0.000496315
2.93402e-11
0.0178863
0.000511907
2.91494e-11
0.0177779
0.000526021
2.87151e-11
0.0176702
0.00053898
2.82889e-11
0.0175611
0.000550596
2.76277e-11
0.0174532
0.000560991
2.69801e-11
0.0173448
0.000570237
2.61194e-11
0.0172382
0.000578265
2.52402e-11
0.0171321
0.000585489
2.41687e-11
0.0170288
0.000591767
2.29663e-11
0.0169276
0.00059809
2.16357e-11
0.000604411
1.97683e-11
0.0208034
0.0160139
-5.18922e-12
0.0206644
0.0148775
-7.35294e-12
0.0203143
0.0135754
-9.66559e-12
0.0198228
0.0122773
-1.33298e-11
0.0192521
0.0110768
-1.82058e-11
0.0186715
0.0100065
-2.46663e-11
0.0180962
0.00907093
-3.35276e-11
0.0175279
0.00824241
-4.54245e-11
0.0169968
0.00743825
-6.51175e-11
0.0165287
0.00663074
-8.77892e-11
0.0160472
0.00584066
-1.13428e-10
0.0156265
0.00498573
-1.1832e-10
0.0153548
0.00398229
-1.26818e-10
0.0152719
0.0027841
-1.37054e-10
0.0152441
0.00160932
-9.03016e-11
0.0153438
0.000421683
-3.82226e-11
0.0154865
-0.000699319
-2.87684e-11
0.0156049
-0.00165197
-2.09228e-12
0.0156162
-0.00229184
4.63446e-11
0.0156207
-0.00276347
5.86862e-11
0.015654
-0.00311166
4.2329e-11
0.0157473
-0.00336778
1.07246e-12
0.0158223
-0.00354588
-2.53172e-12
0.0159971
-0.00374516
-1.063e-11
0.0163508
-0.00386715
-2.86711e-11
0.0166786
-0.0038493
-6.44281e-11
0.0169894
-0.00382569
-8.44842e-11
0.0173419
-0.00379839
-8.69216e-11
0.0176931
-0.0037323
-8.0598e-11
0.0180176
-0.00363991
-7.30713e-11
0.0183105
-0.00354647
-6.55103e-11
0.0185752
-0.00345498
-5.82851e-11
0.0188176
-0.00336566
-5.15449e-11
0.0190423
-0.00327679
-4.52643e-11
0.0192548
-0.00318599
-3.95425e-11
0.0194545
-0.00309209
-3.40221e-11
0.0196425
-0.0029933
-2.89666e-11
0.0198197
-0.00289109
-2.43292e-11
0.0199843
-0.00278447
-1.94868e-11
0.0201373
-0.00267625
-1.5849e-11
0.020278
-0.00256517
-1.20115e-11
0.0204054
-0.00245207
-8.9272e-12
0.0205217
-0.00233908
-6.13213e-12
0.0206263
-0.0022267
-4.03038e-12
0.0207207
-0.0021148
-2.28235e-12
0.0208072
-0.00200564
-8.39524e-13
0.0208849
-0.00189329
-6.51004e-13
0.0209528
-0.00178147
-2.85532e-13
0.0210105
-0.00167102
2.40969e-13
0.0210556
-0.00156754
8.27209e-13
0.0210893
-0.00146969
6.31653e-13
0.0211139
-0.00137694
4.67357e-13
0.0211304
-0.00128576
-7.32911e-14
0.0211403
-0.00119668
-9.07889e-13
0.0211426
-0.00110859
-1.99555e-12
0.0211388
-0.00102237
-3.18006e-12
0.0211274
-0.000937649
-4.41684e-12
0.0211101
-0.00085506
-5.56314e-12
0.0210853
-0.000774471
-6.64216e-12
0.0210546
-0.000696139
-7.50539e-12
0.0210166
-0.000620014
-8.189e-12
0.0209728
-0.000546109
-8.56057e-12
0.0209226
-0.000474419
-8.65713e-12
0.0208671
-0.00040484
-8.39421e-12
0.0208064
-0.000337366
-7.79193e-12
0.0207411
-0.000271858
-6.82099e-12
0.0206713
-0.000208291
-5.47189e-12
0.0205974
-0.000146628
-3.62638e-12
0.0205196
-8.67286e-05
-1.4441e-12
0.0204385
-2.94145e-05
-8.35104e-14
0.0203554
2.49838e-05
2.03581e-12
0.0202706
7.65186e-05
4.7166e-12
0.0201835
0.00012547
7.20963e-12
0.0200941
0.000172002
9.8317e-12
0.0200025
0.000216163
1.23039e-11
0.0199081
0.0002579
1.4617e-11
0.0198125
0.000297473
1.68887e-11
0.019714
0.000334886
1.89116e-11
0.019615
0.000370176
2.08793e-11
0.0195133
0.000403475
2.2549e-11
0.0194115
0.000434656
2.41453e-11
0.0193075
0.000464092
2.54256e-11
0.0192033
0.000491404
2.65873e-11
0.0190974
0.000517223
2.74651e-11
0.0189908
0.000540918
2.81636e-11
0.0188831
0.000563322
2.86499e-11
0.0187741
0.000583649
2.89052e-11
0.0186647
0.000602802
2.90356e-11
0.0185538
0.000619967
2.89038e-11
0.0184429
0.000635964
2.87194e-11
0.0183307
0.000650086
2.82645e-11
0.0182191
0.000662949
2.77967e-11
0.0181066
0.000674045
2.70651e-11
0.0179953
0.000683721
2.63229e-11
0.0178839
0.000691721
2.53301e-11
0.0177744
0.000698132
2.4291e-11
0.017666
0.000703005
2.30119e-11
0.0175607
0.000706201
2.15556e-11
0.0174584
0.000708463
1.99703e-11
0.000709411
1.76535e-11
0.0211031
0.0159262
-6.47134e-12
0.0210298
0.0149467
-9.30709e-12
0.0207834
0.0138172
-1.22637e-11
0.0204093
0.0126456
-1.6421e-11
0.019957
0.0115223
-2.23705e-11
0.0194602
0.0104892
-3.16957e-11
0.0189771
0.00954018
-4.4041e-11
0.0185187
0.00867531
-6.64895e-11
0.0181206
0.0077988
-9.25044e-11
0.0177127
0.00698607
-1.29193e-10
0.0173834
0.0061125
-1.37244e-10
0.0171967
0.00511303
-1.53397e-10
0.0171991
0.00389724
-1.80038e-10
0.0172597
0.00266141
-1.40352e-10
0.017359
0.0014769
-5.81799e-11
0.0174771
0.000273745
-4.46493e-11
0.01755
-0.000793807
-1.41383e-11
0.0174868
-0.00158993
3.32191e-11
0.0173734
-0.00214805
1.02821e-10
0.0172437
-0.00260986
8.11332e-11
0.0171527
-0.00300602
5.27528e-11
0.0171253
-0.00334049
2.26115e-11
0.017175
-0.00360738
-9.6181e-12
0.017223
-0.00380704
-1.49959e-11
0.0173587
-0.00402017
-2.59862e-11
0.0176387
-0.00415633
-4.39949e-11
0.0179495
-0.00417027
-6.76917e-11
0.0182177
-0.00410891
-8.12586e-11
0.0185342
-0.00409186
-8.47647e-11
0.018869
-0.00401536
-8.21918e-11
0.0191802
-0.00389591
-7.65072e-11
0.0194586
-0.00376806
-6.8278e-11
0.0197058
-0.00364442
-5.92562e-11
0.0199272
-0.00352637
-5.08925e-11
0.0201299
-0.00341251
-4.35625e-11
0.0203162
-0.00329934
-3.70498e-11
0.0204913
-0.00318481
-3.13156e-11
0.0206529
-0.00306786
-2.62115e-11
0.0208038
-0.00294759
-2.13831e-11
0.0209426
-0.00282524
-1.69922e-11
0.0210682
-0.0027004
-1.29517e-11
0.0211833
-0.00257589
-1.03629e-11
0.0212868
-0.00244997
-7.1796e-12
0.0213795
-0.00232543
-4.34382e-12
0.0214631
-0.00220225
-2.09576e-12
0.0215383
-0.00208326
-8.35249e-13
0.0216058
-0.00196161
-6.06016e-13
0.0216651
-0.00184103
-2.15588e-13
0.0217155
-0.00172097
2.42147e-13
0.0217531
-0.00160534
8.0362e-13
0.0217806
-0.00149852
9.7919e-13
0.0217968
-0.00139517
6.76014e-13
0.0218038
-0.00129551
2.69149e-13
0.0218039
-0.00119906
-3.69499e-13
0.0217973
-0.00110454
-1.36935e-12
0.0217851
-0.00101209
-2.60646e-12
0.0217661
-0.000921466
-3.99095e-12
0.0217409
-0.000832817
-5.33296e-12
0.0217083
-0.000746344
-6.60597e-12
0.0216691
-0.000662001
-7.65019e-12
0.0216228
-0.000580105
-8.49619e-12
0.0215703
-0.000500411
-9.0189e-12
0.0215115
-0.000423178
-9.26685e-12
0.0214471
-0.000348072
-9.16059e-12
0.0213772
-0.000275252
-8.73737e-12
0.0213022
-0.000204387
-7.96771e-12
0.0212224
-0.000135606
-6.86337e-12
0.0211383
-6.87442e-05
-5.36792e-12
0.0210507
-4.3654e-06
-3.54643e-12
0.0209615
5.6226e-05
-1.29495e-12
0.0208704
0.00011445
2.57365e-13
0.0207768
0.000169917
2.6324e-12
0.0206814
0.000222674
5.17341e-12
0.0205833
0.000272869
7.6697e-12
0.0204834
0.000320506
1.02044e-11
0.0203806
0.000365641
1.2606e-11
0.0202765
0.000408224
1.49921e-11
0.0201697
0.000448509
1.71593e-11
0.0200622
0.000486301
1.92682e-11
0.0199525
0.000522015
2.11007e-11
0.0198424
0.000555253
2.28304e-11
0.0197306
0.000586663
2.42643e-11
0.0196184
0.000615615
2.55387e-11
0.0195052
0.000642967
2.65421e-11
0.0193912
0.000667897
2.73258e-11
0.0192768
0.000691381
2.78991e-11
0.0191611
0.000712526
2.8209e-11
0.0190456
0.000732278
2.83816e-11
0.0189287
0.000749815
2.82716e-11
0.0188123
0.000765903
2.80805e-11
0.0186947
0.000779898
2.7608e-11
0.0185781
0.000792279
2.70815e-11
0.0184609
0.000802638
2.6282e-11
0.0183451
0.000811097
2.54199e-11
0.0182296
0.00081751
2.43058e-11
0.0181165
0.000821574
2.30646e-11
0.0180049
0.000823496
2.15542e-11
0.0178971
0.000822578
1.97693e-11
0.0177929
0.000819844
1.78822e-11
0.000813939
1.50536e-11
0.0214205
0.0158986
-9.77739e-12
0.0213528
0.0150112
-1.22873e-11
0.0211676
0.0139963
-1.63026e-11
0.0208709
0.0129338
-2.20153e-11
0.0205106
0.01187
-3.09755e-11
0.0201178
0.010867
-4.33498e-11
0.0197263
0.00990166
-6.73937e-11
0.0194012
0.00896324
-9.58282e-11
0.01907
0.00806885
-1.38604e-10
0.0188352
0.00715921
-1.50082e-10
0.0187243
0.00614739
-1.74952e-10
0.0188255
0.00492052
-2.21543e-10
0.0189648
0.00366751
-2.00927e-10
0.0190991
0.00248065
-8.06394e-11
0.0192923
0.00124733
-7.35481e-11
0.0194004
0.000143647
-3.9958e-11
0.0193426
-0.000733499
2.50317e-11
0.0191068
-0.00132324
1.17648e-10
0.018864
-0.00187488
1.00597e-10
0.0186479
-0.00236745
7.78146e-11
0.0184775
-0.00281987
5.14321e-11
0.018368
-0.00322569
2.72972e-11
0.0183291
-0.00357478
2.82373e-12
0.0183617
-0.00385558
-2.30527e-11
0.0183903
-0.00406549
-2.53877e-11
0.0184742
-0.00425786
-3.08881e-11
0.018681
-0.00440123
-4.36216e-11
0.0189816
-0.00444481
-6.7039e-11
0.0192062
-0.00435466
-7.41354e-11
0.0194831
-0.00433326
-8.07359e-11
0.019796
-0.00425001
-8.15478e-11
0.0200936
-0.00410541
-7.83631e-11
0.020368
-0.00395491
-6.97601e-11
0.0206149
-0.00380305
-5.97922e-11
0.0208353
-0.00365673
-5.02178e-11
0.0210333
-0.00351563
-4.18056e-11
0.0212112
-0.00337861
-3.47271e-11
0.0213729
-0.00324281
-2.88517e-11
0.0215199
-0.00310757
-2.37201e-11
0.0216538
-0.00297064
-1.95331e-11
0.0217747
-0.00283326
-1.55828e-11
0.0218843
-0.00269455
-1.22589e-11
0.0219859
-0.00255769
-8.95986e-12
0.0220778
-0.00242112
-5.94601e-12
0.0221603
-0.00228631
-3.9356e-12
0.0222323
-0.00215539
-2.98616e-12
0.0222993
-0.00202724
-1.38823e-12
0.0223559
-0.00189681
-1.18705e-12
0.0224017
-0.00176659
-8.24022e-13
0.0224357
-0.00163981
-3.51655e-13
0.0224562
-0.00152017
3.31336e-13
0.0224663
-0.00140704
-5.37149e-14
0.0224672
-0.00129871
-3.47882e-13
0.0224609
-0.00119427
-7.64103e-13
0.022447
-0.00109264
-1.55827e-12
0.0224275
-0.000993749
-2.64887e-12
0.0224007
-0.000897035
-3.9806e-12
0.0223682
-0.000802485
-5.3227e-12
0.0223284
-0.000710139
-6.61977e-12
0.0222822
-0.000620008
-7.7099e-12
0.022229
-0.000532331
-8.5891e-12
0.0221697
-0.000447
-9.17751e-12
0.0221041
-0.000364175
-9.48608e-12
0.0220329
-0.000283649
-9.48999e-12
0.0219565
-0.000205429
-9.19674e-12
0.0218751
-0.000129296
-8.60644e-12
0.021789
-5.54232e-05
-7.72684e-12
0.0216993
1.55843e-05
-6.52011e-12
0.021607
8.36843e-05
-4.53394e-12
0.0215111
0.000148546
-2.35967e-12
0.0214126
0.000210607
-8.83209e-13
0.0213116
0.00026978
8.56624e-13
0.0212087
0.000326238
3.4182e-12
0.0211033
0.000379844
5.87774e-12
0.0209965
0.000430789
8.39683e-12
0.0208874
0.000478931
1.08151e-11
0.0207773
0.000524407
1.32577e-11
0.0206651
0.000567238
1.55041e-11
0.0205525
0.000607447
1.77025e-11
0.0204381
0.000645264
1.96402e-11
0.0203236
0.000680487
2.14583e-11
0.0202079
0.000713583
2.30063e-11
0.0200918
0.000744112
2.43597e-11
0.019975
0.000772724
2.54706e-11
0.0198572
0.000798826
2.63208e-11
0.0197392
0.000823122
2.69739e-11
0.0196201
0.000845007
2.7332e-11
0.019501
0.000865096
2.7539e-11
0.0193808
0.000882888
2.74486e-11
0.0192612
0.000898791
2.7238e-11
0.0191408
0.000912469
2.6741e-11
0.0190214
0.00092404
2.61352e-11
0.018902
0.00093334
2.52456e-11
0.0187844
0.000940138
2.4236e-11
0.0186677
0.000944421
2.29092e-11
0.0185539
0.000945557
2.14118e-11
0.0184424
0.000943709
1.96225e-11
0.0183355
0.000937721
1.73948e-11
0.0182335
0.0009285
1.51009e-11
0.000914797
1.17554e-11
0.0217418
0.0159241
-1.3835e-11
0.0216564
0.0150906
-1.73212e-11
0.0215
0.0141453
-2.29754e-11
0.0212663
0.0131557
-3.17257e-11
0.0209798
0.0121376
-4.6774e-11
0.0206813
0.0111417
-6.69524e-11
0.0204042
0.0101362
-1.03376e-10
0.0201568
0.00914487
-1.5557e-10
0.0199672
0.00818967
-1.65036e-10
0.0199231
0.00712821
-1.8752e-10
0.0201038
0.00588271
-2.21807e-10
0.0203238
0.00457734
-2.70645e-10
0.0205466
0.00336739
-1.73134e-10
0.0207926
0.0022042
-5.83787e-11
0.0209212
0.00108923
-4.12072e-11
0.0208811
0.000172364
1.89407e-12
0.0206181
-0.000444155
8.63758e-11
0.0203558
-0.00102631
1.03667e-10
0.0200842
-0.00156861
8.72402e-11
0.0198399
-0.00209756
6.52375e-11
0.0196347
-0.00260087
4.33292e-11
0.0194769
-0.0030646
2.40537e-11
0.0193709
-0.00347233
6.31816e-12
0.0193229
-0.00381692
-1.06509e-11
0.0193369
-0.00409162
-2.22073e-11
0.0193571
-0.00429874
-3.84907e-11
0.0193887
-0.00445261
-4.1944e-11
0.0195115
-0.00459394
-5.12638e-11
0.0197721
-0.00465015
-6.70667e-11
0.0199642
-0.00455859
-6.43876e-11
0.0201844
-0.00450862
-7.6039e-11
0.0204606
-0.00442243
-8.36187e-11
0.0207504
-0.00428249
-7.9519e-11
0.0210246
-0.00410965
-7.11428e-11
0.0212715
-0.00393078
-6.08942e-11
0.0214875
-0.00375463
-5.06677e-11
0.0216751
-0.00358544
-4.16216e-11
0.021839
-0.00342334
-3.40261e-11
0.0219833
-0.00326676
-2.78958e-11
0.0221124
-0.00311309
-2.30632e-11
0.0222293
-0.00296121
-1.91928e-11
0.0223348
-0.00281027
-1.57311e-11
0.0224316
-0.00266067
-1.27546e-11
0.0225192
-0.00251318
-9.35228e-12
0.0225978
-0.00236769
-6.97923e-12
0.0226656
-0.00222478
-5.4621e-12
0.0227242
-0.00208657
-3.4276e-12
0.0227735
-0.00194727
-3.12279e-12
0.0228138
-0.00180843
-2.6079e-12
0.0228439
-0.00167164
-1.94185e-12
0.0228614
-0.0015396
-1.00215e-12
0.0228702
-0.00141765
-1.19376e-12
0.0228689
-0.00129922
-1.39102e-12
0.0228598
-0.00118605
-1.63922e-12
0.022843
-0.0010768
-2.1759e-12
0.0228197
-0.000970931
-2.99123e-12
0.0227888
-0.000867778
-4.07421e-12
0.0227515
-0.000767116
-5.2277e-12
0.0227067
-0.000668859
-6.39007e-12
0.0226555
-0.000572945
-7.39116e-12
0.0225972
-0.000479533
-8.22822e-12
0.0225326
-0.000388545
-8.81188e-12
0.0224617
-0.00030011
-9.16687e-12
0.0223853
-0.000214053
-9.25592e-12
0.0223037
-0.000130317
-9.09981e-12
0.0222173
-4.89673e-05
-8.69315e-12
0.0221271
2.94264e-05
-7.92598e-12
0.0220334
0.00010458
-6.75944e-12
0.0219364
0.000176706
-5.39629e-12
0.0218357
0.000245687
-3.41715e-12
0.0217321
0.000311635
-1.41986e-12
0.0216253
0.000374532
-7.24433e-14
0.0215166
0.000434478
2.02282e-12
0.0214051
0.000491417
4.42715e-12
0.0212926
0.000545385
6.9111e-12
0.0211777
0.000596444
9.29711e-12
0.0210625
0.000644493
1.17433e-11
0.0209452
0.000689835
1.40063e-11
0.0208281
0.00073215
1.62414e-11
0.0207095
0.000772049
1.82354e-11
0.0205911
0.00080893
2.01025e-11
0.0204719
0.000843669
2.17235e-11
0.0203524
0.000875431
2.31241e-11
0.0202327
0.000905231
2.43053e-11
0.0201121
0.000932145
2.51964e-11
0.0199917
0.000957151
2.58994e-11
0.0198701
0.000979394
2.6285e-11
0.0197489
0.000999672
2.65044e-11
0.0196268
0.00101729
2.64129e-11
0.0195054
0.00103279
2.6165e-11
0.0193838
0.00104564
2.56181e-11
0.0192632
0.00105606
2.49117e-11
0.0191433
0.00106363
2.38971e-11
0.0190253
0.00106821
2.26974e-11
0.0189092
0.00106941
2.11442e-11
0.0187965
0.00106663
1.9334e-11
0.0186876
0.0010595
1.7104e-11
0.0185851
0.00104645
1.41965e-11
0.0184885
0.00102964
1.19915e-11
0.00100834
8.64523e-12
0.0221282
0.0159933
-1.86074e-11
0.0220052
0.0152041
-2.42146e-11
0.0218384
0.014299
-3.35179e-11
0.0216365
0.0133388
-4.86683e-11
0.0214131
0.0123353
-7.1313e-11
0.0212092
0.0113033
-1.07343e-10
0.0210484
0.0102252
-1.69369e-10
0.0208919
0.00922589
-1.82224e-10
0.0208904
0.00810516
-2.07568e-10
0.0211124
0.00680413
-2.46477e-10
0.0214355
0.00542784
-3.00398e-10
0.0217385
0.00418689
-2.11079e-10
0.0219947
0.00306818
-9.51499e-11
0.0222094
0.00195511
-7.49517e-11
0.0222289
0.00104871
-2.82942e-11
0.0219599
0.000456212
6.0137e-11
0.021689
-0.000128098
1.1992e-10
0.0213974
-0.000697368
1.05961e-10
0.021124
-0.00126991
7.35369e-11
0.0208781
-0.00183638
4.95064e-11
0.0206634
-0.00237735
3.30196e-11
0.0204799
-0.00287809
2.0007e-11
0.0203315
-0.00332432
8.17055e-12
0.0202222
-0.00371148
-2.89363e-12
0.0201541
-0.00403131
-1.47471e-11
0.0201291
-0.00428737
-2.61951e-11
0.0201424
-0.00448401
-3.33633e-11
0.0201378
-0.00461586
-4.58236e-11
0.0201734
-0.00471283
-4.83287e-11
0.0203689
-0.00478394
-5.33508e-11
0.0205555
-0.00472625
-6.05136e-11
0.0207294
-0.00463084
-6.79308e-11
0.0209713
-0.00456004
-7.65513e-11
0.0212473
-0.00442033
-7.65999e-11
0.0215176
-0.00423328
-7.06376e-11
0.0217648
-0.00403118
-6.18316e-11
0.0219835
-0.00382897
-5.20333e-11
0.0221727
-0.00363428
-4.26303e-11
0.022336
-0.00344819
-3.47332e-11
0.0224772
-0.00327068
-2.8584e-11
0.0226013
-0.0030996
-2.38762e-11
0.0227142
-0.0029336
-1.99808e-11
0.0228156
-0.00277089
-1.66863e-11
0.0229093
-0.00261095
-1.35393e-11
0.0229922
-0.00245455
-1.01692e-11
0.0230646
-0.00230013
-8.37154e-12
0.0231253
-0.00214954
-6.53869e-12
0.0231801
-0.00200392
-4.6531e-12
0.0232249
-0.00185518
-4.45105e-12
0.0232601
-0.00170852
-4.03861e-12
0.023284
-0.00156509
-3.40181e-12
0.0232956
-0.00143019
-2.43549e-12
0.023297
-0.0013019
-2.22567e-12
0.0232898
-0.00117951
-2.36166e-12
0.0232739
-0.0010617
-2.66306e-12
0.0232503
-0.000947719
-3.10756e-12
0.0232186
-0.000837125
-3.78302e-12
0.0231797
-0.00072951
-4.58791e-12
0.023133
-0.000624763
-5.47942e-12
0.0230795
-0.000522615
-6.3071e-12
0.0230184
-0.000423154
-7.05402e-12
0.0229506
-0.000326204
-7.63329e-12
0.0228759
-0.000231878
-8.05041e-12
0.0227952
-0.000139919
-8.24741e-12
0.0227087
-5.05302e-05
-8.26315e-12
0.0226175
3.58471e-05
-7.98228e-12
0.0225223
0.000118867
-7.37306e-12
0.0224233
0.000198544
-6.4911e-12
0.0223211
0.000274946
-5.33529e-12
0.0222154
0.000348056
-3.79866e-12
0.022107
0.000417959
-1.80487e-12
0.0219955
0.000484583
-6.52411e-13
0.021882
0.00054801
9.726e-13
0.0217656
0.000608209
3.30652e-12
0.0216481
0.000665182
5.69654e-12
0.0215282
0.000719053
8.00927e-12
0.021408
0.000769663
1.03993e-11
0.0212862
0.000817375
1.26396e-11
0.0211644
0.000861814
1.48527e-11
0.0210419
0.000903607
1.68624e-11
0.0209194
0.000942169
1.87318e-11
0.0207967
0.000978306
2.03866e-11
0.0206736
0.00101131
2.18049e-11
0.0205506
0.00104201
2.30189e-11
0.0204268
0.00106971
2.39346e-11
0.0203031
0.0010951
2.4653e-11
0.0201786
0.00111762
2.50539e-11
0.0200542
0.00113774
2.52541e-11
0.0199295
0.00115501
2.51444e-11
0.0198054
0.00116968
2.48241e-11
0.0196817
0.00118136
2.41946e-11
0.0195596
0.00119002
2.33393e-11
0.0194388
0.00119526
2.21385e-11
0.0193211
0.00119665
2.06792e-11
0.0192061
0.00119374
1.87808e-11
0.0190962
0.00118537
1.65661e-11
0.0189916
0.00117077
1.33928e-11
0.0188944
0.00114975
1.1417e-11
0.0188033
0.00112508
8.56333e-12
0.00109155
3.30379e-12
0.0224925
0.0160973
-2.44653e-11
0.0223666
0.0153186
-3.47964e-11
0.0222045
0.0144413
-5.0865e-11
0.0220323
0.0134797
-7.69821e-11
0.0218803
0.0124452
-1.08779e-10
0.021789
0.0113171
-1.87852e-10
0.0216458
0.0102824
-2.01575e-10
0.0216899
0.00909134
-2.23063e-10
0.0219729
0.00771398
-2.58831e-10
0.0223676
0.00626646
-3.29388e-10
0.0227125
0.00498406
-2.36859e-10
0.0229831
0.00386114
-1.13052e-10
0.0232711
0.00273951
-9.3099e-11
0.0233343
0.00186492
-5.07235e-11
0.0230712
0.00131639
1.59458e-11
0.0228161
0.000757092
1.2507e-10
0.0225427
0.000186079
1.10919e-10
0.0222764
-0.000401865
8.37551e-11
0.0220275
-0.00100231
5.8531e-11
0.0217955
-0.0015929
4.10458e-11
0.0215815
-0.00215469
2.88708e-11
0.0213849
-0.0026745
1.89952e-11
0.0212088
-0.00314296
9.93779e-12
0.0210544
-0.00355532
1.24989e-12
0.0209279
-0.00390829
-6.8565e-12
0.0208336
-0.00420187
-1.55015e-11
0.0207699
-0.00443519
-2.39338e-11
0.0207479
-0.00461233
-3.18986e-11
0.0207473
-0.00473689
-4.24894e-11
0.0207473
-0.00480715
-4.43143e-11
0.0208531
-0.00485776
-4.892e-11
0.0210331
-0.00483869
-5.54478e-11
0.0211847
-0.0047396
-6.07403e-11
0.0213855
-0.00465461
-7.15772e-11
0.0216415
-0.00452453
-7.23373e-11
0.0218999
-0.00432465
-6.93979e-11
0.0221481
-0.00410998
-6.18391e-11
0.0223741
-0.003888
-5.27455e-11
0.0225708
-0.00366939
-4.39216e-11
0.0227405
-0.00346018
-3.6254e-11
0.0228867
-0.00326194
-2.98621e-11
0.023012
-0.00307315
-2.45734e-11
0.0231241
-0.00289262
-2.04062e-11
0.0232226
-0.00271765
-1.67781e-11
0.0233101
-0.00254714
-1.38907e-11
0.023388
-0.00238155
-1.1077e-11
0.0234548
-0.00221862
-9.11955e-12
0.0235112
-0.00206147
-7.0424e-12
0.0235597
-0.00190572
-6.70275e-12
0.0235984
-0.00174942
-6.10248e-12
0.0236256
-0.00159487
-5.23219e-12
0.0236391
-0.00144547
-4.09186e-12
0.0236431
-0.00130741
-2.33229e-12
0.0236364
-0.00117402
-2.41565e-12
0.0236199
-0.00104648
-2.47611e-12
0.0235946
-0.000923332
-2.49896e-12
0.0235608
-0.00080438
-2.71421e-12
0.0235193
-0.00068906
-3.1291e-12
0.0234702
-0.000577255
-3.72625e-12
0.0234141
-0.000468451
-4.38643e-12
0.0233506
-0.000362678
-5.05219e-12
0.0232803
-0.000259578
-5.68746e-12
0.023203
-0.000159196
-6.15548e-12
0.0231195
-6.13151e-05
-6.489e-12
0.0230304
3.3481e-05
-6.65466e-12
0.0229367
0.000124788
-6.58408e-12
0.0228386
0.000212592
-6.25427e-12
0.0227362
0.000296803
-5.69454e-12
0.0226302
0.000377572
-4.81517e-12
0.0225203
0.000454765
-3.58337e-12
0.0224077
0.000528565
-1.83126e-12
0.0222917
0.000598799
-8.71753e-13
0.022174
0.00066562
5.67406e-13
0.0220536
0.000728954
2.55763e-12
0.0219322
0.000788829
4.80115e-12
0.0218088
0.000845376
6.99508e-12
0.0216849
0.00089841
9.28202e-12
0.0215595
0.000948339
1.14528e-11
0.0214339
0.000994729
1.36043e-11
0.0213076
0.00103826
1.55788e-11
0.0211812
0.00107829
1.74139e-11
0.021055
0.00111566
1.90515e-11
0.0209285
0.00114965
2.04476e-11
0.0208026
0.00118107
2.16497e-11
0.0206762
0.00120926
2.25411e-11
0.0205504
0.00123482
2.32419e-11
0.0204242
0.00125728
2.36017e-11
0.0202987
0.00127691
2.37601e-11
0.0201733
0.00129344
2.35746e-11
0.0200488
0.00130676
2.31567e-11
0.0199252
0.00131673
2.23882e-11
0.0198036
0.0013228
2.13365e-11
0.0196841
0.00132481
1.98816e-11
0.0195686
0.00132168
1.80518e-11
0.019457
0.00131296
1.5745e-11
0.0193527
0.00129639
1.23827e-11
0.0192551
0.00127343
1.04687e-11
0.019164
0.0012445
6.78914e-12
0.0190849
0.00120552
2.69224e-12
0.00115467
-4.61959e-12
0.0228689
0.0162402
-3.59724e-11
0.0227356
0.0154334
-5.17775e-11
0.022602
0.0145442
-8.09338e-11
0.0224804
0.0135514
-1.21237e-10
0.0224328
0.0124206
-1.8316e-10
0.0223015
0.011362
-2.06124e-10
0.0223774
0.0101051
-2.55496e-10
0.0227202
0.00863094
-3.03605e-10
0.0231696
0.00712705
-3.26051e-10
0.0235362
0.0058014
-2.40457e-10
0.0238373
0.00463013
-1.09392e-10
0.0241698
0.0034921
-8.63638e-11
0.0242334
0.00265551
-3.74984e-11
0.0239636
0.00214531
3.36385e-11
0.0237298
0.00158684
9.3217e-11
0.0234934
0.00102509
8.77743e-11
0.0232578
0.000443011
7.12869e-11
0.0230311
-0.00016035
5.59171e-11
0.0228136
-0.000775676
4.25719e-11
0.0226026
-0.00137264
3.24642e-11
0.0223953
-0.00193944
2.44334e-11
0.0221943
-0.002464
1.78278e-11
0.0220001
-0.00294226
1.16357e-11
0.021818
-0.00336793
5.89445e-12
0.0216519
-0.00374204
-8.45112e-14
0.0215074
-0.00406112
-6.32924e-12
0.0213908
-0.00432837
-1.34428e-11
0.0213079
-0.00454218
-2.10405e-11
0.0212592
-0.0047049
-2.88329e-11
0.0212503
-0.00481734
-3.41671e-11
0.0212503
-0.00488169
-4.4072e-11
0.0212903
-0.00490198
-4.61821e-11
0.0214182
-0.00489297
-4.97491e-11
0.0215806
-0.00484471
-5.63049e-11
0.0217482
-0.00472351
-6.29443e-11
0.0219738
-0.00458429
-6.87442e-11
0.022229
-0.00439756
-6.57513e-11
0.0224813
-0.00417098
-6.03752e-11
0.0227162
-0.00393218
-5.33596e-11
0.0229257
-0.00369359
-4.53609e-11
0.0231043
-0.00346169
-3.72289e-11
0.0232573
-0.00324233
-2.99205e-11
0.0233861
-0.00303493
-2.39748e-11
0.0234972
-0.00283826
-1.94268e-11
0.0235932
-0.00265035
-1.64166e-11
0.0236757
-0.0024691
-1.31839e-11
0.0237473
-0.00229434
-1.16137e-11
0.0238065
-0.00212381
-9.71942e-12
0.0238581
-0.00195987
-7.41847e-12
0.0238995
-0.00179323
-7.1016e-12
0.0239313
-0.0016292
-6.34475e-12
0.0239519
-0.00146811
-4.95397e-12
0.0239579
-0.00131454
-2.46443e-12
0.0239542
-0.00117101
-1.78378e-12
0.0239392
-0.00103199
-1.36944e-12
0.0239146
-0.000898615
-9.53288e-13
0.0238807
-0.000770469
-7.46373e-13
0.0238386
-0.000646718
-7.95015e-13
0.0237882
-0.000527174
-1.11855e-12
0.0237305
-0.000411181
-1.63076e-12
0.0236652
-0.000298658
-2.24048e-12
0.0235929
-0.000189107
-2.95711e-12
0.0235135
-8.2414e-05
-3.44861e-12
0.0234276
2.12813e-05
-3.97315e-12
0.0233361
0.000121331
-4.41997e-12
0.0232394
0.000217661
-4.65808e-12
0.0231381
0.000310304
-4.62114e-12
0.0230326
0.000399111
-4.37446e-12
0.0229235
0.000484268
-3.79667e-12
0.022811
0.00056555
-2.78469e-12
0.0226958
0.000643201
-1.51951e-12
0.0225774
0.000716978
-7.99856e-13
0.0224571
0.000787123
4.19468e-13
0.022334
0.000853463
2.07837e-12
0.0222097
0.000916146
4.11761e-12
0.0220829
0.000975191
6.12991e-12
0.0219558
0.00103053
8.26845e-12
0.0218269
0.00108248
1.03063e-11
0.0216981
0.00113068
1.23631e-11
0.0215685
0.00117577
1.42488e-11
0.021439
0.0012171
1.60248e-11
0.0213098
0.00125556
1.76099e-11
0.0211805
0.00129033
1.89612e-11
0.0210519
0.0013223
2.01323e-11
0.0209231
0.00135074
2.09736e-11
0.0207953
0.00137623
2.16413e-11
0.0206671
0.00139831
2.19244e-11
0.0205405
0.00141708
2.20151e-11
0.0204139
0.00143238
2.16961e-11
0.0202896
0.00144374
2.11343e-11
0.0201665
0.0014512
2.0131e-11
0.0200468
0.00145359
1.88038e-11
0.0199305
0.00145101
1.6914e-11
0.0198198
0.00144136
1.46476e-11
0.019716
0.00142382
1.10136e-11
0.0196206
0.00139816
9.0571e-12
0.0195318
0.00136647
5.56398e-12
0.019455
0.0013232
-2.08807e-14
0.0193974
0.00126096
-6.92024e-12
0.00119361
-1.34569e-11
0.0232408
0.0164181
-5.20325e-11
0.0231044
0.0155321
-8.39955e-11
0.0230364
0.0145628
-1.26953e-10
0.0230194
0.0134877
-2.094e-10
0.0229195
0.0124325
-2.22869e-10
0.0230495
0.0111259
-2.48322e-10
0.0234772
0.00955707
-2.88905e-10
0.0239291
0.00802083
-3.5886e-10
0.0242994
0.00665763
-2.43368e-10
0.0246344
0.00541501
-9.57406e-11
0.02497
0.00425852
-6.86626e-11
0.0249785
0.00346769
-5.45238e-12
0.0247099
0.00295232
9.58614e-11
0.0245053
0.00238294
8.01336e-11
0.0242968
0.00182533
7.03064e-11
0.0240972
0.00124641
5.65634e-11
0.0239068
0.000643959
4.12167e-11
0.0237186
3.27121e-05
3.1753e-11
0.0235291
-0.000584079
2.4718e-11
0.0233343
-0.00117507
2.07421e-11
0.0231347
-0.00173556
1.79193e-11
0.022933
-0.00225638
1.53851e-11
0.0227322
-0.00273553
1.26215e-11
0.0225353
-0.00316735
9.37971e-12
0.0223483
-0.00355325
5.63319e-12
0.0221749
-0.00389037
6.86668e-13
0.0220215
-0.00418006
-4.74823e-12
0.0218927
-0.00442268
-1.1178e-11
0.0217926
-0.00461802
-1.75459e-11
0.0217272
-0.00476842
-2.43022e-11
0.0216995
-0.00487255
-3.11282e-11
0.0217088
-0.00493176
-3.608e-11
0.0217341
-0.00494125
-4.45501e-11
0.0217654
-0.00489833
-4.52938e-11
0.0218886
-0.00487081
-4.79902e-11
0.022083
-0.00480463
-5.31546e-11
0.0222809
-0.00462568
-5.9978e-11
0.0225112
-0.00443297
-6.10035e-11
0.0227589
-0.00420967
-5.81513e-11
0.022996
-0.00395791
-5.23443e-11
0.0232128
-0.00370102
-4.44137e-11
0.0234008
-0.00344926
-3.59166e-11
0.0235591
-0.00320821
-2.81884e-11
0.0236915
-0.00298126
-2.21114e-11
0.0238019
-0.00276838
-1.77351e-11
0.0238964
-0.00256698
-1.5028e-11
0.0239751
-0.00237539
-1.23382e-11
0.0240422
-0.00219138
-1.04773e-11
0.0240955
-0.00201288
-7.56515e-12
0.024143
-0.0018405
-7.28474e-12
0.0241799
-0.00166638
-6.4631e-12
0.0242055
-0.00149431
-4.67735e-12
0.0242167
-0.00132652
-2.24407e-12
0.0242138
-0.00116816
5.42949e-13
0.024199
-0.00101758
7.31458e-13
0.0241741
-0.00087371
1.2779e-12
0.0241396
-0.000735751
1.71102e-12
0.024097
-0.000602897
1.93358e-12
0.024046
-0.00047493
1.79426e-12
0.023988
-0.000351199
1.33351e-12
0.023922
-0.000231438
8.09341e-13
0.023849
-0.000114977
4.1926e-13
0.0237687
-2.04218e-06
-3.09563e-13
0.0236821
0.000107217
-9.0215e-13
0.0235897
0.000212555
-1.63729e-12
0.0234916
0.000313844
-2.18754e-12
0.0233891
0.000411297
-2.47374e-12
0.0232813
0.000504602
-2.57057e-12
0.0231704
0.000594027
-2.24477e-12
0.0230549
0.000679275
-1.53691e-12
0.0229371
0.000760587
-1.00844e-12
0.0228156
0.000837785
-4.7433e-13
0.0226923
0.000911003
5.14243e-13
0.0225662
0.000980243
1.89677e-12
0.0224388
0.00104547
3.68476e-12
0.0223095
0.00110691
5.48405e-12
0.0221795
0.0011643
7.42182e-12
0.0220483
0.00121815
9.29078e-12
0.0219171
0.00126793
1.11946e-11
0.0217855
0.00131441
1.29491e-11
0.0216543
0.00135684
1.46055e-11
0.0215237
0.00139614
1.60913e-11
0.0213933
0.00143148
1.73393e-11
0.0212645
0.0014637
1.84297e-11
0.0211358
0.00149208
1.91709e-11
0.021009
0.00151711
1.97476e-11
0.0208825
0.00153838
1.99146e-11
0.0207578
0.00155574
1.98664e-11
0.0206342
0.0015691
1.93708e-11
0.020513
0.00157764
1.85744e-11
0.0203938
0.00158131
1.72552e-11
0.0202791
0.00157862
1.54877e-11
0.0201691
0.00156904
1.30655e-11
0.0200669
0.00154976
9.38827e-12
0.0199734
0.00152219
7.45124e-12
0.0198859
0.00148803
3.56437e-12
0.0198132
0.00143946
-1.83236e-12
0.0197599
0.00137235
-9.63316e-12
0.019724
0.00128731
-1.94989e-11
0.00120495
-2.11813e-11
0.0237335
0.0166695
-8.47459e-11
0.023586
0.015626
-1.38602e-10
0.0234949
0.0145622
-2.14543e-10
0.0234134
0.0134818
-2.33253e-10
0.0236192
0.0121124
-2.73944e-10
0.0241388
0.0104785
-3.44094e-10
0.0246226
0.0089375
-3.26908e-10
0.0250151
0.00753781
-2.33497e-10
0.0254348
0.00620903
-7.7429e-11
0.0257757
0.00504522
-5.27832e-11
0.0257196
0.00430533
5.1154e-12
0.0254614
0.00376355
1.0423e-10
0.0252712
0.00318427
1.11663e-10
0.0250722
0.00261492
7.89041e-11
0.0248889
0.0020289
5.66584e-11
0.0247235
0.00142328
3.95732e-11
0.0245643
0.000806261
2.61809e-11
0.0244061
0.000192119
1.74499e-11
0.0242357
-0.000412061
1.44439e-11
0.0240569
-0.000991898
1.40823e-11
0.0238683
-0.00154029
1.43982e-11
0.0236713
-0.00205231
1.43716e-11
0.0234704
-0.00252624
1.38854e-11
0.0232658
-0.00295854
1.22418e-11
0.0230657
-0.00334949
1.00531e-11
0.0228695
-0.00369755
6.21326e-12
0.0226872
-0.0040022
1.84488e-12
0.0225196
-0.00426547
-3.68865e-12
0.0223749
-0.00448398
-9.46852e-12
0.0222561
-0.00466311
-1.56878e-11
0.0221671
-0.00479641
-2.12121e-11
0.0221138
-0.00489297
-2.63431e-11
0.0221013
-0.00494446
-3.15111e-11
0.0221353
-0.00495094
-3.86727e-11
0.0221486
-0.00490253
-3.93312e-11
0.0221536
-0.00482896
-4.07011e-11
0.0223047
-0.00479727
-4.44181e-11
0.022513
-0.00466613
-5.1649e-11
0.0227315
-0.00445432
-5.30542e-11
0.0229611
-0.00421317
-5.2724e-11
0.0231976
-0.00396319
-4.83364e-11
0.0234185
-0.00369285
-4.15753e-11
0.0236142
-0.00342231
-3.36057e-11
0.0237806
-0.00316165
-2.59433e-11
0.0239208
-0.00291655
-1.98469e-11
0.0240346
-0.0026866
-1.54462e-11
0.0241288
-0.00247074
-1.21361e-11
0.0242034
-0.00226734
-8.67252e-12
0.0242637
-0.00207344
-6.97157e-12
0.0243122
-0.00188805
-4.26724e-12
0.024351
-0.00170479
-3.81823e-12
0.0243805
-0.00152339
-2.85128e-12
0.0243984
-0.0013442
-1.22301e-12
0.0244024
-0.00117047
1.46032e-12
0.0243949
-0.00100806
3.16595e-12
0.0243753
-0.000851847
3.86576e-12
0.024345
-0.000702773
4.39808e-12
0.0243051
-0.000559706
4.91024e-12
0.0242564
-0.000422287
5.1106e-12
0.0241989
-0.000289896
4.90291e-12
0.0241327
-0.000162086
4.38091e-12
0.0240585
-3.84226e-05
3.38181e-12
0.0239765
8.09836e-05
2.82453e-12
0.0238878
0.000196117
1.7288e-12
0.0237923
0.000306933
9.79611e-13
0.0236915
0.000413383
3.10909e-13
0.0235853
0.000515657
-2.38613e-13
0.023475
0.00061347
-5.61433e-13
0.0233605
0.000707143
-6.83443e-13
0.023243
0.000796233
-6.83634e-13
0.0231224
0.000881227
-5.03065e-13
0.0229991
0.000961602
-2.21341e-14
0.022874
0.00103794
7.13661e-13
0.0227464
0.00110974
1.80939e-12
0.0226182
0.00117751
3.31531e-12
0.0224876
0.00124097
4.84003e-12
0.0223573
0.00130032
6.5422e-12
0.0222252
0.00135568
8.1961e-12
0.0220936
0.00140683
9.89986e-12
0.0219616
0.0014543
1.15004e-11
0.0218297
0.00149753
1.29957e-11
0.0216986
0.00153722
1.43628e-11
0.021568
0.00157273
1.54893e-11
0.0214388
0.00160466
1.64645e-11
0.0213105
0.00163245
1.70964e-11
0.0211844
0.00165637
1.75375e-11
0.0210592
0.001676
1.75532e-11
0.0209371
0.00169107
1.73045e-11
0.0208168
0.00170125
1.65475e-11
0.0207001
0.0017056
1.54013e-11
0.020588
0.00170354
1.3559e-11
0.0204812
0.00169326
1.12195e-11
0.0203835
0.00167284
7.25259e-12
0.0202949
0.0016431
5.55935e-12
0.0202133
0.00160588
1.04481e-12
0.0201461
0.00155446
-4.78179e-12
0.020104
0.0014778
-1.23011e-11
0.0200713
0.00139286
-2.49547e-11
0.0200502
0.00129621
-2.70408e-11
0.00116851
-3.22811e-11
0.0242998
0.0169598
-1.34003e-10
0.0240779
0.0157607
-2.26175e-10
0.0239692
0.0145852
-2.50813e-10
0.0241945
0.013132
-3.00305e-10
0.0247317
0.0114257
-3.82888e-10
0.0252297
0.00983693
-3.37711e-10
0.0256487
0.00841904
-2.17885e-10
0.0261472
0.00700784
-6.83386e-11
0.0264886
0.00584554
-3.78069e-11
0.0263685
0.00516442
2.16943e-11
0.0261345
0.00457919
1.19901e-10
0.0259592
0.00398105
1.11741e-10
0.0257789
0.00339976
8.31954e-11
0.0256191
0.0028007
5.40579e-11
0.0254785
0.00218551
3.54505e-11
0.0253465
0.00156242
2.48912e-11
0.0252115
0.000942875
1.75324e-11
0.0250666
0.000335905
1.38706e-11
0.0249057
-0.000251978
1.3391e-11
0.0247311
-0.000816174
1.43555e-11
0.0245443
-0.00134898
1.55578e-11
0.024348
-0.00184929
1.62016e-11
0.0241447
-0.0023138
1.64009e-11
0.0239362
-0.00274306
1.53696e-11
0.0237283
-0.00313332
1.37742e-11
0.023521
-0.00348751
1.05071e-11
0.0233229
-0.00380025
6.90119e-12
0.0231334
-0.00407783
2.12704e-12
0.0229606
-0.00431243
-2.48231e-12
0.0228052
-0.00451313
-7.29971e-12
0.0226729
-0.00467033
-1.20592e-11
0.0225645
-0.00479292
-1.66347e-11
0.0224838
-0.00487297
-2.10282e-11
0.022441
-0.00491954
-2.58511e-11
0.0224448
-0.00492087
-3.27422e-11
0.0224825
-0.00487997
-3.14508e-11
0.0224617
-0.00479239
-3.4658e-11
0.0224929
-0.00471565
-3.66295e-11
0.0226624
-0.00464413
-4.01728e-11
0.0228855
-0.00446209
-4.60189e-11
0.0231103
-0.00421356
-4.62945e-11
0.0233431
-0.00395114
-4.48491e-11
0.0235739
-0.00367456
-3.91861e-11
0.0237871
-0.00339217
-3.16035e-11
0.0239724
-0.00311384
-2.39521e-11
0.0241277
-0.00284823
-1.69577e-11
0.024252
-0.00259896
-1.10685e-11
0.024352
-0.00236668
-6.8332e-12
0.0244282
-0.00214949
-2.99118e-12
0.0244864
-0.00194504
-1.4175e-12
0.0245344
-0.00175104
5.78977e-13
0.0245689
-0.00155672
9.35255e-13
0.0245933
-0.00136759
1.71297e-12
0.024607
-0.00118203
3.06888e-12
0.0246059
-0.00100406
5.41863e-12
0.024594
-0.000835545
6.29447e-12
0.0245691
-0.000673796
7.02342e-12
0.0245341
-0.000519116
7.77196e-12
0.024488
-0.000370858
8.21982e-12
0.0244326
-0.000228503
8.28763e-12
0.024367
-9.149e-05
7.90042e-12
0.0242923
4.03349e-05
7.27567e-12
0.0242095
0.000166909
6.12786e-12
0.0241185
0.0002884
4.97892e-12
0.0240211
0.000405145
3.90096e-12
0.0239166
0.000517061
2.73988e-12
0.0238074
0.000624381
1.64115e-12
0.0236924
0.000726967
9.19788e-13
0.0235741
0.000824863
4.73499e-13
0.0234512
0.000918129
1.90561e-13
0.023326
0.00100652
2.17768e-13
0.0231973
0.0010905
4.12268e-13
0.023067
0.00116942
8.91162e-13
0.0229345
0.00124421
1.68645e-12
0.0228009
0.00131384
2.86139e-12
0.0226661
0.00137962
4.13e-12
0.0225305
0.00144022
5.53439e-12
0.0223948
0.00149717
6.98932e-12
0.0222586
0.00154902
8.44516e-12
0.0221229
0.00159731
9.88689e-12
0.0219876
0.00164067
1.11832e-11
0.0218535
0.00168039
1.24165e-11
0.0217202
0.00171537
1.33712e-11
0.0215894
0.00174639
1.42083e-11
0.0214598
0.00177283
1.46738e-11
0.0213333
0.00179465
1.49165e-11
0.0212095
0.00181164
1.4722e-11
0.0210892
0.00182298
1.41526e-11
0.0209734
0.00182828
1.30247e-11
0.0208627
0.00182626
1.12909e-11
0.0207595
0.00181527
8.83314e-12
0.0206657
0.00179318
4.89073e-12
0.0205816
0.00176133
3.10191e-12
0.0205065
0.00172069
-5.38979e-13
0.020446
0.00166413
-8.04857e-12
0.0204105
0.00158397
-1.71052e-11
0.020375
0.00150258
-2.22009e-11
0.0203562
0.00139675
-3.08346e-11
0.0203831
0.00125207
-3.95487e-11
0.00105239
-5.33666e-11
0.0248272
0.0173401
-2.33625e-10
0.0245667
0.0159303
-2.62757e-10
0.0247727
0.0142556
-3.2145e-10
0.0253335
0.0124008
-4.17034e-10
0.025865
0.0107521
-3.62769e-10
0.0263053
0.00930477
-2.15253e-10
0.0268786
0.00781756
-6.02903e-11
0.0271989
0.0066697
-2.87213e-11
0.0270056
0.00604753
3.04094e-11
0.026794
0.00541277
1.25211e-10
0.0266153
0.00479641
1.13687e-10
0.0264412
0.00418772
8.21601e-11
0.0262967
0.00356933
5.1248e-11
0.0261756
0.0029379
2.84715e-11
0.0260697
0.00230521
1.82247e-11
0.0259602
0.00167827
1.42845e-11
0.0258418
0.00106549
1.33757e-11
0.0257059
0.000472261
1.39835e-11
0.0255539
-9.68893e-05
1.58026e-11
0.0253851
-0.000643453
1.74829e-11
0.0252043
-0.00115981
1.88808e-11
0.0250107
-0.00164633
1.94609e-11
0.0248096
-0.00210081
1.9623e-11
0.0245993
-0.00252345
1.86995e-11
0.0243862
-0.00291147
1.71675e-11
0.0241689
-0.00326622
1.44189e-11
0.0239544
-0.00358433
1.11791e-11
0.0237436
-0.00386887
7.28255e-12
0.0235418
-0.00411541
3.4644e-12
0.0233535
-0.00432957
-3.4656e-13
0.0231807
-0.00450538
-4.06222e-12
0.0230328
-0.00465043
-7.98516e-12
0.0229111
-0.00475911
-1.20465e-11
0.0228198
-0.00483432
-1.57646e-11
0.0227624
-0.00487246
-2.00603e-11
0.0227435
-0.0048744
-2.59668e-11
0.0227694
-0.00483031
-2.47452e-11
0.0227841
-0.00474699
-2.87091e-11
0.022772
-0.00465002
-2.99883e-11
0.022866
-0.00457606
-3.28004e-11
0.0230564
-0.00442536
-3.7152e-11
0.023284
-0.00420269
-4.37977e-11
0.0235173
-0.0039328
-4.26579e-11
0.0237629
-0.00365777
-3.80005e-11
0.023995
-0.00336144
-3.08172e-11
0.0242015
-0.00306352
-2.19729e-11
0.0243757
-0.00277723
-1.338e-11
0.0245152
-0.0025067
-6.56085e-12
0.0246222
-0.00225527
-1.33548e-12
0.0247011
-0.00202161
2.33622e-12
0.0247571
-0.00180455
3.97217e-12
0.024805
-0.00160102
5.96003e-12
0.0248372
-0.00139594
6.18089e-12
0.0248571
-0.00119826
6.72299e-12
0.0248633
-0.00100563
7.72264e-12
0.0248572
-0.000823483
9.53992e-12
0.0248381
-0.00064831
1.01464e-11
0.0248076
-0.000481301
1.06748e-11
0.0247648
-0.000321229
1.10553e-11
0.0247114
-0.000167563
1.12307e-11
0.0246465
-2.02622e-05
1.10244e-11
0.0245723
0.000120585
1.04552e-11
0.024488
0.000255229
9.39517e-12
0.024395
0.000383873
8.08287e-12
0.0242941
0.000507069
6.67264e-12
0.0241855
0.000624801
5.21966e-12
0.0240715
0.000737509
3.87266e-12
0.0239509
0.000844956
2.60467e-12
0.0238273
0.000947433
1.63221e-12
0.0236981
0.00104477
1.03462e-12
0.0235673
0.00113699
8.13063e-13
0.0234321
0.00122428
7.22971e-13
0.0232962
0.00130624
9.57143e-13
0.0231573
0.00138361
1.35552e-12
0.0230179
0.00145544
2.23508e-12
0.0228772
0.00152309
3.17572e-12
0.0227361
0.00158505
4.31955e-12
0.0225947
0.00164321
5.5097e-12
0.022453
0.00169558
6.74249e-12
0.0223124
0.00174436
7.9954e-12
0.0221712
0.00178742
9.08686e-12
0.0220329
0.00182669
1.01753e-11
0.0218946
0.00186052
1.09316e-11
0.0217603
0.00188992
1.15959e-11
0.0216277
0.001914
1.18468e-11
0.0214995
0.00193269
1.18236e-11
0.0213752
0.0019454
1.13095e-11
0.0212563
0.00195121
1.02943e-11
0.0211443
0.00194915
8.59239e-12
0.0210404
0.0019371
6.01597e-12
0.0209486
0.00191255
2.29773e-12
0.0208666
0.0018784
-6.34239e-14
0.0207948
0.00183492
-3.24674e-12
0.0207437
0.0017703
-1.02648e-11
0.0207046
0.00169334
-2.26697e-11
0.0206711
0.00160642
-2.47692e-11
0.0206721
0.00148895
-2.98924e-11
0.0207286
0.00132376
-3.96544e-11
0.0208338
0.00112014
-5.669e-11
0.000848529
-8.80248e-11
0.0253913
0.0175512
-2.57875e-10
0.0256129
0.0155736
-3.65016e-10
0.0261478
0.0135118
-5.12894e-10
0.0266755
0.0117274
-3.89722e-10
0.0271285
0.0101991
-2.21563e-10
0.0277357
0.00863484
-1.2806e-10
0.0279904
0.00754368
-7.97867e-12
0.0277108
0.00696262
7.16905e-11
0.0275211
0.00628618
1.30331e-10
0.0273334
0.00564345
1.13174e-10
0.0271524
0.00500594
7.41069e-11
0.0269987
0.00435634
4.22713e-11
0.0268787
0.00370133
2.07833e-11
0.026775
0.0030487
8.83447e-12
0.0266773
0.00240728
6.26689e-12
0.0265737
0.00178463
8.72581e-12
0.0264585
0.00118373
1.25723e-11
0.0263269
0.000607396
1.63053e-11
0.0261779
5.70192e-05
1.9985e-11
0.0260123
-0.000470923
2.17532e-11
0.0258324
-0.000971164
2.28376e-11
0.0256416
-0.00144407
2.32995e-11
0.0254406
-0.00188824
2.30175e-11
0.025232
-0.00230287
2.20801e-11
0.0250167
-0.00268699
2.02986e-11
0.0247976
-0.00303946
1.79537e-11
0.0245775
-0.00336054
1.50927e-11
0.0243594
-0.00364858
1.23174e-11
0.0241476
-0.00390539
9.07666e-12
0.023946
-0.0041288
6.30947e-12
0.0237589
-0.0043222
2.80176e-12
0.0235898
-0.00448238
3.8154e-13
0.0234367
-0.00461225
-2.61267e-12
0.0233073
-0.00470887
-6.25012e-12
0.023203
-0.00477583
-1.00668e-11
0.0231262
-0.00480717
-1.41318e-11
0.0230902
-0.0048072
-1.91163e-11
0.0230926
-0.00476567
-2.33993e-11
0.0231063
-0.00468024
-2.14568e-11
0.0231021
-0.00459002
-2.6896e-11
0.0231284
-0.00447116
-2.8511e-11
0.0232743
-0.00436752
-3.14415e-11
0.0234962
-0.00417583
-3.88836e-11
0.0237273
-0.00390988
-3.89415e-11
0.0239665
-0.00361802
-3.63155e-11
0.0242077
-0.00331968
-2.97766e-11
0.0244298
-0.00300841
-2.17295e-11
0.0246185
-0.00270101
-1.31815e-11
0.0247697
-0.00240778
-5.11895e-12
0.0248848
-0.00213494
1.68851e-12
0.0249674
-0.00188272
5.58958e-12
0.0250242
-0.0016504
1.0027e-11
0.02507
-0.00143478
1.04079e-11
0.0250972
-0.00121779
1.10294e-11
0.0251109
-0.00101101
1.20101e-11
0.025109
-0.000811968
1.37924e-11
0.025097
-0.000626225
1.40855e-11
0.0250707
-0.000445505
1.38665e-11
0.0250319
-0.000273218
1.37468e-11
0.0249811
-0.00010797
1.37324e-11
0.0249189
5.01461e-05
1.35504e-11
0.0248461
0.000200833
1.29274e-11
0.0247624
0.000344321
1.18876e-11
0.0246695
0.000480969
1.0509e-11
0.0245671
0.000611262
8.8918e-12
0.0244581
0.000735387
7.23519e-12
0.0243415
0.00085383
5.56612e-12
0.0242202
0.000966411
4.08008e-12
0.0240928
0.00107375
2.7627e-12
0.0239615
0.00117517
1.73617e-12
0.0238257
0.00127159
1.12577e-12
0.0236865
0.00136191
8.1192e-13
0.0235451
0.00144739
7.68405e-13
0.0234005
0.00152676
8.3393e-13
0.0232559
0.00160132
1.26337e-12
0.0231087
0.00167011
1.86702e-12
0.0229628
0.00173386
2.8046e-12
0.0228154
0.00179243
3.69595e-12
0.0226693
0.00184564
4.75379e-12
0.0225234
0.00189404
5.77739e-12
0.0223782
0.00193698
6.7086e-12
0.0222353
0.00197488
7.58183e-12
0.0220936
0.00200738
8.16997e-12
0.0219555
0.00203413
8.54544e-12
0.0218212
0.00205503
8.55516e-12
0.0216915
0.00206911
8.09493e-12
0.0215684
0.00207569
7.13501e-12
0.0214532
0.00207351
5.40283e-12
0.0213485
0.00205993
2.89593e-12
0.0212566
0.00203302
-1.12638e-12
0.021178
0.00199505
-2.43076e-12
0.0211084
0.00194846
-8.79545e-12
0.0210631
0.00187848
-1.24313e-11
0.021019
0.00180463
-2.62218e-11
0.020992
0.00170914
-2.87565e-11
0.021008
0.00157643
-3.45227e-11
0.0210852
0.00139006
-4.72337e-11
0.0212258
0.00115063
-7.09866e-11
0.0214217
0.000883554
-8.51221e-11
0.000583157
-1.01316e-10
0.0268075
0.017201
-4.15486e-10
0.0271954
0.0149871
-4.64406e-10
0.0276343
0.0129125
-4.12755e-10
0.0281332
0.01114
-1.93943e-10
0.028786
0.00947772
-1.43204e-10
0.0289042
0.00848267
-3.84032e-11
0.0285829
0.00789676
1.19209e-10
0.0283916
0.00719708
1.23689e-10
0.0281788
0.00653408
1.06746e-10
0.0279782
0.00586182
7.06051e-11
0.0278123
0.00517931
3.4846e-11
0.0276755
0.00449187
9.54744e-12
0.027563
0.00381027
-4.4046e-13
0.0274607
0.00314711
-1.839e-12
0.0273589
0.0025066
1.34495e-12
0.0272497
0.00189343
6.63511e-12
0.027128
0.00130663
1.33886e-11
0.0269916
0.000746673
1.86899e-11
0.0268406
0.000212642
2.23403e-11
0.0266757
-0.000297791
2.49019e-11
0.0264991
-0.000783818
2.6027e-11
0.0263129
-0.00124386
2.64702e-11
0.0261156
-0.00167765
2.60198e-11
0.0259106
-0.00208423
2.5257e-11
0.0256966
-0.00246324
2.35237e-11
0.0254784
-0.00281265
2.17517e-11
0.025256
-0.00313388
1.92373e-11
0.0250347
-0.0034236
1.7153e-11
0.0248156
-0.00368577
1.44475e-11
0.0246039
-0.00391557
1.22888e-11
0.0244005
-0.00411898
9.484e-12
0.0242085
-0.00428969
6.89372e-12
0.0240306
-0.00443521
4.07743e-12
0.0238698
-0.00454801
1.2636e-12
0.0237259
-0.00463646
-1.19592e-12
0.0236058
-0.00469134
-4.39828e-12
0.0235105
-0.00472061
-8.59864e-12
0.0234486
-0.00471481
-1.21234e-11
0.0234307
-0.00467609
-1.66629e-11
0.0234228
-0.00459508
-1.67846e-11
0.0234428
-0.00450388
-1.84512e-11
0.0234375
-0.00437889
-2.72845e-11
0.0235088
-0.00426365
-2.87572e-11
0.0236788
-0.00409638
-3.15369e-11
0.0239067
-0.0038641
-3.62891e-11
0.0241417
-0.00357209
-3.59301e-11
0.0243825
-0.00326522
-3.37183e-11
0.0246131
-0.0029431
-2.6725e-11
0.0248156
-0.00261756
-1.6924e-11
0.0249822
-0.0023024
-6.91872e-12
0.0251066
-0.00200518
1.55692e-12
0.0251937
-0.00173135
8.10787e-12
0.0252492
-0.00148089
1.38233e-11
0.0252946
-0.00125262
1.42306e-11
0.0253186
-0.00102404
1.49134e-11
0.0253262
-0.000806899
1.63752e-11
0.0253155
-0.000601217
1.93649e-11
0.0252956
-0.000411388
1.77979e-11
0.025262
-0.000226
1.6852e-11
0.0252154
-4.95723e-05
1.58843e-11
0.025158
0.000118649
1.53497e-11
0.0250888
0.000279128
1.4634e-11
0.0250095
0.000431951
1.35568e-11
0.0249192
0.000577383
1.20996e-11
0.0248195
0.000715454
1.04192e-11
0.0247115
0.000846687
8.63169e-12
0.0245957
0.000971107
6.79404e-12
0.0244741
0.00108935
5.09567e-12
0.0243457
0.00120137
3.4935e-12
0.024213
0.00130741
2.22129e-12
0.0240744
0.00140756
1.20058e-12
0.0239329
0.00150154
6.83864e-13
0.0237874
0.00158991
3.51992e-13
0.0236397
0.00167194
2.05118e-13
0.0234907
0.00174854
2.88359e-13
0.0233399
0.00181894
4.73488e-13
0.0231898
0.0018839
8.98796e-13
0.0230396
0.00194295
1.62638e-12
0.02289
0.00199655
2.41303e-12
0.0227428
0.00204416
3.25539e-12
0.0225962
0.00208652
3.94205e-12
0.0224533
0.00212223
4.57965e-12
0.022313
0.00215267
4.91185e-12
0.0221767
0.00217538
4.93557e-12
0.0220462
0.00219184
4.55157e-12
0.021921
0.00219885
3.49578e-12
0.0218054
0.00219707
1.84177e-12
0.0217005
0.00218154
-6.69082e-13
0.0216103
0.00215193
-5.24879e-12
0.0215327
0.00211129
-6.529e-12
0.0214695
0.00205744
-1.13919e-11
0.0214197
0.00198931
-2.34652e-11
0.0213766
0.00191274
-2.54117e-11
0.021366
0.00180437
-3.03326e-11
0.0214069
0.00165148
-3.96069e-11
0.0215196
0.00143782
-5.61474e-11
0.0216781
0.00119315
-7.98112e-11
0.021874
0.000908104
-9.52084e-11
0.022115
0.000591793
-1.0306e-10
0.000277672
-1.03975e-10
0.0280886
0.0164605
-5.12413e-10
0.0287466
0.0142022
-4.02136e-10
0.0294224
0.0121671
-2.18516e-10
0.0300939
0.0103932
-1.66557e-10
0.0299996
0.00952532
-5.48354e-11
0.0296294
0.00887601
1.19804e-10
0.0293925
0.00816998
1.54436e-10
0.0291294
0.00748466
1.16015e-10
0.0288984
0.00677901
7.17213e-11
0.0287065
0.00605503
3.48324e-11
0.028557
0.00532513
6.93872e-12
0.0284342
0.00460782
-3.7801e-12
0.0283257
0.00391214
-8.48765e-12
0.0282212
0.00324701
-3.80219e-12
0.0281124
0.00261265
1.1065e-12
0.0279952
0.00201068
8.09918e-12
0.0278653
0.00143783
1.54002e-11
0.0277227
0.000892901
2.07717e-11
0.0275675
0.000373601
2.42978e-11
0.0274006
-0.000121125
2.67411e-11
0.0272233
-0.000594862
2.77874e-11
0.0270368
-0.00104337
2.82002e-11
0.0268393
-0.00146752
2.78808e-11
0.0266339
-0.00186605
2.73517e-11
0.0264186
-0.00223854
2.61586e-11
0.0261984
-0.00258381
2.49506e-11
0.025972
-0.00290204
2.32295e-11
0.0257451
-0.00319191
2.15907e-11
0.0255181
-0.00345515
1.96068e-11
0.0252955
-0.00368942
1.76254e-11
0.0250778
-0.00389796
1.55715e-11
0.0248697
-0.00407776
1.31021e-11
0.0246701
-0.00423232
1.07526e-11
0.0244827
-0.00435959
8.06829e-12
0.0243094
-0.0044614
5.53311e-12
0.024151
-0.00453687
2.55937e-12
0.0240138
-0.00458567
-7.90421e-14
0.0238981
-0.00460726
-2.96912e-12
0.0238157
-0.00459989
-6.54818e-12
0.0237711
-0.00456076
-1.15609e-11
0.0237432
-0.00448553
-1.12373e-11
0.0237393
-0.00438394
-1.45049e-11
0.0237375
-0.00427715
-2.54302e-11
0.0237595
-0.00413312
-2.67928e-11
0.0238625
-0.00398371
-2.97323e-11
0.0240505
-0.00377685
-3.40307e-11
0.024266
-0.00350243
-4.07876e-11
0.0244883
-0.00318567
-3.85076e-11
0.0247179
-0.00286344
-3.18847e-11
0.0249268
-0.00252299
-2.25483e-11
0.0251026
-0.00218587
-1.16955e-11
0.0252406
-0.00186576
-9.83239e-13
0.025339
-0.00156949
7.64169e-12
0.0253997
-0.00129898
1.41215e-11
0.0254478
-0.00105537
1.8161e-11
0.0254747
-0.000816885
1.85916e-11
0.0254777
-0.000587831
1.9223e-11
0.0254573
-0.000374784
2.01102e-11
0.0254268
-0.000180741
1.98022e-11
0.0253825
7.27418e-06
1.77387e-11
0.0253276
0.000184702
1.68486e-11
0.0252616
0.0003542
1.59777e-11
0.0251857
0.00051593
1.47277e-11
0.0250988
0.000670158
1.3174e-11
0.0250028
0.000816486
1.14866e-11
0.0248982
0.000955225
9.65552e-12
0.0247857
0.00108631
7.72294e-12
0.0246669
0.00121052
5.80532e-12
0.024541
0.00132766
3.93361e-12
0.0244105
0.00143838
2.32649e-12
0.0242742
0.00154237
1.01835e-12
0.0241343
0.00164007
2.45755e-13
0.0239906
0.0017312
-3.35546e-13
0.0238438
0.00181615
-5.83301e-13
0.0236951
0.00189452
-7.20133e-13
0.0235447
0.00196691
-7.3516e-13
0.0233933
0.00203267
-6.40167e-13
0.0232428
0.00209251
-4.41772e-13
0.023092
0.00214578
-1.26363e-13
0.022944
0.0021928
3.13889e-13
0.0227974
0.00223326
7.04106e-13
0.0226552
0.00226668
1.0696e-12
0.0225169
0.00229295
1.00666e-12
0.022385
0.00231073
6.1516e-13
0.0222605
0.00231952
-4.95086e-13
0.0221455
0.00231711
-2.30749e-12
0.0220446
0.00230063
-5.07105e-12
0.0219605
0.00226616
-9.29203e-12
0.0218866
0.00222542
-1.23005e-11
0.0218339
0.00216316
-1.45269e-11
0.0217811
0.00210192
-2.77604e-11
0.0217459
0.00201456
-3.02275e-11
0.0217558
0.00189026
-3.60171e-11
0.0218327
0.0017088
-4.81423e-11
0.0219721
0.00148269
-6.99843e-11
0.0221539
0.00121933
-8.34033e-11
0.0223808
0.000919775
-9.87212e-11
0.0226324
0.00060558
-1.04097e-10
0.0228866
0.000286387
-1.01563e-10
-5.88332e-06
-9.50201e-11
0.0294128
0.0153383
-4.79125e-10
0.0304427
0.013104
-2.54016e-10
0.0312592
0.0112945
-1.97955e-10
0.0310601
0.0105684
-8.14206e-11
0.0307722
0.00984779
1.04821e-10
0.0305457
0.0091482
1.28342e-10
0.0302876
0.00846419
1.12573e-10
0.0300425
0.00774313
7.37606e-11
0.0298273
0.00698853
3.64872e-11
0.0296406
0.00622437
8.19882e-12
0.029474
0.00546733
-4.93092e-12
0.0293255
0.00473408
-1.24672e-11
0.0291893
0.00403229
-1.07799e-11
0.0290598
0.00336768
-3.03932e-12
0.0289277
0.00274028
3.18721e-12
0.0287915
0.00214702
1.10678e-11
0.0286481
0.00158521
1.7757e-11
0.0284986
0.00105132
2.26403e-11
0.028341
0.000543855
2.58743e-11
0.0281739
6.18446e-05
2.81811e-11
0.0279971
-0.000401258
2.91218e-11
0.0278091
-0.000840083
2.95967e-11
0.0276105
-0.00125463
2.97876e-11
0.0274012
-0.00164559
2.96686e-11
0.0271834
-0.00201066
2.92399e-11
0.0269588
-0.0023512
2.85561e-11
0.0267292
-0.00266529
2.74498e-11
0.0264982
-0.00295391
2.61509e-11
0.0262665
-0.00321644
2.47115e-11
0.0260362
-0.00345276
2.2745e-11
0.0258107
-0.00366423
2.15493e-11
0.0255872
-0.00384948
1.9276e-11
0.025372
-0.00401111
1.73148e-11
0.0251611
-0.00414679
1.47215e-11
0.0249596
-0.00425912
1.24976e-11
0.0247681
-0.0043462
1.00861e-11
0.0245902
-0.00441003
7.40019e-12
0.0244294
-0.00444921
4.60974e-12
0.0242896
-0.00446317
1.72904e-12
0.0241746
-0.00445121
-1.52951e-12
0.024092
-0.00440909
-6.48523e-12
0.0240372
-0.00433568
-7.39556e-12
0.0239832
-0.00423118
-1.14045e-11
0.023965
-0.00412382
-1.45847e-11
0.0239516
-0.00398367
-2.61951e-11
0.0239791
-0.0038184
-2.79136e-11
0.0240959
-0.00363347
-3.17035e-11
0.0242862
-0.00339166
-3.86377e-11
0.0244922
-0.00308427
-3.93137e-11
0.0247046
-0.00274976
-3.72634e-11
0.0249184
-0.00240803
-2.96467e-11
0.0251077
-0.0020578
-1.89526e-11
0.0252608
-0.00171691
-7.53683e-12
0.0253696
-0.00139858
3.16995e-12
0.0254339
-0.00110763
1.14225e-11
0.0254781
-0.000846106
1.78058e-11
0.0255053
-0.000599667
1.79212e-11
0.0255042
-0.000358578
1.88998e-11
0.0254758
-0.000137559
1.99237e-11
0.0254374
6.0984e-05
2.19275e-11
0.0253882
0.000247336
2.02181e-11
0.0253283
0.000425807
1.80527e-11
0.0252586
0.000595141
1.59131e-11
0.0251797
0.000756829
1.39367e-11
0.0250923
0.000910627
1.21081e-11
0.0249958
0.00105656
1.02013e-11
0.0248919
0.00119466
8.17553e-12
0.0247796
0.00132506
6.0107e-12
0.0246611
0.00144771
3.89181e-12
0.0245359
0.00156308
1.88971e-12
0.0244063
0.00167097
4.51373e-13
0.024272
0.00177213
-4.87675e-13
0.0241351
0.001866
-1.64273e-12
0.0239949
0.00195349
-2.40936e-12
0.0238533
0.00203371
-2.87649e-12
0.0237099
0.00210772
-3.13547e-12
0.0235656
0.00217437
-3.21743e-12
0.0234214
0.00223473
-3.11892e-12
0.0232776
0.00228754
-3.00976e-12
0.0231359
0.00233355
-2.84167e-12
0.0229971
0.00237148
-2.85196e-12
0.0228627
0.00240159
-3.03793e-12
0.022734
0.00242213
-3.70182e-12
0.0226138
0.00243263
-4.8206e-12
0.0225033
0.00243046
-6.98922e-12
0.0224091
0.00241226
-1.05866e-11
0.0223331
0.00237481
-1.46524e-11
0.022269
0.00232985
-1.60941e-11
0.0222178
0.00227038
-2.43429e-11
0.0221673
0.00220901
-2.62817e-11
0.0221537
0.00210909
-3.05857e-11
0.0221961
0.00195864
-3.95565e-11
0.022312
0.0017538
-5.45039e-11
0.0224728
0.00151274
-8.38162e-11
0.0226822
0.00123256
-9.52628e-11
0.0229323
0.00092366
-1.01027e-10
0.023199
0.000605993
-1.02753e-10
0.023457
0.000302708
-9.44022e-11
0.0236802
2.19475e-05
-8.5248e-11
-0.000209685
-5.65433e-11
0.0305883
0.0137204
-3.21679e-10
0.0316522
0.0119934
-2.43488e-10
0.0316202
0.0113297
-7.03268e-11
0.0315446
0.0106681
4.85194e-11
0.0314025
0.0100282
7.70621e-11
0.0312095
0.00937274
5.63284e-11
0.0310245
0.00866206
3.48814e-11
0.030861
0.00789955
1.28879e-11
0.030716
0.00711652
-3.52167e-14
0.0305837
0.00633576
-6.39638e-12
0.0304589
0.00557751
-1.22807e-11
0.0303324
0.00485109
-1.25738e-11
0.0301971
0.0041619
-5.11018e-12
0.030053
0.00350895
-1.10696e-13
0.0299024
0.00289167
6.64624e-12
0.0297459
0.00230706
1.42809e-11
0.0295868
0.00175289
2.0369e-11
0.0294213
0.00122674
2.47522e-11
0.0292517
0.000726798
2.80233e-11
0.0290717
0.00025276
3.00629e-11
0.02888
-0.000198872
3.14915e-11
0.0286782
-0.000629717
3.24183e-11
0.0284673
-0.00103585
3.28424e-11
0.0282488
-0.00141821
3.31723e-11
0.0280229
-0.00177673
3.2839e-11
0.0277933
-0.00211147
3.25002e-11
0.0275575
-0.00242159
3.1584e-11
0.0273201
-0.00270701
3.08366e-11
0.0270773
-0.00296742
2.89715e-11
0.0268343
-0.00320202
2.7619e-11
0.0265881
-0.00341283
2.47261e-11
0.026342
-0.00359791
2.28276e-11
0.0260965
-0.00376083
2.06732e-11
0.0258531
-0.003899
1.87735e-11
0.0256144
-0.00401633
1.69808e-11
0.0253817
-0.00410981
1.51531e-11
0.0251587
-0.0041833
1.37189e-11
0.0249447
-0.00423281
1.16588e-11
0.0247454
-0.00426207
9.23737e-12
0.0245616
-0.00426664
6.28104e-12
0.0244005
-0.00424911
2.73176e-12
0.0242672
-0.00420466
-2.63325e-12
0.0241656
-0.00413186
-3.02403e-12
0.0240691
-0.004029
-7.00058e-12
0.024007
-0.00392443
-1.25818e-11
0.0239802
-0.00379819
-2.43639e-11
0.0239662
-0.00362637
-2.58062e-11
0.0240022
-0.00343497
-2.95088e-11
0.0241293
-0.00321951
-3.53517e-11
0.0243102
-0.00294527
-4.39579e-11
0.0245071
-0.00261658
-4.22293e-11
0.0247106
-0.00227164
-3.90265e-11
0.0249039
-0.0019152
-2.96866e-11
0.0250673
-0.00156114
-1.74537e-11
0.0251886
-0.00122376
-5.11912e-12
0.0252644
-0.000912748
5.17353e-12
0.0253097
-0.000631266
1.44904e-11
0.0253429
-0.000377834
1.52348e-11
0.0253477
-0.000128598
1.66443e-11
0.0253222
0.000100831
1.86185e-11
0.0252795
0.000305324
2.15334e-11
0.0252294
0.000489854
1.96515e-11
0.0251673
0.000668814
1.70643e-11
0.0250968
0.000836598
1.46536e-11
0.0250186
0.000995994
1.25088e-11
0.0249328
0.00114798
1.03707e-11
0.0248387
0.00129252
8.10156e-12
0.0247367
0.00142901
5.71984e-12
0.0246275
0.00155734
3.34423e-12
0.0245121
0.00167743
1.0851e-12
0.0243918
0.00178961
-5.70615e-13
0.0242678
0.00189405
-2.28323e-12
0.0241406
0.00199096
-3.55069e-12
0.0240117
0.00208047
-4.51421e-12
0.0238813
0.00216266
-5.21899e-12
0.0237507
0.0022375
-5.73506e-12
0.0236201
0.00230497
-6.10509e-12
0.0234906
0.00236476
-6.37244e-12
0.0233623
0.00241669
-6.62843e-12
0.0232367
0.00246011
-6.944e-12
0.0231153
0.0024944
-7.44807e-12
0.0229994
0.00251857
-8.32647e-12
0.0228922
0.00253083
-9.68521e-12
0.0227959
0.00252936
-1.23397e-11
0.0227172
0.00250847
-1.57946e-11
0.0226562
0.00247059
-1.99011e-11
0.0226091
0.00241976
-2.02003e-11
0.0225567
0.00237435
-3.10499e-11
0.0225209
0.00229714
-3.38246e-11
0.022541
0.00217785
-3.94593e-11
0.0226304
0.00200243
-5.06465e-11
0.0227783
0.00178278
-7.10787e-11
0.022971
0.00152757
-8.34422e-11
0.0232099
0.00123156
-9.68103e-11
0.0234796
0.000916839
-1.02169e-10
0.0237535
0.000603742
-9.82829e-11
0.0240089
0.000311038
-8.72872e-11
0.0242232
5.59988e-05
-6.98673e-11
0.0243816
-0.000160543
-5.17752e-11
-0.000331767
-3.28189e-11
0.0305229
0.0114567
-1.55422e-10
0.0310873
0.0114437
-4.49155e-11
0.0311522
0.0113301
1.5037e-10
0.0313043
0.0105715
9.63267e-11
0.0314201
0.00994328
2.59009e-11
0.0314417
0.00935383
-4.35191e-11
0.0314436
0.00863991
-6.641e-11
0.0314246
0.00788646
-5.35808e-11
0.0313843
0.00712353
-3.63488e-11
0.0313215
0.00637092
-2.37683e-11
0.0312422
0.00564022
-1.39605e-11
0.0311458
0.00494055
-6.81473e-12
0.0310323
0.00427426
-2.39422e-12
0.0309002
0.00364112
3.15301e-12
0.0307546
0.00303881
1.04544e-11
0.0305996
0.00246675
1.75597e-11
0.0304372
0.00192302
2.33942e-11
0.0302686
0.00140675
2.79624e-11
0.0300931
0.000916267
3.12192e-11
0.0299095
0.00045139
3.34517e-11
0.0297123
1.36965e-05
3.42532e-11
0.0295091
-0.000410253
3.57647e-11
0.0292962
-0.000805786
3.65014e-11
0.0290742
-0.00117853
3.65616e-11
0.0288427
-0.00152799
3.64903e-11
0.0286021
-0.00185401
3.63563e-11
0.0283512
-0.00215593
3.57419e-11
0.0280932
-0.00243394
3.50128e-11
0.0278267
-0.00268811
3.38417e-11
0.0275568
-0.00291848
3.23354e-11
0.0272821
-0.003126
3.03462e-11
0.0270059
-0.00330992
2.81593e-11
0.0267286
-0.00347216
2.60769e-11
0.0264518
-0.00361212
2.40074e-11
0.0261772
-0.0037313
2.23724e-11
0.0259064
-0.00382988
2.06588e-11
0.0256407
-0.00390838
1.90885e-11
0.0253827
-0.00396697
1.73668e-11
0.0251343
-0.00400611
1.54855e-11
0.0248989
-0.00402499
1.31222e-11
0.0246789
-0.00402385
1.01488e-11
0.0244803
-0.00400126
6.51256e-12
0.0243082
-0.00395696
1.14324e-12
0.024167
-0.00388529
-3.05785e-12
0.0240309
-0.00378468
-4.29891e-12
0.0239139
-0.00367983
-1.0316e-11
0.0238445
-0.00355564
-1.94002e-11
0.0238072
-0.00340195
-2.88495e-11
0.0237892
-0.00320505
-3.02644e-11
0.0238441
-0.00300455
-3.37911e-11
0.023982
-0.00276173
-3.98608e-11
0.0241547
-0.00245789
-5.17296e-11
0.024341
-0.0021137
-4.81384e-11
0.0245355
-0.00176322
-3.99633e-11
0.0247063
-0.00140066
-2.8768e-11
0.024842
-0.00104737
-1.60115e-11
0.0249373
-0.000719781
-2.87404e-12
0.0249905
-0.000420956
5.97227e-12
0.0250325
-0.000156868
1.30772e-11
0.0250528
9.38323e-05
1.37224e-11
0.0250402
0.000331737
1.50972e-11
0.0249991
0.000545246
1.73867e-11
0.02495
0.000730284
1.63283e-11
0.0248931
0.000905528
1.46643e-11
0.0248267
0.0010717
1.2335e-11
0.0247537
0.00122868
9.85785e-12
0.0246734
0.00137808
7.29581e-12
0.0245869
0.00151959
4.77979e-12
0.0244942
0.00165283
2.21815e-12
0.0243956
0.0017777
-6.79881e-14
0.0242919
0.00189405
-2.40545e-12
0.0241836
0.00200206
-4.32671e-12
0.0240721
0.00210175
-5.84841e-12
0.0239579
0.00219341
-7.03758e-12
0.0238423
0.00227695
-7.97957e-12
0.023726
0.00235251
-8.7547e-12
0.0236102
0.00241968
-9.44473e-12
0.0234955
0.00247834
-1.01123e-11
0.0233837
0.00252756
-1.08509e-11
0.0232757
0.00256696
-1.17713e-11
0.0231739
0.00259473
-1.30095e-11
0.0230804
0.00260985
-1.49089e-11
0.0229996
0.00260834
-1.72406e-11
0.0229364
0.00258678
-2.25598e-11
0.0228934
0.00254624
-2.19634e-11
0.0228531
0.00250135
-2.99999e-11
0.0228064
0.00245739
-3.12812e-11
0.0228061
0.00236487
-3.53063e-11
0.0228686
0.00221943
-4.4626e-11
0.0230018
0.0020219
-5.97765e-11
0.0231806
0.0017916
-7.84422e-11
0.0234061
0.00151709
-9.32874e-11
0.0236773
0.00121294
-1.01657e-10
0.0239631
0.000900291
-1.01359e-10
0.0242412
0.000596555
-9.34465e-11
0.0244861
0.000322448
-7.80198e-11
0.0246846
8.6603e-05
-5.94111e-11
0.0248239
-0.000103184
-3.90461e-11
0.0249114
-0.000259118
-2.56067e-11
-0.000382795
-1.20281e-11
0.0272133
0.00942495
-4.15587e-10
0.0282706
0.0104295
2.69525e-10
0.029332
0.0103295
2.4352e-10
0.0299555
0.010001
9.65195e-11
0.0304011
0.00952731
-6.30498e-11
0.0307806
0.00897473
-1.65611e-10
0.0310719
0.00833169
-1.62886e-10
0.031288
0.0076502
-1.16271e-10
0.0314479
0.00695708
-6.48299e-11
0.0315462
0.00627072
-3.11652e-11
0.031587
0.00560348
-7.99088e-12
0.031578
0.00495942
-7.4189e-13
0.0315289
0.00433596
4.75664e-12
0.0314467
0.00373658
1.11311e-11
0.0313369
0.0031602
1.73641e-11
0.0312085
0.00260834
2.32662e-11
0.0310674
0.00208127
2.82871e-11
0.0309164
0.00157956
3.23657e-11
0.0307544
0.00110302
3.57453e-11
0.030581
0.000651479
3.82377e-11
0.0303975
0.000225341
4.06016e-11
0.0301954
-0.000180329
4.13072e-11
0.0299809
-0.000563619
4.17891e-11
0.0297522
-0.000923569
4.21488e-11
0.0295096
-0.00126094
4.2032e-11
0.0292536
-0.00157593
4.16757e-11
0.028985
-0.00186782
4.09839e-11
0.0287066
-0.00213713
4.01143e-11
0.0284182
-0.00238331
3.87615e-11
0.0281233
-0.0026073
3.72469e-11
0.0278221
-0.00280903
3.53942e-11
0.0275166
-0.00298961
3.3244e-11
0.02721
-0.00314881
3.13022e-11
0.026901
-0.00328861
2.90833e-11
0.026594
-0.00340751
2.74703e-11
0.0262882
-0.00350902
2.57542e-11
0.0259851
-0.00359014
2.43154e-11
0.0256866
-0.00365487
2.28645e-11
0.0253941
-0.00370038
2.12625e-11
0.0251094
-0.00372929
1.92886e-11
0.024838
-0.00373981
1.6939e-11
0.0245807
-0.00373329
1.38526e-11
0.024344
-0.00370724
9.96202e-12
0.0241339
-0.00366337
5.62439e-12
0.0239565
-0.00359475
2.0811e-13
0.0237931
-0.00350341
-1.83904e-12
0.0236525
-0.00340242
-7.00937e-12
0.0235481
-0.00328951
-1.62116e-11
0.0234957
-0.00314687
-2.26853e-11
0.0234473
-0.0029581
-3.483e-11
0.0234341
-0.00275196
-3.68789e-11
0.0235042
-0.00253439
-4.06043e-11
0.0236477
-0.00226817
-4.94666e-11
0.0238118
-0.00194122
-5.07065e-11
0.0239868
-0.00159067
-4.91796e-11
0.0241608
-0.00123431
-3.9981e-11
0.0243115
-0.000876312
-2.71212e-11
0.0244241
-0.000535642
-1.40537e-11
0.0244981
-0.000223254
-2.79614e-12
0.0245453
5.64632e-05
5.27017e-12
0.0245817
0.000304378
6.70691e-12
0.0245887
0.000548779
8.65095e-12
0.0245617
0.000770011
1.19373e-11
0.0245193
0.000961356
1.29876e-11
0.0244693
0.00113268
1.06981e-11
0.0244096
0.00129749
8.14899e-12
0.024344
0.00145058
5.68648e-12
0.0242738
0.0015951
3.27907e-12
0.0241986
0.00173169
7.51197e-13
0.0241182
0.00186032
-1.97009e-12
0.0240327
0.00198041
-4.54347e-12
0.0239431
0.00209163
-6.77575e-12
0.0238504
0.00219397
-8.6049e-12
0.0237557
0.00228736
-1.00691e-11
0.0236601
0.00237192
-1.13001e-11
0.0235647
0.00244734
-1.23985e-11
0.0234707
0.00251335
-1.35206e-11
0.0233793
0.00256931
-1.46853e-11
0.0232923
0.00261412
-1.61129e-11
0.0232116
0.00264668
-1.78286e-11
0.0231393
0.00266514
-2.0224e-11
0.0230818
0.00266493
-2.29852e-11
0.0230415
0.0026421
-2.90448e-11
0.02302
0.00260264
-2.80187e-11
0.0229802
0.00257663
-3.75218e-11
0.0229604
0.00251003
-3.76335e-11
0.0230081
0.0023963
-4.42968e-11
0.0231259
0.00222788
-5.37746e-11
0.0232959
0.00202195
-7.21947e-11
0.0235078
0.00177423
-8.40184e-11
0.0237716
0.00148754
-9.66845e-11
0.0240635
0.00118194
-1.02178e-10
0.0243597
0.000874259
-9.90922e-11
0.0246349
0.000586855
-8.74851e-11
0.0248674
0.00033365
-6.98287e-11
0.0250463
0.000121558
-4.9931e-11
0.0251676
-4.83683e-05
-3.08466e-11
0.0252388
-0.000180653
-1.59115e-11
0.0252729
-0.000296552
-7.16521e-12
-0.000387396
-6.22837e-13
0.0228901
0.00730989
-4.53819e-10
0.0248693
0.00851134
3.87787e-10
0.0264438
0.00881027
3.11533e-10
0.0277248
0.0087348
5.79952e-11
0.0286777
0.00854813
-1.97809e-10
0.0294614
0.00815734
-2.65767e-10
0.0300731
0.00768757
-2.25883e-10
0.0305214
0.007164
-1.46393e-10
0.0308304
0.00660561
-7.3825e-11
0.0310387
0.00603144
-1.97219e-11
0.031183
0.00545073
-5.94634e-13
0.0312734
0.00487536
1.18786e-11
0.0313151
0.0043079
2.02999e-11
0.0313196
0.00375345
2.55042e-11
0.0312905
0.00321424
2.98729e-11
0.0312362
0.00269379
3.38704e-11
0.0311571
0.00219472
3.72096e-11
0.031058
0.00171754
4.01425e-11
0.0309378
0.00126353
4.21425e-11
0.0307964
0.000832153
4.37066e-11
0.0306373
0.000424146
4.52282e-11
0.0304556
3.93297e-05
4.60069e-11
0.030256
-0.000325206
4.68508e-11
0.0300367
-0.000667447
4.70602e-11
0.0297998
-0.000988082
4.68764e-11
0.0295453
-0.00128757
4.64483e-11
0.0292755
-0.00156564
4.56549e-11
0.0289921
-0.00182224
4.47683e-11
0.028697
-0.00205813
4.3386e-11
0.0283918
-0.00227249
4.18779e-11
0.0280793
-0.00246748
4.00553e-11
0.0277593
-0.00264149
3.80519e-11
0.0274366
-0.00279751
3.61937e-11
0.0271084
-0.00293371
3.41669e-11
0.02678
-0.00305283
3.25499e-11
0.0264494
-0.00315371
3.09662e-11
0.0261189
-0.00323813
2.94927e-11
0.0257915
-0.00330568
2.82161e-11
0.0254669
-0.00335772
2.65341e-11
0.0251506
-0.00339345
2.48866e-11
0.024844
-0.00341472
2.27067e-11
0.02455
-0.00341977
2.00898e-11
0.024273
-0.00341016
1.69667e-11
0.0240135
-0.00338382
1.30631e-11
0.0237793
-0.00334103
8.76455e-12
0.0235722
-0.00327807
2.80583e-12
0.0233812
-0.00319404
5.84256e-13
0.0232083
-0.00310006
-4.23205e-12
0.0230691
-0.0029967
-1.3106e-11
0.0229848
-0.00286579
-2.13611e-11
0.0229299
-0.00269858
-3.33918e-11
0.022888
-0.00249643
-3.5238e-11
0.0229058
-0.00229178
-3.9421e-11
0.0230073
-0.00205534
-4.6184e-11
0.0231608
-0.00176307
-5.76199e-11
0.0233266
-0.00142198
-5.48665e-11
0.0235023
-0.00107115
-4.97002e-11
0.0236644
-0.00071333
-3.96791e-11
0.0237969
-0.000363952
-2.69274e-11
0.0238925
-4.01853e-05
-1.55161e-11
0.0239483
0.000251157
-3.3761e-12
0.0239999
0.000504267
1.29083e-12
0.0240292
0.000747582
1.99664e-12
0.0240223
0.000975784
3.33449e-12
0.0239883
0.00117556
5.7915e-12
0.0239495
0.00134476
4.95037e-12
0.0239034
0.00150394
3.9091e-12
0.0238518
0.00165241
1.7234e-12
0.0237958
0.0017912
-1.09397e-12
0.0237356
0.00192217
-4.13029e-12
0.0236711
0.00204472
-7.00554e-12
0.0236029
0.00215843
-9.54314e-12
0.0235314
0.00226305
-1.17196e-11
0.023458
0.00235791
-1.34907e-11
0.0233841
0.00244293
-1.50247e-11
0.0233107
0.00251723
-1.66579e-11
0.0232408
0.00258031
-1.8142e-11
0.0231749
0.00263114
-2.01971e-11
0.0231176
0.00266754
-2.22907e-11
0.0230697
0.00268918
-2.52108e-11
0.0230387
0.00268949
-2.89177e-11
0.0230316
0.00266327
-3.38935e-11
0.0230208
0.00264064
-3.76346e-11
0.023002
0.00261106
-3.9677e-11
0.0230373
0.00252847
-4.44883e-11
0.0231416
0.00238787
-5.35679e-11
0.0232984
0.00221365
-7.11206e-11
0.0234981
0.00199624
-8.33714e-11
0.0237489
0.0017333
-9.43935e-11
0.0240397
0.00144211
-1.005e-10
0.024347
0.00113826
-1.00827e-10
0.0246468
0.000844159
-9.38903e-11
0.0249124
0.000576242
-7.96273e-11
0.0251292
0.000346609
-6.11336e-11
0.0252888
0.000158228
-4.19074e-11
0.0253965
6.98939e-06
-2.46844e-11
0.0254519
-0.000106602
-1.16354e-11
0.0254771
-0.000203937
-2.62339e-12
0.0254753
-0.000294565
-4.19177e-13
-0.000374824
3.11686e-12
0.0192157
0.00563306
-4.58697e-10
0.0213387
0.00643402
4.05218e-10
0.023259
0.00689503
1.94718e-10
0.024793
0.00714583
-2.85659e-11
0.0260959
0.00716599
-2.48961e-10
0.0271872
0.0070089
-2.9423e-10
0.0281029
0.00674757
-2.25437e-10
0.0288545
0.00641222
-1.27473e-10
0.029455
0.00602404
-4.63975e-11
0.0299199
0.00559439
9.4318e-13
0.0302632
0.00513747
2.77946e-11
0.0305119
0.0046597
3.93669e-11
0.0306827
0.00417181
4.47241e-11
0.0307868
0.00368054
4.57583e-11
0.0308358
0.003194
4.73388e-11
0.0308414
0.00271821
4.77245e-11
0.0308124
0.00225668
4.79771e-11
0.0307548
0.00181207
4.8271e-11
0.0306736
0.00138653
4.85211e-11
0.0305676
0.000980724
4.87145e-11
0.0304394
0.000595758
4.91877e-11
0.0302858
0.000232329
4.96851e-11
0.030108
-0.000110364
5.0141e-11
0.0299069
-0.000431592
5.03412e-11
0.0296835
-0.000731939
5.02976e-11
0.0294429
-0.00101208
5.02834e-11
0.0291826
-0.00127244
4.96557e-11
0.028909
-0.00151309
4.91206e-11
0.0286187
-0.00173498
4.78779e-11
0.0283176
-0.00193764
4.65907e-11
0.0280041
-0.00212267
4.49002e-11
0.0276826
-0.00228926
4.30753e-11
0.027354
-0.00243921
4.12755e-11
0.0270196
-0.00257167
3.94308e-11
0.0266822
-0.00268838
3.78375e-11
0.0263419
-0.00278884
3.61809e-11
0.0260016
-0.00287412
3.48081e-11
0.0256632
-0.00294455
3.32689e-11
0.0253278
-0.00300027
3.16832e-11
0.0249992
-0.00304234
2.99934e-11
0.0246783
-0.00307057
2.79261e-11
0.0243675
-0.00308566
2.55727e-11
0.0240688
-0.00308759
2.27807e-11
0.0237846
-0.00307605
1.94336e-11
0.0235179
-0.00305097
1.54838e-11
0.0232732
-0.00301106
1.09849e-11
0.0230547
-0.00295462
5.26432e-12
0.0228542
-0.00287934
2.81792e-12
0.0226704
-0.00279491
-2.22413e-12
0.0225183
-0.00270188
-1.03101e-11
0.02241
-0.00258252
-2.00653e-11
0.0223457
-0.0024327
-2.59725e-11
0.0222916
-0.0022472
-3.90071e-11
0.0222682
-0.00204428
-4.07144e-11
0.0223181
-0.00183134
-4.46282e-11
0.0224499
-0.00157389
-5.05378e-11
0.0226057
-0.0012581
-6.07593e-11
0.0227754
-0.000911131
-5.94834e-11
0.022942
-0.000558398
-5.10331e-11
0.0230885
-0.000206262
-3.95589e-11
0.0231995
0.000125759
-2.62757e-11
0.0232692
0.000427229
-1.6566e-11
0.0233245
0.00069017
-7.45525e-12
0.0233687
0.000930819
-6.6658e-12
0.023385
0.00116096
-5.0996e-12
0.0233667
0.00136632
-2.92244e-12
0.0233384
0.00153759
3.3663e-13
0.0233058
0.00168949
-1.67568e-12
0.0232669
0.00183302
-4.42351e-12
0.0232265
0.00196446
-7.31699e-12
0.0231845
0.00208684
-1.02241e-11
0.023142
0.00220064
-1.29204e-11
0.0230975
0.00230562
-1.55033e-11
0.0230523
0.00240036
-1.76267e-11
0.023007
0.00248435
-1.95822e-11
0.0229636
0.00255573
-2.17469e-11
0.0229252
0.00261364
-2.41872e-11
0.0228942
0.00265589
-2.68635e-11
0.0228738
0.00268077
-3.08194e-11
0.0228702
0.00268456
-3.40915e-11
0.0228808
0.00266738
-4.12918e-11
0.022872
0.0026595
-4.22305e-11
0.0228952
0.00260524
-4.58312e-11
0.0229963
0.00249463
-5.22547e-11
0.0231461
0.00235746
-6.41232e-11
0.0233321
0.00217302
-7.8985e-11
0.0235714
0.00193993
-9.17333e-11
0.0238583
0.00167013
-9.94385e-11
0.0241721
0.00137868
-1.01698e-10
0.0244905
0.00108573
-9.73961e-11
0.0247854
0.000809591
-8.61407e-11
0.0250403
0.000565807
-7.03939e-11
0.0252371
0.000360924
-5.17102e-11
0.0253814
0.000195826
-3.39698e-11
0.0254719
6.46334e-05
-1.93616e-11
0.025518
-3.69569e-05
-7.0576e-12
0.0255433
-0.000126103
-2.64742e-13
0.0255526
-0.000208975
2.51681e-13
0.0255409
-0.000278893
1.47241e-12
-0.000349625
1.62071e-12
0.0170705
0.00452634
-5.59767e-10
0.0189154
0.00460747
2.59126e-10
0.0206221
0.00516509
7.03443e-11
0.0221399
0.00555374
-1.32475e-10
0.0234682
0.00574614
-2.70006e-10
0.0246256
0.00577525
-2.6426e-10
0.0256324
0.00569391
-1.78423e-10
0.0265052
0.00552558
-7.81782e-11
0.0272545
0.00529082
-3.13979e-12
0.0278932
0.00499911
4.29351e-11
0.0284344
0.00466228
6.29982e-11
0.0288743
0.00429219
7.06693e-11
0.0292256
0.00389521
7.05296e-11
0.0294953
0.00348528
6.89733e-11
0.0296976
0.00306625
6.46545e-11
0.0298426
0.00264895
6.11102e-11
0.0299327
0.00223681
5.78835e-11
0.0299767
0.00183495
5.52941e-11
0.029974
0.0014466
5.32189e-11
0.0299304
0.00107376
5.16803e-11
0.0298502
0.000718599
5.09994e-11
0.0297364
0.000381757
5.0357e-11
0.0295941
6.50087e-05
5.06341e-11
0.0294247
-0.000231427
5.11259e-11
0.0292295
-0.000507788
5.13986e-11
0.0290126
-0.00076543
5.16803e-11
0.0287733
-0.00100453
5.14596e-11
0.0285174
-0.00122635
5.1289e-11
0.0282458
-0.00143094
5.05456e-11
0.0279622
-0.00161927
4.95428e-11
0.0276686
-0.00179117
4.82749e-11
0.0273655
-0.00194805
4.66585e-11
0.0270545
-0.00208864
4.50124e-11
0.0267359
-0.00221543
4.34842e-11
0.0264125
-0.00232645
4.18783e-11
0.0260828
-0.00242464
4.0268e-11
0.0257504
-0.0025075
3.91151e-11
0.0254149
-0.00257836
3.72e-11
0.0250804
-0.00263477
3.56988e-11
0.0247495
-0.00268064
3.40248e-11
0.0244237
-0.00271372
3.2034e-11
0.0241066
-0.00273693
3.00682e-11
0.0237989
-0.0027484
2.74853e-11
0.0235048
-0.00274975
2.45716e-11
0.0232259
-0.0027395
2.09729e-11
0.0229645
-0.00271767
1.70065e-11
0.0227248
-0.00268351
1.24221e-11
0.0225067
-0.00263376
7.00129e-12
0.0223046
-0.00256831
4.28587e-12
0.0221154
-0.00249321
-4.88245e-13
0.021953
-0.00240875
-8.61854e-12
0.0218243
-0.00230048
-1.64742e-11
0.0217343
-0.00216282
-2.4511e-11
0.021671
-0.0019973
-3.73183e-11
0.0216165
-0.00179797
-3.91713e-11
0.0216184
-0.00159844
-4.3424e-11
0.0216974
-0.0013653
-5.0505e-11
0.0218293
-0.00108142
-6.29906e-11
0.0219825
-0.000748646
-6.24662e-11
0.0221423
-0.000407355
-5.86352e-11
0.0222977
-5.79713e-05
-4.84847e-11
0.0224187
0.000277335
-3.85317e-11
0.0225058
0.000584207
-2.81463e-11
0.022568
0.000854568
-2.05608e-11
0.0226269
0.00109342
-1.2552e-11
0.0226698
0.00131556
-1.18049e-11
0.0226777
0.00152317
-1.05932e-11
0.0226627
0.00170067
-8.98563e-12
0.0226459
0.00184694
-9.42106e-12
0.0226261
0.00198152
-1.07554e-11
0.022604
0.00210557
-1.33026e-11
0.0225808
0.00221845
-1.64111e-11
0.0225581
0.00232233
-1.93876e-11
0.0225356
0.00241512
-2.23442e-11
0.022517
0.00249531
-2.53737e-11
0.0225019
0.00256107
-2.80773e-11
0.0224949
0.00260973
-3.2374e-11
0.0225002
0.0026384
-3.49083e-11
0.0225111
0.00265262
-4.24876e-11
0.0225354
0.00264728
-4.33703e-11
0.0225617
0.00262297
-4.67715e-11
0.0226567
0.00254966
-5.31318e-11
0.0227957
0.0024472
-6.32441e-11
0.0229636
0.00230133
-7.51047e-11
0.0231894
0.00210125
-8.9287e-11
0.023468
0.00185834
-9.8298e-11
0.0237858
0.00158763
-1.04219e-10
0.0241158
0.00130247
-1.0248e-10
0.0244389
0.00102547
-9.41919e-11
0.0247285
0.000771973
-7.97962e-11
0.0249686
0.000554057
-6.21363e-11
0.0251549
0.000374023
-4.49198e-11
0.0252849
0.0002304
-2.85865e-11
0.0253698
0.000116848
-1.62722e-11
0.025416
2.64432e-05
-6.27049e-12
0.0254454
-5.64257e-05
-2.30748e-12
0.0254602
-0.000131814
-1.74768e-13
0.0254572
-0.000198321
2.39874e-13
0.0254449
-0.000258568
1.92896e-12
-0.000319618
1.98972e-12
0.0174795
0.00384142
-7.35679e-10
0.0182581
0.0038578
1.12686e-10
0.0192949
0.00409774
-2.92872e-11
0.0203605
0.00441419
-1.88304e-10
0.0214027
0.00462634
-2.65197e-10
0.022401
0.00472579
-2.20314e-10
0.023346
0.00473411
-1.1966e-10
0.0242177
0.00467205
-1.84345e-11
0.0250167
0.00454253
4.70169e-11
0.0257359
0.00435631
8.32205e-11
0.0263809
0.00411654
9.59416e-11
0.0269462
0.00383651
9.72127e-11
0.0274324
0.00352243
9.2941e-11
0.0278418
0.00318627
8.6707e-11
0.0281722
0.00283531
7.96914e-11
0.0284338
0.00247751
7.2921e-11
0.0286213
0.0021201
6.6468e-11
0.028746
0.00176681
6.09068e-11
0.0288098
0.00142354
5.63932e-11
0.0288206
0.00109171
5.29035e-11
0.0287901
0.000774795
5.08608e-11
0.0287182
0.000473441
4.94458e-11
0.0286184
0.000188531
4.92398e-11
0.0284894
-7.91468e-05
4.95937e-11
0.0283342
-0.000327949
5.00431e-11
0.0281553
-0.000559457
5.07547e-11
0.027952
-0.000774883
5.09858e-11
0.0277287
-0.000974354
5.12763e-11
0.0274874
-0.00115936
5.11416e-11
0.0272289
-0.00132945
5.06378e-11
0.0269589
-0.00148574
5.00666e-11
0.0266738
-0.00162824
4.89002e-11
0.0263791
-0.00175711
4.77856e-11
0.026075
-0.00187335
4.65472e-11
0.0257645
-0.00197615
4.54079e-11
0.0254447
-0.0020677
4.35197e-11
0.0251182
-0.00214619
4.37693e-11
0.0247906
-0.00221464
4.1955e-11
0.0244673
-0.00227247
3.97623e-11
0.0241552
-0.0023207
3.80214e-11
0.023854
-0.00236037
3.52537e-11
0.0235639
-0.00238973
3.32335e-11
0.0232851
-0.00241118
3.10567e-11
0.0230188
-0.00242164
2.84763e-11
0.022762
-0.00242438
2.50253e-11
0.0225182
-0.00241507
2.15957e-11
0.0222808
-0.00239672
1.73479e-11
0.0220556
-0.00236461
1.30342e-11
0.0218407
-0.0023206
8.03987e-12
0.021632
-0.00226014
5.24018e-12
0.0214303
-0.00219267
5.8553e-13
0.0212493
-0.00211552
-7.16647e-12
0.0210968
-0.00201536
-1.38164e-11
0.0209745
-0.00188979
-2.38321e-11
0.0208984
-0.00174153
-2.97833e-11
0.0208256
-0.00155601
-4.21467e-11
0.020792
-0.00136306
-4.42573e-11
0.0208279
-0.00115173
-4.89173e-11
0.0209396
-0.000899466
-5.76222e-11
0.0210758
-0.000589701
-6.45935e-11
0.0212321
-0.000258184
-6.56518e-11
0.0213853
8.19793e-05
-5.94626e-11
0.0215195
0.00041219
-4.78983e-11
0.0216282
0.000719866
-3.93688e-11
0.0217046
0.000992056
-2.66176e-11
0.0217692
0.00123267
-2.06333e-11
0.0218307
0.00144582
-2.01375e-11
0.0218752
0.00164516
-1.91981e-11
0.0218887
0.00182408
-1.79995e-11
0.0218959
0.00197003
-1.51387e-11
0.0219048
0.00209382
-1.78598e-11
0.0219114
0.00220837
-2.1122e-11
0.0219231
0.00230932
-2.44931e-11
0.0219385
0.00239602
-2.81802e-11
0.0219617
0.00246964
-3.22891e-11
0.0219943
0.00252285
-3.56871e-11
0.0220344
0.0025626
-4.34573e-11
0.0220708
0.00259334
-4.47221e-11
0.0221278
0.00258521
-4.80064e-11
0.022223
0.00253713
-5.31452e-11
0.0223503
0.00247555
-6.19055e-11
0.0225003
0.00237767
-7.08892e-11
0.0226998
0.00221376
-8.6688e-11
0.0229582
0.00200811
-9.64053e-11
0.0232591
0.00176233
-1.03656e-10
0.0235856
0.00149453
-1.0582e-10
0.0239202
0.00122117
-1.01783e-10
0.0242297
0.000963644
-9.04992e-11
0.0245025
0.000734307
-7.49067e-11
0.0247203
0.000541488
-5.72141e-11
0.0248874
0.000384763
-4.05858e-11
0.0250043
0.000259449
-2.65348e-11
0.0250798
0.000160703
-1.61356e-11
0.0251259
8.12606e-05
-6.53282e-12
0.0251565
4.66351e-06
-6.00405e-12
0.0251719
-6.36406e-05
-4.79649e-12
0.0251736
-0.000126352
-2.22486e-12
0.0251664
-0.000182708
1.28009e-12
0.0251542
-0.000237567
3.52938e-12
-0.000290785
3.40083e-12
0.0167145
0.00303647
-8.13769e-10
0.0175907
0.00302094
1.58688e-11
0.0183638
0.00331079
-3.81868e-11
0.0191054
0.00361145
-1.74875e-10
0.0198614
0.00381592
-2.14803e-10
0.0206442
0.00392524
-1.50983e-10
0.0214446
0.00395922
-4.73047e-11
0.0222415
0.00393399
3.87422e-11
0.0230101
0.00385404
8.8734e-11
0.0237367
0.00372202
1.08429e-10
0.0244045
0.00354326
1.11213e-10
0.0250086
0.0033239
1.07047e-10
0.0255383
0.00307287
1.00778e-10
0.0259954
0.00279782
9.35582e-11
0.0263756
0.00250781
8.56964e-11
0.0266856
0.0022089
7.74824e-11
0.0269271
0.00190819
6.93697e-11
0.0271071
0.00160963
6.19545e-11
0.0272333
0.0013176
5.58258e-11
0.0273088
0.00103443
5.10607e-11
0.027344
0.000762183
4.79657e-11
0.0273383
0.000502059
4.61801e-11
0.0272978
0.000254249
4.49265e-11
0.027225
1.99516e-05
4.63488e-11
0.0271182
-0.000197892
4.67393e-11
0.0269832
-0.000401714
4.77023e-11
0.026818
-0.000591416
4.8287e-11
0.0266283
-0.000767233
4.90433e-11
0.0264166
-0.000930602
4.96188e-11
0.0261836
-0.00108094
4.97413e-11
0.0259367
-0.00121986
5.00159e-11
0.0256762
-0.00134665
4.95058e-11
0.0254082
-0.0014627
4.93262e-11
0.0251315
-0.00156776
4.86885e-11
0.0248514
-0.00166289
4.7886e-11
0.0245765
-0.00174785
4.76404e-11
0.02431
-0.00182427
4.47683e-11
0.024053
-0.0018914
4.39444e-11
0.0237988
-0.0019502
4.26734e-11
0.0235491
-0.002
4.10745e-11
0.0232975
-0.00204141
3.94653e-11
0.0230536
-0.00207397
3.74008e-11
0.02281
-0.00209913
3.43608e-11
0.0225655
-0.00211495
3.16934e-11
0.0223172
-0.0021226
2.86434e-11
0.0220634
-0.0021208
2.51608e-11
0.0218062
-0.00210968
2.16193e-11
0.0215467
-0.00208932
1.75998e-11
0.0212944
-0.00205842
1.37559e-11
0.0210469
-0.00201649
8.87621e-12
0.0208107
-0.00196147
6.42243e-12
0.0205845
-0.00190226
8.00546e-13
0.0203852
-0.00183015
-4.33177e-12
0.0202154
-0.00173916
-1.28968e-11
0.0200772
-0.00162598
-1.9112e-11
0.0199846
-0.00149109
-2.81621e-11
0.0199117
-0.00132416
-4.02928e-11
0.0198655
-0.001138
-4.2239e-11
0.0198729
-0.00094417
-4.63437e-11
0.0199554
-0.000713726
-5.37825e-11
0.020086
-0.000432468
-6.67688e-11
0.0202389
-0.000114668
-6.91207e-11
0.0204018
0.000212213
-6.34946e-11
0.0205545
0.000537208
-5.57577e-11
0.0206849
0.000841008
-4.35428e-11
0.0207927
0.00111529
-3.72603e-11
0.0208796
0.00135456
-3.03783e-11
0.0209622
0.00156333
-2.64239e-11
0.0210399
0.001751
-2.61217e-11
0.0210979
0.00192032
-2.59431e-11
0.0211342
0.00206775
-2.61974e-11
0.0211736
0.00218211
-2.84741e-11
0.0212151
0.00227806
-3.11785e-11
0.0212688
0.00235615
-3.58413e-11
0.0213289
0.00241793
-4.03149e-11
0.0213893
0.00247107
-4.59391e-11
0.0214567
0.00249995
-5.08672e-11
0.0215824
0.00247214
-5.33941e-11
0.0217372
0.00243252
-5.94977e-11
0.0218898
0.00238347
-6.77715e-11
0.0220905
0.0022665
-8.30447e-11
0.0223537
0.00210078
-9.27871e-11
0.0226562
0.00189159
-1.02949e-10
0.0229934
0.00164865
-1.07383e-10
0.0233381
0.00139103
-1.05998e-10
0.0236747
0.0011349
-9.87737e-11
0.0239738
0.000899589
-8.57231e-11
0.0242298
0.000695225
-6.96353e-11
0.0244266
0.000526403
-5.30416e-11
0.0245745
0.000390626
-3.8314e-11
0.0246754
0.000281483
-2.70095e-11
0.0247403
0.00019531
-1.57755e-11
0.0247774
0.000124188
-1.05985e-11
0.024801
5.56372e-05
-9.59705e-12
0.0248089
-6.43875e-06
-7.01515e-12
0.0248055
-6.44352e-05
-3.13345e-12
0.0247897
-0.000117145
-1.27356e-13
0.0247674
-0.000167562
1.43214e-13
0.0247393
-0.000215073
3.03548e-12
-0.000261767
3.35333e-12
0.0175001
0.00241957
-4.20358e-10
0.0179032
0.00266131
1.98571e-12
0.0182897
0.00290851
-3.16278e-11
0.0186851
0.00315686
-1.14181e-10
0.0191185
0.00333948
-1.05033e-10
0.0196328
0.00342062
-3.29873e-11
0.0202179
0.00343036
3.69587e-11
0.0208495
0.00338454
8.67705e-11
0.0214928
0.0032958
1.07086e-10
0.0221218
0.00316675
1.08317e-10
0.0227183
0.0030049
1.02376e-10
0.0232682
0.00281486
9.57432e-11
0.0237648
0.00260312
9.02842e-11
0.0242053
0.0023756
8.50942e-11
0.0245907
0.00213736
7.92428e-11
0.0249209
0.00189348
7.24046e-11
0.0252007
0.0016474
6.50373e-11
0.0254287
0.00140301
5.78578e-11
0.0256108
0.00116208
5.16881e-11
0.025745
0.000927506
4.69088e-11
0.0258357
0.000699896
4.37234e-11
0.0258839
0.000481296
4.19513e-11
0.025889
0.000271678
4.14723e-11
0.0258581
7.18981e-05
4.07949e-11
0.0257895
-0.000115759
4.17558e-11
0.0256934
-0.000291074
4.33008e-11
0.0255676
-0.000454454
4.44224e-11
0.0254202
-0.000606301
4.53205e-11
0.0252537
-0.000747157
4.66188e-11
0.0250731
-0.000877543
4.72194e-11
0.0248861
-0.0009982
4.7925e-11
0.0246933
-0.00110976
4.79556e-11
0.024499
-0.00121265
4.77851e-11
0.0243042
-0.00130715
4.80695e-11
0.0241095
-0.00139323
4.81773e-11
0.0239145
-0.00147159
4.76124e-11
0.0237167
-0.00154204
4.67658e-11
0.0235149
-0.00160495
4.61748e-11
0.0233066
-0.00165989
4.48085e-11
0.0230882
-0.00170737
4.33933e-11
0.0228578
-0.00174698
4.13841e-11
0.0226157
-0.00177899
3.94294e-11
0.0223584
-0.00180322
3.66388e-11
0.0220846
-0.00181994
3.51355e-11
0.0218027
-0.00182854
3.23848e-11
0.0215134
-0.00183124
2.86036e-11
0.0212275
-0.00182599
2.50211e-11
0.0209478
-0.00181506
2.11229e-11
0.0206788
-0.00179506
1.73103e-11
0.0204246
-0.00176841
1.32474e-11
0.0201882
-0.00173017
9.24899e-12
0.019963
-0.00168336
6.49817e-12
0.0197582
-0.00163045
2.0086e-12
0.0195741
-0.00156526
-3.63554e-12
0.0194144
-0.00148158
-9.41882e-12
0.0192867
-0.00138083
-1.78134e-11
0.0191971
-0.00125651
-2.57886e-11
0.0191362
-0.00110595
-3.83643e-11
0.019098
-0.000929907
-4.02533e-11
0.0191109
-0.000750692
-4.42961e-11
0.0191958
-0.000538506
-5.17146e-11
0.0193359
-0.000281802
-6.61675e-11
0.0195025
2.227e-05
-7.14432e-11
0.0196845
0.000337838
-6.95961e-11
0.0198624
0.00065529
-6.26306e-11
0.0200255
0.00095472
-5.62407e-11
0.0201638
0.00122771
-4.66257e-11
0.0202776
0.00146604
-4.081e-11
0.020378
0.00167024
-3.94753e-11
0.0204724
0.00184948
-3.82435e-11
0.0205608
0.00200188
-3.83791e-11
0.0206333
0.00213172
-3.90087e-11
0.0206969
0.00223375
-4.05176e-11
0.0207557
0.00231304
-4.82431e-11
0.0208199
0.00236583
-4.99522e-11
0.0209249
0.00237883
-5.42863e-11
0.0210736
0.00235437
-6.28158e-11
0.021216
0.00233273
-6.63164e-11
0.0213834
0.00226252
-7.61619e-11
0.021616
0.00214093
-8.96419e-11
0.021893
0.00197162
-1.00132e-10
0.0222072
0.00176324
-1.07305e-10
0.0225483
0.00152648
-1.09969e-10
0.0228885
0.00128154
-1.05923e-10
0.0232139
0.00104441
-9.59806e-11
0.0234949
0.000832594
-8.14563e-11
0.0237286
0.000652182
-6.53655e-11
0.0239048
0.000505769
-4.99977e-11
0.0240326
0.000388739
-3.71176e-11
0.0241172
0.000294455
-2.73293e-11
0.0241674
0.000218242
-2.01867e-11
0.024193
0.000154746
-1.36817e-11
0.0242063
9.57449e-05
-9.52875e-12
0.0242025
3.99293e-05
-9.19173e-12
0.0241896
-1.32409e-05
-7.65556e-12
0.0241679
-6.21987e-05
-3.60073e-12
0.0241398
-0.000107947
-1.38105e-12
0.0241053
-0.000152055
1.98768e-13
0.0240657
-0.000192829
3.16323e-12
-0.00023342
3.77101e-12
0.0175379
0.00195423
7.88369e-11
0.017903
0.0023378
5.82429e-11
0.0181909
0.00260465
3.82384e-11
0.0184635
0.00285939
3.02815e-11
0.0187673
0.00303644
3.01391e-11
0.0191371
0.00309954
7.33484e-11
0.0195832
0.0030663
9.89601e-11
0.0200794
0.00297829
1.03969e-10
0.0205932
0.00285207
9.54518e-11
0.0210984
0.00269966
8.22835e-11
0.0215886
0.00253045
7.17807e-11
0.0220561
0.00234974
6.634e-11
0.0224994
0.00216152
6.46827e-11
0.022914
0.00196859
6.41111e-11
0.0232953
0.00177247
6.26077e-11
0.0236376
0.00157474
5.93451e-11
0.0239364
0.00137662
5.45996e-11
0.0241869
0.00117958
4.93152e-11
0.0243881
0.000984753
4.44634e-11
0.0245392
0.000793616
4.07294e-11
0.0246411
0.000607134
3.83336e-11
0.0246977
0.000426641
3.72303e-11
0.0247104
0.000252846
3.70077e-11
0.0246871
8.63207e-05
3.72774e-11
0.0246325
-7.15908e-05
3.80635e-11
0.024555
-0.000219698
3.92464e-11
0.02446
-0.000358005
4.02469e-11
0.0243535
-0.00048678
4.15631e-11
0.0242404
-0.000606321
4.22824e-11
0.0241212
-0.000717712
4.33497e-11
0.0239973
-0.000820927
4.46156e-11
0.0238665
-0.000917033
4.59028e-11
0.0237302
-0.00100582
4.7683e-11
0.023585
-0.00108818
4.7954e-11
0.0234287
-0.00116372
4.85888e-11
0.0232584
-0.00123299
4.88774e-11
0.0230722
-0.00129541
4.87458e-11
0.0228681
-0.00135152
4.82769e-11
0.0226465
-0.00140079
4.7236e-11
0.0224109
-0.00144366
4.58525e-11
0.0221625
-0.00147992
4.40945e-11
0.0219016
-0.00151022
4.15048e-11
0.0216378
-0.00153387
3.92175e-11
0.0213756
-0.00155267
3.52018e-11
0.021119
-0.00156518
3.24816e-11
0.0208671
-0.00157263
2.96778e-11
0.0206213
-0.00157372
2.68761e-11
0.0203799
-0.00156923
2.37569e-11
0.0201445
-0.00155811
2.05085e-11
0.0199152
-0.00154022
1.73207e-11
0.0196934
-0.00151483
1.35127e-11
0.0194819
-0.00147995
1.11494e-11
0.0192767
-0.00143839
7.39991e-12
0.019088
-0.00138952
3.10802e-12
0.0189198
-0.00132847
-2.0544e-12
0.018778
-0.00125233
-8.20712e-12
0.0186675
-0.00116002
-1.56138e-11
0.0185982
-0.00104653
-2.4198e-11
0.0185641
-0.000907047
-3.66242e-11
0.0185438
-0.000737948
-3.77134e-11
0.0185765
-0.000569315
-4.19612e-11
0.0186682
-0.000371762
-5.20632e-11
0.018822
-0.000134771
-6.78126e-11
0.0190009
0.000155583
-7.19166e-11
0.0191974
0.000459792
-7.39706e-11
0.019391
0.000768796
-7.11228e-11
0.0195689
0.00106238
-6.35523e-11
0.0197228
0.0013286
-5.79881e-11
0.0198548
0.00156043
-5.10467e-11
0.0199704
0.00175524
-4.98192e-11
0.0200753
0.00191747
-5.00216e-11
0.0201778
0.00204944
-5.02642e-11
0.0202765
0.00214982
-5.24704e-11
0.0203803
0.00221998
-5.62632e-11
0.0204963
0.00225145
-6.4356e-11
0.0206309
0.00224321
-6.46857e-11
0.0207731
0.00220649
-7.24034e-11
0.0209598
0.00213075
-8.58274e-11
0.0211978
0.0020019
-9.83233e-11
0.0214774
0.00183134
-1.0615e-10
0.0217918
0.0016248
-1.11177e-10
0.0221219
0.00139734
-1.11684e-10
0.0224425
0.00116734
-1.05973e-10
0.0227369
0.000950594
-9.48755e-11
0.0229827
0.00076154
-8.00126e-11
0.0231792
0.000603755
-6.43681e-11
0.023322
0.000477759
-5.00155e-11
0.0234223
0.000377373
-3.83979e-11
0.0234845
0.000297077
-2.96203e-11
0.0235205
0.000229732
-2.33303e-11
0.0235345
0.000173571
-1.78518e-11
0.0235361
0.0001232
-1.24983e-11
0.0235233
7.39038e-05
-1.18524e-11
0.0235027
2.67814e-05
-1.05958e-11
0.0234726
-1.80078e-05
-8.12481e-12
0.0234374
-5.9362e-05
-2.77866e-12
0.0233953
-9.87928e-05
-3.62438e-12
0.0233518
-0.000136286
1.25052e-12
0.023307
-0.000171202
3.30684e-12
-0.000205968
4.07524e-12
0.0168031
0.0013481
3.68713e-10
0.0174238
0.00181135
3.16142e-10
0.0178297
0.0022103
2.12955e-10
0.0181597
0.00252401
1.71223e-10
0.0185031
0.00271744
1.60671e-10
0.0188894
0.00277911
1.32303e-10
0.0193076
0.0027302
1.11258e-10
0.0197486
0.00261281
8.58839e-11
0.0201933
0.00245855
6.1328e-11
0.0206257
0.0022878
4.22157e-11
0.0210432
0.002113
3.14711e-11
0.0214442
0.00193998
2.87841e-11
0.0218308
0.00177089
3.14955e-11
0.0222004
0.0016054
3.60703e-11
0.0225458
0.00144313
3.96939e-11
0.0228596
0.00128289
4.10347e-11
0.0231342
0.00112424
4.01326e-11
0.0233642
0.000966883
3.79552e-11
0.0235467
0.000811017
3.55113e-11
0.0236813
0.000657408
3.36862e-11
0.0237705
0.000506873
3.27604e-11
0.0238201
0.000360529
3.27059e-11
0.0238352
0.000219281
3.31112e-11
0.0238242
8.3476e-05
3.36925e-11
0.0237945
-4.58909e-05
3.43129e-11
0.0237507
-0.000167877
3.50271e-11
0.0236999
-0.000282544
3.5882e-11
0.023641
-0.000389879
3.66497e-11
0.0235756
-0.000490045
3.76676e-11
0.0235009
-0.000583807
3.90487e-11
0.0234137
-0.00067138
4.06788e-11
0.023312
-0.000753326
4.29038e-11
0.0231931
-0.000829634
4.48431e-11
0.0230547
-0.000900714
4.6586e-11
0.0228978
-0.000966255
4.82217e-11
0.0227228
-0.00102652
4.92741e-11
0.0225317
-0.00108126
4.96551e-11
0.022329
-0.00113059
4.94692e-11
0.022117
-0.00117452
4.84799e-11
0.021899
-0.00121306
4.7003e-11
0.0216792
-0.0012463
4.48827e-11
0.0214576
-0.00127445
4.23145e-11
0.0212372
-0.00129738
3.98689e-11
0.0210161
-0.00131558
3.6701e-11
0.0207941
-0.00132877
3.37767e-11
0.0205718
-0.0013371
3.10264e-11
0.0203471
-0.00134057
2.80219e-11
0.0201221
-0.00133886
2.5175e-11
0.0198952
-0.00133219
2.2332e-11
0.0196707
-0.00131968
1.96293e-11
0.0194471
-0.00130166
1.6555e-11
0.0192329
-0.0012765
1.35165e-11
0.0190241
-0.0012439
1.11558e-11
0.018829
-0.00120673
7.68627e-12
0.0186514
-0.00116031
3.76833e-12
0.0184929
-0.00110356
-7.38896e-13
0.0183653
-0.00103357
-6.73505e-12
0.018266
-0.00094904
-1.41601e-11
0.0182071
-0.000844249
-2.25414e-11
0.0181858
-0.000715491
-3.612e-11
0.0181765
-0.00055431
-3.78742e-11
0.0182111
-0.000396059
-4.29629e-11
0.0182963
-0.000212298
-5.00325e-11
0.0184416
1.09754e-05
-6.38165e-11
0.0186195
0.000276365
-7.64723e-11
0.0188144
0.000566319
-8.35135e-11
0.0190059
0.00086249
-8.11664e-11
0.0191822
0.00114476
-7.60104e-11
0.019337
0.00139725
-6.98645e-11
0.0194721
0.00161262
-6.5198e-11
0.0195932
0.00178667
-6.56318e-11
0.0197094
0.00192103
-6.63098e-11
0.0198273
0.00201739
-6.77722e-11
0.0199573
0.00207159
-7.41795e-11
0.0201101
0.00207681
-7.50338e-11
0.0202676
0.00205489
-8.13072e-11
0.0204552
0.00198129
-9.13575e-11
0.0206823
0.00185471
-1.02286e-10
0.0209437
0.00168441
-1.11694e-10
0.0212321
0.00148243
-1.16516e-10
0.0215269
0.0012653
-1.15212e-10
0.0218149
0.00105005
-1.08448e-10
0.0220709
0.000853699
-9.63621e-11
0.0222835
0.000685283
-8.18277e-11
0.0224491
0.000548301
-6.69923e-11
0.0225686
0.000440116
-5.37458e-11
0.0226476
0.000355238
-4.29261e-11
0.0226976
0.00028711
-3.45541e-11
0.022725
0.000229989
-2.8487e-11
0.022733
0.000181279
-2.31851e-11
0.0227304
0.000137151
-1.78729e-11
0.0227238
9.50499e-05
-1.45514e-11
0.0227099
5.4756e-05
-1.22958e-11
0.0226867
1.58272e-05
-1.14461e-11
0.0226591
-2.0689e-05
-8.85554e-12
0.0226362
-5.70145e-05
-4.21196e-12
0.0226121
-8.99039e-05
-1.55714e-12
0.0225884
-0.000122321
-7.70678e-13
0.0225626
-0.000150909
2.67519e-12
-0.000179901
5.07015e-12
0.0174387
0.00110679
4.44498e-10
0.0177296
0.00162407
3.6929e-10
0.0179823
0.00198354
2.05173e-10
0.0182497
0.00226776
1.32844e-10
0.0185665
0.00243746
1.03739e-10
0.0189363
0.00247303
8.03011e-11
0.0193359
0.00239841
5.79045e-11
0.0197429
0.00225545
3.26117e-11
0.0201416
0.00208247
1.01255e-11
0.0205271
0.00190454
-1.63957e-12
0.0208981
0.00173375
-6.1151e-12
0.021255
0.00157382
-5.50279e-12
0.0215959
0.00142515
-1.7114e-12
0.0219189
0.00128551
6.07863e-12
0.0222224
0.00115284
1.52067e-11
0.022499
0.0010245
2.14662e-11
0.0227408
0.000898623
2.46782e-11
0.0229385
0.000774308
2.58e-11
0.0230884
0.000651136
2.60552e-11
0.0231907
0.000529558
2.64151e-11
0.023252
0.000410165
2.73274e-11
0.0232815
0.000293963
2.86589e-11
0.0232885
0.000181636
2.99603e-11
0.023282
7.37135e-05
3.0941e-11
0.023267
-2.94866e-05
3.16098e-11
0.0232468
-0.000127684
3.18127e-11
0.023221
-0.000220603
3.21202e-11
0.0231863
-0.000308208
3.26182e-11
0.0231399
-0.000390592
3.35897e-11
0.0230778
-0.000468234
3.51291e-11
0.0229978
-0.000541333
3.73055e-11
0.0228989
-0.000610214
3.98202e-11
0.0227813
-0.000674865
4.25721e-11
0.0226472
-0.000735296
4.52357e-11
0.0224984
-0.000791559
4.73142e-11
0.0223382
-0.000843296
4.88885e-11
0.0221683
-0.000890695
4.98789e-11
0.0219917
-0.000933304
5.00098e-11
0.0218094
-0.000971454
4.9375e-11
0.0216221
-0.00100483
4.79151e-11
0.0214304
-0.00103368
4.60088e-11
0.0212331
-0.001058
4.34522e-11
0.0210297
-0.00107804
4.07069e-11
0.0208199
-0.00109361
3.77326e-11
0.0206027
-0.00110539
3.46152e-11
0.0203796
-0.00111271
3.18603e-11
0.0201502
-0.00111649
2.90662e-11
0.0199175
-0.00111576
2.65635e-11
0.019683
-0.00111147
2.38591e-11
0.01945
-0.00110256
2.13575e-11
0.0192219
-0.00108941
1.89575e-11
0.0190017
-0.0010712
1.63576e-11
0.0187943
-0.00104734
1.37066e-11
0.0185978
-0.00101785
1.12889e-11
0.0184198
-0.000983156
8.32986e-12
0.0182588
-0.000939953
4.54851e-12
0.0181218
-0.000888044
-3.90429e-14
0.0180079
-0.000824167
-5.94237e-12
0.0179229
-0.00074597
-1.33022e-11
0.0178725
-0.000649853
-2.18999e-11
0.0178567
-0.000530217
-3.68437e-11
0.0178524
-0.000380781
-3.89508e-11
0.0178817
-0.000233694
-4.32637e-11
0.0179605
-6.43522e-05
-5.01841e-11
0.0180936
0.000134947
-6.66914e-11
0.0182563
0.000384032
-8.5266e-11
0.0184412
0.000652119
-9.18295e-11
0.0186297
0.000927158
-9.10577e-11
0.0188077
0.00118869
-8.7642e-11
0.0189706
0.00141938
-8.39956e-11
0.0191173
0.00160771
-8.00748e-11
0.0192563
0.00174867
-8.10546e-11
0.0193979
0.00184085
-8.33124e-11
0.0195503
0.00187849
-9.10112e-11
0.0197201
0.0018656
-9.35814e-11
0.0199147
0.0018104
-1.05598e-10
0.0201447
0.00169654
-1.12678e-10
0.0204041
0.00153696
-1.18678e-10
0.0206788
0.00134539
-1.21688e-10
0.020958
0.00113971
-1.19781e-10
0.0212206
0.000939382
-1.11745e-10
0.0214502
0.000759785
-9.97576e-11
0.0216397
0.000609098
-8.55948e-11
0.0217838
0.00048897
-7.16934e-11
0.0218858
0.000395846
-5.95045e-11
0.0219563
0.000323744
-4.93806e-11
0.0220001
0.000266484
-4.13944e-11
0.0220225
0.000219026
-3.47985e-11
0.0220339
0.000177495
-2.99452e-11
0.0220373
0.000140056
-2.42376e-11
0.0220343
0.000105696
-1.80392e-11
0.0220262
7.15284e-05
-1.72334e-11
0.0220195
3.83134e-05
-1.56953e-11
0.0220146
6.2904e-06
-1.30202e-11
0.0220079
-2.37141e-05
-8.24175e-12
0.0220029
-5.33706e-05
-3.83601e-12
0.0219984
-8.11282e-05
-1.58788e-12
0.0219983
-0.000107652
4.36377e-13
0.0219989
-0.000131185
3.16796e-12
-0.000154716
3.79395e-12
0.0166481
0.000629752
6.09247e-10
0.0172542
0.0011387
4.58593e-10
0.0176936
0.00157106
1.69202e-10
0.0181095
0.00187063
5.09512e-11
0.0185565
0.0020341
1.82222e-11
0.0190197
0.00206482
4.49344e-12
0.0194738
0.00198925
-1.63813e-12
0.0199048
0.00184991
-1.46888e-11
0.0203141
0.00168584
-3.04596e-11
0.0207028
0.00152326
-3.86652e-11
0.0210655
0.00137312
-4.09967e-11
0.0214012
0.00123771
-3.66713e-11
0.0217122
0.00111541
-2.54713e-11
0.0219971
0.00100352
-1.20688e-11
0.0222531
0.000899065
-4.14805e-12
0.0224728
0.000799254
3.3205e-12
0.0226533
0.000701943
1.06149e-11
0.0227926
0.00060603
1.5135e-11
0.0228922
0.000511292
1.83113e-11
0.0229583
0.000417852
2.10384e-11
0.0229984
0.000326294
2.3705e-11
0.023022
0.000237144
2.61641e-11
0.0230364
0.000150972
2.7999e-11
0.0230451
6.8028e-05
2.90544e-11
0.0230497
-1.21897e-05
2.91137e-11
0.0230462
-8.7834e-05
2.87416e-11
0.0230334
-0.000161319
2.84034e-11
0.0230061
-0.000231112
2.84331e-11
0.0229621
-0.000297663
2.92628e-11
0.0228992
-0.000360805
3.1078e-11
0.0228169
-0.000420952
3.35807e-11
0.0227172
-0.000477658
3.67706e-11
0.0226011
-0.000531428
4.0185e-11
0.0224725
-0.000581421
4.3535e-11
0.0223323
-0.000628347
4.65086e-11
0.0221841
-0.000671094
4.88019e-11
0.0220285
-0.000710607
5.01044e-11
0.0218664
-0.00074565
5.04471e-11
0.0216983
-0.000777273
5.01373e-11
0.0215231
-0.000804394
4.85713e-11
0.0213405
-0.000828132
4.66203e-11
0.0211506
-0.000847498
4.40282e-11
0.0209516
-0.000863781
4.09866e-11
0.0207442
-0.000875958
3.80251e-11
0.0205268
-0.000885391
3.49112e-11
0.0203014
-0.000891035
3.21087e-11
0.0200689
-0.00089413
2.94947e-11
0.0198321
-0.000893688
2.70088e-11
0.0195942
-0.000890634
2.48172e-11
0.0193573
-0.0008841
2.26545e-11
0.0191262
-0.000874511
2.06323e-11
0.0189033
-0.00086124
1.85607e-11
0.0186918
-0.000843916
1.62621e-11
0.0184943
-0.00082189
1.41534e-11
0.0183106
-0.000795973
1.15377e-11
0.0181451
-0.000764174
8.1309e-12
0.0179967
-0.000725647
4.28063e-12
0.0178684
-0.000678907
-2.68407e-13
0.0177608
-0.000621878
-6.0977e-12
0.0176791
-0.000551739
-1.36079e-11
0.0176251
-0.000465766
-2.30296e-11
0.0176035
-0.000355404
-3.77873e-11
0.0175939
-0.00022335
-3.98282e-11
0.017617
-9.00372e-05
-4.46448e-11
0.0176835
6.00997e-05
-5.41676e-11
0.0178106
0.000237529
-7.20336e-11
0.0179697
0.000463089
-8.87057e-11
0.0181578
0.000704355
-9.78765e-11
0.0183564
0.000951216
-1.00071e-10
0.0185548
0.0011809
-1.00101e-10
0.0187454
0.00137716
-9.9396e-11
0.018929
0.00152425
-9.98473e-11
0.0191142
0.00161377
-1.03476e-10
0.0193117
0.00163856
-1.04111e-10
0.0195192
0.00160958
-1.13536e-10
0.0197576
0.00151849
-1.21617e-10
0.0200183
0.00137868
-1.27153e-10
0.0202906
0.00120484
-1.2855e-10
0.0205601
0.0010165
-1.24942e-10
0.0208075
0.000832998
-1.16209e-10
0.0210205
0.000669296
-1.03756e-10
0.0211937
0.000533742
-9.01366e-11
0.0213229
0.000427261
-7.69956e-11
0.0214152
0.000346082
-6.55952e-11
0.0214785
0.000284493
-5.62878e-11
0.0215167
0.000236544
-4.85352e-11
0.0215371
0.00019743
-4.20702e-11
0.0215483
0.000163698
-3.64312e-11
0.0215516
0.000133448
-3.1709e-11
0.021547
0.000104668
-2.57802e-11
0.0215444
7.81363e-05
-1.91959e-11
0.0215442
5.14683e-05
-1.85068e-11
0.0215446
2.50843e-05
-1.66889e-11
0.021544
-8.64102e-07
-1.31433e-11
0.0215464
-2.47632e-05
-7.22667e-12
0.0215542
-4.80253e-05
-5.54351e-12
0.0215631
-7.06305e-05
-2.61444e-12
0.0215768
-9.16231e-05
-2.08901e-13
0.0215914
-0.000110154
3.18025e-12
-0.000128342
3.56216e-12
0.0171849
0.000452699
4.12496e-10
0.0173966
0.00100631
3.11814e-10
0.0177046
0.00131875
5.08599e-11
0.0180988
0.00153002
-5.09683e-11
0.0185562
0.00163966
-6.07983e-11
0.0190272
0.00164111
-4.93873e-11
0.0194786
0.00155542
-5.74662e-11
0.0199045
0.00142253
-6.14162e-11
0.0203078
0.00127736
-6.52489e-11
0.0206934
0.00114056
-6.72139e-11
0.0210579
0.00101895
-6.55844e-11
0.0213924
0.000913151
-5.88613e-11
0.0216907
0.000819679
-4.8224e-11
0.0219549
0.000735615
-3.40732e-11
0.0221864
0.000657764
-1.82343e-11
0.0223819
0.000583999
-6.71667e-12
0.0225355
0.000512738
-2.18276e-13
0.022647
0.000442797
6.19971e-12
0.0227217
0.000374033
1.22368e-11
0.022772
0.000306341
1.71965e-11
0.0228085
0.000240215
2.14765e-11
0.0228405
0.000175796
2.4928e-11
0.0228719
0.000113481
2.71556e-11
0.0229014
5.33797e-05
2.8249e-11
0.0229239
-3.21962e-06
2.65539e-11
0.0229389
-6.08677e-05
2.64552e-11
0.022939
-0.000114407
2.57284e-11
0.022921
-0.000166214
2.54603e-11
0.0228834
-0.000216467
2.61778e-11
0.0228271
-0.000264474
2.80084e-11
0.0227515
-0.00031076
3.079e-11
0.0226604
-0.000354395
3.44838e-11
0.0225539
-0.000396119
3.84266e-11
0.0224358
-0.000434704
4.24293e-11
0.0223069
-0.000471057
4.59236e-11
0.0221694
-0.000503944
4.86133e-11
0.0220243
-0.000534231
5.05089e-11
0.0218711
-0.000561025
5.09734e-11
0.0217102
-0.0005849
5.07686e-11
0.0215393
-0.000605479
4.92543e-11
0.0213577
-0.000622917
4.73746e-11
0.0211642
-0.000637481
4.4569e-11
0.0209575
-0.000648877
4.16606e-11
0.0207387
-0.000657964
3.85627e-11
0.0205086
-0.000664087
3.55414e-11
0.0202693
-0.000668373
3.2769e-11
0.0200247
-0.000669889
3.02454e-11
0.0197768
-0.000669986
2.78211e-11
0.0195313
-0.000667175
2.59144e-11
0.0192901
-0.000663167
2.37893e-11
0.0190583
-0.000655898
2.20838e-11
0.0188368
-0.000647069
2.01371e-11
0.0186287
-0.000634583
1.82532e-11
0.0184349
-0.000619346
1.62889e-11
0.0182541
-0.00060053
1.38337e-11
0.0180868
-0.000577971
1.12109e-11
0.0179342
-0.000550604
7.7601e-12
0.0177955
-0.000517749
3.66007e-12
0.0176739
-0.000477883
-1.09413e-12
0.017571
-0.000429422
-7.70164e-12
0.0174896
-0.000369214
-1.45148e-11
0.0174387
-0.000296055
-2.55303e-11
0.0174106
-0.000195698
-4.05422e-11
0.0174071
-9.12189e-05
-4.29617e-11
0.0174365
2.2173e-05
-4.8773e-11
0.0175104
0.000149375
-5.96318e-11
0.0176444
0.000303014
-8.0348e-11
0.0178168
0.000496903
-9.54313e-11
0.0180242
0.000702361
-1.06043e-10
0.0182495
0.000908857
-1.12559e-10
0.0184854
0.00109329
-1.16989e-10
0.0187245
0.0012361
-1.19589e-10
0.0189677
0.00131984
-1.2357e-10
0.0192201
0.00133523
-1.27854e-10
0.0194885
0.00128742
-1.33651e-10
0.0197687
0.00118188
-1.37744e-10
0.0200517
0.00103754
-1.37725e-10
0.0203225
0.000875346
-1.3216e-10
0.0205685
0.000715135
-1.2211e-10
0.0207756
0.00057189
-1.09026e-10
0.0209393
0.00045312
-9.52702e-11
0.021063
0.000360175
-8.2663e-11
0.0211494
0.000289995
-7.17673e-11
0.0212073
0.000237465
-6.28077e-11
0.0212451
0.000197519
-5.54684e-11
0.0212669
0.000165887
-4.9055e-11
0.0212747
0.000139454
-4.33103e-11
0.0212774
0.00011598
-3.80338e-11
0.0212758
9.46951e-05
-3.34578e-11
0.0212665
7.37603e-05
-2.69685e-11
0.0212591
5.41677e-05
-2.03705e-11
0.0212547
3.44695e-05
-1.95681e-11
0.0212513
1.48291e-05
-1.7612e-11
0.0212459
-4.41159e-06
-1.38184e-11
0.0212437
-2.31218e-05
-7.51481e-12
0.0212455
-4.05674e-05
-5.60678e-12
0.0212478
-5.75647e-05
-1.84087e-12
0.0212535
-7.30057e-05
-6.0382e-14
0.0212601
-8.76194e-05
3.33363e-12
-9.91083e-05
3.31917e-12
0.0169076
0.000365709
4.33692e-10
0.0170321
0.000907633
2.92825e-10
0.017387
0.00109143
7.84055e-11
0.0178473
0.0011813
-4.69505e-11
0.0183421
0.00121652
-7.0539e-11
0.0188292
0.00117904
-7.07648e-11
0.0192881
0.00108528
-7.22776e-11
0.0197183
0.000967242
-7.94691e-11
0.0201286
0.000850434
-8.44773e-11
0.0205236
0.000747053
-8.53038e-11
0.0208997
0.000659312
-8.19014e-11
0.0212471
0.000585286
-7.43108e-11
0.0215538
0.000521432
-6.20921e-11
0.0218217
0.000464292
-4.74198e-11
0.0220526
0.000411697
-3.12754e-11
0.0222478
0.000362181
-1.49882e-11
0.0224019
0.000314503
-4.81544e-12
0.0225158
0.00026811
1.56909e-12
0.0225954
0.000222842
9.3001e-12
0.0226546
0.000178657
1.58654e-11
0.0227039
0.000135834
2.11331e-11
0.0227519
9.44437e-05
2.50642e-11
0.0228002
5.47458e-05
2.72617e-11
0.0228451
1.64679e-05
2.74302e-11
0.0228833
-1.94725e-05
2.81511e-11
0.0229049
-5.41275e-05
2.57315e-11
0.0229094
-8.79387e-05
2.40599e-11
0.0228958
-0.000120421
2.33598e-11
0.0228634
-0.000151788
2.38062e-11
0.0228153
-0.000182099
2.56571e-11
0.0227506
-0.000211306
2.86177e-11
0.0226725
-0.000239285
3.26126e-11
0.0225803
-0.000265911
3.69359e-11
0.0224751
-0.000290953
4.1333e-11
0.0223586
-0.00031436
4.52811e-11
0.0222299
-0.000335849
4.83284e-11
0.0220921
-0.000355433
5.05118e-11
0.0219422
-0.000372965
5.12653e-11
0.0217827
-0.000388411
5.11326e-11
0.0216092
-0.000401847
4.96682e-11
0.0214234
-0.000413143
4.76696e-11
0.0212215
-0.000422607
4.48124e-11
0.0210053
-0.000430009
4.1862e-11
0.0207748
-0.000435973
3.86554e-11
0.0205332
-0.000439858
3.57291e-11
0.0202826
-0.000442837
3.28845e-11
0.0200292
-0.00044367
3.05089e-11
0.019774
-0.000443869
2.82144e-11
0.0195242
-0.000442002
2.63779e-11
0.0192808
-0.000439387
2.45675e-11
0.0190473
-0.000434741
2.28807e-11
0.0188259
-0.000428914
2.1275e-11
0.018616
-0.000421001
1.93899e-11
0.0184205
-0.000410924
1.75798e-11
0.0182366
-0.000398863
1.53173e-11
0.0180665
-0.000384209
1.28142e-11
0.017907
-0.000366726
1.01723e-11
0.0177584
-0.000345666
6.48763e-12
0.0176233
-0.000320535
2.36857e-12
0.0175016
-0.000289843
-3.25093e-12
0.0173987
-0.000252596
-9.30957e-12
0.0173179
-0.000206079
-1.82492e-11
0.0172725
-0.000147871
-2.82538e-11
0.0172414
-6.91354e-05
-4.62136e-11
0.017246
6.90151e-06
-4.83654e-11
0.017291
9.04897e-05
-5.38016e-11
0.0173885
0.000186826
-6.51454e-11
0.0175451
0.000308899
-8.73822e-11
0.0177509
0.000455109
-1.05868e-10
0.0180006
0.000611312
-1.21484e-10
0.0182809
0.000758723
-1.32544e-10
0.0185845
0.000875759
-1.41491e-10
0.0189002
0.000943851
-1.46658e-10
0.0192219
0.000951277
-1.51644e-10
0.0195466
0.000900883
-1.52749e-10
0.0198623
0.000805894
-1.4966e-10
0.0201567
0.000686155
-1.41798e-10
0.020415
0.000562017
-1.29626e-10
0.0206298
0.000448494
-1.15521e-10
0.0207989
0.000353364
-1.01361e-10
0.020924
0.000278607
-8.86402e-11
0.0210133
0.000222078
-7.8004e-11
0.0210729
0.000179993
-6.91746e-11
0.0211086
0.000148481
-6.18445e-11
0.0211286
0.000124208
-5.55741e-11
0.0211374
0.000104619
-4.97617e-11
0.0211333
8.80162e-05
-4.44525e-11
0.0211271
7.30468e-05
-3.90896e-11
0.0211175
5.94204e-05
-3.49035e-11
0.0211031
4.59067e-05
-2.69033e-11
0.0210905
3.27568e-05
-2.41737e-11
0.0210825
1.97272e-05
-2.00302e-11
0.0210765
6.60539e-06
-1.70912e-11
0.0210688
-6.40788e-06
-1.38938e-11
0.0210627
-1.89082e-05
-8.17016e-12
0.0210602
-3.06645e-05
-5.48463e-12
0.0210576
-4.19524e-05
-1.02865e-12
0.0210562
-5.24188e-05
1.82241e-14
0.0210535
-6.18729e-05
3.27931e-12
-6.90083e-05
3.7424e-12
0.0162892
0.000154426
8.1125e-10
0.0167275
0.000472271
5.68546e-10
0.0173153
0.0005917
2.35849e-10
0.0179552
0.000635103
6.38044e-11
0.0185817
0.000642458
1.05459e-11
0.0191623
0.000610843
-1.68552e-11
0.0196869
0.00055107
-4.75601e-11
0.0201623
0.000482772
-7.45738e-11
0.0206014
0.000419529
-8.97772e-11
0.0210092
0.000365721
-9.48576e-11
0.0213823
0.000321321
-9.19349e-11
0.0217106
0.000284204
-8.44169e-11
0.0219858
0.000252276
-7.20668e-11
0.022208
0.000223651
-5.68067e-11
0.0223872
0.000197136
-3.9705e-11
0.0225318
0.00017206
-2.36196e-11
0.0226358
0.00014796
-8.2775e-12
0.0226989
0.000124587
-1.20044e-12
0.0227305
0.000101977
7.43051e-12
0.0227496
8.00893e-05
1.55104e-11
0.022772
5.90428e-05
2.1711e-11
0.0228052
3.88243e-05
2.60049e-11
0.0228472
1.96469e-05
2.81534e-11
0.0228884
1.95724e-06
2.82887e-11
0.0229215
-1.57819e-05
2.64696e-11
0.022938
-3.20428e-05
2.43597e-11
0.0229338
-4.77062e-05
2.26135e-11
0.0229093
-6.29419e-05
2.18107e-11
0.0228661
-7.77427e-05
2.22763e-11
0.0228075
-9.21514e-05
2.4299e-11
0.0227347
-0.000106145
2.75075e-11
0.0226504
-0.000119656
3.18102e-11
0.0225541
-0.000132649
3.644e-11
0.022447
-0.000144912
4.11753e-11
0.02233
-0.000156529
4.54375e-11
0.0222019
-0.000167144
4.87369e-11
0.0220653
-0.000176967
5.11438e-11
0.0219168
-0.00018566
5.2003e-11
0.0217581
-0.000193411
5.19311e-11
0.0215855
-0.000200077
5.04412e-11
0.0214002
-0.000205715
4.83958e-11
0.0211986
-0.00021041
4.54142e-11
0.0209847
-0.0002141
4.24891e-11
0.0207555
-0.000217052
3.91003e-11
0.0205177
-0.000219022
3.62107e-11
0.0202714
-0.000220475
3.33174e-11
0.020022
-0.000220956
3.08649e-11
0.019773
-0.000220979
2.87242e-11
0.0195272
-0.000220153
2.67459e-11
0.0192885
-0.000218656
2.51444e-11
0.0190567
-0.000216485
2.3368e-11
0.0188362
-0.00021336
2.20004e-11
0.0186231
-0.000209492
2.01305e-11
0.0184217
-0.000204472
1.84617e-11
0.0182289
-0.000198381
1.63815e-11
0.0180466
-0.000191173
1.42009e-11
0.0178736
-0.000182411
1.13398e-11
0.0177142
-0.000172272
8.18368e-12
0.0175635
-0.000159845
4.22384e-12
0.0174301
-0.000145235
-4.23854e-13
0.017311
-0.000127162
-5.95865e-12
0.0172124
-0.000104834
-1.4317e-11
0.0171435
-7.77152e-05
-2.13917e-11
0.0170996
-3.81696e-05
-4.32711e-11
0.0170946
2.99393e-08
-4.5733e-11
0.017129
4.2136e-05
-5.07279e-11
0.0172091
8.94233e-05
-6.0794e-11
0.0173462
0.000147714
-8.0341e-11
0.0175414
0.000224196
-1.02722e-10
0.0177976
0.000307724
-1.24936e-10
0.0181122
0.000389932
-1.44019e-10
0.0184717
0.000456801
-1.58214e-10
0.0188583
0.000495279
-1.67279e-10
0.0192491
0.000497292
-1.70338e-10
0.0196235
0.000464399
-1.66072e-10
0.0199649
0.000407068
-1.55675e-10
0.0202592
0.000338914
-1.40893e-10
0.0205012
0.000272168
-1.24517e-10
0.0206907
0.00021413
-1.08982e-10
0.0208312
0.000167544
-9.55402e-11
0.020932
0.000131979
-8.45288e-11
0.0210002
0.00010546
-7.5574e-11
0.0210416
8.57395e-05
-6.80784e-11
0.0210641
7.08416e-05
-6.16478e-11
0.0210725
5.92153e-05
-5.58914e-11
0.0210687
4.97052e-05
-5.02945e-11
0.0210578
4.15968e-05
-4.52846e-11
0.0210468
3.42433e-05
-3.97157e-11
0.0210297
2.74118e-05
-3.56089e-11
0.0210135
2.11792e-05
-2.75878e-11
0.0210017
1.42542e-05
-2.62478e-11
0.0209961
7.52471e-06
-2.16717e-11
0.0209905
1.07155e-06
-1.72284e-11
0.0209856
-5.54497e-06
-1.22431e-11
0.0209832
-1.15939e-05
-7.89029e-12
0.0209845
-1.77191e-05
-6.39515e-12
0.0209865
-2.33043e-05
-5.15076e-13
0.0209889
-2.85198e-05
2.93905e-13
0.0209892
-3.30446e-05
3.65837e-12
-3.59452e-05
4.23304e-12
0.0161635
9.77099e-10
0.0166322
7.49675e-10
0.0173445
4.12912e-10
0.0180611
1.93685e-10
0.0187215
8.74767e-11
0.0193214
2.8733e-11
0.0198621
-2.35199e-11
0.020351
-6.74358e-11
0.0207963
-9.28889e-11
0.0212021
-1.01187e-10
0.0215653
-9.88928e-11
0.0218783
-9.06289e-11
0.0221346
-7.74213e-11
0.0223344
-6.16058e-11
0.0224859
-4.3782e-11
0.0225994
-2.73514e-11
0.0226777
-1.00127e-11
0.022715
-2.16711e-12
0.0227172
6.77738e-12
0.0227099
1.57032e-11
0.0227158
2.23175e-11
0.022745
2.66743e-11
0.0227913
2.85108e-11
0.022842
2.78911e-11
0.0228828
2.62883e-11
0.0229046
2.38706e-11
0.0229029
2.18017e-11
0.0228787
2.09036e-11
0.0228339
2.13964e-11
0.022773
2.35131e-11
0.0226975
2.68136e-11
0.0226112
3.127e-11
0.0225133
3.60167e-11
0.0224065
4.09443e-11
0.0222905
4.53436e-11
0.0221645
4.87784e-11
0.0220305
5.13153e-11
0.0218842
5.22119e-11
0.0217278
5.22091e-11
0.0215566
5.07053e-11
0.0213723
4.86591e-11
0.0211717
4.5632e-11
0.0209586
4.27122e-11
0.0207309
3.92629e-11
0.0204951
3.6388e-11
0.0202516
3.35004e-11
0.0200048
3.09866e-11
0.0197595
2.89764e-11
0.0195157
2.69012e-11
0.0192794
2.54005e-11
0.0190491
2.36606e-11
0.0188282
2.22501e-11
0.0186157
2.05256e-11
0.0184125
1.8832e-11
0.0182188
1.68499e-11
0.0180333
1.45729e-11
0.0178581
1.19657e-11
0.0176928
8.91081e-12
0.0175376
5.0774e-12
0.0173979
4.88768e-13
0.0172717
-4.60915e-12
0.0171668
-1.23527e-11
0.0170873
-1.86733e-11
0.0170352
-4.08836e-11
0.0170243
-4.29988e-11
0.0170537
-4.77908e-11
0.0171277
-5.72319e-11
0.0172558
-7.31227e-11
0.0174455
-1.0443e-10
0.0177091
-1.26887e-10
0.0180463
-1.50203e-10
0.0184434
-1.69605e-10
0.018875
-1.81198e-10
0.0193076
-1.82655e-10
0.0197109
-1.73923e-10
0.0200632
-1.58112e-10
0.0203545
-1.39213e-10
0.0205852
-1.20999e-10
0.0207593
-1.05276e-10
0.0208865
-9.26666e-11
0.0209758
-8.27218e-11
0.0210332
-7.46015e-11
0.0210666
-6.77017e-11
0.021082
-6.16152e-11
0.021082
-5.60603e-11
0.0210706
-5.04489e-11
0.0210545
-4.57029e-11
0.0210362
-3.99137e-11
0.0210127
-3.57333e-11
0.0209921
-2.8589e-11
0.0209804
-2.55948e-11
0.0209741
-2.07153e-11
0.020965
-1.76975e-11
0.0209595
-1.51361e-11
0.0209573
-8.64369e-12
0.0209596
-5.01099e-12
0.0209629
4.42493e-13
0.0209656
2.58202e-13
0.020966
4.16057e-12
4.45148e-12
0.00744872
0.00884722
-3.71401e-12
0.00282528
0.00462038
-1.21724e-11
-0.00143351
0.00425569
-1.42755e-11
-0.00331477
0.00188141
-7.888e-12
-0.00459125
0.00127531
-9.86746e-12
-0.00525878
0.000665082
-1.03945e-11
-0.00549345
0.00023209
-9.68438e-12
-0.00580102
0.000305765
-7.80674e-12
-0.00614888
0.000345605
-7.27304e-12
-0.00644581
0.000294306
-7.22393e-12
-0.00666636
0.000217371
-6.93162e-12
-0.00683381
0.000165844
-5.7536e-12
-0.00695115
0.000117811
-4.44514e-12
-0.00705066
9.44014e-05
-6.62817e-12
-0.0071631
0.00010359
-8.12344e-12
-0.00724833
7.48631e-05
-8.9701e-12
-0.0072777
1.87419e-05
-9.29984e-12
-0.00725851
-3.39918e-05
-1.05308e-11
-0.00718392
-9.20108e-05
-1.13457e-11
-0.00704718
-0.000155529
-1.16343e-11
-0.00684911
-0.000217071
-1.12651e-11
-0.00660017
-0.000266203
-1.02644e-11
-0.00631473
-0.000300968
-8.9326e-12
-0.00599646
-0.000330808
-7.51798e-12
-0.00566069
-0.000345565
-5.71761e-12
-0.00531203
-0.000355203
-4.19317e-12
-0.00495259
-0.000362528
-3.26736e-12
-0.00458444
-0.000369638
-2.73053e-12
-0.00420483
-0.000379447
-2.7319e-12
-0.0038127
-0.000389449
-2.33636e-12
-0.00341021
-0.000399037
-2.0473e-12
-0.00298904
-0.00041723
-1.80436e-12
-0.00255545
-0.000428917
-1.47103e-12
-0.0021172
-0.000433192
-1.26909e-12
-0.00167766
-0.000435116
-1.24532e-12
-0.00123676
-0.000437071
-1.42788e-12
-0.000792272
-0.000440402
-1.82487e-12
-0.000345559
-0.000442966
-1.86284e-12
0.000119316
-0.000462426
-2.34793e-12
0.000576321
-0.000456042
-2.49617e-12
0.00101397
-0.000438098
-2.9529e-12
0.00143366
-0.000421021
-3.39942e-12
0.00184288
-0.000410902
-3.48561e-12
0.00223714
-0.000397016
-4.31225e-12
0.00261578
-0.000382668
-4.0542e-12
0.00298113
-0.000370237
-4.16612e-12
0.00334071
-0.000364903
-4.31724e-12
0.00369425
-0.00036033
-4.68118e-12
0.00403545
-0.000348322
-4.5944e-12
0.00436232
-0.000334567
-4.60675e-12
0.00467612
-0.000321948
-4.55541e-12
0.00497657
-0.000309573
-4.5343e-12
0.00526526
-0.000297502
-4.43928e-12
0.00554105
-0.000285618
-4.28496e-12
0.00580534
-0.000273415
-4.07884e-12
0.0060586
-0.000261895
-3.83511e-12
0.00630079
-0.000249969
-3.58721e-12
0.00653291
-0.000238717
-3.23313e-12
0.00675447
-0.000227285
-2.92032e-12
0.00696661
-0.000216401
-2.55674e-12
0.00716941
-0.000205539
-2.2162e-12
0.00736243
-0.000195182
-1.85145e-12
0.00754654
-0.000184831
-1.49745e-12
0.00772188
-0.000175079
-1.11021e-12
0.00788882
-0.000165341
-7.51351e-13
0.00804721
-0.000156189
-3.41427e-13
0.0081983
-0.000147066
-1.65235e-14
0.00834125
-0.000138557
2.049e-13
0.00847718
-0.000130014
3.99997e-13
0.00860604
-0.000122104
5.95801e-13
0.00872743
-0.000114116
7.62387e-13
0.00884278
-0.000106694
9.10798e-13
0.0089505
-9.92429e-05
1.0149e-12
0.00905239
-9.224e-05
1.09476e-12
0.00914733
-8.5298e-05
1.142e-12
0.00923612
-7.87256e-05
1.17443e-12
0.00931873
-7.22888e-05
1.18484e-12
0.0093953
-6.61943e-05
1.18956e-12
0.00946614
-6.02756e-05
1.18136e-12
0.00953145
-5.46574e-05
1.16982e-12
0.00959138
-4.92271e-05
1.15857e-12
0.00964625
-4.40316e-05
1.12723e-12
0.00969628
-3.904e-05
1.13958e-12
0.00974149
-3.42704e-05
1.06135e-12
0.00978253
-2.96885e-05
1.13577e-12
0.00981884
-2.52809e-05
1.13849e-12
0.00985157
-2.11195e-05
1.13771e-12
0.00987982
-1.70576e-05
1.12554e-12
0.0099045
-1.30179e-05
8.6232e-13
0.00992544
-9.41486e-06
1.00239e-12
0.00994279
-5.90728e-06
8.11651e-13
0.00995698
-2.27501e-06
7.90397e-13
0.00996705
1.1372e-06
8.58438e-13
0.00997499
4.22231e-06
8.15911e-13
0.00997861
7.54966e-06
7.5396e-13
0.0099793
1.13475e-05
7.18997e-13
0.00997488
1.57039e-05
6.48189e-13
0.00996541
2.11575e-05
5.84183e-13
0.00994847
2.81451e-05
5.16512e-13
3.69952e-05
4.94137e-13
0.0114612
0.0132527
-5.02993e-12
0.00790203
0.0081777
-1.07005e-11
0.00602856
0.00612459
-9.84218e-12
0.00354496
0.00436302
-8.37614e-12
0.00179916
0.0030193
-9.90316e-12
0.000234723
0.00222526
-1.1269e-11
-0.00125341
0.00172094
-1.02746e-11
-0.00231671
0.00137304
-7.46113e-12
-0.00301435
0.00104597
-7.08106e-12
-0.00347857
0.000759575
-7.24771e-12
-0.00376749
0.000505672
-7.13376e-12
-0.00400466
0.000403053
-6.10866e-12
-0.0042288
0.000341572
-5.85176e-12
-0.00438515
0.000246909
-6.24922e-12
-0.00448568
0.000196771
-8.02574e-12
-0.00454243
0.000122924
-9.11252e-12
-0.00453275
-1.32513e-06
-9.52885e-12
-0.00445876
-0.000122466
-1.10053e-11
-0.00432124
-0.000247678
-1.19338e-11
-0.00410921
-0.000388401
-1.22631e-11
-0.0038382
-0.000510401
-1.1945e-11
-0.0035248
-0.000600817
-1.08699e-11
-0.00318601
-0.000657765
-9.39162e-12
-0.00282311
-0.000710829
-8.11209e-12
-0.00245501
-0.000729021
-6.78152e-12
-0.00207872
-0.000743141
-5.4651e-12
-0.00169638
-0.000754389
-4.42226e-12
-0.00130417
-0.000769936
-3.7322e-12
-0.000900023
-0.000787971
-3.59778e-12
-0.000484442
-0.000806907
-2.9746e-12
-5.10161e-05
-0.000832331
-2.41757e-12
0.000376684
-0.000845477
-2.39019e-12
0.0008012
-0.000853369
-1.98109e-12
0.00122425
-0.000855393
-1.85245e-12
0.00164958
-0.000859052
-1.87495e-12
0.00207212
-0.000859009
-1.96712e-12
0.00249135
-0.000858152
-1.98668e-12
0.00290703
-0.000856912
-2.0596e-12
0.00330238
-0.000856672
-2.4281e-12
0.00369193
-0.000845771
-2.43522e-12
0.00407992
-0.00082639
-2.91643e-12
0.00446481
-0.000806248
-3.07734e-12
0.00483903
-0.000785349
-3.42506e-12
0.00520475
-0.000763371
-3.84033e-12
0.00555772
-0.000737426
-3.97394e-12
0.00589795
-0.000713033
-3.96269e-12
0.00622457
-0.000693601
-3.98809e-12
0.00654349
-0.000682149
-4.07273e-12
0.00685103
-0.000659507
-4.2274e-12
0.00714762
-0.000635124
-4.20891e-12
0.00743039
-0.000609306
-4.19525e-12
0.00770134
-0.000584994
-4.08102e-12
0.00795829
-0.000560075
-4.04145e-12
0.00820397
-0.000536304
-3.89914e-12
0.00843764
-0.000512153
-3.80041e-12
0.00865964
-0.000488861
-3.57128e-12
0.00887074
-0.000465393
-3.38425e-12
0.00907101
-0.000442839
-3.06755e-12
0.00926065
-0.000420224
-2.78943e-12
0.00944064
-0.000398535
-2.44367e-12
0.00961089
-0.000376963
-2.13956e-12
0.00977189
-0.000356282
-1.78784e-12
0.00992424
-0.000335838
-1.46249e-12
0.0100675
-0.000316321
-1.10772e-12
0.0102025
-0.000297102
-7.66658e-13
0.0103293
-0.000278814
-4.01425e-13
0.0104474
-0.000260876
-7.0292e-14
0.0105587
-0.000243785
1.54864e-13
0.0106612
-0.000227129
3.37533e-13
0.0107578
-0.000211131
5.12866e-13
0.0108463
-0.000195638
6.78208e-13
0.010929
-0.000180658
8.16781e-13
0.0110044
-0.000166209
9.2539e-13
0.0110739
-0.000152193
1.00825e-12
0.0111366
-0.000138747
1.06658e-12
0.0111936
-0.000125729
1.10796e-12
0.0112443
-0.000113321
1.12997e-12
0.0112897
-0.000101382
1.14247e-12
0.0113292
-9.00402e-05
1.14281e-12
0.0113638
-7.91533e-05
1.13938e-12
0.0113931
-6.87905e-05
1.1249e-12
0.0114175
-5.88249e-05
1.12405e-12
0.0114374
-4.93202e-05
1.07895e-12
0.0114528
-4.03009e-05
1.11766e-12
0.0114643
-3.15275e-05
1.11934e-12
0.0114716
-2.33572e-05
1.12212e-12
0.0114756
-1.55354e-05
9.25288e-13
0.0114756
-8.05987e-06
8.87044e-13
0.0114721
-3.77781e-07
8.57193e-13
0.0114661
5.26917e-06
1.02336e-12
0.0114573
1.13188e-05
9.84802e-13
0.0114463
1.7348e-05
9.31473e-13
0.0114322
2.33844e-05
8.28552e-13
0.0114158
2.93656e-05
8.36012e-13
0.0113959
3.56601e-05
7.64497e-13
0.0113736
4.24633e-05
7.12623e-13
0.0113475
5.03401e-05
6.47032e-13
0.0113176
5.9779e-05
5.74071e-13
0.0112823
7.18638e-05
5.0917e-13
8.74541e-05
4.98275e-13
0.0153004
0.0151542
-5.12739e-12
0.012777
0.010699
-8.42671e-12
0.0105843
0.00831507
-8.26195e-12
0.00847705
0.0064659
-8.14213e-12
0.00649892
0.00499255
-8.76474e-12
0.00481684
0.00389958
-9.76038e-12
0.00340986
0.00312487
-8.82703e-12
0.00226766
0.00251743
-7.43672e-12
0.00130533
0.00201139
-7.16465e-12
0.000451413
0.00161522
-7.51225e-12
-0.000348405
0.00130691
-7.5185e-12
-0.000994153
0.00104964
-6.24699e-12
-0.0014605
0.000805858
-6.35188e-12
-0.0017812
0.000564168
-6.56247e-12
-0.0019212
0.000329549
-8.07655e-12
-0.00192495
0.000119912
-9.27916e-12
-0.00181439
-0.000122573
-1.0635e-11
-0.00165935
-0.00029219
-1.19369e-11
-0.0014498
-0.000476498
-1.26406e-11
-0.00114998
-0.000710999
-1.28541e-11
-0.00080036
-0.000886369
-1.25604e-11
-0.000416966
-0.00101028
-1.15204e-11
-6.39605e-06
-0.00108946
-9.3859e-12
0.000375341
-0.00111797
-9.17151e-12
0.000764572
-0.00113814
-7.05357e-12
0.00115724
-0.00115241
-5.78337e-12
0.00155738
-0.00116888
-5.01485e-12
0.00196632
-0.00119073
-4.29283e-12
0.00238018
-0.00121245
-3.80894e-12
0.00280056
-0.00123648
-3.24063e-12
0.00321806
-0.00125948
-2.84528e-12
0.00363952
-0.00127649
-2.79551e-12
0.00406407
-0.00128647
-2.43619e-12
0.0044919
-0.00129212
-2.22762e-12
0.00491642
-0.00129255
-2.10789e-12
0.00533851
-0.00129069
-2.2793e-12
0.00575406
-0.00128352
-2.2877e-12
0.00616176
-0.00127423
-2.42172e-12
0.00655462
-0.00126021
-2.44051e-12
0.00693822
-0.00124055
-2.56602e-12
0.00731274
-0.00121346
-2.70421e-12
0.007678
-0.00118328
-2.90088e-12
0.00803002
-0.00115059
-3.0998e-12
0.00836989
-0.00111566
-3.41402e-12
0.00869693
-0.00107792
-3.58114e-12
0.00900962
-0.0010382
-3.59451e-12
0.00930454
-0.001002
-3.6189e-12
0.00958237
-0.000973576
-3.65849e-12
0.00985106
-0.000942311
-3.71815e-12
0.0101077
-0.000905983
-3.75726e-12
0.0103526
-0.000867757
-3.76812e-12
0.0105829
-0.000828833
-3.71125e-12
0.0108011
-0.000791004
-3.64154e-12
0.0110059
-0.000753587
-3.65043e-12
0.0111989
-0.000717195
-3.57183e-12
0.0113798
-0.000681293
-3.32946e-12
0.0115501
-0.000646209
-3.10271e-12
0.0117093
-0.000611683
-2.84439e-12
0.0118593
-0.000577962
-2.57735e-12
0.0119988
-0.000545018
-2.29167e-12
0.0121295
-0.000512856
-2.01827e-12
0.0122506
-0.00048165
-1.73394e-12
0.0123631
-0.000451233
-1.45466e-12
0.0124671
-0.000421867
-1.16132e-12
0.0125627
-0.000393331
-8.64695e-13
0.012651
-0.00036585
-5.56658e-13
0.0127314
-0.000339225
-2.04382e-13
0.0128052
-0.000313622
5.22986e-14
0.0128718
-0.000288807
2.08451e-13
0.0129319
-0.000264975
3.78627e-13
0.0129856
-0.000241894
5.52407e-13
0.0130327
-0.000219695
6.95674e-13
0.013074
-0.000198204
8.13724e-13
0.013109
-0.000177616
9.09579e-13
0.0131387
-0.000157664
9.83194e-13
0.0131625
-0.000138696
1.03734e-12
0.0131815
-0.000120415
1.07217e-12
0.0131953
-0.000103158
1.09418e-12
0.0132047
-8.65629e-05
1.10457e-12
0.0132092
-7.08992e-05
1.11029e-12
0.0132099
-5.58442e-05
1.10483e-12
0.0132057
-4.15069e-05
1.09213e-12
0.0131984
-2.79923e-05
1.10232e-12
0.0131869
-1.52428e-05
1.05873e-12
0.013173
-2.82016e-06
1.05202e-12
0.0131561
7.63068e-06
1.10296e-12
0.013138
1.76343e-05
9.31478e-13
0.0131171
2.73369e-05
8.8587e-13
0.0130949
3.67806e-05
8.62907e-13
0.0130695
4.55846e-05
8.37433e-13
0.0130413
5.40406e-05
8.1217e-13
0.0130115
6.23461e-05
9.13322e-13
0.0129786
7.04875e-05
8.78495e-13
0.0129443
7.86457e-05
7.65436e-13
0.0129069
8.69227e-05
7.56683e-13
0.0128678
9.57487e-05
7.20146e-13
0.0128258
0.000105568
6.52608e-13
0.0127815
0.000117161
5.77962e-13
0.0127343
0.000131504
5.06288e-13
0.000150141
4.7179e-13
0.0174121
0.0159071
-4.65306e-12
0.0157118
0.0123962
-6.92682e-12
0.0140601
0.00996457
-7.2353e-12
0.0123359
0.00818491
-7.97209e-12
0.010633
0.00669006
-7.99154e-12
0.00898372
0.00554073
-8.69603e-12
0.00745935
0.00464141
-7.92866e-12
0.00609813
0.00387123
-7.00759e-12
0.00493166
0.00317635
-6.69854e-12
0.00396173
0.00258594
-6.72874e-12
0.00314164
0.00212783
-6.50978e-12
0.00246335
0.00172871
-5.93944e-12
0.00191293
0.00135453
-6.29618e-12
0.0014866
0.000985305
-7.12873e-12
0.00118556
0.000622331
-8.4206e-12
0.00103663
0.000259115
-9.34097e-12
0.00105238
-0.000151418
-1.0484e-11
0.00123083
-0.000489856
-1.16582e-11
0.00151262
-0.000784284
-1.288e-11
0.00187403
-0.00110069
-1.26655e-11
0.00228411
-0.00132812
-1.21565e-11
0.0027044
-0.00146344
-1.10868e-11
0.00312421
-0.00154077
-9.49105e-12
0.00354895
-0.00157327
-8.33433e-12
0.00397505
-0.00159101
-7.07952e-12
0.00440636
-0.0016068
-6.07171e-12
0.00484585
-0.00162837
-5.34604e-12
0.0052897
-0.00165262
-4.76229e-12
0.00573927
-0.00167804
-4.45756e-12
0.00618968
-0.00170146
-3.82838e-12
0.00663945
-0.00172226
-3.51299e-12
0.00708613
-0.00173599
-3.22136e-12
0.00753096
-0.00174253
-3.09579e-12
0.00796928
-0.00174174
-2.77594e-12
0.00840117
-0.00173445
-2.72762e-12
0.00882236
-0.00172227
-2.63541e-12
0.00923083
-0.00170332
-2.63598e-12
0.00962468
-0.00167995
-2.56777e-12
0.0100021
-0.00165011
-2.57343e-12
0.0103645
-0.00161545
-2.54305e-12
0.0107118
-0.0015739
-2.62338e-12
0.0110439
-0.00152914
-2.68531e-12
0.0113589
-0.00148069
-2.82039e-12
0.0116597
-0.00143108
-2.93479e-12
0.0119451
-0.00137842
-3.08566e-12
0.0122143
-0.00132343
-3.09125e-12
0.0124634
-0.00126799
-3.08914e-12
0.0126897
-0.00121825
-3.06461e-12
0.0129045
-0.00117674
-3.0103e-12
0.0131074
-0.00112854
-3.0564e-12
0.0132965
-0.00107678
-3.09898e-12
0.013473
-0.00102492
-3.08127e-12
0.0136365
-0.000973236
-3.03234e-12
0.0137878
-0.000923105
-2.84548e-12
0.0139274
-0.000873769
-2.69691e-12
0.0140557
-0.000826062
-2.68301e-12
0.0141737
-0.000779143
-2.57774e-12
0.0142813
-0.000733845
-2.43392e-12
0.0143795
-0.000689247
-2.27142e-12
0.0144686
-0.000646276
-2.0901e-12
0.0145491
-0.000604069
-1.89538e-12
0.0146218
-0.000563498
-1.68229e-12
0.0146864
-0.000523834
-1.46071e-12
0.0147439
-0.000485755
-1.22e-12
0.0147939
-0.000448731
-9.69035e-13
0.0148371
-0.000413181
-6.98654e-13
0.0148734
-0.000378763
-4.09529e-13
0.0149032
-0.000345667
-1.30047e-13
0.0149267
-0.000313708
1.07876e-13
0.0149437
-0.000282896
2.58315e-13
0.0149551
-0.000253163
3.95088e-13
0.0149604
-0.000224484
5.29976e-13
0.0149602
-0.0001969
6.55257e-13
0.0149547
-0.00017027
7.65508e-13
0.014944
-0.000144859
8.50835e-13
0.0149288
-0.000120448
9.26622e-13
0.0149089
-9.73653e-05
9.67138e-13
0.0148851
-7.52835e-05
1.01162e-12
0.0148573
-5.43818e-05
1.03097e-12
0.0148258
-3.44689e-05
1.05634e-12
0.0147911
-1.58264e-05
1.06763e-12
0.0147532
1.96323e-06
1.06675e-12
0.0147142
1.70345e-05
1.05639e-12
0.0146732
3.19234e-05
1.08084e-12
0.0146307
4.61286e-05
1.0797e-12
0.0145857
5.95863e-05
1.08734e-12
0.014538
7.22486e-05
1.08632e-12
0.0144887
8.44267e-05
1.09184e-12
0.0144368
9.60471e-05
1.08368e-12
0.0143841
0.000107134
8.45353e-13
0.0143284
0.000117654
9.45299e-13
0.0142726
0.000127727
9.71862e-13
0.0142142
0.000137557
7.6095e-13
0.0141556
0.000147118
7.80426e-13
0.0140948
0.000156802
7.81249e-13
0.0140336
0.000166665
7.24234e-13
0.0139708
0.000177502
6.73444e-13
0.0139074
0.00018974
6.05358e-13
0.0138428
0.000204638
5.29283e-13
0.000223779
4.85888e-13
0.0185718
0.0161941
-4.31806e-12
0.0175387
0.0134284
-5.74446e-12
0.0163153
0.0111858
-6.47105e-12
0.0150291
0.00946693
-7.25319e-12
0.0136827
0.0080307
-7.56619e-12
0.0123341
0.0068822
-7.51102e-12
0.0110116
0.00595353
-7.3942e-12
0.00973431
0.00513996
-6.72262e-12
0.00849662
0.00440417
-6.57639e-12
0.00735071
0.00372453
-6.43956e-12
0.00636463
0.00310977
-6.38504e-12
0.00554765
0.00254078
-6.13204e-12
0.00489878
0.00199805
-6.65127e-12
0.00441702
0.00145722
-7.32471e-12
0.00411015
0.000915526
-8.15613e-12
0.00397521
0.000376665
-9.05444e-12
0.00395433
-0.000154745
-9.52535e-12
0.00412985
-0.000693946
-1.03467e-11
0.00448419
-0.00117476
-1.13548e-11
0.00489878
-0.00155642
-1.1063e-11
0.0053652
-0.00183564
-1.08304e-11
0.00584671
-0.00199129
-1.03999e-11
0.00633535
-0.00207452
-9.38015e-12
0.00682385
-0.00210486
-8.47865e-12
0.00730646
-0.00211058
-7.44212e-12
0.00778584
-0.00211904
-6.63609e-12
0.00825953
-0.00213243
-5.89574e-12
0.00872896
-0.00215038
-5.47433e-12
0.00919206
-0.00216786
-5.02635e-12
0.00964933
-0.00218389
-4.59453e-12
0.0100956
-0.00219281
-4.21756e-12
0.0105318
-0.00219388
-3.95624e-12
0.0109536
-0.00218451
-3.71885e-12
0.0113624
-0.00216652
-3.45098e-12
0.0117541
-0.00214043
-3.26407e-12
0.0121277
-0.00210755
-3.10849e-12
0.0124819
-0.00206862
-2.99548e-12
0.0128161
-0.00202388
-2.88257e-12
0.0131305
-0.00197429
-2.77662e-12
0.0134265
-0.00191974
-2.62201e-12
0.0137061
-0.00186117
-2.55912e-12
0.0139695
-0.00179903
-2.51363e-12
0.0142186
-0.00173465
-2.51955e-12
0.014451
-0.00166898
-2.56175e-12
0.0146672
-0.00160163
-2.60609e-12
0.0148669
-0.00153116
-2.61214e-12
0.0150504
-0.00145996
-2.61656e-12
0.0152152
-0.00139258
-2.59976e-12
0.0153631
-0.00133443
-2.5458e-12
0.0155006
-0.00127642
-2.50711e-12
0.0156293
-0.00121593
-2.52421e-12
0.0157477
-0.00115448
-2.53182e-12
0.0158563
-0.00109254
-2.5208e-12
0.0159547
-0.00103219
-2.47083e-12
0.0160439
-0.000972782
-2.41147e-12
0.0161236
-0.00091552
-2.31499e-12
0.0161948
-0.000859238
-2.22983e-12
0.0162574
-0.00080501
-2.14524e-12
0.0163117
-0.000751774
-2.05359e-12
0.0163584
-0.000700453
-1.94039e-12
0.0163973
-0.000650249
-1.81105e-12
0.0164297
-0.000601844
-1.67166e-12
0.0164549
-0.000554734
-1.5119e-12
0.0164746
-0.000509324
-1.33383e-12
0.0164877
-0.000465348
-1.13551e-12
0.0164961
-0.000422955
-9.20206e-13
0.0164986
-0.000382033
-6.69924e-13
0.0164968
-0.000342545
-3.98499e-13
0.0164895
-0.000304466
-1.30457e-13
0.0164781
-0.000267691
7.48648e-14
0.0164616
-0.000232238
2.33656e-13
0.0164413
-0.000198037
3.67035e-13
0.0164162
-0.000165129
4.98507e-13
0.0163874
-0.000133506
6.18858e-13
0.0163541
-0.00010329
7.21013e-13
0.0163175
-7.45344e-05
8.02361e-13
0.0162769
-4.72283e-05
8.64765e-13
0.0162335
-2.16559e-05
9.21178e-13
0.0161872
2.38586e-06
9.61107e-13
0.0161394
2.39932e-05
9.99739e-13
0.0160902
4.46372e-05
1.01722e-12
0.0160387
6.4112e-05
1.04576e-12
0.0159848
8.256e-05
1.0483e-12
0.0159274
9.98603e-05
1.05443e-12
0.0158687
0.00011658
1.00052e-12
0.0158064
0.000132249
1.06766e-12
0.0157428
0.000147233
1.07012e-12
0.0156763
0.000161285
1.07192e-12
0.0156084
0.000174715
1.06936e-12
0.0155385
0.000187393
8.66208e-13
0.015467
0.000199393
1.04123e-12
0.0153946
0.000210771
7.98477e-13
0.0153206
0.000221612
9.43208e-13
0.0152466
0.000232074
7.38713e-13
0.0151714
0.000242295
8.25118e-13
0.0150966
0.000252565
7.07192e-13
0.0150215
0.000263304
6.84233e-13
0.0149472
0.000275198
6.19473e-13
0.0148737
0.000289021
5.41765e-13
0.000306736
4.90361e-13
0.0193705
0.0162259
-3.82521e-12
0.0187018
0.0140937
-4.94111e-12
0.0178262
0.0120602
-5.8551e-12
0.0168688
0.0104215
-6.55919e-12
0.0158265
0.00906795
-7.36412e-12
0.0147728
0.00793092
-6.96354e-12
0.0137105
0.00700659
-7.05901e-12
0.0126419
0.00619881
-6.76021e-12
0.0115803
0.00545275
-6.81217e-12
0.0105437
0.0047489
-6.7339e-12
0.00957999
0.00405954
-7.03034e-12
0.00871892
0.00338674
-7.32518e-12
0.00800309
0.00269655
-7.88917e-12
0.00745341
0.00198765
-8.30482e-12
0.00708988
0.00125036
-8.82967e-12
0.00692808
0.000505513
-9.18469e-12
0.00696682
-0.000235805
-9.13015e-12
0.00719169
-0.000964123
-8.87229e-12
0.00758536
-0.00161961
-8.61861e-12
0.00808158
-0.00210809
-8.33983e-12
0.00860843
-0.00242029
-8.11483e-12
0.00914797
-0.00258453
-7.02128e-12
0.00967924
-0.00265525
-7.96436e-12
0.010198
-0.0026735
-8.14217e-12
0.0106982
-0.00265609
-8.17735e-12
0.0111787
-0.00264142
-7.46323e-12
0.011636
-0.00262981
-6.72108e-12
0.0120693
-0.00262216
-6.13821e-12
0.0124826
-0.00261574
-5.59206e-12
0.012875
-0.00260672
-5.20486e-12
0.0132483
-0.00259274
-4.84951e-12
0.0136019
-0.0025709
-4.6157e-12
0.0139372
-0.00254018
-4.33144e-12
0.0142537
-0.00250107
-4.03406e-12
0.014552
-0.00245461
-3.72233e-12
0.0148325
-0.00240222
-3.46349e-12
0.0150955
-0.00234456
-3.22171e-12
0.0153424
-0.00228262
-3.01098e-12
0.0155745
-0.00221719
-2.79933e-12
0.015792
-0.0021473
-2.62348e-12
0.0159958
-0.00207408
-2.47512e-12
0.0161854
-0.00199773
-2.32906e-12
0.0163618
-0.00191986
-2.22086e-12
0.0165254
-0.00184114
-2.15131e-12
0.0166779
-0.00176242
-2.11339e-12
0.016819
-0.00168035
-2.10814e-12
0.0169493
-0.00159756
-2.09234e-12
0.0170669
-0.00151723
-2.05121e-12
0.0171706
-0.00144427
-1.96777e-12
0.0172641
-0.0013763
-1.88584e-12
0.0173508
-0.00130859
-1.87611e-12
0.0174292
-0.00123981
-1.89979e-12
0.0175003
-0.00117027
-1.92642e-12
0.017563
-0.0011019
-1.94052e-12
0.0176178
-0.00103447
-1.9436e-12
0.0176646
-0.00096915
-1.92771e-12
0.0177034
-0.000905174
-1.89377e-12
0.0177351
-0.000843308
-1.86205e-12
0.017759
-0.000782862
-1.81781e-12
0.0177765
-0.000724345
-1.76882e-12
0.0177864
-0.000667363
-1.69692e-12
0.0177905
-0.000612177
-1.62317e-12
0.0177878
-0.000558648
-1.51456e-12
0.0177799
-0.00050684
-1.40112e-12
0.0177663
-0.00045675
-1.24441e-12
0.017748
-0.000408303
-1.07266e-12
0.0177249
-0.000361538
-8.68353e-13
0.0176975
-0.000316303
-6.30794e-13
0.0176657
-0.000272649
-3.74424e-13
0.0176298
-0.000230426
-1.2615e-13
0.0175901
-0.000189728
5.82925e-14
0.0175465
-0.000150458
2.24375e-13
0.0174997
-0.00011278
3.56399e-13
0.017449
-7.64679e-05
4.6927e-13
0.0173959
-4.23743e-05
5.72794e-13
0.0173396
-1.00044e-05
6.63458e-13
0.0172827
1.95231e-05
7.43521e-13
0.0172237
4.7169e-05
8.12613e-13
0.0171639
7.34625e-05
8.74404e-13
0.0171003
9.83747e-05
9.25298e-13
0.0170355
0.000121832
9.61053e-13
0.0169669
0.000144184
1.00525e-12
0.0168971
0.000165137
1.02079e-12
0.0168237
0.000185102
1.04257e-12
0.0167491
0.000203723
1.02534e-12
0.0166718
0.00022161
1.03286e-12
0.016593
0.000238128
1.01228e-12
0.0165123
0.000254037
1.05245e-12
0.0164298
0.000268608
1.0488e-12
0.0163464
0.000282703
9.70077e-13
0.016261
0.000295517
8.84952e-13
0.0161756
0.000307899
1.02379e-12
0.0160885
0.000319153
7.94528e-13
0.0160018
0.000330094
8.07027e-13
0.0159141
0.000340219
7.44901e-13
0.0158274
0.000350326
6.97799e-13
0.0157408
0.000360249
7.17493e-13
0.0156559
0.000370992
6.43003e-13
0.0155724
0.000382845
5.87989e-13
0.00039748
5.30173e-13
0.0199437
0.0162044
-3.58915e-12
0.0195461
0.0144897
-4.39004e-12
0.0188656
0.0127359
-5.35704e-12
0.0181213
0.0111619
-6.05762e-12
0.0173238
0.00985998
-6.76121e-12
0.0164845
0.00876326
-6.79931e-12
0.0156509
0.00783273
-7.19093e-12
0.014807
0.00702968
-7.29968e-12
0.0139619
0.00628583
-7.50257e-12
0.0131153
0.0055752
-7.90111e-12
0.0123064
0.00484405
-8.63543e-12
0.0115722
0.00409642
-9.59672e-12
0.0109414
0.00329278
-1.0155e-11
0.0104485
0.00244897
-1.02941e-11
0.0101263
0.00153535
-9.92115e-12
0.0100212
0.00057074
-9.5883e-12
0.0100982
-0.000358185
-8.44769e-12
0.0103421
-0.00124939
-6.64817e-12
0.010706
-0.00202767
-6.01288e-12
0.0111167
-0.00255787
-4.90031e-12
0.0115282
-0.00286469
-4.20831e-12
0.0120126
-0.00309957
-4.43436e-12
0.012483
-0.00315385
-5.43499e-12
0.0128713
-0.00310082
-7.27878e-12
0.0133063
-0.00312826
-9.61322e-12
0.0137265
-0.00309876
-9.01857e-12
0.014121
-0.00305886
-8.27921e-12
0.0144865
-0.00301777
-7.52194e-12
0.0148257
-0.00298177
-6.78743e-12
0.0151435
-0.00294887
-6.21184e-12
0.0154424
-0.00291396
-5.78159e-12
0.0157241
-0.00287317
-5.40774e-12
0.0159908
-0.00282548
-5.02295e-12
0.0162421
-0.00277056
-4.60794e-12
0.0164801
-0.00270922
-4.19278e-12
0.0167045
-0.00264201
-3.79877e-12
0.0169163
-0.0025703
-3.45454e-12
0.017117
-0.0024956
-3.16435e-12
0.0173058
-0.00241682
-2.81968e-12
0.0174835
-0.00233467
-2.51764e-12
0.0176505
-0.00224976
-2.35452e-12
0.0178071
-0.0021625
-2.10993e-12
0.0179542
-0.00207393
-1.90653e-12
0.0180913
-0.00198472
-1.76726e-12
0.0182191
-0.00189639
-1.65729e-12
0.0183367
-0.00180444
-1.64699e-12
0.0184455
-0.00171234
-1.62485e-12
0.0185432
-0.00162118
-1.58577e-12
0.0186279
-0.00153442
-1.52083e-12
0.018703
-0.00145754
-1.40893e-12
0.0187689
-0.00138044
-1.40058e-12
0.0188265
-0.00130418
-1.42747e-12
0.0188773
-0.00122789
-1.47835e-12
0.0189205
-0.00115245
-1.53284e-12
0.0189563
-0.0010778
-1.58629e-12
0.0189844
-0.00100494
-1.62601e-12
0.0190047
-0.000933648
-1.65704e-12
0.0190181
-0.000864396
-1.67553e-12
0.019024
-0.000796957
-1.68367e-12
0.0190236
-0.000731434
-1.68298e-12
0.0190163
-0.00066781
-1.65932e-12
0.0190033
-0.000605996
-1.63479e-12
0.018984
-0.000546147
-1.56939e-12
0.0189594
-0.000488049
-1.5046e-12
0.0189294
-0.000431915
-1.3892e-12
0.0188947
-0.00037746
-1.26039e-12
0.0188553
-0.000324876
-1.09097e-12
0.0188118
-0.000273875
-8.92435e-13
0.0187639
-0.000224636
-6.73727e-13
0.0187121
-0.000176928
-4.04613e-13
0.0186562
-0.00013101
-1.75579e-13
0.0185967
-8.67004e-05
1.17587e-14
0.0185337
-4.44717e-05
2.00821e-13
0.0184673
-3.93415e-06
3.04206e-13
0.0184006
3.20619e-05
4.15619e-13
0.0183318
6.70502e-05
5.11479e-13
0.0182606
0.000100132
6.17366e-13
0.0181859
0.00013137
7.0527e-13
0.0181092
0.000160891
7.89896e-13
0.0180292
0.00018888
8.54252e-13
0.0179473
0.000215263
9.10389e-13
0.0178624
0.000240254
9.58085e-13
0.0177759
0.000263696
9.92972e-13
0.0176869
0.000285869
1.02224e-12
0.0175964
0.000306534
1.03297e-12
0.0175042
0.000326124
1.03772e-12
0.0174103
0.000344278
1.04401e-12
0.0173155
0.00036147
1.04282e-12
0.0172189
0.000377289
1.03487e-12
0.0171219
0.00039222
1.02369e-12
0.0170234
0.000405874
1.01366e-12
0.0169251
0.000418653
1.0019e-12
0.0168256
0.000430282
9.85733e-13
0.0167268
0.000441089
7.70159e-13
0.0166277
0.000450982
9.12079e-13
0.0165299
0.00046025
7.19289e-13
0.0164326
0.000469075
7.76522e-13
0.0163375
0.000477873
6.35462e-13
0.0162442
0.000487293
6.01704e-13
0.000498044
5.55892e-13
0.0204279
0.0161288
-3.58075e-12
0.0201743
0.0147426
-4.3007e-12
0.0196814
0.0132269
-5.0697e-12
0.0190486
0.0117897
-5.79932e-12
0.0183897
0.0105133
-6.4606e-12
0.0177114
0.0094334
-6.91504e-12
0.0170252
0.0085088
-7.40192e-12
0.0163493
0.00769215
-8.01877e-12
0.0156826
0.00693214
-8.54492e-12
0.0150374
0.00619772
-9.57843e-12
0.0144377
0.00541078
-1.12156e-11
0.0138789
0.00461271
-1.24154e-11
0.0133649
0.00376598
-1.26296e-11
0.0130047
0.00276589
-1.27482e-11
0.0128567
0.00162927
-1.22043e-11
0.012845
0.000550154
-7.8429e-12
0.0129773
-0.000528321
-7.12744e-12
0.0132027
-0.00151349
-5.57066e-12
0.0134318
-0.00228322
-2.57014e-12
0.0136329
-0.0027661
1.79438e-12
0.0138375
-0.00308412
-5.86466e-13
0.0139913
-0.00326676
-1.09607e-12
0.014279
-0.00346107
-3.25224e-12
0.0147088
-0.00355665
-6.16238e-12
0.0150404
-0.00349167
-8.0235e-12
0.0153875
-0.00348583
-1.03548e-11
0.0157601
-0.00347163
-9.98921e-12
0.0161081
-0.00340324
-9.33712e-12
0.0164332
-0.00334141
-8.3558e-12
0.016732
-0.00327966
-7.42052e-12
0.0170096
-0.00322059
-6.66316e-12
0.0172688
-0.00315984
-6.00697e-12
0.0175148
-0.00309584
-5.43382e-12
0.0177478
-0.00302692
-4.88459e-12
0.0179711
-0.00295231
-4.39013e-12
0.0181839
-0.0028734
-3.90124e-12
0.0183869
-0.00278925
-3.50234e-12
0.0185785
-0.00270103
-3.20351e-12
0.018759
-0.0026088
-2.70193e-12
0.0189281
-0.00251415
-2.38803e-12
0.0190862
-0.00241699
-2.131e-12
0.019233
-0.00231795
-1.84723e-12
0.0193689
-0.0022172
-1.6071e-12
0.0194939
-0.00211687
-1.42593e-12
0.0196083
-0.00201676
-1.27907e-12
0.0197146
-0.00191672
-1.26039e-12
0.0198118
-0.00181427
-1.22832e-12
0.0198982
-0.00171235
-1.18607e-12
0.0199732
-0.00161283
-1.13076e-12
0.0200341
-0.00152198
-1.04164e-12
0.0200853
-0.00143496
-1.03449e-12
0.0201283
-0.00135099
-1.05465e-12
0.0201636
-0.00126743
-1.10669e-12
0.0201916
-0.00118518
-1.18401e-12
0.0202115
-0.00110344
-1.27042e-12
0.0202244
-0.00102352
-1.35327e-12
0.0202291
-0.000945032
-1.43202e-12
0.0202271
-0.000868724
-1.4997e-12
0.0202169
-0.000794332
-1.55783e-12
0.0202001
-0.00072209
-1.60524e-12
0.0201757
-0.000651906
-1.62977e-12
0.0201454
-0.000583756
-1.64841e-12
0.0201088
-0.000517696
-1.62554e-12
0.0200671
-0.000453584
-1.59898e-12
0.0200201
-0.00039151
-1.51749e-12
0.0199685
-0.000331292
-1.42508e-12
0.0199122
-0.000272974
-1.28179e-12
0.0198516
-0.00021643
-1.11515e-12
0.0197866
-0.000161665
-9.18103e-13
0.0197179
-0.000108707
-6.82658e-13
0.0196456
-5.77436e-05
-4.24868e-13
0.0195704
-9.22777e-06
-1.94503e-13
0.019494
3.59842e-05
-4.19529e-14
0.0194166
7.90716e-05
1.66529e-13
0.0193363
0.000119533
3.23364e-13
0.0192533
0.000157878
4.36494e-13
0.0191685
0.00019439
5.46392e-13
0.0190806
0.000228864
6.39093e-13
0.0189912
0.000261515
7.29939e-13
0.0188986
0.000292288
8.01576e-13
0.0188049
0.00032131
8.72119e-13
0.0187084
0.00034864
9.25085e-13
0.0186109
0.000374242
9.74697e-13
0.0185112
0.000398355
1.00912e-12
0.0184104
0.000420752
1.03464e-12
0.018308
0.000441862
1.04989e-12
0.0182041
0.000461312
1.05379e-12
0.0180994
0.000479607
1.05481e-12
0.0179929
0.000496314
1.03863e-12
0.0178863
0.000511905
1.02894e-12
0.0177779
0.000526019
9.89468e-13
0.0176702
0.000538978
9.82142e-13
0.0175611
0.000550594
9.48627e-13
0.0174532
0.000560989
8.66149e-13
0.0173448
0.000570234
9.03886e-13
0.0172381
0.000578262
7.2913e-13
0.0171321
0.000585486
8.19769e-13
0.0170288
0.000591764
6.19946e-13
0.0169276
0.000598087
6.2501e-13
0.000604407
6.05345e-13
0.0208034
0.0160139
-3.49079e-12
0.0206644
0.0148775
-4.19264e-12
0.0203143
0.0135754
-4.88477e-12
0.0198228
0.0122773
-5.65447e-12
0.0192521
0.0110768
-6.42887e-12
0.0186715
0.0100065
-7.16873e-12
0.0180962
0.00907093
-7.96355e-12
0.0175279
0.00824241
-9.19428e-12
0.0169969
0.00743824
-1.04469e-11
0.0165287
0.00663072
-1.24308e-11
0.0160472
0.00584062
-1.48284e-11
0.0156266
0.00498568
-1.54103e-11
0.0153548
0.00398222
-1.62656e-11
0.015272
0.00278401
-1.70715e-11
0.0152442
0.00160925
-1.18852e-11
0.0153439
0.000421603
-6.31217e-12
0.0154866
-0.000699382
-5.24937e-12
0.0156049
-0.001652
-2.30763e-12
0.0156162
-0.00229183
2.40129e-12
0.0156207
-0.00276344
3.59105e-12
0.0156541
-0.00311163
2.24875e-12
0.0157473
-0.00336775
-1.19399e-12
0.0158223
-0.00354585
-1.82935e-12
0.0159971
-0.00374513
-2.84061e-12
0.0163508
-0.00386712
-4.93625e-12
0.0166787
-0.00384925
-8.76675e-12
0.0169895
-0.00382566
-1.09873e-11
0.0173419
-0.00379836
-1.12149e-11
0.0176931
-0.00373226
-1.0107e-11
0.0180177
-0.00363987
-8.91995e-12
0.0183106
-0.00354643
-7.7747e-12
0.0185752
-0.00345495
-6.70963e-12
0.0188176
-0.00336563
-5.78796e-12
0.0190423
-0.00327676
-5.01979e-12
0.0192548
-0.00318596
-4.40691e-12
0.0194546
-0.00309205
-3.88097e-12
0.0196425
-0.00299327
-3.44108e-12
0.0198198
-0.00289106
-3.08538e-12
0.0199843
-0.00278444
-2.62065e-12
0.0201373
-0.00267622
-2.29769e-12
0.0202781
-0.00256515
-1.95041e-12
0.0204054
-0.00245204
-1.65401e-12
0.0205217
-0.00233906
-1.4111e-12
0.0206263
-0.00222668
-1.17627e-12
0.0207207
-0.00211478
-1.04771e-12
0.0208072
-0.00200562
-9.47047e-13
0.0208849
-0.00189328
-9.34647e-13
0.0209528
-0.00178145
-9.11328e-13
0.0210105
-0.00167101
-8.7733e-13
0.0210556
-0.00156753
-8.24249e-13
0.0210893
-0.00146969
-8.26926e-13
0.0211139
-0.00137693
-8.44745e-13
0.0211304
-0.00128576
-8.87281e-13
0.0211403
-0.00119668
-9.65993e-13
0.0211426
-0.0011086
-1.06909e-12
0.0211388
-0.00102238
-1.17954e-12
0.0211274
-0.000937652
-1.29469e-12
0.0211101
-0.000855064
-1.39711e-12
0.0210853
-0.000774476
-1.49721e-12
0.0210546
-0.000696145
-1.57697e-12
0.0210166
-0.000620022
-1.64374e-12
0.0209728
-0.000546117
-1.68998e-12
0.0209226
-0.000474427
-1.70516e-12
0.0208671
-0.000404849
-1.70363e-12
0.0208064
-0.000337375
-1.65332e-12
0.0207411
-0.000271867
-1.58803e-12
0.0206713
-0.0002083
-1.46844e-12
0.0205974
-0.000146636
-1.33215e-12
0.0205196
-8.67365e-05
-1.14757e-12
0.0204385
-2.94218e-05
-9.42161e-13
0.0203554
2.49772e-05
-7.11375e-13
0.0202706
7.65127e-05
-4.16439e-13
0.0201835
0.000125465
-2.26875e-13
0.0200941
0.000171997
-3.58875e-14
0.0200025
0.00021616
1.45996e-13
0.0199081
0.000257897
3.26167e-13
0.0198125
0.000297471
4.40202e-13
0.019714
0.000334884
5.46807e-13
0.019615
0.000370174
6.45349e-13
0.0195133
0.000403474
7.32815e-13
0.0194115
0.000434655
8.13551e-13
0.0193075
0.000464092
8.79698e-13
0.0192033
0.000491403
9.39801e-13
0.0190974
0.000517223
9.84296e-13
0.0189908
0.000540917
1.02147e-12
0.0188831
0.000563321
1.04402e-12
0.0187741
0.000583649
1.05806e-12
0.0186647
0.000602801
1.0616e-12
0.0185538
0.000619966
1.05509e-12
0.0184429
0.000635962
1.04277e-12
0.0183307
0.000650085
1.01835e-12
0.0182191
0.000662947
9.93308e-13
0.0181066
0.000674043
9.52545e-13
0.0179953
0.000683719
9.21257e-13
0.0178839
0.000691718
8.64484e-13
0.0177744
0.000698128
8.33975e-13
0.017666
0.000703001
7.50939e-13
0.0175607
0.000706197
7.01614e-13
0.0174584
0.000708459
6.57693e-13
0.000709406
6.05418e-13
0.0211031
0.0159262
-3.54987e-12
0.0210298
0.0149467
-4.28861e-12
0.0207834
0.0138172
-4.97735e-12
0.0204093
0.0126456
-5.77185e-12
0.019957
0.0115223
-6.6782e-12
0.0194603
0.0104892
-7.80059e-12
0.0189771
0.00954017
-9.08252e-12
0.0185187
0.00867529
-1.10653e-11
0.0181207
0.00779878
-1.38559e-11
0.0177127
0.00698605
-1.71751e-11
0.0173835
0.00611245
-1.8001e-11
0.0171967
0.00511295
-1.96557e-11
0.0171991
0.00389716
-2.23554e-11
0.0172597
0.00266133
-1.78929e-11
0.0173591
0.00147682
-8.95961e-12
0.0174772
0.000273682
-7.48127e-12
0.01755
-0.000793842
-3.98927e-12
0.0174868
-0.00158992
1.26857e-12
0.0173734
-0.00214805
8.1206e-12
0.0172438
-0.00260984
6.19857e-12
0.0171527
-0.003006
3.43322e-12
0.0171253
-0.00334047
9.83485e-13
0.017175
-0.00360736
-2.29133e-12
0.017223
-0.00380702
-2.91507e-12
0.0173587
-0.00402015
-4.15887e-12
0.0176388
-0.00415631
-6.11591e-12
0.0179496
-0.00417023
-8.53522e-12
0.0182177
-0.00410889
-1.00293e-11
0.0185343
-0.00409183
-1.0234e-11
0.018869
-0.00401533
-9.71249e-12
0.0191802
-0.00389588
-8.7502e-12
0.0194586
-0.00376803
-7.47975e-12
0.0197058
-0.00364438
-6.13903e-12
0.0199272
-0.00352634
-4.93592e-12
0.02013
-0.00341248
-4.00657e-12
0.0203162
-0.00329931
-3.38894e-12
0.0204914
-0.00318478
-2.94087e-12
0.0206529
-0.00306783
-2.6407e-12
0.0208038
-0.00294756
-2.34431e-12
0.0209426
-0.00282521
-2.08809e-12
0.0210682
-0.00270037
-1.74805e-12
0.0211833
-0.00257586
-1.54491e-12
0.0212868
-0.00244995
-1.29156e-12
0.0213795
-0.0023254
-1.04355e-12
0.0214631
-0.00220223
-8.95061e-13
0.0215383
-0.00208324
-8.12212e-13
0.0216058
-0.00196159
-7.97296e-13
0.0216651
-0.00184102
-7.73854e-13
0.0217155
-0.00172095
-7.45725e-13
0.0217531
-0.00160532
-7.1583e-13
0.0217806
-0.00149851
-7.00545e-13
0.0217968
-0.00139516
-7.34142e-13
0.0218038
-0.00129551
-7.60226e-13
0.0218039
-0.00119906
-8.29489e-13
0.0217973
-0.00110454
-9.25919e-13
0.0217851
-0.00101209
-1.05198e-12
0.0217661
-0.000921466
-1.18605e-12
0.0217409
-0.000832818
-1.31831e-12
0.0217083
-0.000746347
-1.44603e-12
0.0216691
-0.000662005
-1.5526e-12
0.0216229
-0.00058011
-1.64925e-12
0.0215703
-0.000500417
-1.7142e-12
0.0215115
-0.000423185
-1.76125e-12
0.0214471
-0.00034808
-1.77284e-12
0.0213772
-0.00027526
-1.75548e-12
0.0213022
-0.000204394
-1.70392e-12
0.0212224
-0.000135614
-1.61598e-12
0.0211383
-6.8752e-05
-1.49367e-12
0.0210507
-4.37343e-06
-1.35287e-12
0.0209615
5.62187e-05
-1.14457e-12
0.0208704
0.000114443
-9.2281e-13
0.0207768
0.000169911
-6.64895e-13
0.0206814
0.000222669
-3.82115e-13
0.0205833
0.000272864
-1.96512e-13
0.0204834
0.000320502
-1.78411e-14
0.0203806
0.000365637
1.70225e-13
0.0202765
0.000408222
3.40924e-13
0.0201697
0.000448506
4.5665e-13
0.0200622
0.000486299
5.65862e-13
0.0199525
0.000522013
6.6795e-13
0.0198424
0.000555251
7.59579e-13
0.0197306
0.000586662
8.39861e-13
0.0196184
0.000615614
9.09383e-13
0.0195052
0.000642966
9.65674e-13
0.0193912
0.000667897
1.01174e-12
0.0192767
0.00069138
1.04376e-12
0.0191611
0.000712525
1.0659e-12
0.0190456
0.000732277
1.07573e-12
0.0189287
0.000749814
1.07577e-12
0.0188123
0.000765902
1.06678e-12
0.0186947
0.000779896
1.04791e-12
0.0185781
0.000792277
1.02343e-12
0.0184608
0.000802636
9.89749e-13
0.0183451
0.000811094
9.52979e-13
0.0182296
0.000817507
9.09223e-13
0.0181165
0.000821571
8.63556e-13
0.0180049
0.000823492
8.13858e-13
0.0178971
0.000822573
7.65696e-13
0.0177929
0.000819839
7.14814e-13
0.000813933
6.90777e-13
0.0214205
0.0158986
-3.88815e-12
0.0213528
0.0150112
-4.49173e-12
0.0211676
0.0139963
-5.28192e-12
0.0208709
0.0129338
-6.21604e-12
0.0205106
0.01187
-7.45476e-12
0.0201178
0.010867
-8.9277e-12
0.0197264
0.00990165
-1.16454e-11
0.0194012
0.0089632
-1.40579e-11
0.01907
0.00806882
-1.90478e-11
0.0188353
0.00715917
-2.01963e-11
0.0187244
0.00614732
-2.26977e-11
0.0188256
0.00492043
-2.74715e-11
0.0189649
0.00366743
-2.54318e-11
0.0190992
0.00248058
-1.23025e-11
0.0192924
0.00124726
-1.14411e-11
0.0194004
0.000143598
-7.74677e-12
0.0193426
-0.000733506
1.35711e-14
0.0191068
-0.00132323
9.29382e-12
0.018864
-0.00187487
8.46228e-12
0.0186479
-0.00236744
6.63465e-12
0.0184775
-0.00281986
4.06869e-12
0.018368
-0.00322568
1.66845e-12
0.0183291
-0.00357477
-2.31689e-13
0.0183618
-0.00385557
-3.22331e-12
0.0183903
-0.00406548
-3.47504e-12
0.0184742
-0.00425785
-4.07168e-12
0.0186811
-0.00440121
-5.44232e-12
0.0189816
-0.00444477
-7.85754e-12
0.0192063
-0.00435463
-8.53764e-12
0.0194832
-0.00433323
-9.1429e-12
0.019796
-0.00424998
-8.97797e-12
0.0200937
-0.00410537
-8.26404e-12
0.020368
-0.00395487
-6.76182e-12
0.0206149
-0.00380302
-5.31107e-12
0.0208354
-0.0036567
-4.25676e-12
0.0210333
-0.0035156
-3.45938e-12
0.0212112
-0.00337858
-2.8551e-12
0.0213729
-0.00324278
-2.40625e-12
0.0215199
-0.00310754
-2.04145e-12
0.0216538
-0.00297061
-1.77137e-12
0.0217747
-0.00283323
-1.50948e-12
0.0218843
-0.00269453
-1.29749e-12
0.0219859
-0.00255766
-1.05571e-12
0.0220778
-0.0024211
-9.00169e-13
0.0221603
-0.00228629
-7.18359e-13
0.0222323
-0.00215537
-6.66125e-13
0.0222993
-0.00202722
-6.01315e-13
0.0223559
-0.00189679
-5.93289e-13
0.0224017
-0.00176658
-5.8365e-13
0.0224357
-0.0016398
-5.85213e-13
0.0224562
-0.00152016
-6.26726e-13
0.0224663
-0.00140703
-6.70058e-13
0.0224672
-0.0012987
-7.06296e-13
0.0224609
-0.00119426
-7.63849e-13
0.022447
-0.00109263
-8.53576e-13
0.0224275
-0.000993744
-9.85147e-13
0.0224008
-0.000897032
-1.12119e-12
0.0223683
-0.000802484
-1.27706e-12
0.0223284
-0.000710139
-1.4115e-12
0.0222822
-0.000620009
-1.54478e-12
0.0222291
-0.000532334
-1.64793e-12
0.0221697
-0.000447004
-1.734e-12
0.0221041
-0.00036418
-1.78992e-12
0.0220329
-0.000283654
-1.81732e-12
0.0219565
-0.000205435
-1.8165e-12
0.0218751
-0.000129303
-1.7801e-12
0.021789
-5.54302e-05
-1.71655e-12
0.0216994
1.55772e-05
-1.61146e-12
0.021607
8.36773e-05
-1.45387e-12
0.0215111
0.000148539
-1.28736e-12
0.0214126
0.000210601
-1.08455e-12
0.0213116
0.000269773
-8.46682e-13
0.0212087
0.000326232
-5.78482e-13
0.0211033
0.000379839
-3.27451e-13
0.0209966
0.000430784
-1.42897e-13
0.0208874
0.000478927
4.52499e-14
0.0207773
0.000524404
2.28756e-13
0.0206651
0.000567236
3.79661e-13
0.0205525
0.000607445
4.95694e-13
0.0204381
0.000645263
6.05117e-13
0.0203236
0.000680486
7.06718e-13
0.0202079
0.000713582
7.96955e-13
0.0200918
0.000744111
8.76258e-13
0.0199749
0.000772723
9.42788e-13
0.0198572
0.000798825
9.97344e-13
0.0197392
0.000823121
1.03894e-12
0.01962
0.000845006
1.06862e-12
0.019501
0.000865095
1.08614e-12
0.0193808
0.000882887
1.09291e-12
0.0192611
0.00089879
1.08912e-12
0.0191407
0.000912467
1.07656e-12
0.0190214
0.000924038
1.05565e-12
0.018902
0.000933338
1.02838e-12
0.0187844
0.000940135
9.95807e-13
0.0186677
0.000944418
9.60121e-13
0.0185539
0.000945554
9.246e-13
0.0184424
0.000943704
8.91243e-13
0.0183355
0.000937716
8.80337e-13
0.0182335
0.000928494
9.02531e-13
0.000914789
1.1156e-12
0.0217418
0.0159241
-4.27969e-12
0.0216564
0.0150906
-4.94575e-12
0.0215
0.0141453
-5.89517e-12
0.0212663
0.0131557
-7.14107e-12
0.0209798
0.0121376
-9.04289e-12
0.0206813
0.0111417
-1.14073e-11
0.0204043
0.0101361
-1.55572e-11
0.0201569
0.00914484
-2.09628e-11
0.0199672
0.00818962
-2.20604e-11
0.0199231
0.00712814
-2.46958e-11
0.0201039
0.0058826
-2.86353e-11
0.0203239
0.00457726
-3.42228e-11
0.0205467
0.00336733
-2.36742e-11
0.0207927
0.00220412
-1.07606e-11
0.0209213
0.00108917
-8.72e-12
0.0208812
0.000172346
-3.11095e-12
0.0206181
-0.000444143
5.1857e-12
0.0203558
-0.0010263
8.26609e-12
0.0200842
-0.0015686
7.56476e-12
0.0198399
-0.00209756
5.88865e-12
0.0196347
-0.00260087
4.02991e-12
0.0194769
-0.00306461
2.29707e-12
0.0193709
-0.00347233
5.7991e-13
0.0193229
-0.00381692
-1.04196e-12
0.0193369
-0.00409161
-2.32642e-12
0.0193571
-0.00429873
-4.20492e-12
0.0193887
-0.0044526
-4.61543e-12
0.0195115
-0.00459393
-5.73068e-12
0.0197722
-0.00465013
-7.59473e-12
0.0199642
-0.00455856
-6.85882e-12
0.0201844
-0.00450859
-8.0067e-12
0.0204606
-0.0044224
-8.63891e-12
0.0207505
-0.00428245
-7.88459e-12
0.0210246
-0.00410962
-6.57718e-12
0.0212715
-0.00393074
-5.31442e-12
0.0214876
-0.0037546
-4.24267e-12
0.0216751
-0.0035854
-3.38291e-12
0.021839
-0.00342331
-2.72757e-12
0.0219833
-0.00326673
-2.23982e-12
0.0221124
-0.00311306
-1.89095e-12
0.0222293
-0.00296118
-1.63044e-12
0.0223348
-0.00281024
-1.40821e-12
0.0224316
-0.00266064
-1.21087e-12
0.0225192
-0.00251315
-9.85889e-13
0.0225978
-0.00236766
-8.23734e-13
0.0226656
-0.00222476
-7.38898e-13
0.0227242
-0.00208655
-6.18379e-13
0.0227735
-0.00194725
-6.0223e-13
0.0228138
-0.00180841
-5.76942e-13
0.0228439
-0.00167162
-5.49366e-13
0.0228614
-0.00153959
-5.24895e-13
0.0228702
-0.00141764
-5.72887e-13
0.0228689
-0.00129921
-6.2618e-13
0.0228598
-0.00118604
-7.35338e-13
0.022843
-0.00107679
-8.3623e-13
0.0228197
-0.000970923
-9.61192e-13
0.0227888
-0.000867772
-1.09607e-12
0.0227515
-0.000767112
-1.2479e-12
0.0227067
-0.000668857
-1.38724e-12
0.0226555
-0.000572943
-1.52293e-12
0.0225972
-0.000479534
-1.63246e-12
0.0225326
-0.000388547
-1.72543e-12
0.0224618
-0.000300112
-1.78947e-12
0.0223853
-0.000214056
-1.82912e-12
0.0223037
-0.000130322
-1.84195e-12
0.0222173
-4.89727e-05
-1.82509e-12
0.0221271
2.94205e-05
-1.77465e-12
0.0220334
0.000104574
-1.67902e-12
0.0219364
0.0001767
-1.56007e-12
0.0218357
0.000245681
-1.39955e-12
0.0217321
0.000311629
-1.213e-12
0.0216253
0.000374526
-9.92991e-13
0.0215166
0.000434473
-7.4604e-13
0.0214051
0.000491411
-4.52638e-13
0.0212926
0.00054538
-2.57857e-13
0.0211777
0.00059644
-6.75863e-14
0.0210625
0.000644489
1.2034e-13
0.0209452
0.000689832
3.0208e-13
0.0208281
0.000732147
4.2625e-13
0.0207095
0.000772047
5.40396e-13
0.0205911
0.000808928
6.49225e-13
0.0204719
0.000843668
7.48669e-13
0.0203524
0.000875429
8.36846e-13
0.0202327
0.00090523
9.13851e-13
0.0201121
0.000932144
9.7698e-13
0.0199916
0.00095715
1.02862e-12
0.0198701
0.000979393
1.06655e-12
0.0197489
0.000999671
1.09269e-12
0.0196268
0.00101729
1.10775e-12
0.0195054
0.00103279
1.11107e-12
0.0193837
0.00104564
1.10745e-12
0.0192632
0.00105606
1.09383e-12
0.0191433
0.00106363
1.07823e-12
0.0190253
0.0010682
1.05816e-12
0.0189091
0.00106941
1.04522e-12
0.0187965
0.00106662
1.04909e-12
0.0186876
0.00105949
1.13733e-12
0.0185851
0.00104644
1.34612e-12
0.0184885
0.00102963
1.33953e-12
0.00100833
1.32183e-12
0.0221282
0.0159933
-4.71015e-12
0.0220052
0.0152041
-5.60859e-12
0.0218384
0.014299
-6.88322e-12
0.0216365
0.0133388
-8.8316e-12
0.0214131
0.0123352
-1.15959e-11
0.0212092
0.0113032
-1.57946e-11
0.0210484
0.0102251
-2.291e-11
0.0208919
0.00922583
-2.43879e-11
0.0208905
0.00810507
-2.73691e-11
0.0211125
0.00680402
-3.20815e-11
0.0214356
0.00542775
-3.88152e-11
0.0217386
0.00418682
-2.93295e-11
0.0219948
0.0030681
-1.6202e-11
0.0222095
0.00195506
-1.37936e-11
0.0222289
0.0010487
-8.01699e-12
0.0219599
0.000456238
2.53863e-12
0.021689
-0.000128092
9.17541e-12
0.0213974
-0.000697369
8.98306e-12
0.021124
-0.00126992
6.44597e-12
0.0208781
-0.00183639
4.64059e-12
0.0206634
-0.00237736
3.39582e-12
0.02048
-0.0028781
2.32068e-12
0.0203315
-0.00332432
1.17675e-12
0.0202222
-0.00371148
-9.62361e-14
0.0201542
-0.00403131
-9.50211e-13
0.0201291
-0.00428737
-1.94902e-12
0.0201425
-0.004484
-2.76036e-12
0.0201378
-0.00461585
-4.31938e-12
0.0201734
-0.00471282
-4.6405e-12
0.020369
-0.00478392
-5.22589e-12
0.0205556
-0.00472622
-5.93821e-12
0.0207295
-0.00463082
-6.79055e-12
0.0209713
-0.00456001
-7.64922e-12
0.0212473
-0.00442029
-7.71716e-12
0.0215177
-0.00423325
-6.95417e-12
0.0217648
-0.00403114
-5.70607e-12
0.0219835
-0.00382893
-4.52644e-12
0.0221728
-0.00363425
-3.56109e-12
0.0223361
-0.00344815
-2.83121e-12
0.0224772
-0.00327065
-2.31243e-12
0.0226013
-0.00309957
-1.9486e-12
0.0227142
-0.00293357
-1.66909e-12
0.0228156
-0.00277086
-1.44291e-12
0.0229093
-0.00261092
-1.23462e-12
0.0229922
-0.00245452
-1.00924e-12
0.0230646
-0.0023001
-8.96593e-13
0.0231253
-0.00214951
-7.74188e-13
0.0231801
-0.00200389
-6.92112e-13
0.0232249
-0.00185516
-6.83268e-13
0.0232601
-0.00170849
-6.67144e-13
0.023284
-0.00156507
-6.48455e-13
0.0232956
-0.00143017
-6.47611e-13
0.023297
-0.00130189
-7.43839e-13
0.0232898
-0.0011795
-8.25515e-13
0.0232739
-0.00106169
-8.94518e-13
0.0232503
-0.000947708
-9.86663e-13
0.0232186
-0.000837116
-1.09347e-12
0.0231797
-0.000729503
-1.21992e-12
0.0231331
-0.000624758
-1.3447e-12
0.0230795
-0.000522612
-1.46918e-12
0.0230184
-0.000423152
-1.57651e-12
0.0229506
-0.000326203
-1.67038e-12
0.022876
-0.000231879
-1.74069e-12
0.0227952
-0.000139922
-1.78836e-12
0.0227087
-5.05336e-05
-1.81522e-12
0.0226175
3.58428e-05
-1.80926e-12
0.0225223
0.000118862
-1.77135e-12
0.0224233
0.000198538
-1.69509e-12
0.0223211
0.00027494
-1.59388e-12
0.0222154
0.00034805
-1.45378e-12
0.022107
0.000417953
-1.28831e-12
0.0219955
0.000484577
-1.08611e-12
0.021882
0.000548004
-8.58841e-13
0.0217656
0.000608203
-5.93366e-13
0.0216481
0.000665177
-3.4724e-13
0.0215282
0.000719048
-1.56434e-13
0.021408
0.000769659
3.31982e-14
0.0212862
0.000817372
2.19073e-13
0.0211644
0.000861811
3.67747e-13
0.0210419
0.000903605
4.84851e-13
0.0209193
0.000942166
5.98677e-13
0.0207967
0.000978304
7.05897e-13
0.0206736
0.00101131
8.02001e-13
0.0205506
0.00104201
8.88486e-13
0.0204268
0.00106971
9.60396e-13
0.0203031
0.0010951
1.02143e-12
0.0201786
0.00111762
1.06859e-12
0.0200542
0.00113774
1.10386e-12
0.0199295
0.00115501
1.12929e-12
0.0198054
0.00116968
1.14286e-12
0.0196817
0.00118135
1.15321e-12
0.0195596
0.00119002
1.15562e-12
0.0194388
0.00119526
1.16775e-12
0.0193211
0.00119664
1.19431e-12
0.019206
0.00119373
1.35884e-12
0.0190961
0.00118536
1.49113e-12
0.0189915
0.00117077
1.59157e-12
0.0188944
0.00114974
1.55164e-12
0.0188033
0.00112507
1.5369e-12
0.00109154
1.53919e-12
0.0224925
0.0160973
-5.30107e-12
0.0223666
0.0153186
-6.66744e-12
0.0222045
0.0144412
-8.6495e-12
0.0220323
0.0134797
-1.18063e-11
0.0218804
0.0124451
-1.5592e-11
0.0217891
0.0113171
-2.49529e-11
0.0216458
0.0102823
-2.66297e-11
0.02169
0.00909125
-2.937e-11
0.021973
0.00771386
-3.40641e-11
0.0223677
0.00626637
-4.32485e-11
0.0227126
0.00498399
-3.37502e-11
0.0229832
0.00386106
-1.96692e-11
0.0232712
0.00273946
-1.7252e-11
0.0233343
0.00186491
-1.18969e-11
0.0230712
0.00131642
-2.60388e-12
0.0228161
0.000757102
8.53655e-12
0.0225427
0.00018608
8.24629e-12
0.0222764
-0.000401875
6.56533e-12
0.0220276
-0.00100233
5.06436e-12
0.0217955
-0.00159292
4.03274e-12
0.0215815
-0.00215471
3.21941e-12
0.0213849
-0.00267452
2.44832e-12
0.0212088
-0.00314297
1.59807e-12
0.0210545
-0.00355533
5.66439e-13
0.0209279
-0.0039083
-2.09917e-13
0.0208337
-0.00420188
-8.68847e-13
0.0207699
-0.00443519
-1.56095e-12
0.0207479
-0.00461232
-2.32737e-12
0.0207473
-0.00473688
-3.49157e-12
0.0207473
-0.00480714
-3.71639e-12
0.0208531
-0.00485774
-4.32089e-12
0.0210331
-0.00483866
-5.3458e-12
0.0211847
-0.00473957
-5.98533e-12
0.0213855
-0.00465458
-7.45876e-12
0.0216416
-0.0045245
-7.59939e-12
0.0219
-0.00432462
-7.33133e-12
0.0221482
-0.00410994
-6.459e-12
0.0223741
-0.00388796
-5.34447e-12
0.0225709
-0.00366935
-4.1941e-12
0.0227405
-0.00346015
-3.23544e-12
0.0228867
-0.0032619
-2.58585e-12
0.023012
-0.00307312
-2.10616e-12
0.0231241
-0.00289259
-1.76475e-12
0.0232226
-0.00271762
-1.4913e-12
0.0233101
-0.00254711
-1.29616e-12
0.023388
-0.00238152
-1.11553e-12
0.0234548
-0.0022186
-9.25493e-13
0.0235112
-0.00206144
-9.2142e-13
0.0235597
-0.00190569
-9.01836e-13
0.0235984
-0.0017494
-8.74806e-13
0.0236256
-0.00159484
-8.41163e-13
0.0236391
-0.00144544
-8.99979e-13
0.0236431
-0.00130739
-9.06676e-13
0.0236364
-0.00117401
-9.38766e-13
0.0236199
-0.00104647
-9.67629e-13
0.0235946
-0.000923319
-1.00925e-12
0.0235608
-0.000804368
-1.06895e-12
0.0235194
-0.00068905
-1.15614e-12
0.0234702
-0.000577247
-1.25385e-12
0.0234141
-0.000468445
-1.36176e-12
0.0233506
-0.000362674
-1.46207e-12
0.0232803
-0.000259575
-1.55997e-12
0.023203
-0.000159195
-1.6333e-12
0.0231195
-6.13157e-05
-1.68999e-12
0.0230304
3.34791e-05
-1.73046e-12
0.0229367
0.000124785
-1.7392e-12
0.0228386
0.000212587
-1.72485e-12
0.0227362
0.000296798
-1.67325e-12
0.0226303
0.000377566
-1.5969e-12
0.0225203
0.000454759
-1.47894e-12
0.0224077
0.000528559
-1.33637e-12
0.0222917
0.000598793
-1.15479e-12
0.022174
0.000665614
-9.48481e-13
0.0220536
0.000728948
-7.05758e-13
0.0219322
0.000788823
-4.32332e-13
0.0218088
0.000845371
-2.45702e-13
0.0216849
0.000898406
-5.71903e-14
0.0215595
0.000948335
1.29511e-13
0.0214338
0.000994726
3.08277e-13
0.0213076
0.00103825
4.24122e-13
0.0211812
0.00107829
5.40922e-13
0.021055
0.00111566
6.52791e-13
0.0209285
0.00114965
7.5719e-13
0.0208026
0.00118107
8.51609e-13
0.0206761
0.00120926
9.347e-13
0.0205504
0.00123482
1.00543e-12
0.0204242
0.00125728
1.06551e-12
0.0202987
0.00127691
1.11305e-12
0.0201732
0.00129344
1.15481e-12
0.0200487
0.00130676
1.18809e-12
0.0199252
0.00131673
1.22903e-12
0.0198036
0.0013228
1.28693e-12
0.0196841
0.0013248
1.47886e-12
0.0195685
0.00132168
1.61116e-12
0.019457
0.00131296
1.69549e-12
0.0193527
0.00129639
1.78772e-12
0.0192551
0.00127342
1.75215e-12
0.019164
0.00124449
1.77177e-12
0.0190849
0.00120551
1.75592e-12
0.00115466
1.74161e-12
0.0228689
0.0162402
-6.39148e-12
0.0227356
0.0154334
-8.33698e-12
0.022602
0.0145441
-1.17932e-11
0.0224804
0.0135514
-1.6579e-11
0.0224328
0.0124206
-2.40758e-11
0.0223015
0.011362
-2.69627e-11
0.0223775
0.010105
-3.30944e-11
0.0227203
0.00863081
-3.96813e-11
0.0231697
0.00712695
-4.3851e-11
0.0235363
0.00580133
-3.53905e-11
0.0238374
0.00463005
-2.05336e-11
0.0241698
0.00349206
-1.77244e-11
0.0242334
0.00265553
-1.15019e-11
0.0239636
0.00214534
-1.16185e-12
0.0237298
0.00158685
4.48571e-12
0.0234934
0.0010251
4.8876e-12
0.0232578
0.000443002
4.25632e-12
0.0230311
-0.000160367
3.72112e-12
0.0228136
-0.000775697
3.46876e-12
0.0226026
-0.00137266
3.20966e-12
0.0223954
-0.00193946
2.79138e-12
0.0221943
-0.00246402
2.35551e-12
0.0220001
-0.00294228
1.83659e-12
0.021818
-0.00336794
1.2519e-12
0.0216519
-0.00374205
4.89532e-13
0.0215074
-0.00406112
-9.82982e-14
0.0213909
-0.00432837
-6.7173e-13
0.0213079
-0.00454218
-1.25845e-12
0.0212592
-0.0047049
-1.98401e-12
0.0212504
-0.00481733
-2.5619e-12
0.0212504
-0.00488168
-3.93278e-12
0.0212904
-0.00490196
-4.28559e-12
0.0214182
-0.00489295
-4.87952e-12
0.0215806
-0.00484469
-5.83919e-12
0.0217482
-0.00472348
-6.63718e-12
0.0219738
-0.00458426
-7.53786e-12
0.0222291
-0.00439752
-7.2902e-12
0.0224814
-0.00417094
-6.7532e-12
0.0227163
-0.00393214
-6.00083e-12
0.0229257
-0.00369355
-5.09836e-12
0.0231044
-0.00346166
-4.16695e-12
0.0232573
-0.0032423
-3.32762e-12
0.0233861
-0.0030349
-2.66186e-12
0.0234972
-0.00283823
-2.17899e-12
0.0235932
-0.00265032
-1.89822e-12
0.0236757
-0.00246907
-1.62162e-12
0.0237473
-0.00229431
-1.49656e-12
0.0238065
-0.00212378
-1.42224e-12
0.0238581
-0.00195985
-1.30617e-12
0.0238995
-0.0017932
-1.29093e-12
0.0239313
-0.00162917
-1.25302e-12
0.0239519
-0.00146808
-1.179e-12
0.0239579
-0.00131452
-1.02992e-12
0.0239542
-0.00117099
-1.00344e-12
0.0239392
-0.00103197
-9.88038e-13
0.0239146
-0.000898599
-9.78976e-13
0.0238807
-0.000770455
-9.9037e-13
0.0238386
-0.000646706
-1.03611e-12
0.0237882
-0.000527164
-1.10489e-12
0.0237305
-0.000411173
-1.19709e-12
0.0236652
-0.000298652
-1.29123e-12
0.0235929
-0.000189103
-1.3957e-12
0.0235135
-8.24116e-05
-1.4677e-12
0.0234276
2.1282e-05
-1.54036e-12
0.0233361
0.000121331
-1.60668e-12
0.0232394
0.000217659
-1.63798e-12
0.0231381
0.0003103
-1.64738e-12
0.0230326
0.000399107
-1.61923e-12
0.0229236
0.000484263
-1.56837e-12
0.0228111
0.000565544
-1.47463e-12
0.0226958
0.000643196
-1.35608e-12
0.0225775
0.000716972
-1.19719e-12
0.0224571
0.000787117
-1.0124e-12
0.022334
0.000853457
-7.91656e-13
0.0222097
0.000916141
-5.3415e-13
0.0220829
0.000975186
-3.24571e-13
0.0219558
0.00103052
-1.39847e-13
0.0218269
0.00108248
4.62404e-14
0.0216981
0.00113067
2.30254e-13
0.0215685
0.00117577
3.66097e-13
0.021439
0.0012171
4.8376e-13
0.0213098
0.00125556
5.99437e-13
0.0211804
0.00129033
7.11805e-13
0.0210519
0.0013223
8.14885e-13
0.020923
0.00135074
9.11189e-13
0.0207952
0.00137623
9.9423e-13
0.0206671
0.0013983
1.07317e-12
0.0205405
0.00141708
1.14083e-12
0.0204139
0.00143238
1.21898e-12
0.0202895
0.00144374
1.31554e-12
0.0201664
0.0014512
1.52978e-12
0.0200468
0.00145358
1.65867e-12
0.0199304
0.00145101
1.76896e-12
0.0198198
0.00144136
1.84464e-12
0.019716
0.00142382
1.94433e-12
0.0196206
0.00139815
1.93003e-12
0.0195318
0.00136646
1.94307e-12
0.019455
0.00132318
1.98614e-12
0.0193973
0.00126094
1.95991e-12
0.00119359
1.87482e-12
0.0232408
0.0164181
-7.74285e-12
0.0231044
0.015532
-1.15785e-11
0.0230365
0.0145628
-1.66993e-11
0.0230194
0.0134877
-2.6804e-11
0.0229195
0.0124324
-2.85708e-11
0.0230496
0.0111258
-3.20863e-11
0.0234773
0.00955695
-3.79989e-11
0.0239292
0.00802075
-4.84383e-11
0.0242994
0.00665758
-3.6687e-11
0.0246345
0.00541494
-1.98514e-11
0.02497
0.00425849
-1.65234e-11
0.0249785
0.00346772
-8.60817e-12
0.0247099
0.00295234
3.38349e-12
0.0245053
0.00238296
2.93167e-12
0.0242968
0.00182534
2.72575e-12
0.0240972
0.00124641
2.27017e-12
0.0239068
0.000643943
1.66899e-12
0.0237187
3.26914e-05
1.47676e-12
0.0235291
-0.000584103
1.6189e-12
0.0233343
-0.00117509
1.89596e-12
0.0231347
-0.00173558
1.97251e-12
0.022933
-0.0022564
1.962e-12
0.0227322
-0.00273555
1.83816e-12
0.0225353
-0.00316736
1.58968e-12
0.0223483
-0.00355326
1.21693e-12
0.0221749
-0.00389038
6.34087e-13
0.0220215
-0.00418007
3.19745e-14
0.0218927
-0.00442269
-5.10149e-13
0.0217927
-0.00461802
-1.00606e-12
0.0217272
-0.00476842
-1.63197e-12
0.0216995
-0.00487254
-2.46054e-12
0.0217088
-0.00493175
-3.23761e-12
0.0217341
-0.00494123
-4.46749e-12
0.0217654
-0.0048983
-4.61653e-12
0.0218886
-0.00487079
-5.05601e-12
0.022083
-0.0048046
-5.83643e-12
0.022281
-0.00462565
-6.71588e-12
0.0225112
-0.00443293
-7.04617e-12
0.0227589
-0.00420963
-6.86977e-12
0.022996
-0.00395787
-6.30834e-12
0.0232128
-0.00370098
-5.47374e-12
0.0234008
-0.00344923
-4.55092e-12
0.0235592
-0.00320818
-3.70161e-12
0.0236915
-0.00298123
-3.02879e-12
0.0238019
-0.00276835
-2.53995e-12
0.0238964
-0.00256695
-2.25806e-12
0.0239751
-0.00237536
-1.9305e-12
0.0240422
-0.00219136
-1.8056e-12
0.0240955
-0.00201285
-1.55029e-12
0.024143
-0.00184047
-1.53087e-12
0.0241798
-0.00166636
-1.47326e-12
0.0242055
-0.00149428
-1.33602e-12
0.0242167
-0.0013265
-1.13962e-12
0.0242138
-0.00116814
-9.21744e-13
0.024199
-0.00101756
-8.95848e-13
0.0241741
-0.000873693
-8.6149e-13
0.0241396
-0.000735736
-8.4161e-13
0.024097
-0.000602883
-8.49795e-13
0.024046
-0.000474918
-8.89754e-13
0.023988
-0.000351189
-9.6302e-13
0.023922
-0.000231431
-1.06457e-12
0.023849
-0.000114972
-1.14197e-12
0.0237687
-2.03874e-06
-1.28684e-12
0.0236821
0.000107218
-1.36866e-12
0.0235897
0.000212554
-1.44375e-12
0.0234916
0.000313843
-1.49385e-12
0.0233891
0.000411294
-1.52962e-12
0.0232813
0.000504599
-1.52931e-12
0.0231705
0.000594023
-1.5072e-12
0.0230549
0.00067927
-1.44129e-12
0.0229371
0.000760581
-1.34894e-12
0.0228156
0.000837779
-1.21539e-12
0.0226923
0.000910997
-1.05325e-12
0.0225663
0.000980237
-8.56176e-13
0.0224388
0.00104546
-6.24404e-13
0.0223095
0.0011069
-3.96513e-13
0.0221795
0.0011643
-2.18087e-13
0.0220483
0.00121814
-3.67753e-14
0.0219171
0.00126793
1.46607e-13
0.0217855
0.00131441
3.06158e-13
0.0216543
0.00135683
4.21252e-13
0.0215237
0.00139614
5.38196e-13
0.0213932
0.00143148
6.57085e-13
0.0212645
0.00146369
7.70733e-13
0.0211357
0.00149208
8.84042e-13
0.021009
0.00151711
9.89965e-13
0.0208825
0.00153837
1.10824e-12
0.0207578
0.00155574
1.25738e-12
0.0206341
0.0015691
1.47859e-12
0.020513
0.00157764
1.61926e-12
0.0203938
0.00158131
1.74668e-12
0.0202791
0.00157862
1.85035e-12
0.0201691
0.00156903
1.94774e-12
0.0200669
0.00154975
2.04947e-12
0.0199734
0.00152218
2.06046e-12
0.0198859
0.00148802
2.09648e-12
0.0198132
0.00143945
2.13769e-12
0.0197599
0.00137233
2.13509e-12
0.019724
0.00128729
2.06361e-12
0.00120492
2.10046e-12
0.0237336
0.0166695
-1.08663e-11
0.023586
0.0156259
-1.75172e-11
0.0234949
0.0145621
-2.69465e-11
0.0234135
0.0134818
-2.94062e-11
0.0236193
0.0121123
-3.48943e-11
0.0241389
0.0104784
-4.46328e-11
0.0246227
0.00893741
-4.50623e-11
0.0250152
0.00753776
-3.60696e-11
0.0254348
0.00620897
-1.81557e-11
0.0257757
0.0050452
-1.50945e-11
0.0257196
0.00430537
-7.18288e-12
0.0254614
0.00376357
4.00425e-12
0.0252712
0.00318428
4.94044e-12
0.0250722
0.00261492
2.95593e-12
0.0248889
0.00202889
1.79124e-12
0.0247235
0.00142327
1.06129e-12
0.0245643
0.000806239
5.48442e-13
0.0244061
0.000192095
2.90302e-13
0.0242357
-0.000412087
4.41038e-13
0.0240569
-0.000991923
9.76273e-13
0.0238683
-0.00154031
1.35657e-12
0.0236714
-0.00205233
1.61904e-12
0.0234704
-0.00252626
1.75967e-12
0.0232658
-0.00295856
1.72456e-12
0.0230657
-0.00334951
1.57087e-12
0.0228696
-0.00369756
1.1967e-12
0.0226873
-0.00400221
7.06415e-13
0.0225196
-0.00426548
6.49431e-14
0.0223749
-0.00448398
-4.00428e-13
0.0222561
-0.00466311
-9.07349e-13
0.0221671
-0.0047964
-1.50503e-12
0.0221138
-0.00489296
-2.2541e-12
0.0221013
-0.00494445
-3.01831e-12
0.0221353
-0.00495093
-3.92169e-12
0.0221486
-0.00490251
-4.2097e-12
0.0221536
-0.00482894
-4.4245e-12
0.0223047
-0.00479726
-4.98751e-12
0.022513
-0.0046661
-6.06019e-12
0.0227315
-0.00445429
-6.36894e-12
0.0229611
-0.00421314
-6.51347e-12
0.0231976
-0.00396316
-6.18827e-12
0.0234185
-0.00369281
-5.56744e-12
0.0236142
-0.00342228
-4.76361e-12
0.0237806
-0.00316162
-3.9448e-12
0.0239208
-0.00291651
-3.25752e-12
0.0240346
-0.00268657
-2.75055e-12
0.0241287
-0.00247071
-2.35037e-12
0.0242034
-0.00226731
-1.94431e-12
0.0242637
-0.00207341
-1.69991e-12
0.0243122
-0.00188803
-1.4892e-12
0.024351
-0.00170477
-1.44781e-12
0.0243805
-0.00152336
-1.35239e-12
0.0243984
-0.00134418
-1.19106e-12
0.0244024
-0.00117045
-9.20064e-13
0.0243949
-0.00100804
-7.55325e-13
0.0243752
-0.000851828
-6.96176e-13
0.024345
-0.000702756
-6.53016e-13
0.0243051
-0.000559691
-6.17594e-13
0.0242564
-0.000422274
-6.19721e-13
0.0241989
-0.000289885
-6.75541e-13
0.0241327
-0.000162077
-7.6559e-13
0.0240585
-3.8416e-05
-9.12505e-13
0.0239765
8.09883e-05
-9.94535e-13
0.0238878
0.00019612
-1.11579e-12
0.0237923
0.000306934
-1.22731e-12
0.0236916
0.000413382
-1.31293e-12
0.0235853
0.000515655
-1.38485e-12
0.023475
0.000613467
-1.41857e-12
0.0233605
0.000707139
-1.42826e-12
0.023243
0.000796228
-1.39248e-12
0.0231224
0.000881222
-1.32866e-12
0.0229991
0.000961596
-1.2213e-12
0.022874
0.00103793
-1.0846e-12
0.0227464
0.00110974
-9.11607e-13
0.0226182
0.0011775
-7.05866e-13
0.0224876
0.00124097
-4.64522e-13
0.0223572
0.00130031
-2.94272e-13
0.0222252
0.00135568
-1.1879e-13
0.0220936
0.00140683
6.19622e-14
0.0219616
0.0014543
2.38692e-13
0.0218297
0.00149752
3.54823e-13
0.0216986
0.00153722
4.72632e-13
0.021568
0.00157273
5.98899e-13
0.0214388
0.00160466
7.28735e-13
0.0213105
0.00163245
8.77497e-13
0.0211844
0.00165637
1.07681e-12
0.0210592
0.00167599
1.31448e-12
0.0209371
0.00169107
1.47783e-12
0.0208168
0.00170125
1.62971e-12
0.0207001
0.0017056
1.75595e-12
0.020588
0.00170353
1.88287e-12
0.0204812
0.00169325
1.98784e-12
0.0203835
0.00167283
2.10649e-12
0.0202948
0.0016431
2.14102e-12
0.0202133
0.00160586
2.19853e-12
0.0201461
0.00155445
2.25859e-12
0.020104
0.00147778
2.27312e-12
0.0200713
0.00139284
2.29776e-12
0.0200502
0.00129619
2.33371e-12
0.00116848
2.42161e-12
0.0242998
0.0169598
-1.59685e-11
0.0240779
0.0157607
-2.78223e-11
0.0239692
0.0145851
-3.10689e-11
0.0241945
0.0131319
-3.77897e-11
0.0247317
0.0114256
-4.93892e-11
0.0252297
0.00983683
-4.66201e-11
0.0256487
0.00841899
-3.44429e-11
0.0261473
0.00700778
-1.71916e-11
0.0264886
0.00584554
-1.33618e-11
0.0263685
0.00516446
-5.04023e-12
0.0261345
0.00457921
4.88447e-12
0.0259592
0.00398106
4.69252e-12
0.0257789
0.00339976
3.04538e-12
0.0256191
0.00280069
1.27518e-12
0.0254785
0.00218549
3.25447e-13
0.0253465
0.00156239
-8.70596e-14
0.0252115
0.000942848
-2.57844e-13
0.0250667
0.000335878
-1.57695e-13
0.0249057
-0.000252004
1.4245e-13
0.0247311
-0.000816199
6.41736e-13
0.0245443
-0.001349
1.13243e-12
0.024348
-0.00184931
1.47752e-12
0.0241447
-0.00231382
1.71192e-12
0.0239362
-0.00274308
1.77721e-12
0.0237283
-0.00313334
1.72257e-12
0.023521
-0.00348753
1.4661e-12
0.0233229
-0.00380026
1.12082e-12
0.0231335
-0.00407784
6.13899e-13
0.0229606
-0.00431244
6.88208e-14
0.0228052
-0.00451313
-3.22506e-13
0.0226729
-0.00467033
-7.27005e-13
0.0225645
-0.00479292
-1.24006e-12
0.0224838
-0.00487296
-1.89453e-12
0.022441
-0.00491953
-2.5487e-12
0.0224448
-0.00492086
-3.46582e-12
0.0224825
-0.00487995
-3.42982e-12
0.0224617
-0.00479238
-3.9705e-12
0.0224929
-0.00471563
-4.2516e-12
0.0226625
-0.00464411
-4.7803e-12
0.0228855
-0.00446206
-5.68957e-12
0.0231103
-0.00421353
-5.95483e-12
0.0233431
-0.0039511
-6.06093e-12
0.0235739
-0.00367453
-5.63286e-12
0.0237871
-0.00339214
-4.92521e-12
0.0239724
-0.00311381
-4.1456e-12
0.0241277
-0.0028482
-3.3845e-12
0.024252
-0.00259893
-2.69751e-12
0.024352
-0.00236665
-2.18605e-12
0.0244282
-0.00214946
-1.65345e-12
0.0244864
-0.00194501
-1.47092e-12
0.0245344
-0.00175102
-1.19218e-12
0.0245689
-0.00155669
-1.1516e-12
0.0245933
-0.00136756
-1.06386e-12
0.024607
-0.00118201
-9.1047e-13
0.0246059
-0.00100404
-6.22975e-13
0.0245939
-0.000835526
-5.56143e-13
0.0245691
-0.000673779
-5.04931e-13
0.0245341
-0.0005191
-4.61074e-13
0.024488
-0.000370845
-4.39796e-13
0.0244326
-0.000228492
-4.52937e-13
0.024367
-9.14804e-05
-5.00782e-13
0.0242923
4.03424e-05
-5.65602e-13
0.0242095
0.000166915
-7.24076e-13
0.0241185
0.000288404
-8.72882e-13
0.0240211
0.000405147
-1.00404e-12
0.0239166
0.000517061
-1.1188e-12
0.0238074
0.00062438
-1.22622e-12
0.0236924
0.000726964
-1.29505e-12
0.0235741
0.00082486
-1.33891e-12
0.0234512
0.000918125
-1.33546e-12
0.023326
0.00100651
-1.3008e-12
0.0231973
0.00109049
-1.22301e-12
0.023067
0.00116941
-1.11202e-12
0.0229345
0.00124421
-9.66437e-13
0.0228009
0.00131384
-7.86529e-13
0.0226661
0.00137961
-5.76117e-13
0.0225305
0.00144022
-3.69896e-13
0.0223948
0.00149716
-2.01599e-13
0.0222586
0.00154902
-2.49344e-14
0.0221229
0.00159731
1.50038e-13
0.0219876
0.00164066
2.82848e-13
0.0218535
0.00168038
4.01181e-13
0.0217202
0.00171537
5.37406e-13
0.0215894
0.00174639
7.17568e-13
0.0214597
0.00177283
1.00097e-12
0.0213333
0.00179465
1.21175e-12
0.0212095
0.00181163
1.39446e-12
0.0210891
0.00182297
1.5554e-12
0.0209734
0.00182827
1.70493e-12
0.0208627
0.00182625
1.84406e-12
0.0207595
0.00181526
1.9721e-12
0.0206657
0.00179317
2.09739e-12
0.0205816
0.00176132
2.16707e-12
0.0205065
0.00172068
2.24054e-12
0.020446
0.00166411
2.30988e-12
0.0204105
0.00158395
2.36108e-12
0.020375
0.00150256
2.32508e-12
0.0203562
0.00139672
2.48403e-12
0.0203831
0.00125204
2.65198e-12
0.00105234
2.86166e-12
0.0248272
0.0173401
-2.81344e-11
0.0245668
0.0159302
-3.19753e-11
0.0247728
0.0142554
-3.99672e-11
0.0253336
0.0124007
-5.34352e-11
0.0258651
0.010752
-4.97757e-11
0.0263053
0.00930471
-3.41726e-11
0.0268786
0.00781749
-1.61323e-11
0.0271989
0.0066697
-1.21781e-11
0.0270056
0.00604758
-3.5789e-12
0.026794
0.00541279
5.34589e-12
0.0266153
0.00479642
4.90009e-12
0.0264412
0.00418773
2.90389e-12
0.0262967
0.00356932
9.4329e-13
0.0261756
0.00293788
-7.24626e-13
0.0260697
0.00230519
-1.32944e-12
0.0259602
0.00167824
-1.3239e-12
0.0258418
0.00106547
-9.34166e-13
0.025706
0.000472235
-3.68477e-13
0.0255539
-9.69156e-05
1.2186e-13
0.0253851
-0.000643478
4.60301e-13
0.0252043
-0.00115983
9.01513e-13
0.0250107
-0.00164635
1.37482e-12
0.0248096
-0.00210083
1.6559e-12
0.0245994
-0.00252347
1.77127e-12
0.0243862
-0.00291148
1.76413e-12
0.024169
-0.00326624
1.60004e-12
0.0239545
-0.00358434
1.33896e-12
0.0237436
-0.00386888
9.82804e-13
0.0235419
-0.00411542
5.96647e-13
0.0233535
-0.00432957
1.64424e-13
0.0231807
-0.00450539
-1.86669e-13
0.0230328
-0.00465043
-5.18906e-13
0.0229111
-0.00475911
-1.00106e-12
0.0228198
-0.00483431
-1.52678e-12
0.0227624
-0.00487245
-2.10267e-12
0.0227435
-0.00487439
-2.84309e-12
0.0227695
-0.00483029
-2.84951e-12
0.0227842
-0.00474697
-3.42613e-12
0.0227721
-0.00465001
-3.60834e-12
0.022866
-0.00457605
-4.02244e-12
0.0230564
-0.00442533
-4.6995e-12
0.023284
-0.00420266
-5.80062e-12
0.0235173
-0.00393277
-5.9308e-12
0.0237629
-0.00365773
-5.66858e-12
0.023995
-0.00336141
-5.09304e-12
0.0242015
-0.00306348
-4.26392e-12
0.0243757
-0.0027772
-3.36753e-12
0.0245152
-0.00250667
-2.60242e-12
0.0246222
-0.00225525
-1.92731e-12
0.0247011
-0.00202159
-1.4704e-12
0.0247571
-0.00180453
-1.10577e-12
0.024805
-0.001601
-7.90557e-13
0.0248372
-0.00139591
-7.73281e-13
0.0248571
-0.00119824
-7.28324e-13
0.0248633
-0.00100561
-6.38871e-13
0.0248571
-0.000823464
-4.70285e-13
0.0248381
-0.000648292
-4.07191e-13
0.0248076
-0.000481284
-3.68959e-13
0.0247648
-0.000321214
-3.46561e-13
0.0247114
-0.00016755
-3.42197e-13
0.0246465
-2.02516e-05
-3.6735e-13
0.0245723
0.000120594
-4.15845e-13
0.024488
0.000255236
-5.03659e-13
0.024395
0.000383878
-6.02409e-13
0.0242941
0.000507072
-7.75343e-13
0.0241855
0.000624802
-9.35888e-13
0.0240715
0.000737509
-1.07914e-12
0.0239509
0.000844954
-1.18274e-12
0.0238273
0.00094743
-1.25657e-12
0.0236981
0.00104476
-1.28583e-12
0.0235673
0.00113699
-1.27782e-12
0.0234322
0.00122428
-1.23081e-12
0.0232962
0.00130624
-1.14512e-12
0.0231573
0.00138361
-1.02851e-12
0.0230179
0.00145544
-8.74695e-13
0.0228772
0.00152309
-6.95946e-13
0.0227361
0.00158505
-4.79287e-13
0.0225947
0.0016432
-2.89031e-13
0.022453
0.00169558
-1.16563e-13
0.0223124
0.00174436
5.55835e-14
0.0221712
0.00178741
2.05571e-13
0.0220329
0.00182669
3.24469e-13
0.0218946
0.00186052
5.13684e-13
0.0217603
0.00188992
7.98337e-13
0.0216276
0.001914
1.03122e-12
0.0214994
0.00193268
1.23013e-12
0.0213752
0.0019454
1.41281e-12
0.0212563
0.00195121
1.58337e-12
0.0211442
0.00194915
1.74067e-12
0.0210404
0.0019371
1.89113e-12
0.0209486
0.00191254
2.01561e-12
0.0208666
0.00187839
2.13605e-12
0.0207948
0.00183491
2.21902e-12
0.0207437
0.00177028
2.29766e-12
0.0207046
0.00169332
2.35439e-12
0.0206711
0.0016064
2.40135e-12
0.0206722
0.00148893
2.50132e-12
0.0207286
0.00132371
2.67248e-12
0.0208339
0.00112009
2.93086e-12
0.000848475
3.3529e-12
0.0253914
0.0175511
-3.1356e-11
0.0256131
0.0155734
-4.47192e-11
0.0261479
0.0135117
-6.40159e-11
0.0266755
0.0117273
-5.27828e-11
0.0271286
0.010199
-3.47115e-11
0.0277357
0.00863477
-2.41194e-11
0.0279903
0.00754371
-9.47612e-12
0.0277107
0.00696266
1.25575e-12
0.0275211
0.00628619
5.67134e-12
0.0273334
0.00564345
4.86551e-12
0.0271524
0.00500594
2.42932e-12
0.0269987
0.00435633
4.36703e-16
0.0268787
0.00370131
-1.87025e-12
0.026775
0.00304868
-3.03298e-12
0.0266773
0.00240726
-2.90026e-12
0.0265737
0.0017846
-2.18994e-12
0.0264585
0.00118371
-1.29913e-12
0.0263269
0.000607371
-4.2166e-13
0.026178
5.69958e-05
1.89292e-13
0.0260123
-0.000470946
5.46099e-13
0.0258324
-0.000971186
8.21492e-13
0.0256416
-0.00144409
1.09178e-12
0.0254406
-0.00188826
1.42464e-12
0.025232
-0.00230288
1.66201e-12
0.0250167
-0.00268701
1.69953e-12
0.0247976
-0.00303948
1.61887e-12
0.0245775
-0.00336055
1.44095e-12
0.0243594
-0.00364859
1.22741e-12
0.0241477
-0.0039054
9.49873e-13
0.023946
-0.00412881
6.83379e-13
0.0237589
-0.00432221
3.39146e-13
0.0235898
-0.00448238
7.55257e-14
0.0234368
-0.00461225
-2.78721e-13
0.0233073
-0.00470887
-6.58268e-13
0.023203
-0.00477582
-1.12329e-12
0.0231262
-0.00480717
-1.63266e-12
0.0230902
-0.00480719
-2.24568e-12
0.0230926
-0.00476566
-2.82408e-12
0.0231063
-0.00468023
-2.68509e-12
0.0231021
-0.00459
-3.41584e-12
0.0231284
-0.00447114
-3.63393e-12
0.0232743
-0.0043675
-4.08842e-12
0.0234963
-0.0041758
-5.15436e-12
0.0237273
-0.00390984
-5.45919e-12
0.0239665
-0.00361798
-5.48883e-12
0.0242077
-0.00331964
-5.07642e-12
0.0244298
-0.00300838
-4.42358e-12
0.0246185
-0.00270098
-3.62925e-12
0.0247697
-0.00240775
-2.76918e-12
0.0248848
-0.00213492
-1.96108e-12
0.0249674
-0.0018827
-1.37671e-12
0.0250241
-0.00165038
-7.73272e-13
0.0250699
-0.00143476
-7.31159e-13
0.0250972
-0.00121777
-6.57829e-13
0.0251108
-0.00101099
-5.421e-13
0.025109
-0.000811949
-3.29573e-13
0.025097
-0.000626207
-2.75143e-13
0.0250707
-0.000445489
-2.7764e-13
0.0250319
-0.000273203
-2.75181e-13
0.0249811
-0.000107957
-2.69567e-13
0.0249189
5.01572e-05
-2.77102e-13
0.0248461
0.000200842
-3.13431e-13
0.0247624
0.000344328
-3.85065e-13
0.0246695
0.000480974
-4.80342e-13
0.0245671
0.000611265
-5.93879e-13
0.0244581
0.000735388
-7.67889e-13
0.0243415
0.00085383
-9.48379e-13
0.0242202
0.00096641
-1.0847e-12
0.0240928
0.00107374
-1.19111e-12
0.0239615
0.00117516
-1.2493e-12
0.0238257
0.00127159
-1.27163e-12
0.0236865
0.0013619
-1.24997e-12
0.0235451
0.00144739
-1.19363e-12
0.0234005
0.00152675
-1.10038e-12
0.0232559
0.00160131
-9.74243e-13
0.0231087
0.0016701
-8.18342e-13
0.0229628
0.00173385
-6.32762e-13
0.0228154
0.00179242
-4.22805e-13
0.0226693
0.00184564
-2.13726e-13
0.0225233
0.00189403
-4.27065e-14
0.0223782
0.00193698
1.23629e-13
0.0222353
0.00197488
2.47525e-13
0.0220936
0.00200738
5.4188e-13
0.0219555
0.00203413
7.79929e-13
0.0218212
0.00205502
9.98652e-13
0.0216915
0.00206911
1.2019e-12
0.0215684
0.00207568
1.39025e-12
0.0214531
0.0020735
1.56964e-12
0.0213485
0.00205992
1.73003e-12
0.0212566
0.00203301
1.87363e-12
0.021178
0.00199504
2.00489e-12
0.0211084
0.00194845
2.14194e-12
0.0210631
0.00187847
2.19901e-12
0.021019
0.00180461
2.37063e-12
0.020992
0.00170912
2.42792e-12
0.0210081
0.0015764
2.54526e-12
0.0210853
0.00139001
2.78423e-12
0.0212258
0.00115058
3.20088e-12
0.0214218
0.000883494
3.22417e-12
0.000583095
2.86071e-12
0.0268076
0.0172008
-5.04239e-11
0.0271954
0.014987
-5.80674e-11
0.0276344
0.0129124
-5.44825e-11
0.0281333
0.0111399
-3.08877e-11
0.0287861
0.00947767
-2.51908e-11
0.0289042
0.00848272
-1.31067e-11
0.0285828
0.00789678
3.67835e-12
0.0283916
0.0071971
4.73069e-12
0.0281788
0.00653409
4.08403e-12
0.0279782
0.00586181
1.87962e-12
0.0278123
0.0051793
-8.53929e-13
0.0276755
0.00449185
-3.5883e-12
0.027563
0.00381025
-4.67017e-12
0.0274607
0.00314709
-4.57282e-12
0.0273589
0.00250657
-3.75242e-12
0.0272498
0.00189341
-2.62184e-12
0.027128
0.00130661
-1.44781e-12
0.0269916
0.000746653
-4.68635e-13
0.0268406
0.000212623
1.33315e-13
0.0266757
-0.00029781
5.93092e-13
0.0264991
-0.000783837
8.15709e-13
0.0263129
-0.00124387
1.02076e-12
0.0261156
-0.00167767
1.18614e-12
0.0259106
-0.00208424
1.32748e-12
0.0256966
-0.00246325
1.43783e-12
0.0254784
-0.00281266
1.52904e-12
0.025256
-0.0031339
1.45415e-12
0.0250347
-0.00342361
1.35222e-12
0.0248156
-0.00368578
1.16395e-12
0.024604
-0.00391558
9.95894e-13
0.0244006
-0.00411899
7.58297e-13
0.0242085
-0.0042897
5.15631e-13
0.0240306
-0.00443521
2.33941e-13
0.0238698
-0.00454801
-3.37413e-14
0.0237259
-0.00463646
-3.95006e-13
0.0236058
-0.00469134
-7.58211e-13
0.0235105
-0.0047206
-1.2155e-12
0.0234486
-0.0047148
-1.64318e-12
0.0234308
-0.00467607
-2.17941e-12
0.0234228
-0.00459506
-2.29086e-12
0.0234428
-0.00450386
-2.51372e-12
0.0234375
-0.00437887
-3.59076e-12
0.0235089
-0.00426362
-3.79866e-12
0.0236788
-0.00409635
-4.22446e-12
0.0239067
-0.00386407
-4.99783e-12
0.0241417
-0.00357205
-5.28311e-12
0.0243825
-0.00326518
-5.39312e-12
0.0246131
-0.00294306
-4.96655e-12
0.0248156
-0.00261753
-4.14842e-12
0.0249822
-0.00230237
-3.18625e-12
0.0251066
-0.00200516
-2.24808e-12
0.0251937
-0.00173132
-1.38559e-12
0.0252492
-0.00148087
-6.86936e-13
0.0252945
-0.00125259
-6.52638e-13
0.0253186
-0.00102402
-5.79433e-13
0.0253261
-0.000806881
-4.15047e-13
0.0253155
-0.0006012
-6.92605e-14
0.0252956
-0.000411372
-1.411e-13
0.025262
-0.000225985
-1.72358e-13
0.0252154
-4.95594e-05
-2.08723e-13
0.0251579
0.00011866
-2.25045e-13
0.0250888
0.000279138
-2.53513e-13
0.0250094
0.000431958
-3.17182e-13
0.0249191
0.000577389
-4.05894e-13
0.0248195
0.000715458
-5.1685e-13
0.0247114
0.000846689
-6.46406e-13
0.0245957
0.000971108
-8.47549e-13
0.0244741
0.00108935
-1.00977e-12
0.0243457
0.00120137
-1.14152e-12
0.024213
0.00130741
-1.22843e-12
0.0240744
0.00140756
-1.27691e-12
0.0239329
0.00150154
-1.28197e-12
0.0237874
0.0015899
-1.24892e-12
0.0236397
0.00167194
-1.18008e-12
0.0234907
0.00174854
-1.07497e-12
0.02334
0.00181894
-9.39459e-13
0.0231898
0.0018839
-7.72842e-13
0.0230396
0.00194295
-5.84691e-13
0.02289
0.00199655
-3.71994e-13
0.0227428
0.00204416
-1.46201e-13
0.0225962
0.00208652
3.19799e-14
0.0224533
0.00212223
2.44996e-13
0.022313
0.00215266
4.89576e-13
0.0221767
0.00217538
7.13192e-13
0.0220461
0.00219184
9.28907e-13
0.0219209
0.00219884
1.13355e-12
0.0218054
0.00219707
1.32376e-12
0.0217005
0.00218154
1.49626e-12
0.0216103
0.00215192
1.6376e-12
0.0215327
0.00211128
1.80582e-12
0.0214695
0.00205742
1.92573e-12
0.0214197
0.00198929
2.1383e-12
0.0213766
0.00191271
2.19163e-12
0.021366
0.00180434
2.31212e-12
0.0214069
0.00165144
2.51792e-12
0.0215196
0.00143778
2.855e-12
0.0216781
0.0011931
3.22019e-12
0.0218741
0.000908047
3.0992e-12
0.0221151
0.000591733
2.71706e-12
0.000277613
1.64716e-12
0.0280887
0.0164603
-6.20135e-11
0.0287466
0.0142021
-5.08147e-11
0.0294225
0.012167
-3.13606e-11
0.030094
0.0103932
-2.58057e-11
0.0299996
0.00952537
-1.38362e-11
0.0296294
0.00887603
3.57907e-12
0.0293925
0.00817
6.24361e-12
0.0291294
0.00748467
3.8553e-12
0.0288984
0.006779
1.24999e-12
0.0287065
0.00605502
-1.50096e-12
0.028557
0.00532511
-4.45818e-12
0.0284342
0.0046078
-5.80051e-12
0.0283257
0.00391211
-5.90132e-12
0.0282212
0.00324699
-5.14504e-12
0.0281125
0.00261263
-3.96496e-12
0.0279952
0.00201067
-2.66624e-12
0.0278653
0.00143781
-1.41692e-12
0.0277227
0.000892887
-5.28017e-13
0.0275675
0.000373588
4.14911e-14
0.0274006
-0.000121138
5.02328e-13
0.0272233
-0.000594875
7.79866e-13
0.0270368
-0.00104339
9.20071e-13
0.0268393
-0.00146753
1.05153e-12
0.0266339
-0.00186606
1.16217e-12
0.0264186
-0.00223855
1.22717e-12
0.0261984
-0.00258382
1.26411e-12
0.025972
-0.00290205
1.26254e-12
0.0257451
-0.00319192
1.24217e-12
0.0255181
-0.00345516
1.18994e-12
0.0252955
-0.00368943
1.08616e-12
0.0250778
-0.00389796
9.44288e-13
0.0248697
-0.00407777
7.39534e-13
0.0246701
-0.00423232
5.28808e-13
0.0244827
-0.00435959
3.19799e-13
0.0243094
-0.00446141
1.41826e-13
0.024151
-0.00453687
-8.78521e-14
0.0240138
-0.00458566
-4.09795e-13
0.0238981
-0.00460725
-8.01473e-13
0.0238157
-0.00459988
-1.17132e-12
0.0237711
-0.00456074
-1.7392e-12
0.0237432
-0.00448551
-1.75328e-12
0.0237393
-0.00438392
-2.14979e-12
0.0237375
-0.00427712
-3.31256e-12
0.0237596
-0.00413309
-3.47731e-12
0.0238625
-0.00398368
-3.86241e-12
0.0240506
-0.00377681
-4.47391e-12
0.0242661
-0.00350239
-5.50164e-12
0.0244883
-0.00318562
-5.6142e-12
0.0247179
-0.00286339
-5.28893e-12
0.0249268
-0.00252295
-4.6388e-12
0.0251026
-0.00218583
-3.71159e-12
0.0252405
-0.00186572
-2.66643e-12
0.025339
-0.00156946
-1.60888e-12
0.0253997
-0.00129896
-9.2569e-13
0.0254477
-0.00105535
-4.54311e-13
0.0254747
-0.000816864
-4.04687e-13
0.0254777
-0.000587814
-3.13247e-13
0.0254573
-0.000374768
-1.54073e-13
0.0254268
-0.000180727
-1.16313e-13
0.0253824
7.28681e-06
-1.75599e-13
0.0253276
0.000184714
-1.96684e-13
0.0252616
0.00035421
-2.22551e-13
0.0251857
0.000515938
-2.84746e-13
0.0250988
0.000670164
-3.70049e-13
0.0250028
0.00081649
-4.71405e-13
0.0248982
0.000955227
-5.8115e-13
0.0247857
0.00108631
-7.65838e-13
0.0246669
0.00121052
-9.50658e-13
0.024541
0.00132766
-1.10698e-12
0.0244105
0.00143838
-1.22313e-12
0.0242743
0.00154237
-1.29778e-12
0.0241343
0.00164007
-1.32744e-12
0.0239906
0.0017312
-1.31652e-12
0.0238438
0.00181614
-1.26596e-12
0.0236951
0.00189452
-1.17849e-12
0.0235447
0.0019669
-1.05805e-12
0.0233933
0.00203266
-9.02899e-13
0.0232428
0.0020925
-7.25811e-13
0.023092
0.00214578
-5.20581e-13
0.022944
0.0021928
-3.07462e-13
0.0227974
0.00223326
-6.57537e-14
0.0226552
0.00226667
1.39449e-13
0.0225169
0.00229295
3.70392e-13
0.022385
0.00231073
5.90868e-13
0.0222605
0.00231952
8.01997e-13
0.0221455
0.00231711
9.93863e-13
0.0220446
0.00230063
1.17073e-12
0.0219605
0.00226615
1.27531e-12
0.0218866
0.00222541
1.49384e-12
0.0218339
0.00216315
1.60529e-12
0.0217811
0.00210191
1.98313e-12
0.0217459
0.00201454
2.0486e-12
0.0217558
0.00189023
2.199e-12
0.0218328
0.00170875
2.47568e-12
0.0219722
0.00148264
2.95903e-12
0.022154
0.00121927
2.94138e-12
0.0223808
0.000919716
2.79608e-12
0.0226324
0.000605522
2.12272e-12
0.0228866
0.000286334
1.27463e-12
-5.92627e-06
-2.47922e-13
0.0294128
0.0153382
-5.47452e-11
0.0304428
0.0131038
-3.05053e-11
0.0312593
0.0112944
-2.47002e-11
0.03106
0.0105684
-1.26118e-11
0.0307722
0.00984777
4.32165e-12
0.0305457
0.00914819
4.55942e-12
0.0302876
0.00846418
2.87503e-12
0.0300425
0.00774312
1.41151e-13
0.0298273
0.00698851
-3.33744e-12
0.0296406
0.00622434
-5.67761e-12
0.0294741
0.00546731
-6.90412e-12
0.0293255
0.00473405
-6.99981e-12
0.0291893
0.00403227
-6.35754e-12
0.0290598
0.00336766
-5.18285e-12
0.0289277
0.00274027
-3.83284e-12
0.0287915
0.002147
-2.51647e-12
0.0286481
0.0015852
-1.30067e-12
0.0284986
0.00105131
-5.76699e-13
0.028341
0.000543847
-5.46314e-14
0.0281739
6.18382e-05
3.6051e-13
0.0279971
-0.000401265
6.78938e-13
0.0278091
-0.00084009
8.4585e-13
0.0276105
-0.00125463
9.71209e-13
0.0274012
-0.0016456
1.086e-12
0.0271834
-0.00201067
1.17726e-12
0.0269588
-0.00235121
1.23625e-12
0.0267292
-0.0026653
1.26471e-12
0.0264982
-0.00295392
1.25327e-12
0.0262665
-0.00321645
1.23437e-12
0.0260362
-0.00345277
1.14376e-12
0.0258107
-0.00366424
1.09628e-12
0.0255872
-0.00384949
9.602e-13
0.025372
-0.00401112
8.28885e-13
0.0251611
-0.0041468
6.54409e-13
0.0249596
-0.00425912
4.96367e-13
0.0247681
-0.0043462
3.35075e-13
0.0245902
-0.00441003
1.71722e-13
0.0244294
-0.00444921
-4.64942e-14
0.0242896
-0.00446316
-3.38537e-13
0.0241746
-0.0044512
-7.72311e-13
0.024092
-0.00440908
-1.26416e-12
0.0240372
-0.00433566
-1.39109e-12
0.0239832
-0.00423116
-1.82794e-12
0.023965
-0.0041238
-2.12782e-12
0.0239516
-0.00398364
-3.33195e-12
0.0239791
-0.00381837
-3.5328e-12
0.0240959
-0.00363344
-3.99627e-12
0.0242862
-0.00339161
-4.88026e-12
0.0244922
-0.00308422
-5.27094e-12
0.0247046
-0.00274972
-5.43105e-12
0.0249184
-0.00240798
-5.03368e-12
0.0251077
-0.00205776
-4.26052e-12
0.0252608
-0.00171687
-3.268e-12
0.0253696
-0.00139854
-2.21399e-12
0.0254339
-0.00110761
-1.22157e-12
0.025478
-0.000846083
-5.4955e-13
0.0255053
-0.000599645
-5.31613e-13
0.0255042
-0.00035856
-4.24811e-13
0.0254757
-0.000137544
-2.79445e-13
0.0254374
6.09965e-05
4.04686e-15
0.0253882
0.000247348
-3.79592e-14
0.0253283
0.000425818
-1.37941e-13
0.0252586
0.000595149
-2.49751e-13
0.0251797
0.000756836
-3.57346e-13
0.0250923
0.000910632
-4.59713e-13
0.0249958
0.00105656
-5.64456e-13
0.0248919
0.00119466
-7.23403e-13
0.0247796
0.00132506
-9.28127e-13
0.0246611
0.0014477
-1.10876e-12
0.0245359
0.00156308
-1.24807e-12
0.0244063
0.00167097
-1.34435e-12
0.024272
0.00177213
-1.39216e-12
0.0241351
0.001866
-1.39656e-12
0.023995
0.00195349
-1.3596e-12
0.0238533
0.0020337
-1.28393e-12
0.0237099
0.00210772
-1.17361e-12
0.0235656
0.00217437
-1.02627e-12
0.0234214
0.00223472
-8.49138e-13
0.0232776
0.00228754
-6.32687e-13
0.0231359
0.00233355
-3.34351e-13
0.0229971
0.00237148
-1.59255e-13
0.0228627
0.00240158
4.5919e-15
0.022734
0.00242213
1.96821e-13
0.0226138
0.00243262
3.91926e-13
0.0225033
0.00243045
5.79971e-13
0.0224091
0.00241225
7.84845e-13
0.0223331
0.0023748
9.85327e-13
0.022269
0.00232984
1.20544e-12
0.0222178
0.00227037
1.52477e-12
0.0221673
0.002209
1.58178e-12
0.0221537
0.00210906
1.70262e-12
0.0221961
0.00195861
1.9193e-12
0.0223121
0.00175376
2.2559e-12
0.0224728
0.0015127
2.87058e-12
0.0226823
0.0012325
2.76038e-12
0.0229323
0.000923604
2.26345e-12
0.023199
0.000605939
1.48647e-12
0.0234571
0.000302661
3.64873e-13
0.0236802
2.19084e-05
-7.98303e-13
-0.000209713
-1.78685e-12
0.0305884
0.0137202
-3.56723e-11
0.0316522
0.0119933
-2.76827e-11
0.0316202
0.0113297
-9.32663e-12
0.0315446
0.0106681
2.86531e-12
0.0314025
0.0100281
4.18095e-12
0.0312094
0.0093727
1.1579e-12
0.0310245
0.00866202
-2.8917e-12
0.030861
0.00789951
-6.65143e-12
0.030716
0.00711649
-8.27508e-12
0.0305837
0.00633572
-8.68098e-12
0.0304589
0.00557747
-8.33848e-12
0.0303324
0.00485106
-7.51163e-12
0.0301971
0.00416188
-6.25462e-12
0.030053
0.00350893
-4.89538e-12
0.0299025
0.00289165
-3.54826e-12
0.0297459
0.00230705
-2.28275e-12
0.0295868
0.00175288
-1.17122e-12
0.0294213
0.00122673
-5.4946e-13
0.0292517
0.000726798
-4.47164e-14
0.0290717
0.000252761
3.51358e-13
0.02888
-0.00019887
6.71318e-13
0.0286782
-0.000629716
8.97789e-13
0.0284673
-0.00103585
1.03833e-12
0.0282488
-0.00141821
1.14834e-12
0.0280229
-0.00177673
1.23223e-12
0.0277933
-0.00211147
1.30085e-12
0.0275575
-0.0024216
1.33886e-12
0.0273201
-0.00270702
1.36546e-12
0.0270773
-0.00296742
1.31664e-12
0.0268343
-0.00320202
1.27651e-12
0.0265881
-0.00341284
1.13207e-12
0.026342
-0.00359792
1.03239e-12
0.0260965
-0.00376083
9.1126e-13
0.0258531
-0.003899
7.98654e-13
0.0256144
-0.00401633
6.91777e-13
0.0253817
-0.00410981
5.81135e-13
0.0251587
-0.0041833
4.90243e-13
0.0249447
-0.00423281
3.65738e-13
0.0247454
-0.00426207
2.25615e-13
0.0245616
-0.00426663
1.31904e-14
0.0244005
-0.0042491
-2.98558e-13
0.0242671
-0.00420464
-9.10508e-13
0.0241656
-0.00413183
-9.54033e-13
0.024069
-0.00402898
-1.3254e-12
0.024007
-0.0039244
-1.85861e-12
0.0239802
-0.00379816
-2.94735e-12
0.0239662
-0.00362633
-3.09026e-12
0.0240022
-0.00343493
-3.4718e-12
0.0241293
-0.00321946
-4.13079e-12
0.0243102
-0.00294522
-5.19126e-12
0.0245071
-0.00261653
-5.35489e-12
0.0247106
-0.00227159
-5.39517e-12
0.0249039
-0.00191515
-4.87879e-12
0.0250673
-0.0015611
-3.98525e-12
0.0251885
-0.00122372
-2.93255e-12
0.0252644
-0.000912714
-1.89425e-12
0.0253097
-0.000631239
-7.98435e-13
0.0253428
-0.000377811
-7.25166e-13
0.0253477
-0.000128577
-5.77948e-13
0.0253221
0.000100847
-3.55171e-13
0.0252794
0.000305336
5.05102e-15
0.0252294
0.000489864
-6.51944e-14
0.0251672
0.000668822
-2.03638e-13
0.0250968
0.000836605
-3.36678e-13
0.0250186
0.000995999
-4.53637e-13
0.0249328
0.00114798
-5.66547e-13
0.0248387
0.00129252
-7.19534e-13
0.0247367
0.00142901
-9.4551e-13
0.0246275
0.00155734
-1.14239e-12
0.0245121
0.00167743
-1.29591e-12
0.0243919
0.00178961
-1.40399e-12
0.0242678
0.00189404
-1.46215e-12
0.0241406
0.00199095
-1.47471e-12
0.0240117
0.00208046
-1.44734e-12
0.0238813
0.00216266
-1.38103e-12
0.0237507
0.00223749
-1.27824e-12
0.0236201
0.00230497
-1.13536e-12
0.0234906
0.00236476
-9.42449e-13
0.0233623
0.00241669
-6.17882e-13
0.0232367
0.00246011
-3.99892e-13
0.0231153
0.0024944
-2.69593e-13
0.0229994
0.00251857
-1.05135e-13
0.0228922
0.00253082
8.58009e-14
0.0227959
0.00252935
2.92262e-13
0.0227172
0.00250846
4.53295e-13
0.0226562
0.00247058
7.30182e-13
0.0226091
0.00241975
9.12448e-13
0.0225567
0.00237433
1.24358e-12
0.0225209
0.00229712
1.32022e-12
0.022541
0.00217782
1.47211e-12
0.0226304
0.00200239
1.73979e-12
0.0227784
0.00178274
2.22292e-12
0.0229711
0.00152752
2.24101e-12
0.0232099
0.0012315
2.12205e-12
0.0234797
0.000916785
1.56867e-12
0.0237536
0.000603693
6.52001e-13
0.024009
0.000310997
-4.67329e-13
0.0242233
5.59678e-05
-1.68307e-12
0.0243816
-0.000160564
-2.17095e-12
-0.000331779
-3.82227e-12
0.0305228
0.0114563
-2.53086e-11
0.0310871
0.0114436
-1.27047e-11
0.031152
0.0113301
5.87638e-12
0.0313042
0.0105715
5.50144e-12
0.03142
0.00994321
1.51403e-12
0.0314417
0.00935373
-6.5296e-12
0.0314436
0.00863982
-1.2228e-11
0.0314246
0.00788638
-1.33453e-11
0.0313843
0.00712346
-1.24973e-11
0.0313215
0.00637087
-1.08729e-11
0.0312422
0.00564017
-9.0723e-12
0.0311458
0.00494051
-7.48086e-12
0.0310323
0.00427423
-5.97271e-12
0.0309002
0.0036411
-4.55559e-12
0.0307546
0.0030388
-3.22355e-12
0.0305996
0.00246675
-1.95789e-12
0.0304372
0.00192302
-9.96042e-13
0.0302686
0.00140676
-3.87576e-13
0.0300931
0.000916275
9.79493e-14
0.0299095
0.000451399
4.76006e-13
0.0297123
1.37059e-05
6.972e-13
0.0295091
-0.000410243
9.61445e-13
0.0292962
-0.000805777
1.08707e-12
0.0290742
-0.00117852
1.21232e-12
0.0288427
-0.00152798
1.30647e-12
0.0286021
-0.00185401
1.38706e-12
0.0283512
-0.00215593
1.43888e-12
0.0280932
-0.00243394
1.46543e-12
0.0278267
-0.00268811
1.46401e-12
0.0275568
-0.00291848
1.41567e-12
0.0272821
-0.003126
1.33692e-12
0.0270059
-0.00330992
1.23e-12
0.0267285
-0.00347217
1.12342e-12
0.0264518
-0.00361213
1.01758e-12
0.0261771
-0.0037313
9.29713e-13
0.0259064
-0.00382988
8.41e-13
0.0256406
-0.00390838
7.59598e-13
0.0253827
-0.00396697
6.67053e-13
0.0251343
-0.0040061
5.6567e-13
0.0248989
-0.00402498
4.33327e-13
0.0246789
-0.00402384
2.68142e-13
0.0244803
-0.00400124
3.45091e-14
0.0243082
-0.00395694
-4.66675e-13
0.024167
-0.00388526
-9.31203e-13
0.0240309
-0.00378466
-1.00031e-12
0.0239139
-0.0036798
-1.52987e-12
0.0238445
-0.0035556
-2.22173e-12
0.0238072
-0.00340191
-3.11995e-12
0.0237892
-0.00320501
-3.27635e-12
0.0238441
-0.00300451
-3.56728e-12
0.023982
-0.00276168
-4.30695e-12
0.0241547
-0.00245783
-5.37145e-12
0.024341
-0.00211364
-5.52807e-12
0.0245355
-0.00176316
-5.22332e-12
0.0247063
-0.00140061
-4.55393e-12
0.024842
-0.00104732
-3.63219e-12
0.0249373
-0.000719741
-2.4961e-12
0.0249905
-0.000420924
-1.64475e-12
0.0250325
-0.000156842
-7.37269e-13
0.0250528
9.3854e-05
-6.73428e-13
0.0250402
0.000331754
-5.26156e-13
0.024999
0.000545258
-2.66114e-13
0.02495
0.000730293
-2.73603e-13
0.024893
0.000905535
-3.37785e-13
0.0248267
0.0010717
-4.5568e-13
0.0247537
0.00122868
-5.85521e-13
0.0246734
0.00137808
-7.74066e-13
0.0245869
0.00151959
-1.00576e-12
0.0244942
0.00165283
-1.20278e-12
0.0243956
0.00177769
-1.36097e-12
0.0242919
0.00189405
-1.47096e-12
0.0241836
0.00200206
-1.53345e-12
0.0240721
0.00210175
-1.54899e-12
0.0239579
0.00219341
-1.5283e-12
0.0238423
0.00227695
-1.46666e-12
0.023726
0.00235251
-1.36596e-12
0.0236102
0.00241967
-1.21045e-12
0.0234955
0.00247834
-9.06124e-13
0.0233837
0.00252756
-6.48377e-13
0.0232757
0.00256695
-5.05806e-13
0.0231739
0.00259472
-4.21682e-13
0.0230804
0.00260985
-2.35139e-13
0.0229996
0.00260833
-4.24189e-14
0.0229365
0.00258676
1.17294e-13
0.0228934
0.00254622
3.71668e-13
0.0228531
0.00250134
6.58027e-13
0.0228064
0.00245737
7.06012e-13
0.0228061
0.00236484
8.31977e-13
0.0228686
0.0022194
1.06423e-12
0.0230018
0.00202186
1.43479e-12
0.0231806
0.00179155
1.68428e-12
0.0234061
0.00151704
1.7199e-12
0.0236774
0.00121289
1.36995e-12
0.0239632
0.000900243
6.88961e-13
0.0242413
0.000596513
-2.39043e-13
0.0244861
0.000322415
-1.32214e-12
0.0246847
8.65796e-05
-1.97794e-12
0.0248239
-0.000103198
-2.89273e-12
0.0249114
-0.000259125
-4.55649e-12
-0.000382797
-5.04479e-12
0.0272131
0.00942482
-7.45273e-11
0.0282703
0.0104294
8.44936e-12
0.0293318
0.0103294
9.67846e-12
0.0299554
0.0100008
3.57487e-12
0.030401
0.0095272
-5.34225e-12
0.0307805
0.00897458
-1.67067e-11
0.0310719
0.00833156
-1.93633e-11
0.031288
0.00765009
-1.78223e-11
0.0314479
0.00695699
-1.44472e-11
0.0315462
0.00627064
-1.14749e-11
0.031587
0.00560342
-8.56947e-12
0.0315779
0.00495937
-6.55668e-12
0.0315289
0.00433592
-4.9785e-12
0.0314467
0.00373656
-3.62155e-12
0.0313369
0.00316019
-2.38833e-12
0.0312085
0.00260834
-1.25618e-12
0.0310674
0.00208128
-6.09641e-13
0.0309164
0.00157957
-7.07424e-14
0.0307544
0.00110304
3.93855e-13
0.030581
0.000651496
7.75657e-13
0.0303974
0.000225358
1.07783e-12
0.0301954
-0.000180311
1.21889e-12
0.0299809
-0.000563602
1.33266e-12
0.0297522
-0.000923554
1.40614e-12
0.0295096
-0.00126093
1.50897e-12
0.0292536
-0.00157592
1.571e-12
0.0289849
-0.00186782
1.61743e-12
0.0287066
-0.00213712
1.63299e-12
0.0284181
-0.00238331
1.62387e-12
0.0281232
-0.0026073
1.57958e-12
0.0278221
-0.00280903
1.51626e-12
0.0275165
-0.00298961
1.42001e-12
0.0272099
-0.00314881
1.33059e-12
0.026901
-0.00328861
1.23068e-12
0.0265939
-0.00340751
1.15341e-12
0.0262882
-0.00350902
1.08138e-12
0.025985
-0.00359014
1.02014e-12
0.0256866
-0.00365486
9.56925e-13
0.025394
-0.00370037
8.86198e-13
0.0251094
-0.00372929
7.88537e-13
0.024838
-0.0037398
6.64638e-13
0.0245807
-0.00373327
4.94299e-13
0.024344
-0.00370722
2.75317e-13
0.0241338
-0.00366335
1.56911e-14
0.0239564
-0.00359472
-5.0207e-13
0.0237931
-0.00350338
-6.64606e-13
0.0236524
-0.00340239
-1.05003e-12
0.023548
-0.00328948
-1.76999e-12
0.0234957
-0.00314683
-2.184e-12
0.0234473
-0.00295805
-3.13965e-12
0.0234341
-0.00275191
-3.31833e-12
0.0235042
-0.00253434
-3.73165e-12
0.0236477
-0.00226811
-4.60917e-12
0.0238118
-0.00194115
-5.04308e-12
0.0239868
-0.00159061
-5.26633e-12
0.0241607
-0.00123425
-4.89619e-12
0.0243115
-0.000876259
-4.10982e-12
0.0244241
-0.000535597
-3.16949e-12
0.0244981
-0.000223217
-2.21749e-12
0.0245452
5.64915e-05
-1.40943e-12
0.0245816
0.000304402
-1.20396e-12
0.0245887
0.000548799
-9.26186e-13
0.0245616
0.000770024
-5.17663e-13
0.0245192
0.000961364
-3.92947e-13
0.0244693
0.00113269
-5.02748e-13
0.0244096
0.00129749
-6.34204e-13
0.024344
0.00145058
-8.68295e-13
0.0242738
0.0015951
-1.06582e-12
0.0241986
0.00173169
-1.2507e-12
0.0241182
0.00186032
-1.40991e-12
0.0240326
0.0019804
-1.52177e-12
0.0239431
0.00209163
-1.58282e-12
0.0238504
0.00219397
-1.59563e-12
0.0237557
0.00228736
-1.57352e-12
0.0236601
0.00237191
-1.50875e-12
0.0235647
0.00244733
-1.38886e-12
0.0234707
0.00251335
-1.10268e-12
0.0233793
0.0025693
-8.75245e-13
0.0232923
0.00261411
-7.42105e-13
0.0232116
0.00264668
-6.83194e-13
0.0231393
0.00266513
-5.62464e-13
0.0230818
0.00266492
-4.0677e-13
0.0230415
0.00264208
-2.42589e-13
0.02302
0.00260262
-3.26645e-14
0.0229802
0.00257662
2.36467e-13
0.0229604
0.00251001
2.967e-13
0.0230081
0.00239627
4.22151e-13
0.023126
0.00222785
6.32898e-13
0.0232959
0.00202191
1.00833e-12
0.0235078
0.00177418
9.45844e-13
0.0237717
0.00148749
8.05967e-13
0.0240635
0.00118189
3.98538e-13
0.0243598
0.000874216
-2.74148e-13
0.0246349
0.00058682
-1.15428e-12
0.0248674
0.000333625
-2.0371e-12
0.0250463
0.000121542
-2.41271e-12
0.0251676
-4.83761e-05
-4.11374e-12
0.0252388
-0.000180656
-4.80165e-12
0.0252729
-0.000296552
-4.95661e-12
-0.000387393
-4.89718e-12
0.02289
0.0073099
-8.83718e-11
0.0248692
0.00851129
1.50064e-11
0.0264436
0.00881015
1.12811e-11
0.0277246
0.00873465
-1.66973e-12
0.0286777
0.00854799
-1.9349e-11
0.0294615
0.00815719
-2.57506e-11
0.0300731
0.00768744
-2.43999e-11
0.0305214
0.00716388
-1.97538e-11
0.0308304
0.00660551
-1.45769e-11
0.0310387
0.00603136
-1.00232e-11
0.0311829
0.00545067
-7.06944e-12
0.0312733
0.00487531
-4.75749e-12
0.0313151
0.00430787
-3.01755e-12
0.0313195
0.00375343
-1.65669e-12
0.0312904
0.00321424
-8.63714e-13
0.0312362
0.00269379
-2.87799e-13
0.031157
0.00219473
1.65546e-13
0.0310579
0.00171756
5.60539e-13
0.0309378
0.00126355
8.72065e-13
0.0307963
0.000832175
1.13883e-12
0.0306373
0.000424169
1.23157e-12
0.0304556
3.93526e-05
1.44071e-12
0.030256
-0.000325184
1.47672e-12
0.0300366
-0.000667427
1.62149e-12
0.0297997
-0.000988064
1.68769e-12
0.0295452
-0.00128756
1.73164e-12
0.0292754
-0.00156562
1.77089e-12
0.028992
-0.00182223
1.77879e-12
0.0286969
-0.00205812
1.771e-12
0.0283917
-0.00227249
1.7324e-12
0.0280792
-0.00246747
1.67803e-12
0.0277593
-0.00264149
1.60213e-12
0.0274365
-0.00279751
1.52875e-12
0.0271084
-0.00293371
1.45292e-12
0.02678
-0.00305283
1.38534e-12
0.0264494
-0.00315371
1.33579e-12
0.0261188
-0.00323812
1.28297e-12
0.0257915
-0.00330567
1.24197e-12
0.0254668
-0.00335771
1.18357e-12
0.0251505
-0.00339345
1.11698e-12
0.0248439
-0.00341471
1.01974e-12
0.0245499
-0.00341976
8.9034e-13
0.0242729
-0.00341015
7.24724e-13
0.0240135
-0.0033838
5.05247e-13
0.0237792
-0.00334102
2.65062e-13
0.0235722
-0.00327805
-1.40017e-13
0.0233812
-0.00319401
-2.92446e-13
0.0232083
-0.00310004
-6.52258e-13
0.0230691
-0.00299667
-1.20441e-12
0.0229847
-0.00286575
-1.67848e-12
0.0229299
-0.00269854
-2.45819e-12
0.022888
-0.00249638
-2.59037e-12
0.0229058
-0.00229173
-2.90964e-12
0.0230073
-0.00205529
-3.46968e-12
0.0231608
-0.001763
-4.4924e-12
0.0233266
-0.00142191
-4.81979e-12
0.0235023
-0.00107109
-4.89797e-12
0.0236644
-0.000713274
-4.49662e-12
0.0237969
-0.000363902
-3.74736e-12
0.0238925
-4.0143e-05
-2.99775e-12
0.0239483
0.00025119
-1.89375e-12
0.0239999
0.000504292
-1.4681e-12
0.0240291
0.000747603
-1.38242e-12
0.0240222
0.000975799
-1.21047e-12
0.0239883
0.00117557
-8.59468e-13
0.0239494
0.00134476
-8.9457e-13
0.0239034
0.00150394
-9.42919e-13
0.0238517
0.00165241
-1.09805e-12
0.0237958
0.0017912
-1.29342e-12
0.0237356
0.00192217
-1.46678e-12
0.0236711
0.00204471
-1.58756e-12
0.0236029
0.00215843
-1.64418e-12
0.0235314
0.00226304
-1.63765e-12
0.023458
0.0023579
-1.59108e-12
0.0233841
0.00244292
-1.47663e-12
0.0233107
0.00251723
-1.20913e-12
0.0232408
0.0025803
-1.06602e-12
0.0231749
0.00263113
-9.57758e-13
0.0231176
0.00266753
-8.8226e-13
0.0230698
0.00268917
-8.41599e-13
0.0230387
0.00268947
-7.30286e-13
0.0230316
0.00266326
-6.97215e-13
0.0230208
0.00264063
-3.85408e-13
0.023002
0.00261104
-3.43638e-13
0.0230373
0.00252845
-2.35292e-13
0.0231416
0.00238784
-5.2767e-14
0.0232984
0.00221361
2.76741e-13
0.0234981
0.0019962
2.29421e-13
0.023749
0.00173325
1.55016e-13
0.0240398
0.00144206
-1.65407e-13
0.0243471
0.00113822
-6.68031e-13
0.0246468
0.000844121
-1.30477e-12
0.0249124
0.000576213
-2.00454e-12
0.0251292
0.00034659
-2.22713e-12
0.0252888
0.000158217
-2.83021e-12
0.0253965
6.98576e-06
-4.76075e-12
0.0254519
-0.0001066
-4.8495e-12
0.025477
-0.000203934
-4.74427e-12
0.0254753
-0.000294561
-4.638e-12
-0.000374821
-4.42772e-12
0.0192156
0.00563311
-9.62901e-11
0.0213385
0.00643395
1.60678e-11
0.0232589
0.00689486
5.02864e-12
0.024793
0.00714568
-1.14465e-11
0.0260959
0.00716585
-2.68567e-11
0.0271872
0.00700879
-2.95567e-11
0.0281029
0.00674747
-2.45487e-11
0.0288544
0.00641212
-1.75281e-11
0.0294549
0.00602395
-1.12103e-11
0.0299198
0.0055943
-6.48633e-12
0.0302631
0.0051374
-2.99112e-12
0.0305118
0.00465964
-1.28812e-12
0.0306826
0.00417177
-2.29158e-13
0.0307867
0.00368052
3.00325e-13
0.0308357
0.00319399
7.38771e-13
0.0308414
0.00271821
9.71976e-13
0.0308123
0.0022567
1.10818e-12
0.0307548
0.00181209
1.23637e-12
0.0306735
0.00138656
1.31149e-12
0.0305675
0.00098075
1.34578e-12
0.0304394
0.000595785
1.55956e-12
0.0302858
0.000232357
1.45667e-12
0.030108
-0.000110338
1.66016e-12
0.0299068
-0.000431568
1.66764e-12
0.0296834
-0.000731918
1.75287e-12
0.0294428
-0.00101207
1.81823e-12
0.0291825
-0.00127243
1.87224e-12
0.0289089
-0.00151308
1.89832e-12
0.0286186
-0.00173497
1.90701e-12
0.0283175
-0.00193763
1.89022e-12
0.028004
-0.00212267
1.85203e-12
0.0276826
-0.00228926
1.79991e-12
0.0273539
-0.0024392
1.74365e-12
0.0270195
-0.00257167
1.68771e-12
0.0266821
-0.00268838
1.63594e-12
0.0263419
-0.00278884
1.59427e-12
0.0260016
-0.00287412
1.55777e-12
0.0256631
-0.00294455
1.51446e-12
0.0253277
-0.00300027
1.47717e-12
0.0249992
-0.00304233
1.41747e-12
0.0246782
-0.00307057
1.34461e-12
0.0243674
-0.00308565
1.2428e-12
0.0240688
-0.00308758
1.11256e-12
0.0237845
-0.00307603
9.40817e-13
0.0235179
-0.00305096
7.29932e-13
0.0232732
-0.00301104
4.76987e-13
0.0230547
-0.0029546
1.34381e-13
0.0228542
-0.00287932
3.52384e-14
0.0226704
-0.00279488
-2.53274e-13
0.0225182
-0.00270185
-7.37322e-13
0.02241
-0.00258248
-1.32669e-12
0.0223457
-0.00243266
-1.67348e-12
0.0222915
-0.00224715
-2.45973e-12
0.0222682
-0.00204423
-2.57981e-12
0.0223181
-0.00183128
-2.87208e-12
0.02245
-0.00157383
-3.34031e-12
0.0226057
-0.00125803
-4.20916e-12
0.0227754
-0.000911069
-4.40616e-12
0.022942
-0.000558338
-4.4466e-12
0.0230885
-0.000206207
-4.10391e-12
0.0231995
0.000125804
-3.32402e-12
0.0232692
0.000427265
-2.67652e-12
0.0233245
0.000690197
-1.92507e-12
0.0233687
0.00093084
-1.84686e-12
0.0233849
0.00116098
-1.68742e-12
0.0233667
0.00136633
-1.45741e-12
0.0233384
0.0015376
-1.09329e-12
0.0233057
0.0016895
-1.21553e-12
0.0232669
0.00183302
-1.38449e-12
0.0232264
0.00196446
-1.53707e-12
0.0231845
0.00208684
-1.62857e-12
0.023142
0.00220064
-1.66218e-12
0.0230975
0.00230561
-1.57828e-12
0.0230523
0.00240036
-1.44961e-12
0.023007
0.00248434
-1.31167e-12
0.0229636
0.00255572
-1.22525e-12
0.0229253
0.00261363
-1.15916e-12
0.0228942
0.00265588
-1.10448e-12
0.0228738
0.00268076
-1.01152e-12
0.0228703
0.00268454
-1.05252e-12
0.0228808
0.00266736
-1.00284e-12
0.022872
0.00265949
-9.55944e-13
0.0228952
0.00260521
-8.56399e-13
0.0229964
0.0024946
-7.2811e-13
0.0231461
0.00235743
-5.27837e-13
0.0233322
0.00217298
-6.04975e-13
0.0235714
0.00193988
-6.21139e-13
0.0238583
0.00167008
-8.69123e-13
0.0241722
0.00137864
-1.23315e-12
0.0244905
0.00108569
-1.72762e-12
0.0247854
0.000809559
-2.2581e-12
0.0250404
0.000565785
-2.22811e-12
0.0252371
0.00036091
-2.58995e-12
0.0253814
0.00019582
-3.90125e-12
0.0254719
6.46333e-05
-4.45382e-12
0.025518
-3.69543e-05
-4.09494e-12
0.0255433
-0.0001261
-4.20598e-12
0.0255525
-0.000208971
-4.19577e-12
0.0255409
-0.000278889
-4.15429e-12
-0.000349621
-4.10918e-12
0.0170704
0.00452636
-1.02992e-10
0.0189153
0.00460731
1.82488e-11
0.020622
0.0051649
6.40492e-13
0.0221399
0.00555356
-2.01119e-11
0.0234683
0.00574601
-2.85468e-11
0.0246257
0.00577516
-2.6731e-11
0.0256324
0.00569383
-1.95681e-11
0.0265051
0.00552549
-1.17636e-11
0.0272544
0.00529073
-5.36256e-12
0.0278931
0.00499903
-1.91579e-12
0.0284342
0.00466221
1.29342e-13
0.0288742
0.00429214
1.46836e-12
0.0292255
0.00389518
2.05545e-12
0.0294952
0.00348526
2.04166e-12
0.0296975
0.00306625
1.95531e-12
0.0298425
0.00264896
1.90361e-12
0.0299326
0.00223682
1.83513e-12
0.0299765
0.00183498
1.65448e-12
0.0299739
0.00144662
1.50775e-12
0.0299303
0.00107379
1.54635e-12
0.0298501
0.00071863
1.59859e-12
0.0297363
0.000381787
1.34056e-12
0.029594
6.50367e-05
1.67399e-12
0.0294246
-0.000231402
1.52907e-12
0.0292294
-0.000507767
1.68389e-12
0.0290125
-0.000765412
1.7713e-12
0.0287732
-0.00100452
1.84675e-12
0.0285173
-0.00122634
1.89856e-12
0.0282457
-0.00143093
1.9369e-12
0.0279621
-0.00161926
1.95176e-12
0.0276685
-0.00179117
1.94329e-12
0.0273654
-0.00194804
1.92198e-12
0.0270544
-0.00208864
1.8916e-12
0.0267358
-0.00221543
1.86224e-12
0.0264124
-0.00232645
1.83409e-12
0.0260827
-0.00242464
1.80481e-12
0.0257503
-0.0025075
1.79454e-12
0.0254148
-0.00257836
1.74988e-12
0.0250803
-0.00263476
1.73713e-12
0.0247494
-0.00268064
1.69503e-12
0.0244236
-0.00271371
1.64674e-12
0.0241065
-0.00273692
1.58316e-12
0.0237988
-0.00274839
1.47813e-12
0.0235047
-0.00274974
1.34486e-12
0.0232259
-0.00273949
1.1663e-12
0.0229644
-0.00271765
9.5914e-13
0.0227248
-0.00268349
7.24072e-13
0.0225067
-0.00263373
4.13071e-13
0.0223045
-0.00256828
3.20723e-13
0.0221154
-0.00249318
-5.22524e-14
0.0219529
-0.00240872
-4.81368e-13
0.0218243
-0.00230044
-9.13799e-13
0.0217342
-0.00216278
-1.36136e-12
0.021671
-0.00199726
-2.09341e-12
0.0216165
-0.00179792
-2.19664e-12
0.0216184
-0.00159839
-2.45652e-12
0.0216974
-0.00136525
-2.91892e-12
0.0218293
-0.00108136
-3.75231e-12
0.0219825
-0.000748583
-3.90892e-12
0.0221423
-0.000407295
-3.92992e-12
0.0222977
-5.79154e-05
-3.68907e-12
0.0224187
0.000277382
-3.57747e-12
0.0225058
0.000584246
-3.05452e-12
0.022568
0.000854597
-2.58051e-12
0.0226269
0.00109344
-1.95926e-12
0.0226698
0.00131558
-1.89944e-12
0.0226777
0.00152319
-1.79888e-12
0.0226627
0.00170068
-1.65128e-12
0.0226459
0.00184694
-1.61337e-12
0.0226261
0.00198152
-1.612e-12
0.022604
0.00210556
-1.63698e-12
0.0225808
0.00221845
-1.54431e-12
0.0225581
0.00232232
-1.42071e-12
0.0225356
0.00241511
-1.38344e-12
0.022517
0.0024953
-1.35233e-12
0.0225019
0.00256106
-1.33703e-12
0.0224949
0.00260971
-1.31989e-12
0.0225002
0.00263838
-1.32127e-12
0.0225112
0.00265261
-1.25062e-12
0.0225354
0.00264726
-1.2498e-12
0.0225618
0.00262295
-1.39157e-12
0.0226567
0.00254964
-1.38854e-12
0.0227957
0.00244717
-1.35879e-12
0.0229637
0.0023013
-1.39684e-12
0.0231895
0.00210121
-1.34969e-12
0.023468
0.00185829
-1.58561e-12
0.0237859
0.00158758
-1.87889e-12
0.0241158
0.00130243
-2.29421e-12
0.0244389
0.00102543
-2.66957e-12
0.0247285
0.000771947
-2.49795e-12
0.0249685
0.000554039
-2.70688e-12
0.0251549
0.000374014
-2.95313e-12
0.0252849
0.000230397
-4.08968e-12
0.0253698
0.00011685
-4.16563e-12
0.0254159
2.64469e-05
-4.13938e-12
0.0254453
-5.64225e-05
-3.95662e-12
0.0254602
-0.00013181
-3.84553e-12
0.0254571
-0.000198317
-3.82134e-12
0.0254449
-0.000258564
-3.74218e-12
-0.000319615
-3.73375e-12
0.0174795
0.00384138
-1.047e-10
0.0182581
0.00385761
1.29292e-11
0.0192949
0.0040975
-1.02359e-12
0.0203607
0.00441401
-1.10721e-11
0.0214028
0.00462624
-1.39572e-11
0.0224012
0.00472571
-1.71912e-11
0.0233461
0.00473403
-1.15611e-11
0.0242177
0.00467197
-4.82443e-12
0.0250166
0.00454245
-1.22415e-12
0.0257358
0.00435623
1.33774e-12
0.0263807
0.00411648
2.54733e-12
0.0269461
0.00383647
3.20897e-12
0.0274322
0.00352241
3.3387e-12
0.0278416
0.00318626
3.26974e-12
0.028172
0.00283532
3.00075e-12
0.0284336
0.00247753
2.65668e-12
0.0286211
0.00212013
2.34257e-12
0.0287459
0.00176684
2.00667e-12
0.0288097
0.00142357
1.74785e-12
0.0288205
0.00109175
1.47734e-12
0.02879
0.000774828
1.38414e-12
0.0287182
0.000473472
1.35804e-12
0.0286183
0.000188558
1.42017e-12
0.0284894
-7.91227e-05
1.28008e-12
0.0283341
-0.000327929
1.34515e-12
0.0281552
-0.00055944
1.51601e-12
0.0279519
-0.00077487
1.67587e-12
0.0277286
-0.000974344
1.77911e-12
0.0274873
-0.00115936
1.85312e-12
0.0272288
-0.00132945
1.90979e-12
0.0269588
-0.00148574
1.94967e-12
0.0266737
-0.00162824
1.97362e-12
0.0263789
-0.00175711
1.98694e-12
0.0260749
-0.00187335
1.99089e-12
0.0257644
-0.00197615
2.00674e-12
0.0254446
-0.00206771
1.98478e-12
0.0251181
-0.0021462
2.0288e-12
0.0247905
-0.00221464
1.99266e-12
0.0244672
-0.00227247
1.93924e-12
0.0241551
-0.0023207
1.91396e-12
0.0238539
-0.00236036
1.81335e-12
0.0235637
-0.00238972
1.7604e-12
0.023285
-0.00241117
1.71069e-12
0.0230187
-0.00242163
1.61272e-12
0.0227618
-0.00242436
1.44587e-12
0.0225181
-0.00241505
1.2839e-12
0.0222807
-0.00239671
1.08764e-12
0.0220555
-0.00236459
8.79401e-13
0.0218406
-0.00232058
6.60406e-13
0.0216319
-0.00226012
5.48442e-13
0.0214303
-0.00219264
1.93533e-13
0.0212493
-0.00211549
-2.97429e-13
0.0210968
-0.00201532
-6.20624e-13
0.0209745
-0.00188975
-1.1455e-12
0.0208984
-0.00174149
-1.4386e-12
0.0208256
-0.00155597
-2.12153e-12
0.0207921
-0.00136302
-2.24044e-12
0.0208279
-0.00115168
-2.52229e-12
0.0209397
-0.000899411
-3.07273e-12
0.0210759
-0.000589642
-3.56405e-12
0.0212321
-0.000258126
-3.78098e-12
0.0213854
8.20335e-05
-3.65661e-12
0.0215195
0.000412238
-3.20814e-12
0.0216282
0.000719907
-3.13509e-12
0.0217047
0.000992087
-2.44534e-12
0.0217692
0.00123269
-2.27129e-12
0.0218307
0.00144583
-2.19756e-12
0.0218752
0.00164517
-2.09434e-12
0.0218887
0.00182408
-1.94155e-12
0.0218959
0.00197003
-1.6652e-12
0.0219048
0.00209381
-1.47144e-12
0.0219113
0.00220837
-1.38922e-12
0.0219231
0.00230931
-1.41442e-12
0.0219385
0.00239601
-1.45812e-12
0.0219617
0.00246963
-1.48895e-12
0.0219943
0.00252283
-1.5335e-12
0.0220344
0.00256258
-1.59564e-12
0.0220708
0.00259332
-1.57293e-12
0.0221278
0.00258518
-1.56565e-12
0.022223
0.00253711
-1.56155e-12
0.0223503
0.00247552
-1.87111e-12
0.0225003
0.00237763
-2.10809e-12
0.0226998
0.00221371
-2.23263e-12
0.0229582
0.00200806
-2.38121e-12
0.0232591
0.00176228
-2.63476e-12
0.0235856
0.00149448
-2.94031e-12
0.0239203
0.00122113
-3.19756e-12
0.0242297
0.000963614
-3.09387e-12
0.0245025
0.000734285
-3.01283e-12
0.0247203
0.000541475
-3.00248e-12
0.0248874
0.000384757
-3.64843e-12
0.0250043
0.000259448
-4.00753e-12
0.0250797
0.000160706
-3.85384e-12
0.0251259
8.12642e-05
-3.62111e-12
0.0251565
4.66821e-06
-3.60852e-12
0.0251719
-6.3636e-05
-3.58826e-12
0.0251735
-0.000126348
-3.54669e-12
0.0251663
-0.000182705
-3.40336e-12
0.0251542
-0.000237565
-3.50432e-12
-0.000290783
-3.51549e-12
0.0167145
0.00303658
-6.4489e-11
0.0175908
0.00302076
9.12998e-12
0.018364
0.00331059
3.64922e-12
0.0191057
0.00361133
-4.85259e-12
0.0198617
0.00381585
-6.09539e-12
0.0206443
0.00392517
-4.84385e-12
0.0214447
0.00395914
-1.94916e-12
0.0222415
0.00393391
4.06561e-14
0.02301
0.00385397
1.90916e-12
0.0237366
0.00372195
3.1828e-12
0.0244043
0.00354321
3.43845e-12
0.0250085
0.00332388
3.70174e-12
0.0255382
0.00307286
3.74715e-12
0.0259952
0.00279783
3.62584e-12
0.0263755
0.00250783
3.29772e-12
0.0266855
0.00220892
2.83405e-12
0.026927
0.00190822
2.38834e-12
0.027107
0.00160967
2.03391e-12
0.0272332
0.00131764
1.53964e-12
0.0273088
0.00103446
1.22836e-12
0.0273439
0.000762214
9.99091e-13
0.0273382
0.000502087
9.07047e-13
0.0272977
0.000254274
8.8764e-13
0.0272249
1.99736e-05
1.08152e-12
0.0271181
-0.000197874
1.2596e-12
0.0269831
-0.0004017
1.18957e-12
0.026818
-0.000591406
1.61531e-12
0.0266283
-0.000767226
1.4363e-12
0.0264166
-0.000930598
1.65109e-12
0.0261836
-0.00108094
1.75099e-12
0.0259367
-0.00121986
1.85538e-12
0.0256761
-0.00134665
1.92493e-12
0.0254081
-0.0014627
1.99903e-12
0.0251314
-0.00156776
2.05129e-12
0.0248513
-0.00166289
2.0992e-12
0.0245764
-0.00174786
2.14946e-12
0.0243098
-0.00182427
2.11674e-12
0.0240529
-0.00189141
2.15025e-12
0.0237986
-0.00195021
2.16674e-12
0.0235489
-0.002
2.11695e-12
0.0232974
-0.00204141
2.13099e-12
0.0230534
-0.00207396
2.05891e-12
0.0228098
-0.00209912
1.90974e-12
0.0225654
-0.00211495
1.83243e-12
0.0223171
-0.00212259
1.70098e-12
0.0220633
-0.00212079
1.58081e-12
0.0218061
-0.00210967
1.45406e-12
0.0215466
-0.00208931
1.30448e-12
0.0212944
-0.0020584
1.19638e-12
0.0210469
-0.00201648
8.97344e-13
0.0208106
-0.00196145
7.96438e-13
0.0205845
-0.00190224
3.73137e-13
0.0203852
-0.00183013
6.85546e-15
0.0202154
-0.00173913
-5.05207e-13
0.0200772
-0.00162594
-7.34033e-13
0.0199846
-0.00149105
-1.16599e-12
0.0199117
-0.00132412
-1.81163e-12
0.0198655
-0.00113796
-1.91741e-12
0.019873
-0.000944124
-2.15345e-12
0.0199555
-0.000713677
-2.58715e-12
0.020086
-0.000432412
-3.34567e-12
0.0202389
-0.000114613
-3.63578e-12
0.0204018
0.000212265
-3.51158e-12
0.0205545
0.000537255
-3.26597e-12
0.0206849
0.000841046
-2.7363e-12
0.0207927
0.00111532
-2.47859e-12
0.0208796
0.00135458
-2.13652e-12
0.0209622
0.00156334
-1.98062e-12
0.0210399
0.001751
-1.91449e-12
0.0210979
0.00192032
-1.7689e-12
0.0211341
0.00206774
-1.5809e-12
0.0211736
0.0021821
-1.5504e-12
0.021215
0.00227804
-1.55914e-12
0.0212688
0.00235613
-1.61878e-12
0.0213288
0.00241792
-1.69585e-12
0.0213892
0.00247105
-1.79189e-12
0.0214566
0.00249993
-1.89336e-12
0.0215824
0.00247211
-1.93157e-12
0.0217372
0.00243249
-1.88228e-12
0.0218898
0.00238343
-2.06009e-12
0.0220905
0.00226646
-2.36153e-12
0.0223537
0.00210074
-2.6631e-12
0.0226562
0.00189155
-3.01172e-12
0.0229934
0.0016486
-3.12121e-12
0.0233381
0.00139099
-3.8747e-12
0.0236748
0.00113487
-3.40866e-12
0.0239738
0.000899561
-3.47358e-12
0.0242298
0.000695207
-3.35e-12
0.0244265
0.000526392
-3.29445e-12
0.0245745
0.000390622
-3.9288e-12
0.0246754
0.000281482
-3.84074e-12
0.0247403
0.000195312
-3.56494e-12
0.0247774
0.000124192
-3.34753e-12
0.024801
5.56411e-05
-3.31214e-12
0.0248089
-6.43507e-06
-3.23645e-12
0.0248055
-6.44314e-05
-3.14909e-12
0.0247896
-0.000117142
-3.08489e-12
0.0247674
-0.000167559
-3.1912e-12
0.0247392
-0.00021507
-3.35389e-12
-0.000261765
-3.36937e-12
0.0175
0.0024196
-3.61814e-11
0.0179034
0.0026613
1.38918e-11
0.01829
0.00290847
8.07521e-12
0.0186854
0.00315681
2.63879e-12
0.0191188
0.00333943
1.33045e-12
0.019633
0.00342057
2.15544e-12
0.020218
0.0034303
2.86122e-12
0.0208495
0.00338448
3.76715e-12
0.0214928
0.00329576
2.51656e-12
0.0221218
0.00316672
2.65369e-12
0.0227182
0.00300489
2.75804e-12
0.0232681
0.00281486
2.87289e-12
0.0237647
0.00260313
2.9274e-12
0.0242052
0.00237562
2.90421e-12
0.0245906
0.00213739
2.71461e-12
0.0249208
0.00189351
2.41272e-12
0.0252006
0.00164743
1.77355e-12
0.0254286
0.00140304
1.54054e-12
0.0256107
0.00116211
1.11356e-12
0.0257449
0.000927533
7.28752e-13
0.0258356
0.000699922
5.05524e-13
0.0258838
0.00048132
3.92182e-13
0.025889
0.000271699
4.64447e-13
0.025858
7.19168e-05
4.35049e-13
0.0257895
-0.000115744
6.85415e-13
0.0256934
-0.000291063
8.8538e-13
0.0255675
-0.000454446
1.15344e-12
0.0254202
-0.000606297
1.33621e-12
0.0252537
-0.000747157
1.59278e-12
0.0250731
-0.000877544
1.56857e-12
0.024886
-0.000998203
1.66429e-12
0.0246932
-0.00110976
1.77818e-12
0.0244989
-0.00121266
1.87432e-12
0.0243041
-0.00130715
1.99974e-12
0.0241093
-0.00139324
2.11569e-12
0.0239144
-0.0014716
2.18729e-12
0.0237166
-0.00154204
2.25381e-12
0.0235148
-0.00160495
2.30956e-12
0.0233064
-0.0016599
2.3226e-12
0.023088
-0.00170737
2.31912e-12
0.0228577
-0.00174699
2.28824e-12
0.0226156
-0.00177899
2.24263e-12
0.0223583
-0.00180322
2.14149e-12
0.0220846
-0.00181994
2.09636e-12
0.0218027
-0.00182854
1.97758e-12
0.0215134
-0.00183123
1.84659e-12
0.0212275
-0.00182598
1.71686e-12
0.0209477
-0.00181505
1.58294e-12
0.0206787
-0.00179504
1.50067e-12
0.0204246
-0.0017684
1.30322e-12
0.0201881
-0.00173016
1.073e-12
0.019963
-0.00168334
9.45792e-13
0.0197582
-0.00163043
6.13565e-13
0.0195741
-0.00156524
1.74454e-13
0.0194144
-0.00148156
-1.45307e-13
0.0192867
-0.0013808
-6.21411e-13
0.0191972
-0.00125648
-9.22631e-13
0.0191362
-0.00110591
-1.54626e-12
0.019098
-0.000929868
-1.64016e-12
0.0191109
-0.000750651
-1.84534e-12
0.0191958
-0.000538461
-2.26509e-12
0.0193359
-0.000281751
-3.09085e-12
0.0195025
2.23222e-05
-3.51975e-12
0.0196845
0.000337888
-3.58184e-12
0.0198624
0.000655334
-3.32253e-12
0.0200255
0.000954756
-3.02459e-12
0.0201638
0.00122774
-2.60771e-12
0.0202776
0.00146605
-2.25072e-12
0.020378
0.00167025
-2.17689e-12
0.0204724
0.00184949
-1.93797e-12
0.0205607
0.00200188
-1.9192e-12
0.0206332
0.00213171
-1.89402e-12
0.0206968
0.00223374
-1.85371e-12
0.0207557
0.00231302
-1.96014e-12
0.0208198
0.00236581
-2.00446e-12
0.0209249
0.00237881
-2.11715e-12
0.0210736
0.00235434
-2.3453e-12
0.021216
0.0023327
-2.32367e-12
0.0213834
0.00226249
-2.88676e-12
0.021616
0.00214089
-3.37114e-12
0.021893
0.00197158
-3.12357e-12
0.0222072
0.0017632
-4.04497e-12
0.0225484
0.00152643
-3.81742e-12
0.0228885
0.00128151
-4.06044e-12
0.023214
0.00104438
-4.05541e-12
0.0234949
0.00083257
-3.89678e-12
0.0237286
0.000652165
-3.69195e-12
0.0239048
0.000505759
-3.73647e-12
0.0240326
0.000388734
-3.993e-12
0.0241172
0.000294454
-3.67835e-12
0.0241674
0.000218243
-3.37236e-12
0.024193
0.00015475
-3.12991e-12
0.0242064
9.57479e-05
-3.03986e-12
0.0242025
3.99326e-05
-2.99717e-12
0.0241896
-1.32378e-05
-2.98084e-12
0.0241679
-6.21953e-05
-2.95043e-12
0.0241398
-0.000107944
-2.91976e-12
0.0241053
-0.000152053
-3.04316e-12
0.0240658
-0.000192827
-3.11855e-12
-0.000233419
-3.12823e-12
0.017538
0.00195421
1.59148e-11
0.0179032
0.00233783
1.339e-11
0.0181912
0.00260466
1.0686e-11
0.0184638
0.00285938
8.88015e-12
0.0187676
0.0030364
6.48762e-12
0.0191373
0.0030995
6.16932e-12
0.0195833
0.00306626
4.9509e-12
0.0200795
0.00297827
4.1236e-12
0.0205932
0.00285207
1.47337e-12
0.0210984
0.00269968
8.97602e-13
0.0215886
0.00253047
5.1788e-13
0.0220561
0.00234977
6.88079e-13
0.0224993
0.00216155
1.04667e-12
0.0229139
0.00196862
1.4082e-12
0.0232953
0.0017725
1.55609e-12
0.0236375
0.00157476
1.31847e-12
0.0239363
0.00137665
1.13383e-12
0.0241868
0.0011796
7.37696e-13
0.0243881
0.000984777
3.66558e-13
0.0245391
0.000793639
8.42396e-14
0.024641
0.000607156
-6.13436e-14
0.0246977
0.000426661
-1.06246e-13
0.0247103
0.000252864
-3.08395e-14
0.0246871
8.63355e-05
6.09034e-14
0.0246325
-7.15796e-05
2.52322e-13
0.024555
-0.00021969
4.68772e-13
0.02446
-0.000358001
6.90687e-13
0.0243535
-0.000486779
9.46059e-13
0.0242404
-0.000606323
1.03192e-12
0.0241212
-0.000717716
1.41761e-12
0.0239972
-0.000820933
1.43355e-12
0.0238664
-0.000917039
1.61837e-12
0.0237301
-0.00100583
1.82623e-12
0.0235849
-0.00108819
1.9772e-12
0.0234286
-0.00116373
2.12813e-12
0.0232583
-0.00123299
2.26921e-12
0.0230721
-0.00129542
2.38017e-12
0.022868
-0.00135152
2.45869e-12
0.0226464
-0.0014008
2.50121e-12
0.0224108
-0.00144367
2.51934e-12
0.0221625
-0.00147992
2.4814e-12
0.0219016
-0.00151023
2.43449e-12
0.0216378
-0.00153388
2.36682e-12
0.0213756
-0.00155267
2.24618e-12
0.0211189
-0.00156518
2.12606e-12
0.0208671
-0.00157263
2.03179e-12
0.0206213
-0.00157372
1.92191e-12
0.0203799
-0.00156923
1.84133e-12
0.0201445
-0.0015581
1.76787e-12
0.0199152
-0.00154021
1.63611e-12
0.0196934
-0.00151481
1.45387e-12
0.0194819
-0.00147993
1.34546e-12
0.0192767
-0.00143838
1.1479e-12
0.019088
-0.0013895
8.69272e-13
0.0189198
-0.00132845
4.31538e-13
0.018778
-0.0012523
7.97726e-14
0.0186675
-0.00116
-3.2718e-13
0.0185982
-0.0010465
-7.56067e-13
0.0185641
-0.000907011
-1.33683e-12
0.0185438
-0.000737913
-1.40828e-12
0.0185765
-0.000569278
-1.61336e-12
0.0186681
-0.000371722
-2.09368e-12
0.018822
-0.000134725
-2.96805e-12
0.0190009
0.000155631
-3.31881e-12
0.0191974
0.000459838
-3.53884e-12
0.019391
0.000768838
-3.51443e-12
0.0195688
0.00106241
-3.18677e-12
0.0197227
0.00132862
-3.00126e-12
0.0198548
0.00156044
-2.52442e-12
0.0199703
0.00175525
-2.32919e-12
0.0200753
0.00191747
-2.35118e-12
0.0201778
0.00204944
-2.30395e-12
0.0202765
0.00214981
-2.25977e-12
0.0203803
0.00221996
-2.27338e-12
0.0204963
0.00225143
-2.55987e-12
0.0206309
0.00224319
-2.48749e-12
0.0207731
0.00220646
-2.71699e-12
0.0209598
0.00213072
-3.11835e-12
0.0211979
0.00200186
-3.51214e-12
0.0214774
0.0018313
-3.98728e-12
0.0217919
0.00162476
-4.32412e-12
0.0221219
0.0013973
-4.58201e-12
0.0224426
0.00116731
-4.68374e-12
0.0227369
0.000950566
-4.59425e-12
0.0229828
0.000761518
-4.34996e-12
0.0231793
0.00060374
-4.09856e-12
0.0233221
0.00047775
-4.23147e-12
0.0234223
0.000377368
-4.02674e-12
0.0234845
0.000297075
-3.62609e-12
0.0235206
0.000229732
-3.25035e-12
0.0235345
0.000173572
-3.05395e-12
0.0235361
0.000123202
-2.8941e-12
0.0235233
7.39063e-05
-2.88417e-12
0.0235028
2.67838e-05
-2.85772e-12
0.0234727
-1.80052e-05
-2.84159e-12
0.0234374
-5.93598e-05
-2.82148e-12
0.0233954
-9.87901e-05
-2.36461e-12
0.0233518
-0.000136284
-3.04847e-12
0.023307
-0.000171201
-2.90694e-12
-0.000205967
-2.96596e-12
0.0168031
0.00134807
4.76914e-11
0.0174239
0.00181134
3.33927e-11
0.0178299
0.00221028
1.43141e-11
0.0181599
0.00252397
9.0345e-12
0.0185033
0.00271739
1.08514e-11
0.0188895
0.00277908
7.92899e-12
0.0193077
0.0027302
4.87547e-12
0.0197487
0.00261283
1.52033e-12
0.0201934
0.00245858
-1.01273e-12
0.0206257
0.00228784
-2.53545e-12
0.0210432
0.00211304
-3.08125e-12
0.0214442
0.00194002
-2.6511e-12
0.0218308
0.00177092
-2.0457e-12
0.0222003
0.00160543
-1.31608e-12
0.0225457
0.00144315
-7.06744e-13
0.0228596
0.00128291
-3.79456e-13
0.0231342
0.00112425
-2.92945e-13
0.0233642
0.000966901
-3.7509e-13
0.0235466
0.000811034
-5.0094e-13
0.0236813
0.000657425
-5.94479e-13
0.0237705
0.000506889
-6.08155e-13
0.0238201
0.000360543
-5.45814e-13
0.0238352
0.000219293
-4.3481e-13
0.0238242
8.34857e-05
-2.83319e-13
0.0237945
-4.58846e-05
-1.37363e-13
0.0237507
-0.000167874
7.91896e-14
0.0236999
-0.000282544
2.63188e-13
0.0236409
-0.000389881
5.10469e-13
0.0235756
-0.000490049
7.31652e-13
0.0235008
-0.000583812
9.41604e-13
0.0234136
-0.000671385
1.17854e-12
0.023312
-0.000753332
1.41923e-12
0.023193
-0.00082964
1.65067e-12
0.0230547
-0.00090072
1.89099e-12
0.0228977
-0.000966261
2.10936e-12
0.0227227
-0.00102652
2.31597e-12
0.0225317
-0.00108127
2.46977e-12
0.0223289
-0.0011306
2.58606e-12
0.022117
-0.00117453
2.64771e-12
0.021899
-0.00121306
2.67434e-12
0.0216792
-0.0012463
2.64228e-12
0.0214575
-0.00127445
2.60053e-12
0.0212371
-0.00129739
2.49437e-12
0.0210161
-0.00131558
2.41644e-12
0.0207941
-0.00132877
2.31691e-12
0.0205718
-0.0013371
2.20689e-12
0.0203471
-0.00134057
2.13091e-12
0.0201221
-0.00133886
2.04198e-12
0.0198952
-0.00133218
1.96916e-12
0.0196707
-0.00131967
1.84956e-12
0.0194471
-0.00130165
1.73132e-12
0.0192329
-0.00127648
1.5441e-12
0.0190241
-0.00124388
1.48057e-12
0.018829
-0.00120672
1.2685e-12
0.0186514
-0.00116029
1.04214e-12
0.0184929
-0.00110354
7.06989e-13
0.0183652
-0.00103355
3.01363e-13
0.018266
-0.000949016
-9.69703e-14
0.018207
-0.000844222
-5.37213e-13
0.0181858
-0.000715459
-1.07024e-12
0.0181764
-0.000554281
-1.15812e-12
0.0182111
-0.000396027
-1.52473e-12
0.0182963
-0.000212264
-1.87073e-12
0.0184416
1.10097e-05
-2.61011e-12
0.0186195
0.000276409
-3.21937e-12
0.0188144
0.000566362
-3.69917e-12
0.0190059
0.00086253
-3.68991e-12
0.0191822
0.0011448
-3.54346e-12
0.019337
0.00139728
-3.20812e-12
0.0194721
0.00161264
-2.98074e-12
0.0195932
0.00178668
-2.84744e-12
0.0197094
0.00192103
-2.85707e-12
0.0198274
0.00201739
-2.81709e-12
0.0199573
0.00207158
-2.90789e-12
0.0201102
0.0020768
-3.0055e-12
0.0202676
0.00205487
-3.14378e-12
0.0204552
0.00198126
-3.49031e-12
0.0206824
0.00185467
-3.96372e-12
0.0209438
0.00168437
-4.43654e-12
0.0212322
0.00148239
-4.82695e-12
0.021527
0.00126526
-5.12745e-12
0.021815
0.00105002
-5.18336e-12
0.022071
0.000853673
-5.06414e-12
0.0222836
0.000685264
-4.78575e-12
0.0224492
0.000548287
-4.41876e-12
0.0225686
0.000440107
-4.34792e-12
0.0226477
0.000355232
-4.05004e-12
0.0226976
0.000287107
-3.63267e-12
0.022725
0.000229987
-3.19821e-12
0.022733
0.000181279
-3.02789e-12
0.0227305
0.000137153
-2.86736e-12
0.0227239
9.50505e-05
-2.82354e-12
0.0227099
5.47566e-05
-2.75283e-12
0.0226867
1.58284e-05
-2.73288e-12
0.0226591
-2.06868e-05
-2.59669e-12
0.0226363
-5.70118e-05
-2.6508e-12
0.0226121
-8.99012e-05
-2.56443e-12
0.0225884
-0.000122319
-2.42329e-12
0.0225626
-0.000150908
-2.56239e-12
-0.000179901
-2.90339e-12
0.0174388
0.00110675
5.86867e-11
0.0177298
0.00162404
4.94642e-11
0.0179825
0.00198349
2.17671e-11
0.0182499
0.00226769
9.57265e-12
0.0185666
0.0024374
5.47349e-12
0.0189364
0.00247301
1.5823e-12
0.0193359
0.00239842
-5.97189e-13
0.0197429
0.00225549
-3.3764e-12
0.0201416
0.00208252
-6.14004e-12
0.0205272
0.0019046
-7.6494e-12
0.0208981
0.00173381
-8.11058e-12
0.021255
0.00157386
-7.57609e-12
0.0215959
0.00142519
-6.44454e-12
0.0219188
0.00128553
-4.96845e-12
0.0222224
0.00115285
-3.54833e-12
0.0224989
0.00102451
-2.42767e-12
0.0227408
0.000898635
-1.79984e-12
0.0229385
0.000774319
-1.54513e-12
0.0230884
0.000651147
-1.40444e-12
0.0231907
0.000529569
-1.27796e-12
0.0232521
0.000410175
-1.12018e-12
0.0232816
0.000293972
-9.26468e-13
0.0232886
0.000181643
-7.31094e-13
0.023282
7.37178e-05
-5.47372e-13
0.023267
-2.94851e-05
-3.82215e-13
0.0232467
-0.000127685
-2.24498e-13
0.023221
-0.000220606
-6.37806e-14
0.0231863
-0.000308213
1.41804e-13
0.0231398
-0.000390597
3.81165e-13
0.0230778
-0.000468239
6.81799e-13
0.0229978
-0.000541337
9.86337e-13
0.0228989
-0.000610218
1.2306e-12
0.0227812
-0.000674869
1.51005e-12
0.0226472
-0.000735298
1.80743e-12
0.0224983
-0.000791562
2.07662e-12
0.0223381
-0.000843299
2.32876e-12
0.0221683
-0.000890697
2.52919e-12
0.0219916
-0.000933307
2.68755e-12
0.0218093
-0.000971457
2.77106e-12
0.021622
-0.00100483
2.81568e-12
0.0214303
-0.00103368
2.79381e-12
0.021233
-0.001058
2.74401e-12
0.0210296
-0.00107804
2.67103e-12
0.0208199
-0.00109362
2.55957e-12
0.0206027
-0.0011054
2.48968e-12
0.0203796
-0.00111271
2.34743e-12
0.0201502
-0.00111649
2.30806e-12
0.0199175
-0.00111576
2.19798e-12
0.019683
-0.00111147
2.13625e-12
0.01945
-0.00110256
2.03536e-12
0.0192219
-0.0010894
1.92453e-12
0.0190017
-0.00107119
1.81939e-12
0.0187943
-0.00104733
1.68576e-12
0.0185978
-0.00101783
1.60361e-12
0.0184198
-0.000983143
1.44693e-12
0.0182588
-0.000939939
1.25734e-12
0.0181217
-0.000888028
9.28427e-13
0.0180079
-0.00082415
4.875e-13
0.0179229
-0.00074595
1.21197e-13
0.0178725
-0.00064983
-3.31317e-13
0.0178566
-0.000530189
-1.15087e-12
0.0178524
-0.000380755
-1.27051e-12
0.0178817
-0.000233666
-1.2609e-12
0.0179605
-6.43216e-05
-1.68711e-12
0.0180936
0.000134983
-2.46405e-12
0.0182563
0.000384076
-3.40772e-12
0.0184413
0.000652161
-3.84121e-12
0.0186297
0.000927197
-3.93208e-12
0.0188078
0.00118872
-3.81742e-12
0.0189707
0.00141941
-3.63761e-12
0.0191173
0.00160772
-3.44251e-12
0.0192564
0.00174867
-3.43734e-12
0.019398
0.00184085
-3.43441e-12
0.0195503
0.00187848
-3.69174e-12
0.0197202
0.00186559
-3.79173e-12
0.0199148
0.00181037
-4.22745e-12
0.0201448
0.00169651
-4.58524e-12
0.0204042
0.00153692
-5.00203e-12
0.0206789
0.00134535
-5.39986e-12
0.0209581
0.00113968
-5.60989e-12
0.0212207
0.000939353
-5.67004e-12
0.0214503
0.000759761
-5.45897e-12
0.0216398
0.00060908
-5.12966e-12
0.0217838
0.000488957
-4.68698e-12
0.0218859
0.000395837
-4.24419e-12
0.0219564
0.000323738
-3.91812e-12
0.0220002
0.00026648
-3.52467e-12
0.0220226
0.000219023
-3.21623e-12
0.022034
0.000177494
-2.79457e-12
0.0220374
0.000140055
-2.91092e-12
0.0220344
0.000105697
-2.70542e-12
0.0220262
7.15292e-05
-2.68534e-12
0.0220195
3.8314e-05
-2.61443e-12
0.0220146
6.29152e-06
-2.50468e-12
0.0220079
-2.37122e-05
-2.29991e-12
0.0220029
-5.33694e-05
-2.52615e-12
0.0219983
-8.11268e-05
-2.42913e-12
0.0219983
-0.000107651
-2.47329e-12
0.0219988
-0.000131184
-2.49349e-12
-0.000154715
-2.52097e-12
0.016648
0.000629703
7.50776e-11
0.0172542
0.00113859
5.23506e-11
0.0176935
0.00157093
2.2331e-11
0.0181094
0.00187051
3.2881e-12
0.0185565
0.00203401
-1.66241e-12
0.0190197
0.00206477
-3.61567e-12
0.0194738
0.00198926
-4.55999e-12
0.0199048
0.00184995
-8.14506e-12
0.0203141
0.0016859
-1.02014e-11
0.0207028
0.00152332
-1.13063e-11
0.0210655
0.00137317
-1.1606e-11
0.0214012
0.00123774
-1.10402e-11
0.0217122
0.00111543
-9.68689e-12
0.0219971
0.00100354
-8.00599e-12
0.0222531
0.000899075
-6.31613e-12
0.0224728
0.000799261
-4.86913e-12
0.0226534
0.000701949
-3.79669e-12
0.0227926
0.000606035
-3.02295e-12
0.0228923
0.000511297
-2.42404e-12
0.0229583
0.000417857
-1.86895e-12
0.0229985
0.000326299
-1.46277e-12
0.0230221
0.000237147
-1.16045e-12
0.0230364
0.000150974
-9.02542e-13
0.0230451
6.80275e-05
-7.08108e-13
0.0230497
-1.21921e-05
-5.83752e-13
0.0230462
-8.78376e-05
-4.7479e-13
0.0230334
-0.000161323
-3.5617e-13
0.0230061
-0.000231116
-1.93048e-13
0.022962
-0.000297667
4.0177e-14
0.0228991
-0.000360808
3.59856e-13
0.0228169
-0.000420953
7.48134e-13
0.0227172
-0.000477659
1.05944e-12
0.0226011
-0.000531428
1.37784e-12
0.0224724
-0.00058142
1.71997e-12
0.0223323
-0.000628347
2.05432e-12
0.0221841
-0.000671094
2.36334e-12
0.0220285
-0.000710607
2.60009e-12
0.0218664
-0.000745651
2.78606e-12
0.0216982
-0.000777275
2.90255e-12
0.021523
-0.000804396
2.94851e-12
0.0213404
-0.000828135
2.95581e-12
0.0211506
-0.000847501
2.8955e-12
0.0209515
-0.000863784
2.84247e-12
0.0207442
-0.000875961
2.72404e-12
0.0205268
-0.000885393
2.66373e-12
0.0203014
-0.000891037
2.53579e-12
0.0200689
-0.000894131
2.4693e-12
0.0198321
-0.000893687
2.35926e-12
0.0195942
-0.000890632
2.26295e-12
0.0193573
-0.000884096
2.17607e-12
0.0191262
-0.000874505
2.07864e-12
0.0189034
-0.000861234
2.00271e-12
0.0186918
-0.000843908
1.90631e-12
0.0184943
-0.000821881
1.84582e-12
0.0183106
-0.000795963
1.73624e-12
0.018145
-0.000764163
1.59026e-12
0.0179966
-0.000725635
1.38743e-12
0.0178684
-0.000678894
1.08523e-12
0.0177608
-0.000621863
6.31612e-13
0.0176791
-0.000551722
2.66122e-13
0.017625
-0.000465747
-2.1959e-13
0.0176035
-0.00035538
-1.00788e-12
0.0175939
-0.000223328
-1.11869e-12
0.017617
-9.00136e-05
-1.38459e-12
0.0176835
6.01255e-05
-1.60547e-12
0.0178106
0.00023756
-2.57147e-12
0.0179697
0.000463126
-3.40917e-12
0.0181579
0.000704394
-3.93112e-12
0.0183565
0.000951251
-4.15351e-12
0.0185549
0.00118093
-4.20292e-12
0.0187454
0.00137718
-4.1721e-12
0.018929
0.00152426
-4.1745e-12
0.0191142
0.00161377
-4.29654e-12
0.0193117
0.00163855
-4.31884e-12
0.0195192
0.00160956
-4.72844e-12
0.0197577
0.00151847
-5.16525e-12
0.0200184
0.00137865
-5.59973e-12
0.0202907
0.00120481
-5.97403e-12
0.0205602
0.00101647
-6.18227e-12
0.0208076
0.000832972
-6.15065e-12
0.0210206
0.000669274
-5.91077e-12
0.0211937
0.000533725
-5.46066e-12
0.021323
0.000427249
-4.94028e-12
0.0214153
0.000346073
-4.35763e-12
0.0214786
0.000284486
-3.784e-12
0.0215167
0.000236539
-3.29166e-12
0.0215372
0.000197427
-2.90109e-12
0.0215484
0.000163696
-2.67803e-12
0.0215516
0.000133447
-2.31337e-12
0.0215471
0.000104667
-2.80271e-12
0.0215444
7.81362e-05
-2.57031e-12
0.0215442
5.14685e-05
-2.54649e-12
0.0215446
2.50848e-05
-2.53228e-12
0.021544
-8.63574e-07
-2.53492e-12
0.0215463
-2.47623e-05
-2.38443e-12
0.0215542
-4.80243e-05
-2.19889e-12
0.0215631
-7.06294e-05
-2.21853e-12
0.0215768
-9.16225e-05
-2.28607e-12
0.0215914
-0.000110154
-2.45404e-12
-0.000128342
-2.43977e-12
0.0171851
0.00045266
6.69292e-11
0.0173966
0.00100621
5.03591e-11
0.0177046
0.00131864
1.20697e-11
0.0180988
0.00152992
-1.92177e-12
0.0185562
0.00163959
-6.01806e-12
0.0190271
0.00164109
-6.21864e-12
0.0194786
0.00155543
-6.98874e-12
0.0199045
0.00142257
-1.07463e-11
0.0203079
0.00127741
-1.27344e-11
0.0206934
0.00114061
-1.37127e-11
0.0210579
0.00101899
-1.39096e-11
0.0213924
0.000913178
-1.33085e-11
0.0216907
0.000819696
-1.20588e-11
0.0219549
0.000735625
-1.02915e-11
0.0221865
0.000657769
-8.41707e-12
0.022382
0.000584002
-6.71622e-12
0.0225356
0.00051274
-5.2988e-12
0.0226471
0.000442799
-4.19699e-12
0.0227218
0.000374035
-3.28659e-12
0.0227721
0.000306343
-2.47835e-12
0.0228086
0.000240216
-1.69214e-12
0.0228406
0.000175796
-1.29132e-12
0.0228719
0.00011348
-9.86745e-13
0.0229014
5.33765e-05
-7.79413e-13
0.0229239
-3.22461e-06
-7.5247e-13
0.0229389
-6.08724e-05
-6.44098e-13
0.022939
-0.000114411
-5.60527e-13
0.022921
-0.000166218
-4.2842e-13
0.0228834
-0.000216469
-2.02579e-13
0.0228271
-0.000264475
1.1551e-13
0.0227515
-0.00031076
5.33206e-13
0.0226604
-0.000354394
9.31314e-13
0.0225539
-0.000396117
1.28156e-12
0.0224358
-0.000434701
1.66356e-12
0.0223069
-0.000471055
2.04079e-12
0.0221694
-0.000503943
2.38877e-12
0.0220242
-0.00053423
2.67153e-12
0.021871
-0.000561025
2.88909e-12
0.0217101
-0.000584901
3.01869e-12
0.0215392
-0.00060548
3.09061e-12
0.0213577
-0.00062292
3.08942e-12
0.0211642
-0.000637485
3.05053e-12
0.0209574
-0.000648881
2.97489e-12
0.0207387
-0.000657967
2.88002e-12
0.0205086
-0.00066409
2.77603e-12
0.0202694
-0.000668376
2.69735e-12
0.0200247
-0.000669891
2.55991e-12
0.0197768
-0.000669987
2.49353e-12
0.0195313
-0.000667174
2.35426e-12
0.0192901
-0.000663165
2.30236e-12
0.0190583
-0.000655895
2.19571e-12
0.0188368
-0.000647065
2.14902e-12
0.0186286
-0.000634578
2.07572e-12
0.0184349
-0.000619339
2.02682e-12
0.0182541
-0.000600523
1.95518e-12
0.0180868
-0.000577964
1.84933e-12
0.0179341
-0.000550595
1.70668e-12
0.0177955
-0.00051774
1.4843e-12
0.0176739
-0.000477873
1.19133e-12
0.0175709
-0.000429411
6.79882e-13
0.0174896
-0.000369201
3.7192e-13
0.0174387
-0.000296039
-1.93477e-13
0.0174106
-0.000195677
-9.82879e-13
0.0174071
-9.12023e-05
-1.10489e-12
0.0174365
2.2191e-05
-1.42004e-12
0.0175104
0.000149397
-2.03284e-12
0.0176444
0.000303043
-2.80696e-12
0.0178168
0.000496936
-3.57337e-12
0.0180242
0.000702394
-4.14968e-12
0.0182496
0.000908885
-4.55059e-12
0.0184855
0.00109331
-4.82397e-12
0.0187246
0.00123612
-4.99478e-12
0.0189678
0.00131984
-5.22996e-12
0.0192202
0.00133522
-5.48749e-12
0.0194885
0.0012874
-5.89106e-12
0.0197688
0.00118186
-6.3194e-12
0.0200517
0.00103752
-6.65432e-12
0.0203226
0.00087532
-6.82908e-12
0.0205685
0.000715112
-6.74809e-12
0.0207757
0.000571871
-6.43846e-12
0.0209394
0.000453105
-5.91987e-12
0.0210631
0.000360164
-5.25157e-12
0.0211495
0.000289986
-4.57433e-12
0.0212074
0.000237458
-3.94018e-12
0.0212451
0.000197514
-3.40121e-12
0.021267
0.000165883
-2.98384e-12
0.0212747
0.000139452
-2.65435e-12
0.0212774
0.000115978
-2.40625e-12
0.0212759
9.46937e-05
-2.10124e-12
0.0212666
7.37596e-05
-2.60276e-12
0.0212592
5.41668e-05
-2.41557e-12
0.0212547
3.44693e-05
-2.39962e-12
0.0212513
1.48292e-05
-2.40004e-12
0.0212459
-4.41138e-06
-2.44021e-12
0.0212437
-2.31215e-05
-2.32107e-12
0.0212455
-4.0567e-05
-2.1302e-12
0.0212478
-5.75644e-05
-2.2553e-12
0.0212535
-7.30056e-05
-2.30969e-12
0.0212601
-8.76195e-05
-2.45986e-12
-9.91084e-05
-2.4407e-12
0.0169078
0.000365609
6.09567e-11
0.0170322
0.000907552
4.25523e-11
0.017387
0.00109137
9.92036e-12
0.0178473
0.00118125
-4.19743e-12
0.0183421
0.0012165
-6.93153e-12
0.0188292
0.00117905
-7.5778e-12
0.0192881
0.00108531
-9.93152e-12
0.0197184
0.000967284
-1.26118e-11
0.0201286
0.000850478
-1.41601e-11
0.0205236
0.000747091
-1.50268e-11
0.0208998
0.000659342
-1.52268e-11
0.0212472
0.000585307
-1.47289e-11
0.0215539
0.000521445
-1.34829e-11
0.0218218
0.000464301
-1.17501e-11
0.0220527
0.000411703
-9.75858e-12
0.0222478
0.000362185
-7.86656e-12
0.022402
0.000314507
-6.22293e-12
0.0225159
0.000268114
-4.87351e-12
0.0225955
0.000222846
-3.71262e-12
0.0226547
0.00017866
-2.71056e-12
0.022704
0.000135836
-1.78918e-12
0.022752
9.44436e-05
-1.29289e-12
0.0228002
5.4744e-05
-9.7794e-13
0.0228451
1.64644e-05
-8.15675e-13
0.0228833
-1.94772e-05
-6.56339e-13
0.0229048
-5.41329e-05
-6.91804e-13
0.0229094
-8.79441e-05
-6.784e-13
0.0228958
-0.000120426
-5.89441e-13
0.0228634
-0.000151792
-3.8208e-13
0.0228152
-0.000182101
-7.09961e-14
0.0227506
-0.000211307
3.71915e-13
0.0226725
-0.000239286
8.29134e-13
0.0225802
-0.00026591
1.20505e-12
0.0224751
-0.000290952
1.60905e-12
0.0223586
-0.00031436
2.02943e-12
0.0222299
-0.000335848
2.40743e-12
0.022092
-0.000355433
2.72455e-12
0.0219421
-0.000372966
2.97451e-12
0.0217827
-0.000388412
3.11345e-12
0.0216092
-0.000401848
3.22101e-12
0.0214234
-0.000413145
3.19685e-12
0.0212215
-0.00042261
3.21136e-12
0.0210053
-0.000430012
3.0853e-12
0.0207749
-0.000435976
3.0758e-12
0.0205332
-0.000439861
2.89455e-12
0.0202826
-0.00044284
2.85022e-12
0.0200292
-0.000443672
2.65283e-12
0.019774
-0.00044387
2.58876e-12
0.0195243
-0.000442002
2.44183e-12
0.0192808
-0.000439387
2.37446e-12
0.0190473
-0.00043474
2.29623e-12
0.0188259
-0.000428912
2.23732e-12
0.018616
-0.000420998
2.19215e-12
0.0184205
-0.00041092
2.14022e-12
0.0182365
-0.000398859
2.08557e-12
0.0180665
-0.000384204
2.01251e-12
0.017907
-0.000366722
1.91531e-12
0.0177584
-0.000345661
1.75589e-12
0.0176232
-0.000320528
1.5265e-12
0.0175016
-0.000289835
1.1419e-12
0.0173987
-0.000252587
7.21879e-13
0.0173179
-0.00020607
2.99811e-13
0.0172725
-0.000147858
-1.96486e-13
0.0172414
-6.91216e-05
-1.11952e-12
0.017246
6.91614e-06
-1.2272e-12
0.017291
9.05053e-05
-1.52345e-12
0.0173885
0.000186844
-2.16518e-12
0.0175451
0.000308922
-2.99141e-12
0.017751
0.000455133
-3.89732e-12
0.0180007
0.000611334
-4.70959e-12
0.018281
0.000758741
-5.35026e-12
0.0185846
0.00087577
-5.90151e-12
0.0189003
0.000943853
-6.33733e-12
0.019222
0.00095127
-6.79838e-12
0.0195467
0.000900868
-7.18071e-12
0.0198624
0.000805875
-7.46574e-12
0.0201568
0.000686135
-7.56247e-12
0.0204151
0.000561999
-7.45468e-12
0.0206298
0.000448479
-7.09008e-12
0.0207989
0.000353352
-6.52291e-12
0.020924
0.000278598
-5.77848e-12
0.0210134
0.000222071
-4.97011e-12
0.021073
0.000179988
-4.25562e-12
0.0211087
0.000148477
-3.66242e-12
0.0211287
0.000124205
-3.18726e-12
0.0211374
0.000104616
-2.82577e-12
0.0211334
8.80146e-05
-2.51903e-12
0.0211272
7.30455e-05
-2.30357e-12
0.0211176
5.94197e-05
-2.00868e-12
0.0211031
4.59058e-05
-2.14951e-12
0.0210905
3.27558e-05
-2.37127e-12
0.0210825
1.97268e-05
-2.2613e-12
0.0210765
6.60524e-06
-2.21479e-12
0.0210688
-6.40767e-06
-2.32228e-12
0.0210626
-1.8908e-05
-2.26472e-12
0.0210602
-3.06645e-05
-2.16248e-12
0.0210576
-4.19523e-05
-2.32309e-12
0.0210562
-5.24189e-05
-2.34262e-12
0.0210534
-6.1873e-05
-2.50325e-12
-6.90084e-05
-2.5087e-12
0.0162892
0.000154349
5.23223e-11
0.0167273
0.000472194
3.19203e-11
0.0173151
0.000591654
8.26068e-12
0.017955
0.000635083
-6.49057e-12
0.0185815
0.000642453
-1.01536e-11
0.0191621
0.000610852
-1.09714e-11
0.0196869
0.000551089
-1.41636e-11
0.0201623
0.000482795
-1.51985e-11
0.0206013
0.000419551
-1.52414e-11
0.0210092
0.000365739
-1.56308e-11
0.0213823
0.000321335
-1.58029e-11
0.0217107
0.000284213
-1.54627e-11
0.0219859
0.000252282
-1.4359e-11
0.0222081
0.000223655
-1.26947e-11
0.0223873
0.000197139
-1.06617e-11
0.0225319
0.000172063
-8.68884e-12
0.022636
0.000147962
-6.83686e-12
0.022699
0.000124589
-5.33847e-12
0.0227306
0.000101979
-3.9764e-12
0.0227498
8.00907e-05
-2.79672e-12
0.0227721
5.90435e-05
-1.74515e-12
0.0228052
3.8824e-05
-1.23592e-12
0.0228472
1.96454e-05
-9.20501e-13
0.0228884
1.95494e-06
-7.64138e-13
0.0229215
-1.57855e-05
-7.61182e-13
0.022938
-3.20467e-05
-7.83847e-13
0.0229338
-4.77101e-05
-7.82273e-13
0.0229093
-6.29455e-05
-7.03143e-13
0.0228661
-7.77455e-05
-4.99734e-13
0.0228075
-9.21534e-05
-1.7581e-13
0.0227347
-0.000106146
2.86276e-13
0.0226504
-0.000119657
7.83557e-13
0.022554
-0.000132649
1.17914e-12
0.0224469
-0.000144912
1.60029e-12
0.0223299
-0.000156528
2.05314e-12
0.0222018
-0.000167144
2.44924e-12
0.0220652
-0.000176967
2.79667e-12
0.0219167
-0.00018566
3.0563e-12
0.0217581
-0.000193411
3.21601e-12
0.0215855
-0.000200078
3.32354e-12
0.0214002
-0.000205717
3.30817e-12
0.0211986
-0.000210411
3.33133e-12
0.0209847
-0.000214102
3.19036e-12
0.0207555
-0.000217053
3.20764e-12
0.0205178
-0.000219024
2.99791e-12
0.0202714
-0.000220476
2.9279e-12
0.0200221
-0.000220957
2.75383e-12
0.019773
-0.000220979
2.62923e-12
0.0195272
-0.000220154
2.53306e-12
0.0192885
-0.000218656
2.41447e-12
0.0190568
-0.000216485
2.38124e-12
0.0188362
-0.000213359
2.29114e-12
0.0186231
-0.000209491
2.2773e-12
0.0184217
-0.000204471
2.22378e-12
0.0182289
-0.000198379
2.1782e-12
0.0180465
-0.000191171
2.13702e-12
0.0178735
-0.000182409
2.02846e-12
0.0177142
-0.00017227
1.91372e-12
0.0175634
-0.000159842
1.71344e-12
0.0174301
-0.000145232
1.4273e-12
0.017311
-0.000127158
1.01933e-12
0.0172124
-0.000104829
5.69116e-13
0.0171435
-7.7709e-05
2.52068e-13
0.0170996
-3.81626e-05
-8.37301e-13
0.0170946
3.62136e-08
-9.64757e-13
0.017129
4.21448e-05
-1.23014e-12
0.0172091
8.9433e-05
-1.73158e-12
0.0173463
0.000147726
-2.84045e-12
0.0175415
0.000224208
-3.61352e-12
0.0177976
0.000307736
-4.66675e-12
0.0181123
0.000389942
-5.67827e-12
0.0184718
0.000456807
-6.58079e-12
0.0188584
0.000495279
-7.33852e-12
0.0192492
0.000497288
-7.93207e-12
0.0196236
0.00046439
-8.29589e-12
0.0199649
0.000407058
-8.37917e-12
0.0202593
0.000338904
-8.23909e-12
0.0205012
0.000272158
-7.86349e-12
0.0206907
0.000214122
-7.26526e-12
0.0208312
0.000167538
-6.46855e-12
0.020932
0.000131974
-5.56508e-12
0.0210002
0.000105457
-4.73485e-12
0.0210417
8.57372e-05
-4.05466e-12
0.0210642
7.08399e-05
-3.50434e-12
0.0210726
5.9214e-05
-3.06504e-12
0.0210688
4.97043e-05
-2.72967e-12
0.0210578
4.15961e-05
-2.42613e-12
0.0210469
3.42427e-05
-2.22785e-12
0.0210297
2.74114e-05
-1.98348e-12
0.0210136
2.11789e-05
-1.86161e-12
0.0210017
1.42541e-05
-2.05933e-12
0.0209961
7.52449e-06
-2.25842e-12
0.0209905
1.07134e-06
-2.0515e-12
0.0209856
-5.54542e-06
-2.34043e-12
0.0209832
-1.15938e-05
-2.31515e-12
0.0209845
-1.77189e-05
-2.09893e-12
0.0209865
-2.33043e-05
-2.44236e-12
0.0209888
-2.85201e-05
-2.3649e-12
0.0209892
-3.30447e-05
-2.55423e-12
-3.59454e-05
-2.5628e-12
0.0161635
5.51001e-11
0.016632
3.54902e-11
0.0173442
8.8948e-12
0.0180608
-6.84325e-12
0.0187213
-1.12459e-11
0.0193212
-1.11335e-11
0.019862
-1.22456e-11
0.0203509
-1.60991e-11
0.0207963
-1.55594e-11
0.0212021
-1.58292e-11
0.0215653
-1.61113e-11
0.0218783
-1.58508e-11
0.0221347
-1.48146e-11
0.0223345
-1.31758e-11
0.022486
-1.11135e-11
0.0225995
-9.07383e-12
0.0226779
-7.09838e-12
0.0227151
-5.51572e-12
0.0227174
-4.07315e-12
0.02271
-2.79359e-12
0.0227159
-1.69716e-12
0.0227451
-1.18534e-12
0.0227913
-8.84906e-13
0.022842
-7.75602e-13
0.0228828
-7.69531e-13
0.0229045
-8.18706e-13
0.0229029
-8.4227e-13
0.0228787
-7.71739e-13
0.0228339
-5.6786e-13
0.0227729
-2.37759e-13
0.0226975
2.33254e-13
0.0226112
7.53467e-13
0.0225133
1.15699e-12
0.0224064
1.58798e-12
0.0222904
2.05597e-12
0.0221644
2.4645e-12
0.0220304
2.82547e-12
0.0218842
3.09586e-12
0.0217278
3.26493e-12
0.0215566
3.37543e-12
0.0213723
3.37177e-12
0.0211716
3.39049e-12
0.0209586
3.26636e-12
0.0207309
3.26642e-12
0.0204951
3.07471e-12
0.0202517
2.95833e-12
0.0200048
2.82503e-12
0.0197596
2.63954e-12
0.0195158
2.59132e-12
0.0192794
2.43337e-12
0.0190491
2.42134e-12
0.0188282
2.3283e-12
0.0186157
2.31465e-12
0.0184125
2.27146e-12
0.0182187
2.22604e-12
0.0180333
2.18531e-12
0.017858
2.09038e-12
0.0176928
1.98446e-12
0.0175376
1.80308e-12
0.0173979
1.54226e-12
0.0172717
1.18947e-12
0.0171668
6.98859e-13
0.0170873
4.37315e-13
0.0170352
-6.43508e-13
0.0170243
-7.46261e-13
0.0170537
-9.93451e-13
0.0171277
-1.48654e-12
0.0172558
-2.36227e-12
0.0174455
-3.32317e-12
0.0177091
-4.65614e-12
0.0180464
-5.83525e-12
0.0184435
-7.04192e-12
0.018875
-8.01465e-12
0.0193077
-8.7233e-12
0.0197109
-9.03158e-12
0.0200633
-8.97462e-12
0.0203546
-8.67893e-12
0.0205852
-8.13533e-12
0.0207594
-7.37658e-12
0.0208865
-6.39732e-12
0.0209758
-5.42716e-12
0.0210333
-4.61519e-12
0.0210667
-3.9602e-12
0.0210821
-3.43327e-12
0.0210821
-3.00537e-12
0.0210707
-2.68511e-12
0.0210546
-2.37094e-12
0.0210363
-2.19244e-12
0.0210127
-1.95927e-12
0.0209921
-1.83762e-12
0.0209805
-1.94242e-12
0.0209741
-1.94314e-12
0.020965
-2.05684e-12
0.0209595
-2.17857e-12
0.0209572
-2.24259e-12
0.0209595
-2.26436e-12
0.0209629
-2.5944e-12
0.0209656
-2.35511e-12
0.0209659
-2.59473e-12
-2.57576e-12
0.00744872
0.00884722
2.93004e-12
0.00282527
0.00462039
7.96311e-12
-0.00143351
0.00425569
1.71429e-11
-0.00331477
0.00188141
1.32367e-11
-0.00459125
0.00127531
1.73662e-11
-0.00525878
0.000665082
2.04882e-11
-0.00549345
0.00023209
2.09619e-11
-0.00580102
0.000305767
1.93067e-11
-0.00614888
0.000345606
1.96526e-11
-0.00644581
0.000294306
2.101e-11
-0.00666637
0.000217371
2.18278e-11
-0.00683381
0.000165844
1.85434e-11
-0.00695115
0.00011781
1.23586e-11
-0.00705066
9.44018e-05
2.57566e-11
-0.0071631
0.00010359
3.4814e-11
-0.00724833
7.48626e-05
4.00704e-11
-0.0072777
1.87412e-05
4.21696e-11
-0.00725851
-3.39924e-05
5.09901e-11
-0.00718392
-9.20114e-05
5.76563e-11
-0.00704718
-0.000155529
6.13727e-11
-0.0068491
-0.000217071
6.11385e-11
-0.00660016
-0.000266203
5.67977e-11
-0.00631473
-0.000300968
5.0129e-11
-0.00599646
-0.000330808
4.38912e-11
-0.00566068
-0.000345565
3.46693e-11
-0.00531203
-0.000355203
2.55816e-11
-0.00495259
-0.000362528
1.75326e-11
-0.00458444
-0.000369637
1.07641e-11
-0.00420483
-0.000379446
5.60912e-12
-0.0038127
-0.000389448
1.73504e-12
-0.00341021
-0.000399036
-1.34917e-12
-0.00298904
-0.00041723
-2.54012e-12
-0.00255545
-0.000428916
-4.00091e-12
-0.0021172
-0.000433192
-4.66249e-12
-0.00167766
-0.000435115
-4.13279e-12
-0.00123676
-0.000437071
-3.14969e-12
-0.000792271
-0.000440401
-2.18047e-12
-0.000345559
-0.000442965
-1.50454e-12
0.000119316
-0.000462425
2.85968e-12
0.000576321
-0.000456041
6.9283e-12
0.00101397
-0.000438097
1.11115e-11
0.00143366
-0.00042102
1.38096e-11
0.00184288
-0.000410902
1.56513e-11
0.00223714
-0.000397015
1.78787e-11
0.00261578
-0.000382667
2.11025e-11
0.00298113
-0.000370236
2.22176e-11
0.00334071
-0.000364903
2.46473e-11
0.00369425
-0.00036033
2.69079e-11
0.00403545
-0.000348321
2.86637e-11
0.00436232
-0.000334567
2.96926e-11
0.00467612
-0.000321948
3.05902e-11
0.00497657
-0.000309572
3.06806e-11
0.00526526
-0.000297501
3.04979e-11
0.00554105
-0.000285618
2.9501e-11
0.00580534
-0.000273416
2.8237e-11
0.0060586
-0.000261895
2.6273e-11
0.00630079
-0.000249969
2.40286e-11
0.00653291
-0.000238718
2.12748e-11
0.00675447
-0.000227286
1.82477e-11
0.00696661
-0.000216401
1.48769e-11
0.00716941
-0.000205539
1.13197e-11
0.00736243
-0.000195182
7.29902e-12
0.00754654
-0.000184831
3.44282e-12
0.00772188
-0.000175079
9.06643e-13
0.00788882
-0.000165341
-2.43327e-12
0.00804721
-0.000156189
-5.92307e-12
0.0081983
-0.000147066
-9.05516e-12
0.00834125
-0.000138557
-1.19396e-11
0.00847718
-0.000130014
-1.44456e-11
0.00860604
-0.000122104
-1.66445e-11
0.00872743
-0.000114116
-1.85011e-11
0.00884278
-0.000106694
-2.00425e-11
0.0089505
-9.92428e-05
-2.13299e-11
0.00905239
-9.22399e-05
-2.23604e-11
0.00914733
-8.5298e-05
-2.31939e-11
0.00923612
-7.87255e-05
-2.3835e-11
0.00931873
-7.22887e-05
-2.43101e-11
0.0093953
-6.61942e-05
-2.46443e-11
0.00946614
-6.02755e-05
-2.48531e-11
0.00953145
-5.46573e-05
-2.49717e-11
0.00959137
-4.9227e-05
-2.50194e-11
0.00964625
-4.40314e-05
-2.50163e-11
0.00969628
-3.90398e-05
-2.49766e-11
0.00974149
-3.42703e-05
-2.49202e-11
0.00978253
-2.96883e-05
-2.48623e-11
0.00981884
-2.52807e-05
-2.47914e-11
0.00985157
-2.11193e-05
-2.47209e-11
0.00987982
-1.70574e-05
-2.46501e-11
0.0099045
-1.30178e-05
-2.45783e-11
0.00992544
-9.41471e-06
-2.44971e-11
0.00994279
-5.90712e-06
-2.43942e-11
0.00995698
-2.27485e-06
-2.42715e-11
0.00996705
1.13733e-06
-2.40937e-11
0.00997499
4.22244e-06
-2.39094e-11
0.00997861
7.54979e-06
-2.36537e-11
0.0099793
1.13476e-05
-2.33877e-11
0.00997488
1.57041e-05
-2.30199e-11
0.00996541
2.11576e-05
-2.25869e-11
0.00994847
2.81452e-05
-2.20951e-11
3.69953e-05
-2.1713e-11
0.0114612
0.0132527
4.32409e-12
0.00790203
0.00817771
9.42844e-12
0.00602856
0.0061246
1.28644e-11
0.00354495
0.00436302
1.35969e-11
0.00179916
0.0030193
1.74959e-11
0.000234718
0.00222526
2.14133e-11
-0.00125341
0.00172094
2.22751e-11
-0.00231671
0.00137304
1.93985e-11
-0.00301435
0.00104597
1.95323e-11
-0.00347857
0.000759575
2.03777e-11
-0.00376749
0.000505672
2.09791e-11
-0.00400466
0.000403053
2.06995e-11
-0.00422881
0.000341571
2.10005e-11
-0.00438515
0.000246909
2.33963e-11
-0.00448568
0.00019677
3.38681e-11
-0.00454243
0.000122923
4.06263e-11
-0.00453274
-1.32643e-06
4.33954e-11
-0.00445875
-0.000122467
5.34624e-11
-0.00432123
-0.000247679
6.08153e-11
-0.00410921
-0.000388401
6.47052e-11
-0.0038382
-0.000510401
6.46573e-11
-0.00352479
-0.000600817
6.01157e-11
-0.00318601
-0.000657764
5.15082e-11
-0.00282311
-0.000710828
4.69541e-11
-0.00245501
-0.00072902
3.74607e-11
-0.00207871
-0.00074314
2.83878e-11
-0.00169637
-0.000754388
2.06259e-11
-0.00130417
-0.000769934
1.37247e-11
-0.000900021
-0.000787969
8.65419e-12
-0.000484441
-0.000806905
4.99857e-12
-5.1015e-05
-0.000832329
-6.62321e-14
0.000376684
-0.000845476
1.91996e-12
0.0008012
-0.000853368
-7.28908e-13
0.00122425
-0.000855392
-1.79251e-12
0.00164958
-0.00085905
-1.63808e-12
0.00207213
-0.000859007
-7.81979e-13
0.00249135
-0.00085815
2.49071e-14
0.00290703
-0.00085691
3.50052e-13
0.00330238
-0.00085667
3.57344e-12
0.00369193
-0.00084577
6.57981e-12
0.00407992
-0.000826388
1.03937e-11
0.00446481
-0.000806247
1.24736e-11
0.00483903
-0.000785348
1.41506e-11
0.00520475
-0.00076337
1.63795e-11
0.00555772
-0.000737425
1.91223e-11
0.00589795
-0.000713033
1.99284e-11
0.00622457
-0.0006936
2.16316e-11
0.00654349
-0.000682148
2.42371e-11
0.00685102
-0.000659506
2.54033e-11
0.00714762
-0.000635124
2.64972e-11
0.00743039
-0.000609305
2.72301e-11
0.00770133
-0.000584994
2.73705e-11
0.00795829
-0.000560075
2.70564e-11
0.00820397
-0.000536304
2.62765e-11
0.00843764
-0.000512153
2.50771e-11
0.00865964
-0.000488862
2.34756e-11
0.00887074
-0.000465393
2.15103e-11
0.00907101
-0.000442839
1.91715e-11
0.00926065
-0.000420224
1.65165e-11
0.00944064
-0.000398535
1.36083e-11
0.00961089
-0.000376964
1.04407e-11
0.00977189
-0.000356283
6.90804e-12
0.00992424
-0.000335839
3.37432e-12
0.0100675
-0.000316322
1.07771e-12
0.0102025
-0.000297103
-1.8761e-12
0.0103292
-0.000278814
-5.11979e-12
0.0104474
-0.000260876
-8.10192e-12
0.0105587
-0.000243785
-1.08138e-11
0.0106612
-0.000227129
-1.32766e-11
0.0107578
-0.000211131
-1.54459e-11
0.0108463
-0.000195638
-1.73155e-11
0.010929
-0.000180658
-1.88961e-11
0.0110044
-0.000166209
-2.02421e-11
0.0110739
-0.000152193
-2.13515e-11
0.0111366
-0.000138746
-2.22622e-11
0.0111936
-0.000125729
-2.29928e-11
0.0112443
-0.000113321
-2.35549e-11
0.0112896
-0.000101382
-2.39766e-11
0.0113292
-9.00399e-05
-2.42706e-11
0.0113638
-7.9153e-05
-2.4468e-11
0.0113931
-6.87902e-05
-2.45897e-11
0.0114175
-5.88246e-05
-2.46438e-11
0.0114374
-4.93199e-05
-2.46582e-11
0.0114528
-4.03006e-05
-2.46403e-11
0.0114643
-3.15272e-05
-2.46272e-11
0.0114716
-2.33569e-05
-2.45551e-11
0.0114756
-1.55351e-05
-2.44925e-11
0.0114756
-8.05955e-06
-2.44171e-11
0.0114721
-3.77487e-07
-2.43326e-11
0.0114661
5.26944e-06
-2.4235e-11
0.0114573
1.13191e-05
-2.41169e-11
0.0114463
1.73483e-05
-2.39994e-11
0.0114322
2.33847e-05
-2.38194e-11
0.0114158
2.93658e-05
-2.36409e-11
0.0113959
3.56604e-05
-2.33939e-11
0.0113736
4.24636e-05
-2.31127e-11
0.0113475
5.03403e-05
-2.27474e-11
0.0113176
5.97792e-05
-2.22897e-11
0.0112823
7.1864e-05
-2.17828e-11
8.74542e-05
-2.13658e-11
0.0153004
0.0151542
4.43007e-12
0.012777
0.010699
7.19694e-12
0.0105843
0.00831508
1.00863e-11
0.00847705
0.0064659
1.25625e-11
0.00649891
0.00499255
1.56831e-11
0.00481683
0.00389958
1.91974e-11
0.00340985
0.00312487
2.00964e-11
0.00226765
0.00251743
1.93202e-11
0.00130532
0.00201139
1.96934e-11
0.000451409
0.00161522
2.10071e-11
-0.000348409
0.00130691
2.17711e-11
-0.000994156
0.00104963
2.1584e-11
-0.0014605
0.000805856
2.42934e-11
-0.0017812
0.000564166
2.61573e-11
-0.0019212
0.000329547
3.35065e-11
-0.00192494
0.00011991
3.95355e-11
-0.00181439
-0.000122575
4.79094e-11
-0.00165934
-0.000292191
5.78328e-11
-0.0014498
-0.000476499
6.41817e-11
-0.00114998
-0.000711
6.80674e-11
-0.000800356
-0.000886369
6.8404e-11
-0.000416962
-0.00101028
6.37231e-11
-6.39163e-06
-0.00108946
4.47649e-11
0.000375343
-0.00111797
6.27162e-11
0.000764574
-0.00113814
4.16253e-11
0.00115724
-0.00115241
3.1954e-11
0.00155738
-0.00116888
2.42758e-11
0.00196632
-0.00119073
1.79515e-11
0.00238018
-0.00121244
1.35114e-11
0.00280056
-0.00123648
9.61788e-12
0.00321806
-0.00125948
6.3685e-12
0.00363952
-0.00127649
5.49376e-12
0.00406407
-0.00128646
3.61249e-12
0.0044919
-0.00129212
2.1645e-12
0.00491642
-0.00129255
1.63049e-12
0.00533851
-0.00129068
2.64804e-12
0.00575406
-0.00128352
3.86311e-12
0.00616176
-0.00127423
3.88026e-12
0.00655462
-0.00126021
5.11974e-12
0.00693822
-0.00124055
7.01925e-12
0.00731274
-0.00121346
9.4799e-12
0.007678
-0.00118327
1.09262e-11
0.00803002
-0.00115058
1.24036e-11
0.0083699
-0.00111566
1.44367e-11
0.00869693
-0.00107792
1.66855e-11
0.00900962
-0.0010382
1.72107e-11
0.00930454
-0.001002
1.83677e-11
0.00958237
-0.000973575
2.02963e-11
0.00985106
-0.00094231
2.11315e-11
0.0101077
-0.000905982
2.19695e-11
0.0103526
-0.000867757
2.26623e-11
0.0105829
-0.000828833
2.28593e-11
0.0108011
-0.000791004
2.26264e-11
0.0110059
-0.000753587
2.18619e-11
0.0111989
-0.000717195
2.09465e-11
0.0113798
-0.000681293
1.97738e-11
0.0115501
-0.000646209
1.82659e-11
0.0117093
-0.000611683
1.64037e-11
0.0118593
-0.000577962
1.42866e-11
0.0119988
-0.000545018
1.19202e-11
0.0121295
-0.000512857
9.34544e-12
0.0122506
-0.000481651
6.44928e-12
0.0123631
-0.000451234
3.32221e-12
0.0124671
-0.000421868
1.3411e-12
0.0125626
-0.000393331
-1.01906e-12
0.012651
-0.00036585
-3.98424e-12
0.0127313
-0.000339225
-6.69825e-12
0.0128052
-0.000313623
-9.23912e-12
0.0128718
-0.000288807
-1.16408e-11
0.0129319
-0.000264975
-1.37726e-11
0.0129856
-0.000241894
-1.5632e-11
0.0130327
-0.000219695
-1.72867e-11
0.013074
-0.000198204
-1.87269e-11
0.013109
-0.000177616
-1.99566e-11
0.0131387
-0.000157664
-2.09992e-11
0.0131625
-0.000138695
-2.18595e-11
0.0131815
-0.000120415
-2.25575e-11
0.0131953
-0.000103158
-2.3107e-11
0.0132047
-8.65625e-05
-2.3538e-11
0.0132092
-7.08989e-05
-2.38629e-11
0.0132098
-5.58438e-05
-2.41042e-11
0.0132056
-4.15065e-05
-2.42436e-11
0.0131984
-2.79919e-05
-2.43596e-11
0.0131869
-1.52424e-05
-2.44178e-11
0.013173
-2.81974e-06
-2.45098e-11
0.0131561
7.63101e-06
-2.43999e-11
0.013138
1.76347e-05
-2.43454e-11
0.0131171
2.73372e-05
-2.42408e-11
0.0130949
3.67809e-05
-2.41739e-11
0.0130695
4.55849e-05
-2.40581e-11
0.0130413
5.40409e-05
-2.39249e-11
0.0130115
6.23464e-05
-2.37723e-11
0.0129786
7.04877e-05
-2.35714e-11
0.0129443
7.86459e-05
-2.33682e-11
0.0129069
8.69229e-05
-2.30875e-11
0.0128678
9.57489e-05
-2.27885e-11
0.0128258
0.000105568
-2.23855e-11
0.0127815
0.000117161
-2.19066e-11
0.0127343
0.000131504
-2.13333e-11
0.000150141
-2.07991e-11
0.0174121
0.0159071
3.99629e-12
0.0157118
0.0123962
6.3626e-12
0.0140601
0.00996457
8.22632e-12
0.0123359
0.00818491
1.15769e-11
0.010633
0.00669006
1.43926e-11
0.00898372
0.00554073
1.75089e-11
0.00745934
0.00464141
1.821e-11
0.00609813
0.00387123
1.85203e-11
0.00493165
0.00317635
1.92874e-11
0.00396173
0.00258594
2.01986e-11
0.00314163
0.00212782
2.07184e-11
0.00246334
0.0017287
2.18154e-11
0.00191292
0.00135453
2.51562e-11
0.0014866
0.000985301
3.0116e-11
0.00118556
0.000622328
3.61318e-11
0.00103663
0.000259111
4.04433e-11
0.00105238
-0.000151421
4.82197e-11
0.00123083
-0.000489858
5.6784e-11
0.00151262
-0.000784286
6.61906e-11
0.00187403
-0.00110069
6.76076e-11
0.00228412
-0.00132812
6.56695e-11
0.0027044
-0.00146343
6.15587e-11
0.00312421
-0.00154076
5.34646e-11
0.00354895
-0.00157327
4.99522e-11
0.00397505
-0.001591
4.09868e-11
0.00440636
-0.0016068
3.33158e-11
0.00484585
-0.00162837
2.71673e-11
0.0052897
-0.00165262
2.1807e-11
0.00573927
-0.00167803
1.7912e-11
0.00618968
-0.00170145
1.45348e-11
0.00663945
-0.00172225
1.19927e-11
0.00708613
-0.00173599
1.05378e-11
0.00753096
-0.00174252
9.24285e-12
0.00796928
-0.00174173
7.55194e-12
0.00840117
-0.00173445
6.45213e-12
0.00882236
-0.00172227
6.26568e-12
0.00923083
-0.00170332
7.09279e-12
0.00962468
-0.00167994
7.50213e-12
0.0100021
-0.00165011
7.56645e-12
0.0103645
-0.00161545
8.26356e-12
0.0107118
-0.0015739
9.14417e-12
0.0110439
-0.00152914
9.77614e-12
0.0113589
-0.00148069
1.07603e-11
0.0116597
-0.00143108
1.1859e-11
0.0119451
-0.00137842
1.37495e-11
0.0122143
-0.00132343
1.4047e-11
0.0124634
-0.00126799
1.46492e-11
0.0126897
-0.00121825
1.55063e-11
0.0129045
-0.00117674
1.66371e-11
0.0131074
-0.00112854
1.68475e-11
0.0132965
-0.00107678
1.73658e-11
0.013473
-0.00102492
1.76361e-11
0.0136365
-0.000973236
1.75285e-11
0.0137878
-0.000923105
1.72799e-11
0.0139274
-0.000873769
1.66825e-11
0.0140557
-0.000826063
1.57456e-11
0.0141737
-0.000779143
1.46541e-11
0.0142813
-0.000733846
1.33492e-11
0.0143795
-0.000689248
1.18258e-11
0.0144686
-0.000646276
1.00989e-11
0.0145491
-0.00060407
8.1815e-12
0.0146218
-0.000563499
5.9722e-12
0.0146864
-0.000523835
3.42534e-12
0.0147439
-0.000485756
1.51374e-12
0.0147938
-0.000448732
-5.11944e-14
0.0148371
-0.000413182
-2.44073e-12
0.0148734
-0.000378764
-4.90705e-12
0.0149032
-0.000345668
-7.26393e-12
0.0149267
-0.000313708
-9.47111e-12
0.0149437
-0.000282896
-1.15441e-11
0.0149551
-0.000253164
-1.35493e-11
0.0149604
-0.000224484
-1.53242e-11
0.0149602
-0.0001969
-1.68811e-11
0.0149547
-0.000170269
-1.82995e-11
0.014944
-0.000144859
-1.94852e-11
0.0149288
-0.000120448
-2.05429e-11
0.0149089
-9.7365e-05
-2.13868e-11
0.0148851
-7.52832e-05
-2.21369e-11
0.0148573
-5.43814e-05
-2.27258e-11
0.0148258
-3.44684e-05
-2.32381e-11
0.0147911
-1.58259e-05
-2.36458e-11
0.0147532
1.96362e-06
-2.38632e-11
0.0147142
1.7035e-05
-2.41248e-11
0.0146732
3.19238e-05
-2.42259e-11
0.0146307
4.61291e-05
-2.42634e-11
0.0145857
5.95867e-05
-2.42894e-11
0.014538
7.2249e-05
-2.43039e-11
0.0144887
8.44271e-05
-2.42036e-11
0.0144368
9.60475e-05
-2.40971e-11
0.0143841
0.000107134
-2.39706e-11
0.0143284
0.000117655
-2.37664e-11
0.0142726
0.000127727
-2.3612e-11
0.0142142
0.000137557
-2.33317e-11
0.0141556
0.000147119
-2.31241e-11
0.0140948
0.000156802
-2.27754e-11
0.0140336
0.000166665
-2.2466e-11
0.0139708
0.000177502
-2.20129e-11
0.0139074
0.00018974
-2.15127e-11
0.0138428
0.000204638
-2.08817e-11
0.000223779
-2.02361e-11
0.0185718
0.0161941
4.31722e-12
0.0175387
0.0134284
5.73246e-12
0.0163153
0.0111858
7.46106e-12
0.0150291
0.00946693
1.05101e-11
0.0136827
0.0080307
1.34052e-11
0.0123341
0.0068822
1.56233e-11
0.0110116
0.00595353
1.73938e-11
0.0097343
0.00513996
1.83387e-11
0.00849662
0.00440417
1.98285e-11
0.00735071
0.00372453
2.13191e-11
0.00636463
0.00310977
2.29296e-11
0.00554764
0.00254078
2.55586e-11
0.00489877
0.00199804
2.94309e-11
0.00441702
0.00145722
3.40742e-11
0.00411015
0.000915521
3.86168e-11
0.00397521
0.00037666
4.3465e-11
0.00395434
-0.00015475
4.64519e-11
0.00412985
-0.00069395
5.16555e-11
0.0044842
-0.00117476
5.81017e-11
0.00489878
-0.00155642
5.83346e-11
0.0053652
-0.00183564
5.77527e-11
0.00584671
-0.00199129
5.62611e-11
0.00633536
-0.00207452
5.09275e-11
0.00682386
-0.00210486
4.7231e-11
0.00730646
-0.00211058
4.22895e-11
0.00778584
-0.00211904
3.6726e-11
0.00825953
-0.00213243
3.15116e-11
0.00872896
-0.00215037
2.73488e-11
0.00919206
-0.00216786
2.37836e-11
0.00964934
-0.00218388
2.11419e-11
0.0100956
-0.0021928
1.91043e-11
0.0105318
-0.00219387
1.75469e-11
0.0109536
-0.00218451
1.59326e-11
0.0113624
-0.00216651
1.40961e-11
0.0117541
-0.00214042
1.22679e-11
0.0121277
-0.00210755
1.09106e-11
0.0124819
-0.00206861
1.02666e-11
0.0128161
-0.00202387
1.01726e-11
0.0131305
-0.00197428
9.90094e-12
0.0134265
-0.00191974
9.69174e-12
0.0137061
-0.00186116
9.39587e-12
0.0139695
-0.00179903
9.17104e-12
0.0142186
-0.00173464
9.19303e-12
0.014451
-0.00166898
9.81891e-12
0.0146672
-0.00160162
1.01904e-11
0.0148669
-0.00153116
1.03104e-11
0.0150504
-0.00145996
1.05721e-11
0.0152152
-0.00139258
1.09531e-11
0.0153631
-0.00133443
1.14933e-11
0.0155006
-0.00127642
1.14475e-11
0.0156293
-0.00121593
1.17645e-11
0.0157477
-0.00115448
1.21219e-11
0.0158563
-0.00109254
1.22728e-11
0.0159547
-0.00103219
1.22255e-11
0.0160439
-0.000972782
1.20072e-11
0.0161236
-0.000915521
1.16708e-11
0.0161948
-0.000859239
1.11389e-11
0.0162574
-0.00080501
1.04203e-11
0.0163117
-0.000751775
9.53192e-12
0.0163584
-0.000700454
8.45819e-12
0.0163973
-0.000650249
7.21609e-12
0.0164297
-0.000601845
5.76643e-12
0.0164549
-0.000554735
3.93667e-12
0.0164746
-0.000509325
2.03494e-12
0.0164877
-0.000465349
8.47481e-13
0.0164961
-0.000422955
-6.84109e-13
0.0164986
-0.000382033
-2.93419e-12
0.0164968
-0.000342545
-5.09941e-12
0.0164895
-0.000304467
-7.22082e-12
0.0164781
-0.000267692
-9.28088e-12
0.0164616
-0.000232238
-1.12303e-11
0.0164413
-0.000198037
-1.30879e-11
0.0164162
-0.000165129
-1.4795e-11
0.0163874
-0.000133506
-1.63411e-11
0.0163541
-0.00010329
-1.76997e-11
0.0163175
-7.45342e-05
-1.89332e-11
0.0162769
-4.7228e-05
-1.99805e-11
0.0162335
-2.16556e-05
-2.0933e-11
0.0161872
2.38623e-06
-2.17445e-11
0.0161394
2.39936e-05
-2.24455e-11
0.0160902
4.46376e-05
-2.30193e-11
0.0160387
6.41125e-05
-2.35101e-11
0.0159848
8.25605e-05
-2.38339e-11
0.0159274
9.98608e-05
-2.40145e-11
0.0158687
0.000116581
-2.41788e-11
0.0158064
0.000132249
-2.42236e-11
0.0157428
0.000147233
-2.42578e-11
0.0156763
0.000161286
-2.41729e-11
0.0156084
0.000174716
-2.40631e-11
0.0155385
0.000187393
-2.3899e-11
0.015467
0.000199394
-2.36736e-11
0.0153946
0.000210772
-2.34472e-11
0.0153206
0.000221612
-2.31306e-11
0.0152466
0.000232074
-2.28356e-11
0.0151714
0.000242295
-2.24388e-11
0.0150966
0.000252565
-2.2044e-11
0.0150215
0.000263304
-2.15345e-11
0.0149472
0.000275198
-2.09599e-11
0.0148737
0.000289021
-2.02547e-11
0.000306736
-1.94498e-11
0.0193705
0.0162259
3.5034e-12
0.0187018
0.0140937
5.06593e-12
0.0178262
0.0120602
6.96449e-12
0.0168688
0.0104215
9.51097e-12
0.0158265
0.00906796
1.30118e-11
0.0147728
0.00793093
1.47012e-11
0.0137105
0.00700659
1.71978e-11
0.0126419
0.00619881
1.94347e-11
0.0115803
0.00545275
2.24266e-11
0.0105437
0.0047489
2.58289e-11
0.00957998
0.00405954
2.99289e-11
0.00871892
0.00338673
3.50969e-11
0.00800309
0.00269654
4.01502e-11
0.00745341
0.00198765
4.45355e-11
0.00708988
0.00125036
4.71967e-11
0.00692809
0.000505506
4.83114e-11
0.00696682
-0.000235812
4.76338e-11
0.00719169
-0.000964129
4.54906e-11
0.00758537
-0.00161962
4.32404e-11
0.00808159
-0.00210809
4.07496e-11
0.00860844
-0.00242029
3.95632e-11
0.00914798
-0.00258453
3.29799e-11
0.00967925
-0.00265525
3.97138e-11
0.010198
-0.0026735
4.3589e-11
0.0106982
-0.00265608
4.60156e-11
0.0111787
-0.00264142
4.27507e-11
0.011636
-0.0026298
3.84493e-11
0.0120693
-0.00262216
3.50492e-11
0.0124826
-0.00261573
3.25169e-11
0.012875
-0.00260671
2.98019e-11
0.0132483
-0.00259273
2.73511e-11
0.0136019
-0.0025709
2.53353e-11
0.0139372
-0.00254017
2.31609e-11
0.0142537
-0.00250106
2.07914e-11
0.014552
-0.00245461
1.82733e-11
0.0148325
-0.00240222
1.59098e-11
0.0150955
-0.00234456
1.39476e-11
0.0153424
-0.00228262
1.25552e-11
0.0155745
-0.00221719
1.14391e-11
0.015792
-0.0021473
1.04469e-11
0.0159958
-0.00207408
9.48135e-12
0.0161854
-0.00199773
8.61259e-12
0.0163618
-0.00191986
7.90173e-12
0.0165254
-0.00184113
7.41625e-12
0.0166779
-0.00176242
7.09529e-12
0.016819
-0.00168035
7.0883e-12
0.0169493
-0.00159755
7.07328e-12
0.0170669
-0.00151723
7.02419e-12
0.0171706
-0.00144427
6.91186e-12
0.0172641
-0.0013763
6.70824e-12
0.0173508
-0.00130859
6.88039e-12
0.0174292
-0.00123981
7.25688e-12
0.0175003
-0.00117027
7.64003e-12
0.017563
-0.0011019
7.92182e-12
0.0176178
-0.00103447
8.09282e-12
0.0176646
-0.00096915
8.15844e-12
0.0177034
-0.000905175
8.11978e-12
0.0177351
-0.000843309
7.9286e-12
0.017759
-0.000782863
7.60365e-12
0.0177765
-0.000724346
7.0989e-12
0.0177864
-0.000667363
6.44804e-12
0.0177905
-0.000612178
5.59935e-12
0.0177878
-0.000558649
4.5184e-12
0.0177799
-0.00050684
2.96084e-12
0.0177663
-0.00045675
1.54011e-12
0.017748
-0.000408303
5.69018e-13
0.0177249
-0.000361539
-7.99191e-13
0.0176975
-0.000316303
-2.85563e-12
0.0176657
-0.000272649
-4.86456e-12
0.0176298
-0.000230426
-6.89335e-12
0.0175901
-0.000189728
-8.86279e-12
0.0175465
-0.000150458
-1.07797e-11
0.0174997
-0.00011278
-1.26241e-11
0.017449
-7.64679e-05
-1.42172e-11
0.0173959
-4.23742e-05
-1.57589e-11
0.0173396
-1.00042e-05
-1.71599e-11
0.0172827
1.95233e-05
-1.84702e-11
0.0172237
4.71693e-05
-1.96168e-11
0.0171639
7.34629e-05
-2.06871e-11
0.0171003
9.83751e-05
-2.15394e-11
0.0170355
0.000121832
-2.23204e-11
0.0169669
0.000144184
-2.29366e-11
0.0168971
0.000165137
-2.34473e-11
0.0168237
0.000185103
-2.37911e-11
0.0167491
0.000203724
-2.40405e-11
0.0166718
0.000221611
-2.41785e-11
0.016593
0.000238128
-2.42146e-11
0.0165123
0.000254037
-2.41855e-11
0.0164298
0.000268608
-2.40494e-11
0.0163464
0.000282703
-2.38817e-11
0.016261
0.000295517
-2.36144e-11
0.0161756
0.000307899
-2.33284e-11
0.0160885
0.000319153
-2.29589e-11
0.0160018
0.000330094
-2.25685e-11
0.0159141
0.000340219
-2.21067e-11
0.0158274
0.000350327
-2.16088e-11
0.0157408
0.00036025
-2.10232e-11
0.0156559
0.000370992
-2.03518e-11
0.0155724
0.000382846
-1.95613e-11
0.000397481
-1.8583e-11
0.0199437
0.0162044
3.4981e-12
0.0195461
0.0144897
4.61336e-12
0.0188656
0.0127359
6.72932e-12
0.0181213
0.0111619
9.03517e-12
0.0173238
0.00985998
1.21285e-11
0.0164845
0.00876326
1.50328e-11
0.0156509
0.00783273
1.81352e-11
0.014807
0.00702968
2.23177e-11
0.0139619
0.00628583
2.74964e-11
0.0131153
0.0055752
3.42234e-11
0.0123064
0.00484405
4.32914e-11
0.0115722
0.00409642
5.21776e-11
0.0109414
0.00329278
5.75631e-11
0.0104485
0.00244896
5.90254e-11
0.0101263
0.00153534
5.6385e-11
0.0100212
0.000570733
5.36515e-11
0.0100982
-0.000358193
4.52354e-11
0.0103421
-0.0012494
3.22306e-11
0.0107061
-0.00202768
2.7357e-11
0.0111167
-0.00255787
1.92146e-11
0.0115282
-0.00286469
1.43253e-11
0.0120126
-0.00309956
1.60022e-11
0.012483
-0.00315384
2.32094e-11
0.0128713
-0.00310081
3.67439e-11
0.0133063
-0.00312826
5.3919e-11
0.0137265
-0.00309875
5.16956e-11
0.014121
-0.00305885
4.85766e-11
0.0144865
-0.00301777
4.50619e-11
0.0148257
-0.00298176
4.12311e-11
0.0151435
-0.00294886
3.79136e-11
0.0154424
-0.00291396
3.53343e-11
0.0157241
-0.00287317
3.29044e-11
0.0159908
-0.00282547
3.01894e-11
0.0162421
-0.00277056
2.70871e-11
0.0164801
-0.00270922
2.38436e-11
0.0167045
-0.00264201
2.05357e-11
0.0169163
-0.0025703
1.75766e-11
0.017117
-0.0024956
1.50246e-11
0.0173058
-0.00241682
1.27415e-11
0.0174835
-0.00233466
1.0829e-11
0.0176505
-0.00224975
9.22592e-12
0.0178071
-0.0021625
7.66332e-12
0.0179542
-0.00207393
6.29775e-12
0.0180913
-0.00198472
5.19853e-12
0.0182191
-0.00189639
4.14687e-12
0.0183367
-0.00180443
4.04457e-12
0.0184455
-0.00171234
3.85027e-12
0.0185432
-0.00162118
3.57738e-12
0.0186279
-0.00153442
3.22108e-12
0.018703
-0.00145754
2.67284e-12
0.0187689
-0.00138044
2.92023e-12
0.0188265
-0.00130418
3.31705e-12
0.0188773
-0.00122789
3.83312e-12
0.0189205
-0.00115245
4.38976e-12
0.0189563
-0.0010778
4.92028e-12
0.0189844
-0.00100494
5.37031e-12
0.0190047
-0.000933648
5.75732e-12
0.0190181
-0.000864397
6.0224e-12
0.019024
-0.000796958
6.19439e-12
0.0190236
-0.000731434
6.19527e-12
0.0190163
-0.000667811
6.05322e-12
0.0190033
-0.000605997
5.70845e-12
0.018984
-0.000546147
5.14713e-12
0.0189594
-0.00048805
4.33963e-12
0.0189294
-0.000431916
3.07942e-12
0.0188947
-0.00037746
1.6005e-12
0.0188553
-0.000324877
6.90164e-13
0.0188118
-0.000273876
-6.00009e-13
0.0187639
-0.000224636
-2.54131e-12
0.0187121
-0.000176928
-4.52352e-12
0.0186562
-0.00013101
-6.49712e-12
0.0185967
-8.67005e-05
-8.44623e-12
0.0185337
-4.44718e-05
-1.03818e-11
0.0184673
-3.93412e-06
-1.18747e-11
0.0184006
3.2062e-05
-1.37165e-11
0.0183318
6.70503e-05
-1.53781e-11
0.0182606
0.000100132
-1.6923e-11
0.0181859
0.00013137
-1.82704e-11
0.0181092
0.000160892
-1.95651e-11
0.0180291
0.000188881
-2.05959e-11
0.0179473
0.000215263
-2.15766e-11
0.0178624
0.000240254
-2.23219e-11
0.0177759
0.000263696
-2.29934e-11
0.0176869
0.000285869
-2.34641e-11
0.0175964
0.000306535
-2.38112e-11
0.0175042
0.000326125
-2.40355e-11
0.0174103
0.000344278
-2.41033e-11
0.0173155
0.00036147
-2.41219e-11
0.0172189
0.00037729
-2.39701e-11
0.0171219
0.000392221
-2.38117e-11
0.0170234
0.000405874
-2.34938e-11
0.0169251
0.000418654
-2.31761e-11
0.0168256
0.000430282
-2.27265e-11
0.0167268
0.00044109
-2.22624e-11
0.0166277
0.000450982
-2.16972e-11
0.0165298
0.00046025
-2.10901e-11
0.0164326
0.000469075
-2.03897e-11
0.0163375
0.000477874
-1.9583e-11
0.0162442
0.000487294
-1.86822e-11
0.000498044
-1.7503e-11
0.0204279
0.0161288
4.18553e-12
0.0201743
0.0147426
5.4643e-12
0.0196814
0.0132269
7.12342e-12
0.0190486
0.0117897
9.51353e-12
0.0183897
0.0105133
1.24784e-11
0.0177114
0.0094334
1.62259e-11
0.0170252
0.0085088
2.05142e-11
0.0163493
0.00769215
2.67327e-11
0.0156826
0.00693214
3.60417e-11
0.0150374
0.00619772
4.69884e-11
0.0144377
0.00541078
6.17278e-11
0.0138789
0.00461271
7.27428e-11
0.0133649
0.00376598
7.45508e-11
0.0130047
0.00276588
7.62663e-11
0.0128567
0.00162926
7.40625e-11
0.0128451
0.000550145
4.17094e-11
0.0129773
-0.000528329
3.65832e-11
0.0132028
-0.0015135
2.54302e-11
0.0134318
-0.00228322
4.38593e-12
0.0136329
-0.0027661
-3.01604e-11
0.0138375
-0.00308411
-6.81284e-12
0.0139913
-0.00326676
-2.27733e-12
0.014279
-0.00346106
1.03678e-11
0.0147088
-0.00355664
2.99091e-11
0.0150404
-0.00349167
4.39206e-11
0.0153875
-0.00348583
6.03258e-11
0.0157601
-0.00347163
6.00712e-11
0.0161081
-0.00340324
5.77633e-11
0.0164332
-0.0033414
5.2736e-11
0.016732
-0.00327965
4.77514e-11
0.0170096
-0.00322059
4.35501e-11
0.0172688
-0.00315984
3.97497e-11
0.0175148
-0.00309584
3.59473e-11
0.0177478
-0.00302691
3.19474e-11
0.0179711
-0.0029523
2.80413e-11
0.0181839
-0.0028734
2.39452e-11
0.0183869
-0.00278924
2.03886e-11
0.0185785
-0.00270103
1.71723e-11
0.018759
-0.0026088
1.37955e-11
0.0189281
-0.00251414
1.12358e-11
0.0190862
-0.00241699
8.92072e-12
0.019233
-0.00231795
6.74242e-12
0.0193689
-0.0022172
4.86494e-12
0.0194939
-0.00211687
3.4375e-12
0.0196083
-0.00201676
1.98181e-12
0.0197146
-0.00191671
1.77576e-12
0.0198118
-0.00181426
1.43394e-12
0.0198982
-0.00171235
1.02104e-12
0.0199732
-0.00161283
5.58133e-13
0.0200341
-0.00152198
-1.63572e-13
0.0200853
-0.00143495
1.6362e-13
0.0201283
-0.00135099
5.41998e-13
0.0201636
-0.00126743
1.07171e-12
0.0201916
-0.00118518
1.76376e-12
0.0202115
-0.00110344
2.54152e-12
0.0202244
-0.00102352
3.30133e-12
0.0202291
-0.000945032
4.04621e-12
0.0202271
-0.000868725
4.68689e-12
0.0202169
-0.000794332
5.26623e-12
0.0202001
-0.00072209
5.67061e-12
0.0201757
-0.000651906
5.93652e-12
0.0201454
-0.000583756
5.97776e-12
0.0201088
-0.000517696
5.79383e-12
0.0200671
-0.000453584
5.35934e-12
0.0200201
-0.000391511
4.61591e-12
0.0199685
-0.000331292
3.55527e-12
0.0199122
-0.000272975
1.89142e-12
0.0198516
-0.000216431
7.92397e-13
0.0197866
-0.000161666
-3.63221e-13
0.0197179
-0.000108707
-2.23729e-12
0.0196456
-5.77439e-05
-4.19576e-12
0.0195704
-9.22797e-06
-6.12785e-12
0.019494
3.59841e-05
-8.06695e-12
0.0194166
7.90716e-05
-1.03803e-11
0.0193363
0.000119533
-1.2146e-11
0.0192533
0.000157878
-1.38582e-11
0.0191685
0.00019439
-1.55286e-11
0.0190806
0.000228864
-1.69995e-11
0.0189912
0.000261516
-1.84318e-11
0.0188986
0.000292289
-1.96029e-11
0.0188049
0.000321311
-2.07439e-11
0.0187084
0.00034864
-2.16113e-11
0.0186109
0.000374242
-2.24227e-11
0.0185112
0.000398355
-2.29962e-11
0.0184104
0.000420752
-2.34543e-11
0.018308
0.000441863
-2.37526e-11
0.0182041
0.000461313
-2.38832e-11
0.0180994
0.000479608
-2.39427e-11
0.0179929
0.000496314
-2.38005e-11
0.0178863
0.000511906
-2.36539e-11
0.0177779
0.00052602
-2.32955e-11
0.0176702
0.000538979
-2.29623e-11
0.0175611
0.000550595
-2.24279e-11
0.0174532
0.000560989
-2.19155e-11
0.0173448
0.000570235
-2.12265e-11
0.0172381
0.000578262
-2.05269e-11
0.0171321
0.000585486
-1.96735e-11
0.0170288
0.000591764
-1.87189e-11
0.0169276
0.000598087
-1.76609e-11
0.000604408
-1.61979e-11
0.0208034
0.0160139
4.52462e-12
0.0206644
0.0148775
6.16759e-12
0.0203143
0.0135754
7.90928e-12
0.0198228
0.0122773
1.06116e-11
0.0192521
0.0110768
1.42174e-11
0.0186715
0.0100065
1.90556e-11
0.0180962
0.00907093
2.55435e-11
0.0175279
0.00824241
3.5566e-11
0.0169969
0.00743824
4.92269e-11
0.0165287
0.00663072
6.77145e-11
0.0160472
0.00584062
8.79279e-11
0.0156266
0.00498568
9.20624e-11
0.0153548
0.00398221
9.90975e-11
0.015272
0.002784
1.0732e-10
0.0152442
0.00160924
7.02039e-11
0.0153439
0.000421593
2.9278e-11
0.0154866
-0.00069939
2.18457e-11
0.0156049
-0.001652
1.48047e-12
0.0156162
-0.00229183
-3.6285e-11
0.0156207
-0.00276344
-4.57615e-11
0.0156541
-0.00311163
-3.24725e-11
0.0157473
-0.00336775
5.09297e-13
0.0158223
-0.00354585
3.75131e-12
0.0159971
-0.00374512
1.02298e-11
0.0163509
-0.00386711
2.42817e-11
0.0166787
-0.00384924
5.22422e-11
0.0169895
-0.00382565
6.79025e-11
0.0173419
-0.00379835
6.98225e-11
0.0176931
-0.00373226
6.45364e-11
0.0180177
-0.00363986
5.83867e-11
0.0183106
-0.00354643
5.21509e-11
0.0185752
-0.00345495
4.61249e-11
0.0188176
-0.00336562
4.05049e-11
0.0190423
-0.00327676
3.53258e-11
0.0192548
-0.00318595
3.06781e-11
0.0194546
-0.00309205
2.62561e-11
0.0196425
-0.00299326
2.22366e-11
0.0198198
-0.00289106
1.85807e-11
0.0199843
-0.00278443
1.47303e-11
0.0201373
-0.00267622
1.18485e-11
0.0202781
-0.00256515
8.81381e-12
0.0204054
-0.00245204
6.36289e-12
0.0205217
-0.00233905
4.14447e-12
0.0206263
-0.00222668
2.45557e-12
0.0207207
-0.00211478
1.06483e-12
0.0208072
-0.00200562
-9.31169e-14
0.0208849
-0.00189328
-2.61179e-13
0.0209528
-0.00178145
-4.62721e-13
0.0210105
-0.00167101
-7.79905e-13
0.0210556
-0.00156752
-1.29939e-12
0.0210893
-0.00146969
-1.02463e-12
0.0211139
-0.00137693
-8.18234e-13
0.0211304
-0.00128576
-5.07513e-13
0.0211403
-0.00119668
4.18278e-14
0.0211426
-0.00110859
9.78739e-13
0.0211388
-0.00102238
1.9572e-12
0.0211274
-0.000937651
2.97732e-12
0.0211101
-0.000855064
3.91408e-12
0.0210853
-0.000774476
4.80734e-12
0.0210546
-0.000696145
5.5134e-12
0.0210166
-0.000620022
6.08565e-12
0.0209728
-0.000546117
6.4012e-12
0.0209226
-0.000474428
6.49446e-12
0.0208671
-0.000404849
6.30735e-12
0.0208064
-0.000337376
5.82691e-12
0.0207411
-0.000271867
5.06945e-12
0.0206713
-0.0002083
3.95744e-12
0.0205974
-0.000146636
2.34334e-12
0.0205196
-8.6737e-05
9.45808e-13
0.0204385
-2.94222e-05
-1.78362e-13
0.0203554
2.49769e-05
-2.00375e-12
0.0202706
7.65124e-05
-4.1473e-12
0.0201835
0.000125465
-6.12711e-12
0.0200941
0.000171997
-8.24151e-12
0.0200025
0.00021616
-1.02275e-11
0.0199081
0.000257897
-1.21195e-11
0.0198125
0.000297471
-1.39417e-11
0.019714
0.000334885
-1.55714e-11
0.019615
0.000370175
-1.71441e-11
0.0195133
0.000403475
-1.84752e-11
0.0194115
0.000434656
-1.97529e-11
0.0193075
0.000464092
-2.07627e-11
0.0192033
0.000491404
-2.16911e-11
0.0190974
0.000517224
-2.23762e-11
0.0189908
0.000540918
-2.29296e-11
0.0188831
0.000563322
-2.33042e-11
0.0187741
0.000583649
-2.34996e-11
0.0186647
0.000602802
-2.35956e-11
0.0185538
0.000619967
-2.34815e-11
0.0184429
0.000635963
-2.33317e-11
0.0183307
0.000650085
-2.29616e-11
0.0182191
0.000662948
-2.2589e-11
0.0181066
0.000674044
-2.20005e-11
0.0179953
0.000683719
-2.14101e-11
0.0178839
0.000691719
-2.06153e-11
0.0177744
0.000698129
-1.97886e-11
0.017666
0.000703002
-1.87693e-11
0.0175607
0.000706197
-1.76166e-11
0.0174584
0.00070846
-1.63569e-11
0.000709407
-1.45377e-11
0.0211031
0.0159262
5.50765e-12
0.0210298
0.0149467
7.7146e-12
0.0207834
0.0138172
9.99375e-12
0.0204093
0.0126456
1.31588e-11
0.019957
0.0115223
1.76927e-11
0.0194603
0.0104892
2.48192e-11
0.0189771
0.00954017
3.43453e-11
0.0185187
0.00867529
5.05757e-11
0.0181207
0.00779877
7.24451e-11
0.0177127
0.00698605
1.00912e-10
0.0173835
0.00611245
1.07262e-10
0.0171967
0.00511295
1.20066e-10
0.0171991
0.00389715
1.41224e-10
0.0172597
0.00266132
1.09521e-10
0.0173591
0.00147681
4.4754e-11
0.0174772
0.000273674
3.4129e-11
0.01755
-0.000793848
1.01238e-11
0.0174868
-0.00158992
-2.67358e-11
0.0173734
-0.00214805
-8.09921e-11
0.0172438
-0.00260984
-6.36258e-11
0.0171527
-0.003006
-4.09614e-11
0.0171253
-0.00334047
-1.67588e-11
0.017175
-0.00360735
9.03822e-12
0.017223
-0.00380702
1.31836e-11
0.0173587
-0.00402015
2.1744e-11
0.0176388
-0.0041563
3.57447e-11
0.0179496
-0.00417022
5.40886e-11
0.0182177
-0.00410889
6.47288e-11
0.0185343
-0.00409182
6.71009e-11
0.018869
-0.00401532
6.47687e-11
0.0191802
-0.00389587
5.98773e-11
0.0194586
-0.00376802
5.29956e-11
0.0197058
-0.00364438
4.55717e-11
0.0199272
-0.00352634
3.87991e-11
0.02013
-0.00341247
3.29757e-11
0.0203163
-0.0032993
2.78913e-11
0.0204914
-0.00318477
2.3463e-11
0.0206529
-0.00306782
1.95462e-11
0.0208038
-0.00294756
1.58191e-11
0.0209426
-0.00282521
1.24422e-11
0.0210682
-0.00270037
9.29694e-12
0.0211833
-0.00257586
7.23995e-12
0.0212868
-0.00244994
4.73784e-12
0.0213795
-0.0023254
2.52338e-12
0.0214631
-0.00220223
7.33813e-13
0.0215383
-0.00208324
-3.33086e-13
0.0216058
-0.00196159
-4.5949e-13
0.0216651
-0.00184102
-7.16192e-13
0.0217155
-0.00172095
-1.10056e-12
0.0217531
-0.00160532
-1.4963e-12
0.0217806
-0.00149851
-1.63402e-12
0.0217968
-0.00139516
-1.24147e-12
0.0218038
-0.00129551
-1.00188e-12
0.0218039
-0.00119906
-5.94303e-13
0.0217973
-0.00110454
1.19224e-13
0.0217851
-0.00101209
1.22801e-12
0.0217661
-0.000921465
2.41642e-12
0.0217409
-0.000832818
3.5581e-12
0.0217083
-0.000746347
4.65453e-12
0.0216691
-0.000662006
5.55296e-12
0.0216229
-0.00058011
6.30609e-12
0.0215703
-0.000500417
6.78127e-12
0.0215115
-0.000423185
7.04425e-12
0.0214471
-0.00034808
7.00691e-12
0.0213772
-0.00027526
6.71276e-12
0.0213022
-0.000204395
6.1312e-12
0.0212224
-0.000135615
5.26839e-12
0.0211383
-6.87525e-05
4.08553e-12
0.0210507
-4.37392e-06
2.60357e-12
0.0209615
5.62183e-05
9.30618e-13
0.0208704
0.000114443
-3.23993e-13
0.0207768
0.000169911
-2.34336e-12
0.0206814
0.000222669
-4.38129e-12
0.0205833
0.000272864
-6.40059e-12
0.0204834
0.000320502
-8.44386e-12
0.0203806
0.000365638
-1.04051e-11
0.0202765
0.000408222
-1.23415e-11
0.0201697
0.000448507
-1.41096e-11
0.0200622
0.000486299
-1.58172e-11
0.0199525
0.000522014
-1.73003e-11
0.0198424
0.000555252
-1.86957e-11
0.0197306
0.000586662
-1.98451e-11
0.0196184
0.000615614
-2.08681e-11
0.0195052
0.000642967
-2.1664e-11
0.0193912
0.000667897
-2.22876e-11
0.0192767
0.000691381
-2.2736e-11
0.0191611
0.000712525
-2.29763e-11
0.0190456
0.000732278
-2.31053e-11
0.0189287
0.000749814
-2.30099e-11
0.0188123
0.000765902
-2.28515e-11
0.0186947
0.000779897
-2.24693e-11
0.0185781
0.000792278
-2.20468e-11
0.0184608
0.000802636
-2.1407e-11
0.0183451
0.000811095
-2.07205e-11
0.0182296
0.000817507
-1.9828e-11
0.0181164
0.000821571
-1.88426e-11
0.0180049
0.000823492
-1.76451e-11
0.0178971
0.000822574
-1.62354e-11
0.0177929
0.000819839
-1.47412e-11
0.000813934
-1.25182e-11
0.0214205
0.0158986
8.07524e-12
0.0213528
0.0150112
1.00506e-11
0.0211676
0.0139963
1.32025e-11
0.0208709
0.0129338
1.76626e-11
0.0205106
0.01187
2.46673e-11
0.0201178
0.010867
3.41854e-11
0.0197264
0.00990165
5.33374e-11
0.0194012
0.0089632
7.33472e-11
0.01907
0.00806882
1.09522e-10
0.0188353
0.00715916
1.18352e-10
0.0187244
0.00614731
1.37567e-10
0.0188256
0.00492042
1.73894e-10
0.0189649
0.00366742
1.57637e-10
0.0190993
0.00248057
6.25988e-11
0.0192924
0.00124725
5.68773e-11
0.0194004
0.000143591
3.0235e-11
0.0193426
-0.000733508
-2.06109e-11
0.0191068
-0.00132323
-9.33143e-11
0.018864
-0.00187487
-7.95891e-11
0.0186479
-0.00236744
-6.14637e-11
0.0184775
-0.00281986
-4.05184e-11
0.018368
-0.00322568
-2.12789e-11
0.0183291
-0.00357477
-1.8208e-12
0.0183618
-0.00385557
1.863e-11
0.0183903
-0.00406547
2.04189e-11
0.0184742
-0.00425785
2.46531e-11
0.0186811
-0.00440121
3.45871e-11
0.0189816
-0.00444477
5.28926e-11
0.0192063
-0.00435463
5.83334e-11
0.0194832
-0.00433323
6.31055e-11
0.019796
-0.00424997
6.32181e-11
0.0200937
-0.00410537
6.01659e-11
0.020368
-0.00395487
5.30061e-11
0.0206149
-0.00380301
4.49376e-11
0.0208354
-0.00365669
3.73395e-11
0.0210333
-0.00351559
3.07888e-11
0.0212112
-0.00337858
2.53656e-11
0.0213729
-0.00324278
2.09225e-11
0.0215199
-0.00310754
1.70576e-11
0.0216538
-0.00297061
1.39103e-11
0.0217747
-0.00283323
1.09151e-11
0.0218843
-0.00269452
8.37458e-12
0.0219859
-0.00255766
5.83555e-12
0.0220778
-0.00242109
3.49462e-12
0.0221603
-0.00228629
1.88034e-12
0.0222323
-0.00215537
1.1427e-12
0.0222993
-0.00202722
-2.29388e-13
0.0223559
-0.00189679
-3.69696e-13
0.0224017
-0.00176657
-5.69013e-13
0.0224357
-0.0016398
-8.79351e-13
0.0224562
-0.00152016
-1.33971e-12
0.0224663
-0.00140703
-1.05253e-12
0.0224672
-0.0012987
-8.4487e-13
0.0224609
-0.00119426
-5.51007e-13
0.022447
-0.00109263
-1.49912e-14
0.0224275
-0.000993744
1.0448e-12
0.0224008
-0.000897031
2.22886e-12
0.0223683
-0.000802483
3.42376e-12
0.0223284
-0.000710139
4.56954e-12
0.0222823
-0.000620009
5.55677e-12
0.0222291
-0.000532334
6.36716e-12
0.0221697
-0.000447004
6.93747e-12
0.0221041
-0.00036418
7.2789e-12
0.022033
-0.000283655
7.3574e-12
0.0219565
-0.000205436
7.19365e-12
0.0218751
-0.000129304
6.77028e-12
0.021789
-5.54307e-05
6.10904e-12
0.0216994
1.55767e-05
5.16955e-12
0.021607
8.36769e-05
3.61089e-12
0.0215111
0.000148539
1.92607e-12
0.0214126
0.0002106
6.91125e-13
0.0213116
0.000269773
-8.19449e-13
0.0212087
0.000326232
-2.88481e-12
0.0211033
0.000379839
-4.88102e-12
0.0209966
0.000430784
-6.93171e-12
0.0208874
0.000478927
-8.90922e-12
0.0207773
0.000524404
-1.09061e-11
0.0206651
0.000567236
-1.27464e-11
0.0205525
0.000607445
-1.45387e-11
0.0204381
0.000645263
-1.61177e-11
0.0203236
0.000680486
-1.75915e-11
0.0202079
0.000713582
-1.88436e-11
0.0200918
0.000744112
-1.99335e-11
0.0199749
0.000772723
-2.08244e-11
0.0198572
0.000798825
-2.15026e-11
0.0197392
0.000823122
-2.20207e-11
0.01962
0.000845007
-2.23002e-11
0.019501
0.000865096
-2.24593e-11
0.0193808
0.000882888
-2.23797e-11
0.0192611
0.00089879
-2.2206e-11
0.0191407
0.000912468
-2.1805e-11
0.0190214
0.000924039
-2.13183e-11
0.018902
0.000933338
-2.06095e-11
0.0187844
0.000940136
-1.98043e-11
0.0186677
0.000944418
-1.87582e-11
0.0185539
0.000945554
-1.75717e-11
0.0184424
0.000943705
-1.61577e-11
0.0183355
0.000937716
-1.44017e-11
0.0182335
0.000928494
-1.25918e-11
0.00091479
-9.96266e-12
0.0217418
0.0159241
1.12824e-11
0.0216564
0.0150906
1.40535e-11
0.0215
0.0141453
1.85289e-11
0.0212663
0.0131557
2.54322e-11
0.0209798
0.0121376
3.73127e-11
0.0206814
0.0111417
5.30838e-11
0.0204043
0.0101361
8.20283e-11
0.0201569
0.00914484
1.22202e-10
0.0199672
0.00818961
1.29682e-10
0.0199231
0.00712813
1.47907e-10
0.0201039
0.00588259
1.75102e-10
0.0203239
0.00457725
2.1349e-10
0.0205467
0.00336732
1.35881e-10
0.0207927
0.00220411
4.50501e-11
0.0209213
0.00108917
3.14571e-11
0.0208812
0.000172343
-2.182e-12
0.0206181
-0.000444142
-6.91789e-11
0.0203558
-0.0010263
-8.26551e-11
0.0200841
-0.0015686
-6.95107e-11
0.0198399
-0.00209756
-5.20733e-11
0.0196347
-0.00260088
-3.47799e-11
0.0194769
-0.00306461
-1.95674e-11
0.0193709
-0.00347233
-5.53411e-12
0.0193229
-0.00381692
7.6061e-12
0.0193369
-0.00409161
1.68894e-11
0.0193571
-0.00429873
2.99247e-11
0.0193887
-0.0044526
3.26867e-11
0.0195115
-0.00459392
4.01381e-11
0.0197722
-0.00465013
5.27483e-11
0.0199642
-0.00455856
5.01481e-11
0.0201845
-0.00450859
5.88197e-11
0.0204606
-0.0044224
6.41055e-11
0.0207505
-0.00428245
6.04789e-11
0.0210246
-0.00410961
5.36434e-11
0.0212715
-0.00393074
4.5441e-11
0.0214876
-0.00375459
3.73634e-11
0.0216751
-0.0035854
3.0312e-11
0.021839
-0.00342331
2.44682e-11
0.0219833
-0.00326673
1.98077e-11
0.0221124
-0.00311306
1.61696e-11
0.0222293
-0.00296118
1.32775e-11
0.0223348
-0.00281024
1.06749e-11
0.0224316
-0.00266064
8.4281e-12
0.0225192
-0.00251315
5.82648e-12
0.0225978
-0.00236766
3.96899e-12
0.0226656
-0.00222475
2.83053e-12
0.0227242
-0.00208654
1.22645e-12
0.0227735
-0.00194725
9.72832e-13
0.0228138
-0.00180841
5.38772e-13
0.0228439
-0.00167162
-5.51356e-14
0.0228614
-0.00153958
-6.38251e-13
0.0228702
-0.00141764
-4.89485e-13
0.0228689
-0.00129921
-4.03004e-13
0.0228598
-0.00118604
-1.677e-13
0.022843
-0.00107679
4.062e-13
0.0228197
-0.000970923
1.21536e-12
0.0227888
-0.000867772
2.22832e-12
0.0227515
-0.000767111
3.2982e-12
0.0227067
-0.000668856
4.36808e-12
0.0226555
-0.000572943
5.30979e-12
0.0225972
-0.000479534
6.10999e-12
0.0225326
-0.000388547
6.70104e-12
0.0224618
-0.000300113
7.09662e-12
0.0223853
-0.000214057
7.26527e-12
0.0223037
-0.000130322
7.22312e-12
0.0222173
-4.89732e-05
6.96275e-12
0.0221271
2.942e-05
6.39938e-12
0.0220334
0.000104573
5.50372e-12
0.0219364
0.000176699
4.44037e-12
0.0218357
0.00024568
2.97443e-12
0.0217321
0.000311628
1.22843e-12
0.0216253
0.000374525
1.06371e-13
0.0215166
0.000434472
-1.69669e-12
0.0214051
0.000491411
-3.64936e-12
0.0212926
0.00054538
-5.68162e-12
0.0211777
0.00059644
-7.64369e-12
0.0210625
0.000644489
-9.65048e-12
0.0209452
0.000689832
-1.15125e-11
0.0208281
0.000732147
-1.33416e-11
0.0207095
0.000772047
-1.49749e-11
0.0205911
0.000808928
-1.64953e-11
0.0204719
0.000843668
-1.7814e-11
0.0203524
0.00087543
-1.89473e-11
0.0202327
0.000905231
-1.99007e-11
0.0201121
0.000932144
-2.06153e-11
0.0199916
0.00095715
-2.11772e-11
0.0198701
0.000979393
-2.14808e-11
0.0197489
0.000999671
-2.16518e-11
0.0196268
0.00101729
-2.15728e-11
0.0195054
0.00103279
-2.13706e-11
0.0193837
0.00104564
-2.09314e-11
0.0192632
0.00105606
-2.03666e-11
0.0191433
0.00106363
-1.95608e-11
0.0190253
0.0010682
-1.86094e-11
0.0189091
0.00106941
-1.73836e-11
0.0187965
0.00106662
-1.59573e-11
0.0186876
0.00105949
-1.42044e-11
0.018585
0.00104644
-1.19255e-11
0.0184885
0.00102963
-1.0186e-11
0.00100833
-7.56026e-12
0.0221282
0.0159933
1.50389e-11
0.0220052
0.0152041
1.95016e-11
0.0218384
0.014299
2.68996e-11
0.0216365
0.0133388
3.89119e-11
0.0214131
0.0123352
5.68777e-11
0.0212092
0.0113032
8.53215e-11
0.0210484
0.0102251
1.34352e-10
0.0208919
0.00922582
1.44437e-10
0.0208905
0.00810506
1.64384e-10
0.0211125
0.006804
1.95066e-10
0.0214356
0.00542774
2.37549e-10
0.0217386
0.00418681
1.66523e-10
0.0219948
0.00306809
7.45374e-11
0.0222095
0.00195506
5.85226e-11
0.0222289
0.00104869
2.155e-11
0.0219599
0.000456241
-4.85401e-11
0.021689
-0.000128092
-9.59291e-11
0.0213974
-0.00069737
-8.47845e-11
0.021124
-0.00126992
-5.91196e-11
0.0208781
-0.00183639
-4.01893e-11
0.0206634
-0.00237736
-2.7276e-11
0.02048
-0.0028781
-1.71099e-11
0.0203315
-0.00332433
-7.80237e-12
0.0202222
-0.00371148
1.16888e-12
0.0201542
-0.00403131
1.02161e-11
0.0201291
-0.00428737
1.96014e-11
0.0201425
-0.004484
2.54906e-11
0.0201378
-0.00461585
3.54753e-11
0.0201734
-0.00471281
3.74668e-11
0.020369
-0.00478392
4.14039e-11
0.0205556
-0.00472622
4.69261e-11
0.0207295
-0.00463081
5.24565e-11
0.0209713
-0.00456
5.86841e-11
0.0212473
-0.00442029
5.85486e-11
0.0215177
-0.00423324
5.36719e-11
0.0217648
-0.00403114
4.65856e-11
0.0219835
-0.00382893
3.87732e-11
0.0221728
-0.00363425
3.13303e-11
0.0223361
-0.00344815
2.51358e-11
0.0224772
-0.00327065
2.03639e-11
0.0226013
-0.00309957
1.67571e-11
0.0227142
-0.00293357
1.37929e-11
0.0228156
-0.00277085
1.12994e-11
0.0229093
-0.00261091
8.90135e-12
0.0229922
-0.00245452
6.32018e-12
0.0230646
-0.0023001
4.95923e-12
0.0231253
-0.00214951
3.57443e-12
0.0231801
-0.00200389
2.11762e-12
0.0232249
-0.00185516
1.95653e-12
0.0232601
-0.00170849
1.63674e-12
0.023284
-0.00156507
1.16016e-12
0.0232956
-0.00143017
4.40706e-13
0.023297
-0.00130189
3.74814e-13
0.0232898
-0.00117949
5.59222e-13
0.0232739
-0.00106169
8.8195e-13
0.0232503
-0.000947707
1.3567e-12
0.0232186
-0.000837115
2.04289e-12
0.0231797
-0.000729502
2.8425e-12
0.0231331
-0.000624757
3.7074e-12
0.0230795
-0.000522611
4.51754e-12
0.0230184
-0.000423152
5.2523e-12
0.0229506
-0.000326203
5.84501e-12
0.022876
-0.000231879
6.29555e-12
0.0227952
-0.000139922
6.55783e-12
0.0227087
-5.05339e-05
6.65813e-12
0.0226175
3.58424e-05
6.50313e-12
0.0225223
0.000118862
6.06852e-12
0.0224233
0.000198538
5.39814e-12
0.0223211
0.000274939
4.50002e-12
0.0222154
0.000348049
3.35557e-12
0.022107
0.000417952
1.6975e-12
0.0219955
0.000484577
6.23639e-13
0.021882
0.000548004
-8.28217e-13
0.0217656
0.000608203
-2.7077e-12
0.0216481
0.000665176
-4.66613e-12
0.0215282
0.000719048
-6.57547e-12
0.021408
0.000769659
-8.5426e-12
0.0212862
0.000817372
-1.03926e-11
0.0211644
0.000861811
-1.2211e-11
0.0210419
0.000903605
-1.38643e-11
0.0209193
0.000942167
-1.53943e-11
0.0207967
0.000978304
-1.67474e-11
0.0206736
0.00101131
-1.79016e-11
0.0205506
0.00104201
-1.8887e-11
0.0204268
0.00106971
-1.96261e-11
0.0203031
0.0010951
-2.02039e-11
0.0201786
0.00111762
-2.05228e-11
0.0200542
0.00113774
-2.06807e-11
0.0199295
0.00115501
-2.05891e-11
0.0198054
0.00116968
-2.0331e-11
0.0196817
0.00118136
-1.98281e-11
0.0195596
0.00119002
-1.91481e-11
0.0194388
0.00119526
-1.81983e-11
0.0193211
0.00119664
-1.70466e-11
0.019206
0.00119374
-1.55544e-11
0.0190961
0.00118536
-1.38168e-11
0.0189915
0.00117077
-1.1338e-11
0.0188944
0.00114974
-9.78233e-12
0.0188033
0.00112507
-7.54724e-12
0.00109154
-3.4582e-12
0.0224925
0.0160973
1.96992e-11
0.0223666
0.0153186
2.7922e-11
0.0222045
0.0144412
4.07089e-11
0.0220323
0.0134797
6.14691e-11
0.0218804
0.0124451
8.67496e-11
0.0217891
0.0113171
1.49408e-10
0.0216458
0.0102823
1.60295e-10
0.02169
0.00909124
1.77342e-10
0.021973
0.00771385
2.057e-10
0.0223677
0.00626636
2.61534e-10
0.0227126
0.00498399
1.87768e-10
0.0229832
0.00386106
8.93044e-11
0.0232712
0.00273946
7.343e-11
0.0233343
0.00186491
3.97035e-11
0.0230712
0.00131643
-1.36143e-11
0.0228161
0.000757103
-1.00371e-10
0.0225427
0.00018608
-8.90582e-11
0.0222764
-0.000401877
-6.75126e-11
0.0220276
-0.00100233
-4.76351e-11
0.0217955
-0.00159292
-3.39532e-11
0.0215815
-0.00215471
-2.4487e-11
0.0213849
-0.00267452
-1.68107e-11
0.0212088
-0.00314297
-9.67182e-12
0.0210545
-0.00355534
-2.57206e-12
0.0209279
-0.0039083
2.83295e-12
0.0208337
-0.00420188
1.08087e-11
0.0207699
-0.00443519
1.78063e-11
0.0207479
-0.00461232
2.42675e-11
0.0207473
-0.00473688
3.27909e-11
0.0207473
-0.00480713
3.42497e-11
0.0208531
-0.00485774
3.79145e-11
0.0210331
-0.00483866
4.31384e-11
0.0211847
-0.00473957
4.71283e-11
0.0213855
-0.00465458
5.56689e-11
0.0216416
-0.00452449
5.6117e-11
0.0219
-0.00432461
5.36749e-11
0.0221482
-0.00410994
4.75011e-11
0.0223741
-0.00388796
4.01178e-11
0.0225709
-0.00366935
3.30039e-11
0.0227405
-0.00346014
2.68687e-11
0.0228867
-0.0032619
2.17971e-11
0.023012
-0.00307311
1.76347e-11
0.0231241
-0.00289259
1.43894e-11
0.0232226
-0.00271762
1.15769e-11
0.0233101
-0.0025471
9.37128e-12
0.023388
-0.00238152
7.19714e-12
0.0234548
-0.00221859
5.68782e-12
0.0235112
-0.00206144
4.17989e-12
0.0235597
-0.00190569
3.9155e-12
0.0235984
-0.00174939
3.45488e-12
0.0236256
-0.00159484
2.79722e-12
0.0236391
-0.00144544
1.97146e-12
0.0236431
-0.00130739
7.01393e-13
0.0236364
-0.00117401
8.49474e-13
0.0236199
-0.00104647
9.63368e-13
0.0235946
-0.000923317
1.07392e-12
0.0235608
-0.000804367
1.37186e-12
0.0235194
-0.000689049
1.84468e-12
0.0234702
-0.000577247
2.46295e-12
0.0234141
-0.000468445
3.12645e-12
0.0233506
-0.000362674
3.78593e-12
0.0232803
-0.000259575
4.41003e-12
0.023203
-0.000159195
4.89486e-12
0.0231195
-6.13159e-05
5.25952e-12
0.0230304
3.34788e-05
5.47472e-12
0.0229367
0.000124784
5.48259e-12
0.0228386
0.000212587
5.2684e-12
0.0227362
0.000296798
4.85099e-12
0.0226303
0.000377566
4.17339e-12
0.0225203
0.000454759
3.27091e-12
0.0224077
0.000528558
1.86729e-12
0.0222917
0.000598793
7.14937e-13
0.022174
0.000665614
-3.48626e-13
0.0220536
0.000728948
-2.07095e-12
0.0219322
0.000788823
-3.90971e-12
0.0218088
0.000845371
-5.72434e-12
0.0216849
0.000898406
-7.61367e-12
0.0215595
0.000948335
-9.41166e-12
0.0214338
0.000994726
-1.11873e-11
0.0213076
0.00103825
-1.28185e-11
0.0211812
0.00107829
-1.43285e-11
0.021055
0.00111566
-1.56751e-11
0.0209285
0.00114965
-1.68184e-11
0.0208025
0.00118107
-1.78001e-11
0.0206761
0.00120926
-1.85251e-11
0.0205504
0.00123482
-1.90923e-11
0.0204242
0.00125728
-1.9382e-11
0.0202987
0.00127691
-1.95083e-11
0.0201732
0.00129344
-1.93591e-11
0.0200487
0.00130676
-1.90255e-11
0.0199252
0.00131673
-1.84157e-11
0.0198035
0.0013228
-1.75841e-11
0.0196841
0.00132481
-1.64396e-11
0.0195685
0.00132168
-1.5003e-11
0.019457
0.00131296
-1.3199e-11
0.0193527
0.00129639
-1.05791e-11
0.0192551
0.00127342
-9.07953e-12
0.019164
0.00124449
-6.21836e-12
0.0190849
0.00120551
-3.05407e-12
0.00115466
2.67207e-12
0.0228689
0.0162402
2.88515e-11
0.0227356
0.0154334
4.14463e-11
0.022602
0.0145441
6.46465e-11
0.0224804
0.0135513
9.67048e-11
0.0224328
0.0124206
1.46002e-10
0.0223015
0.011362
1.64344e-10
0.0223775
0.010105
2.03517e-10
0.0227203
0.0086308
2.41783e-10
0.0231697
0.00712693
2.59822e-10
0.0235363
0.00580133
1.91546e-10
0.0238374
0.00463004
8.70639e-11
0.0241698
0.00349206
6.86884e-11
0.0242334
0.00265553
2.97201e-11
0.0239636
0.00214534
-2.75008e-11
0.0237298
0.00158685
-7.52436e-11
0.0234934
0.0010251
-7.1035e-11
0.0232578
0.000443001
-5.79295e-11
0.0230311
-0.000160369
-4.57631e-11
0.0228136
-0.0007757
-3.5265e-11
0.0226026
-0.00137267
-2.7366e-11
0.0223954
-0.00193946
-2.10995e-11
0.0221943
-0.00246403
-1.59249e-11
0.0220001
-0.00294228
-1.09768e-11
0.021818
-0.00336794
-6.25099e-12
0.0216519
-0.00374205
-1.10926e-12
0.0215075
-0.00406112
3.10831e-12
0.0213909
-0.00432837
9.53405e-12
0.0213079
-0.00454218
1.57656e-11
0.0212592
-0.00470489
2.20988e-11
0.0212504
-0.00481733
2.64387e-11
0.0212504
-0.00488168
3.44475e-11
0.0212904
-0.00490196
3.61321e-11
0.0214182
-0.00489294
3.90487e-11
0.0215806
-0.00484469
4.43737e-11
0.0217482
-0.00472348
4.96554e-11
0.0219739
-0.00458426
5.4408e-11
0.0222291
-0.00439752
5.18398e-11
0.0224814
-0.00417093
4.73356e-11
0.0227163
-0.00393214
4.15558e-11
0.0229257
-0.00369355
3.50397e-11
0.0231044
-0.00346165
2.84602e-11
0.0232573
-0.00324229
2.25788e-11
0.0233861
-0.0030349
1.78216e-11
0.0234972
-0.00283822
1.42061e-11
0.0235932
-0.00265032
1.18362e-11
0.0236757
-0.00246907
9.30816e-12
0.0237473
-0.00229431
8.09332e-12
0.0238065
-0.00212378
6.65728e-12
0.0238581
-0.00195984
4.89284e-12
0.0238995
-0.0017932
4.65021e-12
0.0239313
-0.00162917
4.07339e-12
0.0239519
-0.00146808
3.02186e-12
0.0239579
-0.00131451
1.14409e-12
0.0239542
-0.00117099
6.9568e-13
0.0239392
-0.00103197
4.35247e-13
0.0239146
-0.000898598
1.74849e-13
0.0238807
-0.000770454
1.03727e-13
0.0238386
-0.000646705
2.53767e-13
0.0237882
-0.000527163
6.24039e-13
0.0237305
-0.000411173
1.14243e-12
0.0236652
-0.000298652
1.7302e-12
0.0235929
-0.000189103
2.39045e-12
0.0235135
-8.24116e-05
2.87656e-12
0.0234276
2.12818e-05
3.37095e-12
0.0233361
0.00012133
3.79122e-12
0.0232394
0.000217659
4.03256e-12
0.0231381
0.0003103
4.04567e-12
0.0230326
0.000399106
3.87288e-12
0.0229236
0.000484262
3.44245e-12
0.0228111
0.000565544
2.78306e-12
0.0226958
0.000643195
1.64954e-12
0.0225775
0.000716972
6.97911e-13
0.0224571
0.000787116
-1.95952e-13
0.022334
0.000853457
-1.65643e-12
0.0222097
0.00091614
-3.32095e-12
0.0220829
0.000975185
-4.98767e-12
0.0219558
0.00103052
-6.75902e-12
0.0218269
0.00108248
-8.45415e-12
0.0216981
0.00113067
-1.01625e-11
0.0215685
0.00117577
-1.17302e-11
0.021439
0.0012171
-1.32054e-11
0.0213098
0.00125556
-1.45187e-11
0.0211804
0.00129033
-1.5638e-11
0.0210519
0.0013223
-1.66026e-11
0.020923
0.00135074
-1.72952e-11
0.0207952
0.00137623
-1.78412e-11
0.0206671
0.0013983
-1.80734e-11
0.0205405
0.00141708
-1.81492e-11
0.0204139
0.00143238
-1.78963e-11
0.0202895
0.00144374
-1.74518e-11
0.0201664
0.0014512
-1.66604e-11
0.0200468
0.00145359
-1.56159e-11
0.0199304
0.00145101
-1.41374e-11
0.0198198
0.00144136
-1.23655e-11
0.019716
0.00142382
-9.54165e-12
0.0196206
0.00139815
-8.01309e-12
0.0195318
0.00136646
-5.3001e-12
0.019455
0.00132318
-8.82482e-13
0.0193973
0.00126094
4.38689e-12
0.00119359
9.47217e-12
0.0232408
0.016418
4.16206e-11
0.0231044
0.015532
6.70856e-11
0.0230365
0.0145628
1.01348e-10
0.0230194
0.0134877
1.67053e-10
0.0229195
0.0124324
1.77809e-10
0.0230496
0.0111258
1.98152e-10
0.0234773
0.00955693
2.3063e-10
0.0239292
0.00802074
2.86615e-10
0.0242995
0.00665757
1.94625e-10
0.0246345
0.00541494
7.68352e-11
0.02497
0.00425849
5.51969e-11
0.0249785
0.00346772
5.82791e-12
0.0247099
0.00295234
-7.6844e-11
0.0245053
0.00238296
-6.46796e-11
0.0242968
0.00182534
-5.72419e-11
0.0240972
0.0012464
-4.65114e-11
0.0239068
0.000643941
-3.44016e-11
0.0237187
3.26893e-05
-2.69226e-11
0.0235291
-0.000584105
-2.13399e-11
0.0233343
-0.00117509
-1.81673e-11
0.0231347
-0.00173558
-1.5892e-11
0.022933
-0.0022564
-1.38071e-11
0.0227322
-0.00273555
-1.14951e-11
0.0225353
-0.00316737
-8.7491e-12
0.0223483
-0.00355326
-5.56744e-12
0.0221749
-0.00389038
-1.37592e-12
0.0220215
-0.00418007
2.74409e-12
0.0218927
-0.00442269
8.17581e-12
0.0217927
-0.00461802
1.33864e-11
0.0217272
-0.00476842
1.89096e-11
0.0216996
-0.00487254
2.44871e-11
0.0217088
-0.00493175
2.85559e-11
0.0217341
-0.00494123
3.53482e-11
0.0217654
-0.0048983
3.60071e-11
0.0218886
-0.00487079
3.82716e-11
0.022083
-0.0048046
4.25625e-11
0.022281
-0.00462565
4.81006e-11
0.0225112
-0.00443293
4.88167e-11
0.0227589
-0.00420963
4.63998e-11
0.022996
-0.00395787
4.16349e-11
0.0232128
-0.00370098
3.51865e-11
0.0234008
-0.00344922
2.83055e-11
0.0235592
-0.00320818
2.20627e-11
0.0236915
-0.00298122
1.71597e-11
0.0238019
-0.00276835
1.36351e-11
0.0238964
-0.00256695
1.1459e-11
0.0239751
-0.00237536
9.30678e-12
0.0240422
-0.00219135
7.84065e-12
0.0240955
-0.00201285
5.55293e-12
0.024143
-0.00184047
5.336e-12
0.0241798
-0.00166636
4.69702e-12
0.0242055
-0.00149428
3.30168e-12
0.0242167
-0.00132649
1.40903e-12
0.0242138
-0.00116813
-6.66541e-13
0.024199
-0.00101756
-9.03405e-13
0.0241741
-0.000873691
-1.29168e-12
0.0241396
-0.000735735
-1.5818e-12
0.024097
-0.000602882
-1.71426e-12
0.024046
-0.000474917
-1.57357e-12
0.023988
-0.000351189
-1.18101e-12
0.023922
-0.00023143
-6.03548e-13
0.023849
-0.000114971
-2.53969e-13
0.0237687
-2.03871e-06
6.20664e-13
0.0236821
0.000107218
1.22374e-12
0.0235897
0.000212554
1.75533e-12
0.0234916
0.000313843
2.18948e-12
0.0233891
0.000411294
2.43991e-12
0.0232813
0.000504598
2.53369e-12
0.0231705
0.000594022
2.36559e-12
0.0230549
0.000679269
1.96308e-12
0.0229371
0.00076058
1.09745e-12
0.0228156
0.000837778
4.85394e-13
0.0226923
0.000910997
-2.42662e-13
0.0225663
0.000980237
-1.48113e-12
0.0224388
0.00104546
-2.93712e-12
0.0223095
0.0011069
-4.43063e-12
0.0221795
0.0011643
-6.04401e-12
0.0220483
0.00121814
-7.6083e-12
0.0219171
0.00126793
-9.20265e-12
0.0217855
0.00131441
-1.06733e-11
0.0216543
0.00135683
-1.20628e-11
0.0215237
0.00139614
-1.33061e-11
0.0213932
0.00143148
-1.43516e-11
0.0212645
0.00146369
-1.52603e-11
0.0211357
0.00149208
-1.58793e-11
0.021009
0.00151711
-1.6359e-11
0.0208825
0.00153837
-1.65028e-11
0.0207578
0.00155574
-1.64717e-11
0.0206341
0.0015691
-1.60827e-11
0.020513
0.00157764
-1.54555e-11
0.0203938
0.00158131
-1.44214e-11
0.0202791
0.00157862
-1.3037e-11
0.0201691
0.00156903
-1.11505e-11
0.0200669
0.00154975
-8.29393e-12
0.0199734
0.00152218
-6.79091e-12
0.0198859
0.00148802
-3.78031e-12
0.0198132
0.00143945
3.12551e-13
0.0197599
0.00137233
6.40406e-12
0.019724
0.00128729
1.40977e-11
0.00120493
1.54018e-11
0.0237336
0.0166695
6.76734e-11
0.023586
0.0156259
1.10639e-10
0.0234949
0.0145621
1.71289e-10
0.0234135
0.0134817
1.86267e-10
0.0236193
0.0121123
2.18843e-10
0.0241389
0.0104784
2.75002e-10
0.0246227
0.0089374
2.6167e-10
0.0250152
0.00753775
1.87267e-10
0.0254349
0.00620896
6.27066e-11
0.0257757
0.0050452
4.30042e-11
0.0257196
0.00430538
-4.07219e-12
0.0254614
0.00376357
-8.33064e-11
0.0252712
0.00318428
-8.96907e-11
0.0250722
0.00261492
-6.40148e-11
0.0248889
0.00202889
-4.66459e-11
0.0247235
0.00142327
-3.32798e-11
0.0245643
0.000806237
-2.27391e-11
0.0244061
0.000192093
-1.58033e-11
0.0242357
-0.000412089
-1.33341e-11
0.0240569
-0.000991926
-1.29163e-11
0.0238683
-0.00154031
-1.30042e-11
0.0236714
-0.00205233
-1.27981e-11
0.0234704
-0.00252626
-1.22224e-11
0.0232658
-0.00295856
-1.07333e-11
0.0230657
-0.00334951
-8.83094e-12
0.0228696
-0.00369757
-5.62598e-12
0.0226873
-0.00400221
-2.00271e-12
0.0225196
-0.00426548
2.41965e-12
0.0223749
-0.00448398
7.18685e-12
0.0222561
-0.00466311
1.22811e-11
0.0221671
-0.0047964
1.68347e-11
0.0221138
-0.00489296
2.10543e-11
0.0221013
-0.00494445
2.5287e-11
0.0221353
-0.00495093
3.09652e-11
0.0221486
-0.00490251
3.16373e-11
0.0221536
-0.00482893
3.27691e-11
0.0223047
-0.00479725
3.58285e-11
0.022513
-0.00466609
4.17501e-11
0.0227315
-0.00445428
4.28659e-11
0.0229611
-0.00421313
4.25986e-11
0.0231976
-0.00396315
3.90527e-11
0.0234185
-0.00369281
3.36061e-11
0.0236142
-0.00342227
2.71881e-11
0.0237806
-0.00316162
2.10119e-11
0.0239208
-0.00291651
1.60876e-11
0.0240346
-0.00268657
1.2524e-11
0.0241287
-0.00247071
9.83475e-12
0.0242034
-0.00226731
7.03766e-12
0.0242637
-0.00207341
5.643e-12
0.0243122
-0.00188802
3.49322e-12
0.024351
-0.00170476
3.1351e-12
0.0243805
-0.00152336
2.36233e-12
0.0243984
-0.00134418
1.06559e-12
0.0244024
-0.00117045
-1.04372e-12
0.0243949
-0.00100804
-2.45816e-12
0.0243752
-0.000851827
-2.99819e-12
0.024345
-0.000702755
-3.4088e-12
0.0243051
-0.00055969
-3.81048e-12
0.0242564
-0.000422273
-3.96909e-12
0.0241989
-0.000289885
-3.80244e-12
0.0241327
-0.000162077
-3.3814e-12
0.0240585
-3.84157e-05
-2.6004e-12
0.0239765
8.09883e-05
-2.13856e-12
0.0238878
0.00019612
-1.278e-12
0.0237923
0.000306934
-5.54643e-13
0.0236916
0.000413382
-8.35301e-14
0.0235853
0.000515655
5.25622e-13
0.023475
0.000613467
9.17616e-13
0.0233605
0.000707138
1.05141e-12
0.023243
0.000796228
7.99196e-13
0.0231224
0.000881221
5.27689e-13
0.0229991
0.000961596
2.34528e-13
0.022874
0.00103793
-3.78782e-13
0.0227464
0.00110973
-1.38539e-12
0.0226182
0.0011775
-2.61259e-12
0.0224876
0.00124096
-3.88498e-12
0.0223572
0.00130031
-5.31423e-12
0.0222252
0.00135568
-6.71085e-12
0.0220936
0.00140683
-8.15199e-12
0.0219616
0.0014543
-9.50577e-12
0.0218297
0.00149752
-1.07731e-11
0.0216986
0.00153722
-1.1929e-11
0.021568
0.00157273
-1.28848e-11
0.0214388
0.00160466
-1.37094e-11
0.0213105
0.00163245
-1.42495e-11
0.0211844
0.00165637
-1.46272e-11
0.0210592
0.00167599
-1.46587e-11
0.0209371
0.00169107
-1.44729e-11
0.0208168
0.00170125
-1.38842e-11
0.0207001
0.0017056
-1.29864e-11
0.020588
0.00170353
-1.15492e-11
0.0204812
0.00169325
-9.72521e-12
0.0203835
0.00167283
-6.65513e-12
0.0202948
0.0016431
-5.33457e-12
0.0202133
0.00160587
-2.07064e-12
0.0201461
0.00155445
2.57509e-12
0.020104
0.00147779
8.41248e-12
0.0200713
0.00139285
1.8264e-11
0.0200502
0.00129619
1.98819e-11
0.00116848
2.39475e-11
0.0242998
0.0169598
1.07059e-10
0.0240779
0.0157607
1.80761e-10
0.0239692
0.0145851
2.00482e-10
0.0241946
0.0131319
2.4013e-10
0.0247317
0.0114256
3.06369e-10
0.0252297
0.00983682
2.70581e-10
0.0256488
0.00841898
1.75113e-10
0.0261473
0.00700777
5.56928e-11
0.0264886
0.00584553
3.13494e-11
0.0263685
0.00516447
-1.70827e-11
0.0261345
0.00457921
-9.56954e-11
0.0259592
0.00398107
-8.96698e-11
0.0257789
0.00339976
-6.73348e-11
0.0256191
0.00280069
-4.44875e-11
0.0254785
0.00218549
-2.99695e-11
0.0253465
0.00156239
-2.17523e-11
0.0252115
0.000942846
-1.59661e-11
0.0250667
0.000335876
-1.3024e-11
0.0249057
-0.000252007
-1.25238e-11
0.0247311
-0.000816201
-1.31088e-11
0.0245443
-0.00134901
-1.38464e-11
0.024348
-0.00184931
-1.41244e-11
0.0241447
-0.00231382
-1.40713e-11
0.0239362
-0.00274308
-1.30683e-11
0.0237283
-0.00313334
-1.16564e-11
0.023521
-0.00348753
-8.93624e-12
0.0233229
-0.00380026
-5.96106e-12
0.0231335
-0.00407784
-2.04526e-12
0.0229606
-0.00431244
1.68025e-12
0.0228052
-0.00451314
5.65671e-12
0.0226729
-0.00467033
9.56085e-12
0.0225645
-0.00479292
1.33195e-11
0.0224838
-0.00487296
1.6932e-11
0.022441
-0.00491953
2.08549e-11
0.0224448
-0.00492086
2.6426e-11
0.0224825
-0.00487995
2.54076e-11
0.0224617
-0.00479237
2.80372e-11
0.0224929
-0.00471563
2.96581e-11
0.0226625
-0.0046441
3.25695e-11
0.0228855
-0.00446206
3.73731e-11
0.0231103
-0.00421352
3.76397e-11
0.0233431
-0.0039511
3.6541e-11
0.0235739
-0.00367452
3.20412e-11
0.0237871
-0.00339214
2.59864e-11
0.0239724
-0.0031138
1.98617e-11
0.0241277
-0.00284819
1.42434e-11
0.024252
-0.00259893
9.49148e-12
0.024352
-0.00236665
6.06065e-12
0.0244282
-0.00214946
2.91959e-12
0.0244864
-0.00194501
1.61081e-12
0.0245344
-0.00175102
5.9811e-14
0.0245689
-0.00155669
-1.67645e-13
0.0245933
-0.00136756
-7.44494e-13
0.024607
-0.00118201
-1.95211e-12
0.0246059
-0.00100404
-3.91506e-12
0.0245939
-0.000835525
-4.65511e-12
0.0245691
-0.000673777
-5.26796e-12
0.0245341
-0.000519099
-5.89528e-12
0.024488
-0.000370844
-6.28668e-12
0.0244326
-0.000228491
-6.37003e-12
0.024367
-9.14799e-05
-6.09004e-12
0.0242923
4.03427e-05
-5.6084e-12
0.0242095
0.000166915
-4.71233e-12
0.0241185
0.000288404
-3.80803e-12
0.0240211
0.000405146
-2.951e-12
0.0239166
0.000517061
-2.04812e-12
0.0238074
0.000624379
-1.21972e-12
0.0236924
0.000726964
-5.11084e-13
0.0235741
0.000824859
-1.44441e-13
0.0234512
0.000918124
8.21001e-14
0.023326
0.00100651
6.32735e-14
0.0231973
0.00109049
-1.04835e-13
0.023067
0.00116941
-5.10748e-13
0.0229345
0.00124421
-1.27969e-12
0.0228009
0.00131384
-2.24601e-12
0.0226661
0.00137961
-3.31667e-12
0.0225305
0.00144022
-4.51483e-12
0.0223948
0.00149716
-5.75616e-12
0.0222586
0.00154902
-7.00098e-12
0.0221229
0.00159731
-8.22691e-12
0.0219876
0.00164066
-9.33279e-12
0.0218535
0.00168038
-1.03798e-11
0.0217202
0.00171537
-1.11995e-11
0.0215894
0.00174639
-1.19162e-11
0.0214597
0.00177283
-1.23308e-11
0.0213333
0.00179465
-1.25584e-11
0.0212095
0.00181163
-1.24325e-11
0.0210891
0.00182297
-1.20034e-11
0.0209734
0.00182827
-1.11315e-11
0.0208627
0.00182625
-9.78376e-12
0.0207595
0.00181526
-7.87548e-12
0.0206657
0.00179317
-4.81989e-12
0.0205816
0.00176132
-3.49988e-12
0.0205065
0.00172068
-4.27362e-13
0.020446
0.00166411
5.17843e-12
0.0204105
0.00158395
1.21705e-11
0.020375
0.00150256
1.61976e-11
0.0203562
0.00139673
2.2813e-11
0.0203831
0.00125204
2.95784e-11
0.00105235
4.02811e-11
0.0248272
0.0173401
1.8677e-10
0.0245668
0.0159302
2.10152e-10
0.0247728
0.0142554
2.5729e-10
0.0253336
0.0124007
3.34114e-10
0.0258651
0.010752
2.91105e-10
0.0263054
0.0093047
1.7324e-10
0.0268787
0.00781748
4.9299e-11
0.0271989
0.0066697
2.42102e-11
0.0270056
0.00604758
-2.41342e-11
0.026794
0.0054128
-1.00183e-10
0.0266153
0.00479642
-9.12641e-11
0.0264412
0.00418773
-6.64271e-11
0.0262967
0.00356932
-4.21113e-11
0.0261756
0.00293788
-2.42435e-11
0.0260697
0.00230519
-1.62813e-11
0.0259602
0.00167824
-1.32598e-11
0.0258419
0.00106546
-1.25615e-11
0.025706
0.000472232
-1.29928e-11
0.0255539
-9.69178e-05
-1.43243e-11
0.0253851
-0.00064348
-1.54882e-11
0.0252043
-0.00115983
-1.63948e-11
0.0250107
-0.00164635
-1.66524e-11
0.0248096
-0.00210083
-1.65951e-11
0.0245994
-0.00252347
-1.57111e-11
0.0243862
-0.00291149
-1.43704e-11
0.024169
-0.00326624
-1.20823e-11
0.0239545
-0.00358434
-9.40593e-12
0.0237436
-0.00386888
-6.20577e-12
0.0235419
-0.00411542
-3.06571e-12
0.0233535
-0.00432958
1.10442e-13
0.0231807
-0.00450539
3.01673e-12
0.0230328
-0.00465043
6.28471e-12
0.0229111
-0.00475911
9.63888e-12
0.0228198
-0.00483431
1.26951e-11
0.0227624
-0.00487245
1.61997e-11
0.0227435
-0.00487439
2.10024e-11
0.0227695
-0.00483029
1.99961e-11
0.0227842
-0.00474697
2.32338e-11
0.0227721
-0.00465
2.42823e-11
0.022866
-0.00457604
2.65891e-11
0.0230564
-0.00442533
3.01568e-11
0.023284
-0.00420266
3.56207e-11
0.0235173
-0.00393277
3.47684e-11
0.0237629
-0.00365773
3.11077e-11
0.023995
-0.0033614
2.54232e-11
0.0242015
-0.00306348
1.839e-11
0.0243757
-0.0027772
1.1524e-11
0.0245152
-0.00250667
6.03498e-12
0.0246222
-0.00225525
1.69415e-12
0.0247011
-0.00202159
-5.46421e-13
0.0247571
-0.00180453
-2.29295e-12
0.024805
-0.001601
-4.00756e-12
0.0248372
-0.00139591
-4.19375e-12
0.0248571
-0.00119823
-4.65167e-12
0.0248633
-0.00100561
-5.50461e-12
0.0248571
-0.000823463
-7.0596e-12
0.0248381
-0.000648291
-7.61135e-12
0.0248075
-0.000481283
-8.09118e-12
0.0247648
-0.000321213
-8.45524e-12
0.0247114
-0.00016755
-8.65582e-12
0.0246465
-2.02512e-05
-8.54563e-12
0.0245723
0.000120594
-8.13532e-12
0.024488
0.000255236
-7.323e-12
0.024395
0.000383878
-6.30549e-12
0.0242941
0.000507072
-5.19425e-12
0.0241855
0.000624802
-4.04967e-12
0.0240715
0.000737508
-2.98081e-12
0.0239509
0.000844953
-1.98807e-12
0.0238273
0.000947429
-1.23858e-12
0.0236981
0.00104476
-6.14525e-13
0.0235673
0.00113699
-4.2399e-13
0.0234322
0.00122428
-3.58147e-13
0.0232962
0.00130624
-5.90821e-13
0.0231573
0.00138361
-1.04593e-12
0.0230179
0.00145544
-1.77746e-12
0.0228772
0.00152309
-2.59446e-12
0.0227361
0.00158505
-3.58553e-12
0.0225947
0.0016432
-4.6169e-12
0.022453
0.00169558
-5.67508e-12
0.0223124
0.00174436
-6.73883e-12
0.0221712
0.00178741
-7.66719e-12
0.0220329
0.00182669
-8.58485e-12
0.0218946
0.00186052
-9.2393e-12
0.0217603
0.00188992
-9.81565e-12
0.0216276
0.001914
-1.00651e-11
0.0214994
0.00193268
-1.0092e-11
0.0213752
0.0019454
-9.7269e-12
0.0212563
0.00195121
-8.96241e-12
0.0211442
0.00194915
-7.65582e-12
0.0210404
0.0019371
-5.66532e-12
0.0209486
0.00191254
-2.86548e-12
0.0208666
0.0018784
-9.11574e-13
0.0207948
0.00183491
1.58088e-12
0.0207437
0.00177028
6.93507e-12
0.0207046
0.00169332
1.65086e-11
0.0206711
0.0016064
1.81444e-11
0.0206722
0.00148893
2.21445e-11
0.0207286
0.00132372
2.97599e-11
0.0208339
0.00112009
4.29766e-11
0.000848478
6.72674e-11
0.0253914
0.0175511
2.06574e-10
0.0256131
0.0155734
2.92604e-10
0.0261479
0.0135117
4.11499e-10
0.0266756
0.0117273
3.13336e-10
0.0271287
0.010199
1.78715e-10
0.0277357
0.00863476
1.0346e-10
0.0279903
0.00754371
7.33207e-12
0.0277107
0.00696266
-5.79591e-11
0.0275211
0.00628619
-1.05177e-10
0.0273334
0.00564346
-9.14052e-11
0.0271524
0.00500594
-6.02467e-11
0.0269987
0.00435633
-3.49524e-11
0.0268787
0.00370131
-1.79745e-11
0.026775
0.00304868
-8.64418e-12
0.0266773
0.00240726
-6.71886e-12
0.0265737
0.0017846
-8.63552e-12
0.0264585
0.00118371
-1.16571e-11
0.0263269
0.00060737
-1.45761e-11
0.026178
5.6994e-05
-1.74235e-11
0.0260123
-0.000470948
-1.87157e-11
0.0258324
-0.000971188
-1.94447e-11
0.0256416
-0.00144409
-1.96787e-11
0.0254406
-0.00188826
-1.93285e-11
0.025232
-0.00230289
-1.84749e-11
0.0250167
-0.00268701
-1.69573e-11
0.0247976
-0.00303948
-1.49973e-11
0.0245775
-0.00336055
-1.26241e-11
0.0243594
-0.00364859
-1.0326e-11
0.0241477
-0.0039054
-7.65406e-12
0.023946
-0.00412881
-5.36288e-12
0.0237589
-0.00432221
-2.46522e-12
0.0235898
-0.00448238
-4.26482e-13
0.0234368
-0.00461225
1.85223e-12
0.0233073
-0.00470887
4.82229e-12
0.023203
-0.00477582
8.0259e-12
0.0231262
-0.00480717
1.13579e-11
0.0230902
-0.00480719
1.54172e-11
0.0230926
-0.00476566
1.89036e-11
0.0231063
-0.00468022
1.72905e-11
0.0231021
-0.00459
2.16965e-11
0.0231284
-0.00447113
2.30099e-11
0.0232743
-0.00436749
2.5399e-11
0.0234963
-0.0041758
3.1448e-11
0.0237273
-0.00390984
3.15763e-11
0.0239665
-0.00361798
2.95634e-11
0.0242077
-0.00331964
2.44218e-11
0.0244298
-0.00300837
1.80569e-11
0.0246185
-0.00270098
1.1256e-11
0.0247697
-0.00240774
4.76882e-12
0.0248848
-0.00213491
-3.63505e-13
0.0249674
-0.0018827
-3.47919e-12
0.0250241
-0.00165038
-7.21077e-12
0.0250699
-0.00143476
-7.52746e-12
0.0250972
-0.00121777
-8.05067e-12
0.0251108
-0.00101099
-8.88141e-12
0.025109
-0.000811948
-1.03934e-11
0.025097
-0.000626205
-1.06982e-11
0.0250707
-0.000445488
-1.05994e-11
0.0250319
-0.000273202
-1.05829e-11
0.0249811
-0.000107957
-1.0655e-11
0.0249189
5.01577e-05
-1.0588e-11
0.0248461
0.000200842
-1.01578e-11
0.0247624
0.000344328
-9.38144e-12
0.0246695
0.000480974
-8.32286e-12
0.0245671
0.000611265
-7.0537e-12
0.0244581
0.000735388
-5.73942e-12
0.0243415
0.00085383
-4.39704e-12
0.0242202
0.00096641
-3.19768e-12
0.0240928
0.00107374
-2.13371e-12
0.0239615
0.00117516
-1.32647e-12
0.0238257
0.00127159
-7.44541e-13
0.0236865
0.0013619
-4.48047e-13
0.0235451
0.00144739
-4.36817e-13
0.0234005
0.00152675
-5.58658e-13
0.0232559
0.00160131
-1.07918e-12
0.0231087
0.0016701
-1.62314e-12
0.0229628
0.00173385
-2.44072e-12
0.0228154
0.00179242
-3.22678e-12
0.0226693
0.00184564
-4.12846e-12
0.0225233
0.00189403
-4.98908e-12
0.0223782
0.00193698
-5.76486e-12
0.0222353
0.00197488
-6.48893e-12
0.0220936
0.00200738
-6.99241e-12
0.0219555
0.00203413
-7.33328e-12
0.0218212
0.00205502
-7.39345e-12
0.0216915
0.00206911
-7.08783e-12
0.0215684
0.00207568
-6.38903e-12
0.0214531
0.0020735
-5.08455e-12
0.0213485
0.00205992
-3.18027e-12
0.0212566
0.00203301
3.88612e-14
0.0211779
0.00199504
9.54731e-13
0.0211084
0.00194845
5.8352e-12
0.0210631
0.00187847
8.69126e-12
0.021019
0.00180461
1.92909e-11
0.020992
0.00170912
2.12513e-11
0.0210081
0.0015764
2.57247e-11
0.0210853
0.00139001
3.55782e-11
0.0212258
0.00115058
5.40152e-11
0.0214218
0.000883496
6.49948e-11
0.000583097
7.7757e-11
0.0268076
0.0172008
3.34083e-10
0.0271955
0.0149869
3.74423e-10
0.0276344
0.0129124
3.33534e-10
0.0281334
0.0111399
1.57391e-10
0.0287861
0.00947766
1.16171e-10
0.0289042
0.00848273
3.06701e-11
0.0285828
0.00789678
-9.87263e-11
0.0283916
0.0071971
-1.02043e-10
0.0281788
0.00653409
-8.80343e-11
0.0279782
0.00586181
-5.86095e-11
0.0278123
0.0051793
-2.9658e-11
0.0276755
0.00449185
-9.3435e-12
0.027563
0.00381025
-6.53152e-13
0.0274607
0.00314708
5.19356e-13
0.0273589
0.00250657
-1.99453e-12
0.0272498
0.00189341
-6.71154e-12
0.027128
0.00130661
-1.19708e-11
0.0269916
0.000746652
-1.61601e-11
0.0268406
0.000212621
-1.90387e-11
0.0266757
-0.000297812
-2.10351e-11
0.0264991
-0.000783838
-2.18771e-11
0.0263129
-0.00124388
-2.21724e-11
0.0261156
-0.00167767
-2.17504e-11
0.0259106
-0.00208425
-2.10762e-11
0.0256966
-0.00246325
-1.96176e-11
0.0254784
-0.00281266
-1.81226e-11
0.025256
-0.0031339
-1.60275e-11
0.0250347
-0.00342361
-1.42878e-11
0.0248156
-0.00368578
-1.20407e-11
0.024604
-0.00391558
-1.02522e-11
0.0244006
-0.00411899
-7.93484e-12
0.0242085
-0.0042897
-5.79845e-12
0.0240306
-0.00443521
-3.47468e-12
0.0238698
-0.00454801
-1.15144e-12
0.0237259
-0.00463646
9.00299e-13
0.0236058
-0.00469134
3.24718e-12
0.0235105
-0.0047206
6.80808e-12
0.0234486
-0.0047148
9.67494e-12
0.0234308
-0.00467607
1.33638e-11
0.0234228
-0.00459506
1.34241e-11
0.0234428
-0.00450386
1.47438e-11
0.0234375
-0.00437887
2.18611e-11
0.0235089
-0.00426362
2.30577e-11
0.0236788
-0.00409635
2.53177e-11
0.0239067
-0.00386406
2.91864e-11
0.0241417
-0.00357204
2.89723e-11
0.0243825
-0.00326518
2.72863e-11
0.0246131
-0.00294306
2.17802e-11
0.0248156
-0.00261752
1.40079e-11
0.0249822
-0.00230237
6.00297e-12
0.0251066
-0.00200515
-4.77142e-13
0.0251937
-0.00173132
-5.70626e-12
0.0252492
-0.00148086
-1.03872e-11
0.0252945
-0.00125259
-1.07224e-11
0.0253186
-0.00102402
-1.12963e-11
0.0253261
-0.000806879
-1.25053e-11
0.0253155
-0.000601199
-1.4944e-11
0.0252956
-0.000411371
-1.37816e-11
0.025262
-0.000225984
-1.31205e-11
0.0252154
-4.95586e-05
-1.2437e-11
0.0251579
0.000118661
-1.21013e-11
0.0250888
0.000279138
-1.16149e-11
0.0250094
0.000431959
-1.08207e-11
0.0249191
0.000577389
-9.70331e-12
0.0248195
0.000715458
-8.37688e-12
0.0247114
0.000846689
-6.94062e-12
0.0245957
0.000971107
-5.44516e-12
0.0244741
0.00108935
-4.04951e-12
0.0243457
0.00120137
-2.74226e-12
0.024213
0.00130741
-1.717e-12
0.0240744
0.00140756
-8.66583e-13
0.0239329
0.00150154
-3.74063e-13
0.0237874
0.0015899
-1.40317e-13
0.0236397
0.00167194
-7.74707e-14
0.0234907
0.00174854
-2.16254e-13
0.02334
0.00181894
-4.47329e-13
0.0231898
0.0018839
-1.00211e-12
0.0230396
0.00194295
-1.62023e-12
0.02289
0.00199655
-2.28439e-12
0.0227428
0.00204416
-2.97756e-12
0.0225962
0.00208652
-3.53667e-12
0.0224533
0.00212223
-4.04994e-12
0.022313
0.00215266
-4.3317e-12
0.0221767
0.00217538
-4.38376e-12
0.0220461
0.00219184
-4.13234e-12
0.0219209
0.00219884
-3.36706e-12
0.0218054
0.00219707
-2.14286e-12
0.0217004
0.00218154
-1.2609e-13
0.0216103
0.00215192
3.25582e-12
0.0215327
0.00211128
4.20143e-12
0.0214695
0.00205743
7.94486e-12
0.0214197
0.0019893
1.72668e-11
0.0213766
0.00191272
1.87704e-11
0.021366
0.00180434
2.25705e-11
0.0214069
0.00165144
2.97408e-11
0.0215196
0.00143778
4.25381e-11
0.0216781
0.0011931
6.0926e-11
0.0218741
0.000908049
7.29489e-11
0.0221151
0.000591735
7.91538e-11
0.000277613
8.02748e-11
0.0280887
0.0164603
4.16742e-10
0.0287466
0.0142021
3.29964e-10
0.0294225
0.0121669
1.80994e-10
0.030094
0.0103932
1.38165e-10
0.0299996
0.00952538
4.53982e-11
0.0296294
0.00887603
-1.00929e-10
0.0293925
0.00817
-1.30277e-10
0.0291294
0.00748467
-9.90117e-11
0.0288984
0.006779
-6.2486e-11
0.0287065
0.00605502
-3.18043e-11
0.028557
0.0053251
-8.75003e-12
0.0284342
0.00460779
1.97858e-12
0.0283257
0.00391211
4.74076e-12
0.0282212
0.00324699
2.38743e-12
0.0281125
0.00261262
-1.61115e-12
0.0279952
0.00201067
-7.5746e-12
0.0278653
0.00143781
-1.32788e-11
0.0277227
0.000892886
-1.75484e-11
0.0275675
0.000373587
-2.03766e-11
0.0274006
-0.000121139
-2.23439e-11
0.0272233
-0.000594876
-2.31903e-11
0.0270368
-0.00104339
-2.35231e-11
0.0268393
-0.00146753
-2.32519e-11
0.0266339
-0.00186606
-2.27928e-11
0.0264186
-0.00223855
-2.17808e-11
0.0261984
-0.00258382
-2.07431e-11
0.025972
-0.00290206
-1.92906e-11
0.0257451
-0.00319192
-1.79089e-11
0.0255181
-0.00345516
-1.62501e-11
0.0252955
-0.00368943
-1.46048e-11
0.0250778
-0.00389797
-1.28951e-11
0.0248697
-0.00407777
-1.08611e-11
0.0246701
-0.00423232
-8.92505e-12
0.0244827
-0.00435959
-6.73267e-12
0.0243094
-0.00446141
-4.66169e-12
0.024151
-0.00453688
-2.24638e-12
0.0240138
-0.00458566
-5.61077e-14
0.0238981
-0.00460725
2.10612e-12
0.0238157
-0.00459988
5.0802e-12
0.0237711
-0.00456074
9.15399e-12
0.0237432
-0.00448551
8.83825e-12
0.0237393
-0.00438392
1.14372e-11
0.0237375
-0.00427712
2.02093e-11
0.0237596
-0.00413309
2.13022e-11
0.0238625
-0.00398368
2.36655e-11
0.0240506
-0.00377681
2.71249e-11
0.0242661
-0.00350238
3.2568e-11
0.0244883
-0.00318562
3.08253e-11
0.0247179
-0.00286339
2.56161e-11
0.0249268
-0.00252295
1.82313e-11
0.0251026
-0.00218583
9.59506e-12
0.0252405
-0.00186572
8.9457e-13
0.025339
-0.00156946
-5.55156e-12
0.0253997
-0.00129896
-1.0779e-11
0.0254477
-0.00105534
-1.4098e-11
0.0254747
-0.000816863
-1.44509e-11
0.0254777
-0.000587812
-1.49788e-11
0.0254573
-0.000374767
-1.57425e-11
0.0254268
-0.000180726
-1.55955e-11
0.0253824
7.28764e-06
-1.4015e-11
0.0253276
0.000184715
-1.34023e-11
0.0252616
0.000354211
-1.27932e-11
0.0251857
0.000515939
-1.18526e-11
0.0250988
0.000670165
-1.0639e-11
0.0250028
0.00081649
-9.28142e-12
0.0248982
0.000955227
-7.78437e-12
0.0247857
0.00108631
-6.19394e-12
0.0246669
0.00121052
-4.61946e-12
0.024541
0.00132766
-3.10137e-12
0.0244105
0.00143838
-1.82765e-12
0.0242743
0.00154237
-7.18288e-13
0.0241343
0.00164007
-7.30406e-14
0.0239906
0.0017312
3.53802e-13
0.0238438
0.00181614
6.02078e-13
0.0236951
0.00189452
5.87136e-13
0.0235447
0.0019669
5.24929e-13
0.0233933
0.00203266
4.01031e-13
0.0232428
0.0020925
1.51169e-13
0.023092
0.00214578
-1.44816e-13
0.022944
0.00219279
-5.62868e-13
0.0227974
0.00223326
-9.13542e-13
0.0226552
0.00226667
-1.19191e-12
0.0225169
0.00229295
-1.1435e-12
0.022385
0.00231073
-8.44667e-13
0.0222605
0.00231952
-2.58708e-14
0.0221455
0.00231711
1.10133e-12
0.0220446
0.00230063
3.33609e-12
0.0219605
0.00226615
6.59044e-12
0.0218866
0.00222541
8.81419e-12
0.0218339
0.00216315
1.0501e-11
0.0217811
0.00210191
2.07219e-11
0.0217459
0.00201454
2.26277e-11
0.0217558
0.00189023
2.70999e-11
0.0218328
0.00170876
3.64843e-11
0.0219722
0.00148265
5.34015e-11
0.022154
0.00121927
6.38772e-11
0.0223808
0.000919718
7.58716e-11
0.0226324
0.000605523
8.02675e-11
0.0228866
0.000286333
7.85533e-11
-5.92706e-06
7.39211e-11
0.0294128
0.0153382
4.00738e-10
0.0304428
0.0131038
2.18328e-10
0.0312593
0.0112944
1.71719e-10
0.03106
0.0105684
7.39893e-11
0.0307721
0.00984777
-8.36077e-11
0.0305457
0.00914819
-1.08e-10
0.0302876
0.00846417
-9.82521e-11
0.0300425
0.00774312
-6.76933e-11
0.0298273
0.00698851
-3.6826e-11
0.0296406
0.00622434
-1.2379e-11
0.0294741
0.0054673
1.07259e-12
0.0293255
0.00473405
6.52313e-12
0.0291893
0.00403227
6.46019e-12
0.0290599
0.00336766
1.7833e-12
0.0289277
0.00274027
-3.20735e-12
0.0287915
0.002147
-9.7604e-12
0.0286481
0.0015852
-1.4982e-11
0.0284986
0.00105131
-1.88704e-11
0.028341
0.000543848
-2.14877e-11
0.0281739
6.18383e-05
-2.3386e-11
0.0279971
-0.000401265
-2.41814e-11
0.0278091
-0.00084009
-2.45978e-11
0.0276105
-0.00125463
-2.47574e-11
0.0274012
-0.0016456
-2.46452e-11
0.0271834
-0.00201067
-2.42569e-11
0.0269588
-0.00235121
-2.36497e-11
0.0267292
-0.0026653
-2.27008e-11
0.0264982
-0.00295392
-2.15964e-11
0.0262665
-0.00321645
-2.0386e-11
0.0260362
-0.00345277
-1.8757e-11
0.0258107
-0.00366424
-1.77373e-11
0.0255872
-0.00384949
-1.5876e-11
0.025372
-0.00401112
-1.42658e-11
0.0251611
-0.0041468
-1.21558e-11
0.0249596
-0.00425912
-1.03341e-11
0.0247681
-0.0043462
-8.37689e-12
0.0245902
-0.00441003
-6.19044e-12
0.0244294
-0.00444921
-3.9431e-12
0.0242896
-0.00446317
-1.63753e-12
0.0241746
-0.0044512
1.03576e-12
0.024092
-0.00440908
4.95079e-12
0.0240372
-0.00433566
5.6939e-12
0.0239832
-0.00423116
8.86825e-12
0.023965
-0.00412379
1.13861e-11
0.0239516
-0.00398364
2.06687e-11
0.0239791
-0.00381837
2.20402e-11
0.0240959
-0.00363343
2.50746e-11
0.0242862
-0.00339161
3.06362e-11
0.0244922
-0.00308421
3.12278e-11
0.0247046
-0.00274971
2.96623e-11
0.0249184
-0.00240797
2.36644e-11
0.0251077
-0.00205775
1.51848e-11
0.0252608
-0.00171687
6.04611e-12
0.0253696
-0.00139854
-1.66969e-12
0.0254339
-0.0011076
-8.85965e-12
0.025478
-0.000846081
-1.40186e-11
0.0255053
-0.000599643
-1.41287e-11
0.0255042
-0.000358559
-1.49355e-11
0.0254757
-0.000137542
-1.58149e-11
0.0254374
6.09975e-05
-1.75189e-11
0.0253882
0.000247349
-1.62166e-11
0.0253283
0.000425818
-1.45273e-11
0.0252586
0.00059515
-1.28281e-11
0.0251797
0.000756836
-1.12266e-11
0.0250923
0.000910632
-9.71348e-12
0.0249958
0.00105656
-8.13229e-12
0.0248919
0.00119466
-6.46513e-12
0.0247796
0.00132506
-4.72674e-12
0.0246611
0.0014477
-3.05791e-12
0.0245359
0.00156308
-1.54403e-12
0.0244063
0.00167097
-3.22586e-13
0.024272
0.00177213
6.84685e-13
0.0241351
0.001866
1.43348e-12
0.023995
0.00195349
1.96785e-12
0.0238533
0.0020337
2.27774e-12
0.0237099
0.00210772
2.41723e-12
0.0235656
0.00217437
2.40414e-12
0.0234214
0.00223472
2.23553e-12
0.0232776
0.00228754
2.05125e-12
0.0231359
0.00233355
1.82611e-12
0.0229971
0.00237148
1.8009e-12
0.0228627
0.00240158
1.96838e-12
0.022734
0.00242213
2.5188e-12
0.0226138
0.00243262
3.3937e-12
0.0225033
0.00243045
5.07507e-12
0.0224091
0.00241225
7.83076e-12
0.0223331
0.0023748
1.09499e-11
0.022269
0.00232984
1.19612e-11
0.0222178
0.00227037
1.8278e-11
0.0221672
0.002209
1.977e-11
0.0221537
0.00210907
2.30836e-11
0.0221961
0.00195861
3.00128e-11
0.0223121
0.00175376
4.15706e-11
0.0224728
0.0015127
6.4261e-11
0.0226823
0.00123251
7.32339e-11
0.0229323
0.000923605
7.79054e-11
0.023199
0.000605939
7.95026e-11
0.0234571
0.00030266
7.33279e-11
0.0236802
2.1907e-05
6.65254e-11
-0.000209715
4.44549e-11
0.0305884
0.0137201
2.81718e-10
0.0316522
0.0119932
2.16571e-10
0.0316202
0.0113297
7.14214e-11
0.0315446
0.0106681
-2.80281e-11
0.0314025
0.0100281
-5.51147e-11
0.0312094
0.00937269
-4.48659e-11
0.0310245
0.00866201
-3.29893e-11
0.030861
0.0078995
-1.83761e-11
0.030716
0.00711648
-6.48521e-12
0.0305837
0.00633572
2.95593e-13
0.0304589
0.00557747
4.1064e-12
0.0303324
0.00485105
5.10473e-12
0.0301971
0.00416187
2.48097e-12
0.030053
0.00350893
-1.06826e-12
0.0299025
0.00289165
-6.62167e-12
0.0297459
0.00230705
-1.23105e-11
0.0295868
0.00175288
-1.70231e-11
0.0294213
0.00122674
-2.04945e-11
0.0292517
0.000726799
-2.31328e-11
0.0290717
0.000252762
-2.48132e-11
0.02888
-0.000198869
-2.6012e-11
0.0286782
-0.000629715
-2.67978e-11
0.0284673
-0.00103585
-2.71499e-11
0.0282488
-0.00141821
-2.74129e-11
0.0280229
-0.00177673
-2.71157e-11
0.0277933
-0.00211147
-2.67989e-11
0.0275575
-0.0024216
-2.60158e-11
0.0273201
-0.00270702
-2.53609e-11
0.0270773
-0.00296742
-2.38241e-11
0.0268343
-0.00320203
-2.26952e-11
0.0265881
-0.00341284
-2.03383e-11
0.026342
-0.00359792
-1.8777e-11
0.0260965
-0.00376083
-1.70062e-11
0.0258531
-0.003899
-1.54416e-11
0.0256144
-0.00401633
-1.39746e-11
0.0253816
-0.00410981
-1.24828e-11
0.0251586
-0.0041833
-1.13094e-11
0.0249447
-0.00423281
-9.63992e-12
0.0247454
-0.00426207
-7.67095e-12
0.0245616
-0.00426663
-5.3071e-12
0.0244005
-0.0042491
-2.45475e-12
0.0242671
-0.00420464
1.75586e-12
0.0241656
-0.00413183
2.05078e-12
0.024069
-0.00402898
5.25528e-12
0.024007
-0.0039244
9.71625e-12
0.0239802
-0.00379816
1.90851e-11
0.0239662
-0.00362633
2.02439e-11
0.0240022
-0.00343493
2.32273e-11
0.0241293
-0.00321946
2.78783e-11
0.0243102
-0.00294521
3.47098e-11
0.0245071
-0.00261652
3.34582e-11
0.0247106
-0.00227158
3.09988e-11
0.0249039
-0.00191514
2.3584e-11
0.0250673
-0.00156109
1.38422e-11
0.0251885
-0.00122372
3.92821e-12
0.0252644
-0.000912711
-3.72146e-12
0.0253097
-0.000631237
-1.1567e-11
0.0253428
-0.000377809
-1.21733e-11
0.0253477
-0.000128575
-1.33208e-11
0.0253221
0.000100848
-1.4927e-11
0.0252794
0.000305337
-1.73096e-11
0.0252294
0.000489865
-1.57935e-11
0.0251672
0.000668823
-1.36731e-11
0.0250968
0.000836605
-1.16712e-11
0.0250186
0.000995999
-9.87337e-12
0.0249328
0.00114798
-8.10449e-12
0.0248387
0.00129252
-6.27167e-12
0.0247367
0.00142901
-4.4197e-12
0.0246275
0.00155734
-2.63274e-12
0.0245121
0.00167743
-9.6224e-13
0.0243919
0.00178961
4.75773e-13
0.0242678
0.00189404
1.70819e-12
0.0241406
0.00199095
2.69323e-12
0.0240117
0.00208046
3.47112e-12
0.0238813
0.00216266
4.05182e-12
0.0237507
0.00223749
4.47136e-12
0.0236201
0.00230497
4.75047e-12
0.0234906
0.00236476
4.91712e-12
0.0233623
0.00241669
5.05643e-12
0.0232367
0.00246011
5.23726e-12
0.0231153
0.0024944
5.57896e-12
0.0229994
0.00251857
6.23474e-12
0.0228922
0.00253082
7.28441e-12
0.0227959
0.00252935
9.34e-12
0.0227172
0.00250846
1.20537e-11
0.0226562
0.00247058
1.51823e-11
0.0226091
0.00241975
1.53397e-11
0.0225567
0.00237433
2.37007e-11
0.0225209
0.00229712
2.58416e-11
0.022541
0.00217782
3.01869e-11
0.0226304
0.00200239
3.88113e-11
0.0227783
0.00178274
5.45712e-11
0.0229711
0.00152752
6.42087e-11
0.0232099
0.0012315
7.46826e-11
0.0234797
0.000916785
7.90594e-11
0.0237536
0.000603693
7.63143e-11
0.024009
0.000310996
6.80674e-11
0.0242233
5.5966e-05
5.48022e-11
0.0243816
-0.000160566
4.09155e-11
-0.000331781
2.62506e-11
0.0305227
0.0114562
1.47027e-10
0.0310871
0.0114436
5.38236e-11
0.031152
0.0113301
-1.11774e-10
0.0313042
0.0105715
-5.88404e-11
0.03142
0.0099432
-3.21043e-12
0.0314417
0.00935372
4.76305e-11
0.0314436
0.00863981
5.7515e-11
0.0314246
0.00788637
3.89379e-11
0.0313843
0.00712345
2.03095e-11
0.0313215
0.00637086
1.02997e-11
0.0312422
0.00564017
5.19871e-12
0.0311458
0.00494051
2.76525e-12
0.0310323
0.00427423
-1.54317e-13
0.0309002
0.0036411
-3.88535e-12
0.0307546
0.0030388
-9.69884e-12
0.0305996
0.00246675
-1.49767e-11
0.0304372
0.00192302
-1.94465e-11
0.0302686
0.00140676
-2.30341e-11
0.0300931
0.000916277
-2.56377e-11
0.0299095
0.000451401
-2.74654e-11
0.0297123
1.37077e-05
-2.81708e-11
0.0295091
-0.000410241
-2.94124e-11
0.0292962
-0.000805775
-3.00093e-11
0.0290742
-0.00117852
-3.00715e-11
0.0288427
-0.00152798
-3.00002e-11
0.0286021
-0.00185401
-2.987e-11
0.0283512
-0.00215593
-2.93504e-11
0.0280932
-0.00243394
-2.87251e-11
0.0278267
-0.00268811
-2.77393e-11
0.0275568
-0.00291849
-2.64869e-11
0.0272821
-0.00312601
-2.48507e-11
0.0270059
-0.00330992
-2.30634e-11
0.0267285
-0.00347217
-2.13568e-11
0.0264518
-0.00361213
-1.96657e-11
0.0261771
-0.00373131
-1.83252e-11
0.0259064
-0.00382988
-1.69245e-11
0.0256406
-0.00390838
-1.56405e-11
0.0253827
-0.00396697
-1.42443e-11
0.0251343
-0.0040061
-1.27264e-11
0.0248989
-0.00402498
-1.08404e-11
0.0246789
-0.00402384
-8.46293e-12
0.0244803
-0.00400124
-5.58376e-12
0.0243082
-0.00395694
-1.30849e-12
0.024167
-0.00388526
2.01289e-12
0.0240309
-0.00378466
3.01972e-12
0.0239139
-0.00367979
7.75782e-12
0.0238445
-0.0035556
1.51862e-11
0.0238072
-0.00340191
2.26412e-11
0.0237892
-0.00320501
2.37484e-11
0.0238441
-0.00300451
2.65127e-11
0.023982
-0.00276168
3.14488e-11
0.0241547
-0.00245782
4.11217e-11
0.024341
-0.00211364
3.82462e-11
0.0245355
-0.00176316
3.17122e-11
0.0247063
-0.00140061
2.27759e-11
0.024842
-0.00104732
1.25748e-11
0.0249373
-0.000719738
1.93799e-12
0.0249905
-0.000420921
-4.70373e-12
0.0250325
-0.00015684
-1.05134e-11
0.0250528
9.3856e-05
-1.10219e-11
0.0250401
0.000331756
-1.20948e-11
0.024999
0.000545259
-1.38937e-11
0.02495
0.000730294
-1.29581e-11
0.024893
0.000905536
-1.1516e-11
0.0248267
0.0010717
-9.57615e-12
0.0247537
0.00122868
-7.56561e-12
0.0246734
0.00137808
-5.54538e-12
0.0245869
0.00151959
-3.64073e-12
0.0244942
0.00165283
-1.79105e-12
0.0243956
0.00177769
-8.58318e-15
0.0242919
0.00189405
1.63195e-12
0.0241836
0.00200206
3.07475e-12
0.0240721
0.00210175
4.28664e-12
0.0239579
0.00219341
5.29572e-12
0.0238423
0.00227695
6.12926e-12
0.023726
0.00235251
6.8195e-12
0.0236102
0.00241967
7.40505e-12
0.0234955
0.00247834
7.92084e-12
0.0233837
0.00252756
8.45312e-12
0.0232757
0.00256695
9.09938e-12
0.0231739
0.00259472
1.00002e-11
0.0230804
0.00260985
1.14325e-11
0.0229996
0.00260833
1.3238e-11
0.0229364
0.00258676
1.73975e-11
0.0228934
0.00254622
1.67619e-11
0.0228531
0.00250134
2.31234e-11
0.0228064
0.00245737
2.40729e-11
0.0228061
0.00236484
2.72332e-11
0.0228686
0.0022194
3.4448e-11
0.0230018
0.00202186
4.61415e-11
0.0231806
0.00179156
6.06191e-11
0.0234061
0.00151704
7.21462e-11
0.0236774
0.00121289
7.87729e-11
0.0239632
0.000900242
7.8732e-11
0.0242413
0.000596512
7.28277e-11
0.0244861
0.000322413
6.1082e-11
0.0246847
8.65774e-05
4.68142e-11
0.0248239
-0.000103201
3.10784e-11
0.0249114
-0.000259128
2.06665e-11
-0.0003828
1.00695e-11
0.0272131
0.00942481
3.73044e-10
0.0282703
0.0104294
-1.98131e-10
0.0293318
0.0103294
-1.82745e-10
0.0299553
0.0100008
-5.22868e-11
0.030401
0.00952719
8.13081e-11
0.0307805
0.00897456
1.63762e-10
0.0310719
0.00833154
1.52071e-10
0.031288
0.00765007
1.03079e-10
0.0314479
0.00695698
5.27338e-11
0.0315462
0.00627063
1.98584e-11
0.031587
0.00560342
4.38546e-12
0.0315779
0.00495936
-1.94056e-12
0.0315289
0.00433592
-6.0506e-12
0.0314467
0.00373656
-1.08019e-11
0.0313369
0.00316019
-1.51448e-11
0.0312085
0.00260834
-1.95006e-11
0.0310674
0.00208128
-2.33136e-11
0.0309164
0.00157957
-2.64972e-11
0.0307544
0.00110304
-2.91803e-11
0.030581
0.000651499
-3.12026e-11
0.0303974
0.000225361
-3.31141e-11
0.0301954
-0.000180309
-3.37526e-11
0.0299808
-0.0005636
-3.41717e-11
0.0297521
-0.000923552
-3.44996e-11
0.0295096
-0.00126093
-3.44088e-11
0.0292536
-0.00157591
-3.4115e-11
0.0289849
-0.00186781
-3.35435e-11
0.0287066
-0.00213712
-3.28082e-11
0.0284181
-0.00238331
-3.16913e-11
0.0281232
-0.0026073
-3.04362e-11
0.0278221
-0.00280903
-2.89103e-11
0.0275165
-0.00298961
-2.71491e-11
0.0272099
-0.00314881
-2.5556e-11
0.026901
-0.00328861
-2.37457e-11
0.0265939
-0.00340751
-2.24216e-11
0.0262882
-0.00350902
-2.10247e-11
0.025985
-0.00359014
-1.9847e-11
0.0256866
-0.00365486
-1.86725e-11
0.025394
-0.00370037
-1.73811e-11
0.0251094
-0.00372929
-1.58023e-11
0.024838
-0.0037398
-1.39277e-11
0.0245807
-0.00373328
-1.14712e-11
0.0243439
-0.00370722
-8.37217e-12
0.0241338
-0.00366335
-4.92225e-12
0.0239564
-0.00359472
-4.92919e-13
0.0237931
-0.00350338
7.78778e-13
0.0236524
-0.00340239
5.10635e-12
0.023548
-0.00328948
1.24675e-11
0.0234957
-0.00314683
1.75804e-11
0.0234473
-0.00295805
2.74495e-11
0.0234341
-0.00275191
2.91032e-11
0.0235042
-0.00253434
3.21002e-11
0.0236477
-0.00226811
3.92435e-11
0.0238118
-0.00194115
4.0284e-11
0.0239868
-0.00159061
3.90594e-11
0.0241608
-0.00123425
3.17199e-11
0.0243115
-0.000876254
2.14502e-11
0.0244241
-0.000535593
1.10062e-11
0.0244981
-0.000223214
1.89758e-12
0.0245452
5.64941e-05
-3.92575e-12
0.0245816
0.000304405
-5.20011e-12
0.0245887
0.000548801
-6.76433e-12
0.0245616
0.000770026
-9.36389e-12
0.0245192
0.000961365
-1.01183e-11
0.0244693
0.00113269
-8.24591e-12
0.0244096
0.00129749
-6.22565e-12
0.024344
0.00145058
-4.31227e-12
0.0242738
0.0015951
-2.49177e-12
0.0241986
0.00173169
-6.40787e-13
0.0241182
0.00186032
1.33943e-12
0.0240326
0.0019804
3.21214e-12
0.0239431
0.00209163
4.88526e-12
0.0238504
0.00219397
6.33004e-12
0.0237557
0.00228736
7.56634e-12
0.0236601
0.00237191
8.65858e-12
0.0235647
0.00244733
9.63971e-12
0.0234707
0.00251335
1.06064e-11
0.0233793
0.0025693
1.15379e-11
0.0232923
0.00261411
1.26343e-11
0.0232117
0.00264668
1.39061e-11
0.0231393
0.00266513
1.57084e-11
0.0230818
0.00266492
1.7817e-11
0.0230415
0.00264208
2.25366e-11
0.02302
0.00260262
2.16903e-11
0.0229802
0.00257662
2.92413e-11
0.0229604
0.00251001
2.88723e-11
0.0230081
0.00239628
3.45967e-11
0.023126
0.00222785
4.1842e-11
0.0232959
0.00202191
5.61341e-11
0.0235078
0.00177418
6.53364e-11
0.0237717
0.00148749
7.52539e-11
0.0240635
0.00118189
7.96522e-11
0.0243598
0.000874215
7.74138e-11
0.0246349
0.000586818
6.855e-11
0.0248674
0.000333623
5.49349e-11
0.0250463
0.000121539
3.95466e-11
0.0251676
-4.83786e-05
2.46907e-11
0.0252388
-0.000180658
1.30355e-11
0.0252729
-0.000296555
6.21579e-12
-0.000387395
1.17034e-12
0.02289
0.0073099
4.2022e-10
0.0248692
0.00851128
-2.86389e-10
0.0264436
0.00881014
-2.26971e-10
0.0277246
0.00873463
-1.10718e-11
0.0286777
0.00854797
2.13105e-10
0.0294615
0.00815717
2.66136e-10
0.0300731
0.00768742
2.20261e-10
0.0305214
0.00716386
1.4001e-10
0.0308304
0.0066055
6.90075e-11
0.0310387
0.00603135
1.8935e-11
0.0311829
0.00545066
-2.31977e-13
0.0312733
0.0048753
-1.18323e-11
0.0313151
0.00430787
-1.82136e-11
0.0313195
0.00375343
-2.18713e-11
0.0312904
0.00321424
-2.49222e-11
0.0312362
0.00269379
-2.78203e-11
0.031157
0.00219474
-3.02958e-11
0.0310579
0.00171756
-3.25729e-11
0.0309378
0.00126355
-3.41659e-11
0.0307963
0.000832178
-3.54572e-11
0.0306373
0.000424172
-3.6713e-11
0.0304556
3.93558e-05
-3.7406e-11
0.030256
-0.000325181
-3.8131e-11
0.0300366
-0.000667425
-3.83607e-11
0.0297997
-0.000988062
-3.82355e-11
0.0295452
-0.00128755
-3.78999e-11
0.0292754
-0.00156562
-3.7257e-11
0.028992
-0.00182223
-3.65143e-11
0.0286969
-0.00205812
-3.53751e-11
0.0283917
-0.00227249
-3.41246e-11
0.0280792
-0.00246747
-3.2627e-11
0.0277592
-0.00264149
-3.09822e-11
0.0274365
-0.00279751
-2.94679e-11
0.0271084
-0.00293371
-2.7814e-11
0.02678
-0.00305283
-2.64989e-11
0.0264494
-0.00315371
-2.52148e-11
0.0261188
-0.00323813
-2.4018e-11
0.0257915
-0.00330568
-2.29851e-11
0.0254668
-0.00335771
-2.16385e-11
0.0251505
-0.00339345
-2.03244e-11
0.0248439
-0.00341471
-1.85866e-11
0.0245499
-0.00341976
-1.65073e-11
0.0242729
-0.00341015
-1.40237e-11
0.0240135
-0.0033838
-1.09125e-11
0.0237792
-0.00334102
-7.47833e-12
0.0235722
-0.00327805
-2.70081e-12
0.0233812
-0.00319401
-9.10801e-13
0.0232083
-0.00310003
2.87411e-12
0.0230691
-0.00299667
1.00101e-11
0.0229847
-0.00286574
1.6626e-11
0.0229299
-0.00269853
2.62306e-11
0.022888
-0.00249638
2.77172e-11
0.0229058
-0.00229172
3.10787e-11
0.0230073
-0.00205528
3.65214e-11
0.0231608
-0.001763
4.57378e-11
0.0233266
-0.00142191
4.3611e-11
0.0235023
-0.00107109
3.95437e-11
0.0236644
-0.000713269
3.15765e-11
0.0237969
-0.000363898
2.14142e-11
0.0238925
-4.01393e-05
1.23356e-11
0.0239483
0.000251193
2.57603e-12
0.0239999
0.000504294
-1.02198e-12
0.0240291
0.000747605
-1.28984e-12
0.0240222
0.000975801
-2.10381e-12
0.0239883
0.00117557
-4.33209e-12
0.0239494
0.00134477
-3.70221e-12
0.0239034
0.00150394
-2.95603e-12
0.0238517
0.00165241
-1.31057e-12
0.0237958
0.0017912
7.56937e-13
0.0237356
0.00192217
3.05638e-12
0.0236711
0.00204471
5.20089e-12
0.0236029
0.00215843
7.11007e-12
0.0235314
0.00226304
8.79869e-12
0.023458
0.0023579
1.02477e-11
0.0233841
0.00244292
1.1555e-11
0.0233107
0.00251723
1.29744e-11
0.0232408
0.0025803
1.42119e-11
0.0231749
0.00263113
1.59105e-11
0.0231176
0.00266753
1.74906e-11
0.0230698
0.00268917
1.97663e-11
0.0230387
0.00268947
2.25888e-11
0.0230316
0.00266326
2.64522e-11
0.0230208
0.00264063
2.93325e-11
0.023002
0.00261104
3.09352e-11
0.0230373
0.00252845
3.46502e-11
0.0231416
0.00238784
4.17673e-11
0.0232984
0.00221361
5.5559e-11
0.0234981
0.0019962
6.51284e-11
0.023749
0.00173325
7.37426e-11
0.0240398
0.00144206
7.85681e-11
0.0243471
0.00113822
7.89634e-11
0.0246468
0.00084412
7.37147e-11
0.0249124
0.000576212
6.27112e-11
0.0251292
0.000346587
4.8347e-11
0.0252888
0.000158215
3.33326e-11
0.0253965
6.98294e-06
1.98731e-11
0.0254519
-0.000106603
9.58273e-12
0.025477
-0.000203936
2.77747e-12
0.0254753
-0.000294563
7.86704e-13
-0.000374823
-2.57721e-12
0.0192156
0.00563311
4.45222e-10
0.0213385
0.00643394
-2.98474e-10
0.0232589
0.00689484
-1.32987e-10
0.024793
0.00714566
6.72096e-11
0.0260959
0.00716583
2.62081e-10
0.0271872
0.00700877
2.98764e-10
0.0281029
0.00674745
2.28908e-10
0.0288544
0.00641211
1.32336e-10
0.0294549
0.00602393
5.3566e-11
0.0299198
0.00559429
4.26864e-12
0.0302631
0.00513739
-2.14385e-11
0.0305117
0.00465964
-3.23168e-11
0.0306826
0.00417177
-3.69307e-11
0.0307867
0.00368052
-3.75897e-11
0.0308357
0.00319399
-3.85812e-11
0.0308413
0.00271821
-3.86869e-11
0.0308123
0.0022567
-3.87357e-11
0.0307548
0.00181209
-3.8921e-11
0.0306735
0.00138656
-3.91134e-11
0.0305675
0.000980754
-3.9316e-11
0.0304393
0.000595789
-3.97675e-11
0.0302857
0.00023236
-4.02501e-11
0.030108
-0.000110335
-4.06771e-11
0.0299068
-0.000431565
-4.08949e-11
0.0296834
-0.000731916
-4.08902e-11
0.0294428
-0.00101207
-4.08959e-11
0.0291825
-0.00127243
-4.03959e-11
0.0289089
-0.00151308
-3.99491e-11
0.0286186
-0.00173497
-3.89291e-11
0.0283175
-0.00193763
-3.78639e-11
0.028004
-0.00212267
-3.6474e-11
0.0276826
-0.00228926
-3.49691e-11
0.0273539
-0.0024392
-3.35048e-11
0.0270195
-0.00257167
-3.19887e-11
0.0266821
-0.00268838
-3.06945e-11
0.0263419
-0.00278884
-2.93564e-11
0.0260016
-0.00287412
-2.82442e-11
0.0256631
-0.00294455
-2.70044e-11
0.0253277
-0.00300027
-2.57516e-11
0.0249992
-0.00304233
-2.44085e-11
0.0246782
-0.00307057
-2.27669e-11
0.0243674
-0.00308565
-2.08992e-11
0.0240688
-0.00308758
-1.86844e-11
0.0237845
-0.00307603
-1.60068e-11
0.0235179
-0.00305096
-1.28533e-11
0.0232732
-0.00301104
-9.24448e-12
0.0230547
-0.0029546
-4.66085e-12
0.0228542
-0.00287931
-2.72066e-12
0.0226704
-0.00279488
1.00045e-12
0.0225182
-0.00270185
7.77402e-12
0.02241
-0.00258248
1.5634e-11
0.0223457
-0.00243266
2.02801e-11
0.0222915
-0.00224715
3.07745e-11
0.0222682
-0.00204422
3.21457e-11
0.0223181
-0.00183128
3.53037e-11
0.02245
-0.00157382
4.00772e-11
0.0226057
-0.00125803
4.83576e-11
0.0227754
-0.000911064
4.74004e-11
0.022942
-0.000558333
4.07079e-11
0.0230885
-0.000206203
3.16115e-11
0.0231995
0.000125808
2.10151e-11
0.0232692
0.000427268
1.33275e-11
0.0233245
0.0006902
5.93432e-12
0.0233687
0.000930842
5.29289e-12
0.0233849
0.00116098
4.01846e-12
0.0233667
0.00136633
2.2616e-12
0.0233384
0.0015376
-3.73117e-13
0.0233057
0.0016895
1.25083e-12
0.0232669
0.00183303
3.42793e-12
0.0232264
0.00196446
5.67965e-12
0.0231845
0.00208684
7.87184e-12
0.023142
0.00220064
9.88525e-12
0.0230975
0.00230561
1.18601e-11
0.0230523
0.00240036
1.35524e-11
0.023007
0.00248434
1.51675e-11
0.0229636
0.00255572
1.69858e-11
0.0229253
0.00261363
1.89802e-11
0.0228942
0.00265588
2.11666e-11
0.0228738
0.00268076
2.42468e-11
0.0228703
0.00268454
2.68091e-11
0.0228808
0.00266736
3.2397e-11
0.022872
0.00265949
3.31138e-11
0.0228952
0.00260521
3.59013e-11
0.0229964
0.0024946
4.0921e-11
0.0231461
0.00235743
5.02316e-11
0.0233322
0.00217298
6.19491e-11
0.0235714
0.00193988
7.20232e-11
0.0238583
0.00167008
7.80328e-11
0.0241722
0.00137864
7.9758e-11
0.0244905
0.00108569
7.64511e-11
0.0247854
0.000809557
6.77613e-11
0.0250404
0.000565783
5.55419e-11
0.0252371
0.000360908
4.09548e-11
0.0253814
0.000195817
2.70348e-11
0.0254719
6.4631e-05
1.55308e-11
0.025518
-3.69564e-05
5.84345e-12
0.0255433
-0.000126102
4.20253e-13
0.0255525
-0.000208973
-5.06369e-14
0.0255409
-0.000278891
-1.34961e-12
-0.000349623
-1.51999e-12
0.0170704
0.00452636
4.86736e-10
0.0189153
0.00460729
-2.52347e-10
0.020622
0.00516488
-7.10542e-11
0.02214
0.00555354
1.14705e-10
0.0234683
0.005746
2.53387e-10
0.0246257
0.00577514
2.59018e-10
0.0256324
0.00569381
1.84134e-10
0.0265051
0.00552548
9.1476e-11
0.0272544
0.00529072
1.75786e-11
0.0278931
0.00499902
-2.77553e-11
0.0284342
0.0046622
-4.8353e-11
0.0288741
0.00429213
-5.6513e-11
0.0292255
0.00389517
-5.70156e-11
0.0294952
0.00348526
-5.58093e-11
0.0296974
0.00306625
-5.22109e-11
0.0298424
0.00264896
-4.92409e-11
0.0299326
0.00223683
-4.65382e-11
0.0299765
0.00183498
-4.44273e-11
0.0299739
0.00144663
-4.27499e-11
0.0299303
0.00107379
-4.155e-11
0.02985
0.000718634
-4.10798e-11
0.0297363
0.000381791
-4.06515e-11
0.029594
6.50403e-05
-4.0976e-11
0.0294246
-0.000231399
-4.14616e-11
0.0292294
-0.000507764
-4.1749e-11
0.0290125
-0.00076541
-4.20134e-11
0.0287732
-0.00100452
-4.18368e-11
0.0285173
-0.00122634
-4.16678e-11
0.0282457
-0.00143093
-4.10225e-11
0.0279621
-0.00161926
-4.01595e-11
0.0276685
-0.00179117
-3.90931e-11
0.0273654
-0.00194804
-3.77465e-11
0.0270544
-0.00208864
-3.64276e-11
0.0267358
-0.00221543
-3.5165e-11
0.0264124
-0.00232645
-3.39066e-11
0.0260827
-0.00242464
-3.26279e-11
0.0257503
-0.0025075
-3.17177e-11
0.0254148
-0.00257836
-3.02133e-11
0.0250803
-0.00263477
-2.90893e-11
0.0247494
-0.00268064
-2.78016e-11
0.0244236
-0.00271371
-2.62372e-11
0.0241065
-0.00273692
-2.47103e-11
0.0237988
-0.00274839
-2.26548e-11
0.0235047
-0.00274974
-2.02927e-11
0.0232258
-0.00273949
-1.73984e-11
0.0229644
-0.00271765
-1.41861e-11
0.0227248
-0.00268349
-1.0501e-11
0.0225067
-0.00263373
-6.12504e-12
0.0223045
-0.00256828
-3.89539e-12
0.0221154
-0.00249318
1.0529e-13
0.0219529
-0.00240872
6.4061e-12
0.0218243
-0.00230044
1.27079e-11
0.0217342
-0.00216278
1.923e-11
0.021671
-0.00199726
2.93901e-11
0.0216165
-0.00179792
3.08877e-11
0.0216184
-0.00159839
3.4317e-11
0.0216974
-0.00136524
4.00384e-11
0.0218293
-0.00108136
5.01132e-11
0.0219825
-0.000748578
4.97584e-11
0.0221423
-0.00040729
4.68025e-11
0.0222977
-5.79108e-05
3.87445e-11
0.0224187
0.000277386
3.08687e-11
0.0225058
0.00058425
2.25904e-11
0.022568
0.0008546
1.64274e-11
0.0226269
0.00109344
1.00242e-11
0.0226698
0.00131558
9.42727e-12
0.0226777
0.00152319
8.46993e-12
0.0226627
0.00170068
7.20865e-12
0.0226459
0.00184695
7.49273e-12
0.0226261
0.00198152
8.48297e-12
0.022604
0.00210557
1.04006e-11
0.0225808
0.00221845
1.27395e-11
0.0225581
0.00232232
1.50125e-11
0.0225356
0.00241511
1.73349e-11
0.022517
0.0024953
1.97813e-11
0.0225019
0.00256106
2.19918e-11
0.0224949
0.00260971
2.54692e-11
0.0225002
0.00263838
2.75068e-11
0.0225112
0.00265261
3.34892e-11
0.0225354
0.00264726
3.4181e-11
0.0225618
0.00262295
3.684e-11
0.0226567
0.00254964
4.18149e-11
0.0227957
0.00244717
4.97306e-11
0.0229637
0.0023013
5.90272e-11
0.0231895
0.00210121
7.01996e-11
0.023468
0.00185829
7.74272e-11
0.0237859
0.00158758
8.22536e-11
0.0241158
0.00130243
8.09085e-11
0.0244389
0.00102543
7.43457e-11
0.0247285
0.000771945
6.30181e-11
0.0249686
0.000554037
4.91146e-11
0.0251549
0.000374012
3.55563e-11
0.0252849
0.000230395
2.26383e-11
0.0253698
0.000116848
1.28885e-11
0.0254159
2.64449e-05
5.01345e-12
0.0254453
-5.64243e-05
2.16494e-12
0.0254602
-0.000131812
2.13568e-13
0.0254571
-0.000198319
-2.92059e-13
0.0254449
-0.000258565
-1.93027e-12
-0.000319616
-1.97621e-12
0.0174795
0.00384138
5.23636e-10
0.0182582
0.0038576
-2.27222e-10
0.0192949
0.00409749
-8.07396e-11
0.0203607
0.004414
7.99974e-11
0.0214029
0.00462622
1.94356e-10
0.0224012
0.0047257
1.87268e-10
0.0233461
0.00473402
1.15127e-10
0.0242177
0.00467195
3.28752e-11
0.0250166
0.00454244
-2.79811e-11
0.0257357
0.00435622
-6.20401e-11
0.0263807
0.00411647
-7.52805e-11
0.026946
0.00383646
-7.77846e-11
0.0274322
0.0035224
-7.48498e-11
0.0278416
0.00318626
-6.99353e-11
0.028172
0.00283532
-6.42192e-11
0.0284336
0.00247753
-5.86869e-11
0.0286211
0.00212013
-5.34078e-11
0.0287458
0.00176684
-4.89096e-11
0.0288097
0.00142357
-4.52593e-11
0.0288205
0.00109175
-4.24775e-11
0.02879
0.000774832
-4.08884e-11
0.0287182
0.000473476
-3.9814e-11
0.0286183
0.000188562
-3.97371e-11
0.0284893
-7.91196e-05
-4.00972e-11
0.0283341
-0.000327927
-4.05249e-11
0.0281552
-0.000559439
-4.11345e-11
0.0279519
-0.000774869
-4.1339e-11
0.0277286
-0.000974344
-4.1554e-11
0.0274873
-0.00115936
-4.1433e-11
0.0272288
-0.00132945
-4.09883e-11
0.0269588
-0.00148574
-4.05094e-11
0.0266737
-0.00162824
-3.95437e-11
0.0263789
-0.00175711
-3.86588e-11
0.0260749
-0.00187335
-3.76581e-11
0.0257644
-0.00197615
-3.67493e-11
0.0254446
-0.00206771
-3.53431e-11
0.0251181
-0.0021462
-3.53425e-11
0.0247905
-0.00221464
-3.38568e-11
0.0244672
-0.00227247
-3.20759e-11
0.0241551
-0.0023207
-3.07955e-11
0.0238539
-0.00236036
-2.84529e-11
0.0235637
-0.00238972
-2.69627e-11
0.023285
-0.00241117
-2.53574e-11
0.0230187
-0.00242163
-2.32724e-11
0.0227618
-0.00242436
-2.04958e-11
0.022518
-0.00241505
-1.77195e-11
0.0222807
-0.00239671
-1.43177e-11
0.0220555
-0.00236459
-1.08507e-11
0.0218406
-0.00232058
-6.85764e-12
0.0216319
-0.00226012
-4.62802e-12
0.0214303
-0.00219264
-8.80976e-13
0.0212493
-0.00211549
5.24502e-12
0.0210968
-0.00201532
1.06128e-11
0.0209745
-0.00188975
1.85839e-11
0.0208984
-0.00174149
2.3391e-11
0.0208256
-0.00155596
3.33131e-11
0.0207921
-0.00136301
3.50067e-11
0.0208279
-0.00115168
3.87442e-11
0.0209397
-0.000899407
4.57554e-11
0.0210759
-0.000589637
5.14454e-11
0.0212321
-0.000258122
5.23865e-11
0.0213854
8.20381e-05
4.75723e-11
0.0215196
0.000412243
3.83959e-11
0.0216282
0.000719911
3.15943e-11
0.0217047
0.00099209
2.13024e-11
0.0217692
0.0012327
1.65695e-11
0.0218307
0.00144584
1.61497e-11
0.0218752
0.00164518
1.53612e-11
0.0218887
0.00182409
1.43451e-11
0.0218959
0.00197003
1.20127e-11
0.0219048
0.00209381
1.40681e-11
0.0219113
0.00220837
1.6524e-11
0.0219231
0.00230931
1.90958e-11
0.0219385
0.00239601
2.1981e-11
0.0219617
0.00246963
2.52599e-11
0.0219943
0.00252283
2.80249e-11
0.0220344
0.00256258
3.42577e-11
0.0220708
0.00259332
3.52714e-11
0.0221278
0.00258518
3.7889e-11
0.022223
0.00253711
4.19671e-11
0.0223503
0.00247552
4.89068e-11
0.0225003
0.00237763
5.6031e-11
0.0226998
0.00221371
6.84151e-11
0.0229582
0.00200806
7.60769e-11
0.0232591
0.00176228
8.18366e-11
0.0235856
0.00149448
8.36495e-11
0.0239203
0.00122113
8.06163e-11
0.0242297
0.000963612
7.17978e-11
0.0245025
0.000734283
5.94856e-11
0.0247203
0.000541473
4.54721e-11
0.0248874
0.000384755
3.22342e-11
0.0250043
0.000259446
2.10196e-11
0.0250797
0.000160704
1.2682e-11
0.0251259
8.12625e-05
5.05903e-12
0.0251565
4.66658e-06
4.66596e-12
0.0251719
-6.36375e-05
3.82719e-12
0.0251735
-0.000126349
2.14236e-12
0.0251663
-0.000182706
-1.47628e-12
0.0251542
-0.000237566
-3.18628e-12
-0.000290784
-3.09064e-12
0.0167145
0.0030366
4.89103e-10
0.0175908
0.00302074
-1.87923e-10
0.018364
0.00331058
-1.07366e-10
0.0191057
0.00361132
3.76467e-11
0.0198617
0.00381584
1.16724e-10
0.0206444
0.00392516
9.5378e-11
0.0214447
0.00395913
2.7283e-11
0.0222415
0.0039339
-3.37917e-11
0.02301
0.00385396
-7.17228e-11
0.0237366
0.00372195
-8.70524e-11
0.0244043
0.00354321
-8.92976e-11
0.0250085
0.00332388
-8.61465e-11
0.0255382
0.00307286
-8.11881e-11
0.0259952
0.00279783
-7.54412e-11
0.0263755
0.00250783
-6.90956e-11
0.0266855
0.00220893
-6.24357e-11
0.026927
0.00190823
-5.58384e-11
0.027107
0.00160967
-4.98315e-11
0.0272332
0.00131764
-4.4857e-11
0.0273087
0.00103446
-4.10186e-11
0.0273439
0.000762218
-3.85413e-11
0.0273382
0.000502091
-3.71342e-11
0.0272977
0.000254278
-3.61983e-11
0.0272249
1.99764e-05
-3.7408e-11
0.0271181
-0.000197872
-3.78119e-11
0.0269831
-0.000401698
-3.86309e-11
0.026818
-0.000591404
-3.91662e-11
0.0266283
-0.000767225
-3.97677e-11
0.0264166
-0.000930598
-4.02352e-11
0.0261835
-0.00108094
-4.02723e-11
0.0259367
-0.00121986
-4.04465e-11
0.0256761
-0.00134665
-3.99646e-11
0.0254081
-0.0014627
-3.9751e-11
0.0251314
-0.00156776
-3.91714e-11
0.0248513
-0.0016629
-3.85065e-11
0.0245764
-0.00174786
-3.8175e-11
0.0243098
-0.00182427
-3.60698e-11
0.0240529
-0.00189141
-3.54812e-11
0.0237986
-0.00195021
-3.4495e-11
0.0235489
-0.002
-3.31404e-11
0.0232974
-0.00204141
-3.20309e-11
0.0230534
-0.00207397
-3.02958e-11
0.0228098
-0.00209912
-2.77607e-11
0.0225654
-0.00211495
-2.56789e-11
0.022317
-0.00212259
-2.32902e-11
0.0220633
-0.00212079
-2.05616e-11
0.0218061
-0.00210967
-1.77604e-11
0.0215466
-0.00208931
-1.4563e-11
0.0212944
-0.0020584
-1.15022e-11
0.0210469
-0.00201647
-7.58116e-12
0.0208106
-0.00196145
-5.60887e-12
0.0205845
-0.00190224
-1.05044e-12
0.0203852
-0.00183012
2.88795e-12
0.0202154
-0.00173913
9.81894e-12
0.0200772
-0.00162594
1.48001e-11
0.0199846
-0.00149105
2.19793e-11
0.0199117
-0.00132412
3.181e-11
0.0198655
-0.00113796
3.33783e-11
0.019873
-0.000944121
3.66831e-11
0.0199555
-0.000713673
4.26879e-11
0.020086
-0.000432408
5.3181e-11
0.0202389
-0.000114609
5.52012e-11
0.0204018
0.000212269
5.08072e-11
0.0205545
0.000537259
4.466e-11
0.0206849
0.00084105
3.48766e-11
0.0207927
0.00111533
2.98092e-11
0.0208796
0.00135458
2.42787e-11
0.0209622
0.00156334
2.11147e-11
0.0210399
0.00175101
2.08669e-11
0.0210979
0.00192032
2.06815e-11
0.0211341
0.00206775
2.07805e-11
0.0211736
0.0021821
2.24432e-11
0.021215
0.00227804
2.44421e-11
0.0212688
0.00235613
2.81055e-11
0.0213288
0.00241792
3.16547e-11
0.0213892
0.00247105
3.61874e-11
0.0214566
0.00249993
4.01444e-11
0.0215824
0.00247211
4.21841e-11
0.0217372
0.00243249
4.7095e-11
0.0218898
0.00238343
5.36608e-11
0.0220905
0.00226646
6.57399e-11
0.0223537
0.00210074
7.34942e-11
0.0226562
0.00189155
8.14776e-11
0.0229934
0.0016486
8.5017e-11
0.0233381
0.00139099
8.4003e-11
0.0236748
0.00113486
7.83612e-11
0.0239738
0.000899559
6.80794e-11
0.0242298
0.000695205
5.53684e-11
0.0244265
0.00052639
4.21901e-11
0.0245745
0.00039062
3.04528e-11
0.0246754
0.000281481
2.1381e-11
0.0247403
0.000195311
1.23474e-11
0.0247774
0.000124191
8.15689e-12
0.024801
5.56397e-05
7.39125e-12
0.0248089
-6.43647e-06
5.39644e-12
0.0248055
-6.44328e-05
2.47752e-12
0.0247897
-0.000117143
-1.48339e-13
0.0247674
-0.000167561
-2.79177e-13
0.0247392
-0.000215072
-2.84619e-12
-0.000261766
-3.06987e-12
0.0175
0.0024196
1.50099e-10
0.0179034
0.0026613
-1.50181e-10
0.01829
0.00290846
-8.16018e-11
0.0186855
0.0031568
-2.74204e-13
0.0191188
0.00333943
2.02576e-11
0.019633
0.00342056
-1.06626e-11
0.020218
0.00343029
-5.90785e-11
0.0208495
0.00338448
-8.85396e-11
0.0214928
0.00329575
-9.63856e-11
0.0221218
0.00316672
-9.19092e-11
0.0227182
0.00300489
-8.4187e-11
0.0232681
0.00281487
-7.76914e-11
0.0237647
0.00260313
-7.29413e-11
0.0242052
0.00237562
-6.87638e-11
0.0245906
0.00213739
-6.4096e-11
0.0249208
0.00189351
-5.85841e-11
0.0252006
0.00164743
-5.26093e-11
0.0254286
0.00140304
-4.67592e-11
0.0256107
0.00116211
-4.17182e-11
0.0257449
0.000927537
-3.78027e-11
0.0258356
0.000699926
-3.52078e-11
0.0258838
0.000481323
-3.3751e-11
0.0258889
0.000271702
-3.34125e-11
0.025858
7.19192e-05
-3.28719e-11
0.0257895
-0.000115742
-3.37358e-11
0.0256934
-0.000291061
-3.49982e-11
0.0255675
-0.000454445
-3.59613e-11
0.0254202
-0.000606297
-3.66884e-11
0.0252537
-0.000747157
-3.77265e-11
0.0250731
-0.000877545
-3.81709e-11
0.024886
-0.000998204
-3.87193e-11
0.0246932
-0.00110976
-3.87077e-11
0.0244989
-0.00121266
-3.85486e-11
0.024304
-0.00130715
-3.87457e-11
0.0241093
-0.00139324
-3.87994e-11
0.0239144
-0.0014716
-3.83593e-11
0.0237166
-0.00154204
-3.77048e-11
0.0235148
-0.00160495
-3.72623e-11
0.0233064
-0.0016599
-3.61404e-11
0.023088
-0.00170737
-3.50363e-11
0.0228577
-0.00174699
-3.34506e-11
0.0226156
-0.001779
-3.18807e-11
0.0223583
-0.00180322
-2.96982e-11
0.0220846
-0.00181994
-2.84805e-11
0.0218027
-0.00182854
-2.63023e-11
0.0215134
-0.00183124
-2.3297e-11
0.0212275
-0.00182598
-2.04505e-11
0.0209477
-0.00181505
-1.7333e-11
0.0206787
-0.00179504
-1.42977e-11
0.0204246
-0.0017684
-1.10341e-11
0.0201881
-0.00173015
-7.85245e-12
0.019963
-0.00168334
-5.64825e-12
0.0197582
-0.00163043
-2.0387e-12
0.0195741
-0.00156524
2.26724e-12
0.0194144
-0.00148155
6.98632e-12
0.0192867
-0.00138079
1.37199e-11
0.0191972
-0.00125648
2.01056e-11
0.0191362
-0.00110591
3.02089e-11
0.019098
-0.000929865
3.17308e-11
0.0191109
-0.000750648
3.49875e-11
0.0191958
-0.000538458
4.09968e-11
0.0193359
-0.000281747
5.27014e-11
0.0195025
2.23263e-05
5.71369e-11
0.0196845
0.000337892
5.57567e-11
0.0198624
0.000655338
5.02212e-11
0.0200255
0.000954759
4.51046e-11
0.0201638
0.00122774
3.74123e-11
0.0202776
0.00146606
3.26843e-11
0.020378
0.00167025
3.16348e-11
0.0204724
0.00184949
3.04293e-11
0.0205607
0.00200188
3.05001e-11
0.0206332
0.00213172
3.09046e-11
0.0206968
0.00223374
3.19001e-11
0.0207557
0.00231302
3.80058e-11
0.0208198
0.00236581
3.93678e-11
0.0209249
0.00237881
4.28369e-11
0.0210736
0.00235434
4.96928e-11
0.021216
0.0023327
5.25154e-11
0.0213834
0.00226249
6.03515e-11
0.021616
0.00214089
7.11667e-11
0.021893
0.00197158
7.9477e-11
0.0222072
0.00176319
8.51749e-11
0.0225484
0.00152643
8.72888e-11
0.0228885
0.0012815
8.41087e-11
0.023214
0.00104438
7.62765e-11
0.0234949
0.000832567
6.47864e-11
0.0237286
0.000652163
5.19956e-11
0.0239048
0.000505757
3.97422e-11
0.0240326
0.000388732
2.94361e-11
0.0241172
0.000294452
2.15621e-11
0.0241674
0.000218242
1.58008e-11
0.024193
0.000154748
1.05299e-11
0.0242064
9.57465e-05
7.26252e-12
0.0242025
3.99313e-05
6.97143e-12
0.0241896
-1.3239e-05
5.77094e-12
0.0241679
-6.21965e-05
2.92901e-12
0.0241399
-0.000107945
9.4003e-13
0.0241053
-0.000152054
-4.45917e-13
0.0240658
-0.000192828
-3.03028e-12
-0.00023342
-3.49423e-12
0.017538
0.0019542
-1.26178e-10
0.0179033
0.00233783
-1.10358e-10
0.0181912
0.00260466
-8.37477e-11
0.0184638
0.00285938
-5.94612e-11
0.0187676
0.0030364
-5.77643e-11
0.0191373
0.0030995
-9.42916e-11
0.0195833
0.00306626
-1.11444e-10
0.0200795
0.00297828
-1.06135e-10
0.0205932
0.00285207
-8.97125e-11
0.0210984
0.00269968
-7.23524e-11
0.0215886
0.00253048
-6.00901e-11
0.0220561
0.00234977
-5.41152e-11
0.0224993
0.00216155
-5.23165e-11
0.0229139
0.00196862
-5.19022e-11
0.0232952
0.0017725
-5.08309e-11
0.0236375
0.00157477
-4.82777e-11
0.0239363
0.00137665
-4.44538e-11
0.0241868
0.0011796
-4.01288e-11
0.0243881
0.00098478
-3.6121e-11
0.0245391
0.000793642
-3.29984e-11
0.024641
0.000607159
-3.09786e-11
0.0246977
0.000426664
-3.00105e-11
0.0247103
0.000252866
-2.98065e-11
0.0246871
8.63374e-05
-3.00158e-11
0.0246325
-7.15782e-05
-3.06809e-11
0.024555
-0.00021969
-3.16723e-11
0.02446
-0.000358001
-3.25264e-11
0.0243535
-0.000486779
-3.36159e-11
0.0242404
-0.000606323
-3.42312e-11
0.0241212
-0.000717717
-3.50947e-11
0.0239972
-0.000820934
-3.60825e-11
0.0238663
-0.00091704
-3.70768e-11
0.0237301
-0.00100583
-3.84344e-11
0.0235849
-0.00108819
-3.86416e-11
0.0234285
-0.00116373
-3.91116e-11
0.0232583
-0.001233
-3.93187e-11
0.0230721
-0.00129542
-3.9213e-11
0.022868
-0.00135152
-3.88406e-11
0.0226464
-0.0014008
-3.80226e-11
0.0224108
-0.00144367
-3.69327e-11
0.0221625
-0.00147992
-3.55491e-11
0.0219016
-0.00151023
-3.34952e-11
0.0216378
-0.00153388
-3.16627e-11
0.0213756
-0.00155267
-2.85418e-11
0.0211189
-0.00156518
-2.6391e-11
0.0208671
-0.00157263
-2.41698e-11
0.0206213
-0.00157372
-2.19394e-11
0.0203799
-0.00156923
-1.94568e-11
0.0201445
-0.0015581
-1.68662e-11
0.0199152
-0.00154021
-1.43251e-11
0.0196934
-0.00151481
-1.12777e-11
0.0194819
-0.00147993
-9.39232e-12
0.0192767
-0.00143838
-6.38948e-12
0.019088
-0.0013895
-2.95144e-12
0.0189198
-0.00132845
8.15282e-13
0.018778
-0.0012523
5.98265e-12
0.0186675
-0.00115999
1.19229e-11
0.0185982
-0.0010465
1.87916e-11
0.0185641
-0.000907008
2.87853e-11
0.0185438
-0.000737911
2.9665e-11
0.0185765
-0.000569276
3.31103e-11
0.0186681
-0.000371719
4.12886e-11
0.018822
-0.000134721
5.40622e-11
0.0190009
0.000155635
5.75397e-11
0.0191974
0.000459842
5.93413e-11
0.019391
0.000768841
5.714e-11
0.0195688
0.00106241
5.10642e-11
0.0197227
0.00132862
4.65773e-11
0.0198548
0.00156044
4.08933e-11
0.0199703
0.00175525
3.96814e-11
0.0200753
0.00191747
3.97031e-11
0.0201778
0.00204944
3.97935e-11
0.0202765
0.00214981
4.13676e-11
0.0203803
0.00221996
4.4341e-11
0.0204963
0.00225143
5.08418e-11
0.0206309
0.00224319
5.1103e-11
0.0207731
0.00220646
5.73506e-11
0.0209598
0.00213072
6.81405e-11
0.0211979
0.00200186
7.8084e-11
0.0214774
0.0018313
8.43858e-11
0.0217919
0.00162475
8.84241e-11
0.0221219
0.0013973
8.88511e-11
0.0224426
0.00116731
8.43345e-11
0.0227369
0.000950563
7.55281e-11
0.0229828
0.000761516
6.37052e-11
0.0231793
0.000603737
5.12539e-11
0.0233221
0.000477748
3.97813e-11
0.0234223
0.000377366
3.04617e-11
0.0234845
0.000297073
2.33906e-11
0.0235206
0.00022973
1.82931e-11
0.0235345
0.000173571
1.38728e-11
0.0235361
0.000123201
9.57602e-12
0.0235233
7.39052e-05
9.06261e-12
0.0235028
2.67827e-05
8.05854e-12
0.0234727
-1.80063e-05
6.12053e-12
0.0234374
-5.93608e-05
2.33507e-12
0.0233954
-9.87912e-05
2.30499e-12
0.0233518
-0.000136285
-1.52535e-12
0.023307
-0.000171201
-3.22492e-12
-0.000205968
-3.77315e-12
0.0168031
0.00134807
-2.68845e-10
0.017424
0.00181133
-2.18427e-10
0.0178299
0.00221027
-1.39192e-10
0.01816
0.00252396
-1.27492e-10
0.0185033
0.00271739
-1.38966e-10
0.0188895
0.00277908
-1.31249e-10
0.0193077
0.0027302
-1.14657e-10
0.0197487
0.00261283
-8.77406e-11
0.0201934
0.00245859
-6.03651e-11
0.0206258
0.00228785
-3.93139e-11
0.0210432
0.00211305
-2.74233e-11
0.0214442
0.00194003
-2.38449e-11
0.0218308
0.00177093
-2.56122e-11
0.0222003
0.00160543
-2.93452e-11
0.0225457
0.00144316
-3.24621e-11
0.0228596
0.00128292
-3.36886e-11
0.0231342
0.00112426
-3.3029e-11
0.0233642
0.000966903
-3.12392e-11
0.0235466
0.000811037
-2.91701e-11
0.0236813
0.000657427
-2.75477e-11
0.0237705
0.000506891
-2.66436e-11
0.0238201
0.000360545
-2.64604e-11
0.0238352
0.000219295
-2.66831e-11
0.0238242
8.3487e-05
-2.71154e-11
0.0237945
-4.58837e-05
-2.76019e-11
0.0237507
-0.000167873
-2.82356e-11
0.0236999
-0.000282543
-2.89609e-11
0.0236409
-0.000389882
-2.96485e-11
0.0235756
-0.00049005
-3.04929e-11
0.0235008
-0.000583813
-3.16274e-11
0.0234136
-0.000671386
-3.29194e-11
0.023312
-0.000753333
-3.467e-11
0.023193
-0.000829641
-3.61894e-11
0.0230547
-0.000900721
-3.75554e-11
0.0228977
-0.000966262
-3.88292e-11
0.0227227
-0.00102652
-3.96524e-11
0.0225317
-0.00108127
-3.99579e-11
0.0223289
-0.0011306
-3.98037e-11
0.022117
-0.00117453
-3.90396e-11
0.021899
-0.00121306
-3.78675e-11
0.0216792
-0.0012463
-3.6197e-11
0.0214575
-0.00127445
-3.41848e-11
0.0212371
-0.00129739
-3.22474e-11
0.0210161
-0.00131558
-2.97433e-11
0.0207941
-0.00132877
-2.74171e-11
0.0205718
-0.0013371
-2.52371e-11
0.0203471
-0.00134057
-2.28458e-11
0.0201221
-0.00133886
-2.05802e-11
0.0198952
-0.00133218
-1.832e-11
0.0196707
-0.00131967
-1.61674e-11
0.0194471
-0.00130165
-1.37171e-11
0.0192329
-0.00127648
-1.12867e-11
0.0190241
-0.00124388
-9.40746e-12
0.018829
-0.00120672
-6.637e-12
0.0186514
-0.00116029
-3.50195e-12
0.0184929
-0.00110354
1.12944e-13
0.0183652
-0.00103355
4.76275e-12
0.018266
-0.000949015
1.07048e-11
0.018207
-0.000844221
1.74156e-11
0.0181858
-0.000715457
2.83432e-11
0.0181764
-0.000554278
2.97537e-11
0.0182111
-0.000396024
3.38783e-11
0.0182963
-0.000212261
3.96205e-11
0.0184416
1.10124e-05
5.08177e-11
0.0186195
0.000276412
6.12488e-11
0.0188144
0.000566366
6.70556e-11
0.0190059
0.000862534
6.51836e-11
0.0191822
0.0011448
6.1014e-11
0.019337
0.00139728
5.59042e-11
0.0194721
0.00161264
5.19594e-11
0.0195932
0.00178668
5.20741e-11
0.0197094
0.00192103
5.24603e-11
0.0198274
0.00201739
5.34741e-11
0.0199573
0.00207158
5.86853e-11
0.0201102
0.0020768
5.9314e-11
0.0202676
0.00205487
6.43175e-11
0.0204552
0.00198126
7.24559e-11
0.0206824
0.00185467
8.13345e-11
0.0209438
0.00168437
8.89109e-11
0.0212322
0.00148239
9.28189e-11
0.021527
0.00126526
9.18711e-11
0.021815
0.00105002
8.64927e-11
0.022071
0.000853671
7.68804e-11
0.0222836
0.000685261
6.52906e-11
0.0224492
0.000548285
5.3422e-11
0.0225686
0.000440105
4.28201e-11
0.0226477
0.000355231
3.41275e-11
0.0226976
0.000287106
2.73673e-11
0.022725
0.000229986
2.24267e-11
0.022733
0.000181277
1.8128e-11
0.0227305
0.000137151
1.38306e-11
0.0227239
9.50494e-05
1.11606e-11
0.0227099
5.47556e-05
9.34475e-12
0.0226867
1.58274e-05
8.65751e-12
0.0226591
-2.06877e-05
6.53521e-12
0.0226363
-5.70128e-05
3.0192e-12
0.0226121
-8.99022e-05
9.03382e-13
0.0225884
-0.00012232
7.1693e-14
0.0225626
-0.000150909
-2.94497e-12
-0.000179901
-4.56789e-12
0.0174388
0.00110675
-3.49275e-10
0.0177298
0.00162404
-2.95486e-10
0.0179825
0.00198349
-1.65979e-10
0.0182499
0.00226768
-1.16654e-10
0.0185667
0.0024374
-1.03842e-10
0.0189364
0.002473
-8.92569e-11
0.019336
0.00239843
-6.79431e-11
0.0197429
0.0022555
-4.10469e-11
0.0201416
0.00208253
-1.71951e-11
0.0205272
0.00190461
-2.11519e-12
0.0208981
0.00173381
3.96703e-12
0.021255
0.00157387
4.00902e-12
0.0215959
0.00142519
1.33738e-12
0.0219188
0.00128554
-5.58556e-12
0.0222224
0.00115286
-1.29217e-11
0.0224989
0.00102451
-1.8081e-11
0.0227408
0.000898637
-2.07557e-11
0.0229385
0.000774321
-2.16612e-11
0.0230884
0.000651149
-2.17738e-11
0.0231907
0.000529571
-2.18956e-11
0.0232521
0.000410177
-2.24239e-11
0.0232816
0.000293973
-2.3302e-11
0.0232886
0.000181644
-2.41961e-11
0.023282
7.37185e-05
-2.49039e-11
0.023267
-2.94847e-05
-2.54152e-11
0.0232467
-0.000127685
-2.56106e-11
0.023221
-0.000220606
-2.59084e-11
0.0231863
-0.000308213
-2.63682e-11
0.0231398
-0.000390597
-2.71961e-11
0.0230778
-0.00046824
-2.84582e-11
0.0229978
-0.000541338
-3.02112e-11
0.0228989
-0.000610219
-3.22118e-11
0.0227812
-0.00067487
-3.43908e-11
0.0226472
-0.000735299
-3.64897e-11
0.0224983
-0.000791563
-3.81239e-11
0.0223381
-0.000843299
-3.93542e-11
0.0221683
-0.000890698
-4.01396e-11
0.0219916
-0.000933308
-4.02277e-11
0.0218093
-0.000971458
-3.97448e-11
0.021622
-0.00100484
-3.857e-11
0.0214303
-0.00103368
-3.70871e-11
0.021233
-0.001058
-3.50541e-11
0.0210296
-0.00107804
-3.28927e-11
0.0208199
-0.00109362
-3.05429e-11
0.0206027
-0.0011054
-2.80714e-11
0.0203796
-0.00111271
-2.58984e-11
0.0201502
-0.00111649
-2.368e-11
0.0199175
-0.00111576
-2.16959e-11
0.019683
-0.00111147
-1.95389e-11
0.01945
-0.00110256
-1.75518e-11
0.0192219
-0.0010894
-1.5631e-11
0.0190017
-0.00107119
-1.3568e-11
0.0187943
-0.00104733
-1.14475e-11
0.0185978
-0.00101783
-9.51772e-12
0.0184198
-0.000983143
-7.15906e-12
0.0182588
-0.000939938
-4.1545e-12
0.0181217
-0.000888027
-4.18024e-13
0.0180079
-0.000824148
4.08236e-12
0.0179229
-0.000745949
9.97102e-12
0.0178725
-0.000649829
1.68463e-11
0.0178566
-0.000530187
2.88453e-11
0.0178524
-0.000380753
3.05408e-11
0.0178817
-0.000233664
3.40245e-11
0.0179605
-6.43193e-05
3.9659e-11
0.0180936
0.000134986
5.30513e-11
0.0182563
0.000384079
6.81664e-11
0.0184413
0.000652165
7.35146e-11
0.0186297
0.0009272
7.28858e-11
0.0188078
0.00118873
7.00465e-11
0.0189707
0.00141941
6.69419e-11
0.0191173
0.00160773
6.35977e-11
0.0192564
0.00174868
6.4243e-11
0.019398
0.00184085
6.59276e-11
0.0195503
0.00187848
7.21039e-11
0.0197202
0.00186559
7.41851e-11
0.0199148
0.00181037
8.38293e-11
0.0201448
0.00169651
8.95816e-11
0.0204042
0.00153692
9.45032e-11
0.0206789
0.00134535
9.70265e-11
0.0209581
0.00113967
9.55795e-11
0.0212207
0.00093935
8.926e-11
0.0214503
0.000759759
7.97071e-11
0.0216398
0.000609078
6.84191e-11
0.0217839
0.000488955
5.72855e-11
0.0218859
0.000395835
4.75023e-11
0.0219564
0.000323737
3.93365e-11
0.0220002
0.000266479
3.28763e-11
0.0220226
0.000219022
2.75108e-11
0.022034
0.000177493
2.35242e-11
0.0220374
0.000140054
1.89066e-11
0.0220344
0.000105696
1.38753e-11
0.0220262
7.15283e-05
1.32194e-11
0.0220195
3.83131e-05
1.19524e-11
0.0220146
6.2906e-06
9.76239e-12
0.0220079
-2.37131e-05
5.8631e-12
0.0220029
-5.33701e-05
2.65695e-12
0.0219983
-8.11275e-05
8.4804e-13
0.0219983
-0.000107652
-1.08278e-12
0.0219988
-0.000131184
-3.34228e-12
-0.000154716
-3.8349e-12
0.016648
0.000629703
-4.91941e-10
0.0172542
0.00113858
-3.68159e-10
0.0176935
0.00157091
-1.62554e-10
0.0181094
0.0018705
-7.25962e-11
0.0185565
0.002034
-4.40636e-11
0.0190197
0.00206477
-2.85759e-11
0.0194738
0.00198926
-1.4816e-11
0.0199048
0.00184995
1.63864e-13
0.0203141
0.0016859
1.47801e-11
0.0207028
0.00152333
2.62765e-11
0.0210655
0.00137317
3.06412e-11
0.0214012
0.00123775
2.84611e-11
0.0217122
0.00111544
2.03118e-11
0.0219971
0.00100354
9.68936e-12
0.0222531
0.000899076
2.99144e-12
0.0224728
0.000799261
-3.84486e-12
0.0226534
0.000701949
-9.59034e-12
0.0227926
0.000606036
-1.32053e-11
0.0228923
0.000511298
-1.56794e-11
0.0229583
0.000417858
-1.77161e-11
0.0229985
0.0003263
-1.96508e-11
0.0230221
0.000237148
-2.14134e-11
0.0230364
0.000150974
-2.2712e-11
0.0230451
6.80277e-05
-2.34431e-11
0.0230497
-1.21922e-05
-2.34449e-11
0.0230462
-8.78379e-05
-2.31595e-11
0.0230334
-0.000161324
-2.29353e-11
0.0230061
-0.000231117
-2.30155e-11
0.022962
-0.000297668
-2.37316e-11
0.0228991
-0.000360808
-2.52163e-11
0.0228169
-0.000420954
-2.72345e-11
0.0227172
-0.000477659
-2.97819e-11
0.0226011
-0.000531428
-3.24937e-11
0.0224724
-0.000581421
-3.51455e-11
0.0223323
-0.000628347
-3.74973e-11
0.0221841
-0.000671094
-3.92995e-11
0.0220285
-0.000710608
-4.03401e-11
0.0218663
-0.000745652
-4.05863e-11
0.0216982
-0.000777275
-4.03718e-11
0.021523
-0.000804396
-3.90991e-11
0.0213404
-0.000828136
-3.75928e-11
0.0211506
-0.000847501
-3.55233e-11
0.0209515
-0.000863784
-3.31243e-11
0.0207442
-0.000875962
-3.0785e-11
0.0205267
-0.000885394
-2.83092e-11
0.0203014
-0.000891037
-2.60986e-11
0.0200689
-0.000894131
-2.40248e-11
0.0198321
-0.000893687
-2.20464e-11
0.0195942
-0.000890632
-2.0306e-11
0.0193573
-0.000884096
-1.85841e-11
0.0191262
-0.000874505
-1.6975e-11
0.0189034
-0.000861234
-1.5328e-11
0.0186918
-0.000843908
-1.34931e-11
0.0184943
-0.000821881
-1.18118e-11
0.0183106
-0.000795962
-9.72972e-12
0.018145
-0.000764163
-7.01554e-12
0.0179966
-0.000725634
-3.96084e-12
0.0178684
-0.000678893
-2.91316e-13
0.0177608
-0.000621863
4.1806e-12
0.0176791
-0.000551721
1.01705e-11
0.017625
-0.000465746
1.76774e-11
0.0176035
-0.000355379
2.9488e-11
0.0175938
-0.000223327
3.11252e-11
0.017617
-9.00119e-05
3.50114e-11
0.0176835
6.01274e-05
4.26888e-11
0.0178106
0.000237563
5.71222e-11
0.0179697
0.000463129
7.05819e-11
0.0181579
0.000704397
7.80313e-11
0.0183565
0.000951255
7.98197e-11
0.0185549
0.00118093
7.97841e-11
0.0187454
0.00137719
7.9161e-11
0.0189291
0.00152427
7.94446e-11
0.0191142
0.00161377
8.22917e-11
0.0193118
0.00163855
8.27283e-11
0.0195192
0.00160956
9.02618e-11
0.0197577
0.00151847
9.68199e-11
0.0200184
0.00137865
1.01339e-10
0.0202907
0.00120481
1.02571e-10
0.0205602
0.00101647
9.98053e-11
0.0208076
0.000832969
9.29067e-11
0.0210206
0.000669272
8.30131e-11
0.0211937
0.000533723
7.21285e-11
0.021323
0.000427247
6.16047e-11
0.0214153
0.000346071
5.24353e-11
0.0214786
0.000284485
4.49251e-11
0.0215167
0.000236538
3.86299e-11
0.0215372
0.000197426
3.33648e-11
0.0215484
0.000163695
2.87479e-11
0.0215516
0.000133446
2.48677e-11
0.021547
0.000104667
2.00801e-11
0.0215444
7.81354e-05
1.47179e-11
0.0215442
5.14677e-05
1.41522e-11
0.0215446
2.5084e-05
1.26855e-11
0.021544
-8.6425e-07
9.8503e-12
0.0215463
-2.4763e-05
5.09933e-12
0.0215542
-4.8025e-05
3.65238e-12
0.0215631
-7.063e-05
1.52613e-12
0.0215768
-9.16231e-05
-4.63978e-13
0.0215914
-0.000110154
-3.33425e-12
-0.000128343
-3.65127e-12
0.0171852
0.000452658
-4.34363e-10
0.0173966
0.00100619
-3.26832e-10
0.0177046
0.00131863
-1.21897e-10
0.0180988
0.0015299
-2.06099e-11
0.0185562
0.00163958
-1.86845e-12
0.0190271
0.00164108
3.53378e-12
0.0194786
0.00155544
1.83414e-11
0.0199045
0.00142257
3.1797e-11
0.0203079
0.00127741
4.14731e-11
0.0206935
0.00114062
4.73958e-11
0.021058
0.00101899
4.88081e-11
0.0213924
0.000913181
4.50439e-11
0.0216907
0.000819698
3.74162e-11
0.0219549
0.000735626
2.65749e-11
0.0221865
0.00065777
1.43639e-11
0.022382
0.000584002
5.04485e-12
0.0225356
0.00051274
-3.43398e-13
0.0226471
0.0004428
-6.14838e-12
0.0227218
0.000374035
-1.08452e-11
0.0227721
0.000306343
-1.46772e-11
0.0228086
0.000240216
-1.792e-11
0.0228406
0.000175796
-2.04843e-11
0.0228719
0.00011348
-2.2099e-11
0.0229014
5.33764e-05
-2.28492e-11
0.0229239
-3.22493e-06
-2.1483e-11
0.0229389
-6.08728e-05
-2.13679e-11
0.022939
-0.000114412
-2.08088e-11
0.022921
-0.000166219
-2.06424e-11
0.0228834
-0.00021647
-2.12641e-11
0.0228271
-0.000264475
-2.27671e-11
0.0227515
-0.00031076
-2.50111e-11
0.0226604
-0.000354394
-2.79668e-11
0.0225538
-0.000396117
-3.11053e-11
0.0224358
-0.000434702
-3.42818e-11
0.0223069
-0.000471055
-3.70481e-11
0.0221694
-0.000503943
-3.91692e-11
0.0220242
-0.00053423
-4.06732e-11
0.021871
-0.000561025
-4.1021e-11
0.0217101
-0.000584901
-4.08789e-11
0.0215392
-0.000605481
-3.96552e-11
0.0213577
-0.00062292
-3.81942e-11
0.0211642
-0.000637485
-3.59562e-11
0.0209574
-0.000648881
-3.3667e-11
0.0207387
-0.000657967
-3.122e-11
0.0205086
-0.00066409
-2.88208e-11
0.0202693
-0.000668376
-2.66421e-11
0.0200247
-0.000669891
-2.46317e-11
0.0197768
-0.000669987
-2.27155e-11
0.0195313
-0.000667174
-2.12058e-11
0.0192901
-0.000663165
-1.95147e-11
0.0190583
-0.000655895
-1.81534e-11
0.0188368
-0.000647065
-1.66034e-11
0.0186286
-0.000634578
-1.50944e-11
0.0184349
-0.000619339
-1.35317e-11
0.0182541
-0.000600523
-1.15781e-11
0.0180868
-0.000577963
-9.48706e-12
0.0179341
-0.000550595
-6.73818e-12
0.0177955
-0.00051774
-3.48238e-12
0.0176739
-0.000477872
2.1506e-13
0.0175709
-0.00042941
5.45251e-12
0.0174896
-0.0003692
1.08509e-11
0.0174387
-0.000296038
1.9617e-11
0.0174106
-0.000195676
3.15847e-11
0.0174071
-9.12011e-05
3.3523e-11
0.0174365
2.21923e-05
3.81879e-11
0.0175104
0.000149398
4.69007e-11
0.0176444
0.000303045
6.35385e-11
0.0178168
0.000496939
7.57621e-11
0.0180242
0.000702396
8.43748e-11
0.0182496
0.000908888
8.97123e-11
0.0184855
0.00109331
9.33257e-11
0.0187246
0.00123612
9.54375e-11
0.0189678
0.00131984
9.86444e-11
0.0192202
0.00133522
1.02074e-10
0.0194885
0.0012874
1.06739e-10
0.0197688
0.00118186
1.10085e-10
0.0200517
0.00103752
1.10142e-10
0.0203226
0.000875318
1.05764e-10
0.0205685
0.00071511
9.77893e-11
0.0207757
0.000571869
8.73535e-11
0.0209394
0.000453104
7.63389e-11
0.0210631
0.000360163
6.62013e-11
0.0211495
0.000289985
5.74129e-11
0.0212074
0.000237457
5.01533e-11
0.0212451
0.000197513
4.41796e-11
0.021267
0.000165882
3.89344e-11
0.0212747
0.000139451
3.42261e-11
0.0212774
0.000115977
2.98949e-11
0.0212759
9.4693e-05
2.61372e-11
0.0212666
7.37589e-05
2.08988e-11
0.0212592
5.41661e-05
1.55378e-11
0.0212547
3.44687e-05
1.48851e-11
0.0212513
1.48287e-05
1.33021e-11
0.0212459
-4.41194e-06
1.02505e-11
0.0212437
-2.3122e-05
5.1749e-12
0.0212455
-4.05675e-05
3.65358e-12
0.0212478
-5.75649e-05
9.72246e-13
0.0212535
-7.3006e-05
-5.07691e-13
0.0212601
-8.76199e-05
-3.43123e-12
-9.91088e-05
-3.41087e-12
0.0169079
0.000365603
-3.90646e-10
0.0170322
0.000907543
-2.75641e-10
0.017387
0.00109136
-1.08524e-10
0.0178473
0.00118125
-3.76309e-12
0.0183421
0.00121649
2.03867e-11
0.0188292
0.00117905
3.2071e-11
0.0192881
0.00108531
4.01061e-11
0.0197184
0.000967291
4.9367e-11
0.0201286
0.000850485
5.64956e-11
0.0205236
0.000747096
6.01058e-11
0.0208998
0.000659346
5.99019e-11
0.0212472
0.000585309
5.58048e-11
0.0215539
0.000521447
4.74076e-11
0.0218218
0.000464302
3.65252e-11
0.0220527
0.000411703
2.41038e-11
0.0222479
0.000362186
1.15814e-11
0.022402
0.000314507
3.44771e-12
0.0225159
0.000268114
-1.83021e-12
0.0225955
0.000222846
-8.54006e-12
0.0226547
0.00017866
-1.36435e-11
0.022704
0.000135836
-1.76867e-11
0.022752
9.44438e-05
-2.06471e-11
0.0228002
5.47439e-05
-2.22418e-11
0.0228451
1.64642e-05
-2.22656e-11
0.0228833
-1.94776e-05
-2.27318e-11
0.0229048
-5.41334e-05
-2.08066e-11
0.0229093
-8.79447e-05
-1.94983e-11
0.0228958
-0.000120426
-1.8981e-11
0.0228634
-0.000151793
-1.93864e-11
0.0228152
-0.000182101
-2.09012e-11
0.0227506
-0.000211307
-2.32933e-11
0.0226725
-0.000239286
-2.64863e-11
0.0225802
-0.00026591
-2.99356e-11
0.0224751
-0.000290952
-3.34249e-11
0.0223585
-0.00031436
-3.65547e-11
0.0222299
-0.000335849
-3.89646e-11
0.022092
-0.000355433
-4.06867e-11
0.0219421
-0.000372966
-4.12811e-11
0.0217827
-0.000388412
-4.11694e-11
0.0216092
-0.000401849
-4.00119e-11
0.0214234
-0.000413146
-3.84264e-11
0.0212215
-0.00042261
-3.61704e-11
0.0210053
-0.000430012
-3.38312e-11
0.0207749
-0.000435976
-3.13026e-11
0.0205332
-0.000439861
-2.89816e-11
0.0202826
-0.00044284
-2.67402e-11
0.0200292
-0.000443672
-2.48518e-11
0.019774
-0.00044387
-2.30391e-11
0.0195243
-0.000442002
-2.15815e-11
0.0192808
-0.000439387
-2.01404e-11
0.0190473
-0.00043474
-1.87985e-11
0.0188259
-0.000428912
-1.75137e-11
0.018616
-0.000420998
-1.6015e-11
0.0184205
-0.00041092
-1.45637e-11
0.0182365
-0.000398859
-1.27538e-11
0.0180665
-0.000384204
-1.07612e-11
0.017907
-0.000366721
-8.66419e-12
0.0177584
-0.00034566
-5.7386e-12
0.0176232
-0.000320528
-2.47066e-12
0.0175016
-0.000289835
1.89914e-12
0.0173987
-0.000252586
6.72093e-12
0.0173179
-0.000206069
1.38059e-11
0.0172725
-0.000147857
2.17493e-11
0.0172414
-6.91206e-05
3.60503e-11
0.017246
6.91717e-06
3.77719e-11
0.017291
9.05064e-05
4.2122e-11
0.0173885
0.000186845
5.122e-11
0.0175451
0.000308924
6.90571e-11
0.017751
0.000455135
8.39932e-11
0.0180007
0.000611337
9.66884e-11
0.018281
0.000758743
1.05732e-10
0.0185846
0.000875772
1.1308e-10
0.0189003
0.000943854
1.17342e-10
0.019222
0.00095127
1.21466e-10
0.0195467
0.000900868
1.22441e-10
0.0198624
0.000805874
1.20065e-10
0.0201568
0.000686133
1.13828e-10
0.0204151
0.000561998
1.04108e-10
0.0206298
0.000448477
9.28e-11
0.0207989
0.000353351
8.14058e-11
0.020924
0.000278597
7.11179e-11
0.0210134
0.00022207
6.24701e-11
0.021073
0.000179987
5.52663e-11
0.0211087
0.000148477
4.92616e-11
0.0211287
0.000124205
4.41079e-11
0.0211374
0.000104616
3.93275e-11
0.0211334
8.8014e-05
3.49573e-11
0.0211272
7.3045e-05
3.05714e-11
0.0211176
5.94192e-05
2.71345e-11
0.0211031
4.59054e-05
2.07194e-11
0.0210905
3.27554e-05
1.85011e-11
0.0210825
1.97264e-05
1.51807e-11
0.0210765
6.60486e-06
1.28207e-11
0.0210688
-6.40805e-06
1.02749e-11
0.0210626
-1.89084e-05
5.70585e-12
0.0210602
-3.06648e-05
3.62248e-12
0.0210576
-4.19526e-05
3.8834e-13
0.0210562
-5.24192e-05
-5.32031e-13
0.0210534
-6.18733e-05
-3.36587e-12
-6.90087e-05
-3.66156e-12
0.0162892
0.000154343
-4.64776e-10
0.0167273
0.000472186
-3.02113e-10
0.017315
0.000591648
-8.52397e-11
0.017955
0.00063508
1.52824e-11
0.0185815
0.000642453
4.59844e-11
0.0191621
0.000610854
4.67013e-11
0.0196869
0.000551093
5.13619e-11
0.0201623
0.000482799
5.92217e-11
0.0206013
0.000419554
6.46966e-11
0.0210092
0.000365742
6.73721e-11
0.0213823
0.000321337
6.63304e-11
0.0217107
0.000284214
6.23519e-11
0.0219859
0.000252282
5.42981e-11
0.0222081
0.000223656
4.3385e-11
0.0223873
0.000197139
3.04992e-11
0.0225319
0.000172063
1.81151e-11
0.022636
0.000147963
6.17423e-12
0.022699
0.000124589
4.04733e-13
0.0227306
0.000101979
-7.04378e-12
0.0227498
8.0091e-05
-1.33374e-11
0.0227721
5.90437e-05
-1.81447e-11
0.0228052
3.88241e-05
-2.14157e-11
0.0228472
1.96453e-05
-2.29861e-11
0.0228884
1.95477e-06
-2.2978e-11
0.0229215
-1.57858e-05
-2.14635e-11
0.022938
-3.2047e-05
-1.97595e-11
0.0229338
-4.77105e-05
-1.83736e-11
0.0229093
-6.29458e-05
-1.77654e-11
0.0228661
-7.77459e-05
-1.81776e-11
0.0228074
-9.21537e-05
-1.98257e-11
0.0227347
-0.000106147
-2.24157e-11
0.0226504
-0.000119657
-2.58527e-11
0.022554
-0.000132649
-2.95538e-11
0.0224469
-0.000144912
-3.33077e-11
0.0223299
-0.000156528
-3.66976e-11
0.0222018
-0.000167144
-3.92995e-11
0.0220652
-0.000176967
-4.12092e-11
0.0219167
-0.000185661
-4.18769e-11
0.0217581
-0.000193412
-4.18213e-11
0.0215855
-0.000200078
-4.06353e-11
0.0214002
-0.000205717
-3.90152e-11
0.0211986
-0.000210412
-3.66594e-11
0.0209847
-0.000214102
-3.43385e-11
0.0207555
-0.000217054
-3.16664e-11
0.0205178
-0.000219024
-2.93738e-11
0.0202714
-0.000220476
-2.70908e-11
0.0200221
-0.000220957
-2.51477e-11
0.019773
-0.00022098
-2.34514e-11
0.0195272
-0.000220154
-2.18854e-11
0.0192885
-0.000218656
-2.06078e-11
0.0190568
-0.000216485
-1.91973e-11
0.0188362
-0.000213359
-1.81013e-11
0.0186231
-0.000209491
-1.66099e-11
0.0184217
-0.000204471
-1.52796e-11
0.0182289
-0.000198379
-1.36189e-11
0.0180465
-0.000191171
-1.18801e-11
0.0178735
-0.000182409
-9.59684e-12
0.0177141
-0.000172269
-7.09022e-12
0.0175634
-0.000159842
-3.94803e-12
0.0174301
-0.000145232
-1.91017e-13
0.017311
-0.000127158
4.07535e-12
0.0172124
-0.000104829
1.07023e-11
0.0171435
-7.77086e-05
1.62993e-11
0.0170996
-3.81621e-05
3.37e-11
0.0170946
3.66437e-08
3.56591e-11
0.017129
4.21454e-05
3.96415e-11
0.0172091
8.94337e-05
4.76793e-11
0.0173463
0.000147727
6.33071e-11
0.0175415
0.000224209
8.1298e-11
0.0177976
0.000307737
9.92629e-11
0.0181123
0.000389943
1.14763e-10
0.0184718
0.000456808
1.26416e-10
0.0188584
0.00049528
1.33951e-10
0.0192492
0.000497288
1.36661e-10
0.0196236
0.00046439
1.33473e-10
0.0199649
0.000407057
1.25295e-10
0.0202593
0.000338903
1.13514e-10
0.0205012
0.000272158
1.00354e-10
0.0206907
0.000214122
8.77998e-11
0.0208312
0.000167538
7.68788e-11
0.020932
0.000131974
6.78661e-11
0.0210002
0.000105456
6.049e-11
0.0210417
8.57367e-05
5.42933e-11
0.0210642
7.08395e-05
4.89632e-11
0.0210726
5.92137e-05
4.41928e-11
0.0210688
4.9704e-05
3.95765e-11
0.0210578
4.15958e-05
3.54462e-11
0.0210469
3.42425e-05
3.09158e-11
0.0210297
2.74112e-05
2.75635e-11
0.0210135
2.11786e-05
2.11606e-11
0.0210017
1.4254e-05
2.00712e-11
0.0209961
7.52431e-06
1.64459e-11
0.0209905
1.07114e-06
1.29119e-11
0.0209856
-5.54561e-06
8.98284e-12
0.0209832
-1.1594e-05
5.52981e-12
0.0209845
-1.77191e-05
4.33972e-12
0.0209865
-2.33044e-05
-7.64979e-14
0.0209888
-2.85202e-05
-7.9508e-13
0.0209892
-3.30448e-05
-3.64175e-12
-3.59455e-05
-4.00556e-12
0.0161635
-4.29988e-10
0.016632
-2.61598e-10
0.0173442
-5.86242e-11
0.0180608
2.26122e-11
0.0187213
5.11109e-11
0.0193212
5.47193e-11
0.019862
5.88903e-11
0.0203509
6.51662e-11
0.0207963
7.05322e-11
0.0212021
7.21964e-11
0.0215653
7.06606e-11
0.0218783
6.61621e-11
0.0221347
5.77871e-11
0.0223345
4.67506e-11
0.022486
3.35078e-11
0.0225996
2.08991e-11
0.0226779
7.53195e-12
0.0227152
1.16916e-12
0.0227174
-6.537e-12
0.02271
-1.34928e-11
0.0227159
-1.86381e-11
0.0227451
-2.19688e-11
0.0227913
-2.33001e-11
0.022842
-2.27052e-11
0.0228828
-2.1352e-11
0.0229045
-1.93946e-11
0.0229029
-1.77448e-11
0.0228787
-1.7055e-11
0.0228339
-1.74846e-11
0.0227729
-1.92055e-11
0.0226975
-2.1869e-11
0.0226112
-2.54287e-11
0.0225133
-2.92256e-11
0.0224064
-3.3132e-11
0.0222904
-3.66335e-11
0.0221644
-3.93419e-11
0.0220304
-4.13557e-11
0.0218842
-4.20516e-11
0.0217278
-4.20518e-11
0.0215566
-4.08517e-11
0.0213723
-3.92337e-11
0.0211716
-3.68374e-11
0.0209586
-3.45244e-11
0.0207309
-3.18008e-11
0.0204951
-2.95234e-11
0.0202517
-2.72404e-11
0.0200048
-2.52547e-11
0.0197596
-2.36557e-11
0.0195158
-2.20182e-11
0.0192794
-2.0817e-11
0.0190491
-1.94369e-11
0.0188282
-1.83063e-11
0.0186157
-1.69284e-11
0.0184125
-1.55766e-11
0.0182187
-1.39944e-11
0.0180333
-1.21807e-11
0.017858
-1.01019e-11
0.0176928
-7.67226e-12
0.0175376
-4.62907e-12
0.0173979
-1.0948e-12
0.0172717
3.01207e-12
0.0171668
9.16158e-12
0.0170873
1.41551e-11
0.0170352
3.18127e-11
0.0170243
3.34962e-11
0.0170537
3.7312e-11
0.0171277
4.48449e-11
0.0172558
5.75322e-11
0.0174455
8.25461e-11
0.0177091
1.00702e-10
0.0180464
1.19583e-10
0.0184435
1.35472e-10
0.018875
1.45115e-10
0.0193077
1.46669e-10
0.0197109
1.39983e-10
0.0200633
1.27515e-10
0.0203546
1.12429e-10
0.0205853
9.77407e-11
0.0207594
8.49711e-11
0.0208865
7.46486e-11
0.0209758
6.64342e-11
0.0210333
5.96835e-11
0.0210667
5.39264e-11
0.0210821
4.88453e-11
0.0210821
4.42197e-11
0.0210707
3.95905e-11
0.0210546
3.56693e-11
0.0210363
3.09797e-11
0.0210127
2.7584e-11
0.0209921
2.18998e-11
0.0209805
1.95063e-11
0.0209741
1.5674e-11
0.020965
1.32924e-11
0.0209595
1.12572e-11
0.0209572
6.1259e-12
0.0209595
3.3387e-12
0.0209629
-8.88728e-13
0.0209656
-7.20337e-13
0.0209659
-4.01404e-12
-4.15581e-12
0.00744872
0.00884722
5.84553e-12
0.00282528
0.00462038
2.0571e-11
-0.00143351
0.00425569
2.71507e-11
-0.00331476
0.00188141
1.522e-11
-0.00459125
0.00127531
2.02128e-11
-0.00525877
0.000665082
2.26802e-11
-0.00549344
0.00023209
2.29029e-11
-0.00580101
0.000305764
2.05194e-11
-0.00614887
0.000345605
2.06226e-11
-0.0064458
0.000294306
2.20859e-11
-0.00666636
0.000217371
2.12596e-11
-0.0068338
0.000165847
2.12944e-11
-0.00695115
0.000117813
1.71845e-11
-0.00705066
9.4399e-05
2.33193e-11
-0.0071631
0.000103589
3.06591e-11
-0.00724833
7.48645e-05
3.38163e-11
-0.00727771
1.87449e-05
3.50602e-11
-0.00725852
-3.39888e-05
4.00802e-11
-0.00718394
-9.20078e-05
4.35668e-11
-0.0070472
-0.000155526
4.50692e-11
-0.00684913
-0.000217069
4.40999e-11
-0.00660019
-0.000266203
4.06227e-11
-0.00631476
-0.000300969
3.58117e-11
-0.00599649
-0.000330809
3.11483e-11
-0.00566072
-0.000345568
2.53005e-11
-0.00531206
-0.000355206
1.97537e-11
-0.00495262
-0.000362532
1.17764e-11
-0.00458447
-0.000369641
1.00006e-11
-0.00420486
-0.000379451
5.26318e-12
-0.00381272
-0.000389452
4.28685e-12
-0.00341024
-0.000399041
7.1469e-13
-0.00298907
-0.000417233
-1.19679e-12
-0.00255548
-0.000428921
-2.87465e-12
-0.00211723
-0.000433197
-3.82361e-12
-0.00167769
-0.000435121
-3.85245e-12
-0.00123678
-0.000437076
-3.30127e-12
-0.000792295
-0.000440406
-2.70155e-12
-0.000345583
-0.000442969
-1.81103e-12
0.000119292
-0.000462429
3.2722e-13
0.000576297
-0.000456046
2.69232e-12
0.00101394
-0.000438102
5.05057e-12
0.00143364
-0.000421024
7.3234e-12
0.00184286
-0.000410905
8.79747e-12
0.00223711
-0.000397018
1.10294e-11
0.00261575
-0.00038267
1.27548e-11
0.00298111
-0.000370239
1.37498e-11
0.00334068
-0.000364905
1.556e-11
0.00369423
-0.000360331
1.76064e-11
0.00403542
-0.000348322
1.87893e-11
0.0043623
-0.000334567
1.98228e-11
0.00467609
-0.000321948
2.04926e-11
0.00497655
-0.000309572
2.09408e-11
0.00526523
-0.000297501
2.10806e-11
0.00554102
-0.000285617
2.09423e-11
0.00580531
-0.000273414
2.04582e-11
0.00605858
-0.000261894
1.96987e-11
0.00630077
-0.000249967
1.85803e-11
0.00653288
-0.000238715
1.71776e-11
0.00675444
-0.000227283
1.52713e-11
0.00696659
-0.000216399
1.23891e-11
0.00716938
-0.000205536
1.0841e-11
0.00736241
-0.000195179
8.81193e-12
0.00754652
-0.000184828
7.13674e-12
0.00772186
-0.000175076
6.30432e-12
0.00788881
-0.000165339
3.16224e-12
0.00804719
-0.000156187
1.19306e-12
0.00819829
-0.000147064
-5.97158e-13
0.00834124
-0.000138555
-2.23203e-12
0.00847717
-0.000130013
-3.67655e-12
0.00860603
-0.000122103
-4.95521e-12
0.00872742
-0.000114114
-6.065e-12
0.00884277
-0.000106693
-7.01331e-12
0.0089505
-9.92423e-05
-7.82174e-12
0.00905239
-9.22395e-05
-8.48716e-12
0.00914732
-8.52977e-05
-9.04371e-12
0.00923611
-7.87254e-05
-9.48871e-12
0.00931873
-7.22887e-05
-9.83936e-12
0.00939529
-6.61943e-05
-1.01051e-11
0.00946613
-6.02757e-05
-1.02937e-11
0.00953145
-5.46576e-05
-1.04225e-11
0.00959137
-4.92273e-05
-1.0499e-11
0.00964625
-4.40318e-05
-1.05363e-11
0.00969628
-3.90402e-05
-1.05433e-11
0.00974149
-3.42706e-05
-1.05317e-11
0.00978253
-2.96886e-05
-1.05125e-11
0.00981884
-2.5281e-05
-1.04839e-11
0.00985157
-2.11195e-05
-1.04495e-11
0.00987983
-1.70576e-05
-1.04053e-11
0.0099045
-1.30179e-05
-1.03533e-11
0.00992544
-9.41477e-06
-1.029e-11
0.0099428
-5.90714e-06
-1.02035e-11
0.00995698
-2.27483e-06
-1.0109e-11
0.00996705
1.13738e-06
-1.00041e-11
0.00997499
4.22253e-06
-9.89133e-12
0.00997862
7.54991e-06
-9.73883e-12
0.00997931
1.13477e-05
-9.56018e-12
0.00997488
1.57042e-05
-9.31657e-12
0.00996541
2.11578e-05
-9.00831e-12
0.00994848
2.81454e-05
-8.64463e-12
3.69955e-05
-8.32388e-12
0.0114612
0.0132527
7.91042e-12
0.00790203
0.0081777
1.85287e-11
0.00602857
0.00612459
1.8712e-11
0.00354496
0.00436302
1.61521e-11
0.00179917
0.0030193
2.0328e-11
0.000234725
0.00222526
2.45075e-11
-0.0012534
0.00172094
2.43007e-11
-0.00231671
0.00137304
1.84848e-11
-0.00301435
0.00104597
1.75365e-11
-0.00347857
0.000759575
2.37026e-11
-0.00376749
0.000505673
2.448e-11
-0.00400465
0.000403056
1.91391e-11
-0.0042288
0.000341576
2.26092e-11
-0.00438516
0.000246912
2.12942e-11
-0.00448569
0.000196771
3.01571e-11
-0.00454244
0.000122927
3.42431e-11
-0.00453276
-1.31865e-06
3.58198e-11
-0.00445877
-0.000122459
4.17783e-11
-0.00432126
-0.000247671
4.57147e-11
-0.00410924
-0.000388395
4.73999e-11
-0.00383823
-0.000510398
4.66453e-11
-0.00352483
-0.000600817
4.30689e-11
-0.00318604
-0.000657771
3.7382e-11
-0.00282315
-0.00071083
3.3133e-11
-0.00245505
-0.000729028
2.6866e-11
-0.00207875
-0.000743148
2.10588e-11
-0.00169641
-0.000754397
1.37533e-11
-0.0013042
-0.000769943
8.88225e-12
-0.00090005
-0.000787979
7.54647e-12
-0.000484469
-0.000806914
4.25606e-12
-5.10442e-05
-0.000832337
2.26741e-12
0.000376658
-0.000845486
1.94368e-12
0.000801176
-0.000853378
-4.52145e-13
0.00122423
-0.000855402
-1.49017e-12
0.00164956
-0.000859061
-1.51979e-12
0.0020721
-0.000859017
-1.08538e-12
0.00249132
-0.00085816
-9.02791e-13
0.00290701
-0.000856919
-3.94642e-13
0.00330236
-0.000856679
1.16646e-12
0.0036919
-0.000845778
2.89885e-12
0.00407989
-0.000826396
5.03596e-12
0.00446478
-0.000806254
6.68564e-12
0.00483901
-0.000785355
8.26682e-12
0.00520473
-0.000763376
1.01395e-11
0.0055577
-0.000737431
1.20042e-11
0.00589793
-0.000713037
1.26154e-11
0.00622455
-0.000693604
1.39166e-11
0.00654346
-0.000682151
1.601e-11
0.006851
-0.000659508
1.69505e-11
0.00714759
-0.000635125
1.78441e-11
0.00743036
-0.000609306
1.84981e-11
0.00770131
-0.000584994
1.88414e-11
0.00795826
-0.000560074
1.89715e-11
0.00820394
-0.000536302
1.88505e-11
0.00843761
-0.00051215
1.85056e-11
0.00865962
-0.000488858
1.78732e-11
0.00887072
-0.000465389
1.69735e-11
0.00907098
-0.000442835
1.57773e-11
0.00926062
-0.000420219
1.39022e-11
0.00944062
-0.00039853
1.14237e-11
0.00961087
-0.000376958
9.90388e-12
0.00977187
-0.000356278
8.24613e-12
0.00992422
-0.000335833
6.77705e-12
0.0100675
-0.000316317
6.41102e-12
0.0102025
-0.000297098
3.34928e-12
0.0103292
-0.00027881
1.51695e-12
0.0104474
-0.000260872
-1.83605e-13
0.0105587
-0.000243782
-1.77114e-12
0.0106612
-0.000227126
-3.18209e-12
0.0107578
-0.000211129
-4.43397e-12
0.0108463
-0.000195636
-5.55692e-12
0.010929
-0.000180656
-6.52105e-12
0.0110044
-0.000166208
-7.34583e-12
0.0110739
-0.000152193
-8.04106e-12
0.0111366
-0.000138746
-8.62483e-12
0.0111936
-0.000125729
-9.10652e-12
0.0112443
-0.000113321
-9.49626e-12
0.0112897
-0.000101382
-9.803e-12
0.0113292
-9.00403e-05
-1.00355e-11
0.0113638
-7.91535e-05
-1.02025e-11
0.0113931
-6.87907e-05
-1.03182e-11
0.0114175
-5.88252e-05
-1.03849e-11
0.0114374
-4.93205e-05
-1.04212e-11
0.0114528
-4.03012e-05
-1.04294e-11
0.0114643
-3.15277e-05
-1.04318e-11
0.0114716
-2.33574e-05
-1.04084e-11
0.0114756
-1.55355e-05
-1.03813e-11
0.0114756
-8.05991e-06
-1.03387e-11
0.0114722
-3.77743e-07
-1.02905e-11
0.0114661
5.26928e-06
-1.02242e-11
0.0114573
1.1319e-05
-1.01489e-11
0.0114463
1.73483e-05
-1.00616e-11
0.0114322
2.33848e-05
-9.94783e-12
0.0114158
2.9366e-05
-9.82079e-12
0.0113959
3.56607e-05
-9.67123e-12
0.0113736
4.24639e-05
-9.4814e-12
0.0113475
5.03407e-05
-9.23832e-12
0.0113176
5.97796e-05
-8.91857e-12
0.0112823
7.18645e-05
-8.53777e-12
8.74548e-05
-8.16783e-12
0.0153004
0.0151542
8.08429e-12
0.012777
0.010699
1.39185e-11
0.0105843
0.00831507
1.54568e-11
0.00847705
0.0064659
1.56317e-11
0.00649892
0.00499255
1.88822e-11
0.00481684
0.00389958
2.19008e-11
0.00340986
0.00312487
2.17617e-11
0.00226766
0.00251743
1.99797e-11
0.00130533
0.00201139
2.28878e-11
0.000451415
0.00161522
2.48225e-11
-0.000348404
0.00130691
2.0251e-11
-0.000994154
0.00104964
2.31158e-11
-0.0014605
0.000805863
2.42489e-11
-0.00178121
0.000564177
2.51296e-11
-0.00192122
0.000329557
2.95803e-11
-0.00192497
0.000119921
3.41531e-11
-0.00181442
-0.000122561
3.93163e-11
-0.00165938
-0.000292181
4.46098e-11
-0.00144984
-0.000476487
4.78978e-11
-0.00115002
-0.000710991
4.94512e-11
-0.000800401
-0.000886366
4.91228e-11
-0.000417008
-0.00101029
4.53398e-11
-6.45187e-06
-0.00108947
3.48619e-11
0.000375303
-0.00111799
4.13189e-11
0.000764538
-0.00113816
2.91746e-11
0.00115721
-0.00115242
2.27424e-11
0.00155735
-0.00116889
1.74051e-11
0.00196629
-0.00119075
1.28577e-11
0.00238016
-0.00121246
1.03597e-11
0.00280053
-0.00123649
5.59382e-12
0.00321803
-0.00125949
4.58624e-12
0.0036395
-0.0012765
3.29564e-12
0.00406405
-0.00128648
2.20152e-12
0.00449188
-0.00129213
1.74922e-12
0.0049164
-0.00129256
1.12181e-12
0.00533849
-0.0012907
8.25569e-13
0.00575404
-0.00128353
1.16797e-12
0.00616174
-0.00127424
1.27874e-12
0.00655459
-0.00126022
2.40427e-12
0.00693819
-0.00124056
3.6774e-12
0.00731271
-0.00121347
5.06136e-12
0.00767797
-0.00118328
6.26065e-12
0.00802999
-0.00115059
7.41341e-12
0.00836987
-0.00111567
9.01e-12
0.0086969
-0.00107792
1.06963e-11
0.00900959
-0.0010382
1.11366e-11
0.00930451
-0.00100201
1.21312e-11
0.00958234
-0.000973579
1.382e-11
0.00985103
-0.000942313
1.45947e-11
0.0101077
-0.000905984
1.523e-11
0.0103526
-0.000867757
1.57652e-11
0.0105829
-0.000828832
1.60621e-11
0.010801
-0.000791002
1.61605e-11
0.0110059
-0.000753584
1.60126e-11
0.0111989
-0.000717191
1.58372e-11
0.0113797
-0.000681288
1.53917e-11
0.0115501
-0.000646204
1.47327e-11
0.0117092
-0.000611677
1.38195e-11
0.0118593
-0.000577955
1.27092e-11
0.0119987
-0.000545011
1.09053e-11
0.0121295
-0.000512849
8.76206e-12
0.0122506
-0.000481644
7.27877e-12
0.0123631
-0.000451227
5.94622e-12
0.012467
-0.000421861
6.3375e-12
0.0125626
-0.000393325
3.57749e-12
0.0126509
-0.000365844
2.00159e-12
0.0127313
-0.00033922
4.66757e-13
0.0128052
-0.000313618
-1.00614e-12
0.0128718
-0.000288803
-2.28411e-12
0.0129319
-0.000264971
-3.54448e-12
0.0129856
-0.000241891
-4.72541e-12
0.0130327
-0.000219693
-5.74046e-12
0.013074
-0.000198203
-6.61907e-12
0.013109
-0.000177615
-7.3832e-12
0.0131387
-0.000157663
-8.02554e-12
0.0131625
-0.000138695
-8.58087e-12
0.0131815
-0.000120415
-9.03081e-12
0.0131953
-0.000103158
-9.41147e-12
0.0132047
-8.6563e-05
-9.70727e-12
0.0132092
-7.08995e-05
-9.94204e-12
0.0132099
-5.58445e-05
-1.01167e-11
0.0132057
-4.15072e-05
-1.02318e-11
0.0131984
-2.79927e-05
-1.03186e-11
0.0131869
-1.52431e-05
-1.03556e-11
0.013173
-2.82046e-06
-1.0404e-11
0.0131561
7.63051e-06
-1.03724e-11
0.013138
1.76342e-05
-1.03653e-11
0.0131171
2.73369e-05
-1.03004e-11
0.0130949
3.67807e-05
-1.02622e-11
0.0130695
4.55849e-05
-1.01803e-11
0.0130413
5.4041e-05
-1.01198e-11
0.0130115
6.23466e-05
-1.00253e-11
0.0129786
7.04881e-05
-9.91568e-12
0.0129443
7.86464e-05
-9.7828e-12
0.0129069
8.69236e-05
-9.61651e-12
0.0128678
9.57496e-05
-9.42351e-12
0.0128258
0.000105569
-9.16243e-12
0.0127816
0.000117162
-8.84361e-12
0.0127344
0.000131505
-8.43578e-12
0.000150142
-7.97343e-12
0.0174121
0.0159071
7.32018e-12
0.0157118
0.0123962
1.11459e-11
0.0140601
0.00996457
1.32068e-11
0.0123359
0.00818491
1.51824e-11
0.010633
0.00669006
1.70758e-11
0.00898372
0.00554073
2.00509e-11
0.00745935
0.00464141
2.0198e-11
0.00609813
0.00387123
1.98099e-11
0.00493166
0.00317635
1.78317e-11
0.00396173
0.00258594
2.03329e-11
0.00314163
0.00212783
2.36618e-11
0.00246335
0.00172871
1.98893e-11
0.00191292
0.00135454
2.25129e-11
0.00148659
0.000985317
2.66793e-11
0.00118554
0.000622346
3.17087e-11
0.0010366
0.000259134
3.44626e-11
0.00105234
-0.000151399
3.88273e-11
0.00123079
-0.00048984
4.35513e-11
0.00151257
-0.000784271
4.87139e-11
0.00187398
-0.00110068
4.87762e-11
0.00228406
-0.00132812
4.71016e-11
0.00270435
-0.00146344
4.36239e-11
0.00312417
-0.00154078
3.84808e-11
0.00354891
-0.00157329
3.49917e-11
0.00397501
-0.00159103
2.89171e-11
0.00440632
-0.00160682
2.36995e-11
0.00484582
-0.00162839
1.92505e-11
0.00528967
-0.00165264
1.55915e-11
0.00573924
-0.00167805
1.25246e-11
0.00618965
-0.00170147
9.49785e-12
0.00663942
-0.00172227
8.85328e-12
0.0070861
-0.00173601
7.59953e-12
0.00753094
-0.00174254
5.07038e-12
0.00796925
-0.00174175
4.49631e-12
0.00840114
-0.00173447
3.41903e-12
0.00882233
-0.00172228
3.86849e-12
0.0092308
-0.00170334
3.7234e-12
0.00962466
-0.00167996
4.05448e-12
0.0100021
-0.00165013
4.24922e-12
0.0103644
-0.00161546
4.74411e-12
0.0107118
-0.00157391
5.44524e-12
0.0110439
-0.00152915
6.01843e-12
0.0113589
-0.0014807
6.81159e-12
0.0116597
-0.00143109
7.77201e-12
0.011945
-0.00137843
9.01142e-12
0.0122143
-0.00132343
9.24625e-12
0.0124634
-0.001268
9.77812e-12
0.0126897
-0.00121825
1.06462e-11
0.0129045
-0.00117674
1.19016e-11
0.0131074
-0.00112854
1.2116e-11
0.0132964
-0.00107678
1.25269e-11
0.013473
-0.00102492
1.28365e-11
0.0136364
-0.000973234
1.29592e-11
0.0137878
-0.000923102
1.29924e-11
0.0139274
-0.000873765
1.27794e-11
0.0140557
-0.000826057
1.25159e-11
0.0141736
-0.000779137
1.21042e-11
0.0142812
-0.000733838
1.15439e-11
0.0143795
-0.00068924
1.00191e-11
0.0144686
-0.000646268
9.14233e-12
0.0145491
-0.000604061
8.46355e-12
0.0146218
-0.00056349
6.88417e-12
0.0146863
-0.000523826
5.40524e-12
0.0147439
-0.000485747
6.28498e-12
0.0147938
-0.000448723
4.6927e-12
0.0148371
-0.000413175
2.61752e-12
0.0148734
-0.000378757
1.24593e-12
0.0149032
-0.000345662
-6.55442e-14
0.0149267
-0.000313703
-1.42869e-12
0.0149437
-0.000282892
-2.62235e-12
0.0149551
-0.00025316
-3.67962e-12
0.0149603
-0.000224481
-4.69031e-12
0.0149602
-0.000196898
-5.63163e-12
0.0149547
-0.000170268
-6.46819e-12
0.014944
-0.000144858
-7.19433e-12
0.0149288
-0.000120448
-7.85647e-12
0.0149089
-9.73649e-05
-8.41645e-12
0.0148851
-7.52834e-05
-8.91555e-12
0.0148573
-5.43818e-05
-9.31031e-12
0.0148258
-3.4469e-05
-9.64634e-12
0.0147911
-1.58266e-05
-9.89503e-12
0.0147532
1.96297e-06
-1.00871e-11
0.0147142
1.70342e-05
-1.02229e-11
0.0146732
3.19231e-05
-1.03028e-11
0.0146307
4.61284e-05
-1.03473e-11
0.0145857
5.95862e-05
-1.03665e-11
0.014538
7.22486e-05
-1.03695e-11
0.0144888
8.44269e-05
-1.03379e-11
0.0144368
9.60474e-05
-1.02943e-11
0.0143841
0.000107135
-1.02249e-11
0.0143284
0.000117655
-1.01429e-11
0.0142726
0.000127728
-1.0033e-11
0.0142142
0.000137557
-9.90919e-12
0.0141556
0.000147119
-9.7421e-12
0.0140948
0.000156803
-9.56396e-12
0.0140336
0.000166666
-9.33008e-12
0.0139708
0.000177503
-9.06123e-12
0.0139074
0.000189742
-8.71449e-12
0.0138428
0.00020464
-8.29699e-12
0.00022378
-7.81854e-12
0.0185718
0.0161941
6.92627e-12
0.0175387
0.0134284
9.34197e-12
0.0163153
0.0111858
1.14551e-11
0.0150291
0.00946693
1.39455e-11
0.0136827
0.0080307
1.57991e-11
0.0123341
0.0068822
1.78023e-11
0.0110116
0.00595353
1.91414e-11
0.00973431
0.00513996
1.93953e-11
0.00849662
0.00440417
2.07718e-11
0.00735071
0.00372454
2.29544e-11
0.00636463
0.00310978
2.08756e-11
0.00554764
0.00254079
2.49727e-11
0.00489877
0.00199806
2.67469e-11
0.00441701
0.00145724
2.93146e-11
0.00411013
0.000915549
3.22191e-11
0.00397517
0.000376691
3.50941e-11
0.00395429
-0.000154717
3.67864e-11
0.0041298
-0.00069392
3.97377e-11
0.00448414
-0.00117474
4.31983e-11
0.00489872
-0.00155641
4.25071e-11
0.00536514
-0.00183565
4.17439e-11
0.00584665
-0.0019913
3.9875e-11
0.0063353
-0.00207454
3.6192e-11
0.0068238
-0.00210488
3.30092e-11
0.00730641
-0.00211061
2.94142e-11
0.0077858
-0.00211907
2.54101e-11
0.00825949
-0.00213246
2.16825e-11
0.00872892
-0.0021504
1.85322e-11
0.00919202
-0.00216789
1.59068e-11
0.0096493
-0.00218391
1.41138e-11
0.0100955
-0.00219283
1.28107e-11
0.0105317
-0.0021939
1.17118e-11
0.0109536
-0.00218453
1.05247e-11
0.0113624
-0.00216654
9.24218e-12
0.0117541
-0.00214044
8.02225e-12
0.0121277
-0.00210757
6.91209e-12
0.0124819
-0.00206863
6.36302e-12
0.0128161
-0.00202389
6.3098e-12
0.0131305
-0.0019743
6.1151e-12
0.0134265
-0.00191975
5.94561e-12
0.013706
-0.00186118
5.92887e-12
0.0139694
-0.00179904
5.9125e-12
0.0142186
-0.00173466
6.13103e-12
0.014451
-0.00166899
6.68825e-12
0.0146672
-0.00160163
7.2983e-12
0.0148669
-0.00153117
7.41028e-12
0.0150503
-0.00145997
7.65683e-12
0.0152152
-0.00139258
8.07829e-12
0.0153631
-0.00133443
8.76172e-12
0.0155006
-0.00127642
8.89647e-12
0.0156293
-0.00121593
9.1505e-12
0.0157476
-0.00115448
9.43021e-12
0.0158563
-0.00109253
9.63663e-12
0.0159547
-0.00103219
9.75297e-12
0.0160439
-0.000972777
9.79915e-12
0.0161236
-0.000915515
9.76038e-12
0.0161947
-0.000859232
9.64236e-12
0.0162573
-0.000805002
8.73921e-12
0.0163117
-0.000751766
8.57523e-12
0.0163584
-0.000700444
8.14306e-12
0.0163973
-0.00065024
7.19936e-12
0.0164297
-0.000601835
6.38945e-12
0.0164548
-0.000554725
5.39824e-12
0.0164745
-0.000509315
5.16297e-12
0.0164877
-0.00046534
5.51086e-12
0.0164961
-0.000422947
3.53156e-12
0.0164986
-0.000382026
2.21213e-12
0.0164967
-0.000342539
1.03607e-12
0.0164894
-0.000304461
-1.58928e-13
0.0164781
-0.000267687
-1.34482e-12
0.0164616
-0.000232234
-2.47996e-12
0.0164413
-0.000198033
-3.55137e-12
0.0164162
-0.000165127
-4.5514e-12
0.0163874
-0.000133504
-5.45042e-12
0.0163541
-0.000103289
-6.27191e-12
0.0163175
-7.45335e-05
-7.02842e-12
0.0162769
-4.72278e-05
-7.71146e-12
0.0162335
-2.16556e-05
-8.30451e-12
0.0161873
2.38591e-06
-8.82498e-12
0.0161394
2.39931e-05
-9.24645e-12
0.0160902
4.4637e-05
-9.60503e-12
0.0160387
6.41118e-05
-9.87679e-12
0.0159848
8.25597e-05
-1.01041e-11
0.0159274
9.98601e-05
-1.02453e-11
0.0158687
0.00011658
-1.03538e-11
0.0158064
0.000132249
-1.03913e-11
0.0157428
0.000147233
-1.04153e-11
0.0156763
0.000161286
-1.03834e-11
0.0156084
0.000174716
-1.03388e-11
0.0155385
0.000187393
-1.02533e-11
0.015467
0.000199394
-1.0147e-11
0.0153946
0.000210772
-1.00139e-11
0.0153206
0.000221613
-9.85408e-12
0.0152466
0.000232075
-9.66583e-12
0.0151714
0.000242296
-9.44973e-12
0.0150966
0.000252566
-9.1934e-12
0.0150216
0.000263305
-8.899e-12
0.0149472
0.0002752
-8.53591e-12
0.0148737
0.000289023
-8.1104e-12
0.000306738
-7.65958e-12
0.0193705
0.0162259
5.93781e-12
0.0187018
0.0140937
7.96558e-12
0.0178262
0.0120602
1.00935e-11
0.0168688
0.0104215
1.23956e-11
0.0158265
0.00906795
1.50449e-11
0.0147728
0.00793092
1.66042e-11
0.0137105
0.00700659
1.84229e-11
0.0126419
0.00619881
1.98334e-11
0.0115803
0.00545275
1.99326e-11
0.0105437
0.0047489
2.55962e-11
0.00957998
0.00405955
2.78779e-11
0.00871891
0.00338675
3.0274e-11
0.00800308
0.00269657
3.27394e-11
0.00745338
0.00198768
3.51587e-11
0.00708985
0.00125039
3.64693e-11
0.00692803
0.00050555
3.67924e-11
0.00696676
-0.000235769
3.62344e-11
0.00719162
-0.000964092
3.46148e-11
0.00758529
-0.00161959
3.28067e-11
0.0080815
-0.00210808
3.05766e-11
0.00860836
-0.0024203
2.9421e-11
0.0091479
-0.00258456
2.47283e-11
0.00967918
-0.00265528
2.81245e-11
0.0101979
-0.00267353
2.99617e-11
0.0106982
-0.00265612
3.08486e-11
0.0111786
-0.00264145
2.82141e-11
0.0116359
-0.00262984
2.49119e-11
0.0120693
-0.00262219
2.21792e-11
0.0124825
-0.00261576
2.02448e-11
0.012875
-0.00260674
1.85737e-11
0.0132483
-0.00259276
1.73094e-11
0.0136019
-0.00257092
1.62322e-11
0.0139372
-0.0025402
1.49729e-11
0.0142536
-0.00250109
1.34623e-11
0.014552
-0.00245463
1.18364e-11
0.0148325
-0.00240224
1.0343e-11
0.0150955
-0.00234458
9.03661e-12
0.0153424
-0.00228264
8.10989e-12
0.0155745
-0.00221721
7.42545e-12
0.015792
-0.00214732
6.64937e-12
0.0159958
-0.0020741
6.1915e-12
0.0161854
-0.00199775
5.43598e-12
0.0163618
-0.00191988
5.20729e-12
0.0165254
-0.00184115
5.27507e-12
0.0166779
-0.00176243
4.70609e-12
0.0168189
-0.00168036
4.69236e-12
0.0169493
-0.00159756
4.71635e-12
0.0170668
-0.00151724
5.46173e-12
0.0171706
-0.00144427
5.00899e-12
0.0172641
-0.0013763
5.01073e-12
0.0173508
-0.00130859
6.03329e-12
0.0174292
-0.00123981
6.42489e-12
0.0175003
-0.00117027
5.92798e-12
0.017563
-0.0011019
6.9797e-12
0.0176178
-0.00103446
7.22275e-12
0.0176646
-0.000969144
7.41258e-12
0.0177034
-0.000905168
7.54665e-12
0.0177351
-0.000843301
7.61583e-12
0.017759
-0.000782854
7.43031e-12
0.0177764
-0.000724337
6.86612e-12
0.0177864
-0.000667354
6.55184e-12
0.0177905
-0.000612168
6.09214e-12
0.0177877
-0.000558639
5.50772e-12
0.0177799
-0.000506831
4.81789e-12
0.0177662
-0.000456741
5.03615e-12
0.017748
-0.000408295
5.20668e-12
0.0177249
-0.000361531
3.3498e-12
0.0176974
-0.000316296
2.10772e-12
0.0176657
-0.000272643
9.84881e-13
0.0176298
-0.000230421
-1.46004e-13
0.0175901
-0.000189724
-1.27953e-12
0.0175465
-0.000150454
-2.36491e-12
0.0174997
-0.000112777
-3.41468e-12
0.017449
-7.64656e-05
-4.3234e-12
0.0173959
-4.23726e-05
-5.29058e-12
0.0173396
-1.00032e-05
-6.14195e-12
0.0172827
1.95239e-05
-6.96942e-12
0.0172237
4.71695e-05
-7.67741e-12
0.0171639
7.34627e-05
-8.29636e-12
0.0171003
9.83747e-05
-8.82519e-12
0.0170355
0.000121832
-9.28024e-12
0.0169669
0.000144184
-9.64583e-12
0.0168971
0.000165137
-9.94485e-12
0.0168237
0.000185102
-1.0168e-11
0.0167492
0.000203723
-1.03241e-11
0.0166719
0.000221611
-1.04226e-11
0.016593
0.000238128
-1.04583e-11
0.0165123
0.000254037
-1.04608e-11
0.0164298
0.000268609
-1.04005e-11
0.0163464
0.000282703
-1.03264e-11
0.0162611
0.000295518
-1.01845e-11
0.0161756
0.0003079
-1.00408e-11
0.0160885
0.000319154
-9.82999e-12
0.0160018
0.000330095
-9.61569e-12
0.0159141
0.000340221
-9.34318e-12
0.0158274
0.000350328
-9.05082e-12
0.0157408
0.000360251
-8.70652e-12
0.0156559
0.000370994
-8.30795e-12
0.0155724
0.000382848
-7.84755e-12
0.000397483
-7.36118e-12
0.0199437
0.0162044
5.53969e-12
0.0195461
0.0144897
7.00431e-12
0.0188656
0.0127359
9.13238e-12
0.0181213
0.0111619
1.12906e-11
0.0173238
0.00985998
1.38321e-11
0.0164845
0.00876326
1.63492e-11
0.0156508
0.00783273
1.86687e-11
0.014807
0.00702968
1.97187e-11
0.0139619
0.00628583
2.38502e-11
0.0131153
0.00557521
2.96432e-11
0.0123064
0.00484406
3.58012e-11
0.0115722
0.00409644
4.04675e-11
0.0109414
0.00329281
4.31114e-11
0.0104484
0.002449
4.36181e-11
0.0101262
0.0015354
4.1089e-11
0.0100211
0.000570781
3.9196e-11
0.0100982
-0.000358146
3.35793e-11
0.0103421
-0.00124936
2.50192e-11
0.010706
-0.00202765
2.21275e-11
0.0111167
-0.00255788
1.68341e-11
0.0115281
-0.00286471
1.32854e-11
0.0120126
-0.00309959
1.36631e-11
0.012483
-0.00315388
1.726e-11
0.0128713
-0.00310085
2.53347e-11
0.0133063
-0.00312829
3.49842e-11
0.0137265
-0.00309879
3.28757e-11
0.0141209
-0.00305889
3.01381e-11
0.0144865
-0.0030178
2.73211e-11
0.0148257
-0.00298179
2.4777e-11
0.0151435
-0.00294889
2.27911e-11
0.0154423
-0.00291399
2.15605e-11
0.015724
-0.00287319
2.04446e-11
0.0159908
-0.0028255
1.90689e-11
0.0162421
-0.00277058
1.72648e-11
0.0164801
-0.00270924
1.52725e-11
0.0167044
-0.00264204
1.32242e-11
0.0169163
-0.00257032
1.13811e-11
0.017117
-0.00249562
9.81174e-12
0.0173058
-0.00241684
8.44212e-12
0.0174834
-0.00233468
7.09844e-12
0.0176504
-0.00224977
5.77623e-12
0.0178071
-0.00216252
4.75133e-12
0.0179542
-0.00207395
4.30338e-12
0.0180913
-0.00198474
3.71901e-12
0.0182191
-0.0018964
3.06992e-12
0.0183367
-0.00180444
3.05228e-12
0.0184454
-0.00171235
3.01661e-12
0.0185432
-0.00162119
2.97644e-12
0.0186279
-0.00153442
2.96892e-12
0.018703
-0.00145754
3.05639e-12
0.0187689
-0.00138045
3.13977e-12
0.0188264
-0.00130418
3.38897e-12
0.0188773
-0.00122789
3.98529e-12
0.0189205
-0.00115245
3.9743e-12
0.0189563
-0.00107779
5.20005e-12
0.0189844
-0.00100493
4.46989e-12
0.0190047
-0.000933642
4.8324e-12
0.0190181
-0.00086439
5.13051e-12
0.019024
-0.00079695
5.3564e-12
0.0190236
-0.000731426
5.4685e-12
0.0190163
-0.000667802
5.47421e-12
0.0190032
-0.000605988
5.91723e-12
0.018984
-0.000546138
5.70483e-12
0.0189594
-0.000488041
5.25817e-12
0.0189293
-0.000431907
4.67696e-12
0.0188947
-0.000377452
4.24002e-12
0.0188553
-0.000324869
5.02894e-12
0.0188117
-0.000273869
3.64623e-12
0.0187639
-0.00022463
2.1485e-12
0.0187121
-0.000176923
1.07242e-12
0.0186562
-0.000131005
-3.8016e-14
0.0185967
-8.66965e-05
-1.13291e-12
0.0185337
-4.44685e-05
-2.20762e-12
0.0184673
-3.93136e-06
-3.10581e-12
0.0184006
3.20638e-05
-4.27813e-12
0.0183318
6.70516e-05
-5.34465e-12
0.0182606
0.000100133
-6.224e-12
0.0181859
0.00013137
-7.00105e-12
0.0181092
0.000160892
-7.72086e-12
0.0180292
0.00018888
-8.33598e-12
0.0179473
0.000215263
-8.88907e-12
0.0178624
0.000240254
-9.33888e-12
0.0177759
0.000263696
-9.72181e-12
0.0176869
0.000285869
-1.00152e-11
0.0175964
0.000306534
-1.0233e-11
0.0175042
0.000326125
-1.03805e-11
0.0174103
0.000344278
-1.04455e-11
0.0173155
0.00036147
-1.04677e-11
0.0172189
0.00037729
-1.04054e-11
0.017122
0.000392222
-1.03285e-11
0.0170235
0.000405875
-1.01642e-11
0.0169251
0.000418655
-1.00035e-11
0.0168257
0.000430283
-9.75502e-12
0.0167269
0.000441091
-9.51566e-12
0.0166277
0.000450984
-9.19618e-12
0.0165299
0.000460252
-8.87411e-12
0.0164326
0.000469077
-8.48114e-12
0.0163375
0.000477876
-8.04999e-12
0.0162443
0.000487296
-7.54876e-12
0.000498047
-6.99976e-12
0.0204279
0.0161288
5.67455e-12
0.0201743
0.0147426
7.0635e-12
0.0196814
0.0132269
8.77713e-12
0.0190486
0.0117897
1.0971e-11
0.0183897
0.0105133
1.34813e-11
0.0177114
0.0094334
1.65161e-11
0.0170252
0.0085088
2.08212e-11
0.0163493
0.00769216
2.27958e-11
0.0156826
0.00693214
3.08152e-11
0.0150374
0.00619773
3.9193e-11
0.0144377
0.0054108
4.72597e-11
0.0138789
0.00461274
5.30164e-11
0.0133649
0.00376602
5.38838e-11
0.0130047
0.00276594
5.43734e-11
0.0128567
0.00162932
5.19917e-11
0.012845
0.000550199
3.14871e-11
0.0129773
-0.000528281
2.80473e-11
0.0132027
-0.00151347
2.11932e-11
0.0134317
-0.00228322
7.04904e-12
0.0136329
-0.00276611
-1.40413e-11
0.0138375
-0.00308414
-1.71129e-13
0.0139912
-0.00326678
1.87724e-12
0.0142789
-0.00346109
9.05e-12
0.0147088
-0.00355667
2.08084e-11
0.0150403
-0.00349171
2.85082e-11
0.0153874
-0.00348585
3.7846e-11
0.0157601
-0.00347166
3.69984e-11
0.0161081
-0.00340327
3.49465e-11
0.0164331
-0.00334144
3.1635e-11
0.0167319
-0.00327968
2.86151e-11
0.0170096
-0.00322062
2.63907e-11
0.0172688
-0.00315986
2.45122e-11
0.0175148
-0.00309586
2.26026e-11
0.0177478
-0.00302694
2.03561e-11
0.0179711
-0.00295233
1.80199e-11
0.0181839
-0.00287342
1.54284e-11
0.0183869
-0.00278927
1.32177e-11
0.0185785
-0.00270105
1.12262e-11
0.018759
-0.00260882
9.12537e-12
0.0189281
-0.00251416
7.45776e-12
0.0190862
-0.00241701
5.82337e-12
0.0192329
-0.00231796
3.99195e-12
0.0193689
-0.00221722
3.17907e-12
0.0194939
-0.00211688
2.69551e-12
0.0196083
-0.00201678
3.07931e-12
0.0197146
-0.00191673
2.99813e-12
0.0198118
-0.00181428
2.77415e-12
0.0198982
-0.00171236
2.47386e-12
0.0199732
-0.00161284
2.24892e-12
0.0200341
-0.00152199
2.12455e-12
0.0200853
-0.00143496
2.73665e-12
0.0201283
-0.00135099
3.07388e-12
0.0201636
-0.00126743
3.02072e-12
0.0201915
-0.00118518
2.75086e-12
0.0202114
-0.00110344
3.10928e-12
0.0202244
-0.00102352
3.86385e-12
0.0202291
-0.000945027
4.71638e-12
0.0202271
-0.000868719
5.44912e-12
0.0202169
-0.000794325
5.914e-12
0.0202
-0.000722083
5.0293e-12
0.0201757
-0.000651898
5.29611e-12
0.0201454
-0.000583748
5.40798e-12
0.0201088
-0.000517688
5.37552e-12
0.0200671
-0.000453576
5.80979e-12
0.0200201
-0.000391502
5.38984e-12
0.0199685
-0.000331284
4.7982e-12
0.0199122
-0.000272967
4.11732e-12
0.0198516
-0.000216424
4.81436e-12
0.0197866
-0.000161659
3.91132e-12
0.0197179
-0.000108701
2.19604e-12
0.0196456
-5.77387e-05
1.11136e-12
0.0195704
-9.22354e-06
4.79047e-14
0.019494
3.59876e-05
-1.1587e-12
0.0194166
7.90746e-05
-2.48816e-12
0.0193363
0.000119535
-3.46266e-12
0.0192533
0.00015788
-4.42303e-12
0.0191685
0.000194392
-5.39118e-12
0.0190806
0.000228865
-6.26248e-12
0.0189912
0.000261516
-7.09314e-12
0.0188986
0.000292289
-7.79571e-12
0.0188049
0.000321311
-8.44853e-12
0.0187084
0.00034864
-8.97506e-12
0.0186109
0.000374242
-9.44317e-12
0.0185112
0.000398355
-9.79919e-12
0.0184104
0.000420752
-1.00851e-11
0.018308
0.000441863
-1.02796e-11
0.0182041
0.000461313
-1.03926e-11
0.0180994
0.000479608
-1.04402e-11
0.0179929
0.000496315
-1.04e-11
0.0178863
0.000511907
-1.03237e-11
0.0177779
0.000526021
-1.01554e-11
0.0176702
0.00053898
-9.97396e-12
0.0175611
0.000550596
-9.69843e-12
0.0174532
0.000560991
-9.421e-12
0.0173448
0.000570237
-9.05372e-12
0.0172382
0.000578264
-8.67974e-12
0.0171321
0.000585489
-8.22208e-12
0.0170288
0.000591766
-7.72776e-12
0.0169276
0.00059809
-7.16001e-12
0.000604411
-6.47654e-12
0.0208034
0.0160139
5.65685e-12
0.0206644
0.0148775
7.20154e-12
0.0203143
0.0135754
8.84512e-12
0.0198228
0.0122773
1.12022e-11
0.0192521
0.0110768
1.41689e-11
0.0186715
0.0100065
1.76804e-11
0.0180962
0.00907093
2.16607e-11
0.0175279
0.00824241
2.9935e-11
0.0169968
0.00743825
4.03541e-11
0.0165287
0.00663074
5.12261e-11
0.0160472
0.00584064
6.3614e-11
0.0156266
0.00498572
6.57731e-11
0.0153548
0.00398227
6.94681e-11
0.0152719
0.00278407
7.37157e-11
0.0152442
0.00160929
5.02943e-11
0.0153439
0.000421656
2.48581e-11
0.0154865
-0.00069934
2.03065e-11
0.0156049
-0.00165198
7.36112e-12
0.0156162
-0.00229184
-1.64997e-11
0.0156207
-0.00276346
-2.30384e-11
0.015654
-0.00311165
-1.54898e-11
0.0157473
-0.00336777
2.91339e-12
0.0158223
-0.00354587
5.46782e-12
0.0159971
-0.00374515
9.0425e-12
0.0163508
-0.00386714
1.67994e-11
0.0166786
-0.00384928
3.30388e-11
0.0169894
-0.00382568
4.23981e-11
0.0173419
-0.00379838
4.32407e-11
0.0176931
-0.00373229
3.99464e-11
0.0180176
-0.00363989
3.61258e-11
0.0183105
-0.00354646
3.25062e-11
0.0185752
-0.00345497
2.91823e-11
0.0188176
-0.00336565
2.60773e-11
0.0190423
-0.00327678
2.30631e-11
0.0192548
-0.00318598
2.01834e-11
0.0194545
-0.00309208
1.73216e-11
0.0196425
-0.00299329
1.46778e-11
0.0198197
-0.00289108
1.22723e-11
0.0199843
-0.00278446
9.83185e-12
0.0201373
-0.00267624
8.01201e-12
0.020278
-0.00256517
6.13574e-12
0.0204054
-0.00245206
4.14136e-12
0.0205217
-0.00233907
2.82201e-12
0.0206263
-0.0022267
2.98526e-12
0.0207207
-0.0021148
1.97737e-12
0.0208072
-0.00200564
1.33696e-12
0.0208849
-0.00189329
1.27435e-12
0.0209528
-0.00178146
1.1788e-12
0.0210105
-0.00167102
1.10785e-12
0.0210556
-0.00156753
1.07805e-12
0.0210893
-0.00146969
1.41757e-12
0.0211139
-0.00137694
1.661e-12
0.0211304
-0.00128576
2.00554e-12
0.0211403
-0.00119668
3.03108e-12
0.0211426
-0.00110859
3.0017e-12
0.0211388
-0.00102237
3.0011e-12
0.0211274
-0.000937649
3.70067e-12
0.0211101
-0.00085506
4.65447e-12
0.0210853
-0.000774472
5.39842e-12
0.0210546
-0.00069614
6.11548e-12
0.0210166
-0.000620016
5.31399e-12
0.0209728
-0.00054611
5.61646e-12
0.0209226
-0.00047442
5.7623e-12
0.0208671
-0.000404842
5.69986e-12
0.0208064
-0.000337368
5.44952e-12
0.0207411
-0.00027186
5.55141e-12
0.0206713
-0.000208293
4.99221e-12
0.0205974
-0.00014663
4.22975e-12
0.0205196
-8.67306e-05
4.4383e-12
0.0204385
-2.94163e-05
3.9927e-12
0.0203554
2.49821e-05
2.18731e-12
0.0202706
7.6517e-05
9.91215e-13
0.0201835
0.000125469
-1.74256e-13
0.0200941
0.000172001
-1.39785e-12
0.0200025
0.000216162
-2.51469e-12
0.0199081
0.000257899
-3.54348e-12
0.0198125
0.000297473
-4.57964e-12
0.019714
0.000334886
-5.52488e-12
0.019615
0.000370175
-6.43368e-12
0.0195133
0.000403475
-7.22212e-12
0.0194115
0.000434656
-7.95261e-12
0.0193075
0.000464092
-8.56111e-12
0.0192033
0.000491404
-9.09569e-12
0.0190974
0.000517224
-9.51807e-12
0.0189908
0.000540918
-9.85443e-12
0.0188831
0.000563322
-1.00964e-11
0.0187741
0.000583649
-1.02436e-11
0.0186647
0.000602802
-1.03192e-11
0.0185538
0.000619968
-1.02946e-11
0.0184429
0.000635964
-1.02242e-11
0.0183307
0.000650086
-1.00519e-11
0.0182191
0.000662949
-9.85504e-12
0.0181066
0.000674045
-9.55777e-12
0.0179953
0.000683721
-9.24579e-12
0.0178839
0.00069172
-8.83841e-12
0.0177744
0.000698131
-8.41069e-12
0.017666
0.000703004
-7.89459e-12
0.0175607
0.0007062
-7.326e-12
0.0174584
0.000708463
-6.69204e-12
0.000709411
-5.87102e-12
0.0211031
0.0159262
6.07366e-12
0.0210298
0.0149467
8.38979e-12
0.0207834
0.0138172
9.01995e-12
0.0204093
0.0126456
1.14693e-11
0.019957
0.0115223
1.4992e-11
0.0194602
0.0104892
2.07857e-11
0.0189771
0.00954018
2.86623e-11
0.0185187
0.0086753
4.08271e-11
0.0181206
0.0077988
5.31672e-11
0.0177127
0.00698607
7.15256e-11
0.0173835
0.00611249
7.54103e-11
0.0171967
0.005113
8.31725e-11
0.0171991
0.00389722
9.58649e-11
0.0172597
0.00266138
7.61407e-11
0.017359
0.00147687
3.6457e-11
0.0174772
0.000273724
2.99324e-11
0.01755
-0.000793819
1.25677e-11
0.0174868
-0.00158993
-8.52957e-12
0.0173734
-0.00214805
-4.29489e-11
0.0172437
-0.00260985
-3.3436e-11
0.0171527
-0.00300601
-2.06626e-11
0.0171253
-0.00334048
-6.73567e-12
0.017175
-0.00360737
8.18702e-12
0.017223
-0.00380703
1.0656e-11
0.0173587
-0.00402017
1.5758e-11
0.0176387
-0.00415632
2.41099e-11
0.0179495
-0.00417025
3.48878e-11
0.0182177
-0.0041089
4.08296e-11
0.0185343
-0.00409185
4.2757e-11
0.018869
-0.00401535
4.14424e-11
0.0191802
-0.0038959
3.86702e-11
0.0194586
-0.00376805
3.47523e-11
0.0197058
-0.00364441
3.04264e-11
0.0199272
-0.00352636
2.63146e-11
0.0201299
-0.0034125
2.25795e-11
0.0203162
-0.00329933
1.91563e-11
0.0204913
-0.0031848
1.60806e-11
0.0206529
-0.00306785
1.3356e-11
0.0208038
-0.00294758
1.08336e-11
0.0209426
-0.00282523
8.60142e-12
0.0210682
-0.00270039
6.52291e-12
0.0211833
-0.00257588
4.31061e-12
0.0212868
-0.00244996
3.20467e-12
0.0213795
-0.00232542
3.03168e-12
0.0214631
-0.00220224
1.60735e-12
0.0215383
-0.00208325
1.22418e-12
0.0216058
-0.0019616
1.14746e-12
0.0216651
-0.00184103
1.03153e-12
0.0217155
-0.00172096
9.40137e-13
0.0217531
-0.00160533
9.16197e-13
0.0217806
-0.00149851
1.15026e-12
0.0217968
-0.00139517
1.48329e-12
0.0218038
-0.00129551
1.74822e-12
0.0218039
-0.00119906
2.38456e-12
0.0217973
-0.00110454
3.35771e-12
0.0217851
-0.00101209
3.07917e-12
0.0217661
-0.000921465
3.36472e-12
0.0217409
-0.000832816
3.84169e-12
0.0217083
-0.000746345
5.32606e-12
0.0216691
-0.000662002
5.25839e-12
0.0216228
-0.000580106
5.44444e-12
0.0215703
-0.000500412
5.99876e-12
0.0215115
-0.00042318
7.03436e-12
0.0214471
-0.000348074
7.06772e-12
0.0213772
-0.000275254
6.95634e-12
0.0213022
-0.000204388
6.6932e-12
0.0212224
-0.000135608
5.89416e-12
0.0211383
-6.87461e-05
5.02747e-12
0.0210507
-4.36747e-06
4.36129e-12
0.0209615
5.62241e-05
4.27679e-12
0.0208704
0.000114448
3.56126e-12
0.0207768
0.000169915
1.82408e-12
0.0206814
0.000222673
6.85997e-13
0.0205833
0.000272868
-4.70664e-13
0.0204834
0.000320505
-1.64425e-12
0.0203806
0.00036564
-2.74359e-12
0.0202765
0.000408224
-3.82552e-12
0.0201697
0.000448508
-4.81909e-12
0.0200622
0.0004863
-5.77909e-12
0.0199525
0.000522015
-6.62994e-12
0.0198424
0.000555252
-7.42081e-12
0.0197306
0.000586663
-8.09556e-12
0.0196184
0.000615615
-8.68718e-12
0.0195052
0.000642967
-9.1687e-12
0.0193912
0.000667898
-9.55116e-12
0.0192767
0.000691381
-9.8382e-12
0.0191611
0.000712526
-1.00182e-11
0.0190456
0.000732279
-1.01226e-11
0.0189287
0.000749815
-1.01157e-11
0.0188123
0.000765903
-1.00545e-11
0.0186947
0.000779898
-9.88188e-12
0.0185781
0.000792279
-9.67243e-12
0.0184609
0.000802638
-9.35431e-12
0.0183451
0.000811097
-9.00785e-12
0.0182296
0.00081751
-8.55394e-12
0.0181165
0.000821574
-8.06593e-12
0.0180049
0.000823495
-7.47896e-12
0.0178971
0.000822577
-6.8135e-12
0.0177929
0.000819843
-6.09221e-12
0.000813939
-5.11446e-12
0.0214205
0.0158986
8.51711e-12
0.0213528
0.0150112
8.79321e-12
0.0211676
0.0139963
1.26416e-11
0.0208709
0.0129338
1.48342e-11
0.0205106
0.01187
2.0899e-11
0.0201178
0.010867
2.75024e-11
0.0197263
0.00990166
3.97531e-11
0.0194012
0.00896323
5.54627e-11
0.01907
0.00806884
7.57242e-11
0.0188352
0.0071592
8.14842e-11
0.0187244
0.00614737
9.40149e-11
0.0188256
0.0049205
1.17407e-10
0.0189648
0.00366749
1.07304e-10
0.0190992
0.00248063
4.8705e-11
0.0192924
0.0012473
4.57253e-11
0.0194004
0.000143631
2.97021e-11
0.0193426
-0.000733502
-1.01687e-12
0.0191068
-0.00132324
-4.97192e-11
0.018864
-0.00187488
-4.18782e-11
0.0186479
-0.00236745
-3.21848e-11
0.0184775
-0.00281987
-2.05493e-11
0.018368
-0.00322569
-9.51485e-12
0.0183291
-0.00357478
1.82654e-12
0.0183618
-0.00385558
1.44094e-11
0.0183903
-0.00406548
1.56465e-11
0.0184742
-0.00425786
1.82293e-11
0.0186811
-0.00440122
2.37569e-11
0.0189816
-0.0044448
3.40649e-11
0.0192063
-0.00435465
3.77098e-11
0.0194831
-0.00433325
4.1273e-11
0.019796
-0.00425
4.18598e-11
0.0200936
-0.0041054
4.05667e-11
0.020368
-0.0039549
3.63931e-11
0.0206149
-0.00380304
3.13779e-11
0.0208354
-0.00365672
2.64437e-11
0.0210333
-0.00351562
2.19927e-11
0.0212112
-0.0033786
1.8161e-11
0.0213729
-0.0032428
1.49544e-11
0.0215199
-0.00310756
1.21723e-11
0.0216538
-0.00297063
9.9034e-12
0.0217747
-0.00283325
7.23239e-12
0.0218843
-0.00269454
5.20992e-12
0.0219859
-0.00255768
4.23753e-12
0.0220778
-0.00242111
2.83164e-12
0.0221603
-0.00228631
3.14561e-12
0.0222323
-0.00215539
2.61513e-12
0.0222993
-0.00202724
1.55479e-12
0.0223559
-0.0018968
1.49055e-12
0.0224017
-0.00176659
1.39987e-12
0.0224357
-0.00163981
1.34188e-12
0.0224562
-0.00152017
1.3402e-12
0.0224663
-0.00140704
1.71747e-12
0.0224672
-0.00129871
2.00403e-12
0.0224609
-0.00119426
2.72805e-12
0.022447
-0.00109264
3.56968e-12
0.0224275
-0.000993747
3.36151e-12
0.0224007
-0.000897033
3.40647e-12
0.0223683
-0.000802484
3.90982e-12
0.0223284
-0.000710138
4.70668e-12
0.0222822
-0.000620008
5.39125e-12
0.0222291
-0.000532331
5.94458e-12
0.0221697
-0.000447001
6.09533e-12
0.0221041
-0.000364176
6.52075e-12
0.0220329
-0.00028365
6.97697e-12
0.0219565
-0.000205431
6.39739e-12
0.0218751
-0.000129298
6.14102e-12
0.021789
-5.5425e-05
5.69687e-12
0.0216993
1.55824e-05
5.37333e-12
0.021607
8.36825e-05
4.50373e-12
0.0215111
0.000148544
3.77917e-12
0.0214126
0.000210606
4.14842e-12
0.0213116
0.000269778
2.6934e-12
0.0212087
0.000326237
1.41506e-12
0.0211033
0.000379843
2.97067e-13
0.0209965
0.000430787
-8.56048e-13
0.0208874
0.00047893
-1.97264e-12
0.0207773
0.000524406
-3.08539e-12
0.0206651
0.000567238
-4.1177e-12
0.0205525
0.000607446
-5.12467e-12
0.0204381
0.000645264
-6.02244e-12
0.0203236
0.000680487
-6.86544e-12
0.0202079
0.000713583
-7.58939e-12
0.0200918
0.000744112
-8.22983e-12
0.019975
0.000772724
-8.7579e-12
0.0198572
0.000798826
-9.17955e-12
0.0197392
0.000823122
-9.50399e-12
0.01962
0.000845007
-9.71072e-12
0.019501
0.000865096
-9.83723e-12
0.0193808
0.000882889
-9.84453e-12
0.0192611
0.000898791
-9.7867e-12
0.0191408
0.000912469
-9.61241e-12
0.0190214
0.00092404
-9.38542e-12
0.018902
0.00093334
-9.04447e-12
0.0187844
0.000940138
-8.65655e-12
0.0186677
0.000944421
-8.1576e-12
0.0185539
0.000945557
-7.59962e-12
0.0184424
0.000943708
-6.93623e-12
0.0183355
0.00093772
-6.14482e-12
0.0182335
0.000928499
-5.30945e-12
0.000914796
-4.18605e-12
0.0217418
0.0159241
9.85073e-12
0.0216564
0.0150906
1.20411e-11
0.0215
0.0141453
1.58262e-11
0.0212663
0.0131557
2.01188e-11
0.0209798
0.0121376
2.8427e-11
0.0206813
0.0111417
3.89485e-11
0.0204042
0.0101361
5.72228e-11
0.0201569
0.00914486
8.4814e-11
0.0199672
0.00818966
8.94473e-11
0.0199231
0.00712819
1.00458e-10
0.0201038
0.00588268
1.17493e-10
0.0203238
0.00457731
1.42141e-10
0.0205466
0.00336737
9.57321e-11
0.0207926
0.00220418
4.04451e-11
0.0209213
0.00108921
3.22271e-11
0.0208812
0.000172359
1.31902e-11
0.0206181
-0.00044415
-3.0716e-11
0.0203558
-0.00102631
-4.1306e-11
0.0200841
-0.00156861
-3.54788e-11
0.0198399
-0.00209756
-2.66605e-11
0.0196347
-0.00260087
-1.72161e-11
0.0194769
-0.0030646
-8.45303e-12
0.0193709
-0.00347233
7.46339e-14
0.0193229
-0.00381692
7.97091e-12
0.0193369
-0.00409161
1.42232e-11
0.0193571
-0.00429874
2.15529e-11
0.0193887
-0.00445261
2.30814e-11
0.0195115
-0.00459393
2.72284e-11
0.0197722
-0.00465015
3.42687e-11
0.0199642
-0.00455858
3.31994e-11
0.0201844
-0.00450861
3.94442e-11
0.0204606
-0.00442242
4.38553e-11
0.0207505
-0.00428248
4.19095e-11
0.0210246
-0.00410964
3.76071e-11
0.0212715
-0.00393077
3.22517e-11
0.0214876
-0.00375462
2.68309e-11
0.0216751
-0.00358543
2.19527e-11
0.021839
-0.00342333
1.7821e-11
0.0219833
-0.00326675
1.44735e-11
0.0221124
-0.00311308
1.18712e-11
0.0222293
-0.0029612
9.81697e-12
0.0223348
-0.00281026
8.0526e-12
0.0224316
-0.00266066
5.35052e-12
0.0225192
-0.00251317
4.05316e-12
0.0225978
-0.00236768
3.19093e-12
0.0226656
-0.00222477
3.06576e-12
0.0227242
-0.00208656
3.21124e-12
0.0227735
-0.00194726
3.02316e-12
0.0228138
-0.00180842
2.6357e-12
0.0228439
-0.00167163
2.09701e-12
0.0228614
-0.0015396
1.87282e-12
0.0228702
-0.00141765
2.28857e-12
0.0228689
-0.00129922
2.97782e-12
0.0228598
-0.00118605
3.51361e-12
0.022843
-0.00107679
3.82354e-12
0.0228197
-0.000970928
3.52076e-12
0.0227888
-0.000867776
3.47778e-12
0.0227515
-0.000767114
3.81891e-12
0.0227067
-0.000668858
4.56638e-12
0.0226555
-0.000572944
5.39646e-12
0.0225972
-0.000479533
5.27486e-12
0.0225326
-0.000388545
6.34746e-12
0.0224617
-0.00030011
6.40338e-12
0.0223853
-0.000214053
6.59554e-12
0.0223037
-0.000130319
6.58493e-12
0.0222173
-4.89687e-05
6.26205e-12
0.0221271
2.94248e-05
5.86243e-12
0.0220334
0.000104578
5.20446e-12
0.0219364
0.000176704
4.95427e-12
0.0218357
0.000245686
4.1685e-12
0.0217321
0.000311633
3.46562e-12
0.0216253
0.00037453
3.71224e-12
0.0215166
0.000434477
1.97516e-12
0.0214051
0.000491415
9.09907e-13
0.0212926
0.000545383
-2.10978e-13
0.0211777
0.000596443
-1.31127e-12
0.0210625
0.000644492
-2.42963e-12
0.0209452
0.000689834
-3.47703e-12
0.0208281
0.000732149
-4.5064e-12
0.0207095
0.000772049
-5.43515e-12
0.0205911
0.000808929
-6.30669e-12
0.0204719
0.000843669
-7.06896e-12
0.0203524
0.00087543
-7.73796e-12
0.0202327
0.000905231
-8.30416e-12
0.0201121
0.000932145
-8.75109e-12
0.0199917
0.000957151
-9.1059e-12
0.0198701
0.000979394
-9.33196e-12
0.0197489
0.000999672
-9.47388e-12
0.0196268
0.00101729
-9.49125e-12
0.0195054
0.00103279
-9.42964e-12
0.0193837
0.00104564
-9.25068e-12
0.0192632
0.00105606
-8.99802e-12
0.0191433
0.00106363
-8.62965e-12
0.0190253
0.00106821
-8.19042e-12
0.0189092
0.00106941
-7.62754e-12
0.0187965
0.00106663
-6.98586e-12
0.0186876
0.0010595
-6.20033e-12
0.0185851
0.00104644
-5.21941e-12
0.0184885
0.00102964
-4.4368e-12
0.00100834
-3.31042e-12
0.0221282
0.0159933
1.24487e-11
0.0220052
0.0152041
1.58135e-11
0.0218384
0.014299
2.03551e-11
0.0216365
0.0133388
2.85801e-11
0.0214131
0.0123353
3.99474e-11
0.0212092
0.0113032
5.83126e-11
0.0210484
0.0102251
9.23747e-11
0.0208919
0.00922587
9.81835e-11
0.0208904
0.00810513
1.10402e-10
0.0211124
0.0068041
1.29561e-10
0.0214355
0.00542781
1.56519e-10
0.0217386
0.00418687
1.15448e-10
0.0219948
0.00306815
5.97981e-11
0.0222094
0.0019551
4.98946e-11
0.0222289
0.00104871
2.19721e-11
0.0219599
0.000456222
-1.73209e-11
0.021689
-0.000128095
-4.63321e-11
0.0213974
-0.000697368
-4.23993e-11
0.021124
-0.00126991
-2.91028e-11
0.0208781
-0.00183638
-1.92821e-11
0.0206634
-0.00237735
-1.23899e-11
0.0204799
-0.00287809
-6.49972e-12
0.0203315
-0.00332432
-6.89662e-13
0.0202222
-0.00371148
4.48203e-12
0.0201542
-0.00403131
1.07261e-11
0.0201291
-0.00428737
1.57967e-11
0.0201424
-0.00448401
1.87104e-11
0.0201378
-0.00461586
2.41964e-11
0.0201734
-0.00471282
2.53402e-11
0.0203689
-0.00478393
2.77267e-11
0.0205556
-0.00472624
3.12578e-11
0.0207295
-0.00463083
3.5613e-11
0.0209713
-0.00456003
4.04323e-11
0.0212473
-0.00442032
4.05317e-11
0.0215176
-0.00423327
3.73456e-11
0.0217648
-0.00403117
3.25925e-11
0.0219835
-0.00382895
2.73104e-11
0.0221728
-0.00363427
2.2249e-11
0.022336
-0.00344817
1.79923e-11
0.0224772
-0.00327067
1.46884e-11
0.0226013
-0.00309959
1.21878e-11
0.0227142
-0.00293359
9.7091e-12
0.0228156
-0.00277088
7.57946e-12
0.0229093
-0.00261094
5.75513e-12
0.0229922
-0.00245454
4.28308e-12
0.0230646
-0.00230012
3.87362e-12
0.0231253
-0.00214953
3.16432e-12
0.0231801
-0.00200391
3.43539e-12
0.0232249
-0.00185517
3.50972e-12
0.0232601
-0.00170851
3.59699e-12
0.023284
-0.00156508
3.58122e-12
0.0232956
-0.00143018
3.3791e-12
0.023297
-0.0013019
3.5616e-12
0.0232898
-0.00117951
3.78417e-12
0.0232739
-0.0010617
3.81269e-12
0.0232503
-0.000947716
3.53257e-12
0.0232186
-0.000837122
3.35452e-12
0.0231797
-0.000729507
3.56722e-12
0.0231331
-0.000624761
4.0919e-12
0.0230795
-0.000522614
4.18825e-12
0.0230184
-0.000423153
5.04851e-12
0.0229506
-0.000326204
5.2379e-12
0.0228759
-0.000231878
5.95668e-12
0.0227952
-0.00013992
6.10074e-12
0.0227087
-5.05311e-05
5.9786e-12
0.0226175
3.58458e-05
6.3498e-12
0.0225223
0.000118866
6.17816e-12
0.0224233
0.000198542
5.86124e-12
0.0223211
0.000274944
5.06501e-12
0.0222154
0.000348054
4.27076e-12
0.022107
0.000417957
3.439e-12
0.0219955
0.000484582
3.91271e-12
0.021882
0.000548009
2.4475e-12
0.0217656
0.000608207
1.36224e-12
0.0216481
0.00066518
2.93957e-13
0.0215282
0.000719052
-7.67586e-13
0.021408
0.000769662
-1.86394e-12
0.0212862
0.000817374
-2.90359e-12
0.0211644
0.000861813
-3.93153e-12
0.0210419
0.000903607
-4.87136e-12
0.0209193
0.000942168
-5.75255e-12
0.0207967
0.000978306
-6.53461e-12
0.0206736
0.00101131
-7.21813e-12
0.0205506
0.00104201
-7.80466e-12
0.0204268
0.00106971
-8.26703e-12
0.0203031
0.0010951
-8.6364e-12
0.0201786
0.00111762
-8.87422e-12
0.0200542
0.00113774
-9.01958e-12
0.0199295
0.00115501
-9.0391e-12
0.0198054
0.00116968
-8.96495e-12
0.0196817
0.00118136
-8.77098e-12
0.0195596
0.00119002
-8.48389e-12
0.0194388
0.00119526
-8.07282e-12
0.0193211
0.00119665
-7.56792e-12
0.0192061
0.00119374
-6.91877e-12
0.0190962
0.00118537
-6.16787e-12
0.0189916
0.00117077
-5.11188e-12
0.0188944
0.00114975
-4.4117e-12
0.0188033
0.00112508
-3.43979e-12
0.00109155
-1.80623e-12
0.0224925
0.0160973
1.5267e-11
0.0223666
0.0153186
2.07936e-11
0.0222045
0.0144413
2.86497e-11
0.0220323
0.0134797
4.20439e-11
0.0218804
0.0124451
5.78171e-11
0.021789
0.0113171
1.00413e-10
0.0216458
0.0102824
1.07029e-10
0.0216899
0.00909132
1.17536e-10
0.0219729
0.00771395
1.35366e-10
0.0223676
0.00626643
1.70765e-10
0.0227125
0.00498404
1.28642e-10
0.0229831
0.00386112
6.94535e-11
0.0232712
0.0027395
5.97268e-11
0.0233343
0.00186492
3.5629e-11
0.0230712
0.0013164
5.50216e-12
0.0228161
0.000757096
-4.83687e-11
0.0225427
0.00018608
-4.30546e-11
0.0222764
-0.000401868
-3.19254e-11
0.0220275
-0.00100231
-2.15864e-11
0.0217955
-0.00159291
-1.46316e-11
0.0215815
-0.0021547
-9.82736e-12
0.0213849
-0.00267451
-5.5314e-12
0.0212088
-0.00314296
-1.19758e-12
0.0210544
-0.00355533
3.2525e-12
0.0209279
-0.0039083
6.44738e-12
0.0208336
-0.00420187
1.03816e-11
0.0207699
-0.00443519
1.38419e-11
0.0207479
-0.00461233
1.71407e-11
0.0207473
-0.00473689
2.21355e-11
0.0207473
-0.00480715
2.3023e-11
0.0208531
-0.00485775
2.54126e-11
0.0210331
-0.00483868
2.89836e-11
0.0211847
-0.00473959
3.20267e-11
0.0213855
-0.0046546
3.79397e-11
0.0216416
-0.00452452
3.81895e-11
0.0218999
-0.00432464
3.63425e-11
0.0221481
-0.00410997
3.21564e-11
0.0223741
-0.00388799
2.72224e-11
0.0225708
-0.00366938
2.24713e-11
0.0227405
-0.00346017
1.83833e-11
0.0228867
-0.00326192
1.50376e-11
0.023012
-0.00307314
1.23279e-11
0.0231241
-0.00289261
1.02386e-11
0.0232226
-0.00271764
8.09431e-12
0.0233101
-0.00254713
6.09423e-12
0.023388
-0.00238154
4.65652e-12
0.0234548
-0.00221862
4.1483e-12
0.0235112
-0.00206146
3.383e-12
0.0235597
-0.00190571
3.29884e-12
0.0235984
-0.00174941
3.15822e-12
0.0236256
-0.00159486
3.06497e-12
0.0236391
-0.00144546
3.32983e-12
0.0236431
-0.00130741
3.49343e-12
0.0236364
-0.00117402
3.62823e-12
0.0236199
-0.00104648
3.62449e-12
0.0235946
-0.000923328
3.48115e-12
0.0235608
-0.000804376
3.1018e-12
0.0235193
-0.000689057
2.86987e-12
0.0234702
-0.000577253
3.03208e-12
0.0234141
-0.000468449
3.4032e-12
0.0233506
-0.000362677
3.78951e-12
0.0232803
-0.000259577
4.2241e-12
0.023203
-0.000159196
5.0902e-12
0.0231195
-6.13154e-05
5.20978e-12
0.0230304
3.34804e-05
4.81754e-12
0.0229367
0.000124787
4.86959e-12
0.0228386
0.00021259
4.76013e-12
0.0227362
0.000296802
4.74814e-12
0.0226302
0.00037757
4.57052e-12
0.0225203
0.000454764
4.06377e-12
0.0224077
0.000528563
3.41677e-12
0.0222917
0.000598798
3.82955e-12
0.022174
0.000665618
2.99525e-12
0.0220536
0.000728952
1.64695e-12
0.0219322
0.000788827
6.57e-13
0.0218088
0.000845375
-3.43944e-13
0.0216849
0.000898409
-1.39246e-12
0.0215595
0.000948338
-2.4012e-12
0.0214339
0.000994728
-3.40519e-12
0.0213076
0.00103826
-4.33407e-12
0.0211812
0.00107829
-5.20668e-12
0.021055
0.00111566
-5.98832e-12
0.0209285
0.00114965
-6.67147e-12
0.0208026
0.00118107
-7.26118e-12
0.0206762
0.00120926
-7.72571e-12
0.0205504
0.00123482
-8.09726e-12
0.0204242
0.00125728
-8.33401e-12
0.0202987
0.00127691
-8.47487e-12
0.0201733
0.00129344
-8.48341e-12
0.0200488
0.00130676
-8.38941e-12
0.0199252
0.00131673
-8.16611e-12
0.0198036
0.0013228
-7.83266e-12
0.0196841
0.00132481
-7.36125e-12
0.0195686
0.00132168
-6.76035e-12
0.019457
0.00131296
-6.01165e-12
0.0193527
0.00129639
-4.91842e-12
0.0192551
0.00127343
-4.20067e-12
0.019164
0.0012445
-2.9933e-12
0.0190849
0.00120552
-1.7165e-12
0.00115467
4.73259e-13
0.0228689
0.0162402
2.07675e-11
0.0227356
0.0154334
2.86645e-11
0.022602
0.0145442
4.39975e-11
0.0224804
0.0135514
6.45746e-11
0.0224328
0.0124206
9.51247e-11
0.0223015
0.011362
1.05298e-10
0.0223774
0.0101051
1.3185e-10
0.0227202
0.0086309
1.60047e-10
0.0231696
0.00712702
1.71092e-10
0.0235362
0.00580138
1.30953e-10
0.0238373
0.0046301
6.8174e-11
0.0241698
0.00349209
5.70546e-11
0.0242334
0.00265552
2.75848e-11
0.0239636
0.00214532
-2.76899e-12
0.0237298
0.00158684
-3.15536e-11
0.0234934
0.0010251
-2.99698e-11
0.0232578
0.000443008
-2.37683e-11
0.0230311
-0.000160355
-1.82326e-11
0.0228136
-0.000775683
-1.33929e-11
0.0226026
-0.00137265
-9.89257e-12
0.0223953
-0.00193944
-7.15116e-12
0.0221943
-0.00246401
-4.53693e-12
0.0220001
-0.00294227
-1.70743e-12
0.021818
-0.00336793
9.72745e-13
0.0216519
-0.00374204
3.9938e-12
0.0215074
-0.00406112
5.61035e-12
0.0213908
-0.00432837
8.3136e-12
0.0213079
-0.00454218
1.13216e-11
0.0212592
-0.0047049
1.49644e-11
0.0212503
-0.00481734
1.75188e-11
0.0212504
-0.00488169
2.3065e-11
0.0212904
-0.00490198
2.42354e-11
0.0214182
-0.00489296
2.63018e-11
0.0215806
-0.00484471
3.00416e-11
0.0217482
-0.0047235
3.33311e-11
0.0219738
-0.00458428
3.59456e-11
0.022229
-0.00439755
3.40285e-11
0.0224813
-0.00417096
3.08571e-11
0.0227163
-0.00393217
2.69193e-11
0.0229257
-0.00369358
2.2612e-11
0.0231043
-0.00346168
1.83847e-11
0.0232573
-0.00324232
1.46763e-11
0.0233861
-0.00303492
1.17192e-11
0.0234972
-0.00283825
9.4943e-12
0.0235932
-0.00265034
8.08021e-12
0.0236757
-0.00246909
6.06359e-12
0.0237473
-0.00229433
5.09388e-12
0.0238065
-0.0021238
5.11245e-12
0.0238581
-0.00195986
3.82557e-12
0.0238995
-0.00179322
3.6047e-12
0.0239313
-0.00162919
3.12543e-12
0.0239519
-0.0014681
2.82469e-12
0.0239579
-0.00131453
3.08508e-12
0.0239542
-0.001171
2.76962e-12
0.0239392
-0.00103198
2.52526e-12
0.0239146
-0.00089861
2.1651e-12
0.0238807
-0.000770466
2.03187e-12
0.0238386
-0.000646714
2.3293e-12
0.0237882
-0.000527171
2.76391e-12
0.0237305
-0.000411179
2.78817e-12
0.0236652
-0.000298657
2.80378e-12
0.0235929
-0.000189106
3.11334e-12
0.0235135
-8.24136e-05
3.36334e-12
0.0234276
2.12812e-05
3.39277e-12
0.0233361
0.000121331
3.60381e-12
0.0232394
0.00021766
3.75425e-12
0.0231381
0.000310303
3.80742e-12
0.0230326
0.000399109
4.12741e-12
0.0229235
0.000484266
3.97461e-12
0.022811
0.000565548
3.64144e-12
0.0226958
0.0006432
3.17801e-12
0.0225775
0.000716976
3.75916e-12
0.0224571
0.000787121
3.11376e-12
0.022334
0.000853461
1.79021e-12
0.0222097
0.000916145
8.9764e-13
0.0220829
0.000975189
-1.98029e-14
0.0219558
0.00103053
-9.99596e-13
0.0218269
0.00108248
-1.95245e-12
0.0216981
0.00113067
-2.91144e-12
0.0215685
0.00117577
-3.80724e-12
0.021439
0.0012171
-4.65263e-12
0.0213098
0.00125556
-5.41745e-12
0.0211804
0.00129033
-6.08504e-12
0.0210519
0.0013223
-6.66639e-12
0.020923
0.00135074
-7.12056e-12
0.0207953
0.00137623
-7.48402e-12
0.0206671
0.00139831
-7.70763e-12
0.0205405
0.00141708
-7.83269e-12
0.0204139
0.00143238
-7.81428e-12
0.0202896
0.00144374
-7.68818e-12
0.0201664
0.0014512
-7.40896e-12
0.0200468
0.00145359
-7.01562e-12
0.0199305
0.00145101
-6.43029e-12
0.0198198
0.00144136
-5.72317e-12
0.019716
0.00142382
-4.59562e-12
0.0196206
0.00139816
-3.84654e-12
0.0195318
0.00136647
-2.55013e-12
0.019455
0.00132319
-7.3444e-13
0.0193973
0.00126095
1.22948e-12
0.00119361
3.04307e-12
0.0232408
0.0164181
2.83392e-11
0.0231044
0.0155321
4.47365e-11
0.0230364
0.0145628
6.59822e-11
0.0230194
0.0134877
1.08285e-10
0.0229195
0.0124325
1.14961e-10
0.0230495
0.0111259
1.2823e-10
0.0234772
0.00955703
1.49554e-10
0.0239291
0.00802081
1.85536e-10
0.0242994
0.00665761
1.31242e-10
0.0246344
0.00541499
6.07689e-11
0.02497
0.00425851
4.74451e-11
0.0249785
0.0034677
1.51688e-11
0.0247099
0.00295233
-3.13173e-11
0.0245053
0.00238295
-2.48233e-11
0.0242968
0.00182534
-2.0312e-11
0.0240972
0.00124641
-1.46059e-11
0.0239068
0.000643954
-8.802e-12
0.0237186
3.27057e-05
-5.80357e-12
0.0235291
-0.000584086
-4.20787e-12
0.0233343
-0.00117507
-3.96259e-12
0.0231347
-0.00173557
-3.86115e-12
0.022933
-0.00225638
-3.30725e-12
0.0227322
-0.00273554
-2.16618e-12
0.0225353
-0.00316735
-7.59106e-13
0.0223483
-0.00355325
5.8616e-13
0.0221749
-0.00389037
1.79751e-12
0.0220215
-0.00418006
3.86272e-12
0.0218927
-0.00442268
6.21181e-12
0.0217926
-0.00461802
8.9647e-12
0.0217272
-0.00476842
1.24008e-11
0.0216995
-0.00487255
1.62179e-11
0.0217088
-0.00493176
1.90722e-11
0.0217341
-0.00494124
2.38181e-11
0.0217654
-0.00489832
2.42846e-11
0.0218886
-0.0048708
2.57061e-11
0.022083
-0.00480462
2.82614e-11
0.022281
-0.00462567
3.11952e-11
0.0225112
-0.00443296
3.10793e-11
0.0227589
-0.00420966
2.91337e-11
0.022996
-0.0039579
2.58285e-11
0.0232128
-0.00370101
2.16227e-11
0.0234008
-0.00344925
1.7255e-11
0.0235591
-0.0032082
1.33775e-11
0.0236915
-0.00298125
1.03859e-11
0.0238019
-0.00276837
8.28543e-12
0.0238964
-0.00256697
7.03958e-12
0.0239751
-0.00237538
5.81392e-12
0.0240422
-0.00219138
4.85165e-12
0.0240955
-0.00201287
3.20347e-12
0.024143
-0.00184049
3.76223e-12
0.0241799
-0.00166638
3.02075e-12
0.0242055
-0.0014943
2.53794e-12
0.0242167
-0.00132651
2.15386e-12
0.0242138
-0.00116815
7.5261e-13
0.024199
-0.00101757
6.43492e-13
0.0241741
-0.000873705
3.99961e-13
0.0241396
-0.000735747
1.90684e-13
0.024097
-0.000602893
1.81276e-13
0.024046
-0.000474927
5.07482e-13
0.023988
-0.000351196
1.08716e-12
0.023922
-0.000231436
1.81254e-12
0.023849
-0.000114976
2.75684e-12
0.0237687
-2.0416e-06
3.53987e-12
0.0236821
0.000107217
3.00056e-12
0.0235897
0.000212554
2.87657e-12
0.0234916
0.000313844
2.99504e-12
0.0233891
0.000411296
3.13456e-12
0.0232813
0.000504601
3.23107e-12
0.0231704
0.000594026
3.20872e-12
0.0230549
0.000679273
3.08106e-12
0.0229371
0.000760585
3.10626e-12
0.0228156
0.000837783
3.67434e-12
0.0226923
0.000911001
2.95098e-12
0.0225662
0.000980241
1.80267e-12
0.0224388
0.00104547
1.02596e-12
0.0223095
0.00110691
2.1112e-13
0.0221795
0.0011643
-6.76122e-13
0.0220483
0.00121815
-1.55109e-12
0.0219171
0.00126793
-2.44176e-12
0.0217855
0.00131441
-3.28204e-12
0.0216543
0.00135684
-4.07979e-12
0.0215237
0.00139614
-4.80725e-12
0.0213933
0.00143148
-5.44143e-12
0.0212645
0.0014637
-5.99723e-12
0.0211358
0.00149208
-6.4258e-12
0.021009
0.00151711
-6.76656e-12
0.0208825
0.00153837
-6.96433e-12
0.0207578
0.00155574
-7.05952e-12
0.0206342
0.0015691
-6.99927e-12
0.020513
0.00157764
-6.82633e-12
0.0203938
0.00158131
-6.4623e-12
0.0202791
0.00157862
-5.97261e-12
0.0201691
0.00156904
-5.25518e-12
0.0200669
0.00154976
-4.10263e-12
0.0199734
0.00152219
-3.43859e-12
0.0198859
0.00148803
-1.96196e-12
0.0198132
0.00143946
1.667e-13
0.0197599
0.00137235
2.57997e-12
0.019724
0.00128731
5.02203e-12
0.00120494
5.44307e-12
0.0237335
0.0166695
4.40262e-11
0.023586
0.015626
7.29533e-11
0.0234949
0.0145622
1.11071e-10
0.0234135
0.0134818
1.20227e-10
0.0236192
0.0121124
1.40833e-10
0.0241389
0.0104785
1.77886e-10
0.0246226
0.00893747
1.6981e-10
0.0250152
0.00753779
1.25373e-10
0.0254348
0.00620901
5.0608e-11
0.0257757
0.00504521
3.77957e-11
0.0257196
0.00430534
1.24397e-11
0.0254614
0.00376355
-3.74792e-11
0.0252712
0.00318427
-4.03531e-11
0.0250722
0.00261492
-2.46975e-11
0.0248889
0.00202889
-1.39478e-11
0.0247235
0.00142328
-6.54045e-12
0.0245643
0.000806255
-1.42659e-12
0.0244061
0.000192112
1.31508e-12
0.0242357
-0.000412069
1.28859e-12
0.0240569
-0.000991906
-7.90259e-14
0.0238683
-0.00154029
-1.53513e-12
0.0236713
-0.00205231
-2.31973e-12
0.0234704
-0.00252624
-2.43895e-12
0.0232658
-0.00295855
-1.9807e-12
0.0230657
-0.0033495
-1.50169e-12
0.0228695
-0.00369756
-6.07544e-13
0.0226872
-0.0040022
5.11529e-13
0.0225196
-0.00426548
2.40422e-12
0.0223749
-0.00448398
4.92888e-12
0.0222561
-0.00466311
8.05684e-12
0.0221671
-0.0047964
1.11474e-11
0.0221138
-0.00489296
1.41822e-11
0.0221013
-0.00494446
1.72125e-11
0.0221353
-0.00495094
2.10556e-11
0.0221486
-0.00490252
2.14135e-11
0.0221536
-0.00482895
2.20371e-11
0.0223047
-0.00479727
2.36211e-11
0.022513
-0.00466612
2.66162e-11
0.0227315
-0.00445431
2.68028e-11
0.0229611
-0.00421316
2.60604e-11
0.0231976
-0.00396318
2.34512e-11
0.0234185
-0.00369284
1.97583e-11
0.0236142
-0.0034223
1.56309e-11
0.0237806
-0.00316164
1.17941e-11
0.0239208
-0.00291654
8.81204e-12
0.0240346
-0.00268659
6.7461e-12
0.0241288
-0.00247073
5.29106e-12
0.0242034
-0.00226733
3.80913e-12
0.0242637
-0.00207343
3.17093e-12
0.0243122
-0.00188804
1.84548e-12
0.024351
-0.00170479
2.19038e-12
0.0243805
-0.00152338
1.96329e-12
0.0243984
-0.00134419
9.19766e-13
0.0244024
-0.00117047
-2.17808e-13
0.0243949
-0.00100806
-8.44963e-13
0.0243753
-0.000851842
-1.08149e-12
0.024345
-0.000702769
-1.25453e-12
0.0243051
-0.000559702
-1.3618e-12
0.0242564
-0.000422284
-1.19265e-12
0.0241989
-0.000289894
-7.05968e-13
0.0241327
-0.000162084
-8.71801e-14
0.0240585
-3.84212e-05
7.64903e-13
0.0239765
8.09844e-05
1.0553e-12
0.0238878
0.000196117
1.53429e-12
0.0237923
0.000306933
2.1221e-12
0.0236915
0.000413382
2.96319e-12
0.0235853
0.000515656
3.08214e-12
0.023475
0.000613469
2.80852e-12
0.0233605
0.000707142
2.78752e-12
0.023243
0.000796231
3.2211e-12
0.0231224
0.000881225
3.55512e-12
0.0229991
0.0009616
3.3902e-12
0.022874
0.00103794
2.6285e-12
0.0227464
0.00110974
1.75852e-12
0.0226182
0.00117751
1.1137e-12
0.0224876
0.00124097
4.21792e-13
0.0223573
0.00130032
-3.55662e-13
0.0222252
0.00135568
-1.13497e-12
0.0220936
0.00140683
-1.94021e-12
0.0219616
0.0014543
-2.7141e-12
0.0218297
0.00149752
-3.45062e-12
0.0216986
0.00153722
-4.13235e-12
0.021568
0.00157273
-4.7252e-12
0.0214388
0.00160466
-5.24448e-12
0.0213105
0.00163245
-5.64091e-12
0.0211844
0.00165637
-5.94647e-12
0.0210592
0.001676
-6.10485e-12
0.0209371
0.00169107
-6.15524e-12
0.0208168
0.00170125
-6.02834e-12
0.0207001
0.0017056
-5.77471e-12
0.020588
0.00170354
-5.29665e-12
0.0204812
0.00169326
-4.58973e-12
0.0203835
0.00167284
-3.63695e-12
0.0202948
0.0016431
-2.77275e-12
0.0202133
0.00160587
-1.34968e-12
0.0201461
0.00155446
8.493e-13
0.020104
0.0014778
3.70084e-12
0.0200713
0.00139286
6.96339e-12
0.0200502
0.00129621
7.52964e-12
0.00116851
8.98191e-12
0.0242998
0.0169598
6.95636e-11
0.0240779
0.0157607
1.13852e-10
0.0239692
0.0145852
1.26796e-10
0.0241945
0.013132
1.53188e-10
0.0247317
0.0114257
1.96563e-10
0.0252297
0.0098369
1.79188e-10
0.0256487
0.00841902
1.2014e-10
0.0261472
0.00700782
4.63416e-11
0.0264886
0.00584554
2.87363e-11
0.0263685
0.00516443
1.84206e-12
0.0261345
0.0045792
-4.62348e-11
0.0259592
0.00398106
-4.12938e-11
0.0257789
0.00339976
-2.70273e-11
0.0256191
0.0028007
-1.27694e-11
0.0254785
0.0021855
-3.7858e-12
0.0253465
0.00156241
5.0295e-13
0.0252115
0.000942867
2.75886e-12
0.0250666
0.000335897
3.16436e-12
0.0249057
-0.000251986
1.94927e-12
0.0247311
-0.000816182
-7.38003e-14
0.0245443
-0.00134899
-1.95326e-12
0.024348
-0.0018493
-3.0329e-12
0.0241447
-0.0023138
-3.4494e-12
0.0239362
-0.00274307
-3.31529e-12
0.0237283
-0.00313333
-3.2022e-12
0.023521
-0.00348752
-2.69688e-12
0.0233229
-0.00380025
-2.02203e-12
0.0231334
-0.00407783
-5.58237e-13
0.0229606
-0.00431243
1.41916e-12
0.0228052
-0.00451313
3.92956e-12
0.0226729
-0.00467033
6.75322e-12
0.0225645
-0.00479292
9.55572e-12
0.0224838
-0.00487297
1.217e-11
0.022441
-0.00491953
1.48174e-11
0.0224448
-0.00492087
1.82343e-11
0.0224825
-0.00487996
1.76081e-11
0.0224617
-0.00479239
1.88452e-11
0.0224929
-0.00471564
1.96355e-11
0.0226624
-0.00464412
2.09883e-11
0.0228855
-0.00446209
2.3141e-11
0.0231103
-0.00421355
2.27025e-11
0.0233431
-0.00395113
2.13548e-11
0.0235739
-0.00367455
1.8199e-11
0.0237871
-0.00339216
1.42515e-11
0.0239724
-0.00311383
1.04021e-11
0.0241277
-0.00284822
7.04321e-12
0.024252
-0.00259895
4.3485e-12
0.024352
-0.00236667
2.53424e-12
0.0244282
-0.00214948
1.09441e-12
0.0244864
-0.00194503
3.37311e-13
0.0245344
-0.00175104
-4.05274e-13
0.0245689
-0.00155671
-5.42552e-13
0.0245933
-0.00136758
-8.47589e-13
0.024607
-0.00118203
-1.39209e-12
0.0246059
-0.00100406
-2.32583e-12
0.024594
-0.00083554
-2.55007e-12
0.0245691
-0.000673792
-2.66424e-12
0.0245341
-0.000519112
-2.7747e-12
0.024488
-0.000370855
-2.71108e-12
0.0244326
-0.000228501
-2.41063e-12
0.024367
-9.14879e-05
-1.8612e-12
0.0242923
4.03364e-05
-1.30809e-12
0.0242095
0.00016691
-5.75102e-13
0.0241185
0.000288401
5.66221e-17
0.0240211
0.000405145
4.59e-13
0.0239166
0.000517061
9.47287e-13
0.0238074
0.00062438
1.43548e-12
0.0236924
0.000726966
1.98308e-12
0.0235741
0.000824862
2.73845e-12
0.0234512
0.000918127
3.07564e-12
0.023326
0.00100652
3.0932e-12
0.0231973
0.0010905
2.90712e-12
0.023067
0.00116941
2.2562e-12
0.0229345
0.00124421
1.72322e-12
0.0228009
0.00131384
1.22752e-12
0.0226661
0.00137962
6.64098e-13
0.0225305
0.00144022
1.65209e-14
0.0223948
0.00149717
-6.66105e-13
0.0222586
0.00154902
-1.37266e-12
0.0221229
0.00159731
-2.08015e-12
0.0219876
0.00164066
-2.74639e-12
0.0218535
0.00168039
-3.38288e-12
0.0217202
0.00171537
-3.92086e-12
0.0215894
0.00174639
-4.40146e-12
0.0214598
0.00177283
-4.74832e-12
0.0213333
0.00179465
-5.00412e-12
0.0212095
0.00181163
-5.10594e-12
0.0210891
0.00182298
-5.07634e-12
0.0209734
0.00182828
-4.86909e-12
0.0208627
0.00182626
-4.42435e-12
0.0207595
0.00181527
-3.90991e-12
0.0206657
0.00179317
-2.51629e-12
0.0205816
0.00176133
-2.52329e-12
0.0205065
0.00172069
-5.96196e-13
0.020446
0.00166412
1.82994e-12
0.0204105
0.00158396
4.04003e-12
0.020375
0.00150258
5.10488e-12
0.0203562
0.00139674
7.7427e-12
0.0203831
0.00125206
9.87172e-12
0.00105238
1.39927e-11
0.0248272
0.0173401
1.20141e-10
0.0245668
0.0159302
1.3376e-10
0.0247728
0.0142555
1.63127e-10
0.0253336
0.0124008
2.12658e-10
0.025865
0.0107521
1.88922e-10
0.0263053
0.00930475
1.21197e-10
0.0268786
0.00781754
4.50454e-11
0.0271989
0.0066697
2.94113e-11
0.0270056
0.00604755
-8.0108e-13
0.026794
0.00541278
-4.82153e-11
0.0266153
0.00479641
-4.34139e-11
0.0264412
0.00418773
-2.77694e-11
0.0262967
0.00356933
-1.22308e-11
0.0261756
0.00293789
-8.22479e-13
0.0260697
0.0023052
4.08926e-12
0.0259602
0.00167826
5.34218e-12
0.0258418
0.00106549
4.79636e-12
0.0257059
0.000472254
3.25394e-12
0.0255539
-9.6897e-05
8.86328e-13
0.0253851
-0.00064346
-1.51167e-12
0.0252043
-0.00115981
-3.39632e-12
0.0250107
-0.00164634
-4.32999e-12
0.0248096
-0.00210082
-4.70904e-12
0.0245993
-0.00252345
-4.73673e-12
0.0243862
-0.00291147
-4.86524e-12
0.0241689
-0.00326623
-4.76297e-12
0.0239544
-0.00358433
-4.34461e-12
0.0237436
-0.00386887
-2.88227e-12
0.0235419
-0.00411541
-1.25764e-12
0.0233535
-0.00432957
6.05676e-13
0.0231807
-0.00450539
3.05874e-12
0.0230328
-0.00465043
5.54809e-12
0.0229111
-0.00475911
7.99703e-12
0.0228198
-0.00483432
1.00815e-11
0.0227624
-0.00487245
1.22298e-11
0.0227435
-0.0048744
1.49954e-11
0.0227694
-0.0048303
1.4255e-11
0.0227841
-0.00474698
1.57782e-11
0.0227721
-0.00465002
1.62687e-11
0.022866
-0.00457606
1.73069e-11
0.0230564
-0.00442535
1.88525e-11
0.023284
-0.00420268
2.11092e-11
0.0235173
-0.00393279
2.00611e-11
0.0237629
-0.00365776
1.73539e-11
0.023995
-0.00336143
1.35693e-11
0.0242015
-0.00306351
9.20679e-12
0.0243757
-0.00277722
5.12329e-12
0.0245152
-0.0025067
1.88213e-12
0.0246222
-0.00225527
-2.06249e-13
0.0247011
-0.00202161
-1.86218e-12
0.0247571
-0.00180454
-2.32405e-12
0.024805
-0.00160102
-3.0951e-12
0.0248372
-0.00139593
-3.18224e-12
0.0248571
-0.00119825
-3.41491e-12
0.0248633
-0.00100563
-3.80697e-12
0.0248571
-0.000823479
-4.47219e-12
0.0248381
-0.000648305
-4.43627e-12
0.0248076
-0.000481297
-4.37169e-12
0.0247648
-0.000321225
-4.21742e-12
0.0247114
-0.00016756
-3.92358e-12
0.0246465
-2.02598e-05
-3.45341e-12
0.0245723
0.000120587
-2.93597e-12
0.024488
0.000255231
-2.2801e-12
0.024395
0.000383874
-1.60658e-12
0.0242941
0.000507069
-9.43625e-13
0.0241855
0.000624801
-2.84835e-13
0.0240715
0.000737509
3.56968e-13
0.0239509
0.000844955
9.58125e-13
0.0238273
0.000947432
1.43547e-12
0.0236981
0.00104477
1.80524e-12
0.0235673
0.00113699
2.21072e-12
0.0234321
0.00122428
2.36867e-12
0.0232962
0.00130624
1.99569e-12
0.0231573
0.00138361
1.76348e-12
0.0230179
0.00145544
1.41754e-12
0.0228772
0.00152309
1.00391e-12
0.0227361
0.00158505
4.80501e-13
0.0225947
0.0016432
-9.0629e-14
0.022453
0.00169558
-7.07805e-13
0.0223124
0.00174436
-1.3468e-12
0.0221712
0.00178742
-1.94851e-12
0.0220329
0.00182669
-2.54125e-12
0.0218946
0.00186052
-3.02499e-12
0.0217603
0.00188992
-3.45718e-12
0.0216276
0.001914
-3.74718e-12
0.0214994
0.00193269
-3.92873e-12
0.0213752
0.0019454
-3.95503e-12
0.0212563
0.00195121
-3.78696e-12
0.0211443
0.00194915
-3.48587e-12
0.0210404
0.0019371
-2.71801e-12
0.0209486
0.00191255
-2.04082e-12
0.0208666
0.0018784
-1.01797e-12
0.0207948
0.00183492
-5.05307e-13
0.0207437
0.0017703
1.78941e-12
0.0207046
0.00169333
5.76896e-12
0.0206711
0.00160642
6.40937e-12
0.0206721
0.00148895
7.24363e-12
0.0207286
0.00132375
8.26891e-12
0.0208339
0.00112013
1.15347e-11
0.000848519
1.87403e-11
0.0253913
0.0175512
1.30478e-10
0.025613
0.0155735
1.84897e-10
0.0261478
0.0135118
2.60863e-10
0.0266755
0.0117273
2.03288e-10
0.0271285
0.0101991
1.2088e-10
0.0277357
0.00863481
8.38095e-11
0.0279904
0.00754369
2.01289e-11
0.0277108
0.00696263
-2.09051e-11
0.0275211
0.00628618
-4.75134e-11
0.0273334
0.00564345
-4.12802e-11
0.0271524
0.00500594
-2.35339e-11
0.0269987
0.00435633
-8.53045e-12
0.0268787
0.00370132
2.05586e-12
0.026775
0.0030487
8.06629e-12
0.0266773
0.00240727
1.01497e-11
0.0265737
0.00178462
7.87018e-12
0.0264585
0.00118373
5.34875e-12
0.0263269
0.000607389
2.42731e-12
0.0261779
5.70126e-05
-8.54411e-13
0.0260123
-0.00047093
-3.30392e-12
0.0258324
-0.000971171
-4.99287e-12
0.0256416
-0.00144408
-5.85394e-12
0.0254406
-0.00188824
-6.21498e-12
0.025232
-0.00230287
-6.52414e-12
0.0250167
-0.00268699
-6.85076e-12
0.0247976
-0.00303947
-7.04527e-12
0.0245775
-0.00336054
-6.73644e-12
0.0243594
-0.00364858
-5.87854e-12
0.0241477
-0.00390539
-4.23732e-12
0.023946
-0.0041288
-2.35636e-12
0.0237589
-0.00432221
-1.45821e-14
0.0235898
-0.00448238
1.76233e-12
0.0234367
-0.00461225
3.72658e-12
0.0233073
-0.00470887
5.83803e-12
0.023203
-0.00477582
7.64101e-12
0.0231262
-0.00480717
9.47723e-12
0.0230902
-0.00480719
1.1635e-11
0.0230926
-0.00476567
1.33603e-11
0.0231063
-0.00468024
1.23013e-11
0.0231021
-0.00459001
1.44284e-11
0.0231284
-0.00447115
1.50362e-11
0.0232743
-0.00436751
1.61546e-11
0.0234962
-0.00417582
1.88008e-11
0.0237273
-0.00390987
1.82878e-11
0.0239665
-0.00361801
1.65228e-11
0.0242077
-0.00331967
1.30277e-11
0.0244298
-0.0030084
8.95908e-12
0.0246185
-0.002701
4.84137e-12
0.0247697
-0.00240777
1.38972e-12
0.0248848
-0.00213494
-1.86256e-12
0.0249674
-0.00188272
-3.45589e-12
0.0250241
-0.0016504
-5.26698e-12
0.02507
-0.00143478
-5.41558e-12
0.0250972
-0.00121779
-5.6529e-12
0.0251109
-0.00101101
-6.01442e-12
0.025109
-0.000811963
-6.66691e-12
0.025097
-0.00062622
-6.62171e-12
0.0250707
-0.000445501
-6.25441e-12
0.0250319
-0.000273214
-5.84518e-12
0.0249811
-0.000107967
-5.38162e-12
0.0249189
5.01486e-05
-4.84305e-12
0.0248461
0.000200835
-4.23839e-12
0.0247624
0.000344322
-3.57625e-12
0.0246695
0.000480969
-2.86499e-12
0.0245671
0.000611262
-2.10061e-12
0.0244581
0.000735386
-1.33117e-12
0.0243415
0.00085383
-5.4269e-13
0.0242202
0.000966411
1.80571e-13
0.0240928
0.00107375
8.23372e-13
0.0239615
0.00117517
1.32165e-12
0.0238257
0.00127159
1.6759e-12
0.0236865
0.00136191
2.00506e-12
0.0235451
0.00144739
2.09629e-12
0.0234005
0.00152676
1.92033e-12
0.0232559
0.00160131
1.72444e-12
0.0231087
0.0016701
1.46529e-12
0.0229628
0.00173386
1.05504e-12
0.0228154
0.00179242
6.01514e-13
0.0226693
0.00184564
5.82846e-14
0.0225234
0.00189404
-5.06436e-13
0.0223782
0.00193698
-1.06187e-12
0.0222353
0.00197488
-1.59668e-12
0.0220936
0.00200738
-2.04086e-12
0.0219555
0.00203413
-2.39611e-12
0.0218212
0.00205503
-2.62384e-12
0.0216915
0.00206911
-2.68898e-12
0.0215684
0.00207569
-2.5908e-12
0.0214531
0.00207351
-2.2446e-12
0.0213485
0.00205993
-1.70605e-12
0.0212566
0.00203302
-4.56869e-13
0.021178
0.00199505
-5.51441e-13
0.0211084
0.00194846
1.62927e-12
0.0210631
0.00187848
1.93383e-12
0.021019
0.00180463
6.99643e-12
0.020992
0.00170914
7.73693e-12
0.021008
0.00157643
9.22017e-12
0.0210852
0.00139005
1.27244e-11
0.0212258
0.00115062
1.8087e-11
0.0214217
0.000883542
2.20494e-11
0.000583145
2.74377e-11
0.0268076
0.0172009
2.06677e-10
0.0271954
0.014987
2.33387e-10
0.0276343
0.0129124
2.11148e-10
0.0281333
0.01114
1.09012e-10
0.0287861
0.00947771
8.50301e-11
0.0289042
0.00848268
3.68783e-11
0.0285829
0.00789676
-3.36573e-11
0.0283916
0.00719709
-3.88384e-11
0.0281788
0.00653408
-3.36774e-11
0.0279782
0.00586182
-1.87667e-11
0.0278123
0.00517931
-3.30435e-12
0.0276755
0.00449186
8.9823e-12
0.027563
0.00381027
1.29695e-11
0.0274607
0.0031471
1.26909e-11
0.0273589
0.00250659
1.53781e-11
0.0272497
0.00189343
9.63248e-12
0.027128
0.00130662
5.37504e-12
0.0269916
0.000746668
1.96562e-12
0.0268406
0.000212637
-1.11029e-12
0.0266757
-0.000297797
-3.78894e-12
0.0264991
-0.000783824
-5.50735e-12
0.0263129
-0.00124386
-6.60777e-12
0.0261156
-0.00167765
-7.38544e-12
0.0259106
-0.00208423
-8.26414e-12
0.0256966
-0.00246324
-8.93501e-12
0.0254784
-0.00281265
-9.37759e-12
0.025256
-0.00313389
-9.00272e-12
0.0250347
-0.0034236
-8.10335e-12
0.0248156
-0.00368578
-6.41532e-12
0.024604
-0.00391558
-4.62501e-12
0.0244005
-0.00411899
-2.58829e-12
0.0242085
-0.00428969
-7.5787e-13
0.0240306
-0.00443521
9.05838e-13
0.0238698
-0.00454801
2.82541e-12
0.0237259
-0.00463646
3.13749e-12
0.0236058
-0.00469134
4.82966e-12
0.0235105
-0.00472061
6.58629e-12
0.0234486
-0.0047148
8.17211e-12
0.0234308
-0.00467608
1.00729e-11
0.0234228
-0.00459507
9.90559e-12
0.0234428
-0.00450388
1.05282e-11
0.0234375
-0.00437889
1.40724e-11
0.0235088
-0.00426364
1.46141e-11
0.0236788
-0.00409637
1.55845e-11
0.0239067
-0.00386409
1.72081e-11
0.0241417
-0.00357207
1.64409e-11
0.0243825
-0.00326521
1.48005e-11
0.0246131
-0.00294309
1.11498e-11
0.0248156
-0.00261755
6.44968e-12
0.0249822
-0.00230239
1.85994e-12
0.0251066
-0.00200518
-1.95306e-12
0.0251937
-0.00173134
-4.74454e-12
0.0252492
-0.00148088
-7.16516e-12
0.0252946
-0.00125261
-7.32294e-12
0.0253186
-0.00102403
-7.57425e-12
0.0253262
-0.000806894
-8.12012e-12
0.0253155
-0.000601213
-9.29438e-12
0.0252956
-0.000411384
-8.4737e-12
0.025262
-0.000225996
-7.66089e-12
0.0252154
-4.95692e-05
-6.74336e-12
0.0251579
0.000118651
-5.94688e-12
0.0250888
0.00027913
-5.22374e-12
0.0250095
0.000431952
-4.5083e-12
0.0249192
0.000577384
-3.75336e-12
0.0248195
0.000715454
-2.9516e-12
0.0247115
0.000846687
-2.11655e-12
0.0245957
0.000971107
-1.2468e-12
0.0244741
0.00108935
-4.21713e-13
0.0243457
0.00120137
3.56319e-13
0.024213
0.00130741
9.81381e-13
0.0240744
0.00140756
1.49646e-12
0.0239329
0.00150154
1.95929e-12
0.0237874
0.00158991
2.47384e-12
0.0236397
0.00167194
2.62554e-12
0.0234907
0.00174854
2.46532e-12
0.0233399
0.00181894
2.03309e-12
0.0231898
0.0018839
1.72325e-12
0.0230396
0.00194295
1.36704e-12
0.02289
0.00199655
9.24062e-13
0.0227428
0.00204416
4.2675e-13
0.0225962
0.00208652
-5.94284e-14
0.0224533
0.00212223
-5.30914e-13
0.022313
0.00215267
-9.11619e-13
0.0221767
0.00217538
-1.1767e-12
0.0220462
0.00219184
-1.30156e-12
0.021921
0.00219885
-1.20739e-12
0.0218054
0.00219707
-9.20692e-13
0.0217005
0.00218154
-3.38712e-13
0.0216103
0.00215193
8.10436e-13
0.0215327
0.00211129
1.02205e-12
0.0214695
0.00205744
2.16749e-12
0.0214197
0.00198931
5.60124e-12
0.0213766
0.00191273
6.10602e-12
0.021366
0.00180436
7.51648e-12
0.0214069
0.00165147
1.02749e-11
0.0215196
0.00143782
1.51623e-11
0.0216781
0.00119314
2.21201e-11
0.021874
0.000908093
2.67976e-11
0.022115
0.000591781
3.03332e-11
0.000277659
2.98546e-11
0.0280887
0.0164604
2.48874e-10
0.0287466
0.0142022
1.95916e-10
0.0294224
0.0121671
1.12572e-10
0.0300939
0.0103932
9.00281e-11
0.0299996
0.00952533
4.30084e-11
0.0296294
0.00887601
-3.03684e-11
0.0293925
0.00816998
-4.49137e-11
0.0291294
0.00748466
-2.9669e-11
0.0288984
0.006779
-1.21173e-11
0.0287065
0.00605503
1.84642e-12
0.028557
0.00532512
9.91053e-12
0.0284342
0.00460781
1.51794e-11
0.0283257
0.00391213
1.59034e-11
0.0282212
0.00324701
1.28796e-11
0.0281124
0.00261264
1.49909e-11
0.0279952
0.00201068
8.34102e-12
0.0278653
0.00143782
4.90471e-12
0.0277227
0.000892898
1.81367e-12
0.0275675
0.000373598
-8.53508e-13
0.0274006
-0.000121128
-3.20128e-12
0.0272233
-0.000594865
-4.93705e-12
0.0270368
-0.00104338
-6.38812e-12
0.0268393
-0.00146752
-7.72064e-12
0.0266339
-0.00186605
-9.09644e-12
0.0264186
-0.00223854
-1.01141e-11
0.0261984
-0.00258381
-1.06448e-11
0.025972
-0.00290205
-1.03279e-11
0.0257451
-0.00319192
-9.37344e-12
0.0255181
-0.00345515
-7.87684e-12
0.0252955
-0.00368942
-6.20768e-12
0.0250778
-0.00389796
-4.60002e-12
0.0248697
-0.00407776
-3.01932e-12
0.0246701
-0.00423232
-1.73041e-12
0.0244827
-0.00435959
-5.07383e-13
0.0243094
-0.00446141
5.24543e-13
0.024151
-0.00453687
1.66457e-12
0.0240138
-0.00458567
3.27157e-12
0.0238981
-0.00460726
3.64833e-12
0.0238157
-0.00459989
5.15716e-12
0.0237711
-0.00456075
7.55514e-12
0.0237432
-0.00448552
7.26205e-12
0.0237393
-0.00438393
8.58678e-12
0.0237375
-0.00427714
1.31346e-11
0.0237595
-0.00413311
1.36655e-11
0.0238625
-0.0039837
1.47815e-11
0.0240506
-0.00377684
1.63203e-11
0.024266
-0.00350242
1.86537e-11
0.0244883
-0.00318565
1.70689e-11
0.0247179
-0.00286343
1.35561e-11
0.0249268
-0.00252298
8.9844e-12
0.0251026
-0.00218586
3.91003e-12
0.0252406
-0.00186575
-8.48763e-13
0.025339
-0.00156948
-4.67257e-12
0.0253997
-0.00129898
-7.32899e-12
0.0254477
-0.00105536
-9.05965e-12
0.0254747
-0.000816879
-9.22937e-12
0.0254777
-0.000587827
-9.46298e-12
0.0254573
-0.00037478
-9.77266e-12
0.0254268
-0.000180738
-9.14528e-12
0.0253824
7.27735e-06
-8.0018e-12
0.0253276
0.000184705
-7.04548e-12
0.0252616
0.000354203
-6.21146e-12
0.0251857
0.000515932
-5.39656e-12
0.0250988
0.000670159
-4.57047e-12
0.0250028
0.000816486
-3.73244e-12
0.0248982
0.000955225
-2.84306e-12
0.0247857
0.00108631
-1.8986e-12
0.0246669
0.00121052
-9.44162e-13
0.024541
0.00132766
-1.79688e-14
0.0244105
0.00143838
7.82046e-13
0.0242743
0.00154237
1.45907e-12
0.0241343
0.00164007
2.33647e-12
0.0239906
0.0017312
2.97489e-12
0.0238438
0.00181614
3.21479e-12
0.0236951
0.00189452
3.29618e-12
0.0235447
0.00196691
3.27422e-12
0.0233933
0.00203267
3.10335e-12
0.0232428
0.0020925
2.71075e-12
0.023092
0.00214578
2.09667e-12
0.022944
0.0021928
1.46388e-12
0.0227974
0.00223326
1.07286e-12
0.0226552
0.00226668
6.87553e-13
0.0225169
0.00229295
4.191e-13
0.022385
0.00231073
2.62093e-13
0.0222605
0.00231952
3.3578e-13
0.0221455
0.00231711
6.35613e-13
0.0220446
0.00230063
1.23288e-12
0.0219605
0.00226616
2.27813e-12
0.0218866
0.00222542
2.90454e-12
0.0218339
0.00216316
3.39852e-12
0.0217811
0.00210192
6.94692e-12
0.0217459
0.00201456
7.59941e-12
0.0217558
0.00189025
9.1428e-12
0.0218327
0.00170879
1.24107e-11
0.0219722
0.00148268
1.83441e-11
0.0221539
0.00121931
2.24244e-11
0.0223808
0.000919763
2.72618e-11
0.0226324
0.000605568
2.97531e-11
0.0228866
0.000286375
3.0315e-11
-5.89353e-06
2.8389e-11
0.0294128
0.0153383
2.13475e-10
0.0304427
0.0131039
1.10588e-10
0.0312592
0.0112945
8.71671e-11
0.0310601
0.0105684
4.02149e-11
0.0307722
0.00984778
-3.35511e-11
0.0305457
0.00914819
-3.40678e-11
0.0302876
0.00846418
-2.22846e-11
0.0300425
0.00774312
-4.20324e-12
0.0298273
0.00698852
9.3872e-12
0.0296406
0.00622436
1.84724e-11
0.029474
0.00546732
2.24362e-11
0.0293255
0.00473407
2.12955e-11
0.0291893
0.00403228
1.62466e-11
0.0290598
0.00336767
1.25121e-11
0.0289277
0.00274028
1.33141e-11
0.0287915
0.00214701
6.80873e-12
0.0286481
0.00158521
3.84174e-12
0.0284986
0.00105132
1.37238e-12
0.028341
0.000543854
-6.99152e-13
0.0281739
6.18436e-05
-2.52551e-12
0.0279971
-0.00040126
-4.18172e-12
0.0278091
-0.000840084
-5.87549e-12
0.0276105
-0.00125463
-7.6773e-12
0.0274012
-0.00164559
-9.35058e-12
0.0271834
-0.00201067
-1.05904e-11
0.0269588
-0.00235121
-1.11239e-11
0.0267292
-0.00266529
-1.08643e-11
0.0264982
-0.00295391
-9.97825e-12
0.0262665
-0.00321644
-8.81465e-12
0.0260362
-0.00345276
-7.3742e-12
0.0258107
-0.00366423
-6.38782e-12
0.0255872
-0.00384949
-5.18905e-12
0.025372
-0.00401112
-4.29151e-12
0.0251611
-0.00414679
-3.29336e-12
0.0249596
-0.00425912
-2.4993e-12
0.0247681
-0.0043462
-1.64657e-12
0.0245902
-0.00441003
-6.91568e-13
0.0244294
-0.00444921
3.80103e-13
0.0242896
-0.00446317
1.52595e-12
0.0241746
-0.00445121
2.77134e-12
0.024092
-0.00440909
4.41764e-12
0.0240372
-0.00433567
5.36942e-12
0.0239832
-0.00423117
7.03011e-12
0.023965
-0.00412381
8.34527e-12
0.0239516
-0.00398366
1.32214e-11
0.0239791
-0.0038184
1.38972e-11
0.0240959
-0.00363346
1.53421e-11
0.0242862
-0.00339165
1.79502e-11
0.0244922
-0.00308425
1.76612e-11
0.0247046
-0.00274975
1.61165e-11
0.0249184
-0.00240801
1.22241e-11
0.0251077
-0.00205779
7.17363e-12
0.0252608
-0.0017169
2.55875e-12
0.0253696
-0.00139857
-2.6727e-12
0.0254339
-0.00110763
-6.17747e-12
0.0254781
-0.0008461
-8.89544e-12
0.0255053
-0.00059966
-8.90091e-12
0.0255042
-0.000358573
-9.21592e-12
0.0254758
-0.000137555
-9.43117e-12
0.0254374
6.09873e-05
-9.88911e-12
0.0253882
0.000247339
-8.783e-12
0.0253283
0.00042581
-7.55892e-12
0.0252586
0.000595143
-6.41796e-12
0.0251797
0.000756831
-5.39658e-12
0.0250923
0.000910628
-4.45683e-12
0.0249958
0.00105656
-3.48322e-12
0.0248919
0.00119466
-2.43962e-12
0.0247796
0.00132506
-1.32165e-12
0.0246611
0.00144771
-2.23792e-13
0.0245359
0.00156308
7.89549e-13
0.0244063
0.00167097
1.63876e-12
0.024272
0.00177213
2.91111e-12
0.0241351
0.001866
2.65612e-12
0.0239949
0.00195349
2.60868e-12
0.0238533
0.0020337
2.71796e-12
0.0237099
0.00210772
2.77377e-12
0.0235656
0.00217437
2.73944e-12
0.0234214
0.00223472
2.61469e-12
0.0232776
0.00228754
2.43786e-12
0.0231359
0.00233355
2.21319e-12
0.0229971
0.00237148
2.01157e-12
0.0228627
0.00240159
1.87394e-12
0.022734
0.00242213
1.98427e-12
0.0226138
0.00243262
2.07082e-12
0.0225033
0.00243046
2.43334e-12
0.0224091
0.00241226
3.25834e-12
0.0223331
0.00237481
4.20577e-12
0.022269
0.00232985
4.35033e-12
0.0222178
0.00227037
6.43952e-12
0.0221673
0.00220901
6.94512e-12
0.0221537
0.00210909
8.08077e-12
0.0221961
0.00195864
1.04445e-11
0.022312
0.0017538
1.43892e-11
0.0224728
0.00151273
2.2121e-11
0.0226822
0.00123255
2.55434e-11
0.0229323
0.000923648
2.75477e-11
0.023199
0.000605981
2.87416e-11
0.023457
0.000302697
2.75143e-11
0.0236802
2.19377e-05
2.60829e-11
-0.000209693
1.89836e-11
0.0305883
0.0137203
1.29012e-10
0.0316522
0.0119934
9.6672e-11
0.0316202
0.0113297
2.59463e-11
0.0315445
0.0106681
-2.30665e-11
0.0314025
0.0100281
-3.17033e-11
0.0312095
0.00937273
-1.06176e-11
0.0310245
0.00866205
8.9415e-12
0.030861
0.00789953
2.39043e-11
0.030716
0.00711651
3.02905e-11
0.0305837
0.00633575
3.11035e-11
0.0304589
0.0055775
2.83814e-11
0.0303324
0.00485108
2.38835e-11
0.0301971
0.00416189
1.5802e-11
0.030053
0.00350894
1.06339e-11
0.0299024
0.00289166
1.01198e-11
0.0297459
0.00230706
4.57603e-12
0.0295868
0.00175289
1.89277e-12
0.0294213
0.00122674
-1.24374e-13
0.0292517
0.000726799
-1.82699e-12
0.0290717
0.000252761
-3.31774e-12
0.02888
-0.00019887
-4.79336e-12
0.0286782
-0.000629716
-6.53237e-12
0.0284673
-0.00103585
-8.28459e-12
0.0282488
-0.00141821
-9.86146e-12
0.0280229
-0.00177673
-1.08319e-11
0.0277933
-0.00211147
-1.12536e-11
0.0275575
-0.00242159
-1.09985e-11
0.0273201
-0.00270701
-1.0458e-11
0.0270773
-0.00296742
-9.38127e-12
0.0268343
-0.00320202
-8.52273e-12
0.0265881
-0.00341283
-7.24782e-12
0.026342
-0.00359791
-6.4676e-12
0.0260965
-0.00376083
-5.72425e-12
0.0258531
-0.003899
-5.13362e-12
0.0256144
-0.00401633
-4.60511e-12
0.0253817
-0.00410981
-4.03388e-12
0.0251587
-0.0041833
-3.56764e-12
0.0249447
-0.00423281
-2.80996e-12
0.0247454
-0.00426207
-1.87833e-12
0.0245616
-0.00426664
-6.37464e-13
0.0244005
-0.00424911
8.21134e-13
0.0242672
-0.00420466
2.73676e-12
0.0241656
-0.00413185
2.83255e-12
0.0240691
-0.004029
4.21603e-12
0.024007
-0.00392442
7.3901e-12
0.0239802
-0.00379818
1.23675e-11
0.0239662
-0.00362636
1.29258e-11
0.0240022
-0.00343496
1.43342e-11
0.0241293
-0.0032195
1.65922e-11
0.0243102
-0.00294525
1.99163e-11
0.0245071
-0.00261656
1.8485e-11
0.0247106
-0.00227162
1.63811e-11
0.0249039
-0.00191519
1.19428e-11
0.0250673
-0.00156113
6.39577e-12
0.0251886
-0.00122375
9.76987e-13
0.0252644
-0.000912738
-3.4842e-12
0.0253097
-0.000631258
-7.35914e-12
0.0253428
-0.000377828
-7.66852e-12
0.0253477
-0.000128592
-8.22028e-12
0.0253222
0.000100835
-8.93556e-12
0.0252795
0.000305328
-9.92099e-12
0.0252294
0.000489857
-8.87387e-12
0.0251673
0.000668816
-7.52535e-12
0.0250968
0.0008366
-6.25992e-12
0.0250186
0.000995995
-5.12325e-12
0.0249328
0.00114798
-3.98693e-12
0.0248387
0.00129252
-2.77791e-12
0.0247367
0.00142901
-1.49583e-12
0.0246275
0.00155734
-2.13972e-13
0.0245121
0.00167743
9.97511e-13
0.0243918
0.00178961
2.56322e-12
0.0242678
0.00189405
2.57439e-12
0.0241406
0.00199096
2.83644e-12
0.0240117
0.00208047
3.26927e-12
0.0238813
0.00216266
3.60238e-12
0.0237507
0.00223749
3.82844e-12
0.0236201
0.00230497
3.94835e-12
0.0234906
0.00236476
4.08322e-12
0.0233623
0.00241669
4.14334e-12
0.0232367
0.00246011
4.0332e-12
0.0231153
0.0024944
3.94456e-12
0.0229994
0.00251857
3.92936e-12
0.0228922
0.00253083
4.03957e-12
0.0227959
0.00252936
4.5243e-12
0.0227172
0.00250847
5.28214e-12
0.0226562
0.00247059
6.06126e-12
0.0226091
0.00241976
5.94961e-12
0.0225567
0.00237434
8.77801e-12
0.0225209
0.00229713
9.49279e-12
0.022541
0.00217784
1.09289e-11
0.0226304
0.00200242
1.38186e-11
0.0227783
0.00178277
1.90992e-11
0.022971
0.00152756
2.25133e-11
0.0232099
0.00123154
2.62825e-11
0.0234797
0.000916827
2.80742e-11
0.0237535
0.000603731
2.7577e-11
0.0240089
0.000311028
2.53386e-11
0.0242232
5.59905e-05
2.14755e-11
0.0243816
-0.000160549
1.73692e-11
-0.000331772
1.27297e-11
0.0305228
0.0114566
7.7091e-11
0.0310872
0.0114437
3.35216e-11
0.0311521
0.0113301
-4.02273e-11
0.0313043
0.0105715
-3.83572e-11
0.03142
0.00994326
-1.75731e-11
0.0314417
0.0093538
1.75231e-11
0.0314436
0.00863989
4.24905e-11
0.0314246
0.00788643
4.85002e-11
0.0313843
0.0071235
4.57199e-11
0.0313215
0.0063709
3.88432e-11
0.0312422
0.0056402
3.06289e-11
0.0311458
0.00494054
2.32469e-11
0.0310323
0.00427425
1.45679e-11
0.0309002
0.00364111
8.80229e-12
0.0307546
0.00303881
5.98645e-12
0.0305996
0.00246675
1.88005e-12
0.0304372
0.00192302
-9.46627e-13
0.0302686
0.00140675
-3.02224e-12
0.0300931
0.000916271
-4.55245e-12
0.0299095
0.000451394
-5.81454e-12
0.0297123
1.37004e-05
-6.51173e-12
0.0295091
-0.000410249
-8.21799e-12
0.0292962
-0.000805782
-9.63991e-12
0.0290742
-0.00117852
-1.06091e-11
0.0288427
-0.00152798
-1.12822e-11
0.0286021
-0.00185401
-1.15832e-11
0.0283512
-0.00215593
-1.14565e-11
0.0280932
-0.00243394
-1.11021e-11
0.0278267
-0.00268811
-1.06007e-11
0.0275568
-0.00291848
-9.98346e-12
0.0272821
-0.003126
-9.31073e-12
0.0270059
-0.00330992
-8.61834e-12
0.0267286
-0.00347216
-8.01852e-12
0.0264518
-0.00361213
-7.44279e-12
0.0261772
-0.0037313
-6.99909e-12
0.0259064
-0.00382988
-6.50239e-12
0.0256407
-0.00390838
-6.02264e-12
0.0253827
-0.00396697
-5.41749e-12
0.0251343
-0.00400611
-4.71089e-12
0.0248989
-0.00402499
-3.73616e-12
0.0246789
-0.00402385
-2.48767e-12
0.0244803
-0.00400125
-8.90282e-13
0.0243082
-0.00395695
1.37968e-12
0.024167
-0.00388528
2.81371e-12
0.0240309
-0.00378468
3.25738e-12
0.0239139
-0.00367982
6.34571e-12
0.0238445
-0.00355563
1.00264e-11
0.0238072
-0.00340194
1.41041e-11
0.0237892
-0.00320504
1.47169e-11
0.0238441
-0.00300454
1.61063e-11
0.023982
-0.00276172
1.8309e-11
0.0241547
-0.00245787
2.21423e-11
0.024341
-0.00211369
2.03284e-11
0.0245355
-0.0017632
1.64519e-11
0.0247063
-0.00140065
1.12997e-11
0.024842
-0.00104735
5.51836e-12
0.0249373
-0.00071977
-2.4682e-14
0.0249905
-0.000420947
-3.75706e-12
0.0250325
-0.000156861
-6.83654e-12
0.0250528
9.38386e-05
-7.09775e-12
0.0250402
0.000331742
-7.6329e-12
0.0249991
0.000545249
-8.47986e-12
0.02495
0.000730287
-7.79921e-12
0.0248931
0.00090553
-6.80958e-12
0.0248267
0.0010717
-5.52452e-12
0.0247537
0.00122868
-4.17365e-12
0.0246734
0.00137808
-2.78141e-12
0.0245869
0.00151959
-1.38004e-12
0.0244942
0.00165283
3.56848e-14
0.0243956
0.00177769
1.40849e-12
0.0242919
0.00189405
2.58024e-12
0.0241836
0.00200206
3.00032e-12
0.0240721
0.00210175
3.40337e-12
0.0239579
0.00219341
3.96962e-12
0.0238423
0.00227695
4.57264e-12
0.023726
0.00235251
5.21816e-12
0.0236102
0.00241968
5.44448e-12
0.0234955
0.00247834
5.52622e-12
0.0233837
0.00252756
5.59283e-12
0.0232757
0.00256696
5.68733e-12
0.0231739
0.00259473
5.83056e-12
0.0230804
0.00260985
6.14763e-12
0.0229996
0.00260834
6.5302e-12
0.0229364
0.00258677
7.84368e-12
0.0228934
0.00254623
7.43993e-12
0.0228531
0.00250135
9.21922e-12
0.0228064
0.00245739
9.57273e-12
0.0228061
0.00236486
1.04828e-11
0.0228686
0.00221942
1.28079e-11
0.0230018
0.00202189
1.6698e-11
0.0231806
0.00179159
2.14781e-11
0.0234061
0.00151708
2.55146e-11
0.0236773
0.00121293
2.79774e-11
0.0239631
0.00090028
2.82144e-11
0.0242412
0.000596545
2.65222e-11
0.0244861
0.000322439
2.29086e-11
0.0246846
8.6596e-05
1.84876e-11
0.0248239
-0.000103189
1.36084e-11
0.0249114
-0.000259122
1.04208e-11
-0.000382798
5.60862e-12
0.0272132
0.00942494
2.26364e-10
0.0282705
0.0104295
-6.33429e-11
0.0293319
0.0103295
-6.22544e-11
0.0299554
0.0100009
-3.44861e-11
0.030401
0.00952729
8.48261e-12
0.0307805
0.00897469
4.87936e-11
0.0310719
0.00833166
6.17835e-11
0.031288
0.00765017
5.92758e-11
0.0314479
0.00695705
4.86117e-11
0.0315462
0.00627069
3.83558e-11
0.031587
0.00560347
2.72217e-11
0.031578
0.0049594
1.89622e-11
0.0315289
0.00433595
1.11902e-11
0.0314467
0.00373658
8.10842e-12
0.0313369
0.0031602
1.90003e-12
0.0312085
0.00260834
-1.83676e-12
0.0310674
0.00208128
-4.6736e-12
0.0309164
0.00157956
-6.72271e-12
0.0307544
0.00110303
-8.31986e-12
0.030581
0.000651486
-9.56055e-12
0.0303974
0.000225347
-1.10081e-11
0.0301954
-0.000180323
-1.15238e-11
0.0299809
-0.000563613
-1.21718e-11
0.0297522
-0.000923564
-1.2765e-11
0.0295096
-0.00126094
-1.30792e-11
0.0292536
-0.00157592
-1.31435e-11
0.028985
-0.00186782
-1.3002e-11
0.0287066
-0.00213713
-1.27451e-11
0.0284182
-0.00238331
-1.23607e-11
0.0281232
-0.0026073
-1.1929e-11
0.0278221
-0.00280903
-1.14478e-11
0.0275166
-0.00298961
-1.08571e-11
0.02721
-0.00314881
-1.03406e-11
0.026901
-0.00328861
-9.73004e-12
0.026594
-0.00340751
-9.28202e-12
0.0262882
-0.00350902
-8.79011e-12
0.0259851
-0.00359014
-8.35605e-12
0.0256866
-0.00365487
-7.86375e-12
0.0253941
-0.00370038
-7.28235e-12
0.0251094
-0.00372929
-6.49011e-12
0.024838
-0.00373981
-5.51166e-12
0.0245807
-0.00373328
-4.18083e-12
0.024344
-0.00370723
-2.49088e-12
0.0241339
-0.00366337
-6.13753e-13
0.0239564
-0.00359474
1.91902e-12
0.0237931
-0.0035034
2.25822e-12
0.0236524
-0.00340241
4.50887e-12
0.0235481
-0.00328951
8.77912e-12
0.0234957
-0.00314686
1.15474e-11
0.0234473
-0.00295809
1.62518e-11
0.0234341
-0.00275195
1.70218e-11
0.0235042
-0.00253438
1.84311e-11
0.0236477
-0.00226816
2.16877e-11
0.0238118
-0.0019412
2.16074e-11
0.0239868
-0.00159066
2.0371e-11
0.0241608
-0.00123429
1.60557e-11
0.0243115
-0.000876297
1.0289e-11
0.0244241
-0.000535629
4.56485e-12
0.0244981
-0.000223244
-2.96505e-13
0.0245453
5.64714e-05
-3.74647e-12
0.0245817
0.000304385
-4.24805e-12
0.0245887
0.000548785
-5.05384e-12
0.0245617
0.000770015
-6.46389e-12
0.0245193
0.000961358
-6.5744e-12
0.0244693
0.00113268
-5.27411e-12
0.0244096
0.00129749
-3.82428e-12
0.024344
0.00145058
-2.40334e-12
0.0242738
0.0015951
-1.00799e-12
0.0241986
0.00173169
4.49464e-13
0.0241182
0.00186032
2.3681e-12
0.0240327
0.00198041
2.66893e-12
0.0239431
0.00209163
3.67007e-12
0.0238504
0.00219397
4.53754e-12
0.0237557
0.00228736
5.71373e-12
0.0236601
0.00237192
6.30819e-12
0.0235647
0.00244734
6.61175e-12
0.0234707
0.00251335
6.85925e-12
0.0233793
0.00256931
7.10077e-12
0.0232923
0.00261412
7.37204e-12
0.0232117
0.00264668
7.72442e-12
0.0231393
0.00266513
8.21109e-12
0.0230818
0.00266493
8.81048e-12
0.0230415
0.0026421
1.03222e-11
0.02302
0.00260264
9.68575e-12
0.0229802
0.00257663
1.18582e-11
0.0229604
0.00251003
1.23847e-11
0.0230081
0.0023963
1.33448e-11
0.0231259
0.00222788
1.58052e-11
0.0232959
0.00202194
2.03372e-11
0.0235078
0.00177422
2.35888e-11
0.0237716
0.00148753
2.69521e-11
0.0240635
0.00118193
2.84807e-11
0.0243597
0.000874249
2.78268e-11
0.0246349
0.000586846
2.50182e-11
0.0248674
0.000333643
2.06878e-11
0.0250463
0.000121552
1.57618e-11
0.0251676
-4.83722e-05
1.11178e-11
0.0252388
-0.000180656
7.13597e-12
0.0252729
-0.000296555
4.90928e-12
-0.000387397
3.99362e-12
0.0228901
0.00730993
2.56163e-10
0.0248693
0.00851136
-9.84747e-11
0.0264437
0.00881026
-7.64729e-11
0.0277247
0.00873478
-2.0817e-11
0.0286777
0.0085481
4.68008e-11
0.0294614
0.0081573
6.99795e-11
0.0300731
0.00768754
6.96322e-11
0.0305214
0.00716396
5.78807e-11
0.0308304
0.00660559
4.31103e-11
0.0310387
0.00603142
2.90188e-11
0.0311829
0.00545071
1.94556e-11
0.0312734
0.00487534
1.09578e-11
0.0313151
0.00430789
6.02899e-12
0.0313195
0.00375344
-3.28308e-13
0.0312905
0.00321424
-4.30375e-12
0.0312362
0.00269379
-7.41131e-12
0.031157
0.00219473
-9.70721e-12
0.031058
0.00171755
-1.14074e-11
0.0309378
0.00126353
-1.24991e-11
0.0307964
0.000832161
-1.32782e-11
0.0306373
0.000424154
-1.40476e-11
0.0304556
3.93377e-05
-1.4402e-11
0.030256
-0.000325198
-1.49073e-11
0.0300367
-0.000667441
-1.51295e-11
0.0297997
-0.000988076
-1.51769e-11
0.0295452
-0.00128757
-1.50797e-11
0.0292754
-0.00156563
-1.48968e-11
0.028992
-0.00182224
-1.46841e-11
0.028697
-0.00205812
-1.43714e-11
0.0283918
-0.00227249
-1.40146e-11
0.0280793
-0.00246748
-1.35719e-11
0.0277593
-0.00264149
-1.30541e-11
0.0274365
-0.00279751
-1.25404e-11
0.0271084
-0.00293371
-1.19889e-11
0.02678
-0.00305283
-1.14982e-11
0.0264494
-0.00315371
-1.10509e-11
0.0261188
-0.00323813
-1.05827e-11
0.0257915
-0.00330568
-1.01663e-11
0.0254669
-0.00335772
-9.57075e-12
0.0251506
-0.00339345
-8.92448e-12
0.024844
-0.00341472
-8.0493e-12
0.02455
-0.00341977
-6.93767e-12
0.024273
-0.00341016
-5.59603e-12
0.0240135
-0.00338381
-3.89308e-12
0.0237793
-0.00334103
-2.03363e-12
0.0235722
-0.00327807
5.31825e-13
0.0233812
-0.00319403
1.43602e-12
0.0232083
-0.00310006
2.89406e-12
0.0230691
-0.00299669
7.24263e-12
0.0229848
-0.00286578
1.06469e-11
0.0229299
-0.00269857
1.55315e-11
0.022888
-0.00249642
1.62375e-11
0.0229058
-0.00229176
1.78167e-11
0.0230073
-0.00205533
2.03191e-11
0.0231608
-0.00176305
2.448e-11
0.0233266
-0.00142196
2.27858e-11
0.0235023
-0.00107114
2.0048e-11
0.0236644
-0.000713314
1.53961e-11
0.0237969
-0.000363938
9.72421e-12
0.0238925
-4.01731e-05
4.99896e-12
0.0239483
0.000251166
-3.67029e-13
0.0239999
0.000504274
-2.15937e-12
0.0240291
0.000747589
-2.39453e-12
0.0240223
0.000975789
-2.78937e-12
0.0239883
0.00117556
-3.5236e-12
0.0239495
0.00134476
-2.75468e-12
0.0239034
0.00150394
-1.86333e-12
0.0238518
0.00165241
-5.65314e-13
0.0237958
0.0017912
9.56099e-13
0.0237356
0.00192217
2.05688e-12
0.0236711
0.00204472
3.50561e-12
0.0236029
0.00215843
4.97136e-12
0.0235314
0.00226305
6.30048e-12
0.023458
0.00235791
7.04824e-12
0.0233841
0.00244292
7.60373e-12
0.0233107
0.00251723
8.06085e-12
0.0232408
0.00258031
8.46982e-12
0.0231749
0.00263113
8.91693e-12
0.0231176
0.00266754
9.4636e-12
0.0230697
0.00268918
1.01323e-11
0.0230387
0.00268948
1.09957e-11
0.0230316
0.00266327
1.23946e-11
0.0230208
0.00264063
1.29462e-11
0.023002
0.00261105
1.34438e-11
0.0230373
0.00252847
1.466e-11
0.0231416
0.00238786
1.68223e-11
0.0232984
0.00221364
2.10254e-11
0.0234981
0.00199624
2.437e-11
0.0237489
0.00173329
2.71232e-11
0.0240397
0.0014421
2.86674e-11
0.024347
0.00113825
2.86612e-11
0.0246468
0.00084415
2.67688e-11
0.0249124
0.000576234
2.30338e-11
0.0251292
0.000346603
1.82801e-11
0.0252888
0.000158223
1.34339e-11
0.0253965
6.98609e-06
9.05591e-12
0.0254519
-0.000106604
4.97805e-12
0.025477
-0.000203939
4.35518e-12
0.0254753
-0.000294566
3.52605e-12
-0.000374825
2.69783e-12
0.0192157
0.00563312
2.66294e-10
0.0213386
0.00643403
-9.9424e-11
0.023259
0.006895
-6.34714e-11
0.024793
0.0071458
1.90718e-11
0.0260958
0.00716596
6.70433e-11
0.0271871
0.00700887
7.62882e-11
0.0281029
0.00674755
6.31695e-11
0.0288545
0.0064122
4.38338e-11
0.029455
0.00602402
2.65974e-11
0.0299198
0.00559437
1.35675e-11
0.0302632
0.00513745
3.90614e-12
0.0305118
0.00465968
-2.37521e-12
0.0306826
0.0041718
-7.18597e-12
0.0307868
0.00368054
-9.99813e-12
0.0308358
0.003194
-1.25718e-11
0.0308414
0.00271821
-1.40274e-11
0.0308124
0.00225669
-1.49628e-11
0.0307548
0.00181207
-1.55567e-11
0.0306736
0.00138654
-1.5904e-11
0.0305676
0.000980733
-1.60998e-11
0.0304394
0.000595767
-1.63167e-11
0.0302858
0.000232339
-1.65203e-11
0.030108
-0.000110355
-1.6643e-11
0.0299069
-0.000431584
-1.6701e-11
0.0296835
-0.000731932
-1.67182e-11
0.0294428
-0.00101208
-1.67477e-11
0.0291826
-0.00127244
-1.66685e-11
0.028909
-0.00151309
-1.66027e-11
0.0286187
-0.00173498
-1.63792e-11
0.0283175
-0.00193763
-1.61115e-11
0.0280041
-0.00212267
-1.57143e-11
0.0276826
-0.00228926
-1.5251e-11
0.027354
-0.00243921
-1.47453e-11
0.0270196
-0.00257167
-1.42365e-11
0.0266821
-0.00268838
-1.37497e-11
0.0263419
-0.00278884
-1.32591e-11
0.0260016
-0.00287412
-1.28274e-11
0.0256632
-0.00294455
-1.23172e-11
0.0253278
-0.00300027
-1.17691e-11
0.0249992
-0.00304234
-1.11161e-11
0.0246783
-0.00307057
-1.03159e-11
0.0243675
-0.00308566
-9.33615e-12
0.0240688
-0.00308758
-8.15202e-12
0.0237846
-0.00307604
-6.72042e-12
0.0235179
-0.00305097
-5.01855e-12
0.0232732
-0.00301105
-3.08499e-12
0.0230547
-0.00295461
-6.1557e-13
0.0228542
-0.00287934
3.92559e-13
0.0226704
-0.0027949
2.16417e-12
0.0225183
-0.00270187
5.9049e-12
0.02241
-0.00258251
9.86332e-12
0.0223457
-0.00243269
1.24024e-11
0.0222916
-0.00224719
1.73611e-11
0.0222682
-0.00204426
1.80045e-11
0.0223181
-0.00183132
1.94595e-11
0.02245
-0.00157387
2.15473e-11
0.0226057
-0.00125808
2.50873e-11
0.0227754
-0.000911113
2.39202e-11
0.022942
-0.000558381
1.99118e-11
0.0230885
-0.000206246
1.48218e-11
0.0231995
0.000125772
9.13302e-12
0.0232692
0.000427239
5.082e-12
0.0233245
0.000690178
1.32907e-12
0.0233687
0.000930825
9.36056e-13
0.023385
0.00116097
7.09683e-13
0.0233667
0.00136632
1.15717e-13
0.0233384
0.0015376
-7.2355e-13
0.0233057
0.00168949
4.8974e-13
0.0232669
0.00183303
1.5293e-12
0.0232265
0.00196446
3.17703e-12
0.0231845
0.00208684
4.92869e-12
0.023142
0.00220064
6.29224e-12
0.0230975
0.00230562
7.47137e-12
0.0230523
0.00240036
8.38547e-12
0.023007
0.00248435
9.11772e-12
0.0229636
0.00255573
9.76614e-12
0.0229253
0.00261364
1.04665e-11
0.0228942
0.00265589
1.1136e-11
0.0228738
0.00268077
1.2174e-11
0.0228702
0.00268455
1.30535e-11
0.0228808
0.00266738
1.48499e-11
0.022872
0.0026595
1.50395e-11
0.0228952
0.00260523
1.58818e-11
0.0229963
0.00249462
1.73851e-11
0.0231461
0.00235745
2.01866e-11
0.0233322
0.00217301
2.42134e-11
0.0235714
0.00193992
2.72459e-11
0.0238583
0.00167012
2.92465e-11
0.0241721
0.00137867
2.9765e-11
0.0244905
0.00108572
2.84688e-11
0.0247854
0.000809583
2.52518e-11
0.0250403
0.000565801
2.08919e-11
0.0252371
0.000360919
1.5886e-11
0.0253814
0.000195822
1.12787e-11
0.0254719
6.46312e-05
7.01587e-12
0.025518
-3.69584e-05
5.91803e-12
0.0255433
-0.000126104
3.2494e-12
0.0255526
-0.000208976
3.13391e-12
0.0255409
-0.000278894
2.89918e-12
-0.000349626
2.89139e-12
0.0170705
0.00452636
3.30274e-10
0.0189154
0.00460741
-3.63736e-11
0.0206221
0.00516502
1.31927e-11
0.0221399
0.00555368
7.42404e-11
0.0234682
0.0057461
9.10088e-11
0.0246256
0.00577521
7.58009e-11
0.0256324
0.00569388
4.94957e-11
0.0265051
0.00552555
2.46783e-11
0.0272544
0.00529079
6.31152e-12
0.0278932
0.00499909
-5.0553e-12
0.0284343
0.00466226
-1.25483e-11
0.0288743
0.00429218
-1.71449e-11
0.0292256
0.0038952
-1.93789e-11
0.0294953
0.00348527
-2.08544e-11
0.0296976
0.00306625
-2.05731e-11
0.0298426
0.00264895
-2.00844e-11
0.0299327
0.00223681
-1.9361e-11
0.0299766
0.00183496
-1.86013e-11
0.0299739
0.00144661
-1.79021e-11
0.0299304
0.00107377
-1.73082e-11
0.0298501
0.000718609
-1.70199e-11
0.0297363
0.000381767
-1.67111e-11
0.0295941
6.5018e-05
-1.67128e-11
0.0294246
-0.000231418
-1.69294e-11
0.0292294
-0.000507781
-1.70764e-11
0.0290126
-0.000765424
-1.72442e-11
0.0287733
-0.00100453
-1.73508e-11
0.0285174
-0.00122635
-1.74662e-11
0.0282458
-0.00143094
-1.74614e-11
0.0279621
-0.00161927
-1.73496e-11
0.0276686
-0.00179117
-1.7122e-11
0.0273655
-0.00194805
-1.67603e-11
0.0270545
-0.00208864
-1.63213e-11
0.0267359
-0.00221543
-1.59186e-11
0.0264124
-0.00232645
-1.54397e-11
0.0260827
-0.00242464
-1.4948e-11
0.0257504
-0.0025075
-1.45967e-11
0.0254149
-0.00257836
-1.39577e-11
0.0250804
-0.00263477
-1.3415e-11
0.0247494
-0.00268064
-1.27624e-11
0.0244236
-0.00271371
-1.20016e-11
0.0241065
-0.00273693
-1.11638e-11
0.0237989
-0.00274839
-1.00853e-11
0.0235048
-0.00274975
-8.8743e-12
0.0232259
-0.0027395
-7.35006e-12
0.0229644
-0.00271766
-5.666e-12
0.0227248
-0.00268351
-3.71575e-12
0.0225067
-0.00263375
-1.40323e-12
0.0223046
-0.0025683
-3.26438e-13
0.0221154
-0.0024932
1.51425e-12
0.0219529
-0.00240874
5.04105e-12
0.0218243
-0.00230047
8.25384e-12
0.0217342
-0.00216281
1.14367e-11
0.021671
-0.00199729
1.64464e-11
0.0216165
-0.00179795
1.71145e-11
0.0216184
-0.00159843
1.86677e-11
0.0216974
-0.00136528
2.12327e-11
0.0218293
-0.0010814
2.57076e-11
0.0219825
-0.000748628
2.50087e-11
0.0221423
-0.000407338
2.29014e-11
0.0222977
-5.79555e-05
1.8421e-11
0.0224187
0.000277348
1.4084e-11
0.0225058
0.000584219
9.85557e-12
0.022568
0.000854576
6.86823e-12
0.0226269
0.00109342
3.84398e-12
0.0226698
0.00131557
3.62175e-12
0.0226777
0.00152318
3.33216e-12
0.0226627
0.00170067
3.09917e-12
0.0226459
0.00184694
3.66788e-12
0.0226261
0.00198152
4.57147e-12
0.022604
0.00210557
5.88375e-12
0.0225808
0.00221845
7.34075e-12
0.0225581
0.00232233
8.6904e-12
0.0225356
0.00241512
9.87881e-12
0.022517
0.00249531
1.09327e-11
0.0225019
0.00256107
1.18156e-11
0.0224949
0.00260972
1.30402e-11
0.0225002
0.00263839
1.37706e-11
0.0225112
0.00265262
1.57886e-11
0.0225354
0.00264727
1.59866e-11
0.0225618
0.00262296
1.68563e-11
0.0226567
0.00254965
1.85668e-11
0.0227957
0.0024472
2.12264e-11
0.0229637
0.00230133
2.43599e-11
0.0231894
0.00210124
2.77315e-11
0.023468
0.00185833
2.98363e-11
0.0237858
0.00158762
3.0992e-11
0.0241158
0.00130246
3.03204e-11
0.0244389
0.00102546
2.78922e-11
0.0247285
0.000771966
2.38531e-11
0.0249686
0.000554051
1.89461e-11
0.0251549
0.000374019
1.42256e-11
0.0252849
0.000230398
9.91018e-12
0.0253698
0.000116847
6.77106e-12
0.025416
2.64421e-05
5.42336e-12
0.0254453
-5.64268e-05
3.69017e-12
0.0254602
-0.000131815
3.1301e-12
0.0254572
-0.000198322
3.1075e-12
0.0254449
-0.000258569
2.87537e-12
-0.000319619
2.89302e-12
0.0174795
0.00384136
4.55842e-10
0.0182582
0.00385771
6.97848e-11
0.0192949
0.00409763
1.09533e-10
0.0203606
0.0044141
1.08472e-10
0.0214027
0.00462628
9.59247e-11
0.0224011
0.00472574
6.5043e-11
0.023346
0.00473407
3.59351e-11
0.0242177
0.00467202
7.377e-12
0.0250167
0.00454251
-8.63169e-12
0.0257358
0.00435629
-2.11105e-11
0.0263809
0.00411652
-2.62273e-11
0.0269462
0.0038365
-2.87584e-11
0.0274323
0.00352243
-2.93587e-11
0.0278418
0.00318627
-2.87273e-11
0.0281721
0.00283531
-2.71236e-11
0.0284337
0.00247752
-2.50505e-11
0.0286212
0.00212011
-2.27523e-11
0.0287459
0.00176682
-2.0584e-11
0.0288098
0.00142355
-1.87332e-11
0.0288206
0.00109173
-1.72748e-11
0.02879
0.000774806
-1.63627e-11
0.0287182
0.000473451
-1.57891e-11
0.0286184
0.00018854
-1.56378e-11
0.0284894
-7.91389e-05
-1.58711e-11
0.0283342
-0.000327943
-1.61534e-11
0.0281553
-0.000559452
-1.65606e-11
0.027952
-0.000774879
-1.69022e-11
0.0277286
-0.000974351
-1.72534e-11
0.0274874
-0.00115936
-1.74974e-11
0.0272289
-0.00132945
-1.76233e-11
0.0269589
-0.00148574
-1.76607e-11
0.0266738
-0.00162824
-1.7513e-11
0.026379
-0.00175711
-1.73004e-11
0.026075
-0.00187335
-1.70311e-11
0.0257645
-0.00197615
-1.67843e-11
0.0254446
-0.00206771
-1.61696e-11
0.0251181
-0.00214619
-1.6421e-11
0.0247906
-0.00221464
-1.58868e-11
0.0244673
-0.00227247
-1.51883e-11
0.0241552
-0.0023207
-1.45087e-11
0.023854
-0.00236037
-1.36085e-11
0.0235638
-0.00238972
-1.27034e-11
0.0232851
-0.00241118
-1.17313e-11
0.0230188
-0.00242163
-1.06727e-11
0.0227619
-0.00242437
-9.22593e-12
0.0225181
-0.00241506
-7.77627e-12
0.0222807
-0.00239672
-5.97771e-12
0.0220556
-0.0023646
-4.1267e-12
0.0218407
-0.0023206
-1.99335e-12
0.0216319
-0.00226013
-8.25878e-13
0.0214303
-0.00219266
1.33026e-12
0.0212493
-0.00211552
4.27064e-12
0.0210968
-0.00201535
6.9302e-12
0.0209745
-0.00188978
1.09288e-11
0.0208984
-0.00174152
1.31626e-11
0.0208256
-0.001556
1.78478e-11
0.0207921
-0.00136305
1.86102e-11
0.0208279
-0.00115172
2.03071e-11
0.0209397
-0.000899451
2.34608e-11
0.0210759
-0.000589685
2.56087e-11
0.0212321
-0.000258168
2.55184e-11
0.0213853
8.19946e-05
2.26599e-11
0.0215195
0.000412203
1.7784e-11
0.0216282
0.000719878
1.44057e-11
0.0217046
0.000992065
9.32586e-12
0.0217692
0.00123268
7.34994e-12
0.0218307
0.00144582
7.17557e-12
0.0218752
0.00164517
6.95271e-12
0.0218887
0.00182408
6.76153e-12
0.0218959
0.00197003
6.11105e-12
0.0219048
0.00209382
7.39426e-12
0.0219114
0.00220837
8.84747e-12
0.0219231
0.00230932
1.02794e-11
0.0219385
0.00239602
1.17118e-11
0.0219617
0.00246964
1.31279e-11
0.0219943
0.00252284
1.42733e-11
0.0220344
0.00256259
1.65255e-11
0.0220708
0.00259333
1.68945e-11
0.0221278
0.00258521
1.7841e-11
0.022223
0.00253713
1.92626e-11
0.0223503
0.00247554
2.15731e-11
0.0225003
0.00237766
2.41943e-11
0.0226998
0.00221375
2.8328e-11
0.0229582
0.0020081
3.06177e-11
0.0232591
0.00176231
3.22224e-11
0.0235856
0.00149451
3.23359e-11
0.0239202
0.00122116
3.07148e-11
0.0242297
0.000963636
2.72412e-11
0.0245025
0.0007343
2.26759e-11
0.0247203
0.000541483
1.76918e-11
0.0248874
0.00038476
1.31189e-11
0.0250043
0.000259447
9.39123e-12
0.0250798
0.000160702
6.06552e-12
0.0251259
8.12598e-05
5.74791e-12
0.0251565
4.66293e-06
5.57866e-12
0.0251719
-6.36411e-05
5.06021e-12
0.0251736
-0.000126353
3.8317e-12
0.0251664
-0.000182709
2.91724e-12
0.0251542
-0.000237568
2.69436e-12
-0.000290786
2.73652e-12
0.0167145
0.00303643
5.0081e-10
0.0175907
0.00302086
1.39188e-10
0.0183639
0.0033107
1.4052e-10
0.0191055
0.00361138
1.48672e-10
0.0198615
0.00381586
9.99501e-11
0.0206442
0.00392519
5.68687e-11
0.0214447
0.00395918
2.76108e-11
0.0222415
0.00393396
-3.19865e-12
0.0230101
0.00385402
-1.91834e-11
0.0237367
0.003722
-2.72369e-11
0.0244044
0.00354324
-3.08635e-11
0.0250086
0.0033239
-3.22911e-11
0.0255383
0.00307287
-3.2398e-11
0.0259953
0.00279783
-3.13466e-11
0.0263755
0.00250782
-2.92592e-11
0.0266855
0.0022089
-2.64469e-11
0.0269271
0.0019082
-2.33142e-11
0.0271071
0.00160964
-2.02772e-11
0.0272333
0.00131762
-1.76793e-11
0.0273088
0.00103444
-1.56599e-11
0.027344
0.000762194
-1.43163e-11
0.0273383
0.000502069
-1.35925e-11
0.0272978
0.000254257
-1.30513e-11
0.027225
1.99587e-05
-1.38167e-11
0.0271182
-0.000197887
-1.41849e-11
0.0269832
-0.00040171
-1.46976e-11
0.026818
-0.000591413
-1.52365e-11
0.0266283
-0.000767231
-1.58017e-11
0.0264166
-0.000930601
-1.63797e-11
0.0261836
-0.00108094
-1.68043e-11
0.0259367
-0.00121986
-1.72503e-11
0.0256762
-0.00134665
-1.74415e-11
0.0254082
-0.0014627
-1.76815e-11
0.0251314
-0.00156776
-1.77597e-11
0.0248514
-0.00166289
-1.77027e-11
0.0245765
-0.00174786
-1.78809e-11
0.0243099
-0.00182427
-1.69701e-11
0.024053
-0.00189141
-1.67228e-11
0.0237987
-0.00195021
-1.63484e-11
0.023549
-0.002
-1.58185e-11
0.0232975
-0.00204141
-1.51357e-11
0.0230535
-0.00207397
-1.44131e-11
0.0228099
-0.00209913
-1.32547e-11
0.0225655
-0.00211495
-1.21481e-11
0.0223171
-0.0021226
-1.08154e-11
0.0220634
-0.0021208
-9.33117e-12
0.0218062
-0.00210968
-7.79409e-12
0.0215466
-0.00208932
-6.05042e-12
0.0212944
-0.00205841
-4.3882e-12
0.0210469
-0.00201649
-2.34656e-12
0.0208106
-0.00196147
-1.32998e-12
0.0205845
-0.00190225
1.04959e-12
0.0203852
-0.00183015
3.0063e-12
0.0202154
-0.00173916
6.4027e-12
0.0200772
-0.00162597
8.75128e-12
0.0199846
-0.00149108
1.22161e-11
0.0199117
-0.00132415
1.67694e-11
0.0198655
-0.00113799
1.74811e-11
0.0198729
-0.000944157
1.89844e-11
0.0199554
-0.000713712
2.16494e-11
0.020086
-0.000432452
2.6197e-11
0.0202389
-0.000114653
2.67729e-11
0.0204018
0.000212227
2.42862e-11
0.0205545
0.000537222
2.10936e-11
0.0206849
0.000841019
1.62848e-11
0.0207927
0.0011153
1.38041e-11
0.0208796
0.00135456
1.12016e-11
0.0209622
0.00156333
9.94805e-12
0.0210399
0.001751
9.87811e-12
0.0210979
0.00192032
9.92478e-12
0.0211342
0.00206775
1.0222e-11
0.0211736
0.00218211
1.12835e-11
0.0212151
0.00227805
1.24646e-11
0.0212688
0.00235615
1.41372e-11
0.0213289
0.00241793
1.57394e-11
0.0213893
0.00247107
1.72871e-11
0.0214567
0.00249995
1.90822e-11
0.0215824
0.00247214
1.97229e-11
0.0217372
0.00243252
2.14332e-11
0.0218898
0.00238346
2.38983e-11
0.0220905
0.00226649
2.80263e-11
0.0223537
0.00210077
3.07229e-11
0.0226562
0.00189158
3.31817e-11
0.0229934
0.00164864
3.40096e-11
0.0233381
0.00139102
3.3192e-11
0.0236748
0.00113489
3.06923e-11
0.0239738
0.000899581
2.66257e-11
0.0242298
0.000695219
2.18105e-11
0.0244266
0.000526399
1.69793e-11
0.0245745
0.000390624
1.27974e-11
0.0246754
0.000281481
9.68329e-12
0.0247403
0.000195309
6.17786e-12
0.0247774
0.000124187
5.37644e-12
0.024801
5.56367e-05
6.79019e-12
0.0248089
-6.43933e-06
3.91383e-12
0.0248055
-6.44357e-05
4.28954e-12
0.0247897
-0.000117146
3.44197e-12
0.0247674
-0.000167563
3.41564e-12
0.0247393
-0.000215074
2.84516e-12
-0.000261768
2.78213e-12
0.0175
0.00241954
2.68612e-10
0.0179033
0.0026613
1.00373e-10
0.0182898
0.00290849
6.97958e-11
0.0186852
0.00315682
7.59071e-11
0.0191186
0.00333944
5.71775e-11
0.0196329
0.00342059
2.95707e-11
0.020218
0.00343033
9.45877e-12
0.0208495
0.00338452
-7.47773e-12
0.0214928
0.00329579
-1.7673e-11
0.0221218
0.00316674
-2.26823e-11
0.0227182
0.0030049
-2.50102e-11
0.0232682
0.00281486
-2.62752e-11
0.0237648
0.00260312
-2.69208e-11
0.0242053
0.00237561
-2.6719e-11
0.0245907
0.00213737
-2.54542e-11
0.0249209
0.00189349
-2.32349e-11
0.0252007
0.00164741
-2.04376e-11
0.0254287
0.00140302
-1.75338e-11
0.0256107
0.00116209
-1.49548e-11
0.0257449
0.000927515
-1.29569e-11
0.0258357
0.000699905
-1.16313e-11
0.0258839
0.000481304
-1.09173e-11
0.025889
0.000271685
-1.08612e-11
0.0258581
7.19041e-05
-1.05385e-11
0.0257895
-0.000115754
-1.12363e-11
0.0256934
-0.00029107
-1.21161e-11
0.0255676
-0.000454452
-1.29625e-11
0.0254202
-0.0006063
-1.36731e-11
0.0252537
-0.000747158
-1.45921e-11
0.0250731
-0.000877544
-1.52621e-11
0.0248861
-0.000998202
-1.59508e-11
0.0246933
-0.00110976
-1.64327e-11
0.024499
-0.00121266
-1.67713e-11
0.0243041
-0.00130715
-1.72602e-11
0.0241094
-0.00139324
-1.76475e-11
0.0239145
-0.00147159
-1.77196e-11
0.0237167
-0.00154204
-1.76488e-11
0.0235149
-0.00160495
-1.75721e-11
0.0233066
-0.00165989
-1.72305e-11
0.0230881
-0.00170737
-1.67502e-11
0.0228578
-0.00174699
-1.60351e-11
0.0226156
-0.00177899
-1.52891e-11
0.0223584
-0.00180322
-1.41503e-11
0.0220846
-0.00181994
-1.34452e-11
0.0218027
-0.00182854
-1.22511e-11
0.0215134
-0.00183124
-1.07214e-11
0.0212275
-0.00182599
-9.20713e-12
0.0209478
-0.00181506
-7.57298e-12
0.0206788
-0.00179505
-5.95182e-12
0.0204246
-0.00176841
-4.27501e-12
0.0201882
-0.00173017
-2.56613e-12
0.019963
-0.00168335
-1.48663e-12
0.0197582
-0.00163045
3.49948e-13
0.0195741
-0.00156526
2.55813e-12
0.0194144
-0.00148158
4.80833e-12
0.0192867
-0.00138082
7.99846e-12
0.0191971
-0.0012565
1.10314e-11
0.0191362
-0.00110594
1.56863e-11
0.019098
-0.000929896
1.63725e-11
0.0191109
-0.000750681
1.78217e-11
0.0191958
-0.000538494
2.05447e-11
0.0193359
-0.000281788
2.57838e-11
0.0195025
2.22845e-05
2.74645e-11
0.0196845
0.000337852
2.65353e-11
0.0198624
0.000655302
2.3623e-11
0.0200255
0.00095473
2.09029e-11
0.0201638
0.00122772
1.73678e-11
0.0202776
0.00146604
1.5043e-11
0.020378
0.00167024
1.46469e-11
0.0204724
0.00184948
1.43336e-11
0.0205608
0.00200189
1.44344e-11
0.0206332
0.00213172
1.48011e-11
0.0206969
0.00223375
1.55946e-11
0.0207557
0.00231304
1.8178e-11
0.0208198
0.00236582
1.87508e-11
0.0209249
0.00237883
2.01567e-11
0.0210736
0.00235436
2.28987e-11
0.021216
0.00233272
2.37006e-11
0.0213834
0.00226251
2.64825e-11
0.021616
0.00214092
3.06431e-11
0.021893
0.00197161
3.33964e-11
0.0222072
0.00176323
3.52114e-11
0.0225484
0.00152646
3.56117e-11
0.0228885
0.00128153
3.40329e-11
0.0232139
0.0010444
3.07539e-11
0.0234949
0.000832587
2.62245e-11
0.0237286
0.000652176
2.13364e-11
0.0239048
0.000505765
1.67916e-11
0.0240326
0.000388736
1.30346e-11
0.0241172
0.000294453
1.02432e-11
0.0241674
0.000218241
8.02893e-12
0.024193
0.000154746
6.14663e-12
0.0242063
9.57443e-05
4.99545e-12
0.0242025
3.99288e-05
5.17771e-12
0.0241896
-1.32414e-05
5.9883e-12
0.0241679
-6.21991e-05
5.4616e-12
0.0241398
-0.000107947
3.95554e-12
0.0241053
-0.000152056
3.4726e-12
0.0240658
-0.00019283
2.75221e-12
-0.000233421
2.61574e-12
0.0175379
0.00195419
-2.27292e-11
0.0179031
0.0023378
-9.26272e-12
0.018191
0.00260465
-5.3893e-12
0.0184636
0.00285939
-1.46685e-11
0.0187674
0.00303642
-2.49313e-12
0.0191372
0.00309953
-4.14602e-12
0.0195833
0.00306628
-5.79723e-12
0.0200795
0.00297829
-8.10977e-12
0.0205932
0.00285207
-9.63172e-12
0.0210984
0.00269967
-1.02365e-11
0.0215886
0.00253046
-1.10102e-11
0.0220561
0.00234975
-1.25624e-11
0.0224993
0.00216153
-1.45445e-11
0.022914
0.0019686
-1.61621e-11
0.0232953
0.00177248
-1.67732e-11
0.0236376
0.00157475
-1.61894e-11
0.0239363
0.00137663
-1.46675e-11
0.0241869
0.00117958
-1.27116e-11
0.0243881
0.000984761
-1.08298e-11
0.0245391
0.000793624
-9.37495e-12
0.0246411
0.000607141
-8.48269e-12
0.0246977
0.000426648
-8.12401e-12
0.0247104
0.000252852
-8.21151e-12
0.0246871
8.63255e-05
-8.43682e-12
0.0246325
-7.15873e-05
-9.0244e-12
0.024555
-0.000219696
-9.78635e-12
0.02446
-0.000358004
-1.05523e-11
0.0243535
-0.00048678
-1.14728e-11
0.0242404
-0.000606322
-1.21983e-11
0.0241212
-0.000717714
-1.31158e-11
0.0239973
-0.00082093
-1.40916e-11
0.0238664
-0.000917036
-1.51135e-11
0.0237302
-0.00100582
-1.62915e-11
0.023585
-0.00108818
-1.69008e-11
0.0234286
-0.00116373
-1.75751e-11
0.0232584
-0.00123299
-1.8072e-11
0.0230722
-0.00129542
-1.83381e-11
0.022868
-0.00135152
-1.83949e-11
0.0226465
-0.00140079
-1.81745e-11
0.0224109
-0.00144366
-1.7759e-11
0.0221625
-0.00147992
-1.7112e-11
0.0219016
-0.00151022
-1.61698e-11
0.0216378
-0.00153388
-1.52616e-11
0.0213756
-0.00155267
-1.36795e-11
0.0211189
-0.00156518
-1.24815e-11
0.0208671
-0.00157263
-1.12489e-11
0.0206213
-0.00157372
-1.00033e-11
0.0203799
-0.00156923
-8.63613e-12
0.0201445
-0.00155811
-7.24768e-12
0.0199152
-0.00154022
-5.86292e-12
0.0196934
-0.00151482
-4.31802e-12
0.0194819
-0.00147995
-3.32564e-12
0.0192767
-0.00143839
-1.88974e-12
0.019088
-0.00138951
-2.25874e-13
0.0189198
-0.00132847
1.77201e-12
0.018778
-0.00125232
4.08164e-12
0.0186675
-0.00116002
6.87776e-12
0.0185982
-0.00104652
1.01229e-11
0.0185641
-0.000907037
1.47038e-11
0.0185438
-0.000737938
1.51197e-11
0.0185765
-0.000569305
1.66515e-11
0.0186682
-0.000371751
2.0226e-11
0.018822
-0.000134758
2.60209e-11
0.0190009
0.000155596
2.73975e-11
0.0191974
0.000459805
2.7864e-11
0.019391
0.000768808
2.6589e-11
0.0195689
0.00106239
2.36319e-11
0.0197228
0.0013286
2.16566e-11
0.0198548
0.00156043
1.88826e-11
0.0199704
0.00175525
1.83888e-11
0.0200753
0.00191747
1.88237e-11
0.0201778
0.00204944
1.89914e-11
0.0202765
0.00214982
1.97762e-11
0.0203803
0.00221998
2.09688e-11
0.0204963
0.00225144
2.36867e-11
0.0206309
0.0022432
2.35701e-11
0.0207731
0.00220648
2.59148e-11
0.0209598
0.00213075
2.97807e-11
0.0211978
0.00200189
3.34739e-11
0.0214774
0.00183133
3.57354e-11
0.0217918
0.00162479
3.70367e-11
0.0221219
0.00139733
3.69258e-11
0.0224426
0.00116734
3.49541e-11
0.0227369
0.000950586
3.13496e-11
0.0229828
0.000761534
2.66909e-11
0.0231792
0.00060375
2.18681e-11
0.0233221
0.000477756
1.7519e-11
0.0234223
0.000377371
1.40661e-11
0.0234845
0.000297076
1.14398e-11
0.0235206
0.000229731
9.62328e-12
0.0235345
0.00017357
8.19891e-12
0.0235361
0.0001232
6.0688e-12
0.0235233
7.39032e-05
5.73185e-12
0.0235027
2.67809e-05
5.39196e-12
0.0234726
-1.80083e-05
5.50416e-12
0.0234374
-5.93626e-05
5.3116e-12
0.0233953
-9.87933e-05
5.2548e-12
0.0233518
-0.000136287
3.1424e-12
0.023307
-0.000171202
2.56275e-12
-0.000205969
2.38415e-12
0.0168031
0.00134805
-2.11263e-10
0.0174239
0.00181133
-1.85349e-10
0.0178298
0.00221029
-1.16697e-10
0.0181598
0.002524
-7.38117e-11
0.0185032
0.00271744
-4.90552e-11
0.0188894
0.00277911
-2.21029e-11
0.0193077
0.0027302
-9.9414e-12
0.0197487
0.00261282
-1.80058e-12
0.0201933
0.00245856
3.23148e-12
0.0206257
0.00228781
5.95657e-12
0.0210432
0.00211301
6.34976e-12
0.0214442
0.00193999
4.51029e-12
0.0218308
0.0017709
1.19835e-12
0.0222003
0.00160541
-2.41426e-12
0.0225458
0.00144314
-5.26295e-12
0.0228596
0.0012829
-6.80991e-12
0.0231342
0.00112424
-7.12836e-12
0.0233642
0.000966889
-6.6813e-12
0.0235466
0.000811023
-5.98822e-12
0.0236813
0.000657413
-5.48006e-12
0.0237705
0.000506878
-5.3244e-12
0.0238201
0.000360533
-5.51478e-12
0.0238352
0.000219285
-5.90467e-12
0.0238242
8.34792e-05
-6.35888e-12
0.0237945
-4.58889e-05
-6.84737e-12
0.0237507
-0.000167876
-7.47065e-12
0.0236999
-0.000282544
-8.15283e-12
0.023641
-0.00038988
-8.90797e-12
0.0235756
-0.000490047
-9.746e-12
0.0235008
-0.000583809
-1.08207e-11
0.0234137
-0.000671382
-1.19897e-11
0.023312
-0.000753329
-1.34442e-11
0.023193
-0.000829637
-1.47899e-11
0.0230547
-0.000900717
-1.60447e-11
0.0228977
-0.000966258
-1.7171e-11
0.0227228
-0.00102652
-1.80466e-11
0.0225317
-0.00108127
-1.85785e-11
0.0223289
-0.00113059
-1.88198e-11
0.022117
-0.00117452
-1.86593e-11
0.021899
-0.00121306
-1.82557e-11
0.0216792
-0.0012463
-1.75183e-11
0.0214576
-0.00127445
-1.6558e-11
0.0212372
-0.00129738
-1.55308e-11
0.0210161
-0.00131558
-1.42718e-11
0.0207941
-0.00132877
-1.30442e-11
0.0205718
-0.0013371
-1.18162e-11
0.0203471
-0.00134057
-1.05332e-11
0.0201221
-0.00133886
-9.2667e-12
0.0198952
-0.00133219
-8.02056e-12
0.0196707
-0.00131968
-6.8191e-12
0.0194471
-0.00130166
-5.56948e-12
0.0192329
-0.00127649
-4.27739e-12
0.0190241
-0.00124389
-3.40861e-12
0.018829
-0.00120673
-2.03296e-12
0.0186514
-0.0011603
-5.96707e-13
0.0184929
-0.00110355
1.03871e-12
0.0183653
-0.00103357
3.29996e-12
0.018266
-0.000949034
6.07878e-12
0.0182071
-0.000844242
9.11549e-12
0.0181858
-0.000715483
1.40767e-11
0.0181765
-0.000554302
1.47277e-11
0.0182111
-0.00039605
1.65317e-11
0.0182963
-0.000212289
1.91616e-11
0.0184416
1.09849e-05
2.42203e-11
0.0186195
0.000276377
2.82736e-11
0.0188144
0.000566331
3.07919e-11
0.0190059
0.000862502
2.98881e-11
0.0191822
0.00114477
2.80292e-11
0.019337
0.00139726
2.57273e-11
0.0194721
0.00161263
2.41363e-11
0.0195932
0.00178667
2.42318e-11
0.0197094
0.00192103
2.45004e-11
0.0198274
0.00201739
2.5071e-11
0.0199573
0.00207159
2.67672e-11
0.0201102
0.00207681
2.72876e-11
0.0202676
0.00205489
2.90798e-11
0.0204552
0.00198129
3.19679e-11
0.0206823
0.0018547
3.51494e-11
0.0209437
0.0016844
3.78504e-11
0.0212321
0.00148242
3.91263e-11
0.0215269
0.00126529
3.86034e-11
0.0218149
0.00105004
3.63475e-11
0.0220709
0.000853692
3.25651e-11
0.0222835
0.000685277
2.80221e-11
0.0224491
0.000548296
2.34211e-11
0.0225686
0.000440113
1.93424e-11
0.0226476
0.000355236
1.60157e-11
0.0226976
0.000287109
1.35155e-11
0.022725
0.000229987
1.1493e-11
0.022733
0.000181278
1.02746e-11
0.0227305
0.00013715
8.582e-12
0.0227239
9.50491e-05
7.15121e-12
0.0227099
5.47552e-05
6.15284e-12
0.0226867
1.58265e-05
5.81907e-12
0.0226591
-2.06894e-05
4.89746e-12
0.0226363
-5.70149e-05
5.73485e-12
0.0226121
-8.99043e-05
4.35604e-12
0.0225884
-0.000122321
3.43002e-12
0.0225626
-0.000150909
2.48888e-12
-0.000179902
2.07392e-12
0.0174387
0.00110671
-2.33429e-10
0.0177297
0.00162405
-1.90456e-10
0.0179824
0.00198353
-9.40922e-11
0.0182498
0.00226774
-4.15853e-11
0.0185666
0.00243745
-1.47273e-11
0.0189364
0.00247303
1.97529e-12
0.0193359
0.00239842
1.07256e-11
0.0197429
0.00225547
1.9822e-11
0.0201416
0.00208248
1.91038e-11
0.0205272
0.00190456
2.10031e-11
0.0208981
0.00173377
2.2231e-11
0.021255
0.00157383
1.97295e-11
0.0215959
0.00142516
1.65499e-11
0.0219189
0.00128552
1.38717e-11
0.0222224
0.00115284
6.72271e-12
0.022499
0.0010245
2.96514e-12
0.0227408
0.000898627
7.18002e-13
0.0229385
0.000774311
-4.29003e-13
0.0230884
0.00065114
-1.04619e-12
0.0231907
0.000529562
-1.61054e-12
0.023252
0.000410168
-2.34375e-12
0.0232816
0.000293966
-3.21461e-12
0.0232886
0.000181638
-4.03726e-12
0.023282
7.37149e-05
-4.69938e-12
0.023267
-2.94862e-05
-5.25838e-12
0.0232467
-0.000127685
-5.67063e-12
0.023221
-0.000220604
-6.14428e-12
0.0231863
-0.00030821
-6.7651e-12
0.0231399
-0.000390594
-7.59323e-12
0.0230778
-0.000468236
-8.72575e-12
0.0229978
-0.000541334
-1.01656e-11
0.0228989
-0.000610216
-1.17838e-11
0.0227813
-0.000674867
-1.34998e-11
0.0226472
-0.000735297
-1.51994e-11
0.0224983
-0.000791561
-1.66186e-11
0.0223382
-0.000843298
-1.77909e-11
0.0221683
-0.000890696
-1.86145e-11
0.0219917
-0.000933306
-1.90562e-11
0.0218094
-0.000971455
-1.9043e-11
0.0216221
-0.00100483
-1.86984e-11
0.0214304
-0.00103368
-1.80109e-11
0.0212331
-0.001058
-1.7072e-11
0.0210296
-0.00107804
-1.59674e-11
0.0208199
-0.00109361
-1.47182e-11
0.0206027
-0.00110539
-1.34368e-11
0.0203796
-0.00111271
-1.21699e-11
0.0201502
-0.00111649
-1.0952e-11
0.0199175
-0.00111576
-9.79234e-12
0.019683
-0.00111147
-8.63637e-12
0.01945
-0.00110256
-7.54486e-12
0.0192219
-0.00108941
-6.52757e-12
0.0190017
-0.00107119
-5.46938e-12
0.0187943
-0.00104733
-4.41761e-12
0.0185978
-0.00101784
-3.5429e-12
0.0184198
-0.000983153
-2.42554e-12
0.0182588
-0.000939949
-1.10112e-12
0.0181218
-0.00088804
5.12721e-13
0.0180079
-0.000824163
2.74177e-12
0.0179229
-0.000745965
5.39616e-12
0.0178725
-0.000649847
8.53354e-12
0.0178567
-0.000530209
1.39307e-11
0.0178524
-0.000380774
1.46911e-11
0.0178817
-0.000233686
1.62441e-11
0.0179605
-6.43437e-05
1.86442e-11
0.0180936
0.000134957
2.44229e-11
0.0182563
0.000384044
3.10862e-11
0.0184412
0.000652131
3.3533e-11
0.0186297
0.000927169
3.33469e-11
0.0188078
0.0011887
3.20975e-11
0.0189706
0.00141939
3.0755e-11
0.0191173
0.00160771
2.95244e-11
0.0192563
0.00174867
2.98094e-11
0.0193979
0.00184085
3.04391e-11
0.0195503
0.00187849
3.28136e-11
0.0197201
0.0018656
3.34819e-11
0.0199147
0.00181039
3.70978e-11
0.0201447
0.00169654
3.90967e-11
0.0204041
0.00153695
4.0746e-11
0.0206788
0.00134538
4.15176e-11
0.020958
0.0011397
4.0735e-11
0.0212207
0.000939374
3.81692e-11
0.0214502
0.000759778
3.43605e-11
0.0216397
0.000609093
2.99434e-11
0.0217838
0.000488966
2.56079e-11
0.0218858
0.000395843
2.17827e-11
0.0219563
0.000323742
1.86214e-11
0.0220001
0.000266482
1.60761e-11
0.0220225
0.000219024
1.40603e-11
0.0220339
0.000177494
1.22625e-11
0.0220373
0.000140055
1.09899e-11
0.0220343
0.000105696
8.77858e-12
0.0220262
7.15278e-05
8.51518e-12
0.0220195
3.83127e-05
7.64121e-12
0.0220146
6.28982e-06
6.42133e-12
0.0220079
-2.37145e-05
4.60621e-12
0.0220029
-5.33712e-05
5.56511e-12
0.0219984
-8.11287e-05
3.92349e-12
0.0219983
-0.000107653
3.0602e-12
0.0219989
-0.000131185
2.25196e-12
-0.000154716
2.1258e-12
0.016648
0.000629689
-2.94291e-10
0.0172542
0.00113863
-2.22756e-10
0.0176935
0.00157099
-6.27286e-11
0.0181094
0.00187058
5.47335e-12
0.0185565
0.00203406
2.59274e-11
0.0190197
0.0020648
4.01249e-11
0.0194738
0.00198925
3.61393e-11
0.0199048
0.00184991
2.99329e-11
0.0203141
0.00168585
3.85035e-11
0.0207028
0.00152328
3.94262e-11
0.0210655
0.00137313
3.86492e-11
0.0214012
0.00123772
3.55319e-11
0.0217122
0.00111542
2.77464e-11
0.0219971
0.00100353
2.00389e-11
0.0222531
0.000899068
1.55668e-11
0.0224728
0.000799256
1.38632e-11
0.0226534
0.000701945
7.53489e-12
0.0227926
0.000606031
4.86258e-12
0.0228922
0.000511293
2.91116e-12
0.0229583
0.000417854
1.26384e-12
0.0229985
0.000326296
-2.8847e-13
0.0230221
0.000237145
-1.69914e-12
0.0230364
0.000150973
-2.80425e-12
0.0230451
6.80279e-05
-3.54986e-12
0.0230497
-1.21905e-05
-3.88992e-12
0.0230462
-8.78352e-05
-4.09201e-12
0.0230334
-0.00016132
-4.29317e-12
0.0230061
-0.000231114
-4.68915e-12
0.0229621
-0.000297665
-5.43841e-12
0.0228992
-0.000360806
-6.67276e-12
0.0228169
-0.000420953
-8.26732e-12
0.0227172
-0.000477659
-1.01988e-11
0.0226011
-0.000531428
-1.22541e-11
0.0224725
-0.000581421
-1.42902e-11
0.0223323
-0.000628348
-1.61309e-11
0.0221841
-0.000671095
-1.76561e-11
0.0220285
-0.000710608
-1.86482e-11
0.0218664
-0.000745651
-1.92381e-11
0.0216983
-0.000777274
-1.93661e-11
0.0215231
-0.000804395
-1.90239e-11
0.0213405
-0.000828133
-1.83364e-11
0.0211506
-0.000847499
-1.73782e-11
0.0209515
-0.000863782
-1.61919e-11
0.0207442
-0.000875959
-1.49197e-11
0.0205268
-0.000885392
-1.36281e-11
0.0203014
-0.000891036
-1.23451e-11
0.0200689
-0.000894131
-1.1167e-11
0.0198321
-0.000893688
-1.00421e-11
0.0195942
-0.000890634
-9.02703e-12
0.0193573
-0.000884099
-8.07757e-12
0.0191262
-0.000874509
-7.19132e-12
0.0189033
-0.000861239
-6.34552e-12
0.0186918
-0.000843914
-5.45148e-12
0.0184943
-0.000821888
-4.69509e-12
0.0183106
-0.00079597
-3.75118e-12
0.0181451
-0.000764172
-2.58476e-12
0.0179966
-0.000725643
-1.24029e-12
0.0178684
-0.000678903
4.05891e-13
0.0177608
-0.000621874
2.47302e-12
0.0176791
-0.000551734
5.17821e-12
0.0176251
-0.000465761
8.61977e-12
0.0176035
-0.000355398
1.39396e-11
0.0175939
-0.000223344
1.46653e-11
0.017617
-9.00306e-05
1.63487e-11
0.0176835
6.01069e-05
1.98316e-11
0.0178106
0.000237538
2.61492e-11
0.0179697
0.000463099
3.2254e-11
0.0181578
0.000704366
3.5556e-11
0.0183564
0.000951226
3.64256e-11
0.0185549
0.00118091
3.64216e-11
0.0187454
0.00137717
3.60614e-11
0.018929
0.00152426
3.61211e-11
0.0191142
0.00161377
3.71878e-11
0.0193117
0.00163856
3.72764e-11
0.0195192
0.00160958
4.02126e-11
0.0197577
0.00151849
4.25847e-11
0.0200183
0.00137868
4.41925e-11
0.0202906
0.00120484
4.45398e-11
0.0205601
0.0010165
4.33229e-11
0.0208075
0.000832991
4.05194e-11
0.0210205
0.00066929
3.65753e-11
0.0211937
0.000533736
3.22418e-11
0.0213229
0.000427257
2.80741e-11
0.0214152
0.000346079
2.44219e-11
0.0214785
0.00028449
2.13785e-11
0.0215167
0.000236542
1.88444e-11
0.0215372
0.000197429
1.66838e-11
0.0215483
0.000163697
1.48385e-11
0.0215516
0.000133447
1.30339e-11
0.021547
0.000104667
1.16047e-11
0.0215444
7.81356e-05
9.15901e-12
0.0215442
5.14677e-05
8.91085e-12
0.0215446
2.50837e-05
8.31811e-12
0.021544
-8.64631e-07
6.65509e-12
0.0215464
-2.47638e-05
5.1951e-12
0.0215542
-4.80258e-05
5.46329e-12
0.0215631
-7.0631e-05
4.3638e-12
0.0215768
-9.16236e-05
3.02256e-12
0.0215914
-0.000110155
2.13178e-12
-0.000128343
2.02614e-12
0.017185
0.000452664
-1.56812e-10
0.0173966
0.00100626
-1.17315e-10
0.0177045
0.0013187
1.58246e-11
0.0180988
0.00152997
7.67655e-11
0.0185562
0.00163962
7.85422e-11
0.0190271
0.00164109
4.55883e-11
0.0194786
0.00155541
4.52169e-11
0.0199045
0.00142253
4.27727e-11
0.0203078
0.00127736
5.13232e-11
0.0206934
0.00114057
4.98547e-11
0.0210579
0.00101896
4.95291e-11
0.0213924
0.000913157
4.54655e-11
0.0216907
0.000819683
3.96803e-11
0.0219549
0.000735617
3.08511e-11
0.0221865
0.000657765
2.29829e-11
0.022382
0.000583999
1.50844e-11
0.0225356
0.000512738
1.56797e-11
0.022647
0.000442798
9.79124e-12
0.0227217
0.000374033
5.88949e-12
0.022772
0.000306341
3.26936e-12
0.0228085
0.000240215
9.95812e-13
0.0228406
0.000175796
-8.66159e-13
0.0228719
0.000113481
-2.17239e-12
0.0229014
5.33787e-05
-2.92353e-12
0.0229239
-3.22112e-06
-2.88867e-12
0.0229389
-6.08692e-05
-2.93214e-12
0.022939
-0.000114408
-2.87014e-12
0.022921
-0.000166216
-3.08236e-12
0.0228834
-0.000216468
-3.78032e-12
0.0228271
-0.000264474
-5.01337e-12
0.0227515
-0.00031076
-6.76007e-12
0.0226604
-0.000354395
-8.91854e-12
0.0225539
-0.000396119
-1.12644e-11
0.0224358
-0.000434703
-1.36127e-11
0.0223069
-0.000471057
-1.57383e-11
0.0221694
-0.000503944
-1.74828e-11
0.0220243
-0.000534231
-1.87713e-11
0.0218711
-0.000561025
-1.9462e-11
0.0217102
-0.0005849
-1.96677e-11
0.0215393
-0.000605479
-1.93675e-11
0.0213577
-0.000622918
-1.86969e-11
0.0211642
-0.000637482
-1.7689e-11
0.0209575
-0.000648878
-1.64932e-11
0.0207387
-0.000657965
-1.5187e-11
0.0205086
-0.000664088
-1.3872e-11
0.0202693
-0.000668374
-1.26092e-11
0.0200247
-0.00066989
-1.14351e-11
0.0197768
-0.000669987
-1.03439e-11
0.0195313
-0.000667175
-9.39407e-12
0.0192901
-0.000663166
-8.49893e-12
0.0190583
-0.000655898
-7.72345e-12
0.0188368
-0.000647068
-6.96545e-12
0.0186287
-0.000634582
-6.24237e-12
0.0184349
-0.000619344
-5.54811e-12
0.0182541
-0.000600528
-4.71688e-12
0.0180868
-0.000577969
-3.80977e-12
0.0179341
-0.000550601
-2.67575e-12
0.0177955
-0.000517747
-1.23678e-12
0.0176739
-0.00047788
3.99171e-13
0.017571
-0.000429419
2.78982e-12
0.0174896
-0.000369211
5.21049e-12
0.0174387
-0.000296051
9.22987e-12
0.0174106
-0.000195692
1.46734e-11
0.0174071
-9.12142e-05
1.55125e-11
0.0174365
2.21781e-05
1.7564e-11
0.0175104
0.000149381
2.14764e-11
0.0176444
0.000303022
2.89752e-11
0.0178168
0.000496913
3.44009e-11
0.0180242
0.00070237
3.82239e-11
0.0182495
0.000908865
4.04894e-11
0.0184854
0.00109329
4.19469e-11
0.0187245
0.00123611
4.27307e-11
0.0189677
0.00131984
4.39465e-11
0.0192201
0.00133523
4.52501e-11
0.0194885
0.00128742
4.70515e-11
0.0197687
0.00118188
4.83161e-11
0.0200517
0.00103754
4.83222e-11
0.0203225
0.000875339
4.6636e-11
0.0205685
0.000715129
4.34758e-11
0.0207756
0.000571885
3.93389e-11
0.0209393
0.000453116
3.49174e-11
0.0210631
0.000360172
3.07828e-11
0.0211495
0.000289992
2.71696e-11
0.0212074
0.000237462
2.41317e-11
0.0212451
0.000197517
2.15799e-11
0.0212669
0.000165885
1.93549e-11
0.0212747
0.000139453
1.73371e-11
0.0212774
0.000115979
1.55117e-11
0.0212758
9.46943e-05
1.36646e-11
0.0212665
7.37597e-05
1.20442e-11
0.0212591
5.4167e-05
9.51848e-12
0.0212547
3.4469e-05
9.22595e-12
0.0212513
1.48286e-05
8.38422e-12
0.0212459
-4.41212e-06
6.24801e-12
0.0212437
-2.31222e-05
4.79481e-12
0.0212455
-4.05679e-05
5.29866e-12
0.0212478
-5.75652e-05
3.88561e-12
0.0212535
-7.30062e-05
2.86939e-12
0.0212601
-8.76199e-05
2.03753e-12
-9.91088e-05
1.96839e-12
0.0169076
0.000365639
-1.82135e-10
0.0170321
0.000907599
-1.17078e-10
0.017387
0.00109141
-9.5801e-12
0.0178473
0.00118129
6.66825e-11
0.0183421
0.00121651
4.69951e-11
0.0188292
0.00117903
4.96184e-11
0.0192881
0.00108527
4.39758e-11
0.0197183
0.000967243
5.14048e-11
0.0201286
0.000850438
5.39608e-11
0.0205236
0.000747058
5.8084e-11
0.0208997
0.000659317
5.69779e-11
0.0212472
0.00058529
5.28138e-11
0.0215538
0.000521434
4.62835e-11
0.0218217
0.000464294
3.64844e-11
0.0220526
0.000411698
3.02507e-11
0.0222478
0.000362182
2.06667e-11
0.0224019
0.000314504
1.44075e-11
0.0225158
0.000268111
1.42854e-11
0.0225955
0.000222843
7.38168e-12
0.0226546
0.000178658
4.06001e-12
0.0227039
0.000135835
1.33049e-12
0.022752
9.44437e-05
-7.78379e-13
0.0228002
5.47453e-05
-2.10234e-12
0.0228451
1.64669e-05
-2.57117e-12
0.0228833
-1.94739e-05
-2.7766e-12
0.0229049
-5.41291e-05
-2.21192e-12
0.0229094
-8.79404e-05
-1.84227e-12
0.0228958
-0.000120422
-1.86978e-12
0.0228634
-0.00015179
-2.47913e-12
0.0228152
-0.000182099
-3.71785e-12
0.0227506
-0.000211306
-5.58051e-12
0.0226725
-0.000239286
-7.88564e-12
0.0225803
-0.000265911
-1.04582e-11
0.0224751
-0.000290953
-1.30085e-11
0.0223586
-0.00031436
-1.53894e-11
0.0222299
-0.000335849
-1.73119e-11
0.022092
-0.000355433
-1.87796e-11
0.0219422
-0.000372965
-1.9594e-11
0.0217827
-0.000388411
-1.98774e-11
0.0216092
-0.000401847
-1.95976e-11
0.0214234
-0.000413144
-1.89011e-11
0.0212215
-0.000422608
-1.78768e-11
0.0210053
-0.00043001
-1.66343e-11
0.0207748
-0.000435974
-1.53185e-11
0.0205332
-0.000439859
-1.39746e-11
0.0202826
-0.000442838
-1.27191e-11
0.0200292
-0.000443671
-1.15528e-11
0.019774
-0.000443869
-1.05116e-11
0.0195242
-0.000442002
-9.5939e-12
0.0192808
-0.000439387
-8.78657e-12
0.0190473
-0.000434741
-8.05144e-12
0.0188259
-0.000428913
-7.40003e-12
0.018616
-0.000421
-6.71104e-12
0.0184205
-0.000410923
-6.07652e-12
0.0182366
-0.000398862
-5.33603e-12
0.0180665
-0.000384207
-4.52311e-12
0.017907
-0.000366725
-3.6293e-12
0.0177584
-0.000345665
-2.41695e-12
0.0176233
-0.000320533
-9.86578e-13
0.0175016
-0.000289841
9.82286e-13
0.0173987
-0.000252593
3.14069e-12
0.0173179
-0.000206077
6.36101e-12
0.0172725
-0.000147867
9.99684e-12
0.0172414
-6.91316e-05
1.64657e-11
0.017246
6.90561e-06
1.72048e-11
0.017291
9.04941e-05
1.91369e-11
0.0173885
0.000186831
2.3183e-11
0.0175451
0.000308906
3.11854e-11
0.017751
0.000455116
3.77608e-11
0.0180006
0.000611318
4.32314e-11
0.0182809
0.000758728
4.70421e-11
0.0185845
0.000875763
5.00018e-11
0.0189003
0.000943852
5.17265e-11
0.0192219
0.000951276
5.33353e-11
0.0195467
0.000900879
5.37924e-11
0.0198623
0.000805889
5.29278e-11
0.0201567
0.000686149
5.05916e-11
0.020415
0.000562012
4.68913e-11
0.0206298
0.00044849
4.24573e-11
0.0207989
0.00035336
3.79018e-11
0.020924
0.000278605
3.36914e-11
0.0210133
0.000222076
3.00456e-11
0.0210729
0.000179991
2.69372e-11
0.0211087
0.00014848
2.4281e-11
0.0211286
0.000124207
2.19578e-11
0.0211374
0.000104618
1.98329e-11
0.0211333
8.80155e-05
1.78553e-11
0.0211272
7.30462e-05
1.59615e-11
0.0211175
5.94199e-05
1.416e-11
0.0211031
4.59062e-05
1.18072e-11
0.0210905
3.27562e-05
1.09765e-11
0.0210825
1.97268e-05
9.36184e-12
0.0210765
6.60498e-06
8.12109e-12
0.0210688
-6.40823e-06
7.26381e-12
0.0210627
-1.89085e-05
4.65705e-12
0.0210602
-3.06649e-05
5.28768e-12
0.0210576
-4.19528e-05
3.36371e-12
0.0210562
-5.24192e-05
2.7849e-12
0.0210535
-6.18733e-05
2.08159e-12
-6.90087e-05
1.78027e-12
0.0162892
0.000154378
-3.5552e-10
0.0167274
0.000472236
-2.43847e-10
0.0173152
0.000591687
-1.10187e-10
0.0179551
0.000635103
-4.6832e-11
0.0185816
0.000642456
-1.25928e-11
0.0191622
0.000610838
9.08838e-12
0.0196869
0.000551066
3.11119e-11
0.0201623
0.00048277
4.96436e-11
0.0206014
0.000419529
5.79006e-11
0.0210092
0.000365722
6.08043e-11
0.0213823
0.000321323
6.06367e-11
0.0217107
0.000284205
5.75173e-11
0.0219858
0.000252277
5.10434e-11
0.022208
0.000223652
4.29169e-11
0.0223872
0.000197137
3.40282e-11
0.0225318
0.000172061
2.41659e-11
0.0226359
0.000147961
1.57792e-11
0.0226989
0.000124587
1.59839e-11
0.0227305
0.000101977
8.25708e-12
0.0227497
8.00897e-05
4.31015e-12
0.022772
5.9043e-05
1.19007e-12
0.0228052
3.88242e-05
-1.07503e-12
0.0228472
1.96464e-05
-2.37205e-12
0.0228884
1.95656e-06
-2.75346e-12
0.0229215
-1.5783e-05
-2.28254e-12
0.022938
-3.2044e-05
-1.63401e-12
0.0229338
-4.77074e-05
-1.12623e-12
0.0229093
-6.2943e-05
-1.04081e-12
0.0228661
-7.77436e-05
-1.6177e-12
0.0228075
-9.21521e-05
-2.91109e-12
0.0227347
-0.000106145
-4.88051e-12
0.0226504
-0.000119656
-7.33232e-12
0.0225541
-0.000132649
-1.00697e-11
0.022447
-0.000144912
-1.27918e-11
0.02233
-0.000156529
-1.5343e-11
0.0222019
-0.000167144
-1.7407e-11
0.0220653
-0.000176967
-1.89934e-11
0.0219168
-0.00018566
-1.98814e-11
0.0217581
-0.000193411
-2.0207e-11
0.0215855
-0.000200077
-1.99311e-11
0.0214002
-0.000205716
-1.9223e-11
0.0211986
-0.00021041
-1.81557e-11
0.0209847
-0.000214101
-1.69046e-11
0.0207555
-0.000217052
-1.55273e-11
0.0205177
-0.000219023
-1.41826e-11
0.0202714
-0.000220475
-1.28924e-11
0.020022
-0.000220956
-1.17166e-11
0.019773
-0.000220979
-1.06854e-11
0.0195272
-0.000220153
-9.76743e-12
0.0192885
-0.000218656
-8.98754e-12
0.0190568
-0.000216485
-8.27295e-12
0.0188362
-0.00021336
-7.66968e-12
0.0186231
-0.000209491
-7.03055e-12
0.0184217
-0.000204472
-6.43693e-12
0.0182289
-0.00019838
-5.75978e-12
0.0180466
-0.000191172
-5.08072e-12
0.0178736
-0.000182411
-4.14424e-12
0.0177142
-0.000172271
-3.11804e-12
0.0175634
-0.000159844
-1.77478e-12
0.0174301
-0.000145235
-1.23022e-13
0.017311
-0.000127161
1.79375e-12
0.0172124
-0.000104833
4.78521e-12
0.0171435
-7.77135e-05
7.31256e-12
0.0170996
-3.81677e-05
1.51699e-11
0.0170946
3.16867e-08
1.60541e-11
0.017129
4.21385e-05
1.78292e-11
0.0172091
8.94261e-05
2.14193e-11
0.0173463
0.000147717
2.8384e-11
0.0175415
0.000224199
3.62893e-11
0.0177976
0.000307727
4.40618e-11
0.0181122
0.000389935
5.06564e-11
0.0184717
0.000456803
5.55218e-11
0.0188583
0.000495279
5.86354e-11
0.0192491
0.000497291
5.98383e-11
0.0196235
0.000464397
5.87338e-11
0.0199649
0.000407066
5.56604e-11
0.0202592
0.000338912
5.12041e-11
0.0205012
0.000272165
4.61494e-11
0.0206907
0.000214128
4.12011e-11
0.0208312
0.000167542
3.67639e-11
0.020932
0.000131977
3.2972e-11
0.0210002
0.000105459
2.97554e-11
0.0210416
8.57387e-05
2.6971e-11
0.0210641
7.08409e-05
2.45094e-11
0.0210725
5.92148e-05
2.22723e-11
0.0210687
4.97048e-05
2.0154e-11
0.0210578
4.15964e-05
1.81874e-11
0.0210469
3.4243e-05
1.6204e-11
0.0210297
2.74116e-05
1.44904e-11
0.0210135
2.11789e-05
1.17302e-11
0.0210017
1.4254e-05
1.14206e-11
0.0209961
7.52449e-06
1.00085e-11
0.0209905
1.07131e-06
7.94713e-12
0.0209856
-5.54527e-06
6.19849e-12
0.0209832
-1.15941e-05
4.45714e-12
0.0209845
-1.77193e-05
5.23779e-12
0.0209865
-2.33045e-05
3.2266e-12
0.0209889
-2.852e-05
2.69941e-12
0.0209892
-3.30448e-05
1.99836e-12
-3.59454e-05
1.65134e-12
0.0161634
-4.91444e-10
0.0166321
-3.73387e-10
0.0173444
-3.43208e-10
0.018061
-1.66241e-10
0.0187214
-8.32178e-11
0.0193213
-3.55083e-11
0.0198621
7.88106e-12
0.020351
4.06068e-11
0.0207963
5.93773e-11
0.0212021
6.60322e-11
0.0215653
6.37596e-11
0.0218783
6.09024e-11
0.0221347
5.28406e-11
0.0223345
4.33451e-11
0.0224859
3.25612e-11
0.0225994
2.47427e-11
0.0226778
1.70037e-11
0.022715
1.63864e-11
0.0227173
8.56596e-12
0.0227099
4.26789e-12
0.0227158
9.56291e-13
0.022745
-1.34025e-12
0.0227913
-2.52481e-12
0.022842
-2.65027e-12
0.0228828
-2.23273e-12
0.0229046
-1.43178e-12
0.0229029
-7.63826e-13
0.0228787
-5.99078e-13
0.0228339
-1.15689e-12
0.0227729
-2.47382e-12
0.0226975
-4.4872e-12
0.0226112
-7.00834e-12
0.0225133
-9.81885e-12
0.0224065
-1.26302e-11
0.0222905
-1.5261e-11
0.0221645
-1.73974e-11
0.0220305
-1.90479e-11
0.0218842
-1.997e-11
0.0217278
-2.03286e-11
0.0215566
-2.00538e-11
0.0213723
-1.93503e-11
0.0211717
-1.82611e-11
0.0209586
-1.70133e-11
0.0207309
-1.5602e-11
0.0204951
-1.42709e-11
0.0202516
-1.29541e-11
0.0200048
-1.17876e-11
0.0197595
-1.07544e-11
0.0195157
-9.84574e-12
0.0192794
-9.06719e-12
0.0190491
-8.38417e-12
0.0188282
-7.77218e-12
0.0186157
-7.18024e-12
0.0184125
-6.60063e-12
0.0182187
-5.95587e-12
0.0180333
-5.25234e-12
0.0178581
-4.40104e-12
0.0176928
-3.41617e-12
0.0175376
-2.13506e-12
0.0173979
-5.94226e-13
0.0172717
1.23031e-12
0.0171668
4.00659e-12
0.0170873
6.22566e-12
0.0170352
1.41636e-11
0.0170243
1.48994e-11
0.0170537
1.6592e-11
0.0171277
1.99209e-11
0.0172558
2.56272e-11
0.0174455
3.68197e-11
0.0177091
4.45859e-11
0.0180463
5.25562e-11
0.0184434
5.92268e-11
0.018875
6.33003e-11
0.0193076
6.41471e-11
0.0197109
6.17459e-11
0.0200632
5.70154e-11
0.0203545
5.12466e-11
0.0205852
4.55449e-11
0.0207594
4.04685e-11
0.0208865
3.62112e-11
0.0209758
3.26829e-11
0.0210332
2.96789e-11
0.0210666
2.70344e-11
0.0210821
2.46419e-11
0.021082
2.24273e-11
0.0210706
2.02851e-11
0.0210545
1.83342e-11
0.0210362
1.62968e-11
0.0210127
1.45549e-11
0.0209921
1.20292e-11
0.0209804
1.12062e-11
0.0209741
9.47393e-12
0.020965
8.26786e-12
0.0209595
6.73352e-12
0.0209573
4.84525e-12
0.0209596
5.32476e-12
0.0209629
3.05403e-12
0.0209656
2.67696e-12
0.020966
1.89775e-12
1.57679e-12
0.00744872
0.00884722
1.54114e-11
0.00282529
0.00462038
7.07237e-11
-0.00143349
0.00425569
1.28867e-10
-0.00331475
0.00188141
7.04709e-11
-0.00459124
0.00127531
1.02913e-10
-0.00525876
0.000665084
1.19257e-10
-0.00549343
0.00023209
1.23204e-10
-0.005801
0.000305761
1.12691e-10
-0.00614886
0.000345604
1.10872e-10
-0.00644579
0.000294306
1.08679e-10
-0.00666635
0.000217373
9.0067e-11
-0.0068338
0.000165848
9.72777e-11
-0.00695114
0.000117816
8.7252e-11
-0.00705066
9.43968e-05
1.01192e-10
-0.00716309
0.000103589
1.24029e-10
-0.00724833
7.48663e-05
1.79641e-10
-0.00727771
1.87479e-05
1.88024e-10
-0.00725853
-3.39859e-05
2.21966e-10
-0.00718395
-9.20049e-05
2.23417e-10
-0.00704722
-0.000155523
2.41622e-10
-0.00684915
-0.000217068
2.42043e-10
-0.00660021
-0.000266203
2.23178e-10
-0.00631478
-0.000300971
2.00889e-10
-0.00599652
-0.000330811
1.68162e-10
-0.00566074
-0.000345571
1.30956e-10
-0.00531208
-0.00035521
9.18085e-11
-0.00495264
-0.000362536
5.74261e-11
-0.00458449
-0.000369645
2.13244e-11
-0.00420488
-0.000379455
4.09225e-12
-0.00381274
-0.000389457
-1.08563e-11
-0.00341025
-0.000399046
-2.35945e-11
-0.00298908
-0.000417237
-2.9985e-11
-0.00255549
-0.000428926
-3.61727e-11
-0.00211724
-0.000433202
-3.87502e-11
-0.0016777
-0.000435126
-3.56336e-11
-0.00123679
-0.000437081
-3.02535e-11
-0.000792305
-0.000440411
-2.6257e-11
-0.000345593
-0.000442974
-1.9113e-11
0.000119283
-0.000462434
-5.37644e-13
0.000576288
-0.000456051
1.18357e-11
0.00101393
-0.000438107
3.47053e-11
0.00143363
-0.000421029
4.90397e-11
0.00184285
-0.000410909
5.94824e-11
0.00223711
-0.000397022
7.04637e-11
0.00261575
-0.000382673
8.45539e-11
0.0029811
-0.000370241
9.05977e-11
0.00334067
-0.000364907
8.4465e-11
0.00369422
-0.000360333
9.52059e-11
0.00403541
-0.000348324
1.023e-10
0.00436229
-0.000334569
1.07646e-10
0.00467608
-0.000321949
1.2952e-10
0.00497654
-0.000309573
1.30812e-10
0.00526522
-0.000297501
1.29845e-10
0.00554101
-0.000285616
1.06774e-10
0.0058053
-0.000273413
1.01239e-10
0.00605856
-0.000261892
1.01566e-10
0.00630076
-0.000249966
1.02372e-10
0.00653287
-0.000238714
8.54427e-11
0.00675443
-0.000227281
6.9578e-11
0.00696658
-0.000216397
5.59824e-11
0.00716938
-0.000205534
4.36948e-11
0.0073624
-0.000195177
4.35155e-11
0.00754651
-0.000184826
2.17377e-11
0.00772186
-0.000175074
6.82552e-12
0.0078888
-0.000165337
-7.65557e-12
0.00804719
-0.000156185
-2.14372e-11
0.00819829
-0.000147063
-3.42076e-11
0.00834124
-0.000138554
-4.5887e-11
0.00847717
-0.000130011
-5.61818e-11
0.00860603
-0.000122102
-6.51192e-11
0.00872743
-0.000114114
-7.27424e-11
0.00884278
-0.000106693
-7.89887e-11
0.0089505
-9.92417e-05
-8.421e-11
0.00905239
-9.22391e-05
-8.82936e-11
0.00914733
-8.52974e-05
-9.15617e-11
0.00923612
-7.87252e-05
-9.39986e-11
0.00931873
-7.22885e-05
-9.57596e-11
0.0093953
-6.61942e-05
-9.69275e-11
0.00946614
-6.02756e-05
-9.75931e-11
0.00953145
-5.46575e-05
-9.78716e-11
0.00959138
-4.92273e-05
-9.78543e-11
0.00964626
-4.40318e-05
-9.76149e-11
0.00969629
-3.90402e-05
-9.72344e-11
0.0097415
-3.42706e-05
-9.67993e-11
0.00978253
-2.96887e-05
-9.64056e-11
0.00981885
-2.5281e-05
-9.60419e-11
0.00985158
-2.11196e-05
-9.57413e-11
0.00987983
-1.70576e-05
-9.54331e-11
0.00990451
-1.30179e-05
-9.51828e-11
0.00992545
-9.41474e-06
-9.49099e-11
0.0099428
-5.90709e-06
-9.45311e-11
0.00995699
-2.27475e-06
-9.41005e-11
0.00996706
1.13746e-06
-9.37307e-11
0.009975
4.22264e-06
-9.33186e-11
0.00997863
7.55003e-06
-9.26744e-11
0.00997932
1.13479e-05
-9.19605e-11
0.00997489
1.57044e-05
-9.08192e-11
0.00996542
2.1158e-05
-8.93054e-11
0.00994849
2.81457e-05
-8.74306e-11
3.69958e-05
-8.59348e-11
0.0114612
0.0132527
2.36216e-11
0.00790204
0.0081777
6.40799e-11
0.00602857
0.00612459
8.27679e-11
0.00354497
0.00436301
7.37176e-11
0.00179918
0.0030193
1.02753e-10
0.000234742
0.00222526
1.2998e-10
-0.00125339
0.00172094
1.3418e-10
-0.00231669
0.00137304
1.10787e-10
-0.00301434
0.00104597
1.08958e-10
-0.00347856
0.000759578
1.16716e-10
-0.00376748
0.000505676
1.1961e-10
-0.00400465
0.000403056
8.67414e-11
-0.0042288
0.000341579
8.29696e-11
-0.00438516
0.000246914
9.13767e-11
-0.00448569
0.000196773
1.54396e-10
-0.00454245
0.00012293
1.80896e-10
-0.00453277
-1.31259e-06
1.55603e-10
-0.00445879
-0.000122453
2.31119e-10
-0.00432128
-0.000247666
2.33755e-10
-0.00410926
-0.000388391
2.69448e-10
-0.00383826
-0.000510397
2.6545e-10
-0.00352485
-0.000600819
2.43298e-10
-0.00318607
-0.000657777
2.05856e-10
-0.00282317
-0.000710835
1.79029e-10
-0.00245507
-0.000729036
1.36695e-10
-0.00207877
-0.000743157
1.02718e-10
-0.00169642
-0.000754406
6.02508e-11
-0.00130422
-0.000769952
3.22421e-11
-0.000900066
-0.000787987
1.28612e-11
-0.000484483
-0.000806923
3.8617e-12
-5.1058e-05
-0.000832345
-1.62229e-11
0.000376647
-0.000845495
-1.17912e-11
0.000801167
-0.000853388
-2.1141e-11
0.00122422
-0.000855411
-2.59907e-11
0.00164955
-0.00085907
-2.35633e-11
0.00207209
-0.000859026
-1.79681e-11
0.00249132
-0.000858169
-1.47694e-11
0.002907
-0.000856927
-1.08339e-11
0.00330235
-0.000856687
3.44073e-12
0.0036919
-0.000845786
1.22655e-11
0.00407989
-0.000826405
2.33156e-11
0.00446477
-0.000806262
4.38462e-11
0.004839
-0.000785362
4.06765e-11
0.00520472
-0.000763382
6.42972e-11
0.00555768
-0.000737436
6.17958e-11
0.00589791
-0.000713042
8.06916e-11
0.00622453
-0.000693608
8.89812e-11
0.00654345
-0.000682154
8.53697e-11
0.00685099
-0.000659511
9.01589e-11
0.00714758
-0.000635128
9.50857e-11
0.00743036
-0.000609308
1.15722e-10
0.0077013
-0.000584995
1.16868e-10
0.00795825
-0.000560074
1.15906e-10
0.00820393
-0.000536302
9.45931e-11
0.0084376
-0.000512149
8.97578e-11
0.0086596
-0.000488856
9.46172e-11
0.0088707
-0.000465386
8.80474e-11
0.00907097
-0.000442832
7.5338e-11
0.00926061
-0.000420216
6.3271e-11
0.00944061
-0.000398526
5.17144e-11
0.00961086
-0.000376954
4.18802e-11
0.00977186
-0.000356273
4.14305e-11
0.00992422
-0.000335829
2.12415e-11
0.0100675
-0.000316313
7.66274e-12
0.0102025
-0.000297094
-5.64151e-12
0.0103292
-0.000278806
-1.84514e-11
0.0104474
-0.000260869
-3.05318e-11
0.0105587
-0.000243779
-4.16236e-11
0.0106612
-0.000227124
-5.16812e-11
0.0107578
-0.000211127
-6.05242e-11
0.0108463
-0.000195634
-6.81924e-11
0.010929
-0.000180655
-7.46584e-11
0.0110044
-0.000166207
-8.01055e-11
0.0110739
-0.000152192
-8.45466e-11
0.0111366
-0.000138745
-8.8137e-11
0.0111936
-0.000125728
-9.09476e-11
0.0112443
-0.000113321
-9.30763e-11
0.0112897
-0.000101382
-9.46017e-11
0.0113292
-9.00401e-05
-9.56213e-11
0.0113638
-7.91534e-05
-9.62143e-11
0.0113931
-6.87907e-05
-9.64966e-11
0.0114175
-5.88252e-05
-9.6479e-11
0.0114374
-4.93205e-05
-9.63252e-11
0.0114528
-4.03012e-05
-9.60328e-11
0.0114643
-3.15278e-05
-9.58196e-11
0.0114716
-2.33574e-05
-9.54845e-11
0.0114757
-1.55356e-05
-9.52233e-11
0.0114756
-8.05988e-06
-9.48681e-11
0.0114722
-3.77692e-07
-9.45735e-11
0.0114661
5.26938e-06
-9.42577e-11
0.0114573
1.13191e-05
-9.39294e-11
0.0114463
1.73485e-05
-9.36246e-11
0.0114322
2.3385e-05
-9.30109e-11
0.0114158
2.93663e-05
-9.25667e-11
0.0113959
3.5661e-05
-9.18823e-11
0.0113737
4.24643e-05
-9.11442e-11
0.0113475
5.03412e-05
-8.99409e-11
0.0113176
5.97801e-05
-8.83645e-11
0.0112823
7.1865e-05
-8.63547e-11
8.74554e-05
-8.45981e-11
0.0153004
0.0151542
2.95579e-11
0.012777
0.010699
4.68746e-11
0.0105843
0.00831507
6.1492e-11
0.00847706
0.0064659
6.98565e-11
0.00649893
0.00499255
9.30043e-11
0.00481685
0.00389957
1.13662e-10
0.00340987
0.00312487
1.17531e-10
0.00226768
0.00251743
1.11382e-10
0.00130534
0.00201139
1.11267e-10
0.00045143
0.00161522
1.23057e-10
-0.000348389
0.00130691
1.28942e-10
-0.000994143
0.00104965
8.57775e-11
-0.0014605
0.00080587
9.19885e-11
-0.00178121
0.000564186
9.99608e-11
-0.00192123
0.000329566
1.52556e-10
-0.00192499
0.00011993
1.77461e-10
-0.00181444
-0.000122551
2.11552e-10
-0.0016594
-0.000292173
2.14042e-10
-0.00144986
-0.000476479
2.70122e-10
-0.00115005
-0.000710986
2.82269e-10
-0.000800429
-0.000886366
2.64527e-10
-0.000417036
-0.00101029
2.56391e-10
-6.48614e-06
-0.00108948
1.79898e-10
0.000375281
-0.001118
2.43035e-10
0.000764519
-0.00113817
1.52503e-10
0.00115719
-0.00115244
1.09317e-10
0.00155733
-0.00116891
7.58939e-11
0.00196627
-0.00119076
5.95964e-11
0.00238014
-0.00121247
3.91345e-11
0.00280052
-0.00123651
2.29476e-11
0.00321803
-0.00125951
7.55135e-12
0.00363949
-0.00127652
3.14469e-12
0.00406404
-0.00128649
-2.70323e-12
0.00449187
-0.00129215
-7.98217e-12
0.00491639
-0.00129257
-7.83773e-12
0.00533848
-0.00129071
-3.41725e-12
0.00575403
-0.00128354
1.53531e-12
0.00616173
-0.00127426
2.86401e-12
0.00655458
-0.00126023
8.05371e-12
0.00693819
-0.00124057
1.54559e-11
0.00731271
-0.00121348
2.10697e-11
0.00767796
-0.00118329
3.68624e-11
0.00802999
-0.0011506
3.40911e-11
0.00836985
-0.00111568
4.2793e-11
0.00869689
-0.00107793
5.24148e-11
0.00900957
-0.00103821
6.81754e-11
0.00930449
-0.00100201
7.40525e-11
0.00958232
-0.000973583
6.93899e-11
0.00985101
-0.000942316
8.84236e-11
0.0101077
-0.000905986
7.67521e-11
0.0103526
-0.000867759
7.96832e-11
0.0105829
-0.000828833
8.06512e-11
0.010801
-0.000791002
9.67105e-11
0.0110059
-0.000753583
8.67548e-11
0.0111989
-0.000717189
7.91484e-11
0.0113797
-0.000681285
7.82138e-11
0.0115501
-0.0006462
7.15191e-11
0.0117092
-0.000611672
6.311e-11
0.0118592
-0.00057795
5.44906e-11
0.0119987
-0.000545006
4.54127e-11
0.0121295
-0.000512844
4.05055e-11
0.0122506
-0.000481638
3.89034e-11
0.0123631
-0.000451221
2.08038e-11
0.012467
-0.000421855
9.17208e-12
0.0125626
-0.000393319
-2.45223e-12
0.0126509
-0.000365839
-1.39511e-11
0.0127313
-0.000339215
-2.49783e-11
0.0128052
-0.000313614
-3.54005e-11
0.0128718
-0.0002888
-4.50946e-11
0.0129319
-0.000264968
-5.38122e-11
0.0129856
-0.000241889
-6.15178e-11
0.0130327
-0.000219691
-6.82822e-11
0.013074
-0.000198201
-7.41259e-11
0.013109
-0.000177613
-7.9076e-11
0.0131387
-0.000157662
-8.32259e-11
0.0131625
-0.000138694
-8.66204e-11
0.0131816
-0.000120414
-8.93648e-11
0.0131953
-0.000103158
-9.14779e-11
0.0132047
-8.65627e-05
-9.31049e-11
0.0132092
-7.08994e-05
-9.42341e-11
0.0132099
-5.58445e-05
-9.50506e-11
0.0132057
-4.15073e-05
-9.5429e-11
0.0131984
-2.79928e-05
-9.56759e-11
0.0131869
-1.52432e-05
-9.56456e-11
0.013173
-2.82057e-06
-9.56881e-11
0.0131561
7.63044e-06
-9.54202e-11
0.013138
1.76342e-05
-9.51958e-11
0.0131171
2.73369e-05
-9.48273e-11
0.0130949
3.67809e-05
-9.44079e-11
0.0130695
4.5585e-05
-9.39963e-11
0.0130413
5.40413e-05
-9.34721e-11
0.0130115
6.2347e-05
-9.31346e-11
0.0129786
7.04886e-05
-9.24427e-11
0.0129443
7.8647e-05
-9.19372e-11
0.0129069
8.69243e-05
-9.10617e-11
0.0128678
9.57505e-05
-9.02125e-11
0.0128259
0.00010557
-8.88765e-11
0.0127816
0.000117163
-8.7179e-11
0.0127344
0.000131506
-8.49808e-11
0.000150143
-8.29689e-11
0.0174121
0.0159071
2.79496e-11
0.0157118
0.0123962
4.05358e-11
0.0140601
0.00996456
4.92203e-11
0.0123359
0.0081849
6.67783e-11
0.010633
0.00669005
8.31722e-11
0.00898373
0.00554072
1.02475e-10
0.00745936
0.0046414
1.06807e-10
0.00609815
0.00387123
1.0473e-10
0.00493167
0.00317635
1.01228e-10
0.00396175
0.00258594
1.11465e-10
0.00314165
0.00212783
1.12276e-10
0.00246336
0.00172872
8.62241e-11
0.00191293
0.00135455
9.64114e-11
0.00148659
0.000985331
1.1677e-10
0.00118554
0.000622361
1.24706e-10
0.00103659
0.000259152
1.40846e-10
0.00105232
-0.000151382
2.10838e-10
0.00123076
-0.000489826
2.10149e-10
0.00151254
-0.00078426
2.53533e-10
0.00187395
-0.00110067
2.82223e-10
0.00228403
-0.00132812
2.56398e-10
0.00270432
-0.00146345
2.52477e-10
0.00312414
-0.00154079
2.18506e-10
0.00354889
-0.00157331
1.99452e-10
0.00397499
-0.00159105
1.61427e-10
0.0044063
-0.00160684
1.28552e-10
0.00484581
-0.00162841
9.11798e-11
0.00528966
-0.00165266
6.88317e-11
0.00573923
-0.00167807
6.11617e-11
0.00618964
-0.00170149
3.73239e-11
0.00663941
-0.00172229
2.72779e-11
0.0070861
-0.00173603
2.19472e-11
0.00753093
-0.00174256
2.26574e-11
0.00796925
-0.00174177
1.21075e-11
0.00840114
-0.00173448
9.71189e-12
0.00882233
-0.0017223
9.79995e-12
0.0092308
-0.00170335
1.16498e-11
0.00962465
-0.00167998
1.29284e-11
0.0100021
-0.00165014
1.39599e-11
0.0103644
-0.00161548
1.66682e-11
0.0107118
-0.00157392
2.72958e-11
0.0110438
-0.00152917
3.13221e-11
0.0113589
-0.00148071
3.65663e-11
0.0116597
-0.0014311
4.30633e-11
0.011945
-0.00137844
4.04307e-11
0.0122143
-0.00132344
4.17737e-11
0.0124634
-0.001268
5.6401e-11
0.0126897
-0.00121826
6.13968e-11
0.0129045
-0.00117674
6.78454e-11
0.0131074
-0.00112854
6.56833e-11
0.0132964
-0.00107678
6.71318e-11
0.0134729
-0.00102492
6.59128e-11
0.0136364
-0.000973233
6.69914e-11
0.0137877
-0.0009231
6.57205e-11
0.0139274
-0.000873762
6.36306e-11
0.0140557
-0.000826053
6.00487e-11
0.0141736
-0.000779132
5.58384e-11
0.0142812
-0.000733833
5.05771e-11
0.0143794
-0.000689234
4.457e-11
0.0144686
-0.000646261
3.78752e-11
0.0145491
-0.000604054
3.90578e-11
0.0146218
-0.000563483
3.63153e-11
0.0146863
-0.000523819
2.19113e-11
0.0147439
-0.00048574
1.13555e-11
0.0147938
-0.000448717
1.71083e-12
0.0148371
-0.000413168
-8.05929e-12
0.0148734
-0.000378752
-1.78363e-11
0.0149032
-0.000345657
-2.73888e-11
0.0149267
-0.000313699
-3.64759e-11
0.0149437
-0.000282888
-4.50189e-11
0.0149551
-0.000253157
-5.30177e-11
0.0149603
-0.000224478
-6.01824e-11
0.0149602
-0.000196895
-6.6559e-11
0.0149547
-0.000170266
-7.2164e-11
0.014944
-0.000144857
-7.69976e-11
0.0149288
-0.000120446
-8.11372e-11
0.0149089
-9.73639e-05
-8.46753e-11
0.0148851
-7.52827e-05
-8.75589e-11
0.0148573
-5.43813e-05
-8.9988e-11
0.0148258
-3.44687e-05
-9.18508e-11
0.0147911
-1.58265e-05
-9.33507e-11
0.0147532
1.96302e-06
-9.42981e-11
0.0147142
1.70342e-05
-9.50212e-11
0.0146732
3.1923e-05
-9.53823e-11
0.0146307
4.61284e-05
-9.5478e-11
0.0145857
5.95862e-05
-9.54131e-11
0.014538
7.22486e-05
-9.52003e-11
0.0144888
8.4427e-05
-9.49241e-11
0.0144368
9.60476e-05
-9.44587e-11
0.0143841
0.000107135
-9.40173e-11
0.0143284
0.000117655
-9.33298e-11
0.0142726
0.000127728
-9.28186e-11
0.0142142
0.000137558
-9.19578e-11
0.0141556
0.00014712
-9.12504e-11
0.0140948
0.000156804
-9.0161e-11
0.0140336
0.000166667
-8.91052e-11
0.0139708
0.000177504
-8.75785e-11
0.0139074
0.000189743
-8.57157e-11
0.0138428
0.000204641
-8.32833e-11
0.000223782
-8.09064e-11
0.0185718
0.0161941
2.71835e-11
0.0175387
0.0134284
3.53757e-11
0.0163153
0.0111858
4.36185e-11
0.0150291
0.00946692
6.08352e-11
0.0136827
0.00803069
7.62146e-11
0.0123341
0.00688219
8.97715e-11
0.0110116
0.00595352
9.81329e-11
0.00973431
0.00513996
9.61596e-11
0.00849663
0.00440417
8.0787e-11
0.00735072
0.00372454
8.59182e-11
0.00636464
0.00310978
8.94313e-11
0.00554765
0.0025408
9.89138e-11
0.00489877
0.00199807
1.1511e-10
0.00441701
0.00145726
1.33312e-10
0.00411012
0.000915571
1.38164e-10
0.00397516
0.000376714
1.92909e-10
0.00395427
-0.000154692
2.04568e-10
0.00412977
-0.000693899
1.95906e-10
0.0044841
-0.00117472
2.50022e-10
0.00489868
-0.0015564
2.49597e-10
0.0053651
-0.00183565
2.27584e-10
0.00584662
-0.00199132
2.21996e-10
0.00633527
-0.00207456
1.98591e-10
0.00682378
-0.00210491
1.82765e-10
0.00730639
-0.00211064
1.61252e-10
0.00778578
-0.00211909
1.35188e-10
0.00825947
-0.00213248
1.24492e-10
0.0087289
-0.00215042
9.31506e-11
0.00919201
-0.00216791
8.96127e-11
0.00964929
-0.00218393
7.7366e-11
0.0100955
-0.00219285
6.75878e-11
0.0105317
-0.00219392
5.11178e-11
0.0109535
-0.00218455
4.4505e-11
0.0113624
-0.00216655
3.7186e-11
0.0117541
-0.00214046
3.77075e-11
0.0121276
-0.00210759
3.23535e-11
0.0124819
-0.00206865
2.30333e-11
0.0128161
-0.00202391
2.26405e-11
0.0131305
-0.00197432
2.81658e-11
0.0134265
-0.00191977
2.78499e-11
0.013706
-0.00186119
2.73707e-11
0.0139694
-0.00179906
2.67909e-11
0.0142186
-0.00173467
2.76065e-11
0.014451
-0.001669
3.12643e-11
0.0146672
-0.00160164
3.45851e-11
0.0148669
-0.00153118
2.79283e-11
0.0150503
-0.00145997
3.70596e-11
0.0152152
-0.00139259
3.13314e-11
0.0153631
-0.00133443
3.82819e-11
0.0155005
-0.00127643
3.87604e-11
0.0156293
-0.00121594
4.04992e-11
0.0157476
-0.00115448
4.24017e-11
0.0158563
-0.00109253
4.34635e-11
0.0159546
-0.00103219
4.36677e-11
0.0160438
-0.000972774
4.31944e-11
0.0161236
-0.00091551
4.21199e-11
0.0161947
-0.000859227
4.03681e-11
0.0162573
-0.000804996
3.7863e-11
0.0163117
-0.00075176
3.47338e-11
0.0163584
-0.000700438
3.18251e-11
0.0163973
-0.000650233
3.6847e-11
0.0164297
-0.000601828
3.41496e-11
0.0164548
-0.000554718
2.47373e-11
0.0164745
-0.000509308
1.42066e-11
0.0164877
-0.000465333
6.67152e-12
0.0164961
-0.000422941
-1.4452e-12
0.0164986
-0.00038202
-9.85516e-12
0.0164967
-0.000342533
-1.85014e-11
0.0164894
-0.000304456
-2.70723e-11
0.0164781
-0.000267682
-3.54438e-11
0.0164616
-0.00023223
-4.34264e-11
0.0164413
-0.00019803
-5.08993e-11
0.0164162
-0.000165124
-5.78809e-11
0.0163874
-0.000133502
-6.40047e-11
0.0163541
-0.000103287
-6.95937e-11
0.0163175
-7.45319e-05
-7.45802e-11
0.0162769
-4.72265e-05
-7.9079e-11
0.0162335
-2.16547e-05
-8.29e-11
0.0161873
2.38656e-06
-8.63023e-11
0.0161394
2.39936e-05
-8.89874e-11
0.0160902
4.46373e-05
-9.13105e-11
0.0160387
6.4112e-05
-9.30219e-11
0.0159848
8.25599e-05
-9.44314e-11
0.0159274
9.98602e-05
-9.51926e-11
0.0158687
0.00011658
-9.57555e-11
0.0158064
0.000132249
-9.57942e-11
0.0157428
0.000147233
-9.57267e-11
0.0156763
0.000161286
-9.54133e-11
0.0156084
0.000174717
-9.49149e-11
0.0155386
0.000187394
-9.43602e-11
0.0154671
0.000199395
-9.34536e-11
0.0153947
0.000210773
-9.27091e-11
0.0153206
0.000221614
-9.15148e-11
0.0152466
0.000232076
-9.05437e-11
0.0151714
0.000242298
-8.9082e-11
0.0150966
0.000252568
-8.77439e-11
0.0150216
0.000263307
-8.58609e-11
0.0149473
0.000275201
-8.37475e-11
0.0148737
0.000289024
-8.0964e-11
0.00030674
-7.79514e-11
0.0193705
0.0162259
2.266e-11
0.0187018
0.0140937
3.08416e-11
0.0178262
0.0120602
4.0291e-11
0.0168688
0.0104215
5.47268e-11
0.0158265
0.00906794
7.22502e-11
0.0147728
0.00793092
8.23999e-11
0.0137105
0.00700658
8.51703e-11
0.0126419
0.0061988
7.52792e-11
0.0115803
0.00545274
8.40817e-11
0.0105437
0.0047489
9.84065e-11
0.00957999
0.00405956
1.1632e-10
0.00871892
0.00338676
1.39411e-10
0.00800308
0.00269658
1.78794e-10
0.00745338
0.00198771
1.64837e-10
0.00708983
0.00125042
2.08191e-10
0.00692801
0.000505584
2.12487e-10
0.00696673
-0.000235737
2.09581e-10
0.00719159
-0.000964066
2.01145e-10
0.00758525
-0.00161957
1.68964e-10
0.00808145
-0.00210808
1.81225e-10
0.00860831
-0.00242031
1.74594e-10
0.00914786
-0.00258458
1.25692e-10
0.00967915
-0.00265531
1.73584e-10
0.0101979
-0.00267357
1.86439e-10
0.0106981
-0.00265615
1.93471e-10
0.0111786
-0.00264148
1.63077e-10
0.0116359
-0.00262987
1.57886e-10
0.0120692
-0.00262221
1.42081e-10
0.0124825
-0.00261579
1.29949e-10
0.012875
-0.00260677
1.06139e-10
0.0132483
-0.00259278
1.05412e-10
0.0136019
-0.00257094
8.52207e-11
0.0139372
-0.00254022
8.52997e-11
0.0142536
-0.00250111
7.46561e-11
0.014552
-0.00245465
6.39249e-11
0.0148325
-0.00240226
5.39076e-11
0.0150955
-0.0023446
4.55966e-11
0.0153424
-0.00228266
3.96289e-11
0.0155745
-0.00221723
3.49458e-11
0.0157919
-0.00214733
2.42069e-11
0.0159958
-0.00207411
2.70114e-11
0.0161853
-0.00199776
2.20018e-11
0.0163618
-0.00191989
1.84995e-11
0.0165254
-0.00184116
1.70056e-11
0.0166778
-0.00176244
1.71222e-11
0.0168189
-0.00168037
1.72479e-11
0.0169493
-0.00159757
1.76046e-11
0.0170668
-0.00151724
1.83308e-11
0.0171706
-0.00144427
1.98304e-11
0.0172641
-0.0013763
2.08667e-11
0.0173507
-0.00130859
2.16004e-11
0.0174292
-0.00123981
2.2732e-11
0.0175003
-0.00117027
2.42404e-11
0.017563
-0.0011019
2.56681e-11
0.0176178
-0.00103446
2.68037e-11
0.0176646
-0.00096914
2.75926e-11
0.0177034
-0.000905163
2.80028e-11
0.0177351
-0.000843295
2.79689e-11
0.017759
-0.000782848
2.76161e-11
0.0177764
-0.00072433
2.90693e-11
0.0177864
-0.000667347
3.3785e-11
0.0177904
-0.000612161
3.26829e-11
0.0177877
-0.000558631
2.78511e-11
0.0177799
-0.000506824
1.7629e-11
0.0177662
-0.000456734
1.18491e-11
0.017748
-0.000408288
5.36383e-12
0.0177249
-0.000361524
-1.7194e-12
0.0176974
-0.00031629
-9.38795e-12
0.0176657
-0.000272638
-1.73606e-11
0.0176298
-0.000230416
-2.54578e-11
0.0175901
-0.000189719
-3.35017e-11
0.0175465
-0.00015045
-4.11923e-11
0.0174997
-0.000112773
-4.86909e-11
0.017449
-7.64627e-05
-5.50442e-11
0.0173959
-4.23703e-05
-6.16465e-11
0.0173396
-1.00013e-05
-6.7464e-11
0.0172827
1.95253e-05
-7.30387e-11
0.0172237
4.71706e-05
-7.78278e-11
0.0171639
7.34636e-05
-8.20998e-11
0.0171003
9.83754e-05
-8.56417e-11
0.0170355
0.000121832
-8.87912e-11
0.0169669
0.000144184
-9.11601e-11
0.0168971
0.000165137
-9.32567e-11
0.0168237
0.000185102
-9.45511e-11
0.0167492
0.000203723
-9.5604e-11
0.0166719
0.000221611
-9.59791e-11
0.016593
0.000238129
-9.61012e-11
0.0165123
0.000254038
-9.58665e-11
0.0164298
0.000268609
-9.53005e-11
0.0163464
0.000282704
-9.4673e-11
0.0162611
0.000295519
-9.35517e-11
0.0161756
0.000307901
-9.25887e-11
0.0160885
0.000319156
-9.10491e-11
0.0160018
0.000330097
-8.97566e-11
0.0159142
0.000340222
-8.78807e-11
0.0158275
0.00035033
-8.61712e-11
0.0157408
0.000360253
-8.38607e-11
0.0156559
0.000370996
-8.1381e-11
0.0155724
0.000382849
-7.82002e-11
0.000397485
-7.44857e-11
0.0199437
0.0162044
2.07818e-11
0.0195461
0.0144897
2.80587e-11
0.0188656
0.0127359
3.90392e-11
0.0181213
0.0111619
5.15186e-11
0.0173238
0.00985997
6.59106e-11
0.0164845
0.00876325
7.26106e-11
0.0156508
0.00783272
6.88055e-11
0.014807
0.00702967
8.28675e-11
0.0139619
0.00628583
1.0473e-10
0.0131153
0.00557521
1.3462e-10
0.0123064
0.00484407
1.58819e-10
0.0115722
0.00409646
2.27983e-10
0.0109414
0.00329283
2.5033e-10
0.0104484
0.00244904
2.56773e-10
0.0101262
0.00153544
2.46461e-10
0.0100211
0.000570817
2.35053e-10
0.0100981
-0.00035811
1.77852e-10
0.010342
-0.00124932
1.26291e-10
0.0107059
-0.00202763
1.08245e-10
0.0111167
-0.00255789
7.55464e-11
0.0115281
-0.00286472
6.85594e-11
0.0120125
-0.00309961
6.73393e-11
0.012483
-0.00315391
1.07483e-10
0.0128712
-0.00310088
1.39712e-10
0.0133062
-0.00312832
2.32172e-10
0.0137265
-0.00309882
2.01671e-10
0.0141209
-0.00305892
2.04327e-10
0.0144865
-0.00301783
1.87602e-10
0.0148257
-0.00298182
1.55722e-10
0.0151434
-0.00294892
1.41162e-10
0.0154423
-0.00291401
1.41579e-10
0.015724
-0.00287321
1.18413e-10
0.0159908
-0.00282552
1.17038e-10
0.0162421
-0.0027706
9.31421e-11
0.0164801
-0.00270926
7.92891e-11
0.0167044
-0.00264205
6.53335e-11
0.0169162
-0.00257034
5.28454e-11
0.0171169
-0.00249563
4.22368e-11
0.0173057
-0.00241685
3.3188e-11
0.0174834
-0.0023347
3.29086e-11
0.0176504
-0.00224979
2.40165e-11
0.0178071
-0.00216253
1.62847e-11
0.0179542
-0.00207396
1.35418e-11
0.0180912
-0.00198475
1.44953e-11
0.0182191
-0.00189641
7.96671e-12
0.0183367
-0.00180445
7.67593e-12
0.0184454
-0.00171235
7.21653e-12
0.0185432
-0.0016212
6.77825e-12
0.0186278
-0.00153443
6.56528e-12
0.018703
-0.00145755
6.51455e-12
0.0187689
-0.00138045
7.81372e-12
0.0188264
-0.00130418
9.67103e-12
0.0188773
-0.00122789
1.37661e-11
0.0189205
-0.00115244
1.95986e-11
0.0189563
-0.00107779
2.32351e-11
0.0189844
-0.00100493
2.42773e-11
0.0190047
-0.000933638
2.38689e-11
0.0190181
-0.000864384
2.38785e-11
0.019024
-0.000796944
2.44728e-11
0.0190236
-0.000731419
2.57061e-11
0.0190163
-0.000667795
2.96929e-11
0.0190032
-0.000605981
3.16706e-11
0.0189839
-0.000546131
3.0551e-11
0.0189593
-0.000488033
2.65116e-11
0.0189293
-0.0004319
1.8199e-11
0.0188947
-0.000377445
1.22585e-11
0.0188553
-0.000324862
6.38599e-12
0.0188117
-0.000273862
-3.62786e-13
0.0187639
-0.000224624
-7.71972e-12
0.018712
-0.000176918
-1.55037e-11
0.0186562
-0.000131001
-2.34852e-11
0.0185967
-8.66922e-05
-3.13267e-11
0.0185337
-4.44648e-05
-3.91254e-11
0.0184673
-3.92797e-06
-4.53177e-11
0.0184006
3.20663e-05
-5.33705e-11
0.0183318
6.70537e-05
-6.06698e-11
0.0182606
0.000100135
-6.69311e-11
0.0181859
0.000131372
-7.25007e-11
0.0181092
0.000160893
-7.76544e-11
0.0180292
0.000188881
-8.19764e-11
0.0179473
0.000215263
-8.58943e-11
0.0178624
0.000240254
-8.89338e-11
0.0177759
0.000263696
-9.16371e-11
0.0176869
0.000285869
-9.34958e-11
0.0175964
0.000306535
-9.5008e-11
0.0175042
0.000326125
-9.57982e-11
0.0174103
0.000344279
-9.61711e-11
0.0173155
0.000361471
-9.60872e-11
0.0172189
0.000377291
-9.55355e-11
0.017122
0.000392223
-9.48236e-11
0.0170235
0.000405876
-9.35678e-11
0.0169251
0.000418656
-9.23359e-11
0.0168257
0.000430285
-9.05165e-11
0.0167269
0.000441093
-8.88007e-11
0.0166278
0.000450986
-8.65115e-11
0.0165299
0.000460254
-8.42796e-11
0.0164326
0.000469079
-8.14654e-11
0.0163375
0.000477878
-7.84166e-11
0.0162443
0.000487298
-7.47455e-11
0.000498049
-7.0103e-11
0.0204279
0.0161287
1.69788e-11
0.0201743
0.0147426
2.85295e-11
0.0196814
0.0132269
3.83804e-11
0.0190486
0.0117897
4.88757e-11
0.0183897
0.0105133
5.28202e-11
0.0177114
0.0094334
5.93509e-11
0.0170252
0.0085088
7.5604e-11
0.0163493
0.00769215
1.01169e-10
0.0156826
0.00693214
1.43932e-10
0.0150374
0.00619774
2.04892e-10
0.0144377
0.00541081
2.6732e-10
0.0138789
0.00461276
3.00122e-10
0.0133649
0.00376605
3.21344e-10
0.0130046
0.00276599
3.19062e-10
0.0128567
0.00162936
3.21411e-10
0.012845
0.000550239
1.89856e-10
0.0129772
-0.000528246
1.42719e-10
0.0132026
-0.00151344
1.03224e-10
0.0134317
-0.00228322
4.71541e-11
0.0136329
-0.00276611
-1.07096e-10
0.0138375
-0.00308416
-1.20805e-11
0.0139912
-0.00326681
3.82749e-12
0.0142789
-0.00346112
4.36279e-11
0.0147087
-0.0035567
1.36791e-10
0.0150403
-0.00349175
1.92066e-10
0.0153874
-0.00348588
2.35698e-10
0.01576
-0.00347169
2.56151e-10
0.0161081
-0.0034033
2.28009e-10
0.0164331
-0.00334146
2.21079e-10
0.0167319
-0.00327971
1.84787e-10
0.0170096
-0.00322064
1.66387e-10
0.0172688
-0.00315988
1.49648e-10
0.0175147
-0.00309588
1.3281e-10
0.0177478
-0.00302696
1.15223e-10
0.017971
-0.00295235
9.80126e-11
0.0181839
-0.00287344
9.02734e-11
0.0183868
-0.00278928
6.49064e-11
0.0185784
-0.00270107
5.11506e-11
0.018759
-0.00260884
3.77199e-11
0.0189281
-0.00251418
3.51397e-11
0.0190862
-0.00241703
2.13136e-11
0.0192329
-0.00231798
1.48824e-11
0.0193689
-0.00221723
9.68992e-12
0.0194939
-0.00211689
3.64746e-12
0.0196083
-0.00201679
-1.44959e-12
0.0197146
-0.00191673
-2.17972e-12
0.0198118
-0.00181428
-3.31439e-12
0.0198982
-0.00171237
-4.48862e-12
0.0199732
-0.00161285
-5.40065e-12
0.0200341
-0.00152199
-6.2202e-12
0.0200853
-0.00143496
-4.44846e-12
0.0201283
-0.00135099
-2.69851e-12
0.0201635
-0.00126743
-1.38351e-13
0.0201915
-0.00118518
3.28097e-12
0.0202114
-0.00110344
7.18697e-12
0.0202244
-0.00102351
1.17003e-11
0.0202291
-0.000945023
1.936e-11
0.020227
-0.000868714
2.30894e-11
0.0202168
-0.00079432
2.37409e-11
0.0202
-0.000722077
2.38624e-11
0.0201757
-0.000651892
2.44716e-11
0.0201454
-0.000583742
2.61263e-11
0.0201088
-0.000517681
3.08507e-11
0.0200671
-0.000453569
3.12964e-11
0.0200201
-0.000391495
2.86502e-11
0.0199685
-0.000331277
2.18574e-11
0.0199122
-0.00027296
1.39611e-11
0.0198516
-0.000216418
8.12497e-12
0.0197866
-0.000161654
1.35301e-12
0.0197179
-0.000108696
-6.05555e-12
0.0196456
-5.77337e-05
-1.38837e-11
0.0195704
-9.21896e-06
-2.16014e-11
0.019494
3.59916e-05
-3.00415e-11
0.0194166
7.90781e-05
-3.96351e-11
0.0193363
0.000119538
-4.67825e-11
0.0192533
0.000157882
-5.3774e-11
0.0191685
0.000194394
-6.07152e-11
0.0190806
0.000228867
-6.69644e-11
0.0189912
0.000261517
-7.28827e-11
0.0188986
0.00029229
-7.78977e-11
0.018805
0.000321312
-8.2531e-11
0.0187084
0.000348641
-8.62193e-11
0.018611
0.000374243
-8.94806e-11
0.0185112
0.000398356
-9.18858e-11
0.0184104
0.000420753
-9.37845e-11
0.018308
0.000441864
-9.50048e-11
0.0182041
0.000461314
-9.56063e-11
0.0180994
0.000479609
-9.57717e-11
0.0179929
0.000496316
-9.52566e-11
0.0178863
0.000511908
-9.45638e-11
0.017778
0.000526022
-9.31698e-11
0.0176702
0.000538981
-9.17558e-11
0.0175611
0.000550598
-8.96455e-11
0.0174532
0.000560992
-8.75675e-11
0.0173448
0.000570238
-8.48335e-11
0.0172382
0.000578266
-8.20693e-11
0.0171321
0.000585491
-7.86737e-11
0.0170288
0.000591768
-7.49359e-11
0.0169276
0.000598092
-7.0667e-11
0.000604413
-6.48849e-11
0.0208034
0.0160139
1.78497e-11
0.0206644
0.0148775
2.32737e-11
0.0203143
0.0135754
2.92826e-11
0.0198228
0.0122773
3.87e-11
0.0192521
0.0110768
5.17747e-11
0.0186715
0.0100065
7.07417e-11
0.0180962
0.00907093
9.79117e-11
0.0175279
0.00824241
1.28734e-10
0.0169968
0.00743825
1.90273e-10
0.0165287
0.00663075
2.91021e-10
0.0160471
0.00584066
3.7674e-10
0.0156265
0.00498574
3.93664e-10
0.0153547
0.00398231
4.23595e-10
0.0152719
0.00278412
4.60003e-10
0.0152441
0.00160933
3.08011e-10
0.0153438
0.000421704
1.42103e-10
0.0154865
-0.000699303
8.88208e-11
0.0156048
-0.00165196
3.53226e-11
0.0156162
-0.00229185
-1.3074e-10
0.0156207
-0.00276347
-1.72552e-10
0.015654
-0.00311167
-1.19743e-10
0.0157473
-0.00336779
1.40042e-11
0.0158223
-0.00354589
3.3276e-11
0.0159971
-0.00374517
4.72163e-11
0.0163508
-0.00386716
1.09676e-10
0.0166786
-0.00384932
2.01021e-10
0.0169894
-0.0038257
2.9225e-10
0.0173419
-0.0037984
2.98016e-10
0.0176931
-0.00373231
2.57602e-10
0.0180176
-0.00363992
2.45088e-10
0.0183105
-0.00354648
2.17094e-10
0.0185752
-0.00345499
1.77543e-10
0.0188176
-0.00336567
1.5297e-10
0.0190423
-0.0032768
1.42273e-10
0.0192548
-0.003186
1.21621e-10
0.0194545
-0.00309209
1.01971e-10
0.0196425
-0.0029933
8.41658e-11
0.0198197
-0.0028911
5.7276e-11
0.0199842
-0.00278447
5.13305e-11
0.0201373
-0.00267625
3.15965e-11
0.020278
-0.00256518
2.12555e-11
0.0204054
-0.00245207
1.93346e-11
0.0205217
-0.00233908
6.23835e-12
0.0206263
-0.00222671
-2.51398e-13
0.0207207
-0.00211481
-5.42315e-12
0.0208072
-0.00200565
-9.56122e-12
0.0208849
-0.0018933
-1.00808e-11
0.0209527
-0.00178147
-1.09708e-11
0.0210105
-0.00167103
-1.1906e-11
0.0210556
-0.00156754
-1.29584e-11
0.0210892
-0.00146969
-1.10825e-11
0.0211139
-0.00137694
-9.425e-12
0.0211304
-0.00128576
-7.31643e-12
0.0211403
-0.00119668
-4.12623e-12
0.0211426
-0.00110859
1.13503e-13
0.0211388
-0.00102237
4.81351e-12
0.0211274
-0.000937646
9.73932e-12
0.0211101
-0.000855057
1.87713e-11
0.0210853
-0.000774467
2.20538e-11
0.0210545
-0.000696135
2.19881e-11
0.0210166
-0.000620011
2.26877e-11
0.0209728
-0.000546105
2.39549e-11
0.0209226
-0.000474415
2.50605e-11
0.0208671
-0.000404836
2.67881e-11
0.0208064
-0.000337362
3.26084e-11
0.0207411
-0.000271854
3.12328e-11
0.0206713
-0.000208287
2.54262e-11
0.0205974
-0.000146624
1.5819e-11
0.0205195
-8.67248e-05
9.42423e-12
0.0204385
-2.94108e-05
2.66966e-12
0.0203553
2.49872e-05
-4.90007e-12
0.0202706
7.65217e-05
-1.35965e-11
0.0201835
0.000125473
-2.1976e-11
0.0200941
0.000172004
-3.08491e-11
0.0200025
0.000216166
-3.90739e-11
0.0199081
0.000257902
-4.6729e-11
0.0198125
0.000297475
-5.43201e-11
0.019714
0.000334888
-6.11694e-11
0.019615
0.000370177
-6.77582e-11
0.0195133
0.000403477
-7.34057e-11
0.0194115
0.000434657
-7.86741e-11
0.0193075
0.000464093
-8.29631e-11
0.0192033
0.000491405
-8.67327e-11
0.0190974
0.000517225
-8.96367e-11
0.0189908
0.000540919
-9.18832e-11
0.0188831
0.000563323
-9.34799e-11
0.0187741
0.00058365
-9.4298e-11
0.0186647
0.000602803
-9.46957e-11
0.0185538
0.000619969
-9.42517e-11
0.018443
0.000635965
-9.35922e-11
0.0183307
0.000650088
-9.20996e-11
0.0182191
0.000662951
-9.05188e-11
0.0181066
0.000674047
-8.81391e-11
0.0179953
0.000683723
-8.57022e-11
0.0178839
0.000691722
-8.25014e-11
0.0177744
0.000698133
-7.91645e-11
0.017666
0.000703006
-7.50955e-11
0.0175607
0.000706202
-7.05384e-11
0.0174584
0.000708465
-6.55012e-11
0.000709413
-5.83773e-11
0.0211031
0.0159262
2.27306e-11
0.0210298
0.0149467
3.07555e-11
0.0207834
0.0138172
3.88807e-11
0.0204093
0.0126456
5.05063e-11
0.019957
0.0115223
6.81717e-11
0.0194602
0.0104892
9.75928e-11
0.0189771
0.00954018
1.28798e-10
0.0185187
0.00867531
2.03674e-10
0.0181206
0.00779881
3.07781e-10
0.0177127
0.00698608
4.29904e-10
0.0173834
0.00611251
4.56397e-10
0.0171967
0.00511304
5.10578e-10
0.017199
0.00389727
6.0086e-10
0.0172596
0.00266143
4.71987e-10
0.017359
0.00147692
1.82924e-10
0.0174771
0.000273762
1.65351e-10
0.01755
-0.000793798
5.53021e-11
0.0174868
-0.00158993
-9.02812e-11
0.0173734
-0.00214805
-3.17684e-10
0.0172437
-0.00260986
-2.48273e-10
0.0171527
-0.00300602
-1.57093e-10
0.0171253
-0.00334049
-5.80622e-11
0.017175
-0.00360739
4.00768e-11
0.017223
-0.00380704
5.53032e-11
0.0173587
-0.00402018
8.97948e-11
0.0176387
-0.00415634
1.58362e-10
0.0179495
-0.00417028
2.34492e-10
0.0182177
-0.00410892
2.78823e-10
0.0185342
-0.00409187
2.73092e-10
0.0188689
-0.00401538
2.74626e-10
0.0191802
-0.00389593
2.38296e-10
0.0194586
-0.00376807
2.07686e-10
0.0197058
-0.00364443
1.75168e-10
0.0199272
-0.00352638
1.45566e-10
0.0201299
-0.00341252
1.20122e-10
0.0203162
-0.00329934
1.10745e-10
0.0204913
-0.00318481
7.86872e-11
0.0206529
-0.00306786
7.35393e-11
0.0208038
-0.0029476
5.70917e-11
0.0209426
-0.00282525
3.48256e-11
0.0210682
-0.00270041
2.35373e-11
0.0211833
-0.00257589
2.26002e-11
0.0212868
-0.00244998
9.18056e-12
0.0213795
-0.00232543
3.68579e-13
0.0214631
-0.00220226
-6.81453e-12
0.0215383
-0.00208326
-1.0468e-11
0.0216058
-0.00196161
-1.11768e-11
0.0216651
-0.00184104
-1.23269e-11
0.0217155
-0.00172097
-1.34751e-11
0.021753
-0.00160534
-1.44908e-11
0.0217806
-0.00149852
-1.39703e-11
0.0217968
-0.00139517
-1.19439e-11
0.0218038
-0.00129551
-1.01775e-11
0.0218039
-0.00119906
-7.53023e-12
0.0217973
-0.00110454
-3.52215e-12
0.021785
-0.00101209
1.40511e-12
0.0217661
-0.000921464
6.90579e-12
0.0217409
-0.000832815
1.56488e-11
0.0217083
-0.000746342
2.08136e-11
0.0216691
-0.000661999
2.07458e-11
0.0216228
-0.000580102
2.21036e-11
0.0215703
-0.000500407
2.3951e-11
0.0215115
-0.000423175
2.53929e-11
0.0214471
-0.000348069
2.6229e-11
0.0213771
-0.000275248
2.69978e-11
0.0213022
-0.000204383
3.35297e-11
0.0212224
-0.000135603
3.2766e-11
0.0211383
-6.87404e-05
2.6511e-11
0.0210507
-4.36145e-06
1.75637e-11
0.0209615
5.62296e-05
9.50088e-12
0.0208704
0.000114453
1.78636e-12
0.0207768
0.00016992
-6.43281e-12
0.0206814
0.000222677
-1.48146e-11
0.0205833
0.000272872
-2.33026e-11
0.0204834
0.000320509
-3.19377e-11
0.0203806
0.000365643
-4.00758e-11
0.0202765
0.000408227
-4.81364e-11
0.0201697
0.000448511
-5.54595e-11
0.0200622
0.000486302
-6.2568e-11
0.0199525
0.000522016
-6.87497e-11
0.0198424
0.000555254
-7.45294e-11
0.0197306
0.000586664
-7.93363e-11
0.0196184
0.000615616
-8.35401e-11
0.0195052
0.000642968
-8.68716e-11
0.0193912
0.000667899
-8.94276e-11
0.0192768
0.000691382
-9.13156e-11
0.0191611
0.000712527
-9.23209e-11
0.0190456
0.00073228
-9.28706e-11
0.0189287
0.000749816
-9.24959e-11
0.0188123
0.000765905
-9.18299e-11
0.0186947
0.000779899
-9.02579e-11
0.0185781
0.000792281
-8.84927e-11
0.0184609
0.000802639
-8.5856e-11
0.0183451
0.000811099
-8.30404e-11
0.0182296
0.000817511
-7.93458e-11
0.0181165
0.000821576
-7.53757e-11
0.0180049
0.000823497
-7.05759e-11
0.0178971
0.00082258
-6.50133e-11
0.0177929
0.000819846
-5.90631e-11
0.000813941
-5.04139e-11
0.0214205
0.0158986
3.69271e-11
0.0213528
0.0150112
4.47198e-11
0.0211676
0.0139963
5.75186e-11
0.0208709
0.0129338
7.57886e-11
0.0205106
0.01187
9.63285e-11
0.0201178
0.010867
1.44745e-10
0.0197263
0.00990166
2.2522e-10
0.0194011
0.00896324
3.11408e-10
0.01907
0.00806886
4.63858e-10
0.0188352
0.00715923
5.00588e-10
0.0187243
0.00614741
5.81854e-10
0.0188255
0.00492055
7.3694e-10
0.0189647
0.00366754
6.72838e-10
0.0190991
0.00248067
2.61781e-10
0.0192923
0.00124734
2.47836e-10
0.0194004
0.00014366
1.34199e-10
0.0193426
-0.000733498
-5.37219e-11
0.0191068
-0.00132324
-3.77426e-10
0.018864
-0.00187489
-3.16187e-10
0.0186479
-0.00236746
-2.42172e-10
0.0184775
-0.00281987
-1.57268e-10
0.018368
-0.00322569
-7.83264e-11
0.0183291
-0.00357479
1.0428e-12
0.0183617
-0.00385559
7.77688e-11
0.0183903
-0.00406549
8.68812e-11
0.0184742
-0.00425786
1.02412e-10
0.018681
-0.00440123
1.52421e-10
0.0189816
-0.00444482
2.15904e-10
0.0192062
-0.00435467
2.38326e-10
0.0194831
-0.00433327
2.5657e-10
0.019796
-0.00425002
2.68361e-10
0.0200936
-0.00410542
2.53364e-10
0.020368
-0.00395492
2.21669e-10
0.0206149
-0.00380306
1.72135e-10
0.0208353
-0.00365674
1.53141e-10
0.0210333
-0.00351564
1.10486e-10
0.0212112
-0.00337862
1.00464e-10
0.0213729
-0.00324282
8.0698e-11
0.0215199
-0.00310758
5.18354e-11
0.0216538
-0.00297065
4.72313e-11
0.0217747
-0.00283326
3.04859e-11
0.0218843
-0.00269456
2.09762e-11
0.0219859
-0.00255769
1.73464e-11
0.0220778
-0.00242113
4.26986e-12
0.0221603
-0.00228632
-1.92586e-12
0.0222323
-0.0021554
-4.6452e-12
0.0222993
-0.00202725
-9.45307e-12
0.0223559
-0.00189681
-1.00842e-11
0.0224017
-0.0017666
-1.11192e-11
0.0224357
-0.00163982
-1.22192e-11
0.0224562
-0.00152017
-1.3459e-11
0.0224663
-0.00140704
-1.1196e-11
0.0224672
-0.00129871
-9.49659e-12
0.0224609
-0.00119427
-7.4203e-12
0.022447
-0.00109264
-4.02355e-12
0.0224275
-0.000993748
4.49084e-13
0.0224007
-0.000897034
5.81634e-12
0.0223682
-0.000802484
1.3711e-11
0.0223283
-0.000710137
2.02774e-11
0.0222822
-0.000620006
2.0273e-11
0.022229
-0.000532329
2.17423e-11
0.0221696
-0.000446997
2.38837e-11
0.0221041
-0.000364172
2.56513e-11
0.0220329
-0.000283646
2.67621e-11
0.0219565
-0.000205426
2.72943e-11
0.0218751
-0.000129293
2.84761e-11
0.021789
-5.54197e-05
3.47839e-11
0.0216993
1.55878e-05
3.28307e-11
0.021607
8.36878e-05
2.21466e-11
0.0215111
0.000148549
1.41789e-11
0.0214126
0.000210611
7.13767e-12
0.0213116
0.000269783
-5.50887e-13
0.0212086
0.000326241
-8.71775e-12
0.0211033
0.000379847
-1.70213e-11
0.0209965
0.000430791
-2.56165e-11
0.0208874
0.000478934
-3.39119e-11
0.0207773
0.00052441
-4.22326e-11
0.0206651
0.00056724
-4.99009e-11
0.0205525
0.000607449
-5.73673e-11
0.0204381
0.000645266
-6.39515e-11
0.0203236
0.000680489
-7.00923e-11
0.0202079
0.000713584
-7.5298e-11
0.0200918
0.000744114
-7.98287e-11
0.019975
0.000772725
-8.35079e-11
0.0198572
0.000798827
-8.63269e-11
0.0197392
0.000823124
-8.84526e-11
0.0196201
0.000845009
-8.9629e-11
0.019501
0.000865098
-9.02746e-11
0.0193808
0.00088289
-8.99608e-11
0.0192612
0.000898793
-8.92332e-11
0.0191408
0.000912471
-8.75727e-11
0.0190214
0.000924042
-8.55618e-11
0.018902
0.000933342
-8.26355e-11
0.0187844
0.00094014
-7.93433e-11
0.0186677
0.000944423
-7.51412e-11
0.0185539
0.000945559
-7.03857e-11
0.0184424
0.00094371
-6.47428e-11
0.0183355
0.000937723
-5.78323e-11
0.0182335
0.000928502
-5.06402e-11
0.000914799
-4.051e-11
0.0217418
0.0159241
5.07034e-11
0.0216564
0.0150906
6.13918e-11
0.0215
0.0141453
7.95758e-11
0.0212663
0.0131557
1.07802e-10
0.0209798
0.0121376
1.57433e-10
0.0206813
0.0111417
2.23489e-10
0.0204042
0.0101362
3.45466e-10
0.0201568
0.00914488
5.16145e-10
0.0199671
0.00818969
5.45693e-10
0.019923
0.00712823
6.22862e-10
0.0201037
0.00588274
7.38678e-10
0.0203238
0.00457736
9.04813e-10
0.0205465
0.00336741
5.85796e-10
0.0207926
0.00220422
1.77238e-10
0.0209212
0.00108925
1.2236e-10
0.0208811
0.000172369
1.08021e-11
0.0206181
-0.000444159
-2.63307e-10
0.0203558
-0.00102632
-3.25647e-10
0.0200841
-0.00156861
-2.74667e-10
0.0198398
-0.00209756
-2.04383e-10
0.0196347
-0.00260087
-1.33813e-10
0.0194768
-0.0030646
-7.13239e-11
0.0193708
-0.00347233
-1.36998e-11
0.0193229
-0.00381692
4.64752e-11
0.0193369
-0.00409162
7.15778e-11
0.0193571
-0.00429874
1.32811e-10
0.0193887
-0.00445262
1.35539e-10
0.0195115
-0.00459394
1.71352e-10
0.0197721
-0.00465016
2.15577e-10
0.0199642
-0.0045586
2.03459e-10
0.0201844
-0.00450863
2.37744e-10
0.0204606
-0.00442244
2.58713e-10
0.0207504
-0.0042825
2.4146e-10
0.0210246
-0.00410966
2.24231e-10
0.0212714
-0.00393079
1.74109e-10
0.0214875
-0.00375464
1.52981e-10
0.0216751
-0.00358545
1.22177e-10
0.021839
-0.00342335
8.31234e-11
0.0219833
-0.00326677
6.33072e-11
0.0221124
-0.0031131
4.82134e-11
0.0222293
-0.00296122
3.79841e-11
0.0223348
-0.00281028
2.93397e-11
0.0224316
-0.00266068
2.07845e-11
0.0225192
-0.00251319
1.76195e-11
0.0225978
-0.00236769
6.66326e-12
0.0226656
-0.00222479
2.14524e-12
0.0227242
-0.00208657
-3.79053e-12
0.0227735
-0.00194728
-4.71415e-12
0.0228138
-0.00180843
-6.21342e-12
0.0228439
-0.00167164
-7.96418e-12
0.0228614
-0.0015396
-1.01491e-11
0.0228702
-0.00141765
-8.40913e-12
0.0228689
-0.00129922
-6.8294e-12
0.0228598
-0.00118605
-5.18896e-12
0.022843
-0.0010768
-2.63735e-12
0.0228197
-0.000970932
9.07286e-13
0.0227888
-0.000867778
5.43048e-12
0.0227515
-0.000767116
1.12377e-11
0.0227067
-0.000668859
1.96587e-11
0.0226555
-0.000572943
2.06506e-11
0.0225972
-0.000479532
2.10788e-11
0.0225326
-0.000388543
2.29431e-11
0.0224617
-0.000300108
2.47979e-11
0.0223853
-0.00021405
2.61801e-11
0.0223037
-0.000130315
2.70638e-11
0.0222173
-4.89643e-05
2.78036e-11
0.0221271
2.94296e-05
3.40786e-11
0.0220334
0.000104583
3.35971e-11
0.0219364
0.00017671
2.84026e-11
0.0218357
0.000245691
1.72849e-11
0.0217321
0.000311638
1.07956e-11
0.0216253
0.000374535
3.72357e-12
0.0215166
0.000434482
-4.02357e-12
0.0214051
0.00049142
-1.20139e-11
0.0212926
0.000545388
-2.04271e-11
0.0211777
0.000596447
-2.8649e-11
0.0210625
0.000644495
-3.70118e-11
0.0209452
0.000689837
-4.48065e-11
0.0208281
0.000732152
-5.2443e-11
0.0207095
0.000772051
-5.92675e-11
0.0205911
0.000808931
-6.56232e-11
0.0204719
0.000843671
-7.11003e-11
0.0203524
0.000875432
-7.58303e-11
0.0202327
0.000905233
-7.97502e-11
0.0201121
0.000932147
-8.27234e-11
0.0199917
0.000957152
-8.50051e-11
0.0198701
0.000979396
-8.62658e-11
0.0197489
0.000999673
-8.69387e-11
0.0196268
0.00101729
-8.66118e-11
0.0195054
0.00103279
-8.57567e-11
0.0193838
0.00104564
-8.39409e-11
0.0192632
0.00105606
-8.16116e-11
0.0191433
0.00106363
-7.83099e-11
0.0190253
0.00106821
-7.44485e-11
0.0189092
0.00106941
-6.95139e-11
0.0187965
0.00106663
-6.38525e-11
0.0186876
0.0010595
-5.6922e-11
0.0185851
0.00104645
-4.80477e-11
0.0184886
0.00102964
-4.13891e-11
0.00100834
-3.12806e-11
0.0221282
0.0159933
6.6426e-11
0.0220052
0.0152041
8.46465e-11
0.0218384
0.014299
1.14732e-10
0.0216365
0.0133389
1.64304e-10
0.0214131
0.0123353
2.38947e-10
0.0212091
0.0113033
3.58541e-10
0.0210483
0.0102252
5.6377e-10
0.0208919
0.0092259
6.05496e-10
0.0208904
0.00810518
6.88952e-10
0.0211123
0.00680417
8.18584e-10
0.0214355
0.00542786
9.98597e-10
0.0217385
0.0041869
7.11413e-10
0.0219947
0.0030682
3.09265e-10
0.0222094
0.00195513
2.64805e-10
0.0222289
0.00104872
9.29619e-11
0.0219599
0.000456204
-1.85401e-10
0.021689
-0.000128101
-3.73198e-10
0.0213974
-0.000697369
-3.33522e-10
0.021124
-0.00126991
-2.30813e-10
0.0208781
-0.00183638
-1.53669e-10
0.0206634
-0.00237734
-1.00785e-10
0.0204799
-0.00287809
-5.9207e-11
0.0203315
-0.00332431
-2.12658e-11
0.0202222
-0.00371148
1.66665e-11
0.0201541
-0.00403131
4.60403e-11
0.020129
-0.00428737
8.47488e-11
0.0201424
-0.00448401
1.10332e-10
0.0201378
-0.00461586
1.54493e-10
0.0201734
-0.00471283
1.50928e-10
0.0203689
-0.00478395
1.83147e-10
0.0205555
-0.00472626
1.89777e-10
0.0207294
-0.00463085
2.11921e-10
0.0209713
-0.00456005
2.50519e-10
0.0212473
-0.00442034
2.46897e-10
0.0215176
-0.0042333
2.24099e-10
0.0217648
-0.00403119
1.79114e-10
0.0219835
-0.00382898
1.58206e-10
0.0221727
-0.00363429
1.25765e-10
0.022336
-0.00344819
9.86426e-11
0.0224772
-0.00327069
7.75167e-11
0.0226013
-0.00309961
6.13907e-11
0.0227142
-0.00293361
4.75757e-11
0.0228156
-0.00277089
3.24023e-11
0.0229093
-0.00261095
2.20781e-11
0.0229922
-0.00245456
2.05733e-11
0.0230646
-0.00230013
1.15908e-11
0.0231253
-0.00214954
5.46081e-12
0.0231801
-0.00200392
2.06126e-13
0.0232249
-0.00185519
-3.70489e-13
0.0232601
-0.00170852
-1.45253e-12
0.023284
-0.00156509
-2.91085e-12
0.0232956
-0.00143019
-4.78884e-12
0.023297
-0.00130191
-4.27081e-12
0.0232898
-0.00117951
-2.98453e-12
0.0232739
-0.0010617
-1.29523e-12
0.0232503
-0.00094772
9.48991e-13
0.0232186
-0.000837125
4.07678e-12
0.0231797
-0.00072951
7.81015e-12
0.023133
-0.000624763
1.45098e-11
0.0230795
-0.000522615
2.05795e-11
0.0230184
-0.000423153
2.20263e-11
0.0229506
-0.000326203
2.20823e-11
0.0228759
-0.000231876
2.31448e-11
0.0227952
-0.000139918
2.45334e-11
0.0227086
-5.05279e-05
2.59206e-11
0.0226175
3.58496e-05
2.769e-11
0.0225223
0.00011887
3.34329e-11
0.0224233
0.000198547
3.25038e-11
0.0223211
0.000274949
2.81499e-11
0.0222154
0.000348059
1.92851e-11
0.022107
0.000417962
1.2578e-11
0.0219954
0.000484587
6.32112e-12
0.021882
0.000548013
-8.18053e-13
0.0217656
0.000608212
-8.28213e-12
0.0216481
0.000665185
-1.63334e-11
0.0215282
0.000719056
-2.42812e-11
0.021408
0.000769666
-3.24808e-11
0.0212862
0.000817378
-4.02126e-11
0.0211644
0.000861816
-4.78195e-11
0.0210419
0.00090361
-5.47254e-11
0.0209194
0.000942171
-6.11237e-11
0.0207967
0.000978308
-6.67461e-11
0.0206736
0.00101131
-7.15455e-11
0.0205506
0.00104201
-7.5599e-11
0.0204268
0.00106971
-7.86402e-11
0.0203031
0.0010951
-8.09849e-11
0.0201786
0.00111763
-8.22722e-11
0.0200542
0.00113774
-8.28861e-11
0.0199295
0.00115501
-8.24867e-11
0.0198054
0.00116968
-8.14068e-11
0.0196817
0.00118136
-7.93404e-11
0.0195596
0.00119002
-7.65687e-11
0.0194388
0.00119526
-7.27287e-11
0.0193211
0.00119665
-6.81181e-11
0.0192061
0.00119374
-6.21946e-11
0.0190962
0.00118537
-5.53619e-11
0.0189916
0.00117078
-4.57273e-11
0.0188944
0.00114975
-3.98261e-11
0.0188033
0.00112508
-3.11369e-11
0.00109156
-1.56291e-11
0.0224925
0.0160973
8.59368e-11
0.0223666
0.0153186
1.19545e-10
0.0222045
0.0144413
1.72139e-10
0.0220323
0.0134797
2.57981e-10
0.0218803
0.0124452
3.63129e-10
0.021789
0.0113172
6.26601e-10
0.0216457
0.0102824
6.72537e-10
0.0216899
0.00909137
7.44379e-10
0.0219728
0.00771402
8.60633e-10
0.0223676
0.00626649
1.08609e-09
0.0227125
0.00498408
7.92168e-10
0.0229831
0.00386116
3.89122e-10
0.0232711
0.00273952
2.99096e-10
0.0233343
0.00186492
1.56162e-10
0.0230712
0.00131638
-3.78982e-11
0.0228161
0.000757087
-3.95433e-10
0.0225427
0.000186077
-3.49334e-10
0.0222764
-0.000401863
-2.61874e-10
0.0220275
-0.00100231
-1.80587e-10
0.0217954
-0.0015929
-1.24433e-10
0.0215815
-0.00215469
-8.58854e-11
0.0213849
-0.0026745
-5.50116e-11
0.0212088
-0.00314295
-2.653e-11
0.0210544
-0.00355532
1.26994e-12
0.0209279
-0.00390829
3.62007e-11
0.0208336
-0.00420187
4.95685e-11
0.0207699
-0.00443519
7.84603e-11
0.0207479
-0.00461233
1.00193e-10
0.0207472
-0.00473689
1.31755e-10
0.0207473
-0.00480716
1.3773e-10
0.0208531
-0.00485777
1.68548e-10
0.0210331
-0.0048387
1.73667e-10
0.0211847
-0.0047396
1.89734e-10
0.0213855
-0.00465461
2.37375e-10
0.0216415
-0.00452454
2.23921e-10
0.0218999
-0.00432466
2.1119e-10
0.0221481
-0.00410999
1.82994e-10
0.0223741
-0.00388801
1.6283e-10
0.0225708
-0.0036694
1.18776e-10
0.0227405
-0.00346019
9.20859e-11
0.0228867
-0.00326194
8.24141e-11
0.023012
-0.00307316
6.43013e-11
0.0231241
-0.00289263
4.01858e-11
0.0232226
-0.00271766
3.15054e-11
0.0233101
-0.00254714
2.38382e-11
0.023388
-0.00238156
1.98215e-11
0.0234548
-0.00221863
1.76909e-11
0.0235112
-0.00206148
8.55913e-12
0.0235597
-0.00190572
7.58677e-12
0.0235984
-0.00174943
5.84473e-12
0.0236256
-0.00159487
3.37046e-12
0.0236391
-0.00144547
4.73753e-13
0.0236431
-0.00130741
-3.63587e-12
0.0236364
-0.00117403
-2.69039e-12
0.0236199
-0.00104649
-1.90293e-12
0.0235946
-0.000923334
-1.12258e-12
0.0235608
-0.000804381
4.40113e-13
0.0235193
-0.000689061
2.84994e-12
0.0234702
-0.000577256
6.00739e-12
0.0234141
-0.000468451
9.48456e-12
0.0233505
-0.000362678
1.59955e-11
0.0232803
-0.000259577
2.15128e-11
0.0232029
-0.000159195
2.47178e-11
0.0231195
-6.13136e-05
2.65685e-11
0.0230304
3.3483e-05
2.8399e-11
0.0229367
0.00012479
3.04596e-11
0.0228385
0.000212594
3.05636e-11
0.0227362
0.000296806
2.89962e-11
0.0226302
0.000377575
2.50304e-11
0.0225203
0.000454768
1.74016e-11
0.0224077
0.000528568
1.24202e-11
0.0222916
0.000598803
7.10974e-12
0.022174
0.000665623
7.80091e-13
0.0220536
0.000728957
-5.94563e-12
0.0219322
0.000788832
-1.3409e-11
0.0218088
0.000845379
-2.08661e-11
0.0216848
0.000898413
-2.8698e-11
0.0215595
0.000948342
-3.617e-11
0.0214339
0.000994732
-4.35817e-11
0.0213076
0.00103826
-5.03949e-11
0.0211812
0.00107829
-5.6701e-11
0.021055
0.00111566
-6.23126e-11
0.0209285
0.00114966
-6.70565e-11
0.0208026
0.00118107
-7.11039e-11
0.0206762
0.00120926
-7.40774e-11
0.0205504
0.00123483
-7.63689e-11
0.0204242
0.00125728
-7.75337e-11
0.0202987
0.00127691
-7.79979e-11
0.0201733
0.00129344
-7.7372e-11
0.0200488
0.00130676
-7.59752e-11
0.0199252
0.00131673
-7.35e-11
0.0198036
0.0013228
-7.01426e-11
0.0196841
0.00132481
-6.55725e-11
0.0195686
0.00132168
-5.9901e-11
0.019457
0.00131297
-5.28187e-11
0.0193527
0.0012964
-4.26988e-11
0.0192551
0.00127343
-3.70163e-11
0.019164
0.0012445
-2.61582e-11
0.0190849
0.00120553
-1.4158e-11
0.00115468
6.25808e-12
0.0228689
0.0162402
1.23677e-10
0.0227356
0.0154334
1.7533e-10
0.022602
0.0145442
2.71371e-10
0.0224804
0.0135514
4.05572e-10
0.0224328
0.0124206
6.16324e-10
0.0223015
0.011362
6.77654e-10
0.0223773
0.0101051
8.41107e-10
0.0227201
0.00863097
1.01569e-09
0.0231696
0.00712708
1.08898e-09
0.0235362
0.00580142
8.02511e-10
0.0238373
0.00463015
3.7445e-10
0.0241697
0.00349211
2.72941e-10
0.0242334
0.0026555
1.35192e-10
0.0239636
0.0021453
-1.02096e-10
0.0237298
0.00158683
-2.88772e-10
0.0234934
0.00102509
-2.70405e-10
0.0232578
0.000443012
-2.17394e-10
0.0230311
-0.000160346
-1.68563e-10
0.0228136
-0.000775671
-1.26053e-10
0.0226026
-0.00137264
-9.39529e-11
0.0223953
-0.00193943
-6.89439e-11
0.0221943
-0.002464
-4.86545e-11
0.0220001
-0.00294226
-2.95808e-11
0.021818
-0.00336792
-1.12915e-11
0.0216519
-0.00374204
8.26562e-12
0.0215074
-0.00406112
3.69225e-11
0.0213908
-0.00432837
4.48809e-11
0.0213079
-0.00454218
7.01322e-11
0.0212592
-0.0047049
9.67146e-11
0.0212503
-0.00481735
1.14531e-10
0.0212503
-0.0048817
1.53803e-10
0.0212903
-0.00490199
1.60445e-10
0.0214182
-0.00489298
1.71609e-10
0.0215805
-0.00484472
1.91995e-10
0.0217482
-0.00472352
2.12663e-10
0.0219738
-0.0045843
2.16124e-10
0.022229
-0.00439757
2.0306e-10
0.0224813
-0.00417099
1.93589e-10
0.0227162
-0.00393219
1.55231e-10
0.0229257
-0.0036936
1.26282e-10
0.0231043
-0.0034617
9.77719e-11
0.0232573
-0.00324234
8.44024e-11
0.0233861
-0.00303494
6.42546e-11
0.0234972
-0.00283827
4.78726e-11
0.0235932
-0.00265036
3.37158e-11
0.0236757
-0.00246911
2.33812e-11
0.0237473
-0.00229435
2.03151e-11
0.0238065
-0.00212382
2.28892e-11
0.0238581
-0.00195988
1.17561e-11
0.0238995
-0.00179323
1.04076e-11
0.0239313
-0.0016292
8.14444e-12
0.0239519
-0.00146811
4.00822e-12
0.0239579
-0.00131454
-3.33117e-12
0.0239542
-0.00117101
-4.80771e-12
0.0239392
-0.00103199
-5.45955e-12
0.0239146
-0.000898618
-6.08906e-12
0.0238807
-0.000770472
-5.9269e-12
0.0238386
-0.00064672
-4.74029e-12
0.0237882
-0.000527175
-2.49908e-12
0.0237305
-0.000411182
4.22837e-13
0.0236652
-0.000298658
3.78914e-12
0.0235929
-0.000189107
7.3332e-12
0.0235135
-8.24131e-05
1.05599e-11
0.0234276
2.12827e-05
1.45869e-11
0.0233361
0.000121333
1.88043e-11
0.0232394
0.000217663
2.11264e-11
0.0231381
0.000310306
2.18254e-11
0.0230326
0.000399114
2.09655e-11
0.0229235
0.000484271
1.75373e-11
0.022811
0.000565553
1.40936e-11
0.0226958
0.000643205
1.06841e-11
0.0225774
0.000716981
6.4449e-12
0.0224571
0.000787126
1.11461e-12
0.022334
0.000853466
-4.72188e-12
0.0222097
0.000916149
-1.14111e-11
0.0220829
0.000975194
-1.82064e-11
0.0219558
0.00103053
-2.55051e-11
0.0218269
0.00108249
-3.2533e-11
0.0216981
0.00113068
-3.96087e-11
0.0215685
0.00117578
-4.61529e-11
0.021439
0.0012171
-5.22509e-11
0.0213098
0.00125557
-5.77073e-11
0.0211805
0.00129033
-6.22986e-11
0.0210519
0.00132231
-6.6234e-11
0.0209231
0.00135074
-6.90452e-11
0.0207953
0.00137623
-7.11958e-11
0.0206672
0.00139831
-7.21231e-11
0.0205405
0.00141708
-7.23424e-11
0.0204139
0.00143238
-7.13173e-11
0.0202896
0.00144374
-6.94745e-11
0.0201665
0.0014512
-6.63208e-11
0.0200468
0.00145359
-6.21702e-11
0.0199305
0.00145101
-5.63725e-11
0.0198198
0.00144136
-4.94674e-11
0.019716
0.00142382
-3.86328e-11
0.0196206
0.00139816
-3.2844e-11
0.0195318
0.00136647
-2.27149e-11
0.019455
0.0013232
-6.17233e-12
0.0193974
0.00126096
1.3996e-11
0.00119361
3.29298e-11
0.0232408
0.0164181
1.75724e-10
0.0231044
0.0155321
2.8179e-10
0.0230364
0.0145628
4.24438e-10
0.0230194
0.0134877
6.98171e-10
0.0229195
0.0124325
7.44201e-10
0.0230495
0.0111259
8.29737e-10
0.0234771
0.00955711
9.62018e-10
0.0239291
0.00802085
1.18612e-09
0.0242994
0.00665765
8.11637e-10
0.0246344
0.00541503
3.19144e-10
0.0249699
0.00425853
2.12354e-10
0.0249784
0.00346767
4.63236e-11
0.0247099
0.00295231
-2.99169e-10
0.0245053
0.00238294
-2.49874e-10
0.0242968
0.00182533
-2.13311e-10
0.0240972
0.00124641
-1.67926e-10
0.0239068
0.000643962
-1.18702e-10
0.0237186
3.27165e-05
-8.8206e-11
0.0235291
-0.000584073
-6.60426e-11
0.0233343
-0.00117506
-5.36952e-11
0.0231347
-0.00173555
-4.53586e-11
0.022933
-0.00225637
-3.80978e-11
0.0227322
-0.00273553
-3.00828e-11
0.0225353
-0.00316734
-2.01724e-11
0.0223483
-0.00355325
-8.25578e-12
0.0221749
-0.00389036
7.59601e-12
0.0220215
-0.00418006
3.24741e-11
0.0218927
-0.00442268
3.91624e-11
0.0217926
-0.00461802
5.99451e-11
0.0217272
-0.00476842
8.26134e-11
0.0216995
-0.00487255
1.0555e-10
0.0217088
-0.00493176
1.2216e-10
0.0217341
-0.00494125
1.40038e-10
0.0217654
-0.00489833
1.57964e-10
0.0218886
-0.00487081
1.66018e-10
0.022083
-0.00480464
1.81421e-10
0.0222809
-0.00462569
2.02091e-10
0.0225112
-0.00443298
1.8907e-10
0.0227588
-0.00420968
1.76371e-10
0.022996
-0.00395792
1.54249e-10
0.0232128
-0.00370103
1.25675e-10
0.0234008
-0.00344927
9.58699e-11
0.0235591
-0.00320822
6.95016e-11
0.0236915
-0.00298127
5.47941e-11
0.0238019
-0.00276839
4.01161e-11
0.0238964
-0.00256699
3.12458e-11
0.0239751
-0.0023754
2.32051e-11
0.0240422
-0.00219139
2.42487e-11
0.0240955
-0.00201288
1.57823e-11
0.024143
-0.0018405
1.39404e-11
0.0241799
-0.00166639
9.95589e-12
0.0242055
-0.00149431
4.39739e-12
0.0242167
-0.00132652
-3.60539e-12
0.0242138
-0.00116816
-1.24757e-11
0.024199
-0.00101758
-1.28093e-11
0.0241741
-0.000873714
-1.38096e-11
0.0241396
-0.000735754
-1.43134e-11
0.024097
-0.000602899
-1.40698e-11
0.024046
-0.000474932
-1.2714e-11
0.023988
-0.0003512
-1.03994e-11
0.023922
-0.000231439
-7.2988e-12
0.023849
-0.000114977
-3.91419e-12
0.0237687
-2.04147e-06
-2.97696e-13
0.0236821
0.000107218
2.84176e-12
0.0235897
0.000212556
5.75006e-12
0.0234916
0.000313846
8.1866e-12
0.0233891
0.000411299
9.90687e-12
0.0232813
0.000504605
1.09132e-11
0.0231704
0.00059403
1.08226e-11
0.0230549
0.000679278
9.84813e-12
0.0229371
0.00076059
7.61837e-12
0.0228156
0.000837788
4.55749e-12
0.0226923
0.000911006
3.3429e-13
0.0225662
0.000980246
-4.49745e-12
0.0224388
0.00104547
-1.02425e-11
0.0223095
0.00110691
-1.62621e-11
0.0221795
0.00116431
-2.28339e-11
0.0220483
0.00121815
-2.92981e-11
0.0219171
0.00126793
-3.58558e-11
0.0217855
0.00131441
-4.19917e-11
0.0216543
0.00135684
-4.77172e-11
0.0215237
0.00139614
-5.28683e-11
0.0213933
0.00143148
-5.71508e-11
0.0212645
0.0014637
-6.0828e-11
0.0211358
0.00149209
-6.33322e-11
0.021009
0.00151712
-6.51874e-11
0.0208825
0.00153838
-6.57516e-11
0.0207578
0.00155574
-6.55373e-11
0.0206342
0.0015691
-6.39772e-11
0.020513
0.00157764
-6.14381e-11
0.0203938
0.00158131
-5.73731e-11
0.0202791
0.00157862
-5.19595e-11
0.0201691
0.00156904
-4.46592e-11
0.0200669
0.00154976
-3.37608e-11
0.0199734
0.00152219
-2.81141e-11
0.0198859
0.00148803
-1.69475e-11
0.0198132
0.00143947
-9.21889e-13
0.0197599
0.00137236
2.13946e-11
0.019724
0.00128732
4.99302e-11
0.00120495
5.45321e-11
0.0237335
0.0166695
2.83433e-10
0.0235859
0.015626
4.62598e-10
0.0234949
0.0145622
7.16512e-10
0.0234134
0.0134819
7.77942e-10
0.0236192
0.0121125
9.13615e-10
0.0241388
0.0104785
1.1495e-09
0.0246226
0.00893753
1.08159e-09
0.0250151
0.00753782
7.7936e-10
0.0254348
0.00620905
2.6017e-10
0.0257757
0.00504522
1.54682e-10
0.0257196
0.00430532
-5.04546e-12
0.0254614
0.00376354
-3.27824e-10
0.0252712
0.00318426
-3.53527e-10
0.0250722
0.00261491
-2.43825e-10
0.0248889
0.0020289
-1.68551e-10
0.0247235
0.00142329
-1.12922e-10
0.0245643
0.000806266
-6.98079e-11
0.0244061
0.000192125
-4.16854e-11
0.0242357
-0.000412056
-3.19146e-11
0.0240569
-0.000991893
-3.09311e-11
0.0238683
-0.00154028
-3.24899e-11
0.0236713
-0.0020523
-3.32447e-11
0.0234704
-0.00252623
-3.24782e-11
0.0232658
-0.00295854
-2.7942e-11
0.0230657
-0.00334949
-2.12437e-11
0.0228695
-0.00369755
-9.0939e-12
0.0226872
-0.0040022
5.05967e-12
0.0225196
-0.00426547
2.83003e-11
0.0223749
-0.00448398
3.49867e-11
0.0222561
-0.00466311
5.42569e-11
0.0221671
-0.00479641
7.30006e-11
0.0221138
-0.00489297
9.00575e-11
0.0221013
-0.00494447
1.07055e-10
0.0221353
-0.00495095
1.30452e-10
0.0221486
-0.00490254
1.27815e-10
0.0221536
-0.00482896
1.26279e-10
0.0223047
-0.00479728
1.37496e-10
0.022513
-0.00466613
1.59602e-10
0.0227315
-0.00445433
1.62474e-10
0.0229611
-0.00421318
1.5909e-10
0.0231976
-0.0039632
1.52703e-10
0.0234185
-0.00369286
1.17519e-10
0.0236142
-0.00342232
8.94237e-11
0.0237806
-0.00316166
6.73137e-11
0.0239208
-0.00291655
4.81682e-11
0.0240346
-0.00268661
3.36473e-11
0.0241288
-0.00247075
2.35932e-11
0.0242034
-0.00226734
2.15568e-11
0.0242637
-0.00207345
1.24676e-11
0.0243122
-0.00188806
3.46335e-12
0.024351
-0.0017048
2.02756e-12
0.0243805
-0.00152339
-1.1536e-12
0.0243984
-0.00134421
-6.52916e-12
0.0244024
-0.00117048
-1.56861e-11
0.0243949
-0.00100807
-2.0737e-11
0.0243753
-0.00085185
-2.23687e-11
0.024345
-0.000702776
-2.31797e-11
0.0243051
-0.000559708
-2.37976e-11
0.0242564
-0.000422289
-2.34812e-11
0.0241989
-0.000289898
-2.20241e-11
0.0241327
-0.000162086
-1.94541e-11
0.0240585
-3.84227e-05
-1.62178e-11
0.0239765
8.09839e-05
-1.26915e-11
0.0238878
0.000196118
-8.85117e-12
0.0237923
0.000306935
-5.21542e-12
0.0236915
0.000413385
-1.8829e-12
0.0235853
0.000515659
9.84991e-13
0.023475
0.000613473
3.18096e-12
0.0233605
0.000707146
4.43929e-12
0.023243
0.000796236
4.74892e-12
0.0231224
0.00088123
3.87536e-12
0.0229991
0.000961605
2.06568e-12
0.022874
0.00103794
-9.35442e-13
0.0227464
0.00110974
-4.63984e-12
0.0226182
0.00117751
-9.3732e-12
0.0224876
0.00124097
-1.44599e-11
0.0223572
0.00130032
-2.02284e-11
0.0222252
0.00135569
-2.59891e-11
0.0220936
0.00140684
-3.19113e-11
0.0219616
0.0014543
-3.75444e-11
0.0218297
0.00149753
-4.27762e-11
0.0216986
0.00153722
-4.75303e-11
0.021568
0.00157273
-5.14381e-11
0.0214388
0.00160467
-5.47247e-11
0.0213105
0.00163246
-5.68872e-11
0.0211844
0.00165637
-5.82905e-11
0.0210592
0.001676
-5.83917e-11
0.0209371
0.00169107
-5.75552e-11
0.0208168
0.00170126
-5.52226e-11
0.0207001
0.0017056
-5.16723e-11
0.020588
0.00170354
-4.61124e-11
0.0204812
0.00169326
-3.90798e-11
0.0203835
0.00167284
-2.7475e-11
0.0202949
0.00164311
-2.25207e-11
0.0202133
0.00160588
-1.05408e-11
0.0201461
0.00155447
6.25132e-12
0.020104
0.00147781
2.89382e-11
0.0200713
0.00139287
6.49666e-11
0.0200502
0.00129622
7.08925e-11
0.00116852
8.5627e-11
0.0242998
0.0169598
4.42912e-10
0.0240779
0.0157607
7.52502e-10
0.0239692
0.0145852
8.35394e-10
0.0241944
0.0131321
9.99718e-10
0.0247316
0.0114257
1.27339e-09
0.0252297
0.00983695
1.12694e-09
0.0256487
0.00841906
7.31713e-10
0.0261472
0.00700785
2.29779e-10
0.0264886
0.00584555
1.16946e-10
0.0263685
0.0051644
-5.4721e-11
0.0261345
0.00457918
-3.76076e-10
0.0259592
0.00398104
-3.49366e-10
0.0257789
0.00339976
-2.58735e-10
0.0256191
0.0028007
-1.63259e-10
0.0254784
0.00218551
-1.01276e-10
0.0253465
0.00156242
-6.62821e-11
0.0252115
0.000942881
-4.21906e-11
0.0250666
0.000335911
-3.01697e-11
0.0249057
-0.000251972
-2.84291e-11
0.0247311
-0.000816168
-3.16907e-11
0.0245443
-0.00134898
-3.60223e-11
0.024348
-0.00184928
-3.88748e-11
0.0241447
-0.00231379
-4.02543e-11
0.0239362
-0.00274306
-3.77362e-11
0.0237283
-0.00313332
-3.30245e-11
0.023521
-0.00348751
-2.29028e-11
0.0233229
-0.00380025
-1.13518e-11
0.0231334
-0.00407783
3.98335e-12
0.0229606
-0.00431243
1.90468e-11
0.0228052
-0.00451313
3.84615e-11
0.0226729
-0.00467033
4.24817e-11
0.0225645
-0.00479293
5.72532e-11
0.0224838
-0.00487297
7.1784e-11
0.022441
-0.00491954
8.7477e-11
0.0224448
-0.00492088
1.09661e-10
0.0224825
-0.00487997
1.04405e-10
0.0224616
-0.0047924
1.203e-10
0.0224929
-0.00471565
1.1062e-10
0.0226624
-0.00464414
1.35766e-10
0.0228855
-0.0044621
1.51382e-10
0.0231103
-0.00421357
1.48598e-10
0.0233431
-0.00395114
1.39583e-10
0.0235739
-0.00367457
1.18163e-10
0.0237871
-0.00339218
9.14278e-11
0.0239724
-0.00311384
6.53292e-11
0.0241277
-0.00284823
3.77662e-11
0.024252
-0.00259896
2.13248e-11
0.024352
-0.00236668
1.04868e-11
0.0244282
-0.00214949
-1.60044e-12
0.0244864
-0.00194504
-6.32894e-12
0.0245344
-0.00175105
-1.29044e-11
0.0245689
-0.00155672
-1.40206e-11
0.0245933
-0.00136759
-1.64918e-11
0.024607
-0.00118204
-2.08687e-11
0.0246059
-0.00100407
-2.84544e-11
0.024594
-0.000835548
-3.07585e-11
0.0245691
-0.000673799
-3.21981e-11
0.0245341
-0.000519118
-3.35795e-11
0.024488
-0.00037086
-3.41755e-11
0.0244326
-0.000228505
-3.36426e-11
0.024367
-9.14908e-05
-3.18072e-11
0.0242923
4.03346e-05
-2.90985e-11
0.0242095
0.00016691
-2.52058e-11
0.0241185
0.000288401
-2.10562e-11
0.0240211
0.000405146
-1.67585e-11
0.0239166
0.000517063
-1.23509e-11
0.0238074
0.000624383
-8.32061e-12
0.0236924
0.000726969
-4.71352e-12
0.0235741
0.000824866
-2.1405e-12
0.0234512
0.000918132
-3.62699e-13
0.023326
0.00100652
5.65472e-14
0.0231973
0.0010905
-3.96545e-13
0.023067
0.00116942
-2.18107e-12
0.0229345
0.00124422
-4.73966e-12
0.0228008
0.00131384
-8.36016e-12
0.0226661
0.00137962
-1.25426e-11
0.0225305
0.00144023
-1.73418e-11
0.0223948
0.00149717
-2.24039e-11
0.0222586
0.00154903
-2.7532e-11
0.0221229
0.00159732
-3.2617e-11
0.0219876
0.00164067
-3.72103e-11
0.0218535
0.00168039
-4.15192e-11
0.0217202
0.00171537
-4.48826e-11
0.0215894
0.0017464
-4.77342e-11
0.0214598
0.00177284
-4.93824e-11
0.0213333
0.00179465
-5.01971e-11
0.0212095
0.00181164
-4.96657e-11
0.0210892
0.00182298
-4.79133e-11
0.0209734
0.00182828
-4.45059e-11
0.0208628
0.00182626
-3.93033e-11
0.0207595
0.00181527
-3.19959e-11
0.0206657
0.00179318
-2.05317e-11
0.0205816
0.00176133
-1.54822e-11
0.0205065
0.00172069
-4.4376e-12
0.020446
0.00166413
1.65674e-11
0.0204105
0.00158397
4.37509e-11
0.020375
0.00150258
5.54428e-11
0.0203561
0.00139675
8.03989e-11
0.0203831
0.00125207
1.07266e-10
0.0010524
1.44925e-10
0.0248272
0.0173401
7.76008e-10
0.0245667
0.0159303
8.73212e-10
0.0247727
0.0142556
1.06827e-09
0.0253335
0.0124008
1.38518e-09
0.025865
0.0107521
1.20899e-09
0.0263053
0.00930479
7.3138e-10
0.0268786
0.00781757
2.28035e-10
0.0271989
0.0066697
1.22573e-10
0.0270056
0.00604752
-7.05057e-11
0.026794
0.00541276
-3.81694e-10
0.0266153
0.0047964
-3.51126e-10
0.0264412
0.00418772
-2.50725e-10
0.0262967
0.00356933
-1.5279e-10
0.0261756
0.0029379
-7.9497e-11
0.0260697
0.00230521
-4.61627e-11
0.0259602
0.00167828
-3.36795e-11
0.0258418
0.0010655
-3.03575e-11
0.0257059
0.000472267
-3.1901e-11
0.0255539
-9.68832e-05
-3.73458e-11
0.0253851
-0.000643447
-4.2818e-11
0.0252043
-0.0011598
-4.76738e-11
0.0250107
-0.00164632
-5.02109e-11
0.0248096
-0.00210081
-5.13651e-11
0.0245993
-0.00252344
-4.90855e-11
0.0243862
-0.00291146
-4.45232e-11
0.0241689
-0.00326622
-3.60601e-11
0.0239544
-0.00358432
-2.57622e-11
0.0237436
-0.00386886
-1.3369e-11
0.0235418
-0.00411541
-1.128e-12
0.0233535
-0.00432957
1.11793e-11
0.0231807
-0.00450538
2.82529e-11
0.0230328
-0.00465043
3.84988e-11
0.0229111
-0.00475911
4.16252e-11
0.0228198
-0.00483432
5.33579e-11
0.0227624
-0.00487246
6.69739e-11
0.0227435
-0.00487441
8.60214e-11
0.0227694
-0.00483031
8.03573e-11
0.0227841
-0.004747
9.18907e-11
0.022772
-0.00465003
8.7595e-11
0.0228659
-0.00457607
1.10315e-10
0.0230564
-0.00442537
1.21537e-10
0.0232839
-0.0042027
1.37641e-10
0.0235173
-0.00393281
1.30139e-10
0.0237629
-0.00365778
1.11646e-10
0.023995
-0.00336145
7.82928e-11
0.0242015
-0.00306353
5.60143e-11
0.0243757
-0.00277724
2.39338e-11
0.0245152
-0.00250671
6.29458e-12
0.0246222
-0.00225528
-9.99202e-12
0.0247011
-0.00202162
-2.08351e-11
0.0247571
-0.00180455
-2.62204e-11
0.024805
-0.00160103
-3.18023e-11
0.0248372
-0.00139594
-3.24492e-11
0.0248571
-0.00119826
-3.40457e-11
0.0248633
-0.00100563
-3.69753e-11
0.0248572
-0.000823486
-4.21925e-11
0.0248381
-0.000648312
-4.32469e-11
0.0248076
-0.000481303
-4.41883e-11
0.0247648
-0.000321231
-4.48223e-11
0.0247114
-0.000167564
-4.47801e-11
0.0246465
-2.02631e-05
-4.3491e-11
0.0245723
0.000120585
-4.09884e-11
0.024488
0.00025523
-3.71996e-11
0.024395
0.000383874
-3.26577e-11
0.0242941
0.00050707
-2.75336e-11
0.0241855
0.000624803
-2.21412e-11
0.0240715
0.000737511
-1.69173e-11
0.0239509
0.000844958
-1.20108e-11
0.0238273
0.000947435
-8.11035e-12
0.023698
0.00104477
-4.95799e-12
0.0235673
0.001137
-3.28897e-12
0.0234321
0.00122429
-2.42612e-12
0.0232961
0.00130625
-3.08089e-12
0.0231573
0.00138362
-4.42008e-12
0.0230179
0.00145545
-7.01581e-12
0.0228772
0.00152309
-1.01125e-11
0.0227361
0.00158506
-1.40026e-11
0.0225947
0.00164321
-1.81624e-11
0.022453
0.00169558
-2.2492e-11
0.0223124
0.00174436
-2.68962e-11
0.0221712
0.00178742
-3.07688e-11
0.0220329
0.0018267
-3.45542e-11
0.0218946
0.00186053
-3.72661e-11
0.0217603
0.00188992
-3.95703e-11
0.0216277
0.001914
-4.05667e-11
0.0214995
0.00193269
-4.06231e-11
0.0213752
0.0019454
-3.91764e-11
0.0212563
0.00195121
-3.61843e-11
0.0211443
0.00194916
-3.11856e-11
0.0210404
0.00193711
-2.36216e-11
0.0209486
0.00191255
-1.31118e-11
0.0208666
0.00187841
-6.04614e-12
0.0207948
0.00183492
3.63995e-12
0.0207437
0.0017703
2.14489e-11
0.0207046
0.00169334
5.88632e-11
0.0206711
0.00160642
6.46163e-11
0.0206722
0.00148896
7.88964e-11
0.0207286
0.00132376
1.06298e-10
0.0208338
0.00112015
1.53848e-10
0.000848536
2.40748e-10
0.0253913
0.0175513
8.53431e-10
0.0256129
0.0155736
1.20557e-09
0.0261478
0.0135118
1.69522e-09
0.0266755
0.0117274
1.29209e-09
0.0271285
0.0101991
7.38528e-10
0.0277357
0.00863486
4.91095e-10
0.0279904
0.00754368
9.4947e-11
0.0277108
0.00696261
-1.95493e-10
0.0275211
0.00628617
-3.6669e-10
0.0273334
0.00564344
-3.26268e-10
0.0271524
0.00500594
-2.10285e-10
0.0269987
0.00435634
-1.14578e-10
0.0268787
0.00370133
-4.94395e-11
0.026775
0.00304871
-1.47536e-11
0.0266773
0.00240729
-8.69658e-12
0.0265737
0.00178463
-1.65657e-11
0.0264585
0.00118374
-2.85739e-11
0.0263268
0.000607401
-4.02722e-11
0.0261779
5.70242e-05
-5.18603e-11
0.0260123
-0.000470918
-5.77846e-11
0.0258324
-0.000971159
-6.18071e-11
0.0256416
-0.00144407
-6.39305e-11
0.0254406
-0.00188823
-6.36875e-11
0.025232
-0.00230286
-6.11581e-11
0.0250167
-0.00268698
-5.58208e-11
0.0247976
-0.00303946
-4.85353e-11
0.0245775
-0.00336054
-3.96608e-11
0.0243594
-0.00364858
-3.08183e-11
0.0241476
-0.00390539
-2.05955e-11
0.023946
-0.0041288
-1.16313e-11
0.0237589
-0.0043222
-6.21047e-13
0.0235898
-0.00448238
7.08145e-12
0.0234367
-0.00461225
1.91717e-11
0.0233073
-0.00470887
3.65832e-11
0.023203
-0.00477583
3.6048e-11
0.0231262
-0.00480717
4.63653e-11
0.0230902
-0.0048072
6.15838e-11
0.0230926
-0.00476568
7.42892e-11
0.0231063
-0.00468025
6.6814e-11
0.0231021
-0.00459002
8.93722e-11
0.0231284
-0.00447116
7.91728e-11
0.0232743
-0.00436753
8.75037e-11
0.0234962
-0.00417584
1.20324e-10
0.0237273
-0.00390988
1.08248e-10
0.0239665
-0.00361803
1.04173e-10
0.0242077
-0.00331969
7.35614e-11
0.0244298
-0.00300842
5.20747e-11
0.0246185
-0.00270102
2.03962e-11
0.0247697
-0.00240778
-2.13345e-12
0.0248848
-0.00213495
-2.34034e-11
0.0249674
-0.00188273
-3.57598e-11
0.0250242
-0.00165041
-4.83646e-11
0.02507
-0.00143479
-4.93959e-11
0.0250972
-0.0012178
-5.09921e-11
0.0251109
-0.00101101
-5.33717e-11
0.025109
-0.00081197
-5.76378e-11
0.025097
-0.000626227
-5.79382e-11
0.0250707
-0.000445507
-5.67673e-11
0.0250319
-0.000273219
-5.58717e-11
0.0249811
-0.000107972
-5.51282e-11
0.0249189
5.01453e-05
-5.37725e-11
0.0248461
0.000200833
-5.11512e-11
0.0247624
0.000344321
-4.72632e-11
0.0246695
0.000480969
-4.23773e-11
0.0245671
0.000611263
-3.6544e-11
0.0244581
0.000735388
-3.03874e-11
0.0243415
0.000853832
-2.39864e-11
0.0242202
0.000966414
-1.80729e-11
0.0240928
0.00107375
-1.27593e-11
0.0239615
0.00117517
-8.56875e-12
0.0238257
0.0012716
-5.55692e-12
0.0236865
0.00136191
-3.67363e-12
0.0235451
0.0014474
-3.16058e-12
0.0234005
0.00152676
-3.37912e-12
0.0232559
0.00160132
-4.97456e-12
0.0231087
0.00167011
-6.88693e-12
0.0229628
0.00173386
-9.9201e-12
0.0228154
0.00179243
-1.30077e-11
0.0226693
0.00184564
-1.65889e-11
0.0225234
0.00189404
-2.01228e-11
0.0223782
0.00193698
-2.33418e-11
0.0222353
0.00197489
-2.63526e-11
0.0220936
0.00200739
-2.84754e-11
0.0219555
0.00203413
-2.98935e-11
0.0218212
0.00205503
-3.01792e-11
0.0216915
0.00206911
-2.90186e-11
0.0215684
0.00207569
-2.63447e-11
0.0214532
0.00207351
-2.13997e-11
0.0213485
0.00205993
-1.42504e-11
0.0212566
0.00203302
-2.16093e-12
0.021178
0.00199505
1.442e-12
0.0211084
0.00194846
1.6294e-11
0.0210631
0.00187848
2.9082e-11
0.021019
0.00180463
6.85429e-11
0.020992
0.00170914
7.56325e-11
0.021008
0.00157644
9.16269e-11
0.0210852
0.00139006
1.26898e-10
0.0212258
0.00115063
1.92989e-10
0.0214217
0.00088356
2.31496e-10
0.000583164
2.7623e-10
0.0268075
0.017201
1.35181e-09
0.0271953
0.0149871
1.49698e-09
0.0276343
0.0129125
1.33202e-09
0.0281332
0.01114
6.51254e-10
0.028786
0.00947774
4.97224e-10
0.0289042
0.00848266
1.61704e-10
0.0285829
0.00789676
-2.5008e-10
0.0283917
0.00719708
-2.85496e-10
0.0281788
0.00653408
-2.53706e-10
0.0279782
0.00586182
-1.60414e-10
0.0278123
0.00517932
-6.33024e-11
0.0276755
0.00449187
3.1069e-12
0.027563
0.00381028
2.97634e-11
0.0274607
0.00314711
2.92622e-11
0.0273589
0.0025066
1.2352e-11
0.0272497
0.00189344
-1.02899e-11
0.027128
0.00130663
-3.16127e-11
0.0269916
0.000746676
-4.87639e-11
0.0268405
0.000212645
-6.07048e-11
0.0266757
-0.000297788
-6.92239e-11
0.0264991
-0.000783815
-7.34454e-11
0.0263129
-0.00124385
-7.5431e-11
0.0261156
-0.00167764
-7.46343e-11
0.0259106
-0.00208422
-7.25702e-11
0.0256966
-0.00246323
-6.74794e-11
0.0254784
-0.00281264
-6.20149e-11
0.025256
-0.00313388
-5.43229e-11
0.0250347
-0.00342359
-4.77569e-11
0.0248156
-0.00368577
-3.93601e-11
0.0246039
-0.00391557
-3.23767e-11
0.0244005
-0.00411898
-2.35465e-11
0.0242085
-0.00428969
-1.50044e-11
0.0240306
-0.00443521
-6.32276e-12
0.0238697
-0.00454801
2.69036e-12
0.0237259
-0.00463646
1.24476e-11
0.0236058
-0.00469135
2.63998e-11
0.0235105
-0.00472061
3.88569e-11
0.0234485
-0.00471481
3.77593e-11
0.0234307
-0.00467609
5.07971e-11
0.0234228
-0.00459508
4.93982e-11
0.0234428
-0.00450389
5.37954e-11
0.0234375
-0.0043789
8.62188e-11
0.0235088
-0.00426365
8.99927e-11
0.0236788
-0.00409639
9.66682e-11
0.0239067
-0.00386411
1.07728e-10
0.0241417
-0.0035721
1.02312e-10
0.0243825
-0.00326523
8.64253e-11
0.0246131
-0.00294311
6.59585e-11
0.0248156
-0.00261757
3.31606e-11
0.0249822
-0.00230241
-4.98364e-14
0.0251066
-0.00200519
-2.81416e-11
0.0251937
-0.00173135
-4.86638e-11
0.0252492
-0.00148089
-6.48496e-11
0.0252946
-0.00125262
-6.5843e-11
0.0253186
-0.00102404
-6.72828e-11
0.0253262
-0.000806901
-7.04859e-11
0.0253155
-0.000601218
-7.75902e-11
0.0252956
-0.000411389
-7.26911e-11
0.025262
-0.000226001
-6.87857e-11
0.0252154
-4.95731e-05
-6.48471e-11
0.025158
0.000118648
-6.21692e-11
0.0250888
0.000279128
-5.9188e-11
0.0250095
0.000431951
-5.51e-11
0.0249192
0.000577384
-4.97645e-11
0.0248195
0.000715455
-4.3475e-11
0.0247115
0.000846688
-3.66512e-11
0.0245957
0.000971109
-2.94451e-11
0.0244741
0.00108936
-2.26191e-11
0.0243457
0.00120137
-1.61753e-11
0.024213
0.00130741
-1.10451e-11
0.0240744
0.00140757
-6.8399e-12
0.0239329
0.00150155
-4.10116e-12
0.0237874
0.00158991
-2.37422e-12
0.0236397
0.00167194
-1.67311e-12
0.0234907
0.00174854
-2.03792e-12
0.0233399
0.00181894
-2.96229e-12
0.0231898
0.00188391
-4.82325e-12
0.0230396
0.00194295
-7.00298e-12
0.02289
0.00199655
-9.53001e-12
0.0227428
0.00204417
-1.22566e-11
0.0225962
0.00208652
-1.4584e-11
0.0224533
0.00212223
-1.67348e-11
0.022313
0.00215267
-1.80192e-11
0.0221767
0.00217539
-1.83628e-11
0.0220462
0.00219185
-1.75276e-11
0.021921
0.00219885
-1.46881e-11
0.0218054
0.00219708
-1.02084e-11
0.0217005
0.00218155
-2.6488e-12
0.0216103
0.00215193
1.17772e-11
0.0215327
0.00211129
1.12275e-11
0.0214695
0.00205744
2.73335e-11
0.0214197
0.00198931
6.1591e-11
0.0213766
0.00191274
6.70467e-11
0.021366
0.00180437
8.07653e-11
0.0214069
0.00165148
1.06459e-10
0.0215196
0.00143783
1.52716e-10
0.0216781
0.00119316
2.15732e-10
0.021874
0.000908109
2.58516e-10
0.022115
0.000591799
2.79452e-10
0.000277678
2.8182e-10
0.0280886
0.0164605
1.56849e-09
0.0287465
0.0142023
1.18916e-09
0.0294223
0.0121672
6.45433e-10
0.0300939
0.0103932
5.0556e-10
0.0299996
0.00952531
2.22223e-10
0.0296294
0.00887601
-2.15043e-10
0.0293925
0.00816998
-2.95884e-10
0.0291294
0.00748467
-1.95642e-10
0.0288984
0.00677901
-8.6136e-11
0.0287065
0.00605504
-3.88075e-12
0.028557
0.00532514
5.17697e-11
0.0284342
0.00460783
9.62651e-11
0.0283257
0.00391214
9.0889e-11
0.0282212
0.00324702
5.47761e-11
0.0281124
0.00261265
1.71668e-11
0.0279952
0.00201069
-1.30088e-11
0.0278653
0.00143783
-3.74711e-11
0.0277227
0.000892902
-5.55195e-11
0.0275675
0.000373602
-6.75296e-11
0.0274006
-0.000121124
-7.59927e-11
0.0272233
-0.00059486
-8.02112e-11
0.0270368
-0.00104337
-8.22236e-11
0.0268393
-0.00146751
-8.19163e-11
0.0266339
-0.00186604
-8.06516e-11
0.0264186
-0.00223854
-7.73577e-11
0.0261984
-0.0025838
-7.37751e-11
0.025972
-0.00290204
-6.86627e-11
0.0257451
-0.00319191
-6.36016e-11
0.0255181
-0.00345514
-5.75382e-11
0.0252955
-0.00368942
-5.11978e-11
0.0250778
-0.00389796
-4.4734e-11
0.0248697
-0.00407776
-3.65812e-11
0.0246701
-0.00423232
-2.92142e-11
0.0244827
-0.00435959
-2.01629e-11
0.0243094
-0.0044614
-1.26721e-11
0.024151
-0.00453688
-2.84959e-12
0.0240138
-0.00458567
4.97813e-12
0.0238981
-0.00460726
1.58895e-11
0.0238157
-0.0045999
3.12825e-11
0.023771
-0.00456076
3.37055e-11
0.0237432
-0.00448553
3.20099e-11
0.0237393
-0.00438394
3.97559e-11
0.0237375
-0.00427715
6.65873e-11
0.0237595
-0.00413313
7.04977e-11
0.0238625
-0.00398372
7.91209e-11
0.0240505
-0.00377686
9.18095e-11
0.024266
-0.00350244
1.17778e-10
0.0244883
-0.00318568
1.03109e-10
0.0247179
-0.00286345
7.91576e-11
0.0249268
-0.002523
4.75117e-11
0.0251026
-0.00218588
1.01579e-11
0.0252406
-0.00186576
-2.53019e-11
0.025339
-0.00156949
-5.15442e-11
0.0253997
-0.00129899
-7.0092e-11
0.0254478
-0.00105537
-8.07841e-11
0.0254747
-0.000816886
-8.17856e-11
0.0254777
-0.000587832
-8.30068e-11
0.0254574
-0.000374784
-8.44674e-11
0.0254268
-0.000180741
-8.15208e-11
0.0253825
7.27391e-06
-7.45879e-11
0.0253276
0.000184702
-7.02268e-11
0.0252616
0.0003542
-6.62455e-11
0.0251857
0.00051593
-6.12805e-11
0.0250988
0.000670159
-5.52882e-11
0.0250028
0.000816487
-4.86294e-11
0.0248982
0.000955226
-4.13479e-11
0.0247857
0.00108631
-3.36114e-11
0.0246669
0.00121052
-2.59353e-11
0.024541
0.00132766
-1.85905e-11
0.0244105
0.00143838
-1.23908e-11
0.0242742
0.00154238
-7.18201e-12
0.0241343
0.00164007
-3.37975e-12
0.0239906
0.00173121
-5.88933e-13
0.0238438
0.00181615
1.15718e-12
0.023695
0.00189452
1.98285e-12
0.0235446
0.00196691
2.03852e-12
0.0233933
0.00203267
1.41549e-12
0.0232428
0.00209251
1.23892e-13
0.023092
0.00214578
-1.28904e-12
0.022944
0.0021928
-3.12987e-12
0.0227974
0.00223326
-4.45023e-12
0.0226552
0.00226668
-5.6091e-12
0.0225169
0.00229295
-5.63993e-12
0.022385
0.00231073
-4.72053e-12
0.0222605
0.00231953
-1.81808e-12
0.0221455
0.00231711
3.26295e-12
0.0220446
0.00230064
1.30131e-11
0.0219605
0.00226617
2.20502e-11
0.0218866
0.00222543
3.03487e-11
0.0218339
0.00216316
3.66465e-11
0.0217811
0.00210193
7.39639e-11
0.0217459
0.00201456
8.08598e-11
0.0217558
0.00189026
9.70795e-11
0.0218327
0.0017088
1.30509e-10
0.0219721
0.0014827
1.90012e-10
0.0221539
0.00121933
2.259e-10
0.0223808
0.000919781
2.67362e-10
0.0226324
0.000605585
2.81399e-10
0.0228865
0.000286391
2.73657e-10
-5.87997e-06
2.52591e-10
0.0294128
0.0153384
1.24083e-09
0.0304426
0.013104
5.8619e-10
0.0312592
0.0112945
4.48136e-10
0.0310601
0.0105684
1.68998e-10
0.0307722
0.00984779
-2.56524e-10
0.0305457
0.0091482
-2.31538e-10
0.0302876
0.00846419
-1.33528e-10
0.0300425
0.00774314
-7.06869e-12
0.0298273
0.00698854
8.30397e-11
0.0296406
0.00622438
1.6179e-10
0.029474
0.00546734
1.21904e-10
0.0293255
0.00473409
1.0588e-10
0.0291893
0.0040323
1.07382e-10
0.0290598
0.00336768
5.84515e-11
0.0289277
0.00274029
1.39095e-11
0.0287915
0.00214702
-1.83112e-11
0.0286481
0.00158521
-4.29982e-11
0.0284986
0.00105132
-6.07668e-11
0.028341
0.000543853
-7.26821e-11
0.0281739
6.1843e-05
-8.13048e-11
0.0279971
-0.00040126
-8.54566e-11
0.0278091
-0.000840084
-8.7865e-11
0.0276105
-0.00125463
-8.92785e-11
0.0274012
-0.00164559
-8.94688e-11
0.0271834
-0.00201066
-8.86979e-11
0.0269588
-0.0023512
-8.69256e-11
0.0267292
-0.00266529
-8.38524e-11
0.0264982
-0.00295391
-7.995e-11
0.0262665
-0.00321644
-7.56497e-11
0.0260362
-0.00345276
-6.94169e-11
0.0258107
-0.00366423
-6.53848e-11
0.0255872
-0.00384948
-5.79084e-11
0.025372
-0.00401111
-5.15139e-11
0.0251611
-0.00414679
-4.29419e-11
0.0249596
-0.00425912
-3.60174e-11
0.0247681
-0.0043462
-2.7956e-11
0.0245902
-0.00441003
-2.01749e-11
0.0244294
-0.00444921
-1.13463e-11
0.0242896
-0.00446318
-3.00627e-12
0.0241746
-0.00445121
8.60944e-12
0.024092
-0.0044091
2.77353e-11
0.0240372
-0.00433568
3.00317e-11
0.0239832
-0.00423119
2.99043e-11
0.023965
-0.00412383
3.7686e-11
0.0239516
-0.00398368
6.79804e-11
0.0239791
-0.00381841
7.30048e-11
0.0240959
-0.00363348
9.50191e-11
0.0242862
-0.00339167
1.12536e-10
0.0244922
-0.00308428
1.06423e-10
0.0247046
-0.00274977
9.97694e-11
0.0249184
-0.00240804
6.85838e-11
0.0251077
-0.00205781
3.10635e-11
0.0252608
-0.00171692
-5.49781e-12
0.0253696
-0.00139858
-3.86192e-11
0.0254339
-0.00110764
-6.33529e-11
0.0254781
-0.000846108
-8.22176e-11
0.0255053
-0.000599668
-8.23521e-11
0.0255042
-0.000358579
-8.45735e-11
0.0254758
-0.000137559
-8.64035e-11
0.0254374
6.09842e-05
-9.02318e-11
0.0253882
0.000247336
-8.32594e-11
0.0253284
0.000425808
-7.51067e-11
0.0252586
0.000595141
-6.70221e-11
0.0251797
0.00075683
-5.93008e-11
0.0250923
0.000910628
-5.18914e-11
0.0249958
0.00105656
-4.41807e-11
0.0248919
0.00119466
-3.60819e-11
0.0247796
0.00132506
-2.76418e-11
0.0246611
0.00144771
-1.95574e-11
0.0245359
0.00156308
-1.2218e-11
0.0244063
0.00167097
-6.07568e-12
0.024272
0.00177213
-1.10425e-12
0.0241351
0.001866
2.65079e-12
0.0239949
0.00195349
5.48741e-12
0.0238533
0.00203371
7.32238e-12
0.0237099
0.00210772
8.42199e-12
0.0235656
0.00217437
8.82222e-12
0.0234214
0.00223473
8.59874e-12
0.0232776
0.00228755
8.17545e-12
0.0231359
0.00233355
7.51859e-12
0.0229971
0.00237148
7.29118e-12
0.0228627
0.00240159
7.53781e-12
0.022734
0.00242213
9.15657e-12
0.0226138
0.00243263
1.50048e-11
0.0225033
0.00243046
1.49699e-11
0.0224091
0.00241226
2.58673e-11
0.0223331
0.00237481
3.65344e-11
0.022269
0.00232985
4.25848e-11
0.0222178
0.00227038
6.55141e-11
0.0221673
0.00220902
7.06381e-11
0.0221537
0.00210909
8.13853e-11
0.0221961
0.00195865
1.05792e-10
0.022312
0.00175381
1.46051e-10
0.0224728
0.00151275
2.33592e-10
0.0226822
0.00123256
2.59995e-10
0.0229323
0.000923666
2.72624e-10
0.023199
0.000605998
2.75816e-10
0.023457
0.000302712
2.51892e-10
0.0236802
2.19498e-05
2.25347e-10
-0.000209684
1.49494e-10
0.0305883
0.0137204
7.11803e-10
0.0316522
0.0119934
5.30762e-10
0.0316203
0.0113297
1.1314e-10
0.0315446
0.0106681
-1.56103e-10
0.0314025
0.0100282
-2.38275e-10
0.0312095
0.00937275
-9.48336e-11
0.0310245
0.00866208
5.90519e-11
0.030861
0.00789957
2.08909e-10
0.030716
0.00711654
1.8448e-10
0.0305837
0.00633578
1.84465e-10
0.0304589
0.00557752
1.58056e-10
0.0303324
0.0048511
1.21261e-10
0.030197
0.00416191
1.16581e-10
0.030053
0.00350895
4.68477e-11
0.0299024
0.00289167
6.71928e-12
0.0297458
0.00230706
-2.49176e-11
0.0295868
0.00175289
-4.92011e-11
0.0294213
0.00122673
-6.6388e-11
0.0292517
0.000726794
-7.89223e-11
0.0290716
0.000252756
-8.69311e-11
0.02888
-0.000198875
-9.29337e-11
0.0286782
-0.00062972
-9.70878e-11
0.0284673
-0.00103585
-9.96042e-11
0.0282488
-0.00141822
-1.01492e-10
0.0280229
-0.00177673
-1.01368e-10
0.0277933
-0.00211147
-1.00913e-10
0.0275575
-0.00242159
-9.86816e-11
0.0273201
-0.00270701
-9.66659e-11
0.0270773
-0.00296742
-9.11488e-11
0.0268343
-0.00320202
-8.68307e-11
0.0265881
-0.00341283
-7.79355e-11
0.026342
-0.00359791
-7.16513e-11
0.0260965
-0.00376083
-6.45163e-11
0.0258531
-0.003899
-5.82433e-11
0.0256144
-0.00401633
-5.21075e-11
0.0253817
-0.00410981
-4.63756e-11
0.0251587
-0.0041833
-4.13317e-11
0.0249447
-0.00423281
-3.51262e-11
0.0247454
-0.00426208
-2.76298e-11
0.0245616
-0.00426664
-1.85466e-11
0.0244005
-0.00424911
-8.05976e-12
0.0242672
-0.00420467
8.95254e-12
0.0241656
-0.00413186
9.66688e-12
0.0240691
-0.00402901
2.56773e-11
0.024007
-0.00392443
3.27665e-11
0.0239802
-0.0037982
6.22948e-11
0.0239662
-0.00362638
6.65474e-11
0.0240022
-0.00343498
8.6919e-11
0.0241293
-0.00321952
9.79384e-11
0.0243102
-0.00294528
1.23748e-10
0.0245071
-0.00261659
1.19277e-10
0.0247106
-0.00227165
1.00824e-10
0.0249039
-0.00191521
6.76261e-11
0.0250673
-0.00156115
2.71747e-11
0.0251886
-0.00122377
-1.25532e-11
0.0252644
-0.000912752
-4.51769e-11
0.0253097
-0.000631269
-7.3257e-11
0.0253429
-0.000377836
-7.54847e-11
0.0253477
-0.000128599
-7.93643e-11
0.0253222
0.000100831
-8.42744e-11
0.0252795
0.000305325
-9.09443e-11
0.0252294
0.000489855
-8.29981e-11
0.0251673
0.000668815
-7.27014e-11
0.0250968
0.0008366
-6.29903e-11
0.0250186
0.000995995
-5.42565e-11
0.0249328
0.00114798
-4.57631e-11
0.0248387
0.00129252
-3.70012e-11
0.0247367
0.00142901
-2.80078e-11
0.0246275
0.00155735
-1.9187e-11
0.0245121
0.00167743
-1.08839e-11
0.0243918
0.00178962
-3.64747e-12
0.0242677
0.00189405
2.46614e-12
0.0241406
0.00199096
7.33148e-12
0.0240116
0.00208047
1.29588e-11
0.0238813
0.00216266
1.79301e-11
0.0237507
0.0022375
2.03386e-11
0.0236201
0.00230497
2.12559e-11
0.0234906
0.00236476
2.14029e-11
0.0233623
0.00241669
2.0858e-11
0.0232367
0.00246011
1.90635e-11
0.0231153
0.0024944
1.78904e-11
0.0229994
0.00251857
1.99245e-11
0.0228922
0.00253083
2.38218e-11
0.0227959
0.00252936
3.19667e-11
0.0227172
0.00250847
4.4105e-11
0.0226562
0.00247059
5.46761e-11
0.0226091
0.00241976
5.52914e-11
0.0225567
0.00237435
8.53971e-11
0.0225209
0.00229714
9.30812e-11
0.022541
0.00217785
1.08422e-10
0.0226304
0.00200244
1.38407e-10
0.0227783
0.00178279
1.93516e-10
0.022971
0.00152757
2.27059e-10
0.0232099
0.00123156
2.62265e-10
0.0234796
0.000916844
2.74115e-10
0.0237535
0.000603747
2.61325e-10
0.0240089
0.000311041
2.29597e-10
0.0242232
5.6e-05
1.80639e-10
0.0243816
-0.000160543
1.31367e-10
-0.000331768
7.92404e-11
0.0305229
0.0114568
4.97907e-10
0.0310873
0.0114438
2.76202e-10
0.0311522
0.0113301
-7.83305e-11
0.0313043
0.0105716
-1.30588e-10
0.0314201
0.0099433
-1.06049e-10
0.0314417
0.00935386
6.22666e-11
0.0314436
0.00863994
2.4348e-10
0.0314246
0.00788648
2.89534e-10
0.0313843
0.00712355
2.8031e-10
0.0313215
0.00637094
2.34879e-10
0.0312422
0.00564023
1.74698e-10
0.0311458
0.00494056
1.26934e-10
0.0310323
0.00427427
1.13301e-10
0.0309002
0.00364112
4.06813e-11
0.0307546
0.00303882
-2.84156e-14
0.0305996
0.00246675
-3.26228e-11
0.0304372
0.00192302
-5.73264e-11
0.0302686
0.00140675
-7.5613e-11
0.0300931
0.000916263
-8.85922e-11
0.0299095
0.000451385
-9.7561e-11
0.0297123
1.36914e-05
-1.02047e-10
0.0295091
-0.000410259
-1.08373e-10
0.0292962
-0.000805791
-1.12303e-10
0.0290742
-0.00117853
-1.13691e-10
0.0288427
-0.00152799
-1.14681e-10
0.0286021
-0.00185402
-1.15065e-10
0.0283513
-0.00215593
-1.1387e-10
0.0280932
-0.00243394
-1.11954e-10
0.0278267
-0.00268812
-1.08438e-10
0.0275568
-0.00291849
-1.03597e-10
0.0272821
-0.003126
-9.72137e-11
0.0270059
-0.00330992
-8.99907e-11
0.0267286
-0.00347216
-8.30605e-11
0.0264518
-0.00361213
-7.61674e-11
0.0261772
-0.0037313
-7.06001e-11
0.0259064
-0.00382988
-6.49784e-11
0.0256407
-0.00390838
-5.99695e-11
0.0253827
-0.00396697
-5.45549e-11
0.0251343
-0.00400611
-4.87918e-11
0.024899
-0.00402499
-4.15034e-11
0.0246789
-0.00402385
-3.25013e-11
0.0244803
-0.00400126
-2.10307e-11
0.0243082
-0.00395696
-5.03071e-12
0.024167
-0.00388529
9.11971e-12
0.0240309
-0.00378469
1.31235e-11
0.0239139
-0.00367983
2.67661e-11
0.0238445
-0.00355565
5.83285e-11
0.0238072
-0.00340196
7.85569e-11
0.0237892
-0.00320506
9.42808e-11
0.0238441
-0.00300456
1.04323e-10
0.023982
-0.00276175
1.17123e-10
0.0241547
-0.0024579
1.4362e-10
0.024341
-0.00211372
1.29539e-10
0.0245355
-0.00176323
1.01898e-10
0.0247063
-0.00140067
6.42574e-11
0.024842
-0.00104738
2.24425e-11
0.0249373
-0.000719787
-1.92737e-11
0.0249906
-0.00042096
-4.71607e-11
0.0250325
-0.000156871
-6.82795e-11
0.0250528
9.38308e-05
-6.9957e-11
0.0250402
0.000331736
-7.3229e-11
0.0249991
0.000545246
-7.84307e-11
0.02495
0.000730285
-7.26278e-11
0.0248931
0.000905529
-6.48185e-11
0.0248267
0.0010717
-5.51571e-11
0.0247537
0.00122868
-4.54584e-11
0.0246734
0.00137808
-3.58518e-11
0.0245869
0.0015196
-2.65146e-11
0.0244942
0.00165284
-1.71509e-11
0.0243956
0.0017777
-8.00447e-12
0.0242919
0.00189405
3.61276e-13
0.0241836
0.00200207
7.60047e-12
0.0240721
0.00210175
1.72816e-11
0.0239579
0.00219342
1.69607e-11
0.0238423
0.00227695
1.8459e-11
0.023726
0.00235251
2.09959e-11
0.0236102
0.00241968
2.34387e-11
0.0234955
0.00247834
2.57555e-11
0.0233837
0.00252756
2.81141e-11
0.0232757
0.00256696
3.09759e-11
0.0231739
0.00259473
3.47357e-11
0.0230804
0.00260985
4.06704e-11
0.0229996
0.00260834
4.96362e-11
0.0229364
0.00258678
6.41814e-11
0.0228934
0.00254624
6.35659e-11
0.0228531
0.00250135
8.4177e-11
0.0228064
0.00245739
8.80785e-11
0.0228061
0.00236487
9.82241e-11
0.0228686
0.00221943
1.2329e-10
0.0230018
0.0020219
1.64319e-10
0.0231806
0.0017916
2.13019e-10
0.0234061
0.00151709
2.52645e-10
0.0236773
0.00121294
2.73707e-10
0.0239631
0.000900295
2.69987e-10
0.0242412
0.000596558
2.45535e-10
0.0244861
0.000322449
2.00986e-10
0.0246846
8.66029e-05
1.48603e-10
0.0248239
-0.000103186
9.29025e-11
0.0249114
-0.000259121
5.62372e-11
-0.000382798
1.96812e-11
0.0272133
0.00942499
1.79726e-09
0.0282706
0.0104295
-4.75972e-12
0.029332
0.0103295
-1.32412e-10
0.0299555
0.010001
-5.52177e-12
0.0304011
0.00952734
1.13179e-10
0.0307806
0.00897477
2.74491e-10
0.0310719
0.00833173
3.50239e-10
0.031288
0.00765023
3.66462e-10
0.0314479
0.00695711
3.01937e-10
0.0315462
0.00627074
2.33412e-10
0.031587
0.0056035
1.5614e-10
0.031578
0.00495943
1.51889e-10
0.0315289
0.00433597
6.60914e-11
0.0314467
0.00373659
1.90168e-11
0.0313369
0.00316021
-1.8765e-11
0.0312085
0.00260834
-4.90213e-11
0.0310674
0.00208127
-7.21079e-11
0.0309164
0.00157956
-8.9355e-11
0.0307544
0.00110302
-1.02974e-10
0.030581
0.000651473
-1.12947e-10
0.0303975
0.000225334
-1.22247e-10
0.0301954
-0.000180336
-1.26114e-10
0.0299809
-0.000563626
-1.29517e-10
0.0297522
-0.000923576
-1.32057e-10
0.0295096
-0.00126095
-1.33111e-10
0.0292537
-0.00157593
-1.33013e-10
0.028985
-0.00186783
-1.31658e-10
0.0287066
-0.00213713
-1.29408e-10
0.0284182
-0.00238332
-1.25392e-10
0.0281233
-0.0026073
-1.20496e-10
0.0278221
-0.00280903
-1.14433e-10
0.0275166
-0.00298961
-1.07209e-10
0.02721
-0.00314881
-1.00579e-10
0.0269011
-0.00328861
-9.32346e-11
0.026594
-0.00340751
-8.76632e-11
0.0262882
-0.00350902
-8.21159e-11
0.0259851
-0.00359014
-7.74694e-11
0.0256866
-0.00365487
-7.29246e-11
0.0253941
-0.00370038
-6.80405e-11
0.0251094
-0.0037293
-6.19765e-11
0.024838
-0.00373981
-5.47503e-11
0.0245807
-0.00373329
-4.50279e-11
0.024344
-0.00370724
-3.29145e-11
0.0241339
-0.00366338
-1.90729e-11
0.0239565
-0.00359475
-1.84376e-12
0.0237931
-0.00350341
5.28268e-12
0.0236525
-0.00340242
2.89444e-11
0.0235481
-0.00328952
4.49975e-11
0.0234957
-0.00314688
7.21761e-11
0.0234473
-0.00295811
9.97775e-11
0.0234341
-0.00275197
1.06726e-10
0.0235042
-0.00253441
1.1965e-10
0.0236477
-0.00226819
1.44793e-10
0.0238118
-0.00194123
1.44713e-10
0.0239868
-0.00159069
1.35508e-10
0.0241608
-0.00123432
1.03135e-10
0.0243115
-0.000876321
6.00941e-11
0.0244241
-0.000535649
1.79541e-11
0.0244981
-0.00022326
-1.83499e-11
0.0245453
5.646e-05
-4.26872e-11
0.0245817
0.000304376
-4.61565e-11
0.0245888
0.000548778
-5.1841e-11
0.0245617
0.000770011
-6.14478e-11
0.0245193
0.000961357
-6.18516e-11
0.0244694
0.00113268
-5.22342e-11
0.0244096
0.00129749
-4.20001e-11
0.024344
0.00145058
-3.24661e-11
0.0242738
0.0015951
-2.33356e-11
0.0241986
0.00173169
-1.3625e-11
0.0241182
0.00186033
-3.56089e-12
0.0240326
0.00198041
5.97137e-12
0.0239431
0.00209164
1.4115e-11
0.0238503
0.00219397
1.7433e-11
0.0237557
0.00228736
2.2632e-11
0.0236601
0.00237192
2.74657e-11
0.0235647
0.00244734
3.18854e-11
0.0234707
0.00251336
3.60892e-11
0.0233792
0.00256931
4.02799e-11
0.0232923
0.00261412
4.50641e-11
0.0232116
0.00264669
5.18377e-11
0.0231393
0.00266514
5.52674e-11
0.0230818
0.00266493
6.50971e-11
0.0230415
0.0026421
8.3925e-11
0.02302
0.00260264
8.0675e-11
0.0229802
0.00257663
1.04766e-10
0.0229604
0.00251003
1.10545e-10
0.0230081
0.00239631
1.21843e-10
0.0231259
0.00222789
1.47941e-10
0.0232958
0.00202196
1.96891e-10
0.0235078
0.00177423
2.28053e-10
0.0237716
0.00148755
2.60136e-10
0.0240635
0.00118195
2.72078e-10
0.0243597
0.000874262
2.601e-10
0.0246349
0.000586856
2.25099e-10
0.0248674
0.00033365
1.74704e-10
0.0250463
0.000121557
1.18485e-10
0.0251676
-4.83707e-05
6.71406e-11
0.0252388
-0.000180657
2.70877e-11
0.0252729
-0.000296556
4.04282e-12
-0.000387399
-1.19618e-11
0.0228901
0.0073099
2.18065e-09
0.0248694
0.00851137
-1.45983e-10
0.0264438
0.00881031
-4.03689e-11
0.0277248
0.00873485
2.02039e-10
0.0286777
0.00854817
4.06163e-10
0.0294614
0.00815738
4.38773e-10
0.0300731
0.00768761
4.21655e-10
0.0305214
0.00716403
3.72593e-10
0.0308304
0.00660564
2.82716e-10
0.0310387
0.00603146
1.79769e-10
0.031183
0.00545075
1.69621e-10
0.0312734
0.00487537
7.54465e-11
0.0313151
0.00430791
1.86579e-11
0.0313196
0.00375345
-2.49495e-11
0.0312905
0.00321425
-5.81236e-11
0.0312362
0.00269379
-8.3074e-11
0.0311571
0.00219472
-1.00943e-10
0.031058
0.00171754
-1.14498e-10
0.0309378
0.00126352
-1.23788e-10
0.0307964
0.000832145
-1.30706e-10
0.0306374
0.000424138
-1.37347e-10
0.0304556
3.93217e-05
-1.41313e-10
0.0302561
-0.000325214
-1.45929e-10
0.0300367
-0.000667455
-1.48209e-10
0.0297998
-0.00098809
-1.4918e-10
0.0295453
-0.00128758
-1.48871e-10
0.0292755
-0.00156564
-1.4724e-10
0.0289921
-0.00182225
-1.44842e-10
0.028697
-0.00205813
-1.4069e-10
0.0283918
-0.0022725
-1.3576e-10
0.0280793
-0.00246748
-1.2971e-10
0.0277593
-0.0026415
-1.22919e-10
0.0274366
-0.00279752
-1.16498e-10
0.0271084
-0.00293372
-1.09744e-10
0.02678
-0.00305283
-1.04171e-10
0.0264495
-0.00315371
-9.90979e-11
0.0261189
-0.00323813
-9.43791e-11
0.0257916
-0.00330568
-9.04472e-11
0.0254669
-0.00335772
-8.54434e-11
0.0251506
-0.00339345
-8.04415e-11
0.024844
-0.00341472
-7.38048e-11
0.02455
-0.00341977
-6.55854e-11
0.024273
-0.00341016
-5.57189e-11
0.0240136
-0.00338382
-4.30335e-11
0.0237793
-0.00334104
-2.92403e-11
0.0235722
-0.00327808
-9.93047e-12
0.0233812
-0.00319404
-2.11898e-12
0.0232083
-0.00310007
1.42425e-11
0.0230691
-0.00299671
3.55263e-11
0.0229848
-0.0028658
6.75539e-11
0.0229299
-0.00269859
9.59044e-11
0.022888
-0.00249644
1.08957e-10
0.0229058
-0.00229179
1.16751e-10
0.0230073
-0.00205536
1.39386e-10
0.0231608
-0.00176308
1.70644e-10
0.0233266
-0.00142199
1.58069e-10
0.0235023
-0.00107116
1.37458e-10
0.0236644
-0.000713341
1.02733e-10
0.0237969
-0.000363961
5.9941e-11
0.0238925
-4.01921e-05
2.46393e-11
0.0239483
0.000251153
-1.47367e-11
0.0239999
0.000504264
-2.81504e-11
0.0240292
0.000747581
-2.99766e-11
0.0240223
0.000975784
-3.3129e-11
0.0239883
0.00117556
-3.89759e-11
0.0239495
0.00134476
-3.37968e-11
0.0239034
0.00150394
-2.80188e-11
0.0238518
0.00165241
-1.9387e-11
0.0237958
0.0017912
-8.87649e-12
0.0237356
0.00192217
2.34554e-12
0.0236711
0.00204472
1.07244e-11
0.0236029
0.00215844
1.93946e-11
0.0235314
0.00226305
2.85853e-11
0.023458
0.00235791
3.14524e-11
0.0233841
0.00244293
3.5468e-11
0.0233107
0.00251724
4.88905e-11
0.0232408
0.00258031
5.41797e-11
0.0231749
0.00263114
5.43547e-11
0.0231176
0.00266754
6.6789e-11
0.0230697
0.00268918
7.45965e-11
0.0230387
0.00268949
8.48586e-11
0.0230315
0.00266328
9.88992e-11
0.0230208
0.00264064
1.08077e-10
0.023002
0.00261106
1.13428e-10
0.0230373
0.00252847
1.26597e-10
0.0231416
0.00238787
1.5077e-10
0.0232984
0.00221366
1.96025e-10
0.0234981
0.00199625
2.28477e-10
0.0237489
0.0017333
2.55318e-10
0.0240397
0.00144211
2.68829e-10
0.024347
0.00113827
2.65584e-10
0.0246468
0.000844161
2.42303e-10
0.0249124
0.000576243
1.99658e-10
0.0251292
0.000346608
1.46623e-10
0.0252888
0.000158225
9.34964e-11
0.0253965
6.98587e-06
4.4255e-11
0.0254519
-0.000106606
1.14308e-11
0.025477
-0.000203941
-9.34526e-12
0.0254753
-0.000294569
-1.48416e-11
-0.000374828
-2.41565e-11
0.0192157
0.00563307
2.45763e-09
0.0213387
0.00643405
-1.40387e-10
0.023259
0.00689507
1.42848e-10
0.024793
0.00714588
4.31748e-10
0.0260959
0.00716604
5.57716e-10
0.0271872
0.00700894
5.08562e-10
0.0281029
0.00674761
4.13048e-10
0.0288545
0.00641226
3.107e-10
0.029455
0.00602407
1.92167e-10
0.0299199
0.00559441
1.59925e-10
0.0302632
0.00513749
4.91461e-11
0.0305119
0.00465971
-1.13055e-11
0.0306827
0.00417182
-6.01576e-11
0.0307868
0.00368055
-9.19578e-11
0.0308358
0.003194
-1.16009e-10
0.0308414
0.0027182
-1.29344e-10
0.0308124
0.00225668
-1.37199e-10
0.0307549
0.00181206
-1.42108e-10
0.0306736
0.00138653
-1.45317e-10
0.0305676
0.000980715
-1.47656e-10
0.0304395
0.000595749
-1.50645e-10
0.0302858
0.000232321
-1.5367e-10
0.0301081
-0.000110373
-1.5657e-10
0.0299069
-0.0004316
-1.58656e-10
0.0296835
-0.000731947
-1.59881e-10
0.0294429
-0.00101209
-1.60767e-10
0.0291826
-0.00127245
-1.59691e-10
0.028909
-0.0015131
-1.58258e-10
0.0286187
-0.00173499
-1.54596e-10
0.0283176
-0.00193764
-1.50313e-10
0.0280041
-0.00212268
-1.44706e-10
0.0276827
-0.00228927
-1.38496e-10
0.027354
-0.00243921
-1.32364e-10
0.0270196
-0.00257168
-1.2613e-10
0.0266822
-0.00268838
-1.20777e-10
0.0263419
-0.00278884
-1.15512e-10
0.0260016
-0.00287412
-1.11199e-10
0.0256632
-0.00294455
-1.0655e-10
0.0253278
-0.00300027
-1.01983e-10
0.0249992
-0.00304234
-9.69006e-11
0.0246783
-0.00307057
-9.07187e-11
0.0243675
-0.00308566
-8.33463e-11
0.0240688
-0.00308759
-7.4478e-11
0.0237846
-0.00307605
-6.35634e-11
0.0235179
-0.00305098
-5.06307e-11
0.0232732
-0.00301106
-3.57809e-11
0.0230547
-0.00295463
-1.68688e-11
0.0228542
-0.00287935
-8.6005e-12
0.0226704
-0.00279492
8.29452e-12
0.0225183
-0.00270189
2.81029e-11
0.02241
-0.00258253
5.30868e-11
0.0223457
-0.00243271
7.18819e-11
0.0222916
-0.00224721
1.21127e-10
0.0222682
-0.00204429
1.25943e-10
0.022318
-0.00183135
1.36948e-10
0.0224499
-0.0015739
1.52651e-10
0.0226056
-0.00125811
1.7935e-10
0.0227754
-0.000911143
1.70608e-10
0.022942
-0.000558409
1.40012e-10
0.0230885
-0.000206272
1.01994e-10
0.0231995
0.000125751
5.88442e-11
0.0232692
0.000427223
2.87493e-11
0.0233245
0.000690167
8.86129e-13
0.0233688
0.000930817
-1.38937e-12
0.023385
0.00116096
-5.49877e-12
0.0233667
0.00136632
-1.07704e-11
0.0233384
0.00153759
-1.79435e-11
0.0233058
0.00168949
-9.91626e-12
0.0232669
0.00183303
5.64281e-13
0.0232265
0.00196447
9.87869e-12
0.0231845
0.00208684
2.26947e-11
0.023142
0.00220065
3.25533e-11
0.0230975
0.00230562
3.50392e-11
0.0230522
0.00240037
4.95684e-11
0.023007
0.00248435
5.65904e-11
0.0229636
0.00255573
5.85457e-11
0.0229252
0.00261364
7.19485e-11
0.0228942
0.0026559
7.99878e-11
0.0228738
0.00268077
9.14061e-11
0.0228702
0.00268456
1.00626e-10
0.0228808
0.00266738
1.19919e-10
0.022872
0.0026595
1.22297e-10
0.0228952
0.00260524
1.31705e-10
0.0229963
0.00249463
1.48248e-10
0.0231461
0.00235746
1.78865e-10
0.0233321
0.00217303
2.18279e-10
0.0235713
0.00193993
2.49606e-10
0.0238582
0.00167013
2.67444e-10
0.0241721
0.00137869
2.70286e-10
0.0244905
0.00108573
2.54579e-10
0.0247854
0.000809592
2.19174e-10
0.0250403
0.000565807
1.72259e-10
0.0252371
0.000360922
1.18812e-10
0.0253814
0.000195823
6.98634e-11
0.0254719
6.463e-05
3.00293e-11
0.025518
-3.69605e-05
2.21541e-12
0.0255433
-0.000126107
-1.5606e-11
0.0255526
-0.000208979
-1.71192e-11
0.0255409
-0.000278897
-2.04819e-11
-0.000349628
-2.05374e-11
0.0170705
0.00452635
2.61856e-09
0.0189153
0.0046075
-1.154e-10
0.0206221
0.00516513
2.74971e-10
0.0221399
0.00555378
5.3013e-10
0.0234681
0.00574618
5.15141e-10
0.0246256
0.00577528
4.0752e-10
0.0256324
0.00569394
2.94142e-10
0.0265052
0.00552561
1.81558e-10
0.0272545
0.00529084
1.24004e-10
0.0278933
0.00499913
1.09679e-11
0.0284344
0.0046623
-5.50345e-11
0.0288743
0.0042922
-1.1064e-10
0.0292257
0.00389522
-1.46064e-10
0.0294953
0.00348528
-1.69167e-10
0.0296976
0.00306625
-1.7569e-10
0.0298426
0.00264895
-1.76429e-10
0.0299327
0.0022368
-1.72582e-10
0.0299767
0.00183495
-1.67559e-10
0.029974
0.00144659
-1.62515e-10
0.0299304
0.00107375
-1.58611e-10
0.0298502
0.000718589
-1.57296e-10
0.0297364
0.000381747
-1.56359e-10
0.0295941
6.49995e-05
-1.58149e-10
0.0294247
-0.000231435
-1.61159e-10
0.0292295
-0.000507796
-1.63153e-10
0.0290126
-0.000765437
-1.64811e-10
0.0287734
-0.00100454
-1.64788e-10
0.0285174
-0.00122636
-1.64274e-10
0.0282459
-0.00143094
-1.62057e-10
0.0279622
-0.00161927
-1.58644e-10
0.0276686
-0.00179118
-1.54438e-10
0.0273655
-0.00194805
-1.49058e-10
0.0270545
-0.00208865
-1.43783e-10
0.0267359
-0.00221543
-1.38582e-10
0.0264125
-0.00232646
-1.33682e-10
0.0260828
-0.00242464
-1.2867e-10
0.0257504
-0.0025075
-1.25168e-10
0.0254149
-0.00257836
-1.19719e-10
0.0250804
-0.00263477
-1.15563e-10
0.0247495
-0.00268064
-1.10746e-10
0.0244237
-0.00271372
-1.04791e-10
0.0241066
-0.00273693
-9.86632e-11
0.0237989
-0.0027484
-9.03615e-11
0.0235048
-0.00274975
-8.0664e-11
0.023226
-0.00273951
-6.87e-11
0.0229645
-0.00271767
-5.5316e-11
0.0227249
-0.00268352
-3.99878e-11
0.0225068
-0.00263376
-2.19164e-11
0.0223046
-0.00256831
-1.24384e-11
0.0221154
-0.00249322
4.20613e-12
0.021953
-0.00240876
2.69547e-11
0.0218243
-0.00230048
4.81347e-11
0.0217342
-0.00216283
6.87228e-11
0.021671
-0.00199731
1.16763e-10
0.0216165
-0.00179798
1.19836e-10
0.0216184
-0.00159845
1.3399e-10
0.0216974
-0.00136531
1.53612e-10
0.0218293
-0.00108143
1.87598e-10
0.0219825
-0.000748659
1.81874e-10
0.0221423
-0.000407367
1.65876e-10
0.0222977
-5.7982e-05
1.31854e-10
0.0224187
0.000277326
9.88617e-11
0.0225058
0.000584201
6.66244e-11
0.022568
0.000854563
4.23766e-11
0.0226269
0.00109341
1.89722e-11
0.0226698
0.00131556
1.71355e-11
0.0226777
0.00152317
1.45064e-11
0.0226627
0.00170067
1.00002e-11
0.0226459
0.00184694
1.26869e-11
0.0226261
0.00198152
2.2305e-11
0.022604
0.00210557
2.70723e-11
0.0225808
0.00221845
4.31002e-11
0.0225581
0.00232233
5.33983e-11
0.0225356
0.00241512
6.34198e-11
0.022517
0.00249531
7.3651e-11
0.0225019
0.00256107
8.26383e-11
0.0224949
0.00260973
9.55929e-11
0.0225002
0.0026384
1.03374e-10
0.0225111
0.00265262
1.24152e-10
0.0225354
0.00264728
1.26337e-10
0.0225617
0.00262297
1.35352e-10
0.0226567
0.00254966
1.52509e-10
0.0227957
0.00244721
1.79211e-10
0.0229636
0.00230134
2.10805e-10
0.0231894
0.00210126
2.46319e-10
0.023468
0.00185834
2.66468e-10
0.0237858
0.00158763
2.76495e-10
0.0241158
0.00130247
2.66862e-10
0.0244389
0.00102547
2.40536e-10
0.0247285
0.000771974
1.98148e-10
0.0249685
0.000554056
1.47403e-10
0.0251549
0.000374021
9.89416e-11
0.0252849
0.000230398
5.4456e-11
0.0253698
0.000116845
2.20105e-11
0.025416
2.64396e-05
-3.9653e-12
0.0254454
-5.6429e-05
-1.04017e-11
0.0254602
-0.000131817
-1.62811e-11
0.0254572
-0.000198324
-1.68365e-11
0.0254449
-0.000258571
-1.99562e-11
-0.000319621
-1.98394e-11
0.0174795
0.00384141
2.77704e-09
0.0182581
0.00385783
-7.41272e-11
0.0192948
0.00409778
1.78313e-10
0.0203605
0.00441422
2.97804e-10
0.0214027
0.00462637
2.52413e-10
0.022401
0.00472581
1.82402e-10
0.023346
0.00473413
1.18217e-10
0.0242177
0.00467208
5.03139e-11
0.0250167
0.00454256
-2.17449e-11
0.0257359
0.00435633
-9.36269e-11
0.0263809
0.00411655
-1.52805e-10
0.0269463
0.00383652
-1.97978e-10
0.0274324
0.00352244
-2.24194e-10
0.0278418
0.00318627
-2.34138e-10
0.0281722
0.00283531
-2.31e-10
0.0284338
0.00247751
-2.20198e-10
0.0286213
0.00212009
-2.049e-10
0.028746
0.0017668
-1.89446e-10
0.0288099
0.00142353
-1.7565e-10
0.0288206
0.0010917
-1.6479e-10
0.0287901
0.000774785
-1.5829e-10
0.0287183
0.000473431
-1.54301e-10
0.0286184
0.000188522
-1.53946e-10
0.0284895
-7.91551e-05
-1.56038e-10
0.0283342
-0.000327957
-1.58182e-10
0.0281553
-0.000559463
-1.60862e-10
0.027952
-0.000774889
-1.6216e-10
0.0277287
-0.000974359
-1.63107e-10
0.0274874
-0.00115937
-1.62849e-10
0.0272289
-0.00132945
-1.61169e-10
0.0269589
-0.00148575
-1.59239e-10
0.0266738
-0.00162824
-1.55503e-10
0.0263791
-0.00175711
-1.52005e-10
0.0260751
-0.00187335
-1.48008e-10
0.0257646
-0.00197615
-1.44512e-10
0.0254447
-0.00206771
-1.39286e-10
0.0251182
-0.00214619
-1.38656e-10
0.0247906
-0.00221464
-1.33524e-10
0.0244673
-0.00227247
-1.27101e-10
0.0241552
-0.0023207
-1.2254e-10
0.023854
-0.00236037
-1.13828e-10
0.0235639
-0.00238973
-1.08952e-10
0.0232851
-0.00241118
-1.01347e-10
0.0230189
-0.00242164
-9.27222e-11
0.022762
-0.00242438
-8.115e-11
0.0225182
-0.00241507
-6.94979e-11
0.0222808
-0.00239673
-5.51908e-11
0.0220556
-0.00236461
-4.05708e-11
0.0218407
-0.00232061
-2.39648e-11
0.021632
-0.00226015
-1.42528e-11
0.0214303
-0.00219268
7.6429e-13
0.0212493
-0.00211553
3.02625e-11
0.0210968
-0.00201536
4.03598e-11
0.0209745
-0.0018898
6.67989e-11
0.0208984
-0.00174154
9.4852e-11
0.0208256
-0.00155602
1.30796e-10
0.020792
-0.00136307
1.36578e-10
0.0208278
-0.00115174
1.49258e-10
0.0209396
-0.000899477
1.73214e-10
0.0210758
-0.000589714
1.89329e-10
0.0212321
-0.000258196
1.89631e-10
0.0213853
8.19685e-05
1.6704e-10
0.0215195
0.00041218
1.2923e-10
0.0216282
0.000719859
1.02537e-10
0.0217046
0.000992051
6.29589e-11
0.0217692
0.00123267
4.72429e-11
0.0218306
0.00144582
4.58232e-11
0.0218752
0.00164516
4.38568e-11
0.0218887
0.00182408
4.19023e-11
0.0218959
0.00197003
3.34244e-11
0.0219048
0.00209382
4.31762e-11
0.0219113
0.00220837
5.71929e-11
0.0219231
0.00230932
6.71137e-11
0.0219385
0.00239602
8.0233e-11
0.0219617
0.00246964
9.32891e-11
0.0219943
0.00252285
1.04174e-10
0.0220344
0.0025626
1.26793e-10
0.0220708
0.00259334
1.30425e-10
0.0221278
0.00258522
1.39698e-10
0.022223
0.00253714
1.53887e-10
0.0223502
0.00247555
1.7713e-10
0.0225002
0.00237767
2.00849e-10
0.0226998
0.00221376
2.41446e-10
0.0229582
0.00200811
2.64245e-10
0.0232591
0.00176233
2.80042e-10
0.0235856
0.00149453
2.80439e-10
0.0239202
0.00122117
2.63056e-10
0.0242297
0.000963646
2.26973e-10
0.0245025
0.000734307
1.81046e-10
0.0247203
0.000541487
1.31174e-10
0.0248874
0.000384761
8.56691e-11
0.0250043
0.000259446
4.84944e-11
0.0250798
0.000160701
2.17612e-11
0.0251259
8.12576e-05
-5.90335e-13
0.0251565
4.66052e-06
-1.22721e-12
0.0251719
-6.36434e-05
-3.47918e-12
0.0251736
-0.000126355
-8.04245e-12
0.0251664
-0.00018271
-1.78239e-11
0.0251542
-0.00023757
-2.19984e-11
-0.000290787
-2.16146e-11
0.0167145
0.00303641
2.43055e-09
0.0175906
0.00302098
-1.2566e-10
0.0183638
0.00331082
-7.22183e-11
0.0191054
0.00361148
1.79688e-11
0.0198614
0.00381593
-3.64829e-11
0.0206441
0.00392526
-2.23341e-11
0.0214446
0.00395923
-3.47472e-11
0.0222415
0.00393401
-6.53098e-11
0.0230101
0.00385406
-1.09271e-10
0.0237367
0.00372203
-1.584e-10
0.0244045
0.00354326
-2.03579e-10
0.0250087
0.00332391
-2.38649e-10
0.0255384
0.00307287
-2.59446e-10
0.0259954
0.00279782
-2.64986e-10
0.0263756
0.00250781
-2.57141e-10
0.0266856
0.00220889
-2.40089e-10
0.0269271
0.00190819
-2.18286e-10
0.0271071
0.00160962
-1.95995e-10
0.0272333
0.00131759
-1.76355e-10
0.0273089
0.00103442
-1.60715e-10
0.0273441
0.000762174
-1.50306e-10
0.0273383
0.00050205
-1.44317e-10
0.0272978
0.000254241
-1.40257e-10
0.027225
1.9944e-05
-1.45143e-10
0.0271182
-0.000197899
-1.47122e-10
0.0269832
-0.00040172
-1.50135e-10
0.026818
-0.000591421
-1.52529e-10
0.0266283
-0.000767237
-1.5485e-10
0.0264167
-0.000930605
-1.56824e-10
0.0261836
-0.00108094
-1.57089e-10
0.0259368
-0.00121986
-1.57753e-10
0.0256762
-0.00134665
-1.56111e-10
0.0254082
-0.0014627
-1.55227e-10
0.0251315
-0.00156776
-1.53231e-10
0.0248514
-0.00166289
-1.5074e-10
0.0245765
-0.00174786
-1.49667e-10
0.02431
-0.00182427
-1.42652e-10
0.0240531
-0.0018914
-1.40426e-10
0.0237988
-0.00195021
-1.36925e-10
0.0235491
-0.002
-1.31767e-10
0.0232976
-0.00204142
-1.27483e-10
0.0230536
-0.00207397
-1.19762e-10
0.02281
-0.00209913
-1.10505e-10
0.0225655
-0.00211495
-1.02161e-10
0.0223172
-0.0021226
-9.18228e-11
0.0220634
-0.0021208
-8.05599e-11
0.0218062
-0.00210968
-6.83067e-11
0.0215467
-0.00208933
-5.47946e-11
0.0212944
-0.00205842
-4.15964e-11
0.0210469
-0.0020165
-2.54263e-11
0.0208107
-0.00196148
-1.68477e-11
0.0205845
-0.00190227
8.14139e-13
0.0203852
-0.00183016
2.07199e-11
0.0202154
-0.00173917
3.80947e-11
0.0200771
-0.00162599
5.72077e-11
0.0199846
-0.0014911
8.50949e-11
0.0199117
-0.00132417
1.24166e-10
0.0198655
-0.00113801
1.29167e-10
0.0198729
-0.00094418
1.40943e-10
0.0199554
-0.000713736
1.61507e-10
0.0200859
-0.000432479
1.98292e-10
0.0202389
-0.00011468
2.02325e-10
0.0204018
0.000212202
1.82839e-10
0.0205545
0.000537199
1.57674e-10
0.0206849
0.000841001
1.19238e-10
0.0207927
0.00111529
9.97562e-11
0.0208796
0.00135455
7.90348e-11
0.0209622
0.00156332
6.88042e-11
0.0210399
0.001751
6.81972e-11
0.0210979
0.00192032
6.85144e-11
0.0211342
0.00206775
7.08025e-11
0.0211736
0.00218211
7.88072e-11
0.0212151
0.00227806
8.76931e-11
0.0212688
0.00235615
1.02138e-10
0.0213289
0.00241794
1.16484e-10
0.0213892
0.00247108
1.31001e-10
0.0214566
0.00249996
1.47785e-10
0.0215824
0.00247215
1.5404e-10
0.0217372
0.00243253
1.70827e-10
0.0218898
0.00238347
1.9311e-10
0.0220905
0.0022665
2.33229e-10
0.0223537
0.00210079
2.57419e-10
0.0226562
0.0018916
2.80626e-10
0.0229934
0.00164865
2.87806e-10
0.023338
0.00139103
2.79061e-10
0.0236747
0.0011349
2.54491e-10
0.0239738
0.00089959
2.14604e-10
0.0242298
0.000695225
1.67732e-10
0.0244265
0.000526402
1.21029e-10
0.0245745
0.000390625
8.08001e-11
0.0246754
0.000281481
5.08095e-11
0.0247403
0.000195308
2.29808e-11
0.0247774
0.000124185
4.42088e-12
0.024801
5.56349e-05
-1.61643e-12
0.0248089
-6.44094e-06
1.61366e-11
0.0248055
-6.44373e-05
4.44895e-12
0.0247897
-0.000117147
-1.24637e-11
0.0247674
-0.000167564
-1.28657e-11
0.0247393
-0.000215074
-1.97923e-11
-0.000261768
-2.03543e-11
0.0175001
0.00241957
9.64209e-10
0.0179031
0.00266131
-4.94664e-10
0.0182897
0.00290852
-3.3588e-10
0.018685
0.00315687
-2.33099e-10
0.0191184
0.00333949
-1.5874e-10
0.0196327
0.00342063
-1.72354e-10
0.0202179
0.00343037
-1.42494e-10
0.0208495
0.00338455
-1.35487e-10
0.0214928
0.00329581
-1.45e-10
0.0221218
0.00316675
-1.65844e-10
0.0227183
0.0030049
-1.91988e-10
0.0232682
0.00281486
-2.17551e-10
0.0237648
0.00260311
-2.36323e-10
0.0242053
0.00237559
-2.44145e-10
0.0245907
0.00213735
-2.39941e-10
0.0249209
0.00189347
-2.25717e-10
0.0252007
0.00164739
-2.05548e-10
0.0254287
0.001403
-1.83587e-10
0.0256108
0.00116207
-1.63587e-10
0.025745
0.000927497
-1.47576e-10
0.0258357
0.000699888
-1.36602e-10
0.0258839
0.000481288
-1.3017e-10
0.025889
0.00027167
-1.28498e-10
0.0258581
7.18915e-05
-1.25605e-10
0.0257895
-0.000115765
-1.2908e-10
0.0256934
-0.000291079
-1.34095e-10
0.0255676
-0.000454458
-1.38222e-10
0.0254202
-0.000606304
-1.41332e-10
0.0252537
-0.00074716
-1.45575e-10
0.0250732
-0.000877545
-1.47699e-10
0.0248861
-0.000998201
-1.50047e-10
0.0246934
-0.00110976
-1.50646e-10
0.0244991
-0.00121265
-1.50387e-10
0.0243042
-0.00130715
-1.51402e-10
0.0241095
-0.00139324
-1.51847e-10
0.0239146
-0.00147159
-1.50721e-10
0.0237168
-0.00154204
-1.4866e-10
0.023515
-0.00160495
-1.47238e-10
0.0233066
-0.00165989
-1.43301e-10
0.0230882
-0.00170737
-1.39244e-10
0.0228578
-0.00174698
-1.33171e-10
0.0226157
-0.00177899
-1.27158e-10
0.0223584
-0.00180322
-1.1811e-10
0.0220847
-0.00181994
-1.12593e-10
0.0218027
-0.00182854
-1.03004e-10
0.0215134
-0.00183124
-9.09947e-11
0.0212275
-0.00182599
-7.85831e-11
0.0209478
-0.00181506
-6.55875e-11
0.0206788
-0.00179506
-5.25399e-11
0.0204246
-0.00176842
-3.88826e-11
0.0201882
-0.00173018
-2.55731e-11
0.019963
-0.00168336
-1.6357e-11
0.0197582
-0.00163046
-1.99953e-12
0.0195741
-0.00156527
1.5668e-11
0.0194144
-0.00148159
2.79506e-11
0.0192867
-0.00138083
5.79147e-11
0.0191971
-0.00125652
7.49112e-11
0.0191362
-0.00110596
1.18173e-10
0.019098
-0.000929915
1.23529e-10
0.0191109
-0.000750702
1.34781e-10
0.0191958
-0.000538516
1.56319e-10
0.0193359
-0.000281813
1.9655e-10
0.0195025
2.2259e-05
2.07471e-10
0.0196845
0.000337828
2.01478e-10
0.0198624
0.000655281
1.79209e-10
0.0200255
0.000954713
1.58851e-10
0.0201638
0.00122771
1.30423e-10
0.0202776
0.00146603
1.12501e-10
0.020378
0.00167024
1.09469e-10
0.0204724
0.00184948
1.06141e-10
0.0205608
0.00200188
1.06735e-10
0.0206332
0.00213172
1.09041e-10
0.0206969
0.00223375
1.14174e-10
0.0207557
0.00231304
1.37394e-10
0.0208198
0.00236583
1.42442e-10
0.0209249
0.00237884
1.54997e-10
0.0210736
0.00235437
1.79686e-10
0.021216
0.00233273
1.88675e-10
0.0213834
0.00226253
2.14315e-10
0.021616
0.00214094
2.50493e-10
0.021893
0.00197163
2.75594e-10
0.0222072
0.00176325
2.90956e-10
0.0225483
0.00152648
2.93086e-10
0.0228885
0.00128155
2.77156e-10
0.0232139
0.00104442
2.45751e-10
0.0234949
0.000832595
2.03362e-10
0.0237286
0.000652182
1.57964e-10
0.0239048
0.000505768
1.15911e-10
0.0240326
0.000388737
8.12983e-11
0.0241172
0.000294454
5.5567e-11
0.0241674
0.00021824
3.73377e-11
0.024193
0.000154744
2.26338e-11
0.0242063
9.57433e-05
1.11211e-11
0.0242025
3.99278e-05
1.04388e-11
0.0241896
-1.32423e-05
9.22491e-12
0.0241679
-6.22001e-05
6.58659e-13
0.0241398
-0.000107948
-6.08238e-12
0.0241053
-0.000152057
-1.13872e-11
0.0240657
-0.00019283
-1.95353e-11
-0.000233421
-2.10253e-11
0.0175379
0.00195424
-7.09699e-10
0.017903
0.0023378
-6.08962e-10
0.0181908
0.00260465
-4.92142e-10
0.0184634
0.00285939
-4.17461e-10
0.0187672
0.00303644
-3.06047e-10
0.019137
0.00309954
-2.57855e-10
0.0195832
0.0030663
-1.95011e-10
0.0200794
0.00297829
-1.46532e-10
0.0205931
0.00285206
-1.17383e-10
0.0210984
0.00269966
-1.08631e-10
0.0215885
0.00253045
-1.16975e-10
0.0220561
0.00234974
-1.36767e-10
0.0224994
0.00216151
-1.59079e-10
0.022914
0.00196858
-1.7611e-10
0.0232953
0.00177246
-1.83194e-10
0.0236376
0.00157473
-1.79695e-10
0.0239364
0.00137661
-1.6823e-10
0.0241869
0.00117957
-1.52947e-10
0.0243881
0.000984746
-1.37805e-10
0.0245392
0.000793609
-1.25558e-10
0.0246411
0.000607127
-1.17381e-10
0.0246977
0.000426635
-1.13127e-10
0.0247104
0.00025284
-1.12174e-10
0.0246871
8.63153e-05
-1.12483e-10
0.0246325
-7.15954e-05
-1.15091e-10
0.024555
-0.000219702
-1.19003e-10
0.02446
-0.000358008
-1.22629e-10
0.0243535
-0.000486782
-1.272e-10
0.0242404
-0.000606323
-1.30101e-10
0.0241213
-0.000717713
-1.33925e-10
0.0239973
-0.000820929
-1.38186e-10
0.0238665
-0.000917034
-1.42422e-10
0.0237303
-0.00100582
-1.4801e-10
0.023585
-0.00108818
-1.49829e-10
0.0234287
-0.00116372
-1.52256e-10
0.0232585
-0.00123299
-1.53702e-10
0.0230722
-0.00129541
-1.53964e-10
0.0228681
-0.00135152
-1.5305e-10
0.0226465
-0.00140079
-1.50368e-10
0.0224109
-0.00144366
-1.46406e-10
0.0221625
-0.00147992
-1.41146e-10
0.0219016
-0.00151022
-1.33407e-10
0.0216379
-0.00153387
-1.25832e-10
0.0213756
-0.00155267
-1.13613e-10
0.021119
-0.00156518
-1.04184e-10
0.0208671
-0.00157264
-9.43988e-11
0.0206213
-0.00157372
-8.42695e-11
0.0203799
-0.00156924
-7.34042e-11
0.0201445
-0.00155811
-6.19916e-11
0.0199152
-0.00154023
-5.09257e-11
0.0196934
-0.00151483
-3.83111e-11
0.0194819
-0.00147995
-3.01163e-11
0.0192767
-0.0014384
-1.82773e-11
0.019088
-0.00138952
-5.12838e-12
0.0189198
-0.00132848
1.06375e-11
0.018778
-0.00125233
2.41865e-11
0.0186675
-0.00116003
4.15535e-11
0.0185982
-0.00104654
7.01058e-11
0.0185641
-0.000907055
1.12314e-10
0.0185438
-0.000737955
1.15036e-10
0.0185765
-0.000569323
1.26659e-10
0.0186682
-0.000371771
1.57321e-10
0.018822
-0.000134781
2.0247e-10
0.0190009
0.000155572
2.12565e-10
0.0191974
0.000459783
2.16386e-10
0.019391
0.000768788
2.06757e-10
0.0195689
0.00106237
1.83722e-10
0.0197228
0.00132859
1.67039e-10
0.0198548
0.00156042
1.45685e-10
0.0199704
0.00175524
1.40253e-10
0.0200753
0.00191747
1.41396e-10
0.0201778
0.00204944
1.42025e-10
0.0202765
0.00214982
1.48025e-10
0.0203803
0.00221998
1.59163e-10
0.0204963
0.00225145
1.82938e-10
0.0206309
0.00224321
1.83645e-10
0.0207731
0.0022065
2.05014e-10
0.0209598
0.00213076
2.4046e-10
0.0211978
0.00200191
2.72109e-10
0.0214774
0.00183134
2.90322e-10
0.0217918
0.0016248
2.99718e-10
0.0221219
0.00139735
2.96326e-10
0.0224425
0.00116735
2.76311e-10
0.0227368
0.000950597
2.42662e-10
0.0229827
0.000761541
2.00285e-10
0.0231792
0.000603755
1.57334e-10
0.023322
0.000477759
1.18998e-10
0.0234223
0.000377373
8.87733e-11
0.0234845
0.000297076
6.60017e-11
0.0235205
0.000229731
5.00235e-11
0.0235344
0.00017357
3.72685e-11
0.0235361
0.000123199
2.29045e-11
0.0235233
7.39028e-05
1.91049e-11
0.0235027
2.67805e-05
1.62267e-11
0.0234726
-1.80086e-05
1.05664e-11
0.0234374
-5.93629e-05
-3.50563e-13
0.0233953
-9.87936e-05
-5.03688e-13
0.0233518
-0.000136287
-1.36618e-11
0.023307
-0.000171202
-1.97683e-11
-0.000205969
-2.17754e-11
0.0168031
0.0013481
-1.4744e-09
0.0174238
0.00181135
-1.25235e-09
0.0178296
0.00221031
-7.27462e-10
0.0181597
0.00252402
-4.77071e-10
0.0185031
0.00271745
-3.62291e-10
0.0188893
0.00277911
-2.51717e-10
0.0193076
0.0027302
-1.75043e-10
0.0197486
0.0026128
-9.87127e-11
0.0201933
0.00245854
-4.33302e-11
0.0206257
0.00228779
-1.39959e-11
0.0210432
0.00211299
-9.86103e-12
0.0214442
0.00193997
-2.57419e-11
0.0218308
0.00177088
-5.25878e-11
0.0222004
0.00160539
-8.05567e-11
0.0225458
0.00144312
-1.01874e-10
0.0228597
0.00128289
-1.12993e-10
0.0231343
0.00112423
-1.14692e-10
0.0233642
0.000966877
-1.1044e-10
0.0235467
0.000811011
-1.04056e-10
0.0236813
0.000657402
-9.86294e-11
0.0237705
0.000506867
-9.55619e-11
0.0238201
0.000360523
-9.50393e-11
0.0238352
0.000219276
-9.60085e-11
0.0238242
8.34721e-05
-9.77544e-11
0.0237945
-4.58941e-05
-9.9845e-11
0.0237507
-0.000167879
-1.02787e-10
0.0236999
-0.000282545
-1.06151e-10
0.023641
-0.00038988
-1.09632e-10
0.0235756
-0.000490046
-1.13557e-10
0.0235009
-0.000583808
-1.18698e-10
0.0234137
-0.00067138
-1.24398e-10
0.0233121
-0.000753327
-1.3178e-10
0.0231931
-0.000829635
-1.38475e-10
0.0230548
-0.000900715
-1.44745e-10
0.0228978
-0.000966256
-1.50485e-10
0.0227228
-0.00102652
-1.54591e-10
0.0225317
-0.00108126
-1.56645e-10
0.022329
-0.00113059
-1.56846e-10
0.022117
-0.00117452
-1.54515e-10
0.021899
-0.00121306
-1.50474e-10
0.0216792
-0.0012463
-1.44389e-10
0.0214576
-0.00127445
-1.36345e-10
0.0212372
-0.00129738
-1.28461e-10
0.0210161
-0.00131558
-1.1817e-10
0.0207941
-0.00132877
-1.0833e-10
0.0205718
-0.0013371
-9.83864e-11
0.0203471
-0.00134057
-8.78223e-11
0.0201221
-0.00133886
-7.76529e-11
0.0198952
-0.00133219
-6.75472e-11
0.0196707
-0.00131968
-5.78612e-11
0.0194471
-0.00130167
-4.73711e-11
0.0192329
-0.0012765
-3.70929e-11
0.0190241
-0.0012439
-2.95434e-11
0.018829
-0.00120674
-1.86225e-11
0.0186514
-0.00116031
-7.01306e-12
0.0184929
-0.00110356
6.63509e-12
0.0183653
-0.00103358
2.54808e-11
0.018266
-0.000949045
3.70699e-11
0.0182071
-0.000844255
6.47396e-11
0.0181858
-0.000715498
1.09345e-10
0.0181765
-0.000554317
1.14674e-10
0.0182111
-0.000396065
1.29187e-10
0.0182963
-0.000212305
1.50437e-10
0.0184416
1.09681e-05
1.91233e-10
0.0186195
0.000276355
2.25606e-10
0.0188144
0.00056631
2.46127e-10
0.0190059
0.000862482
2.38576e-10
0.0191822
0.00114476
2.22378e-10
0.0193369
0.00139725
2.02255e-10
0.0194721
0.00161262
1.87922e-10
0.0195932
0.00178667
1.84702e-10
0.0197094
0.00192103
1.8638e-10
0.0198273
0.00201739
1.90976e-10
0.0199572
0.00207159
2.06792e-10
0.0201101
0.00207681
2.12238e-10
0.0202676
0.0020549
2.2932e-10
0.0204551
0.0019813
2.54676e-10
0.0206823
0.00185471
2.8224e-10
0.0209437
0.00168441
3.04429e-10
0.0212321
0.00148243
3.13284e-10
0.0215269
0.0012653
3.05562e-10
0.0218149
0.00105006
2.83094e-10
0.0220709
0.000853701
2.47765e-10
0.0222835
0.000685284
2.07132e-10
0.0224491
0.000548302
1.67127e-10
0.0225686
0.000440116
1.32316e-10
0.0226476
0.000355238
1.04455e-10
0.0226976
0.00028711
8.33349e-11
0.022725
0.000229988
6.70424e-11
0.0227329
0.000181279
5.49765e-11
0.0227304
0.000137151
3.97455e-11
0.0227238
9.50496e-05
3.08925e-11
0.0227099
5.47558e-05
2.17731e-11
0.0226867
1.58269e-05
1.97907e-11
0.022659
-2.06895e-05
1.22688e-11
0.0226362
-5.7015e-05
2.24535e-12
0.0226121
-8.99044e-05
-4.43526e-12
0.0225884
-0.000122321
-8.96819e-12
0.0225626
-0.000150909
-1.90605e-11
-0.000179901
-2.41127e-11
0.0174386
0.00110677
-1.72433e-09
0.0177296
0.00162408
-1.44773e-09
0.0179823
0.00198355
-7.58156e-10
0.0182497
0.00226778
-3.876e-10
0.0185665
0.00243747
-2.2231e-10
0.0189363
0.00247303
-1.1941e-10
0.0193359
0.0023984
-4.79897e-11
0.0197428
0.00225544
1.9892e-11
0.0201416
0.00208245
7.74817e-11
0.0205271
0.00190452
1.2283e-10
0.020898
0.00173374
1.24665e-10
0.021255
0.00157381
1.08508e-10
0.0215959
0.00142515
5.78759e-11
0.0219189
0.0012855
1.97094e-11
0.0222224
0.00115283
-1.54352e-11
0.022499
0.00102449
-4.19594e-11
0.0227408
0.000898619
-5.771e-11
0.0229385
0.000774304
-6.53617e-11
0.0230884
0.000651132
-6.8734e-11
0.0231907
0.000529554
-7.11152e-11
0.023252
0.000410161
-7.4289e-11
0.0232815
0.000293959
-7.83267e-11
0.0232885
0.000181633
-8.2123e-11
0.023282
7.3711e-05
-8.5104e-11
0.023267
-2.94886e-05
-8.75463e-11
0.0232468
-0.000127686
-8.90966e-11
0.023221
-0.000220604
-9.10985e-11
0.0231863
-0.000308209
-9.38445e-11
0.0231399
-0.000390593
-9.78998e-11
0.0230778
-0.000468235
-1.03753e-10
0.0229978
-0.000541333
-1.11438e-10
0.022899
-0.000610215
-1.20436e-10
0.0227813
-0.000674866
-1.30019e-10
0.0226472
-0.000735297
-1.39571e-10
0.0224984
-0.00079156
-1.47081e-10
0.0223382
-0.000843297
-1.53339e-10
0.0221683
-0.000890695
-1.5728e-10
0.0219917
-0.000933305
-1.58829e-10
0.0218094
-0.000971454
-1.57353e-10
0.0216221
-0.00100483
-1.53513e-10
0.0214304
-0.00103368
-1.47559e-10
0.0212331
-0.001058
-1.3971e-10
0.0210297
-0.00107804
-1.30856e-10
0.0208199
-0.00109361
-1.20893e-10
0.0206027
-0.00110539
-1.1056e-10
0.0203796
-0.00111271
-1.00767e-10
0.0201502
-0.00111649
-9.09319e-11
0.0199175
-0.00111576
-8.16914e-11
0.019683
-0.00111147
-7.19512e-11
0.01945
-0.00110256
-6.30184e-11
0.0192219
-0.00108941
-5.45452e-11
0.0190017
-0.0010712
-4.58432e-11
0.0187943
-0.00104734
-3.7199e-11
0.0185978
-0.00101785
-2.97671e-11
0.0184198
-0.000983159
-2.08315e-11
0.0182589
-0.000939956
-9.79793e-12
0.0181218
-0.000888048
3.56487e-12
0.0180079
-0.000824171
2.425e-11
0.0179229
-0.000745975
4.16074e-11
0.0178725
-0.000649858
6.27609e-11
0.0178567
-0.000530223
1.10476e-10
0.0178524
-0.000380786
1.1664e-10
0.0178817
-0.0002337
1.29358e-10
0.0179605
-6.43587e-05
1.49154e-10
0.0180936
0.00013494
1.96796e-10
0.0182563
0.000384023
2.51428e-10
0.0184412
0.00065211
2.70626e-10
0.0186297
0.00092715
2.67314e-10
0.0188077
0.00118868
2.55227e-10
0.0189706
0.00141938
2.4204e-10
0.0191173
0.0016077
2.28654e-10
0.0192563
0.00174866
2.29583e-10
0.0193979
0.00184085
2.35096e-10
0.0195503
0.00187849
2.55105e-10
0.0197201
0.0018656
2.62222e-10
0.0199147
0.0018104
2.94048e-10
0.0201447
0.00169655
3.10875e-10
0.0204041
0.00153696
3.23985e-10
0.0206788
0.00134539
3.28415e-10
0.020958
0.00113971
3.19147e-10
0.0212206
0.000939385
2.94228e-10
0.0214502
0.000759787
2.5944e-10
0.0216397
0.0006091
2.2049e-10
0.0217838
0.000488971
1.83323e-10
0.0218858
0.000395847
1.51601e-10
0.0219563
0.000323745
1.25633e-10
0.0220001
0.000266484
1.05172e-10
0.0220225
0.000219026
8.83149e-11
0.0220339
0.000177495
7.44897e-11
0.0220373
0.000140056
6.06914e-11
0.0220343
0.000105696
4.19188e-11
0.0220262
7.15285e-05
3.87444e-11
0.0220195
3.83135e-05
3.35289e-11
0.0220146
6.29044e-06
2.66736e-11
0.0220079
-2.37141e-05
1.08573e-11
0.0220029
-5.33707e-05
1.71794e-12
0.0219984
-8.11284e-05
-4.70063e-12
0.0219983
-0.000107652
-1.27687e-11
0.0219989
-0.000131185
-2.08758e-11
-0.000154716
-2.2584e-11
0.0166482
0.000629744
-2.14391e-09
0.0172542
0.00113872
-1.62422e-09
0.0176936
0.00157109
-6.92504e-10
0.0181095
0.00187066
-2.32517e-10
0.0185565
0.00203412
-5.36895e-11
0.0190197
0.00206482
3.24984e-11
0.0194738
0.00198924
9.94861e-11
0.0199048
0.00184989
1.0605e-10
0.0203141
0.00168582
1.43663e-10
0.0207028
0.00152325
1.69254e-10
0.0210654
0.00137311
1.74509e-10
0.0214012
0.0012377
1.54528e-10
0.0217121
0.00111541
1.18567e-10
0.0219971
0.00100352
1.20169e-10
0.0222531
0.000899063
5.5565e-11
0.0224728
0.000799252
1.83617e-11
0.0226533
0.000701941
-8.41182e-12
0.0227926
0.000606027
-2.68075e-11
0.0228922
0.000511289
-3.97247e-11
0.0229583
0.00041785
-4.99086e-11
0.0229984
0.000326292
-5.88722e-11
0.023022
0.000237142
-6.66081e-11
0.0230363
0.000150971
-7.22862e-11
0.0230451
6.80268e-05
-7.5828e-11
0.0230497
-1.21906e-05
-7.69842e-11
0.0230462
-8.78346e-05
-7.69869e-11
0.0230334
-0.000161319
-7.71739e-11
0.0230061
-0.000231113
-7.85521e-11
0.0229621
-0.000297664
-8.23033e-11
0.0228992
-0.000360806
-8.91094e-11
0.0228169
-0.000420953
-9.81982e-11
0.0227173
-0.000477659
-1.09579e-10
0.0226011
-0.000531429
-1.21667e-10
0.0224725
-0.000581422
-1.33782e-10
0.0223323
-0.000628349
-1.44437e-10
0.0221841
-0.000671095
-1.53287e-10
0.0220285
-0.000710608
-1.58394e-10
0.0218664
-0.000745651
-1.60911e-10
0.0216983
-0.000777274
-1.60193e-10
0.0215231
-0.000804394
-1.56382e-10
0.0213405
-0.000828132
-1.50148e-10
0.0211507
-0.000847498
-1.42201e-10
0.0209516
-0.00086378
-1.32491e-10
0.0207442
-0.000875958
-1.22306e-10
0.0205268
-0.000885391
-1.11924e-10
0.0203014
-0.000891035
-1.01643e-10
0.0200689
-0.00089413
-9.2212e-11
0.0198321
-0.000893688
-8.30825e-11
0.0195942
-0.000890635
-7.48355e-11
0.0193573
-0.0008841
-6.701e-11
0.0191262
-0.000874512
-5.97589e-11
0.0189033
-0.000861242
-5.25931e-11
0.0186918
-0.000843918
-4.51455e-11
0.0184943
-0.000821892
-3.8518e-11
0.0183106
-0.000795975
-3.07899e-11
0.0181451
-0.000764177
-2.10759e-11
0.0179967
-0.000725649
-1.02391e-11
0.0178684
-0.000678909
3.52772e-12
0.0177608
-0.000621881
1.9327e-11
0.0176791
-0.000551742
4.17188e-11
0.0176251
-0.00046577
6.79649e-11
0.0176035
-0.000355409
1.12245e-10
0.0175939
-0.000223354
1.18078e-10
0.017617
-9.00421e-05
1.31731e-10
0.0176835
6.00944e-05
1.59466e-10
0.0178106
0.000237523
2.11058e-10
0.0179697
0.000463082
2.5842e-10
0.0181578
0.000704348
2.83466e-10
0.0183564
0.000951209
2.90552e-10
0.0185548
0.00118089
2.90588e-10
0.0187453
0.00137716
2.86781e-10
0.018929
0.00152425
2.85904e-10
0.0191142
0.00161377
2.93591e-10
0.0193117
0.00163856
2.9377e-10
0.0195192
0.00160958
3.18294e-10
0.0197576
0.0015185
3.37803e-10
0.0200183
0.00137869
3.49627e-10
0.0202906
0.00120485
3.49818e-10
0.0205601
0.00101651
3.36574e-10
0.0208075
0.000833001
3.10042e-10
0.0210205
0.000669299
2.74705e-10
0.0211937
0.000533743
2.37358e-10
0.0213229
0.000427262
2.02345e-10
0.0214152
0.000346083
1.72445e-10
0.0214785
0.000284493
1.48226e-10
0.0215166
0.000236544
1.27968e-10
0.0215371
0.000197431
1.10749e-10
0.0215483
0.000163699
9.55165e-11
0.0215516
0.000133449
8.14786e-11
0.021547
0.000104669
6.61011e-11
0.0215444
7.81367e-05
4.58349e-11
0.0215442
5.14686e-05
4.37237e-11
0.0215446
2.50845e-05
3.80504e-11
0.021544
-8.63892e-07
2.80341e-11
0.0215464
-2.4763e-05
8.93953e-12
0.0215542
-4.80252e-05
5.13221e-12
0.0215631
-7.06304e-05
-3.1145e-12
0.0215768
-9.1623e-05
-1.18389e-11
0.0215914
-0.000110154
-2.1431e-11
-0.000128342
-2.26652e-11
0.0171849
0.000452696
-1.77501e-09
0.0173966
0.00100634
-1.34428e-09
0.0177046
0.00131878
-4.90129e-10
0.0180988
0.00153005
-5.38311e-11
0.0185562
0.00163968
5.96988e-11
0.0190271
0.00164111
9.10445e-11
0.0194786
0.00155541
1.79428e-10
0.0199045
0.00142251
1.73369e-10
0.0203078
0.00127734
2.38658e-10
0.0206934
0.00114055
2.10282e-10
0.0210579
0.00101894
2.55904e-10
0.0213924
0.000913145
2.04205e-10
0.0216907
0.000819675
1.82526e-10
0.0219549
0.000735613
1.36234e-10
0.0221864
0.000657762
1.26818e-10
0.0223819
0.000583998
6.54727e-11
0.0225355
0.000512737
2.86499e-11
0.0226469
0.000442796
1.24891e-12
0.0227216
0.000374031
-1.9792e-11
0.022772
0.000306339
-3.66669e-11
0.0228085
0.000240214
-5.03853e-11
0.0228405
0.000175795
-6.07906e-11
0.0228719
0.000113481
-6.72799e-11
0.0229014
5.33793e-05
-7.02028e-11
0.0229239
-3.2198e-06
-6.68831e-11
0.0229389
-6.08677e-05
-6.63562e-11
0.022939
-0.000114407
-6.48403e-11
0.022921
-0.000166215
-6.5097e-11
0.0228834
-0.000216467
-6.86105e-11
0.0228271
-0.000264474
-7.58545e-11
0.0227515
-0.000310761
-8.63414e-11
0.0226604
-0.000354397
-9.98045e-11
0.0225539
-0.00039612
-1.14241e-10
0.0224358
-0.000434705
-1.28851e-10
0.0223069
-0.000471058
-1.41782e-10
0.0221694
-0.000503945
-1.5222e-10
0.0220243
-0.000534232
-1.59453e-10
0.0218711
-0.000561026
-1.62625e-10
0.0217102
-0.0005849
-1.62535e-10
0.0215393
-0.000605479
-1.58938e-10
0.0213577
-0.000622917
-1.5271e-10
0.0211642
-0.000637481
-1.44184e-10
0.0209575
-0.000648877
-1.34386e-10
0.0207387
-0.000657963
-1.24058e-10
0.0205086
-0.000664086
-1.13358e-10
0.0202693
-0.000668373
-1.03459e-10
0.0200247
-0.000669889
-9.39947e-11
0.0197768
-0.000669986
-8.50227e-11
0.0195312
-0.000667175
-7.7441e-11
0.0192901
-0.000663167
-6.97144e-11
0.0190583
-0.000655899
-6.34202e-11
0.0188368
-0.00064707
-5.68527e-11
0.0186287
-0.000634584
-5.07724e-11
0.0184349
-0.000619347
-4.49138e-11
0.0182541
-0.000600531
-3.78834e-11
0.0180868
-0.000577973
-3.00935e-11
0.0179342
-0.000550605
-2.1348e-11
0.0177955
-0.000517751
-8.51539e-12
0.0176739
-0.000477885
3.45577e-12
0.017571
-0.000429424
1.99216e-11
0.0174896
-0.000369217
3.74374e-11
0.0174387
-0.000296058
7.55451e-11
0.0174106
-0.000195703
1.1928e-10
0.0174071
-9.12223e-05
1.26105e-10
0.0174365
2.21694e-05
1.42025e-10
0.0175104
0.000149371
1.72187e-10
0.0176444
0.000303009
2.29844e-10
0.0178168
0.000496897
2.72846e-10
0.0180241
0.000702354
3.05585e-10
0.0182495
0.000908851
3.27387e-10
0.0184854
0.00109328
3.40991e-10
0.0187245
0.0012361
3.4645e-10
0.0189677
0.00131984
3.54232e-10
0.0192201
0.00133523
3.63276e-10
0.0194884
0.00128742
3.749e-10
0.0197687
0.00118189
3.82385e-10
0.0200516
0.00103755
3.78944e-10
0.0203225
0.000875349
3.60862e-10
0.0205684
0.000715138
3.31342e-10
0.0207756
0.000571892
2.94577e-10
0.0209393
0.000453122
2.56928e-10
0.021063
0.000360177
2.23047e-10
0.0211494
0.000289996
1.94044e-10
0.0212073
0.000237466
1.70135e-10
0.0212451
0.00019752
1.50262e-10
0.0212669
0.000165887
1.32596e-10
0.0212747
0.000139455
1.16375e-10
0.0212774
0.000115981
1.01274e-10
0.0212758
9.46957e-05
8.69871e-11
0.0212665
7.37608e-05
6.95604e-11
0.0212591
5.41682e-05
4.90422e-11
0.0212547
3.44699e-05
4.65722e-11
0.0212513
1.48294e-05
4.07946e-11
0.0212459
-4.41129e-06
2.8298e-11
0.0212437
-2.31215e-05
9.80292e-12
0.0212455
-4.05672e-05
5.42088e-12
0.0212478
-5.75645e-05
-4.5018e-12
0.0212535
-7.30056e-05
-1.27161e-11
0.0212601
-8.76192e-05
-2.20539e-11
-9.91082e-05
-2.23199e-11
0.0169075
0.000365715
-1.52363e-09
0.017032
0.000907651
-1.07304e-09
0.017387
0.00109145
-3.99504e-10
0.0178473
0.00118132
4.12288e-11
0.0183421
0.00121652
1.6236e-10
0.0188291
0.00117904
1.9335e-10
0.0192881
0.00108526
2.20069e-10
0.0197183
0.000967227
2.54384e-10
0.0201286
0.00085042
2.39093e-10
0.0205236
0.000747041
2.84709e-10
0.0208997
0.000659304
2.46514e-10
0.0212471
0.000585281
2.28743e-10
0.0215538
0.000521429
2.18718e-10
0.0218217
0.00046429
1.6847e-10
0.0220526
0.000411696
1.15239e-10
0.0222477
0.00036218
1.13813e-10
0.0224019
0.000314502
5.03303e-11
0.0225157
0.000268109
1.68907e-11
0.0225954
0.000222841
-1.03132e-11
0.0226546
0.000178656
-3.17103e-11
0.0227039
0.000135833
-4.83533e-11
0.0227519
9.44431e-05
-6.03836e-11
0.0228002
5.47455e-05
-6.69356e-11
0.0228451
1.64679e-05
-6.76026e-11
0.0228833
-1.94722e-05
-6.79548e-11
0.0229049
-5.4127e-05
-6.13761e-11
0.0229094
-8.79383e-05
-5.69314e-11
0.0228958
-0.000120421
-5.57452e-11
0.0228634
-0.000151788
-5.86082e-11
0.0228153
-0.000182099
-6.60964e-11
0.0227506
-0.000211306
-7.75941e-11
0.0226725
-0.000239286
-9.24205e-11
0.0225803
-0.000265911
-1.08744e-10
0.0224751
-0.000290953
-1.25034e-10
0.0223586
-0.000314361
-1.40037e-10
0.0222299
-0.00033585
-1.51712e-10
0.0220921
-0.000355434
-1.60438e-10
0.0219422
-0.000372965
-1.64208e-10
0.0217828
-0.000388411
-1.64794e-10
0.0216092
-0.000401847
-1.60916e-10
0.0214234
-0.000413143
-1.54711e-10
0.0212215
-0.000422607
-1.4581e-10
0.0210053
-0.000430009
-1.35788e-10
0.0207748
-0.000435973
-1.25076e-10
0.0205332
-0.000439858
-1.14537e-10
0.0202826
-0.000442837
-1.0427e-10
0.0200292
-0.00044367
-9.51759e-11
0.019774
-0.000443869
-8.64023e-11
0.0195242
-0.000442002
-7.91373e-11
0.0192808
-0.000439387
-7.22516e-11
0.0190473
-0.000434742
-6.61703e-11
0.0188259
-0.000428914
-6.05651e-11
0.018616
-0.000421001
-5.46029e-11
0.0184205
-0.000410925
-4.9091e-11
0.0182366
-0.000398864
-4.26404e-11
0.0180665
-0.00038421
-3.54899e-11
0.017907
-0.000366728
-2.81913e-11
0.0177584
-0.000345668
-1.76971e-11
0.0176233
-0.000320536
-6.61133e-12
0.0175016
-0.000289844
1.10706e-11
0.0173987
-0.000252597
2.66205e-11
0.0173179
-0.000206081
5.02351e-11
0.0172725
-0.000147874
8.34799e-11
0.0172414
-6.91382e-05
1.35189e-10
0.017246
6.89868e-06
1.41045e-10
0.017291
9.04867e-05
1.56199e-10
0.0173885
0.000186823
1.87745e-10
0.0175451
0.000308895
2.5025e-10
0.0177509
0.000455104
3.05532e-10
0.0180006
0.000611307
3.52598e-10
0.0182809
0.00075872
3.84074e-10
0.0185845
0.000875757
4.06984e-10
0.0189002
0.00094385
4.18692e-10
0.0192219
0.000951277
4.28272e-10
0.0195466
0.000900884
4.2768e-10
0.0198623
0.000805896
4.15962e-10
0.0201567
0.000686157
3.92028e-10
0.020415
0.000562019
3.57313e-10
0.0206297
0.000448496
3.18109e-10
0.0207988
0.000353365
2.7938e-10
0.020924
0.000278609
2.44926e-10
0.0210133
0.000222079
2.1611e-10
0.0210729
0.000179994
1.91903e-10
0.0211086
0.000148482
1.71345e-10
0.0211286
0.000124209
1.53242e-10
0.0211374
0.000104619
1.36281e-10
0.0211333
8.80169e-05
1.20411e-10
0.0211271
7.30474e-05
1.04478e-10
0.0211175
5.9421e-05
9.10229e-11
0.0211031
4.59071e-05
6.7696e-11
0.0210905
3.27572e-05
6.09281e-11
0.0210825
1.97276e-05
4.76287e-11
0.0210765
6.60567e-06
3.73369e-11
0.0210688
-6.40764e-06
2.87424e-11
0.0210627
-1.89079e-05
1.06474e-11
0.0210602
-3.06643e-05
4.37904e-12
0.0210576
-4.19522e-05
-7.07052e-12
0.0210562
-5.24186e-05
-1.24439e-11
0.0210535
-6.18728e-05
-2.15153e-11
-6.90082e-05
-2.28976e-11
0.0162892
0.000154435
-1.78501e-09
0.0167275
0.000472288
-1.15878e-09
0.0173154
0.000591714
-3.23988e-10
0.0179553
0.000635112
9.75665e-11
0.0185817
0.00064246
1.86074e-10
0.0191623
0.000610839
2.32642e-10
0.019687
0.000551062
2.4995e-10
0.0201623
0.000482763
2.40671e-10
0.0206014
0.000419521
3.05671e-10
0.0210092
0.000365715
3.16828e-10
0.0213823
0.000321317
2.66694e-10
0.0217106
0.000284201
2.4899e-10
0.0219858
0.000252275
2.15052e-10
0.022208
0.000223651
1.95316e-10
0.0223872
0.000197135
1.36728e-10
0.0225318
0.00017206
1.21468e-10
0.0226358
0.000147959
6.61645e-11
0.0226989
0.000124586
2.62497e-11
0.0227305
0.000101976
-5.95573e-12
0.0227496
8.00887e-05
-3.14108e-11
0.022772
5.90424e-05
-5.07082e-11
0.0228051
3.88241e-05
-6.36579e-11
0.0228472
1.96469e-05
-6.97407e-11
0.0228884
1.95745e-06
-6.94452e-11
0.0229215
-1.57815e-05
-6.31289e-11
0.022938
-3.20423e-05
-5.62461e-11
0.0229338
-4.77058e-05
-5.06886e-11
0.0229093
-6.29416e-05
-4.84841e-11
0.0228661
-7.77424e-05
-5.09727e-11
0.0228075
-9.21512e-05
-5.88305e-11
0.0227347
-0.000106145
-7.12039e-11
0.0226504
-0.000119656
-8.72617e-11
0.0225541
-0.000132649
-1.04925e-10
0.022447
-0.000144912
-1.22672e-10
0.02233
-0.000156529
-1.39014e-10
0.0222019
-0.000167144
-1.518e-10
0.0220653
-0.000176967
-1.61466e-10
0.0219168
-0.00018566
-1.658e-10
0.0217582
-0.000193411
-1.66755e-10
0.0215855
-0.000200077
-1.62899e-10
0.0214002
-0.000205715
-1.56684e-10
0.0211986
-0.00021041
-1.47409e-10
0.0209847
-0.0002141
-1.37572e-10
0.0207555
-0.000217051
-1.26235e-10
0.0205177
-0.000219022
-1.15863e-10
0.0202714
-0.000220475
-1.05332e-10
0.020022
-0.000220956
-9.61724e-11
0.0197729
-0.000220979
-8.76235e-11
0.0195272
-0.000220153
-8.02523e-11
0.0192885
-0.000218656
-7.36045e-11
0.0190567
-0.000216485
-6.74793e-11
0.0188362
-0.00021336
-6.23665e-11
0.0186231
-0.000209492
-5.65948e-11
0.0184217
-0.000204473
-5.15555e-11
0.0182289
-0.000198381
-4.55467e-11
0.0180466
-0.000191173
-3.95675e-11
0.0178736
-0.000182412
-3.17197e-11
0.0177142
-0.000172273
-2.29331e-11
0.0175635
-0.000159845
-1.19744e-11
0.0174301
-0.000145236
1.70318e-12
0.017311
-0.000127163
1.42419e-11
0.0172124
-0.000104835
4.19291e-11
0.0171435
-7.77164e-05
6.30594e-11
0.0170996
-3.8171e-05
1.27675e-10
0.0170946
2.8748e-08
1.34843e-10
0.017129
4.21344e-05
1.4918e-10
0.017209
8.94215e-05
1.78065e-10
0.0173462
0.000147712
2.34007e-10
0.0175414
0.000224193
2.98048e-10
0.0177976
0.000307721
3.60883e-10
0.0181122
0.00038993
4.13142e-10
0.0184717
0.0004568
4.50389e-10
0.0188583
0.000495278
4.72786e-10
0.0192491
0.000497293
4.78338e-10
0.0196235
0.0004644
4.64025e-10
0.0199648
0.000407069
4.33489e-10
0.0202592
0.000338916
3.92233e-10
0.0205011
0.000272169
3.47557e-10
0.0206907
0.000214131
3.05354e-10
0.0208311
0.000167545
2.68853e-10
0.0209319
0.000131979
2.3862e-10
0.0210002
0.00010546
2.13603e-10
0.0210416
8.574e-05
1.92025e-10
0.0210641
7.08421e-05
1.7296e-10
0.0210725
5.92157e-05
1.5534e-10
0.0210687
4.97056e-05
1.38328e-10
0.0210577
4.15972e-05
1.22689e-10
0.0210468
3.42436e-05
1.05804e-10
0.0210297
2.74121e-05
9.2862e-11
0.0210135
2.11795e-05
6.8213e-11
0.0210017
1.42543e-05
6.54571e-11
0.0209961
7.52487e-06
5.2752e-11
0.0209905
1.07174e-06
3.72529e-11
0.0209856
-5.54476e-06
2.25938e-11
0.0209832
-1.15938e-05
9.26124e-12
0.0209845
-1.7719e-05
5.74921e-12
0.0209865
-2.33041e-05
-9.01411e-12
0.0209889
-2.85196e-05
-1.2741e-11
0.0209892
-3.30445e-05
-2.19548e-11
-3.59451e-05
-2.37892e-11
0.0161635
-1.69527e-09
0.0166322
-1.08873e-09
0.0173446
-3.19765e-10
0.0180612
1.52545e-10
0.0187216
2.84387e-10
0.0193214
2.18771e-10
0.0198621
2.27556e-10
0.020351
3.03616e-10
0.0207963
2.81474e-10
0.0212021
2.88575e-10
0.0215653
2.80892e-10
0.0218782
2.60803e-10
0.0221346
2.40598e-10
0.0223344
2.02655e-10
0.0224859
1.46934e-10
0.0225994
1.1861e-10
0.0226777
7.80345e-11
0.0227149
2.97008e-11
0.0227172
-4.42329e-12
0.0227098
-3.23522e-11
0.0227158
-5.30491e-11
0.022745
-6.62914e-11
0.0227913
-7.15644e-11
0.022842
-6.92027e-11
0.0228828
-6.34794e-11
0.0229046
-5.51902e-11
0.0229029
-4.81661e-11
0.0228787
-4.5211e-11
0.0228339
-4.74928e-11
0.0227729
-5.55546e-11
0.0226975
-6.83316e-11
0.0226112
-8.50494e-11
0.0225133
-1.03338e-10
0.0224065
-1.21877e-10
0.0222905
-1.38841e-10
0.0221645
-1.52189e-10
0.0220305
-1.62322e-10
0.0218842
-1.66861e-10
0.0217279
-1.68011e-10
0.0215566
-1.64122e-10
0.0213723
-1.57909e-10
0.0211717
-1.48416e-10
0.0209586
-1.38615e-10
0.0207309
-1.26974e-10
0.0204951
-1.16711e-10
0.0202516
-1.05993e-10
0.0200048
-9.68528e-11
0.0197595
-8.83573e-11
0.0195157
-8.10765e-11
0.0192794
-7.43087e-11
0.0190491
-6.86712e-11
0.0188282
-6.3175e-11
0.0186157
-5.79212e-11
0.0184125
-5.28831e-11
0.0182188
-4.70704e-11
0.0180333
-4.0921e-11
0.0178581
-3.37129e-11
0.0176928
-2.52029e-11
0.0175376
-1.45546e-11
0.0173979
-1.9785e-12
0.0172717
1.55639e-11
0.0171668
3.58449e-11
0.0170873
5.29028e-11
0.0170352
1.20707e-10
0.0170243
1.26835e-10
0.0170537
1.40827e-10
0.0171277
1.68306e-10
0.0172558
2.14775e-10
0.0174455
3.06032e-10
0.0177091
3.6674e-10
0.0180463
4.28119e-10
0.0184434
4.78718e-10
0.0188749
5.08276e-10
0.0193076
5.1034e-10
0.0197108
4.85236e-10
0.0200632
4.4125e-10
0.0203545
3.89891e-10
0.0205852
3.41002e-10
0.0207593
2.98467e-10
0.0208864
2.64187e-10
0.0209758
2.36329e-10
0.0210332
2.1303e-10
0.0210666
1.92431e-10
0.021082
1.73787e-10
0.021082
1.56221e-10
0.0210706
1.38849e-10
0.0210545
1.23615e-10
0.0210362
1.06048e-10
0.0210127
9.27966e-11
0.020992
7.07248e-11
0.0209804
6.37159e-11
0.0209741
4.84335e-11
0.020965
3.77058e-11
0.0209595
3.06095e-11
0.0209573
1.08289e-11
0.0209596
2.39572e-12
0.0209629
-1.17857e-11
0.0209656
-1.25001e-11
0.020966
-2.29603e-11
-2.42357e-11
0.00744874
0.00884722
-6.22584e-11
0.00282532
0.00462036
-9.51627e-11
-0.00143344
0.00425568
3.21366e-11
-0.00331471
0.00188142
-5.18204e-11
-0.00459119
0.00127531
1.59962e-11
-0.00525872
0.000665091
6.42151e-11
-0.0054934
0.000232092
8.54549e-11
-0.00580095
0.000305751
9.51932e-11
-0.00614881
0.000345602
1.30015e-10
-0.00644574
0.000294309
1.74264e-10
-0.00666631
0.000217379
2.11655e-10
-0.00683377
0.000165862
1.55395e-10
-0.00695114
0.000117833
2.07971e-11
-0.00705064
9.43821e-05
4.1174e-10
-0.00716308
0.000103586
6.74793e-10
-0.00724833
7.48766e-05
8.26061e-10
-0.00727774
1.87669e-05
8.86117e-10
-0.00725859
-3.39677e-05
1.13463e-09
-0.00718403
-9.1987e-05
1.31939e-09
-0.00704733
-0.000155507
1.42306e-09
-0.00684929
-0.000217058
1.42135e-09
-0.00660037
-0.000266203
1.3083e-09
-0.00631495
-0.000300982
1.13637e-09
-0.00599669
-0.000330819
9.81235e-10
-0.00566091
-0.000345589
7.37809e-10
-0.00531225
-0.000355231
4.97707e-10
-0.0049528
-0.000362559
2.87054e-10
-0.00458465
-0.00036967
1.12057e-10
-0.00420503
-0.00037948
-2.28261e-11
-0.00381289
-0.000389483
-1.20637e-10
-0.00341039
-0.000399074
-1.9456e-10
-0.00298922
-0.00041726
-2.24965e-10
-0.00255562
-0.000428954
-2.65211e-10
-0.00211736
-0.000433233
-2.86086e-10
-0.00167781
-0.000435156
-2.7126e-10
-0.0012369
-0.00043711
-2.45431e-10
-0.000792414
-0.000440438
-2.3396e-10
-0.000345702
-0.000442998
-1.98583e-10
0.000119174
-0.000462459
-7.78714e-11
0.000576182
-0.000456079
3.08809e-11
0.00101383
-0.000438134
1.3412e-10
0.00143352
-0.000421052
2.15272e-10
0.00184275
-0.00041093
2.66544e-10
0.002237
-0.00039704
3.23211e-10
0.00261564
-0.000382689
4.03601e-10
0.00298099
-0.000370255
4.3803e-10
0.00334056
-0.000364918
5.03038e-10
0.0036941
-0.00036034
5.67844e-10
0.00403529
-0.00034833
6.10454e-10
0.00436216
-0.000334573
6.42118e-10
0.00467596
-0.000321951
6.61089e-10
0.00497641
-0.000309572
6.6538e-10
0.0052651
-0.000297498
6.56883e-10
0.00554088
-0.00028561
6.33114e-10
0.00580518
-0.000273405
5.9775e-10
0.00605844
-0.000261882
5.48629e-10
0.00630064
-0.000249953
4.87943e-10
0.00653276
-0.0002387
4.17957e-10
0.00675433
-0.000227266
3.38753e-10
0.00696648
-0.000216381
2.54143e-10
0.00716929
-0.000205518
1.64964e-10
0.00736232
-0.000195161
7.31147e-11
0.00754644
-0.00018481
-1.83458e-11
0.00772179
-0.000175059
-1.094e-10
0.00788874
-0.000165322
-1.97512e-10
0.00804714
-0.000156172
-2.81534e-10
0.00819824
-0.000147051
-3.59268e-10
0.0083412
-0.000138543
-4.30603e-10
0.00847714
-0.000130003
-4.93272e-10
0.00860601
-0.000122094
-5.4794e-10
0.00872741
-0.000114107
-5.94652e-10
0.00884276
-0.000106688
-6.33097e-10
0.00895049
-9.92379e-05
-6.65607e-10
0.00905239
-9.22363e-05
-6.91306e-10
0.00914732
-8.52954e-05
-7.12236e-10
0.00923612
-7.87239e-05
-7.28127e-10
0.00931873
-7.22879e-05
-7.39863e-10
0.00939531
-6.6194e-05
-7.4793e-10
0.00946615
-6.02757e-05
-7.52889e-10
0.00953147
-5.46579e-05
-7.55498e-10
0.00959139
-4.92278e-05
-7.56307e-10
0.00964627
-4.40324e-05
-7.55708e-10
0.00969631
-3.90407e-05
-7.54054e-10
0.00974152
-3.42711e-05
-7.51745e-10
0.00978256
-2.9689e-05
-7.49202e-10
0.00981887
-2.52812e-05
-7.46082e-10
0.00985161
-2.11196e-05
-7.429e-10
0.00987986
-1.70574e-05
-7.39448e-10
0.00990454
-1.30174e-05
-7.35939e-10
0.00992548
-9.41401e-06
-7.31875e-10
0.00994284
-5.90608e-06
-7.27048e-10
0.00995703
-2.27348e-06
-7.21718e-10
0.0099671
1.13869e-06
-7.15697e-10
0.00997504
4.22416e-06
-7.09323e-10
0.00997867
7.55176e-06
-7.0121e-10
0.00997936
1.13498e-05
-6.926e-10
0.00997494
1.57064e-05
-6.8131e-10
0.00996547
2.11601e-05
-6.67945e-10
0.00994853
2.81478e-05
-6.52742e-10
3.69979e-05
-6.3935e-10
0.0114612
0.0132526
-4.42145e-11
0.00790206
0.00817768
-9.18169e-11
0.00602861
0.00612457
-3.55085e-11
0.00354502
0.00436301
-4.82327e-11
0.00179923
0.0030193
1.52592e-11
0.000234801
0.00222525
6.81554e-11
-0.00125333
0.00172094
8.79501e-11
-0.00231664
0.00137304
1.01403e-10
-0.00301429
0.00104597
1.26585e-10
-0.00347852
0.000759587
1.39873e-10
-0.00376745
0.000505688
1.59282e-10
-0.00400461
0.000403069
1.96889e-10
-0.00422877
0.000341603
2.39478e-10
-0.00438516
0.000246929
3.34756e-10
-0.00448571
0.00019678
6.35896e-10
-0.00454249
0.000122949
8.24066e-10
-0.00453285
-1.27283e-06
9.00691e-10
-0.00445889
-0.000122411
1.1859e-09
-0.00432141
-0.000247627
1.38442e-09
-0.00410942
-0.000388361
1.48925e-09
-0.00383843
-0.000510384
1.49234e-09
-0.00352504
-0.000600828
1.37446e-09
-0.00318624
-0.000657814
1.152e-09
-0.00282335
-0.000710854
1.04671e-09
-0.00245524
-0.000729081
7.99701e-10
-0.00207893
-0.000743207
5.60786e-10
-0.00169657
-0.000754457
3.53511e-10
-0.00130436
-0.000770002
1.82881e-10
-0.0009002
-0.000788039
5.00769e-11
-0.000484611
-0.000806976
-4.99653e-11
-5.11891e-05
-0.00083239
-1.74911e-10
0.000376532
-0.000845553
-1.07333e-10
0.000801061
-0.000853445
-1.75198e-10
0.00122412
-0.000855468
-2.11533e-10
0.00164946
-0.000859126
-1.98128e-10
0.002072
-0.000859081
-1.66386e-10
0.00249122
-0.000858221
-1.57048e-10
0.00290691
-0.000856976
-1.43486e-10
0.00330226
-0.000856735
-5.62449e-11
0.0036918
-0.000845832
2.58099e-11
0.00407978
-0.000826449
1.2307e-10
0.00446467
-0.000806302
1.86535e-10
0.00483889
-0.000785398
2.31466e-10
0.00520461
-0.000763415
2.91511e-10
0.00555757
-0.000737465
3.62146e-10
0.00589779
-0.000713066
3.85424e-10
0.00622441
-0.000693628
4.32911e-10
0.00654332
-0.000682169
5.05634e-10
0.00685085
-0.000659521
5.34202e-10
0.00714744
-0.000635134
5.63587e-10
0.00743021
-0.00060931
5.81464e-10
0.00770115
-0.000584992
5.85172e-10
0.00795811
-0.000560067
5.76008e-10
0.00820379
-0.00053629
5.56179e-10
0.00843746
-0.000512133
5.24418e-10
0.00865947
-0.000488836
4.82971e-10
0.00887057
-0.000465363
4.312e-10
0.00907085
-0.000442805
3.70278e-10
0.0092605
-0.000420187
3.01696e-10
0.0094405
-0.000398496
2.27026e-10
0.00961076
-0.000376923
1.47736e-10
0.00977177
-0.000356242
6.56707e-11
0.00992414
-0.000335799
-1.72992e-11
0.0100674
-0.000316283
-1.00345e-10
0.0102024
-0.000297067
-1.81464e-10
0.0103292
-0.000278781
-2.59702e-10
0.0104474
-0.000260846
-3.33488e-10
0.0105586
-0.000243759
-4.01232e-10
0.0106612
-0.000227106
-4.62827e-10
0.0107578
-0.000211112
-5.17294e-10
0.0108463
-0.000195622
-5.64527e-10
0.010929
-0.000180645
-6.04542e-10
0.0110044
-0.000166199
-6.386e-10
0.0110739
-0.000152186
-6.66622e-10
0.0111366
-0.000138741
-6.89579e-10
0.0111936
-0.000125726
-7.07793e-10
0.0112443
-0.000113319
-7.21706e-10
0.0112897
-0.000101381
-7.31876e-10
0.0113292
-9.00401e-05
-7.38852e-10
0.0113638
-7.91538e-05
-7.43286e-10
0.0113931
-6.87915e-05
-7.45831e-10
0.0114176
-5.88261e-05
-7.46553e-10
0.0114375
-4.93214e-05
-7.46254e-10
0.0114528
-4.0302e-05
-7.44908e-10
0.0114644
-3.15283e-05
-7.43589e-10
0.0114716
-2.33576e-05
-7.40548e-10
0.0114757
-1.55354e-05
-7.3768e-10
0.0114757
-8.05921e-06
-7.34134e-10
0.0114722
-3.76556e-07
-7.30495e-10
0.0114662
5.27086e-06
-7.26156e-10
0.0114574
1.13213e-05
-7.2131e-10
0.0114464
1.73512e-05
-7.16348e-10
0.0114322
2.33882e-05
-7.09523e-10
0.0114158
2.937e-05
-7.03129e-10
0.011396
3.56651e-05
-6.94981e-10
0.0113737
4.24688e-05
-6.86247e-10
0.0113476
5.03459e-05
-6.74826e-10
0.0113176
5.9785e-05
-6.61134e-10
0.0112824
7.18699e-05
-6.45379e-10
8.74602e-05
-6.30513e-10
0.0153004
0.0151542
-1.53996e-11
0.012777
0.0106989
-6.57117e-11
0.0105843
0.00831505
-6.2334e-11
0.00847709
0.00646588
-4.03753e-11
0.00649896
0.00499253
-5.83803e-13
0.0048169
0.00389956
5.63603e-11
0.00340993
0.00312486
7.89093e-11
0.00226773
0.00251743
1.00906e-10
0.0013054
0.0020114
1.29596e-10
0.000451486
0.00161523
1.45284e-10
-0.000348336
0.00130693
1.57226e-10
-0.000994108
0.00104968
2.11895e-10
-0.00146048
0.00080591
3.20732e-10
-0.00178124
0.000564246
3.99073e-10
-0.0019213
0.000329621
6.04746e-10
-0.00192511
0.000119989
7.88952e-10
-0.00181459
-0.00012248
1.01013e-09
-0.00165956
-0.000292122
1.27398e-09
-0.00145005
-0.00047642
1.44534e-09
-0.00115026
-0.000710946
1.5491e-09
-0.000800645
-0.000886356
1.5605e-09
-0.000417253
-0.00101032
1.43287e-09
-6.76598e-06
-0.00108951
9.09983e-10
0.000375097
-0.00111809
1.4745e-09
0.000764357
-0.00113825
8.95519e-10
0.00115705
-0.00115252
6.44554e-10
0.0015572
-0.00116899
4.47629e-10
0.00196615
-0.00119084
2.9218e-10
0.00238003
-0.00121255
1.71468e-10
0.00280041
-0.00123659
7.5732e-11
0.00321793
-0.00125958
-5.55357e-13
0.00363939
-0.0012766
-1.82076e-11
0.00406395
-0.00128657
-6.45957e-11
0.00449178
-0.00129223
-1.01092e-10
0.0049163
-0.00129265
-1.01486e-10
0.00533839
-0.00129079
-7.36746e-11
0.00575394
-0.00128362
-5.04692e-11
0.00616163
-0.00127433
-5.36244e-11
0.00655448
-0.0012603
-1.55463e-11
0.00693808
-0.00124063
3.71252e-11
0.00731259
-0.00121354
1.05487e-10
0.00767784
-0.00118335
1.48032e-10
0.00802986
-0.00115065
1.86741e-10
0.00836972
-0.00111572
2.41649e-10
0.00869675
-0.00107797
3.02027e-10
0.00900943
-0.00103824
3.17189e-10
0.00930434
-0.00100204
3.50409e-10
0.00958217
-0.000973603
4.05859e-10
0.00985085
-0.000942328
4.2783e-10
0.0101075
-0.000905993
4.49142e-10
0.0103524
-0.00086776
4.66329e-10
0.0105827
-0.000828828
4.71098e-10
0.0108009
-0.00079099
4.64437e-10
0.0110057
-0.000753564
4.44675e-10
0.0111987
-0.000717165
4.20258e-10
0.0113796
-0.000681256
3.89512e-10
0.0115499
-0.000646166
3.5012e-10
0.0117091
-0.000611635
3.01559e-10
0.0118591
-0.00057791
2.46742e-10
0.0119986
-0.000544963
1.85968e-10
0.0121294
-0.0005128
1.21144e-10
0.0122504
-0.000481594
5.28754e-11
0.012363
-0.000451178
-1.72284e-11
0.0124669
-0.000421814
-8.86382e-11
0.0125625
-0.00039328
-1.59742e-10
0.0126509
-0.000365803
-2.30131e-10
0.0127313
-0.000339182
-2.97281e-10
0.0128051
-0.000313584
-3.60832e-10
0.0128717
-0.000288774
-4.20696e-10
0.0129319
-0.000264946
-4.7427e-10
0.0129855
-0.00024187
-5.21642e-10
0.0130327
-0.000219676
-5.6375e-10
0.013074
-0.000198189
-6.0045e-10
0.013109
-0.000177604
-6.31769e-10
0.0131387
-0.000157655
-6.58396e-10
0.0131625
-0.00013869
-6.8016e-10
0.0131816
-0.000120411
-6.97706e-10
0.0131953
-0.000103156
-7.112e-10
0.0132048
-8.65619e-05
-7.21676e-10
0.0132093
-7.08991e-05
-7.2918e-10
0.0132099
-5.58447e-05
-7.34692e-10
0.0132057
-4.15077e-05
-7.37261e-10
0.0131984
-2.79932e-05
-7.39417e-10
0.013187
-1.52436e-05
-7.39718e-10
0.013173
-2.82062e-06
-7.40841e-10
0.0131562
7.63071e-06
-7.36981e-10
0.0131381
1.76351e-05
-7.34074e-10
0.0131172
2.73384e-05
-7.30042e-10
0.0130949
3.67831e-05
-7.26057e-10
0.0130695
4.5588e-05
-7.21601e-10
0.0130414
5.4045e-05
-7.16081e-10
0.0130116
6.23515e-05
-7.10858e-10
0.0129787
7.04939e-05
-7.03532e-10
0.0129444
7.8653e-05
-6.96853e-10
0.012907
8.69307e-05
-6.87802e-10
0.0128679
9.57574e-05
-6.78688e-10
0.0128259
0.000105577
-6.66591e-10
0.0127816
0.00011717
-6.52409e-10
0.0127344
0.000131513
-6.35573e-10
0.00015015
-6.18941e-10
0.0174121
0.0159071
4.81704e-12
0.0157118
0.0123962
-3.22404e-11
0.0140601
0.00996454
-6.15356e-11
0.0123359
0.00818488
-2.9904e-11
0.010633
0.00669004
9.50776e-12
0.00898375
0.0055407
5.24988e-11
0.00745939
0.00464138
7.57245e-11
0.00609819
0.00387121
1.14347e-10
0.00493173
0.00317636
1.46384e-10
0.0039618
0.00258595
1.55339e-10
0.00314169
0.00212786
1.715e-10
0.00246338
0.00172876
2.37646e-10
0.00191293
0.00135461
3.55215e-10
0.00148657
0.000985416
5.07391e-10
0.00118547
0.000622456
6.7898e-10
0.00103646
0.000259269
8.02345e-10
0.00105215
-0.000151267
1.01951e-09
0.00123054
-0.000489732
1.25239e-09
0.0015123
-0.000784186
1.50578e-09
0.00187369
-0.00110063
1.55253e-09
0.00228379
-0.00132813
1.51472e-09
0.00270409
-0.0014635
1.40635e-09
0.00312394
-0.00154088
1.20822e-09
0.0035487
-0.00157342
1.13695e-09
0.00397482
-0.00159117
9.02545e-10
0.00440614
-0.00160696
7.01246e-10
0.00484566
-0.00162852
5.37674e-10
0.00528952
-0.00165277
4.044e-10
0.00573911
-0.00167818
2.93656e-10
0.00618952
-0.0017016
2.11255e-10
0.00663931
-0.00172239
1.47997e-10
0.007086
-0.00173613
1.17201e-10
0.00753083
-0.00174266
8.37255e-11
0.00796915
-0.00174187
4.37114e-11
0.00840104
-0.00173458
1.95624e-11
0.00882223
-0.00172239
1.91956e-11
0.0092307
-0.00170344
3.94398e-11
0.00962454
-0.00168006
4.76402e-11
0.010002
-0.00165022
5.03757e-11
0.0103643
-0.00161555
7.12678e-11
0.0107116
-0.001574
9.80519e-11
0.0110437
-0.00152923
1.1697e-10
0.0113588
-0.00148077
1.42257e-10
0.0116595
-0.00143115
1.74871e-10
0.0119449
-0.00137849
2.24032e-10
0.0122141
-0.00132348
2.32537e-10
0.0124632
-0.00126804
2.50209e-10
0.0126895
-0.00121828
2.76049e-10
0.0129043
-0.00117676
3.1061e-10
0.0131072
-0.00112855
3.14675e-10
0.0132962
-0.00107678
3.27579e-10
0.0134728
-0.00102492
3.34901e-10
0.0136362
-0.000973218
3.32379e-10
0.0137876
-0.000923078
3.26074e-10
0.0139272
-0.000873733
3.11312e-10
0.0140555
-0.000826018
2.87432e-10
0.0141735
-0.000779092
2.5933e-10
0.0142811
-0.000733788
2.2583e-10
0.0143793
-0.000689185
1.86505e-10
0.0144684
-0.00064621
1.42039e-10
0.014549
-0.000604002
9.34058e-11
0.0146217
-0.00056343
4.10469e-11
0.0146862
-0.000523768
-1.41879e-11
0.0147438
-0.00048569
-7.18635e-11
0.0147937
-0.00044867
-1.31336e-10
0.014837
-0.000413125
-1.91323e-10
0.0148734
-0.000378711
-2.51616e-10
0.0149031
-0.000345621
-3.10378e-10
0.0149267
-0.000313667
-3.6599e-10
0.0149437
-0.000282861
-4.18491e-10
0.014955
-0.000253134
-4.68727e-10
0.0149603
-0.000224459
-5.13612e-10
0.0149602
-0.00019688
-5.53518e-10
0.0149547
-0.000170254
-5.89461e-10
0.014944
-0.000144848
-6.20225e-10
0.0149288
-0.00012044
-6.4661e-10
0.014909
-9.73592e-05
-6.68465e-10
0.0148851
-7.52795e-05
-6.8661e-10
0.0148573
-5.43794e-05
-7.01556e-10
0.0148258
-3.44676e-05
-7.13471e-10
0.0147911
-1.58259e-05
-7.23111e-10
0.0147532
1.96328e-06
-7.27701e-10
0.0147142
1.70343e-05
-7.33038e-10
0.0146733
3.19234e-05
-7.3508e-10
0.0146308
4.6129e-05
-7.34356e-10
0.0145858
5.95874e-05
-7.34416e-10
0.014538
7.22506e-05
-7.32679e-10
0.0144888
8.44298e-05
-7.293e-10
0.0144369
9.60513e-05
-7.24531e-10
0.0143841
0.00010714
-7.19719e-10
0.0143285
0.000117661
-7.12821e-10
0.0142727
0.000127735
-7.06814e-10
0.0142143
0.000137565
-6.98192e-10
0.0141557
0.000147128
-6.9052e-10
0.0140949
0.000156813
-6.8027e-10
0.0140337
0.000166676
-6.70089e-10
0.0139709
0.000177514
-6.57063e-10
0.0139074
0.000189752
-6.41915e-10
0.0138429
0.000204651
-6.2388e-10
0.000223791
-6.05031e-10
0.0185718
0.0161941
2.3432e-11
0.0175387
0.0134284
-1.90297e-11
0.0163153
0.0111858
-4.37418e-11
0.0150291
0.0094669
-2.56141e-11
0.0136827
0.00803067
1.89727e-11
0.0123341
0.00688216
5.12334e-11
0.0110116
0.00595349
9.40236e-11
0.00973433
0.00513994
1.35158e-10
0.00849666
0.00440415
1.81794e-10
0.00735076
0.00372455
2.17484e-10
0.00636467
0.00310981
2.73594e-10
0.00554767
0.00254086
3.75371e-10
0.00489876
0.00199817
5.02824e-10
0.00441695
0.00145738
6.46929e-10
0.00411002
0.000915713
7.84814e-10
0.00397501
0.000376871
9.26354e-10
0.00395407
-0.000154523
1.0097e-09
0.00412951
-0.000693749
1.16066e-09
0.0044838
-0.00117462
1.34257e-09
0.00489837
-0.00155636
1.36004e-09
0.00536479
-0.00183567
1.34463e-09
0.00584632
-0.0019914
1.30926e-09
0.006335
-0.0020747
1.17187e-09
0.00682354
-0.00210507
1.07707e-09
0.00730618
-0.0021108
9.50495e-10
0.00778558
-0.00211925
7.97864e-10
0.00825929
-0.00213263
6.62299e-10
0.00872873
-0.00215056
5.49011e-10
0.00919185
-0.00216804
4.51528e-10
0.00964913
-0.00218405
3.84127e-10
0.0100954
-0.00219297
3.34082e-10
0.0105316
-0.00219404
2.97604e-10
0.0109534
-0.00218467
2.5821e-10
0.0113623
-0.00216667
2.13502e-10
0.011754
-0.00214057
1.69407e-10
0.0121275
-0.00210769
1.37703e-10
0.0124818
-0.00206875
1.23143e-10
0.012816
-0.00202401
1.21467e-10
0.0131304
-0.00197441
1.13968e-10
0.0134264
-0.00191986
1.09158e-10
0.0137059
-0.00186128
1.02789e-10
0.0139693
-0.00179913
9.79483e-11
0.0142185
-0.00173474
1.00367e-10
0.0144508
-0.00166906
1.16631e-10
0.0146671
-0.0016017
1.30801e-10
0.0148668
-0.00153122
1.34335e-10
0.0150502
-0.00146001
1.41959e-10
0.015215
-0.00139262
1.53415e-10
0.0153629
-0.00133445
1.70482e-10
0.0155004
-0.00127643
1.7045e-10
0.0156291
-0.00121594
1.79252e-10
0.0157475
-0.00115447
1.89151e-10
0.0158561
-0.00109252
1.93786e-10
0.0159545
-0.00103216
1.93175e-10
0.0160437
-0.000972743
1.88433e-10
0.0161234
-0.000915473
1.80529e-10
0.0161946
-0.000859184
1.67456e-10
0.0162572
-0.000804948
1.49407e-10
0.0163115
-0.000751708
1.2624e-10
0.0163583
-0.000700383
9.86722e-11
0.0163972
-0.000650176
6.69499e-11
0.0164295
-0.000601771
3.10411e-11
0.0164547
-0.000554661
-8.5857e-12
0.0164744
-0.000509254
-5.21375e-11
0.0164876
-0.000465281
-9.90632e-11
0.016496
-0.000422892
-1.49221e-10
0.0164985
-0.000381975
-2.01061e-10
0.0164967
-0.000342492
-2.54379e-10
0.0164894
-0.00030442
-3.07399e-10
0.0164781
-0.000267651
-3.59316e-10
0.0164616
-0.000232203
-4.0888e-10
0.0164413
-0.000198008
-4.55872e-10
0.0164161
-0.000165106
-4.99928e-10
0.0163874
-0.000133487
-5.39379e-10
0.0163541
-0.000103275
-5.74846e-10
0.0163175
-7.45231e-05
-6.06085e-10
0.016277
-4.72202e-05
-6.33174e-10
0.0162335
-2.16502e-05
-6.56926e-10
0.0161873
2.38949e-06
-6.77596e-10
0.0161394
2.39956e-05
-6.94578e-10
0.0160902
4.46386e-05
-7.08551e-10
0.0160388
6.4113e-05
-7.19836e-10
0.0159849
8.25608e-05
-7.26979e-10
0.0159275
9.98614e-05
-7.30136e-10
0.0158688
0.000116582
-7.32915e-10
0.0158065
0.000132251
-7.32605e-10
0.0157429
0.000147236
-7.31808e-10
0.0156763
0.00016129
-7.28195e-10
0.0156084
0.000174722
-7.23473e-10
0.0155386
0.0001874
-7.17656e-10
0.0154671
0.000199402
-7.09853e-10
0.0153947
0.000210781
-7.02375e-10
0.0153207
0.000221623
-6.92298e-10
0.0152466
0.000232086
-6.83067e-10
0.0151715
0.000242308
-6.71054e-10
0.0150967
0.000252578
-6.59294e-10
0.0150216
0.000263318
-6.44443e-10
0.0149473
0.000275213
-6.27827e-10
0.0148738
0.000289036
-6.07754e-10
0.000306752
-5.85078e-10
0.0193705
0.0162259
1.68571e-11
0.0187018
0.0140937
-1.00052e-11
0.0178262
0.0120602
-2.43711e-11
0.0168688
0.0104214
-1.23748e-11
0.0158265
0.00906792
3.88795e-11
0.0147728
0.0079309
6.79734e-11
0.0137105
0.00700655
1.3087e-10
0.0126419
0.00619878
1.93058e-10
0.0115803
0.00545273
2.76757e-10
0.0105437
0.00474891
3.77253e-10
0.00957998
0.0040596
5.00884e-10
0.0087189
0.00338685
6.63137e-10
0.00800303
0.00269671
8.18936e-10
0.00745327
0.00198788
9.56982e-10
0.00708967
0.00125062
1.04739e-09
0.00692777
0.000505809
1.0895e-09
0.00696644
-0.000235519
1.07454e-09
0.00719125
-0.000963882
1.03435e-09
0.00758487
-0.00161944
9.96298e-10
0.00808105
-0.00210803
9.51626e-10
0.00860791
-0.00242036
9.04437e-10
0.00914752
-0.00258473
7.33075e-10
0.00967884
-0.00265549
8.97318e-10
0.0101976
-0.00267377
9.97785e-10
0.0106979
-0.00265634
1.05204e-09
0.0111784
-0.00264167
9.63407e-10
0.0116357
-0.00263004
8.4892e-10
0.012069
-0.00262238
7.61533e-10
0.0124823
-0.00261595
7.0055e-10
0.0128748
-0.00260692
6.27382e-10
0.0132481
-0.00259293
5.58305e-10
0.0136017
-0.00257108
5.02111e-10
0.013937
-0.00254035
4.44907e-10
0.0142535
-0.00250123
3.84157e-10
0.0145519
-0.00245477
3.21014e-10
0.0148324
-0.00240238
2.62427e-10
0.0150954
-0.00234471
2.13533e-10
0.0153423
-0.00228276
1.79733e-10
0.0155744
-0.00221733
1.5274e-10
0.0157918
-0.00214743
1.28823e-10
0.0159957
-0.0020742
1.03681e-10
0.0161852
-0.00199784
8.07731e-11
0.0163617
-0.00191996
6.31142e-11
0.0165253
-0.00184122
5.1621e-11
0.0166777
-0.00176249
4.42891e-11
0.0168188
-0.00168042
4.42581e-11
0.0169491
-0.00159761
4.43522e-11
0.0170667
-0.00151727
4.43114e-11
0.0171705
-0.0014443
4.41524e-11
0.017264
-0.00137631
4.18129e-11
0.0173506
-0.0013086
4.77703e-11
0.017429
-0.0012398
5.85327e-11
0.0175002
-0.00117026
6.9625e-11
0.0175629
-0.00110188
7.82948e-11
0.0176177
-0.00103443
8.40936e-11
0.0176645
-0.000969103
8.7202e-11
0.0177033
-0.00090512
8.77325e-11
0.017735
-0.000843247
8.4118e-11
0.0177588
-0.000782796
7.66406e-11
0.0177763
-0.000724276
6.45513e-11
0.0177862
-0.00066729
4.84009e-11
0.0177903
-0.000612103
2.72319e-11
0.0177876
-0.000558574
1.76551e-12
0.0177797
-0.000506768
-2.91164e-11
0.0177661
-0.00045668
-6.44851e-11
0.0177479
-0.000408237
-1.05122e-10
0.0177248
-0.000361477
-1.49456e-10
0.0176974
-0.000316247
-1.97272e-10
0.0176656
-0.000272599
-2.47116e-10
0.0176298
-0.000230382
-2.9786e-10
0.0175901
-0.00018969
-3.48256e-10
0.0175465
-0.000150425
-3.96651e-10
0.0174997
-0.000112753
-4.4453e-10
0.017449
-7.6445e-05
-4.85095e-10
0.0173959
-4.23564e-05
-5.24909e-10
0.0173397
-9.99038e-06
-5.60514e-10
0.0172828
1.95332e-05
-5.94159e-10
0.0172237
4.71766e-05
-6.23258e-10
0.017164
7.34679e-05
-6.50383e-10
0.0171004
9.83785e-05
-6.71614e-10
0.0170355
0.000121835
-6.90964e-10
0.016967
0.000144186
-7.05318e-10
0.0168971
0.000165139
-7.17442e-10
0.0168238
0.000185105
-7.24206e-10
0.0167492
0.000203726
-7.29518e-10
0.0166719
0.000221615
-7.30883e-10
0.0165931
0.000238133
-7.30506e-10
0.0165124
0.000254044
-7.27796e-10
0.0164299
0.000268616
-7.22552e-10
0.0163465
0.000282712
-7.16623e-10
0.0162611
0.000295528
-7.07507e-10
0.0161757
0.000307911
-6.98872e-10
0.0160886
0.000319166
-6.86886e-10
0.0160018
0.000330108
-6.75782e-10
0.0159142
0.000340234
-6.61461e-10
0.0158275
0.000350342
-6.47524e-10
0.0157409
0.000360266
-6.30185e-10
0.015656
0.00037101
-6.11331e-10
0.0155725
0.000382863
-5.88729e-10
0.000397499
-5.6138e-10
0.0199437
0.0162044
2.41938e-11
0.0195461
0.0144897
2.103e-12
0.0188656
0.0127359
1.2387e-12
0.0181213
0.0111619
1.38154e-11
0.0173238
0.00985995
5.68714e-11
0.0164845
0.00876323
1.14963e-10
0.0156508
0.00783271
1.83502e-10
0.014807
0.00702965
2.96452e-10
0.0139619
0.00628583
4.44361e-10
0.0131152
0.00557523
6.38645e-10
0.0123063
0.00484413
9.05167e-10
0.0115721
0.00409658
1.1618e-09
0.0109413
0.00329299
1.32023e-09
0.0104483
0.00244926
1.37552e-09
0.0101259
0.00153573
1.33424e-09
0.0100208
0.000571061
1.26306e-09
0.0100978
-0.00035787
1.04938e-09
0.0103417
-0.00124911
7.36957e-10
0.0107056
-0.0020275
6.24684e-10
0.0111164
-0.00255795
4.07806e-10
0.0115279
-0.00286483
2.67727e-10
0.0120123
-0.00309976
3.01572e-10
0.0124827
-0.00315412
4.77172e-10
0.012871
-0.00310109
8.14206e-10
0.013306
-0.0031285
1.25363e-09
0.0137263
-0.00309903
1.19071e-09
0.0141207
-0.00305911
1.10839e-09
0.0144863
-0.00301801
1.02017e-09
0.0148255
-0.00298199
9.23067e-10
0.0151433
-0.00294907
8.36678e-10
0.0154422
-0.00291416
7.66086e-10
0.0157239
-0.00287335
6.99861e-10
0.0159906
-0.00282565
6.28498e-10
0.016242
-0.00277073
5.48977e-10
0.01648
-0.00270939
4.66342e-10
0.0167043
-0.00264217
3.82713e-10
0.0169162
-0.00257046
3.07121e-10
0.0171168
-0.00249574
2.41931e-10
0.0173057
-0.00241696
1.84946e-10
0.0174833
-0.0023348
1.37822e-10
0.0176503
-0.00224988
9.40736e-11
0.017807
-0.00216261
5.37973e-11
0.0179541
-0.00207404
1.88076e-11
0.0180912
-0.00198482
-9.23438e-12
0.018219
-0.00189647
-3.6201e-11
0.0183366
-0.0018045
-3.88494e-11
0.0184453
-0.0017124
-4.37014e-11
0.0185431
-0.00162123
-5.00684e-11
0.0186277
-0.00153445
-5.74626e-11
0.0187029
-0.00145756
-6.78397e-11
0.0187688
-0.00138045
-5.97688e-11
0.0188263
-0.00130418
-4.82846e-11
0.0188772
-0.00122787
-3.33806e-11
0.0189204
-0.00115242
-1.70082e-11
0.0189562
-0.00107776
-1.39829e-12
0.0189842
-0.00100489
1.21392e-11
0.0190046
-0.000933598
2.37876e-11
0.0190179
-0.00086434
3.23955e-11
0.0190238
-0.000796895
3.82353e-11
0.0190234
-0.000731368
3.95531e-11
0.0190162
-0.000667741
3.69519e-11
0.0190031
-0.000605925
2.86743e-11
0.0189838
-0.000546075
1.55003e-11
0.0189592
-0.000487979
-4.16809e-12
0.0189292
-0.000431846
-2.95029e-11
0.0188946
-0.000377394
-6.15105e-11
0.0188552
-0.000324815
-9.88962e-11
0.0188117
-0.000273818
-1.41597e-10
0.0187639
-0.000224584
-1.87919e-10
0.018712
-0.000176881
-2.36972e-10
0.0186561
-0.000130969
-2.87191e-10
0.0185966
-8.66645e-05
-3.36576e-10
0.0185337
-4.44411e-05
-3.86776e-10
0.0184673
-3.90689e-06
-4.24929e-10
0.0184006
3.20812e-05
-4.71938e-10
0.0183318
6.70661e-05
-5.14263e-10
0.0182607
0.000100145
-5.53893e-10
0.0181859
0.000131379
-5.88865e-10
0.0181093
0.000160899
-6.21665e-10
0.0180292
0.000188886
-6.47988e-10
0.0179474
0.000215267
-6.72263e-10
0.0178624
0.000240258
-6.90357e-10
0.017776
0.0002637
-7.06436e-10
0.017687
0.000285873
-7.16608e-10
0.0175965
0.000306539
-7.24285e-10
0.0175043
0.000326131
-7.27666e-10
0.0174104
0.000344285
-7.28094e-10
0.0173156
0.000361478
-7.26183e-10
0.017219
0.000377299
-7.20733e-10
0.017122
0.000392232
-7.14562e-10
0.0170235
0.000405886
-7.04467e-10
0.0169252
0.000418667
-6.94561e-10
0.0168257
0.000430297
-6.80777e-10
0.0167269
0.000441106
-6.67425e-10
0.0166278
0.000450999
-6.5051e-10
0.01653
0.000460268
-6.33561e-10
0.0164327
0.000469094
-6.1307e-10
0.0163376
0.000477893
-5.90631e-10
0.0162444
0.000487314
-5.64858e-10
0.000498066
-5.31264e-10
0.0204279
0.0161287
4.53734e-11
0.0201743
0.0147426
3.89705e-11
0.0196814
0.0132269
4.06745e-11
0.0190486
0.0117897
6.26721e-11
0.0183897
0.0105133
1.07022e-10
0.0177113
0.00943339
1.83669e-10
0.0170252
0.00850879
2.8449e-10
0.0163492
0.00769215
4.47131e-10
0.0156826
0.00693215
7.11647e-10
0.0150373
0.00619779
1.02155e-09
0.0144376
0.00541092
1.43981e-09
0.0138788
0.0046129
1.76168e-09
0.0133647
0.00376626
1.81175e-09
0.0130044
0.0027663
1.87088e-09
0.0128564
0.00162967
1.84426e-09
0.0128447
0.000550515
9.77023e-10
0.0129769
-0.000528003
8.4294e-10
0.0132023
-0.00151327
5.89527e-10
0.0134315
-0.00228319
4.76188e-11
0.0136326
-0.00276616
-8.60772e-10
0.0138373
-0.00308429
-2.68637e-10
0.013991
-0.00326695
-1.22852e-10
0.0142786
-0.00346129
1.77573e-10
0.0147085
-0.00355689
6.3555e-10
0.0150401
-0.00349198
9.85343e-10
0.0153872
-0.00348603
1.38958e-09
0.0157598
-0.00347188
1.40365e-09
0.0161079
-0.00340347
1.34773e-09
0.0164329
-0.00334163
1.22113e-09
0.0167317
-0.00327986
1.09412e-09
0.0170094
-0.00322079
9.84693e-10
0.0172686
-0.00316002
8.84901e-10
0.0175146
-0.00309602
7.84748e-10
0.0177477
-0.00302709
6.80173e-10
0.0179709
-0.00295247
5.77667e-10
0.0181838
-0.00287356
4.72965e-10
0.0183867
-0.0027894
3.78918e-10
0.0185784
-0.00270118
2.9484e-10
0.0187589
-0.00260895
2.10194e-10
0.018928
-0.00251428
1.43645e-10
0.0190861
-0.00241712
8.27845e-11
0.0192329
-0.00231807
2.61584e-11
0.0193688
-0.00221732
-2.25521e-11
0.0194938
-0.00211697
-5.92147e-11
0.0196083
-0.00201685
-9.71556e-11
0.0197145
-0.00191679
-1.02653e-10
0.0198117
-0.00181433
-1.11609e-10
0.0198981
-0.00171241
-1.21984e-10
0.0199732
-0.00161288
-1.32406e-10
0.020034
-0.00152201
-1.45543e-10
0.0200852
-0.00143497
-1.34986e-10
0.0201282
-0.001351
-1.23984e-10
0.0201635
-0.00126743
-1.08586e-10
0.0201914
-0.00118516
-8.85988e-11
0.0202113
-0.00110342
-6.61699e-11
0.0202243
-0.00102349
-4.42721e-11
0.020229
-0.000944991
-2.30905e-11
0.0202269
-0.000868678
-4.53266e-12
0.0202167
-0.000794279
1.20884e-11
0.0201999
-0.000722032
2.41935e-11
0.0201756
-0.000651844
3.24731e-11
0.0201453
-0.000583691
3.45487e-11
0.0201086
-0.00051763
3.12152e-11
0.020067
-0.000453518
2.069e-11
0.02002
-0.000391445
3.60822e-12
0.0199684
-0.000331228
-2.09266e-11
0.0199121
-0.000272913
-5.21665e-11
0.0198515
-0.000216373
-8.96801e-11
0.0197865
-0.000161612
-1.32626e-10
0.0197179
-0.000108658
-1.79559e-10
0.0196455
-5.77e-05
-2.28689e-10
0.0195704
-9.18894e-06
-2.77674e-10
0.019494
3.60168e-05
-3.27374e-10
0.0194166
7.91004e-05
-3.86036e-10
0.0193363
0.000119557
-4.3221e-10
0.0192533
0.000157897
-4.76166e-10
0.0191685
0.000194406
-5.19049e-10
0.0190806
0.000228877
-5.56695e-10
0.0189913
0.000261526
-5.92798e-10
0.0188987
0.000292297
-6.22561e-10
0.018805
0.000321317
-6.50664e-10
0.0187084
0.000348646
-6.7212e-10
0.018611
0.000374248
-6.9136e-10
0.0185113
0.000398361
-7.04595e-10
0.0184105
0.000420759
-7.14586e-10
0.0183081
0.00044187
-7.20275e-10
0.0182042
0.000461322
-7.21863e-10
0.0180995
0.000479618
-7.21217e-10
0.017993
0.000496325
-7.15828e-10
0.0178864
0.000511919
-7.09899e-10
0.017778
0.000526033
-6.9892e-10
0.0176703
0.000538994
-6.88302e-10
0.0175612
0.000550611
-6.72704e-10
0.0174533
0.000561007
-6.57597e-10
0.0173449
0.000570253
-6.37858e-10
0.0172382
0.000578282
-6.17935e-10
0.0171322
0.000585507
-5.93672e-10
0.0170289
0.000591786
-5.66904e-10
0.0169277
0.00059811
-5.3708e-10
0.000604432
-4.95681e-10
0.0208034
0.0160139
6.53061e-11
0.0206644
0.0148775
7.90758e-11
0.0203143
0.0135754
9.32819e-11
0.0198228
0.0122773
1.29987e-10
0.0192521
0.0110768
1.95018e-10
0.0186715
0.0100065
3.01379e-10
0.0180962
0.00907094
4.62642e-10
0.0175279
0.00824243
7.28674e-10
0.0169968
0.0074383
1.10994e-09
0.0165286
0.00663085
1.63081e-09
0.016047
0.00584077
2.2035e-09
0.0156264
0.00498594
2.31541e-09
0.0153545
0.00398262
2.51428e-09
0.0152716
0.00278446
2.75743e-09
0.0152438
0.00160962
1.77114e-09
0.0153435
0.00042203
6.83364e-10
0.0154861
-0.00069905
4.8624e-10
0.0156046
-0.00165184
-3.27241e-11
0.015616
-0.00229192
-1.05309e-09
0.0156206
-0.00276358
-1.30377e-09
0.0156539
-0.00311178
-9.55812e-10
0.0157472
-0.00336794
-7.9795e-11
0.0158221
-0.00354601
4.97541e-12
0.0159969
-0.0037453
1.72141e-10
0.0163505
-0.00386732
5.49944e-10
0.0166784
-0.00384952
1.21798e-09
0.0169892
-0.00382582
1.61377e-09
0.0173416
-0.00379855
1.65165e-09
0.0176929
-0.00373248
1.52088e-09
0.0180174
-0.00364008
1.36447e-09
0.0183103
-0.00354663
1.20429e-09
0.018575
-0.00345513
1.04895e-09
0.0188174
-0.0033658
9.03417e-10
0.0190421
-0.00327693
7.68465e-10
0.0192547
-0.00318612
6.46969e-10
0.0194544
-0.00309222
5.31542e-10
0.0196424
-0.00299342
4.26132e-10
0.0198197
-0.00289121
3.29491e-10
0.0199842
-0.00278459
2.31558e-10
0.0201372
-0.00267636
1.53742e-10
0.020278
-0.00256528
7.60786e-11
0.0204054
-0.00245217
1.14594e-11
0.0205217
-0.00233917
-4.65481e-11
0.0206263
-0.00222679
-8.88096e-11
0.0207207
-0.00211488
-1.24911e-10
0.0208071
-0.00200571
-1.54471e-10
0.0208848
-0.00189335
-1.58291e-10
0.0209527
-0.00178152
-1.65278e-10
0.0210105
-0.00167107
-1.73759e-10
0.0210555
-0.00156757
-1.85199e-10
0.0210892
-0.00146972
-1.75743e-10
0.0211139
-0.00137695
-1.66136e-10
0.0211303
-0.00128577
-1.53397e-10
0.0211402
-0.00119668
-1.34179e-10
0.0211425
-0.00110858
-1.08936e-10
0.0211387
-0.00102236
-8.1599e-11
0.0211273
-0.000937625
-5.32213e-11
0.02111
-0.000855031
-2.69161e-11
0.0210852
-0.000774436
-2.18373e-12
0.0210544
-0.000696099
1.79457e-11
0.0210164
-0.000619971
3.41789e-11
0.0209727
-0.000546062
4.3843e-11
0.0209225
-0.00047437
4.77316e-11
0.020867
-0.00040479
4.40749e-11
0.0208063
-0.000337316
3.33791e-11
0.020741
-0.000271808
1.49808e-11
0.0206712
-0.000208242
-1.08909e-11
0.0205973
-0.000146581
-4.3204e-11
0.0205195
-8.66842e-05
-8.32484e-11
0.0204384
-2.93732e-05
-1.26728e-10
0.0203553
2.50212e-05
-1.7423e-10
0.0202705
7.65526e-05
-2.27532e-10
0.0201835
0.0001255
-2.78221e-10
0.0200941
0.000172028
-3.31847e-10
0.0200025
0.000216187
-3.83338e-10
0.0199081
0.00025792
-4.31731e-10
0.0198125
0.00029749
-4.78631e-10
0.0197141
0.0003349
-5.20008e-10
0.019615
0.000370188
-5.59836e-10
0.0195133
0.000403486
-5.93371e-10
0.0194115
0.000434665
-6.25018e-10
0.0193076
0.0004641
-6.49969e-10
0.0192034
0.000491412
-6.72119e-10
0.0190975
0.000517232
-6.88289e-10
0.0189909
0.000540926
-7.00511e-10
0.0188832
0.000563331
-7.08361e-10
0.0187742
0.000583659
-7.11339e-10
0.0186648
0.000602813
-7.11842e-10
0.0185539
0.000619979
-7.06933e-10
0.018443
0.000635977
-7.01037e-10
0.0183308
0.0006501
-6.89596e-10
0.0182192
0.000662964
-6.77926e-10
0.0181067
0.000674061
-6.60831e-10
0.0179954
0.000683738
-6.43519e-10
0.017884
0.000691738
-6.20939e-10
0.0177745
0.00069815
-5.97345e-10
0.0176661
0.000703024
-5.68736e-10
0.0175608
0.000706222
-5.36502e-10
0.0174585
0.000708485
-5.01418e-10
0.000709435
-4.50693e-10
0.0211031
0.0159262
1.05114e-10
0.0210298
0.0149467
1.44358e-10
0.0207834
0.0138172
1.81638e-10
0.0204093
0.0126456
2.36607e-10
0.0199569
0.0115223
3.30711e-10
0.0194602
0.0104892
5.01697e-10
0.018977
0.00954021
7.46426e-10
0.0185186
0.00867536
1.19291e-09
0.0181205
0.00779891
1.79054e-09
0.0177126
0.00698619
2.59615e-09
0.0173833
0.00611269
2.76946e-09
0.0171964
0.00511334
3.12344e-09
0.0171987
0.00389763
3.70972e-09
0.0172593
0.00266175
2.83927e-09
0.0173586
0.00147726
1.06918e-09
0.0174768
0.000274018
7.88724e-10
0.0175498
-0.00079366
1.68847e-10
0.0174868
-0.00158997
-8.1654e-10
0.0173733
-0.00214808
-2.27453e-09
0.0172437
-0.00260993
-1.80665e-09
0.0171526
-0.0030061
-1.19415e-09
0.0171252
-0.00334058
-5.49557e-10
0.0171749
-0.0036075
1.35251e-10
0.0172229
-0.00380713
2.42172e-10
0.0173585
-0.00402027
4.59724e-10
0.0176384
-0.00415645
8.12098e-10
0.0179493
-0.00417046
1.27791e-09
0.0182174
-0.00410901
1.56729e-09
0.018534
-0.00409201
1.61205e-09
0.0188687
-0.00401553
1.53714e-09
0.01918
-0.00389608
1.40558e-09
0.0194584
-0.00376822
1.22521e-09
0.0197056
-0.00364456
1.03318e-09
0.019927
-0.00352651
8.57904e-10
0.0201298
-0.00341264
7.06657e-10
0.0203161
-0.00329947
5.73825e-10
0.0204912
-0.00318494
4.57793e-10
0.0206529
-0.00306798
3.54013e-10
0.0208037
-0.00294771
2.57241e-10
0.0209425
-0.00282536
1.64848e-10
0.0210682
-0.00270051
8.5762e-11
0.0211833
-0.00257599
3.00758e-11
0.0212868
-0.00245007
-3.60288e-11
0.0213795
-0.00232552
-9.08718e-11
0.021463
-0.00220234
-1.37336e-10
0.0215382
-0.00208334
-1.63532e-10
0.0216057
-0.00196168
-1.68482e-10
0.0216651
-0.0018411
-1.76651e-10
0.0217155
-0.00172102
-1.85311e-10
0.021753
-0.00160538
-1.94251e-10
0.0217805
-0.00149855
-1.94471e-10
0.0217967
-0.0013952
-1.82653e-10
0.0218037
-0.00129553
-1.72223e-10
0.0218039
-0.00119907
-1.56231e-10
0.0217972
-0.00110454
-1.32056e-10
0.021785
-0.00101209
-1.02721e-10
0.021766
-0.000921455
-7.03135e-11
0.0217408
-0.0008328
-3.87834e-11
0.0217082
-0.000746322
-8.75312e-12
0.021669
-0.000661973
1.65895e-11
0.0216227
-0.000580072
3.76709e-11
0.0215702
-0.000500374
5.20081e-11
0.0215113
-0.000423138
6.03937e-11
0.021447
-0.00034803
6.12407e-11
0.021377
-0.000275208
5.51948e-11
0.0213021
-0.000204342
4.14305e-11
0.0212223
-0.000135561
2.07484e-11
0.0211382
-6.86998e-05
-9.03974e-12
0.0210506
-4.31997e-06
-3.47872e-11
0.0209614
5.6267e-05
-8.44061e-11
0.0208703
0.000114488
-1.32404e-10
0.0207768
0.000169952
-1.82603e-10
0.0206814
0.000222706
-2.33946e-10
0.0205832
0.000272898
-2.85175e-10
0.0204834
0.000320531
-3.375e-10
0.0203806
0.000365663
-3.87431e-10
0.0202765
0.000408244
-4.37134e-10
0.0201697
0.000448526
-4.81917e-10
0.0200622
0.000486315
-5.25295e-10
0.0199525
0.000522028
-5.62426e-10
0.0198424
0.000555264
-5.97177e-10
0.0197307
0.000586673
-6.25387e-10
0.0196185
0.000615625
-6.50034e-10
0.0195053
0.000642977
-6.68855e-10
0.0193913
0.000667908
-6.82931e-10
0.0192768
0.000691392
-6.92638e-10
0.0191612
0.000712537
-6.96797e-10
0.0190457
0.000732291
-6.98224e-10
0.0189288
0.000749828
-6.93779e-10
0.0188124
0.000765917
-6.87786e-10
0.0186948
0.000779913
-6.75949e-10
0.0185782
0.000792295
-6.63096e-10
0.0184609
0.000802654
-6.44502e-10
0.0183452
0.000811115
-6.24794e-10
0.0182297
0.000817529
-5.98849e-10
0.0181166
0.000821595
-5.71098e-10
0.018005
0.000823517
-5.37616e-10
0.0178971
0.000822601
-4.98432e-10
0.017793
0.000819869
-4.56908e-10
0.000813967
-3.95268e-10
0.0214205
0.0158986
2.01313e-10
0.0213528
0.0150112
2.34389e-10
0.0211676
0.0139963
2.96504e-10
0.0208709
0.0129338
3.94263e-10
0.0205106
0.0118701
5.62233e-10
0.0201177
0.010867
8.04594e-10
0.0197262
0.00990172
1.31729e-09
0.019401
0.00896337
1.87224e-09
0.0190698
0.00806897
2.86991e-09
0.018835
0.00715942
3.10896e-09
0.018724
0.00614769
3.63957e-09
0.0188252
0.00492094
4.65118e-09
0.0189644
0.00366789
4.16953e-09
0.0190987
0.00248097
1.51229e-09
0.019292
0.00124763
1.30949e-09
0.0194002
0.000143855
6.24957e-10
0.0193428
-0.000733476
-7.24441e-10
0.0191067
-0.00132328
-2.48839e-09
0.018864
-0.00187495
-2.24677e-09
0.0186479
-0.0023675
-1.77541e-09
0.0184774
-0.00281991
-1.20415e-09
0.0183679
-0.00322573
-6.80249e-10
0.018329
-0.00357483
-1.62201e-10
0.0183616
-0.00385565
3.86933e-10
0.0183902
-0.00406556
4.37142e-10
0.018474
-0.00425791
5.45977e-10
0.0186808
-0.00440131
7.92671e-10
0.0189814
-0.00444497
1.26697e-09
0.019206
-0.00435479
1.40401e-09
0.0194829
-0.0043334
1.51217e-09
0.0197958
-0.00425017
1.50406e-09
0.0200934
-0.00410557
1.41281e-09
0.0203678
-0.00395506
1.22315e-09
0.0206147
-0.0038032
1.01329e-09
0.0208352
-0.00365687
8.16692e-10
0.0210332
-0.00351577
6.46995e-10
0.0212112
-0.00337874
5.06019e-10
0.0213728
-0.00324294
3.89467e-10
0.0215198
-0.0031077
2.8762e-10
0.0216538
-0.00297076
2.03012e-10
0.0217747
-0.00283337
1.24402e-10
0.0218843
-0.00269467
5.63281e-11
0.0219858
-0.00255779
-9.37218e-12
0.0220778
-0.00242122
-7.10944e-11
0.0221602
-0.00228641
-1.11856e-10
0.0222323
-0.00215548
-1.29306e-10
0.0222993
-0.00202733
-1.61447e-10
0.0223559
-0.00189688
-1.65787e-10
0.0224017
-0.00176666
-1.731e-10
0.0224357
-0.00163987
-1.81553e-10
0.0224561
-0.00152022
-1.92239e-10
0.0224663
-0.00140708
-1.79814e-10
0.0224672
-0.00129875
-1.70265e-10
0.0224609
-0.00119429
-1.5805e-10
0.022447
-0.00109266
-1.37318e-10
0.0224274
-0.000993759
-1.10394e-10
0.0224007
-0.000897038
-7.81135e-11
0.0223682
-0.000802482
-4.56671e-11
0.0223283
-0.000710129
-1.38543e-11
0.0222821
-0.000619992
1.36376e-11
0.0222289
-0.000532309
3.68438e-11
0.0221695
-0.000446974
5.37762e-11
0.022104
-0.000364144
6.4713e-11
0.0220328
-0.000283615
6.88616e-11
0.0219564
-0.000205392
6.63495e-11
0.0218749
-0.000129257
5.68822e-11
0.0217889
-5.53828e-05
4.06223e-11
0.0216992
1.56249e-05
1.7882e-11
0.0216069
8.37244e-05
-2.42426e-11
0.021511
0.000148585
-5.64518e-11
0.0214125
0.000210645
-9.90019e-11
0.0213116
0.000269815
-1.45484e-10
0.0212086
0.000326271
-1.95294e-10
0.0211033
0.000379874
-2.45506e-10
0.0209965
0.000430816
-2.97556e-10
0.0208874
0.000478956
-3.47774e-10
0.0207773
0.00052443
-3.98777e-10
0.0206651
0.000567258
-4.45419e-10
0.0205525
0.000607465
-4.90969e-10
0.0204382
0.00064528
-5.30511e-10
0.0203236
0.000680502
-5.67373e-10
0.020208
0.000713596
-5.9807e-10
0.0200918
0.000744125
-6.24555e-10
0.019975
0.000772736
-6.45654e-10
0.0198573
0.000798838
-6.61244e-10
0.0197393
0.000823135
-6.72649e-10
0.0196201
0.00084502
-6.77907e-10
0.0195011
0.000865109
-6.80108e-10
0.0193809
0.000882902
-6.76136e-10
0.0192612
0.000898806
-6.69793e-10
0.0191409
0.000912484
-6.57474e-10
0.0190215
0.000924057
-6.42988e-10
0.0189021
0.000933358
-6.2255e-10
0.0187845
0.000940157
-5.99533e-10
0.0186678
0.000944441
-5.70658e-10
0.018554
0.00094558
-5.37402e-10
0.0184425
0.000943732
-4.97924e-10
0.0183355
0.000937748
-4.48953e-10
0.0182336
0.00092853
-3.98363e-10
0.000914829
-3.25545e-10
0.0217418
0.0159242
3.06874e-10
0.0216564
0.0150906
3.67214e-10
0.0215
0.0141453
4.71062e-10
0.0212662
0.0131557
6.37804e-10
0.0209797
0.0121377
9.54263e-10
0.0206813
0.0111418
1.37136e-09
0.0204041
0.0101363
2.16288e-09
0.0201567
0.00914501
3.28332e-09
0.0199669
0.00818991
3.47685e-09
0.0199227
0.00712855
3.97342e-09
0.0201032
0.0058832
4.70657e-09
0.0203233
0.0045777
5.72871e-09
0.0205462
0.00336766
3.55045e-09
0.0207921
0.00220456
1.02e-09
0.0209209
0.00108948
6.5643e-10
0.020881
0.000172435
-2.78223e-10
0.020618
-0.00044422
-2.04271e-09
0.0203558
-0.00102638
-2.38429e-09
0.0200841
-0.00156866
-2.02733e-09
0.0198398
-0.00209758
-1.54831e-09
0.0196347
-0.00260087
-1.06789e-09
0.0194768
-0.0030646
-6.4458e-10
0.0193708
-0.00347234
-2.61737e-10
0.0193228
-0.00381694
1.06943e-10
0.0193368
-0.00409165
3.46281e-10
0.019357
-0.00429879
6.86379e-10
0.0193886
-0.00445268
7.57617e-10
0.0195113
-0.004594
9.49735e-10
0.0197719
-0.00465026
1.27275e-09
0.019964
-0.00455873
1.19995e-09
0.0201842
-0.00450873
1.40238e-09
0.0204604
-0.00442256
1.52178e-09
0.0207502
-0.00428265
1.41981e-09
0.0210244
-0.00410981
1.23759e-09
0.0212713
-0.00393094
1.02362e-09
0.0214874
-0.00375478
8.14542e-10
0.021675
-0.00358558
6.32585e-10
0.0218389
-0.00342348
4.81021e-10
0.0219832
-0.00326689
3.59037e-10
0.0221123
-0.00311322
2.62544e-10
0.0222292
-0.00296133
1.85233e-10
0.0223348
-0.00281039
1.1536e-10
0.0224316
-0.00266078
5.59538e-11
0.0225192
-0.00251329
-1.09142e-11
0.0225978
-0.00236779
-6.01105e-11
0.0226656
-0.00222488
-8.8246e-11
0.0227242
-0.00208666
-1.27498e-10
0.0227735
-0.00194736
-1.33808e-10
0.0228138
-0.00180851
-1.44116e-10
0.0228439
-0.00167171
-1.56531e-10
0.0228614
-0.00153966
-1.72559e-10
0.0228701
-0.00141771
-1.63291e-10
0.0228689
-0.00129927
-1.5492e-10
0.0228598
-0.00118609
-1.45914e-10
0.0228429
-0.00107683
-1.30638e-10
0.0228196
-0.000970956
-1.09233e-10
0.0227887
-0.000867796
-8.16769e-11
0.0227514
-0.000767127
-5.23692e-11
0.0227066
-0.000668863
-2.2492e-11
0.0226554
-0.000572941
4.15845e-12
0.0225971
-0.000479524
2.74493e-11
0.0225325
-0.00038853
4.52371e-11
0.0224616
-0.000300089
5.78938e-11
0.0223852
-0.000214027
6.45541e-11
0.0223036
-0.000130287
6.53542e-11
0.0222172
-4.89339e-05
6.0002e-11
0.022127
2.94619e-05
4.65055e-11
0.0220333
0.000104617
2.45071e-11
0.0219363
0.000176744
-2.41507e-12
0.0218356
0.000245725
-3.56383e-11
0.021732
0.000311672
-7.49819e-11
0.0216253
0.000374568
-1.17661e-10
0.0215165
0.000434513
-1.64692e-10
0.021405
0.000491449
-2.12827e-10
0.0212926
0.000545415
-2.6384e-10
0.0211777
0.000596472
-3.13298e-10
0.0210625
0.000644518
-3.64231e-10
0.0209452
0.000689857
-4.11291e-10
0.0208281
0.000732171
-4.57733e-10
0.0207096
0.000772068
-4.98714e-10
0.0205911
0.000808947
-5.36844e-10
0.020472
0.000843685
-5.69319e-10
0.0203525
0.000875445
-5.96969e-10
0.0202328
0.000905246
-6.197e-10
0.0201122
0.000932159
-6.36212e-10
0.0199918
0.000957164
-6.48748e-10
0.0198702
0.000979408
-6.54603e-10
0.019749
0.000999686
-6.57111e-10
0.0196269
0.00101731
-6.5315e-10
0.0195055
0.00103281
-6.46054e-10
0.0193838
0.00104565
-6.32745e-10
0.0192633
0.00105608
-6.16165e-10
0.0191434
0.00106365
-5.93128e-10
0.0190254
0.00106823
-5.66232e-10
0.0189092
0.00106943
-5.31905e-10
0.0187966
0.00106665
-4.92241e-10
0.0186877
0.00105953
-4.43485e-10
0.0185851
0.00104648
-3.80314e-10
0.0184886
0.00102967
-3.3285e-10
0.00100837
-2.59555e-10
0.0221282
0.0159933
4.21437e-10
0.0220052
0.0152042
5.32556e-10
0.0218383
0.014299
7.23824e-10
0.0216364
0.0133389
1.04651e-09
0.021413
0.0123354
1.53056e-09
0.021209
0.0113034
2.32319e-09
0.0210482
0.0102253
3.67868e-09
0.0208916
0.00922616
3.94764e-09
0.02089
0.00810553
4.4783e-09
0.0211118
0.00680466
5.28554e-09
0.021435
0.00542824
6.41081e-09
0.0217381
0.00418718
4.37575e-09
0.0219943
0.00306852
1.81707e-09
0.0222091
0.00195533
1.37666e-09
0.0222287
0.00104878
3.73868e-10
0.0219599
0.000456085
-1.55597e-09
0.021689
-0.000128136
-2.80528e-09
0.0213974
-0.000697376
-2.48385e-09
0.021124
-0.0012699
-1.76536e-09
0.0208781
-0.00183635
-1.23435e-09
0.0206634
-0.00237731
-8.66818e-10
0.0204799
-0.00287805
-5.77303e-10
0.0203314
-0.00332428
-3.18539e-10
0.0202221
-0.00371146
-6.56243e-11
0.0201541
-0.00403131
1.82264e-10
0.0201289
-0.00428739
4.28374e-10
0.0201423
-0.00448404
5.84238e-10
0.0201376
-0.00461592
8.38573e-10
0.0201732
-0.00471289
8.88503e-10
0.0203687
-0.00478403
9.85595e-10
0.0205553
-0.00472639
1.11941e-09
0.0207292
-0.00463095
1.2478e-09
0.0209711
-0.00456018
1.39419e-09
0.0212471
-0.00442049
1.37488e-09
0.0215174
-0.00423345
1.2404e-09
0.0217646
-0.00403133
1.05302e-09
0.0219834
-0.00382912
8.4978e-10
0.0221726
-0.00363443
6.57272e-10
0.0223359
-0.00344832
4.96444e-10
0.0224771
-0.00327081
3.71479e-10
0.0226013
-0.00309973
2.76164e-10
0.0227142
-0.00293373
1.97383e-10
0.0228156
-0.00277101
1.31316e-10
0.0229093
-0.00261107
6.82229e-11
0.0229922
-0.00245466
1.7915e-12
0.0230646
-0.00230024
-3.3933e-11
0.0231253
-0.00214964
-6.86322e-11
0.0231801
-0.00200402
-1.05163e-10
0.0232248
-0.00185527
-1.09178e-10
0.0232601
-0.0017086
-1.16767e-10
0.023284
-0.00156517
-1.27274e-10
0.0232955
-0.00143025
-1.41313e-10
0.023297
-0.00130197
-1.39542e-10
0.0232897
-0.00117957
-1.32818e-10
0.0232738
-0.00106175
-1.23044e-10
0.0232503
-0.000947758
-1.09534e-10
0.0232186
-0.000837156
-9.03288e-11
0.0231797
-0.000729534
-6.77693e-11
0.023133
-0.000624779
-4.30224e-11
0.0230794
-0.000522624
-1.94106e-11
0.0230183
-0.000423156
2.51262e-12
0.0229505
-0.000326198
2.05649e-11
0.0228758
-0.000231866
3.4837e-11
0.0227951
-0.000139901
4.4185e-11
0.0227085
-5.0507e-05
4.85424e-11
0.0226174
3.58746e-05
4.58469e-11
0.0225222
0.000118898
3.5918e-11
0.0224232
0.000198577
2.00535e-11
0.022321
0.000274981
-1.53489e-12
0.0222153
0.000348092
-2.82934e-11
0.0221069
0.000417996
-6.18144e-11
0.0219954
0.00048462
-9.93675e-11
0.0218819
0.000548045
-1.42517e-10
0.0217655
0.000608242
-1.87259e-10
0.021648
0.000665214
-2.36007e-10
0.0215282
0.000719083
-2.83753e-10
0.021408
0.000769691
-3.33517e-10
0.0212862
0.000817401
-3.80113e-10
0.0211644
0.000861837
-4.26208e-10
0.0210419
0.000903629
-4.67729e-10
0.0209194
0.000942189
-5.06077e-10
0.0207968
0.000978324
-5.39556e-10
0.0206737
0.00101133
-5.67692e-10
0.0205507
0.00104202
-5.9135e-10
0.0204269
0.00106972
-6.08417e-10
0.0203032
0.00109512
-6.21418e-10
0.0201787
0.00111764
-6.2759e-10
0.0200543
0.00113775
-6.29774e-10
0.0199296
0.00115503
-6.25429e-10
0.0198055
0.0011697
-6.16864e-10
0.0196818
0.00118137
-6.01836e-10
0.0195597
0.00119004
-5.82198e-10
0.0194389
0.00119528
-5.55277e-10
0.0193212
0.00119667
-5.2302e-10
0.0192061
0.00119376
-4.81429e-10
0.0190962
0.0011854
-4.33159e-10
0.0189916
0.00117081
-3.64818e-10
0.0188945
0.00114978
-3.21767e-10
0.0188033
0.00112512
-2.59402e-10
0.0010916
-1.47018e-10
0.0224925
0.0160973
5.61817e-10
0.0223665
0.0153186
7.82907e-10
0.0222045
0.0144413
1.13071e-09
0.0220322
0.0134798
1.70427e-09
0.0218802
0.0124453
2.40379e-09
0.0217889
0.0113173
4.16667e-09
0.0216455
0.0102827
4.45029e-09
0.0216896
0.00909175
4.89781e-09
0.0219724
0.00771453
5.66064e-09
0.0223671
0.00626687
7.12871e-09
0.0227121
0.00498435
4.92536e-09
0.0229826
0.00386148
2.19412e-09
0.0232708
0.00273971
1.75455e-09
0.0233341
0.00186494
8.30918e-10
0.0230714
0.00131622
-6.3601e-10
0.0228161
0.000757036
-2.94305e-09
0.0225427
0.000186064
-2.6404e-09
0.0222764
-0.00040183
-2.02588e-09
0.0220275
-0.00100225
-1.45373e-09
0.0217954
-0.00159283
-1.05543e-09
0.0215814
-0.00215462
-7.7847e-10
0.0213849
-0.00267443
-5.58232e-10
0.0212087
-0.0031429
-3.59332e-10
0.0210544
-0.00355529
-1.69e-10
0.0209278
-0.00390827
1.8135e-11
0.0208335
-0.00420187
2.09364e-10
0.0207698
-0.00443521
3.95334e-10
0.0207477
-0.00461236
5.6151e-10
0.0207471
-0.00473695
7.74329e-10
0.0207471
-0.00480722
8.10146e-10
0.0208529
-0.00485783
8.98902e-10
0.0210329
-0.00483882
1.02351e-09
0.0211845
-0.00473971
1.11792e-09
0.0213853
-0.00465473
1.31752e-09
0.0216414
-0.00452469
1.31752e-09
0.0218997
-0.00432481
1.24246e-09
0.022148
-0.00411014
1.07656e-09
0.022374
-0.00388816
8.82791e-10
0.0225707
-0.00366954
6.97105e-10
0.0227404
-0.00346033
5.37537e-10
0.0228866
-0.00326207
4.05852e-10
0.023012
-0.00307328
2.97783e-10
0.023124
-0.00289275
2.13237e-10
0.0232226
-0.00271778
1.39577e-10
0.0233101
-0.00254726
8.24591e-11
0.023388
-0.00238167
2.4742e-11
0.0234548
-0.00221874
-1.51465e-11
0.0235112
-0.00206158
-5.18543e-11
0.0235597
-0.00190582
-5.85124e-11
0.0235984
-0.00174951
-7.03309e-11
0.0236256
-0.00159495
-8.7032e-11
0.0236391
-0.00144554
-1.06621e-10
0.0236431
-0.00130748
-1.34506e-10
0.0236363
-0.00117409
-1.28951e-10
0.0236198
-0.00104654
-1.24522e-10
0.0235946
-0.000923384
-1.20119e-10
0.0235608
-0.000804424
-1.10776e-10
0.0235193
-0.000689096
-9.65213e-11
0.0234702
-0.000577283
-7.8015e-11
0.023414
-0.000468471
-5.8115e-11
0.0233505
-0.00036269
-3.77459e-11
0.0232802
-0.000259581
-1.93019e-11
0.0232029
-0.000159192
-3.10323e-12
0.0231194
-6.13043e-05
9.1439e-12
0.0230303
3.3498e-05
1.61541e-11
0.0229366
0.00012481
1.73258e-11
0.0228385
0.000212618
1.30873e-11
0.0227361
0.000296834
3.9612e-12
0.0226301
0.000377605
-1.15079e-11
0.0225202
0.000454801
-3.19857e-11
0.0224076
0.000528601
-5.96422e-11
0.0222916
0.000598836
-9.14211e-11
0.0221739
0.000665656
-1.29658e-10
0.0220535
0.000728989
-1.69887e-10
0.0219322
0.000788863
-2.15015e-10
0.0218088
0.000845408
-2.59774e-10
0.0216848
0.000898441
-3.07182e-10
0.0215595
0.000948367
-3.52142e-10
0.0214339
0.000994755
-3.96895e-10
0.0213077
0.00103828
-4.3784e-10
0.0211813
0.00107831
-4.75567e-10
0.0210551
0.00111568
-5.09054e-10
0.0209286
0.00114967
-5.36883e-10
0.0208027
0.00118109
-5.60604e-10
0.0206763
0.00120928
-5.773e-10
0.0205505
0.00123484
-5.90044e-10
0.0204243
0.0012573
-5.95437e-10
0.0202988
0.00127692
-5.96677e-10
0.0201734
0.00129346
-5.90775e-10
0.0200489
0.00130678
-5.80041e-10
0.0199253
0.00131675
-5.62088e-10
0.0198037
0.00132282
-5.38263e-10
0.0196842
0.00132483
-5.05993e-10
0.0195686
0.0013217
-4.65993e-10
0.0194571
0.00131299
-4.1577e-10
0.0193528
0.00129643
-3.43661e-10
0.0192551
0.00127346
-3.02485e-10
0.0191641
0.00124454
-2.23767e-10
0.0190849
0.00120557
-1.36748e-10
0.00115473
2.16363e-11
0.0228689
0.0162403
8.22434e-10
0.0227356
0.0154335
1.17063e-09
0.0226019
0.0145443
1.8193e-09
0.0224803
0.0135516
2.72542e-09
0.0224328
0.0124208
4.14164e-09
0.0223012
0.0113623
4.54782e-09
0.0223768
0.0101054
5.6176e-09
0.0227195
0.00863149
6.74529e-09
0.0231692
0.00712751
7.19674e-09
0.0235358
0.00580168
5.06705e-09
0.0238369
0.00463045
2.10601e-09
0.0241695
0.00349226
1.59563e-09
0.0242334
0.00265542
5.23186e-10
0.0239636
0.00214517
-1.08387e-09
0.0237298
0.00158679
-2.3054e-09
0.0234933
0.00102507
-2.14699e-09
0.0232578
0.000443041
-1.74958e-09
0.023031
-0.000160283
-1.38175e-09
0.0228136
-0.00077559
-1.07525e-09
0.0226026
-0.00137255
-8.45339e-10
0.0223953
-0.00193934
-6.64924e-10
0.0221943
-0.00246392
-5.19089e-10
0.0220001
-0.00294219
-3.82121e-10
0.0218179
-0.00336787
-2.52508e-10
0.0216519
-0.003742
-1.1654e-10
0.0215074
-0.0040611
2.86506e-11
0.0213907
-0.00432837
1.83143e-10
0.0213078
-0.0045422
3.44738e-10
0.0212591
-0.00470494
5.06305e-10
0.0212502
-0.00481739
6.16433e-10
0.0212502
-0.00488176
8.10833e-10
0.0212902
-0.00490206
8.51279e-10
0.021418
-0.00489307
9.19288e-10
0.0215804
-0.00484482
1.04334e-09
0.021748
-0.00472364
1.17197e-09
0.0219736
-0.00458443
1.273e-09
0.0222289
-0.00439772
1.19589e-09
0.0224812
-0.00417114
1.06991e-09
0.0227161
-0.00393234
9.13936e-10
0.0229256
-0.00369374
7.42814e-10
0.0231043
-0.00346184
5.73155e-10
0.0232573
-0.00324247
4.22588e-10
0.0233861
-0.00303507
3.009e-10
0.0234972
-0.00283839
2.07794e-10
0.0235932
-0.00265048
1.47028e-10
0.0236756
-0.00246923
7.95892e-11
0.0237473
-0.00229446
4.8223e-11
0.0238065
-0.00212392
1.20881e-11
0.0238581
-0.00195998
-3.37451e-11
0.0238995
-0.00179333
-4.00532e-11
0.0239312
-0.00162929
-5.46571e-11
0.0239519
-0.0014682
-8.10797e-11
0.0239578
-0.00131462
-1.27811e-10
0.0239542
-0.00117109
-1.3698e-10
0.0239392
-0.00103206
-1.41387e-10
0.0239146
-0.000898678
-1.46135e-10
0.0238807
-0.000770524
-1.46241e-10
0.0238386
-0.000646764
-1.40354e-10
0.0237882
-0.000527211
-1.28115e-10
0.0237305
-0.000411209
-1.1196e-10
0.0236651
-0.000298678
-9.31321e-11
0.0235928
-0.000189118
-7.40121e-11
0.0235134
-8.24168e-05
-5.64074e-11
0.0234275
2.12863e-05
-4.19693e-11
0.023336
0.000121343
-3.13364e-11
0.0232393
0.000217679
-2.43618e-11
0.023138
0.000310327
-2.20704e-11
0.0230325
0.000399139
-2.39483e-11
0.0229235
0.000484299
-3.23296e-11
0.022811
0.000565584
-4.58078e-11
0.0226957
0.000643237
-6.66343e-11
0.0225774
0.000717015
-9.20453e-11
0.0224571
0.000787159
-1.24307e-10
0.0223339
0.000853499
-1.59305e-10
0.0222096
0.000916181
-1.99764e-10
0.0220828
0.000975224
-2.40523e-10
0.0219557
0.00103056
-2.84598e-10
0.0218269
0.00108251
-3.26716e-10
0.0216981
0.0011307
-3.69287e-10
0.0215685
0.0011758
-4.0847e-10
0.0214391
0.00121712
-4.44876e-10
0.0213098
0.00125558
-4.77447e-10
0.0211805
0.00129035
-5.04368e-10
0.021052
0.00132232
-5.2755e-10
0.0209231
0.00135076
-5.43254e-10
0.0207954
0.00137625
-5.55238e-10
0.0206672
0.00139832
-5.59035e-10
0.0205406
0.0014171
-5.5868e-10
0.020414
0.0014324
-5.49921e-10
0.0202897
0.00144376
-5.36022e-10
0.0201666
0.00145122
-5.13079e-10
0.0200469
0.00145361
-4.83418e-10
0.0199305
0.00145104
-4.42056e-10
0.0198199
0.00144139
-3.92805e-10
0.0197161
0.00142386
-3.1531e-10
0.0196207
0.00139819
-2.72898e-10
0.0195319
0.00136651
-1.99628e-10
0.019455
0.00132325
-7.91485e-11
0.0193974
0.00126103
6.7822e-11
0.00119368
2.06615e-10
0.0232407
0.0164181
1.16062e-09
0.0231044
0.0155322
1.88971e-09
0.0230363
0.014563
2.87498e-09
0.0230193
0.0134879
4.7137e-09
0.0229193
0.0124328
5.02163e-09
0.0230492
0.0111263
5.59131e-09
0.0234766
0.00955763
6.454e-09
0.0239287
0.00802119
7.88954e-09
0.024299
0.00665787
5.2314e-09
0.024634
0.00541531
1.84326e-09
0.0249697
0.00425863
1.23173e-09
0.0249784
0.00346754
-1.35835e-10
0.0247099
0.00295224
-2.44604e-09
0.0245052
0.00238286
-2.0899e-09
0.0242967
0.0018253
-1.80582e-09
0.0240971
0.00124644
-1.45873e-09
0.0239067
0.000644024
-1.07663e-09
0.0237185
3.27954e-05
-8.38043e-10
0.023529
-0.00058398
-6.69924e-10
0.0233342
-0.00117496
-5.74114e-10
0.0231346
-0.00173546
-5.0768e-10
0.0229329
-0.00225629
-4.49406e-10
0.0227322
-0.00273546
-3.86243e-10
0.0225352
-0.00316728
-3.10786e-10
0.0223482
-0.0035532
-2.23629e-10
0.0221748
-0.00389033
-1.12606e-10
0.0220215
-0.00418004
1.05593e-11
0.0218926
-0.00442268
1.49373e-10
0.0217925
-0.00461804
2.84373e-10
0.0217271
-0.00476845
4.24304e-10
0.0216994
-0.00487259
5.63087e-10
0.0217087
-0.00493182
6.63781e-10
0.0217339
-0.00494133
8.24261e-10
0.0217653
-0.00489843
8.38184e-10
0.0218885
-0.0048709
8.87774e-10
0.0220828
-0.00480474
9.83255e-10
0.0222808
-0.00462582
1.11455e-09
0.022511
-0.00443312
1.1143e-09
0.0227587
-0.00420983
1.03925e-09
0.0229959
-0.00395808
9.08863e-10
0.0232127
-0.00370118
7.40194e-10
0.0234008
-0.00344941
5.63132e-10
0.0235591
-0.00320836
4.03849e-10
0.0236915
-0.0029814
2.79234e-10
0.0238019
-0.00276851
1.89771e-10
0.0238964
-0.00256711
1.33185e-10
0.0239751
-0.00237551
7.89017e-11
0.0240422
-0.0021915
4.1195e-11
0.0240955
-0.00201299
-1.83297e-11
0.024143
-0.0018406
-2.37151e-11
0.0241799
-0.00166649
-3.86959e-11
0.0242055
-0.0014944
-7.35154e-11
0.0242167
-0.00132661
-1.23194e-10
0.0242138
-0.00116824
-1.77823e-10
0.024199
-0.00101766
-1.80012e-10
0.0241741
-0.000873781
-1.8789e-10
0.0241396
-0.000735814
-1.93572e-10
0.024097
-0.00060295
-1.94918e-10
0.024046
-0.000474974
-1.89115e-10
0.023988
-0.000351233
-1.77037e-10
0.023922
-0.000231463
-1.59996e-10
0.023849
-0.000114993
-1.40838e-10
0.0237687
-2.04968e-06
-1.2112e-10
0.0236821
0.000107218
-1.04378e-10
0.0235897
0.000212562
-8.89224e-11
0.0234915
0.000313859
-7.54227e-11
0.023389
0.000411317
-6.62268e-11
0.0232812
0.000504628
-6.05324e-11
0.0231704
0.000594057
-6.17102e-11
0.0230548
0.000679307
-6.7605e-11
0.0229371
0.000760622
-8.14346e-11
0.0228155
0.000837821
-9.9884e-11
0.0226922
0.00091104
-1.25657e-10
0.0225662
0.000980279
-1.54767e-10
0.0224388
0.00104551
-1.89573e-10
0.0223095
0.00110694
-2.25653e-10
0.0221795
0.00116434
-2.6516e-10
0.0220483
0.00121818
-3.03707e-10
0.0219171
0.00126796
-3.42864e-10
0.0217855
0.00131444
-3.79423e-10
0.0216543
0.00135686
-4.13375e-10
0.0215237
0.00139616
-4.44071e-10
0.0213933
0.0014315
-4.69067e-10
0.0212646
0.00146372
-4.90719e-10
0.0211359
0.0014921
-5.0454e-10
0.0210091
0.00151713
-5.14648e-10
0.0208826
0.00153839
-5.16046e-10
0.0207579
0.00155576
-5.12694e-10
0.0206343
0.00156912
-5.00096e-10
0.0205131
0.00157766
-4.81155e-10
0.0203939
0.00158133
-4.51435e-10
0.0202792
0.00157865
-4.1242e-10
0.0201692
0.00156907
-3.59791e-10
0.0200669
0.0015498
-2.81463e-10
0.0199735
0.00152222
-2.39828e-10
0.019886
0.00148807
-1.58332e-10
0.0198132
0.00143952
-4.19064e-11
0.0197599
0.00137243
1.23179e-10
0.019724
0.00128739
3.30984e-10
0.00120504
3.6483e-10
0.0237335
0.0166696
1.86952e-09
0.0235858
0.0156262
3.1244e-09
0.0234948
0.0145623
4.85614e-09
0.0234133
0.0134821
5.27427e-09
0.0236188
0.0121129
6.19191e-09
0.0241385
0.010479
7.77668e-09
0.0246223
0.00893787
7.22404e-09
0.0250149
0.00753801
5.05257e-09
0.0254344
0.0062093
1.49429e-09
0.0257755
0.00504528
8.95387e-10
0.0257197
0.00430514
-3.7012e-10
0.0254615
0.00376344
-2.61139e-09
0.0252712
0.00318419
-2.77775e-09
0.0250721
0.00261489
-2.01314e-09
0.0248888
0.00202892
-1.48479e-09
0.0247234
0.00142336
-1.07966e-09
0.0245642
0.000806353
-7.54159e-10
0.024406
0.00019222
-5.37646e-10
0.0242356
-0.000411958
-4.54323e-10
0.0240568
-0.000991797
-4.3202e-10
0.0238682
-0.00154019
-4.28988e-10
0.0236713
-0.00205222
-4.21142e-10
0.0234703
-0.00252616
-4.04473e-10
0.0232657
-0.00295847
-3.62922e-10
0.0230656
-0.00334944
-3.09294e-10
0.0228695
-0.00369751
-2.21433e-10
0.0226871
-0.00400217
-1.24404e-10
0.0225195
-0.00426545
-3.49465e-12
0.0223748
-0.00448398
1.18792e-10
0.022256
-0.00466312
2.49296e-10
0.022167
-0.00479643
3.68108e-10
0.0221137
-0.00489301
4.70693e-10
0.0221012
-0.00494452
5.73077e-10
0.0221352
-0.00495102
7.13022e-10
0.0221485
-0.00490263
7.17277e-10
0.0221535
-0.00482905
7.41725e-10
0.0223046
-0.00479736
8.09361e-10
0.0225128
-0.00466626
9.41069e-10
0.0227313
-0.00445447
9.5808e-10
0.022961
-0.00421333
9.38038e-10
0.0231975
-0.00396335
8.38341e-10
0.0234184
-0.003693
6.92788e-10
0.0236141
-0.00342246
5.26018e-10
0.0237806
-0.00316179
3.68124e-10
0.0239208
-0.00291667
2.43152e-10
0.0240347
-0.00268672
1.531e-10
0.0241288
-0.00247086
8.58013e-11
0.0242035
-0.00226745
1.64597e-11
0.0242638
-0.00207355
-1.88646e-11
0.0243123
-0.00188815
-7.27906e-11
0.024351
-0.00170489
-8.19136e-11
0.0243805
-0.00152348
-1.01714e-10
0.0243984
-0.00134429
-1.34926e-10
0.0244024
-0.00117056
-1.91364e-10
0.0243949
-0.00100814
-2.232e-10
0.0243753
-0.00085192
-2.35809e-10
0.024345
-0.000702839
-2.44813e-10
0.0243052
-0.000559763
-2.52927e-10
0.0242564
-0.000422335
-2.54568e-10
0.0241989
-0.000289935
-2.48013e-10
0.0241327
-0.000162115
-2.34026e-10
0.0240585
-3.8443e-05
-2.16523e-10
0.0239764
8.09717e-05
-1.96947e-10
0.0238878
0.000196113
-1.74195e-10
0.0237923
0.000306937
-1.52936e-10
0.0236915
0.000413394
-1.33232e-10
0.0235852
0.000515675
-1.16505e-10
0.023475
0.000613493
-1.03457e-10
0.0233605
0.000707171
-9.62921e-11
0.023243
0.000796264
-9.45945e-11
0.0231223
0.000881261
-1.00305e-10
0.0229991
0.000961637
-1.11462e-10
0.022874
0.00103797
-1.29998e-10
0.0227463
0.00110978
-1.5245e-10
0.0226181
0.00117754
-1.81187e-10
0.0224876
0.00124101
-2.11558e-10
0.0223572
0.00130035
-2.46045e-10
0.0222253
0.00135571
-2.80097e-10
0.0220936
0.00140686
-3.15094e-10
0.0219616
0.00145433
-3.4835e-10
0.0218298
0.00149755
-3.79056e-10
0.0216987
0.00153725
-4.07185e-10
0.0215681
0.00157275
-4.29837e-10
0.0214389
0.00160468
-4.49037e-10
0.0213106
0.00163247
-4.60722e-10
0.0211845
0.00165639
-4.67962e-10
0.0210593
0.00167602
-4.66163e-10
0.0209372
0.00169109
-4.58576e-10
0.0208169
0.00170127
-4.40351e-10
0.0207002
0.00170562
-4.14002e-10
0.0205881
0.00170356
-3.73237e-10
0.0204813
0.00169329
-3.22198e-10
0.0203836
0.00167288
-2.37595e-10
0.0202949
0.00164314
-2.01597e-10
0.0202134
0.00160592
-1.13103e-10
0.0201461
0.00155452
1.85814e-11
0.020104
0.00147788
1.76943e-10
0.0200713
0.00139294
4.41029e-10
0.0200502
0.0012963
4.83975e-10
0.00116863
5.90842e-10
0.0242998
0.01696
2.9383e-09
0.024078
0.0157609
5.12077e-09
0.0239691
0.0145855
5.69274e-09
0.0241941
0.0131325
6.81991e-09
0.0247313
0.0114262
8.6819e-09
0.0252294
0.00983735
7.56696e-09
0.0256485
0.00841927
4.7531e-09
0.0261469
0.00700809
1.33827e-09
0.0264885
0.00584558
6.46861e-10
0.0263687
0.00516421
-7.3408e-10
0.0261346
0.00457909
-2.9484e-09
0.0259593
0.00398098
-2.75692e-09
0.0257789
0.00339974
-2.11233e-09
0.0256191
0.00280073
-1.44486e-09
0.0254784
0.00218558
-1.0086e-09
0.0253464
0.00156252
-7.55389e-10
0.0252113
0.000942987
-5.71043e-10
0.0250665
0.000336017
-4.69403e-10
0.0249056
-0.000251868
-4.40857e-10
0.024731
-0.00081607
-4.46611e-10
0.0245442
-0.00134888
-4.60506e-10
0.0243479
-0.0018492
-4.65241e-10
0.0241446
-0.00231372
-4.61482e-10
0.0239362
-0.00274299
-4.32737e-10
0.0237282
-0.00313326
-3.91558e-10
0.023521
-0.00348747
-3.16677e-10
0.0233228
-0.00380021
-2.35306e-10
0.0231334
-0.0040778
-1.31086e-10
0.0229606
-0.00431242
-3.12375e-11
0.0228051
-0.00451313
7.20047e-11
0.0226728
-0.00467034
1.71689e-10
0.0225644
-0.00479295
2.65558e-10
0.0224838
-0.00487301
3.56555e-10
0.0224409
-0.00491959
4.52241e-10
0.0224447
-0.00492094
5.87598e-10
0.0224824
-0.00488005
5.55403e-10
0.0224616
-0.00479248
6.10136e-10
0.0224928
-0.00471574
6.47371e-10
0.0226623
-0.00464425
7.12235e-10
0.0228854
-0.00446223
8.1653e-10
0.0231102
-0.00421371
8.09849e-10
0.023343
-0.00395128
7.6689e-10
0.0235738
-0.00367471
6.43902e-10
0.023787
-0.00339231
4.85211e-10
0.0239724
-0.00311397
3.26946e-10
0.0241277
-0.00284835
1.84332e-10
0.024252
-0.00259908
6.55064e-11
0.024352
-0.00236679
-1.9374e-11
0.0244282
-0.00214959
-9.46324e-11
0.0244864
-0.00194514
-1.26246e-10
0.0245344
-0.00175114
-1.67852e-10
0.0245689
-0.00155681
-1.75182e-10
0.0245934
-0.00136768
-1.91219e-10
0.024607
-0.00118212
-2.19403e-10
0.024606
-0.00100414
-2.68101e-10
0.024594
-0.000835618
-2.85051e-10
0.0245691
-0.000673863
-2.98293e-10
0.0245342
-0.000519176
-3.11742e-10
0.0244881
-0.000370909
-3.19374e-10
0.0244326
-0.000228545
-3.18798e-10
0.024367
-9.15226e-05
-3.09888e-10
0.0242924
4.03113e-05
-2.94457e-10
0.0242095
0.000166894
-2.72047e-10
0.0241185
0.000288394
-2.46619e-10
0.0240211
0.000405146
-2.20259e-10
0.0239166
0.00051707
-1.93131e-10
0.0238073
0.000624396
-1.69051e-10
0.0236923
0.000726988
-1.47272e-10
0.023574
0.000824889
-1.32312e-10
0.0234511
0.000918159
-1.21826e-10
0.0233259
0.00100655
-1.19884e-10
0.0231973
0.00109053
-1.22968e-10
0.023067
0.00116945
-1.3409e-10
0.0229345
0.00124425
-1.49793e-10
0.0228008
0.00131388
-1.71501e-10
0.0226661
0.00137965
-1.96625e-10
0.0225305
0.00144026
-2.24792e-10
0.0223948
0.0014972
-2.54703e-10
0.0222586
0.00154905
-2.84384e-10
0.022123
0.00159734
-3.14173e-10
0.0219876
0.00164069
-3.40556e-10
0.0218536
0.00168041
-3.65774e-10
0.0217203
0.00171539
-3.84739e-10
0.0215895
0.00174641
-4.01151e-10
0.0214598
0.00177285
-4.09336e-10
0.0213334
0.00179467
-4.12644e-10
0.0212096
0.00181166
-4.06465e-10
0.0210892
0.001823
-3.92311e-10
0.0209735
0.0018283
-3.6635e-10
0.0208628
0.00182628
-3.27823e-10
0.0207596
0.0018153
-2.74021e-10
0.0206657
0.00179321
-1.9076e-10
0.0205817
0.00176137
-1.52492e-10
0.0205065
0.00172074
-7.09974e-11
0.020446
0.00166419
8.43549e-11
0.0204105
0.00158404
2.85335e-10
0.0203749
0.00150265
4.14362e-10
0.0203561
0.00139684
5.36206e-10
0.020383
0.00125219
7.31261e-10
0.00105256
1.02309e-09
0.0248273
0.0173402
5.29571e-09
0.0245666
0.0159306
5.97511e-09
0.0247724
0.0142561
7.33455e-09
0.0253332
0.0124013
9.52932e-09
0.0258647
0.0107525
8.20084e-09
0.0263051
0.00930505
4.77081e-09
0.0268783
0.00781785
1.21148e-09
0.0271988
0.00666972
5.01762e-10
0.0270058
0.00604734
-8.80954e-10
0.0267941
0.00541269
-3.04197e-09
0.0266153
0.00479635
-2.79649e-09
0.0264412
0.00418772
-2.08565e-09
0.0262967
0.00356937
-1.39338e-09
0.0261755
0.00293797
-8.76689e-10
0.0260696
0.00230531
-6.34895e-10
0.0259601
0.00167838
-5.30083e-10
0.0258417
0.00106561
-4.88863e-10
0.0257058
0.000472376
-4.80797e-10
0.0255538
-9.67783e-05
-5.01966e-10
0.025385
-0.000643349
-5.24629e-10
0.0252043
-0.00115971
-5.43269e-10
0.0250106
-0.00164624
-5.47076e-10
0.0248095
-0.00210073
-5.42632e-10
0.0245993
-0.00252338
-5.16026e-10
0.0243862
-0.0029114
-4.76394e-10
0.0241689
-0.00326617
-4.11962e-10
0.0239544
-0.00358428
-3.39315e-10
0.0237435
-0.00386883
-2.51757e-10
0.0235418
-0.00411538
-1.67698e-10
0.0233534
-0.00432955
-8.50742e-11
0.0231806
-0.00450537
-3.58071e-12
0.0230327
-0.00465043
8.30494e-11
0.022911
-0.00475913
1.6776e-10
0.0228197
-0.00483435
2.41922e-10
0.0227623
-0.0048725
3.26607e-10
0.0227434
-0.00487447
4.43236e-10
0.0227694
-0.00483039
4.08735e-10
0.0227841
-0.00474708
4.81128e-10
0.022772
-0.00465011
5.05249e-10
0.0228658
-0.00457616
5.57372e-10
0.0230562
-0.00442548
6.35909e-10
0.0232838
-0.00420284
7.52093e-10
0.0235172
-0.00393295
7.17035e-10
0.0237628
-0.00365792
6.1296e-10
0.023995
-0.00336159
4.60709e-10
0.0242015
-0.00306366
2.78579e-10
0.0243757
-0.00277736
1.0419e-10
0.0245152
-0.00250682
-3.29786e-11
0.0246222
-0.00225538
-1.36582e-10
0.0247012
-0.0020217
-2.08083e-10
0.0247572
-0.00180464
-2.40944e-10
0.024805
-0.00160111
-2.806e-10
0.0248372
-0.00139602
-2.85255e-10
0.0248572
-0.00119833
-2.96615e-10
0.0248634
-0.00100571
-3.17274e-10
0.0248572
-0.000823554
-3.54369e-10
0.0248382
-0.000648376
-3.64892e-10
0.0248076
-0.000481361
-3.74335e-10
0.0247649
-0.000321281
-3.813e-10
0.0247115
-0.000167607
-3.83887e-10
0.0246466
-2.02972e-05
-3.78905e-10
0.0245723
0.000120559
-3.65141e-10
0.024488
0.000255212
-3.42494e-10
0.024395
0.000383864
-3.14306e-10
0.0242941
0.000507069
-2.82576e-10
0.0241854
0.000624808
-2.49194e-10
0.0240715
0.000737523
-2.17682e-10
0.0239509
0.000844975
-1.88087e-10
0.0238272
0.000947457
-1.65173e-10
0.023698
0.0010448
-1.46325e-10
0.0235673
0.00113702
-1.36799e-10
0.0234321
0.00122432
-1.31528e-10
0.0232961
0.00130628
-1.35773e-10
0.0231573
0.00138365
-1.43576e-10
0.0230179
0.00145548
-1.5925e-10
0.0228772
0.00152312
-1.77406e-10
0.0227361
0.00158509
-2.00391e-10
0.0225947
0.00164324
-2.24558e-10
0.022453
0.00169561
-2.49459e-10
0.0223124
0.00174439
-2.74907e-10
0.0221712
0.00178744
-2.96464e-10
0.022033
0.00182672
-3.18343e-10
0.0218947
0.00186055
-3.32636e-10
0.0217604
0.00188994
-3.4541e-10
0.0216277
0.00191402
-3.48933e-10
0.0214995
0.00193271
-3.46861e-10
0.0213753
0.00194542
-3.34179e-10
0.0212564
0.00195123
-3.1089e-10
0.0211443
0.00194918
-2.73331e-10
0.0210405
0.00193714
-2.17346e-10
0.0209487
0.00191259
-1.40178e-10
0.0208666
0.00187845
-8.71139e-11
0.0207948
0.00183496
-1.53212e-11
0.0207438
0.00177036
1.28463e-10
0.0207046
0.0016934
3.90768e-10
0.0206711
0.0016065
4.34006e-10
0.0206721
0.00148906
5.42531e-10
0.0207285
0.0013239
7.43541e-10
0.0208337
0.00112032
1.09555e-09
0.000848717
1.73917e-09
0.0253908
0.0175517
5.89351e-09
0.0256122
0.0155741
8.34234e-09
0.0261473
0.0135122
1.17433e-08
0.0266752
0.0117277
8.86065e-09
0.0271279
0.0101995
4.88131e-09
0.0277356
0.00863515
3.09057e-09
0.0279908
0.00754361
1.96534e-10
0.027711
0.0069625
-1.77034e-09
0.0275212
0.00628615
-3.12646e-09
0.0273335
0.00564343
-2.73239e-09
0.0271524
0.00500596
-1.87744e-09
0.0269987
0.00435639
-1.18554e-09
0.0268786
0.00370141
-7.15152e-10
0.0267749
0.0030488
-4.54719e-10
0.0266772
0.00240739
-3.91103e-10
0.0265736
0.00178474
-4.21436e-10
0.0264584
0.00118384
-4.80527e-10
0.0263268
0.0006075
-5.3948e-10
0.0261779
5.71188e-05
-6.02609e-10
0.0260122
-0.000470826
-6.28341e-10
0.0258323
-0.000971072
-6.42291e-10
0.0256415
-0.00144398
-6.44295e-10
0.0254405
-0.00188816
-6.30885e-10
0.0252319
-0.00230279
-6.03539e-10
0.0250167
-0.00268692
-5.58587e-10
0.0247976
-0.00303941
-5.02161e-10
0.0245774
-0.00336049
-4.34883e-10
0.0243593
-0.00364854
-3.71661e-10
0.0241476
-0.00390535
-2.99419e-10
0.0239459
-0.00412877
-2.3612e-10
0.0237588
-0.00432218
-1.60753e-10
0.0235898
-0.00448237
-1.09599e-10
0.0234367
-0.00461225
-2.9523e-11
0.0233072
-0.00470888
3.80542e-11
0.0232029
-0.00477585
1.1383e-10
0.0231261
-0.00480721
1.94589e-10
0.0230901
-0.00480725
2.9243e-10
0.0230925
-0.00476574
3.72218e-10
0.0231062
-0.00468033
3.27339e-10
0.023102
-0.00459011
4.23674e-10
0.0231283
-0.00447125
4.53562e-10
0.0232742
-0.00436764
5.08808e-10
0.0234962
-0.00417597
6.47211e-10
0.0237273
-0.00391003
6.37067e-10
0.0239664
-0.00361818
5.72462e-10
0.0242077
-0.00331984
4.32154e-10
0.0244298
-0.00300856
2.64211e-10
0.0246185
-0.00270114
8.88729e-11
0.0247698
-0.00240789
-7.42933e-11
0.0248849
-0.00213504
-2.09658e-10
0.0249675
-0.00188281
-2.86651e-10
0.0250242
-0.00165048
-3.73968e-10
0.02507
-0.00143486
-3.81529e-10
0.0250973
-0.00121787
-3.93737e-10
0.025111
-0.00101108
-4.12552e-10
0.0251091
-0.000812033
-4.46282e-10
0.0250971
-0.000626288
-4.51375e-10
0.0250708
-0.000445563
-4.45972e-10
0.025032
-0.000273269
-4.42448e-10
0.0249812
-0.000108014
-4.41896e-10
0.0249189
5.01103e-05
-4.38064e-10
0.0248461
0.000200806
-4.2398e-10
0.0247624
0.000344302
-4.00463e-10
0.0246696
0.000480958
-3.6997e-10
0.0245671
0.000611259
-3.33721e-10
0.0244581
0.000735392
-2.96017e-10
0.0243414
0.000853843
-2.5739e-10
0.0242202
0.00096643
-2.22128e-10
0.0240927
0.00107377
-1.9045e-10
0.0239614
0.0011752
-1.65313e-10
0.0238257
0.00127162
-1.47077e-10
0.0236864
0.00136194
-1.35161e-10
0.023545
0.00144743
-1.31876e-10
0.0234004
0.00152679
-1.32259e-10
0.0232559
0.00160135
-1.41977e-10
0.0231087
0.00167014
-1.52456e-10
0.0229628
0.00173389
-1.70785e-10
0.0228153
0.00179245
-1.88145e-10
0.0226692
0.00184567
-2.08883e-10
0.0225233
0.00189406
-2.28707e-10
0.0223782
0.001937
-2.46143e-10
0.0222353
0.00197491
-2.62688e-10
0.0220937
0.00200741
-2.72883e-10
0.0219555
0.00203415
-2.79205e-10
0.0218212
0.00205505
-2.77652e-10
0.0216916
0.00206913
-2.66559e-10
0.0215685
0.00207571
-2.44961e-10
0.0214532
0.00207353
-2.07269e-10
0.0213486
0.00205996
-1.53804e-10
0.0212567
0.00203306
-6.49036e-11
0.021178
0.00199509
-3.57492e-11
0.0211084
0.00194851
9.55436e-11
0.0210631
0.00187854
1.74404e-10
0.021019
0.00180469
4.59359e-10
0.020992
0.00170922
5.11735e-10
0.021008
0.00157654
6.30915e-10
0.0210851
0.00139022
8.92759e-10
0.0212256
0.00115081
1.38363e-09
0.0214215
0.000883759
1.66837e-09
0.00058337
1.99001e-09
0.0268073
0.0172015
9.45422e-09
0.027195
0.0149876
1.04363e-08
0.027634
0.0129128
9.20098e-09
0.0281328
0.0111405
4.30125e-09
0.0287857
0.00947794
3.17198e-09
0.0289042
0.00848253
9.16146e-10
0.028583
0.00789677
-2.42607e-09
0.0283917
0.00719708
-2.6332e-09
0.0281788
0.0065341
-2.39115e-09
0.0279782
0.00586187
-1.67189e-09
0.0278122
0.0051794
-9.40594e-10
0.0276754
0.00449197
-4.31566e-10
0.0275629
0.00381038
-2.04824e-10
0.0274606
0.00314721
-1.70586e-10
0.0273588
0.0025067
-2.54106e-10
0.0272496
0.00189353
-3.81842e-10
0.0271279
0.00130672
-5.02838e-10
0.0269915
0.000746757
-5.98515e-10
0.0268405
0.000212723
-6.63066e-10
0.0266756
-0.000297711
-7.08015e-10
0.0264991
-0.00078374
-7.25197e-10
0.0263129
-0.00124378
-7.27832e-10
0.0261155
-0.00167758
-7.12133e-10
0.0259106
-0.00208416
-6.88286e-10
0.0256965
-0.00246317
-6.44614e-10
0.0254784
-0.00281259
-5.99801e-10
0.025256
-0.00313383
-5.40344e-10
0.0250346
-0.00342355
-4.89621e-10
0.0248156
-0.00368573
-4.27229e-10
0.0246039
-0.00391554
-3.75699e-10
0.0244005
-0.00411896
-3.13813e-10
0.0242085
-0.00428967
-2.56299e-10
0.0240306
-0.0044352
-1.95595e-10
0.0238697
-0.00454801
-1.38765e-10
0.0237259
-0.00463647
-7.16543e-11
0.0236058
-0.00469136
-8.93603e-12
0.0235104
-0.00472065
7.01527e-11
0.0234485
-0.00471485
1.37552e-10
0.0234307
-0.00467616
2.26481e-10
0.0234228
-0.00459517
2.19766e-10
0.0234428
-0.00450397
2.49274e-10
0.0234375
-0.004379
4.20263e-10
0.0235088
-0.00426376
4.47274e-10
0.0236787
-0.00409652
4.97121e-10
0.0239066
-0.00386427
5.812e-10
0.0241416
-0.00357225
5.62193e-10
0.0243824
-0.00326538
5.07032e-10
0.0246131
-0.00294325
3.58035e-10
0.0248157
-0.0026177
1.55279e-10
0.0249822
-0.00230252
-4.85428e-11
0.0251067
-0.00200529
-2.19646e-10
0.0251938
-0.00173144
-3.50147e-10
0.0252493
-0.00148097
-4.6377e-10
0.0252947
-0.00125269
-4.7146e-10
0.0253187
-0.00102411
-4.83457e-10
0.0253263
-0.00080696
-5.09401e-10
0.0253157
-0.000601271
-5.65989e-10
0.0252957
-0.00041144
-5.34987e-10
0.0252621
-0.000226048
-5.11943e-10
0.0252155
-4.96135e-05
-4.93163e-10
0.025158
0.000118614
-4.83105e-10
0.0250889
0.0002791
-4.67209e-10
0.0250095
0.000431931
-4.42511e-10
0.0249192
0.000577372
-4.09512e-10
0.0248195
0.00071545
-3.71079e-10
0.0247115
0.000846691
-3.29974e-10
0.0245957
0.000971118
-2.86884e-10
0.0244741
0.00108937
-2.46522e-10
0.0243457
0.00120139
-2.07803e-10
0.024213
0.00130744
-1.76964e-10
0.0240744
0.00140759
-1.50786e-10
0.0239328
0.00150157
-1.33492e-10
0.0237874
0.00158994
-1.22142e-10
0.0236396
0.00167197
-1.16855e-10
0.0234907
0.00174857
-1.18717e-10
0.0233399
0.00181897
-1.23351e-10
0.0231898
0.00188393
-1.34408e-10
0.0230396
0.00194298
-1.46616e-10
0.0228899
0.00199658
-1.60682e-10
0.0227428
0.00204419
-1.75645e-10
0.0225962
0.00208654
-1.87122e-10
0.0224533
0.00212225
-1.97676e-10
0.022313
0.00215269
-2.01947e-10
0.0221767
0.00217541
-2.00262e-10
0.0220462
0.00219187
-1.90479e-10
0.021921
0.00219887
-1.67064e-10
0.0218055
0.0021971
-1.31852e-10
0.0217005
0.00218158
-7.55096e-11
0.0216103
0.00215198
1.83675e-11
0.0215327
0.00211133
4.63247e-11
0.0214695
0.0020575
1.51261e-10
0.0214197
0.00198936
3.98954e-10
0.0213766
0.00191281
4.39506e-10
0.0213659
0.00180447
5.42126e-10
0.0214068
0.00165162
7.26656e-10
0.0215195
0.00143799
1.08212e-09
0.0216779
0.00119333
1.55156e-09
0.0218738
0.000908301
1.86529e-09
0.0221148
0.000591997
2.01768e-09
0.00027787
2.02114e-09
0.0280884
0.0164609
1.11212e-08
0.0287464
0.0142027
8.37832e-09
0.0294219
0.0121676
4.35625e-09
0.0300936
0.0103935
3.30559e-09
0.0299997
0.00952517
1.14754e-09
0.0296294
0.00887602
-2.22744e-09
0.0293925
0.00817004
-2.89459e-09
0.0291294
0.00748475
-2.18007e-09
0.0288984
0.00677912
-1.36355e-09
0.0287064
0.00605517
-7.01263e-10
0.0285569
0.00532528
-2.31195e-10
0.0284341
0.00460796
6.86548e-12
0.0283256
0.00391226
3.70371e-11
0.028221
0.00324712
-7.58136e-11
0.0281123
0.00261273
-2.43558e-10
0.0279951
0.00201076
-4.12641e-10
0.0278652
0.00143789
-5.5232e-10
0.0277226
0.000892961
-6.53453e-10
0.0275674
0.000373657
-7.17761e-10
0.0274006
-0.000121069
-7.62022e-10
0.0272233
-0.000594807
-7.79053e-10
0.0270368
-0.00104332
-7.81425e-10
0.0268392
-0.00146746
-7.68446e-10
0.0266339
-0.00186599
-7.49514e-10
0.0264186
-0.00223849
-7.17551e-10
0.0261984
-0.00258376
-6.84719e-10
0.025972
-0.002902
-6.41896e-10
0.0257451
-0.00319187
-6.00419e-10
0.025518
-0.00345511
-5.52514e-10
0.0252955
-0.00368939
-5.04374e-10
0.0250778
-0.00389793
-4.56105e-10
0.0248697
-0.00407774
-3.99239e-10
0.0246701
-0.00423231
-3.46113e-10
0.0244827
-0.00435958
-2.88196e-10
0.0243094
-0.00446141
-2.34303e-10
0.0241509
-0.00453688
-1.74282e-10
0.0240137
-0.00458569
-1.18729e-10
0.0238981
-0.00460729
-5.04001e-11
0.0238157
-0.00459995
1.31675e-11
0.023771
-0.00456083
1.1267e-10
0.0237432
-0.00448561
9.921e-11
0.0237392
-0.00438403
1.61967e-10
0.0237375
-0.00427726
3.79214e-10
0.0237595
-0.00413324
4.05194e-10
0.0238624
-0.00398385
4.60508e-10
0.0240505
-0.00377701
5.39015e-10
0.024266
-0.00350261
6.61432e-10
0.0244882
-0.00318584
6.06419e-10
0.0247179
-0.00286361
4.62766e-10
0.0249268
-0.00252315
2.67188e-10
0.0251026
-0.00218601
4.29754e-11
0.0252407
-0.00186588
-1.75335e-10
0.0253392
-0.00156959
-3.51008e-10
0.0253999
-0.00129907
-4.79059e-10
0.0254479
-0.00105544
-5.56906e-10
0.0254749
-0.00081695
-5.65034e-10
0.0254779
-0.000587885
-5.76648e-10
0.0254575
-0.00037483
-5.9245e-10
0.0254269
-0.000180782
-5.8118e-10
0.0253826
7.23757e-06
-5.35492e-10
0.0253277
0.000184668
-5.20426e-10
0.0252617
0.000354172
-5.01536e-10
0.0251857
0.00051591
-4.72565e-10
0.0250988
0.000670146
-4.36447e-10
0.0250028
0.000816481
-3.96881e-10
0.0248982
0.000955228
-3.53717e-10
0.0247857
0.00108632
-3.07884e-10
0.0246669
0.00121053
-2.62464e-10
0.024541
0.00132768
-2.18271e-10
0.0244104
0.0014384
-1.80754e-10
0.0242742
0.0015424
-1.4826e-10
0.0241342
0.0016401
-1.24283e-10
0.0239906
0.00173123
-1.06273e-10
0.0238437
0.00181618
-9.46066e-11
0.023695
0.00189455
-8.88884e-11
0.0235446
0.00196694
-8.77293e-11
0.0233933
0.00203269
-9.07822e-11
0.0232427
0.00209253
-9.77682e-11
0.0230919
0.00214581
-1.04638e-10
0.022944
0.00219282
-1.13914e-10
0.0227974
0.00223328
-1.18646e-10
0.0226552
0.0022667
-1.22106e-10
0.0225169
0.00229297
-1.17404e-10
0.022385
0.00231075
-1.06346e-10
0.0222605
0.00231955
-8.13905e-11
0.0221455
0.00231714
-4.18455e-11
0.0220446
0.00230067
1.54198e-11
0.0219605
0.00226621
1.05391e-10
0.0218866
0.00222547
1.6571e-10
0.0218339
0.00216322
2.13674e-10
0.0217811
0.00210198
4.89418e-10
0.0217459
0.00201464
5.40238e-10
0.0217558
0.00189036
6.60181e-10
0.0218326
0.00170895
9.06723e-10
0.021972
0.00148286
1.35193e-09
0.0221537
0.00121952
1.61869e-09
0.0223806
0.000919974
1.92767e-09
0.0226321
0.000605771
2.0275e-09
0.0228863
0.000286561
1.96821e-09
-5.74713e-06
1.78476e-09
0.0294128
0.0153387
9.07249e-09
0.0304424
0.0131046
4.17107e-09
0.0312592
0.0112948
3.08973e-09
0.0310603
0.0105684
9.5155e-10
0.0307723
0.00984788
-2.39659e-09
0.0305458
0.00914831
-2.37693e-09
0.0302877
0.00846435
-1.80546e-09
0.0300425
0.00774332
-9.66281e-10
0.0298272
0.00698873
-3.03026e-10
0.0296404
0.00622456
9.79155e-11
0.0294738
0.00546751
2.93168e-10
0.0293253
0.00473424
2.66082e-10
0.0291891
0.00403242
1.33566e-10
0.0290597
0.00336778
-8.16999e-11
0.0289276
0.00274036
-2.99084e-10
0.0287913
0.00214707
-4.81501e-10
0.028648
0.00158526
-6.17224e-10
0.0284986
0.00105135
-7.11667e-10
0.0283409
0.000543884
-7.70939e-10
0.0281739
6.18694e-05
-8.1315e-10
0.0279971
-0.000401233
-8.27357e-10
0.0278091
-0.000840058
-8.30655e-10
0.0276105
-0.0012546
-8.28346e-10
0.0274012
-0.00164556
-8.1815e-10
0.0271833
-0.00201064
-8.02503e-10
0.0269588
-0.00235118
-7.80851e-10
0.0267292
-0.00266527
-7.50599e-10
0.0264982
-0.00295389
-7.15845e-10
0.0262665
-0.00321641
-6.79122e-10
0.0260363
-0.00345274
-6.30541e-10
0.0258107
-0.00366421
-6.00093e-10
0.0255872
-0.00384946
-5.47481e-10
0.025372
-0.0040111
-5.01e-10
0.0251611
-0.00414678
-4.43787e-10
0.0249596
-0.00425911
-3.93962e-10
0.0247681
-0.0043462
-3.42517e-10
0.0245902
-0.00441005
-2.85121e-10
0.0244293
-0.00444924
-2.27975e-10
0.0242896
-0.00446322
-1.70553e-10
0.0241746
-0.00445127
-9.29323e-11
0.024092
-0.00440917
-1.64501e-13
0.0240372
-0.00433577
1.40278e-11
0.0239832
-0.00423128
9.26083e-11
0.023965
-0.00412394
1.5699e-10
0.0239515
-0.00398381
3.89566e-10
0.0239791
-0.00381855
4.22364e-10
0.0240959
-0.00363364
4.95209e-10
0.0242862
-0.00339185
6.28733e-10
0.0244921
-0.00308447
6.31157e-10
0.0247046
-0.00274995
5.79826e-10
0.0249184
-0.00240821
4.17049e-10
0.0251078
-0.00205797
1.92712e-10
0.0252609
-0.00171705
-4.43929e-11
0.0253697
-0.00139869
-2.63217e-10
0.025434
-0.00110773
-4.27727e-10
0.0254782
-0.000846181
-5.54807e-10
0.0255055
-0.000599734
-5.58499e-10
0.0255044
-0.000358631
-5.76102e-10
0.0254759
-0.000137599
-5.94621e-10
0.0254376
6.09514e-05
-6.29788e-10
0.0253883
0.000247304
-5.93226e-10
0.0253285
0.000425782
-5.46717e-10
0.0252587
0.000595122
-4.98597e-10
0.0251798
0.000756818
-4.52475e-10
0.0250923
0.000910622
-4.08861e-10
0.0249959
0.00105656
-3.6319e-10
0.024892
0.00119467
-3.15182e-10
0.0247796
0.00132508
-2.65075e-10
0.024661
0.00144772
-2.17188e-10
0.0245359
0.0015631
-1.73342e-10
0.0244063
0.00167099
-1.36124e-10
0.024272
0.00177216
-1.05475e-10
0.0241351
0.00186603
-8.19875e-11
0.0239949
0.00195352
-6.38156e-11
0.0238533
0.00203373
-5.16775e-11
0.0237099
0.00210775
-4.3927e-11
0.0235656
0.0021744
-4.01428e-11
0.0234213
0.00223475
-4.01358e-11
0.0232776
0.00228757
-4.04639e-11
0.0231359
0.00233358
-4.16887e-11
0.0229971
0.00237151
-3.90113e-11
0.0228626
0.00240161
-3.24016e-11
0.022734
0.00242216
-1.59131e-11
0.0226138
0.00243266
1.01602e-11
0.0225033
0.00243049
5.61318e-11
0.0224091
0.00241231
1.33951e-10
0.0223331
0.00237486
2.1775e-10
0.022269
0.00232991
2.4411e-10
0.0222178
0.00227041
4.17987e-10
0.0221673
0.00220909
4.56297e-10
0.0221536
0.00210919
5.37769e-10
0.022196
0.00195877
7.22935e-10
0.0223119
0.00175396
1.01576e-09
0.0224726
0.0015129
1.65251e-09
0.022682
0.00123274
1.85604e-09
0.0229321
0.000923851
1.96019e-09
0.0231988
0.000606171
1.98685e-09
0.0234568
0.000302859
1.80674e-09
0.02368
2.20656e-05
1.6038e-09
-0.000209608
1.04583e-09
0.0305885
0.0137211
4.97883e-09
0.0316525
0.0119939
3.53997e-09
0.0316205
0.0113299
4.19427e-10
0.0315447
0.0106683
-1.73245e-09
0.0314027
0.0100283
-2.15318e-09
0.0312096
0.00937298
-1.20772e-09
0.0310245
0.00866236
-3.06102e-10
0.0308609
0.00789985
3.61434e-10
0.0307158
0.00711681
6.56355e-10
0.0305836
0.00633602
7.02932e-10
0.0304588
0.00557773
5.78316e-10
0.0303323
0.00485127
3.74356e-10
0.0301969
0.00416205
9.45628e-11
0.0300529
0.00350905
-1.60191e-10
0.0299023
0.00289174
-3.80801e-10
0.0297458
0.00230711
-5.56175e-10
0.0295867
0.00175291
-6.88652e-10
0.0294213
0.00122674
-7.77272e-10
0.0292517
0.000726795
-8.39633e-10
0.0290716
0.000252751
-8.75745e-10
0.0288799
-0.000198882
-9.0132e-10
0.0286781
-0.000629727
-9.13845e-10
0.0284673
-0.00103586
-9.16365e-10
0.0282488
-0.00141822
-9.1573e-10
0.0280229
-0.00177673
-9.01907e-10
0.0277934
-0.00211147
-8.87418e-10
0.0275575
-0.00242159
-8.60541e-10
0.0273201
-0.00270701
-8.37916e-10
0.0270773
-0.00296741
-7.90317e-10
0.0268343
-0.00320201
-7.55132e-10
0.0265881
-0.00341282
-6.86189e-10
0.0263421
-0.0035979
-6.39748e-10
0.0260965
-0.00376082
-5.89487e-10
0.0258531
-0.003899
-5.45222e-10
0.0256144
-0.00401633
-5.03591e-10
0.0253817
-0.00410982
-4.62797e-10
0.0251587
-0.00418332
-4.30728e-10
0.0249447
-0.00423284
-3.86359e-10
0.0247454
-0.00426211
-3.34024e-10
0.0245616
-0.00426669
-2.72217e-10
0.0244006
-0.00424917
-1.98668e-10
0.0242672
-0.00420474
-8.21754e-11
0.0241656
-0.00413196
-7.75796e-11
0.0240691
-0.00402912
1.93528e-12
0.024007
-0.00392455
1.1548e-10
0.0239802
-0.00379834
3.56816e-10
0.0239662
-0.00362653
3.84894e-10
0.0240022
-0.00343514
4.5801e-10
0.0241293
-0.0032197
5.7469e-10
0.0243102
-0.00294549
7.38777e-10
0.0245071
-0.0026168
6.93329e-10
0.0247106
-0.00227184
6.17841e-10
0.0249039
-0.00191539
4.1985e-10
0.0250674
-0.00156132
1.64867e-10
0.0251887
-0.00122391
-9.05759e-11
0.0252645
-0.000912863
-3.01116e-10
0.0253098
-0.000631355
-4.88512e-10
0.025343
-0.000377908
-5.03403e-10
0.0253479
-0.00012866
-5.3092e-10
0.0253224
0.000100787
-5.68478e-10
0.0252796
0.000305297
-6.22809e-10
0.0252296
0.000489831
-5.82203e-10
0.0251674
0.000668798
-5.21641e-10
0.0250969
0.000836589
-4.63866e-10
0.0250187
0.000995991
-4.12396e-10
0.0249329
0.00114798
-3.61678e-10
0.0248388
0.00129253
-3.09064e-10
0.0247367
0.00142903
-2.55905e-10
0.0246275
0.00155736
-2.04958e-10
0.0245121
0.00167745
-1.57246e-10
0.0243918
0.00178964
-1.15301e-10
0.0242677
0.00189407
-7.89615e-11
0.0241405
0.00199099
-4.92441e-11
0.0240116
0.0020805
-2.48106e-11
0.0238812
0.00216269
-5.54021e-12
0.0237507
0.00223752
9.45377e-12
0.02362
0.002305
2.08856e-11
0.0234905
0.00236479
2.93444e-11
0.0233623
0.00241672
3.70786e-11
0.0232367
0.00246014
4.57537e-11
0.0231153
0.00249443
5.8638e-11
0.0229994
0.0025186
7.9411e-11
0.0228922
0.00253086
1.1e-10
0.0227959
0.0025294
1.67733e-10
0.0227172
0.00250852
2.38885e-10
0.0226562
0.00247063
3.20615e-10
0.0226091
0.00241981
3.30819e-10
0.0225567
0.00237439
5.51332e-10
0.0225209
0.00229721
6.08642e-10
0.0225409
0.00217795
7.24346e-10
0.0226303
0.00200257
9.50215e-10
0.0227782
0.00178294
1.36513e-09
0.0229709
0.00152775
1.6119e-09
0.0232097
0.00123174
1.87426e-09
0.0234794
0.000917017
1.97048e-09
0.0237533
0.0006039
1.87947e-09
0.0240088
0.000311163
1.64598e-09
0.0242231
5.60858e-05
1.28205e-09
0.0243815
-0.000160495
9.11468e-10
-0.000331751
5.22373e-10
0.0305237
0.0114581
2.87858e-09
0.031088
0.0114443
1.07335e-09
0.0311528
0.0113304
-2.17716e-09
0.0313047
0.010572
-1.97183e-09
0.0314204
0.00994364
-1.15623e-09
0.0314419
0.00935429
3.46984e-10
0.0314437
0.00864036
1.3432e-09
0.0314246
0.00788687
1.56216e-09
0.0313841
0.00712389
1.40277e-09
0.0313213
0.00637123
1.07385e-09
0.0312421
0.00564047
6.86148e-10
0.0311457
0.00494075
3.47035e-10
0.0310321
0.00427441
3.62373e-11
0.0309001
0.00364122
-2.29128e-10
0.0307545
0.00303888
-4.51196e-10
0.0305995
0.00246678
-6.32316e-10
0.0304372
0.00192302
-7.68524e-10
0.0302685
0.00140673
-8.65989e-10
0.0300931
0.000916234
-9.30786e-10
0.0299095
0.000451348
-9.71097e-10
0.0297123
1.36531e-05
-9.84281e-10
0.0295091
-0.000410302
-1.00875e-09
0.0292962
-0.000805832
-1.01846e-09
0.0290742
-0.00117857
-1.01183e-09
0.0288427
-0.00152802
-1.00384e-09
0.0286022
-0.00185405
-9.93172e-10
0.0283513
-0.00215595
-9.72421e-10
0.0280933
-0.00243396
-9.49288e-10
0.0278268
-0.00268813
-9.16167e-10
0.0275569
-0.00291849
-8.76411e-10
0.0272822
-0.00312601
-8.26494e-10
0.027006
-0.00330992
-7.72942e-10
0.0267286
-0.00347217
-7.22519e-10
0.0264519
-0.00361213
-6.73111e-10
0.0261772
-0.00373131
-6.33279e-10
0.0259065
-0.00382989
-5.93247e-10
0.0256407
-0.0039084
-5.56108e-10
0.0253828
-0.003967
-5.16888e-10
0.0251344
-0.00400614
-4.74644e-10
0.024899
-0.00402503
-4.23216e-10
0.024679
-0.0040239
-3.59211e-10
0.0244804
-0.00400133
-2.82409e-10
0.0243083
-0.00395704
-1.72078e-10
0.0241671
-0.00388539
-7.9749e-11
0.024031
-0.00378481
-5.38638e-11
0.023914
-0.00367995
7.19478e-11
0.0238446
-0.00355579
2.59992e-10
0.0238073
-0.00340213
4.5857e-10
0.0237893
-0.00320524
4.88815e-10
0.0238442
-0.00300475
5.61043e-10
0.023982
-0.00276195
6.78647e-10
0.0241547
-0.00245812
8.90687e-10
0.024341
-0.00211394
8.17005e-10
0.0245355
-0.00176345
6.43047e-10
0.0247063
-0.00140087
4.05578e-10
0.0248421
-0.00104754
1.38941e-10
0.0249374
-0.000719922
-1.30501e-10
0.0249907
-0.000421068
-3.14563e-10
0.0250327
-0.000156953
-4.53066e-10
0.025053
9.37658e-05
-4.65416e-10
0.0250404
0.000331689
-4.91123e-10
0.0249992
0.000545218
-5.35238e-10
0.0249502
0.000730266
-5.06156e-10
0.0248932
0.000905516
-4.61164e-10
0.0248268
0.00107169
-4.04227e-10
0.0247538
0.00122868
-3.46643e-10
0.0246735
0.00137809
-2.89119e-10
0.0245869
0.00151961
-2.3453e-10
0.0244942
0.00165285
-1.81827e-10
0.0243956
0.00177772
-1.31048e-10
0.0242919
0.00189408
-8.41633e-11
0.0241836
0.00200209
-4.21524e-11
0.024072
0.00210178
-6.28009e-12
0.0239579
0.00219344
2.4311e-11
0.0238422
0.00227698
5.02774e-11
0.023726
0.00235254
7.24714e-11
0.0236101
0.00241971
9.18495e-11
0.0234954
0.00247837
1.09661e-10
0.0233837
0.00252759
1.27467e-10
0.0232756
0.00256699
1.48699e-10
0.0231738
0.00259476
1.75933e-10
0.0230803
0.00260989
2.17423e-10
0.0229995
0.00260838
2.66273e-10
0.0229364
0.00258683
3.78046e-10
0.0228933
0.00254629
3.75493e-10
0.022853
0.00250139
5.31043e-10
0.0228064
0.00245746
5.61709e-10
0.0228061
0.00236496
6.38014e-10
0.0228685
0.00221955
8.27893e-10
0.0230016
0.00202204
1.1375e-09
0.0231804
0.00179175
1.50351e-09
0.0234059
0.00151725
1.79871e-09
0.0236771
0.00121311
1.95827e-09
0.0239629
0.000900448
1.93825e-09
0.0242411
0.000596685
1.76451e-09
0.024486
0.000322543
1.44048e-09
0.0246845
8.66598e-05
1.05492e-09
0.0248238
-0.000103162
6.40125e-10
0.0249114
-0.000259124
3.66013e-10
-0.000382816
9.29099e-11
0.0272137
0.00942564
1.00018e-08
0.0282711
0.0104299
-2.06184e-09
0.0293325
0.0103299
-2.89306e-09
0.029956
0.0100016
-1.23128e-09
0.0304015
0.00952781
5.77071e-10
0.0307809
0.00897538
2.1475e-09
0.0310721
0.0083323
2.50306e-09
0.0312881
0.00765073
2.22534e-09
0.031448
0.00695752
1.62754e-09
0.0315463
0.00627107
1.10047e-09
0.031587
0.00560378
5.38699e-10
0.031578
0.00495964
1.41794e-10
0.031529
0.00433612
-1.64336e-10
0.0314467
0.00373669
-4.12344e-10
0.0313369
0.00316026
-6.1125e-10
0.0312085
0.00260836
-7.72759e-10
0.0310675
0.00208125
-8.94856e-10
0.0309165
0.00157952
-9.83069e-10
0.0307545
0.00110296
-1.05098e-09
0.0305812
0.000651406
-1.09559e-09
0.0303976
0.000225263
-1.14087e-09
0.0301955
-0.000180409
-1.15033e-09
0.029981
-0.000563698
-1.15643e-09
0.0297523
-0.000923643
-1.15633e-09
0.0295098
-0.00126101
-1.1467e-09
0.0292538
-0.00157599
-1.13063e-09
0.0289851
-0.00186787
-1.10727e-09
0.0287067
-0.00213717
-1.08011e-09
0.0284183
-0.00238335
-1.04214e-09
0.0281234
-0.00260733
-1.0009e-09
0.0278223
-0.00280905
-9.52943e-10
0.0275167
-0.00298962
-8.98558e-10
0.0272101
-0.00314882
-8.49742e-10
0.0269012
-0.00328862
-7.95919e-10
0.0265941
-0.00340753
-7.55324e-10
0.0262884
-0.00350904
-7.14289e-10
0.0259852
-0.00359016
-6.78899e-10
0.0256867
-0.00365489
-6.443e-10
0.0253942
-0.00370041
-6.06713e-10
0.0251095
-0.00372933
-5.61714e-10
0.0248381
-0.00373986
-5.08839e-10
0.0245808
-0.00373335
-4.41352e-10
0.0243441
-0.00370731
-3.56498e-10
0.024134
-0.00366346
-2.64282e-10
0.0239566
-0.00359486
-1.48478e-10
0.0237933
-0.00350353
-1.01247e-10
0.0236526
-0.00340255
9.44169e-12
0.0235482
-0.00328966
2.00095e-10
0.0234958
-0.00314704
3.32566e-10
0.0234474
-0.0029583
5.87729e-10
0.0234342
-0.00275216
6.28648e-10
0.0235042
-0.00253461
7.01276e-10
0.0236477
-0.00226842
8.78289e-10
0.0238118
-0.00194147
8.93182e-10
0.0239868
-0.00159091
8.50298e-10
0.0241608
-0.00123454
6.52063e-10
0.0243116
-0.000876514
3.80878e-10
0.0244242
-0.000535809
1.10191e-10
0.0244983
-0.000223387
-1.24285e-10
0.0245454
5.63679e-05
-2.82886e-10
0.0245818
0.0003043
-3.06728e-10
0.0245889
0.00054872
-3.48101e-10
0.0245618
0.000769977
-4.1619e-10
0.0245194
0.00096134
-4.28062e-10
0.0244695
0.00113267
-3.70745e-10
0.0244097
0.00129749
-3.1199e-10
0.0243441
0.00145059
-2.56546e-10
0.0242739
0.00159512
-2.03744e-10
0.0241986
0.00173171
-1.49391e-10
0.0241182
0.00186035
-9.40375e-11
0.0240327
0.00198043
-4.10363e-11
0.0239431
0.00209166
7.10478e-12
0.0238503
0.002194
4.92635e-11
0.0237557
0.00228739
8.59877e-11
0.0236601
0.00237195
1.18625e-10
0.0235646
0.00244737
1.48751e-10
0.0234707
0.00251339
1.77483e-10
0.0233792
0.00256934
2.06732e-10
0.0232922
0.00261416
2.3829e-10
0.0232116
0.00264672
2.76049e-10
0.0231393
0.00266518
3.26491e-10
0.0230817
0.00266498
3.84299e-10
0.0230415
0.00264216
5.08438e-10
0.0230199
0.0026027
4.9215e-10
0.0229802
0.00257667
6.66542e-10
0.0229603
0.00251011
7.10199e-10
0.023008
0.00239641
7.9818e-10
0.0231258
0.00222801
9.97212e-10
0.0232957
0.0020221
1.3812e-09
0.0235076
0.00177439
1.60762e-09
0.0237714
0.00148771
1.84752e-09
0.0240633
0.0011821
1.94326e-09
0.0243596
0.000874393
1.86595e-09
0.0246348
0.000586956
1.61883e-09
0.0248673
0.000333715
1.25488e-09
0.0250463
0.000121586
8.4574e-10
0.0251676
-4.837e-05
4.62952e-10
0.0252388
-0.000180676
1.64013e-10
0.0252729
-0.000296585
-8.76382e-12
-0.000387436
-1.33405e-10
0.0228903
0.00731008
1.44004e-08
0.0248696
0.00851175
-4.18031e-09
0.0264441
0.00881077
-2.7484e-09
0.0277252
0.00873544
9.06736e-12
0.0286781
0.00854882
3.05125e-09
0.0294618
0.00815808
3.69486e-09
0.0300734
0.00768827
3.28189e-09
0.0305215
0.0071646
2.43792e-09
0.0308304
0.0066061
1.55167e-09
0.0310388
0.00603183
7.59378e-10
0.031183
0.00545103
2.45788e-10
0.0312735
0.00487558
-1.78998e-10
0.0313152
0.00430806
-4.94831e-10
0.0313197
0.00375354
-7.22635e-10
0.0312906
0.00321428
-8.91855e-10
0.0312364
0.00269378
-1.01916e-09
0.0311573
0.00219468
-1.1075e-09
0.0310582
0.00171747
-1.17237e-09
0.0309381
0.00126344
-1.21108e-09
0.0307966
0.000832053
-1.23529e-09
0.0306376
0.00042404
-1.26132e-09
0.0304559
3.92244e-05
-1.27081e-09
0.0302563
-0.000325309
-1.28469e-09
0.0300369
-0.000667544
-1.28157e-09
0.0298
-0.00098817
-1.27055e-09
0.0295455
-0.00128765
-1.2522e-09
0.0292757
-0.0015657
-1.22624e-09
0.0289923
-0.0018223
-1.19705e-09
0.0286972
-0.00205818
-1.15774e-09
0.028392
-0.00227254
-1.11487e-09
0.0280795
-0.00246751
-1.06655e-09
0.0277596
-0.00264152
-1.01404e-09
0.0274368
-0.00279754
-9.66248e-10
0.0271087
-0.00293373
-9.1561e-10
0.0267803
-0.00305285
-8.74576e-10
0.0264497
-0.00315373
-8.35543e-10
0.0261191
-0.00323815
-7.99146e-10
0.0257917
-0.0033057
-7.67302e-10
0.0254671
-0.00335774
-7.27596e-10
0.0251508
-0.00339348
-6.88182e-10
0.0248442
-0.00341476
-6.37946e-10
0.0245502
-0.00341982
-5.78539e-10
0.0242732
-0.00341022
-5.08332e-10
0.0240138
-0.00338389
-4.22544e-10
0.0237795
-0.00334112
-3.2774e-10
0.0235724
-0.00327818
-2.01993e-10
0.0233814
-0.00319416
-1.51243e-10
0.0232085
-0.00310019
-4.40531e-11
0.0230693
-0.00299685
1.43872e-10
0.0229849
-0.00286595
3.16739e-10
0.02293
-0.00269877
5.65207e-10
0.0228881
-0.00249663
6.027e-10
0.0229058
-0.00229198
6.87353e-10
0.0230073
-0.00205557
8.23252e-10
0.0231607
-0.00176332
1.05249e-09
0.0233266
-0.00142224
9.88449e-10
0.0235023
-0.00107139
8.72622e-10
0.0236645
-0.000713548
6.59736e-10
0.023797
-0.000364141
3.89515e-10
0.0238926
-4.0341e-05
1.56875e-10
0.0239484
0.000251043
-9.37529e-11
0.024
0.000504184
-1.87298e-10
0.0240293
0.000747517
-2.00482e-10
0.0240224
0.000975746
-2.23947e-10
0.0239884
0.00117555
-2.6835e-10
0.0239496
0.00134476
-2.47278e-10
0.0239035
0.00150394
-2.21627e-10
0.0238518
0.00165242
-1.72164e-10
0.0237958
0.00179122
-1.10754e-10
0.0237356
0.00192219
-4.68816e-11
0.0236711
0.00204474
1.33677e-11
0.0236029
0.00215846
6.78847e-11
0.0235314
0.00226308
1.16899e-10
0.023458
0.00235794
1.58795e-10
0.0233841
0.00244296
1.98082e-10
0.0233107
0.00251727
2.37095e-10
0.0232408
0.00258035
2.76324e-10
0.0231749
0.00263118
3.19248e-10
0.0231176
0.00266758
3.69546e-10
0.0230697
0.00268923
4.27764e-10
0.0230386
0.00268954
5.04685e-10
0.0230315
0.00266334
6.08282e-10
0.0230207
0.00264068
6.82784e-10
0.0230019
0.00261113
7.23473e-10
0.0230372
0.00252856
8.23751e-10
0.0231415
0.00238797
1.00919e-09
0.0232982
0.00221378
1.35178e-09
0.0234979
0.00199639
1.59515e-09
0.0237487
0.00173346
1.80617e-09
0.0240395
0.00144226
1.91368e-09
0.0243469
0.0011384
1.89834e-09
0.0246466
0.000844271
1.73772e-09
0.0249123
0.000576317
1.43524e-09
0.0251291
0.000346648
1.05501e-09
0.0252888
0.000158234
6.68753e-10
0.0253965
6.9676e-06
3.14565e-10
0.0254519
-0.000106637
6.42021e-11
0.0254771
-0.000203977
-9.76709e-11
0.0254754
-0.00029461
-1.43544e-10
-0.000374865
-2.21318e-10
0.0192157
0.00563317
1.56697e-08
0.0213387
0.00643433
-3.57222e-09
0.023259
0.00689557
-1.1332e-09
0.0247931
0.00714646
2.214e-09
0.026096
0.00716669
4.21364e-09
0.0271874
0.00700961
4.29105e-09
0.0281032
0.00674824
3.29568e-09
0.0288548
0.00641281
2.05245e-09
0.0294553
0.00602453
9.84504e-10
0.0299202
0.00559478
1.83061e-10
0.0302635
0.00513778
-3.94149e-10
0.0305121
0.00465991
-7.63732e-10
0.0306829
0.00417195
-1.02781e-09
0.030787
0.00368061
-1.17682e-09
0.030836
0.00319401
-1.2884e-09
0.0308417
0.00271818
-1.33782e-09
0.0308127
0.00225662
-1.35965e-09
0.0307551
0.00181198
-1.36809e-09
0.0306739
0.00138642
-1.3682e-09
0.0305679
0.000980602
-1.36273e-09
0.0304397
0.000595631
-1.36453e-09
0.0302861
0.000232205
-1.36703e-09
0.0301083
-0.000110484
-1.37089e-09
0.0299072
-0.000431703
-1.36823e-09
0.0296838
-0.000732039
-1.35956e-09
0.0294432
-0.00101217
-1.34967e-09
0.0291829
-0.00127252
-1.32651e-09
0.0289093
-0.00151316
-1.30341e-09
0.028619
-0.00173504
-1.26652e-09
0.0283179
-0.00193768
-1.22728e-09
0.0280044
-0.00212271
-1.18122e-09
0.0276829
-0.00228929
-1.13203e-09
0.0273543
-0.00243923
-1.08522e-09
0.0270199
-0.0025717
-1.0378e-09
0.0266824
-0.0026884
-9.96992e-10
0.0263422
-0.00278885
-9.55659e-10
0.0260019
-0.00287413
-9.2104e-10
0.0256634
-0.00294456
-8.82966e-10
0.025328
-0.00300029
-8.44959e-10
0.0249995
-0.00304236
-8.03712e-10
0.0246785
-0.0030706
-7.55116e-10
0.0243677
-0.0030857
-6.99774e-10
0.0240691
-0.00308763
-6.35277e-10
0.0237848
-0.00307611
-5.59024e-10
0.0235182
-0.00305104
-4.7039e-10
0.0232735
-0.00301114
-3.70614e-10
0.0230549
-0.00295472
-2.46595e-10
0.0228544
-0.00287946
-1.91692e-10
0.0226706
-0.00279503
-7.91585e-11
0.0225184
-0.00270202
9.25761e-11
0.0224101
-0.00258268
2.98915e-10
0.0223457
-0.00243288
4.19738e-10
0.0222916
-0.0022474
6.92307e-10
0.0222682
-0.00204448
7.26732e-10
0.022318
-0.00183155
8.05451e-10
0.0224499
-0.00157412
9.23317e-10
0.0226056
-0.00125835
1.12622e-09
0.0227753
-0.000911376
1.09205e-09
0.0229419
-0.000558632
9.07445e-10
0.0230885
-0.00020647
6.69263e-10
0.0231995
0.000125588
3.90408e-10
0.0232693
0.000427096
1.95498e-10
0.0233246
0.000690078
5.02177e-12
0.0233688
0.00093075
-1.05889e-11
0.0233851
0.00116091
-4.1616e-11
0.0233668
0.00136629
-8.34011e-11
0.0233385
0.00153759
-1.44538e-10
0.0233058
0.0016895
-1.00604e-10
0.023267
0.00183304
-3.95333e-11
0.0232265
0.00196448
2.41018e-11
0.0231845
0.00208687
8.59675e-11
0.023142
0.00220067
1.43113e-10
0.0230975
0.00230565
1.99526e-10
0.0230522
0.0024004
2.47978e-10
0.0230069
0.00248439
2.94899e-10
0.0229635
0.00255577
3.43953e-10
0.0229252
0.00261368
4.01753e-10
0.0228941
0.00265594
4.58214e-10
0.0228737
0.00268082
5.43801e-10
0.0228702
0.00268462
6.09517e-10
0.0228807
0.00266745
7.55618e-10
0.0228719
0.00265956
7.74442e-10
0.0228951
0.00260532
8.46532e-10
0.0229962
0.00249473
9.73315e-10
0.023146
0.00235757
1.20647e-09
0.023332
0.00217316
1.50315e-09
0.0235712
0.00194008
1.74571e-09
0.0238581
0.00167028
1.89299e-09
0.024172
0.00137883
1.9298e-09
0.0244903
0.00108585
1.8266e-09
0.0247853
0.00080968
1.57738e-09
0.0250403
0.000565861
1.24268e-09
0.0252371
0.000360943
8.57264e-10
0.0253814
0.000195817
5.01305e-10
0.025472
6.46036e-05
2.09975e-10
0.0255181
-3.69948e-05
-1.06768e-11
0.0255434
-0.000126144
-1.46063e-10
0.0255526
-0.000209018
-1.58556e-10
0.025541
-0.000278936
-1.87468e-10
-0.000349666
-1.89976e-10
0.0170705
0.00452649
1.6392e-08
0.0189152
0.00460784
-3.13782e-09
0.0206219
0.00516557
-2.81077e-10
0.0221397
0.00555432
2.86975e-09
0.0234681
0.00574676
4.09225e-09
0.0246255
0.00577585
3.62502e-09
0.0256324
0.00569447
2.42132e-09
0.0265053
0.00552608
1.13946e-09
0.0272547
0.00529124
9.55053e-11
0.0278936
0.00499946
-6.56828e-10
0.0284348
0.00466256
-1.11976e-09
0.0288748
0.00429239
-1.43673e-09
0.0292261
0.00389534
-1.59697e-09
0.0294958
0.00348533
-1.68521e-09
0.0296981
0.00306625
-1.67427e-09
0.0298431
0.0026489
-1.64365e-09
0.0299332
0.00223672
-1.59231e-09
0.0299771
0.00183484
-1.53955e-09
0.0299744
0.00144646
-1.48836e-09
0.0299308
0.00107361
-1.44507e-09
0.0298505
0.000718454
-1.41906e-09
0.0297367
0.000381616
-1.39577e-09
0.0295944
6.48779e-05
-1.39317e-09
0.029425
-0.000231544
-1.3978e-09
0.0292298
-0.000507892
-1.39487e-09
0.0290129
-0.000765519
-1.39108e-09
0.0287737
-0.00100461
-1.37543e-09
0.0285177
-0.00122641
-1.35934e-09
0.0282462
-0.00143099
-1.33243e-09
0.0279625
-0.00161931
-1.29876e-09
0.027669
-0.00179121
-1.26154e-09
0.0273659
-0.00194807
-1.21731e-09
0.0270549
-0.00208867
-1.17424e-09
0.0267363
-0.00221545
-1.13384e-09
0.0264128
-0.00232647
-1.09372e-09
0.0260831
-0.00242465
-1.0532e-09
0.0257507
-0.00250751
-1.02332e-09
0.0254152
-0.00257837
-9.7785e-10
0.0250807
-0.00263478
-9.41567e-10
0.0247498
-0.00268066
-9.01246e-10
0.024424
-0.00271374
-8.53044e-10
0.0241069
-0.00273696
-8.05909e-10
0.0237992
-0.00274844
-7.44262e-10
0.0235051
-0.0027498
-6.75101e-10
0.0232262
-0.00273957
-5.92015e-10
0.0229648
-0.00271774
-5.01181e-10
0.0227251
-0.0026836
-3.9884e-10
0.022507
-0.00263386
-2.79385e-10
0.0223048
-0.00256842
-2.16051e-10
0.0221156
-0.00249333
-1.05466e-10
0.0219531
-0.00240889
6.34694e-11
0.0218244
-0.00230063
2.30604e-10
0.0217343
-0.00216299
4.01109e-10
0.021671
-0.00199749
6.66289e-10
0.0216164
-0.00179817
7.04213e-10
0.0216183
-0.00159864
7.90802e-10
0.0216973
-0.00136552
9.33876e-10
0.0218292
-0.00108167
1.18555e-09
0.0219824
-0.000748896
1.16535e-09
0.0221422
-0.000407592
1.0798e-09
0.0222976
-5.81887e-05
8.65486e-10
0.0224187
0.000277154
6.55755e-10
0.0225058
0.000584062
4.43174e-10
0.022568
0.000854463
2.80694e-10
0.0226269
0.00109334
1.1851e-10
0.0226698
0.00131551
1.04389e-10
0.0226777
0.00152314
8.25242e-11
0.0226627
0.00170066
5.5693e-11
0.0226459
0.00184695
7.00163e-11
0.0226261
0.00198153
1.01052e-10
0.0226039
0.00210559
1.55208e-10
0.0225808
0.00221848
2.20374e-10
0.0225581
0.00232236
2.83986e-10
0.0225356
0.00241516
3.48572e-10
0.0225169
0.00249535
4.15681e-10
0.0225018
0.00256112
4.77266e-10
0.0224948
0.00260978
5.68038e-10
0.0225001
0.00263846
6.25274e-10
0.0225111
0.00265268
7.79102e-10
0.0225353
0.00264735
8.00494e-10
0.0225616
0.00262305
8.66196e-10
0.0226566
0.00254975
9.91756e-10
0.0227956
0.0024473
1.1877e-09
0.0229635
0.00230147
1.42459e-09
0.0231893
0.0021014
1.69916e-09
0.0234678
0.00185849
1.85882e-09
0.0237857
0.00158778
1.95201e-09
0.0241156
0.0013026
1.9027e-09
0.0244388
0.00102557
1.72742e-09
0.0247284
0.000772042
1.4294e-09
0.0249686
0.000554091
1.06622e-09
0.025155
0.000374028
7.17068e-10
0.025285
0.000230382
3.91959e-10
0.0253699
0.000116814
1.4795e-10
0.0254161
2.64024e-05
-3.29277e-11
0.0254455
-5.64628e-05
-1.22225e-10
0.0254603
-0.000131852
-1.35867e-10
0.0254573
-0.00019836
-1.54013e-10
0.025445
-0.000258605
-1.90822e-10
-0.000319653
-1.92102e-10
0.0174794
0.00384141
1.75179e-08
0.0182578
0.00385813
-2.80898e-09
0.0192944
0.00409815
-2.2712e-10
0.0203601
0.00441461
1.93194e-09
0.0214023
0.00462679
2.48286e-09
0.0224007
0.00472622
1.85965e-09
0.0233458
0.00473452
8.61577e-10
0.0242177
0.00467243
-1.14832e-10
0.0250169
0.00454287
-8.8207e-10
0.0257362
0.00435659
-1.43413e-09
0.0263814
0.00411675
-1.78034e-09
0.0269468
0.00383666
-1.99418e-09
0.027433
0.0035225
-2.08546e-09
0.0278425
0.00318628
-2.08714e-09
0.0281728
0.00283526
-2.02263e-09
0.0284344
0.00247743
-1.9231e-09
0.0286218
0.00211998
-1.80217e-09
0.0287464
0.00176666
-1.68458e-09
0.0288102
0.00142338
-1.57905e-09
0.0288209
0.00109156
-1.49195e-09
0.0287904
0.000774643
-1.43368e-09
0.0287185
0.000473297
-1.39041e-09
0.0286187
0.000188401
-1.37382e-09
0.0284897
-7.92622e-05
-1.37445e-09
0.0283345
-0.000328049
-1.37344e-09
0.0281556
-0.000559541
-1.37709e-09
0.0279523
-0.000774953
-1.37077e-09
0.027729
-0.00097441
-1.36496e-09
0.0274878
-0.00115941
-1.35139e-09
0.0272293
-0.00132948
-1.32922e-09
0.0269593
-0.00148577
-1.30761e-09
0.0266742
-0.00162826
-1.27402e-09
0.0263794
-0.00175712
-1.24259e-09
0.0260754
-0.00187335
-1.20951e-09
0.0257649
-0.00197616
-1.17943e-09
0.025445
-0.00206771
-1.13428e-09
0.0251185
-0.0021462
-1.12835e-09
0.024791
-0.00221465
-1.08377e-09
0.0244677
-0.00227248
-1.02901e-09
0.0241557
-0.00232072
-9.87943e-10
0.0238545
-0.00236039
-9.17187e-10
0.0235643
-0.00238976
-8.80593e-10
0.0232856
-0.00241122
-8.20219e-10
0.0230193
-0.00242169
-7.56049e-10
0.0227624
-0.00242443
-6.75196e-10
0.0225186
-0.00241513
-5.94897e-10
0.0222811
-0.0023968
-4.98632e-10
0.0220559
-0.00236469
-4.0189e-10
0.021841
-0.0023207
-2.92035e-10
0.0216322
-0.00226024
-2.29171e-10
0.0214305
-0.00219278
-1.29046e-10
0.0212494
-0.00211564
3.97494e-11
0.0210969
-0.00201549
1.82887e-10
0.0209745
-0.00188994
3.90483e-10
0.0208983
-0.0017417
5.19129e-10
0.0208255
-0.0015562
7.73525e-10
0.0207919
-0.00136325
8.16121e-10
0.0208277
-0.00115194
9.10005e-10
0.0209395
-0.000899689
1.08617e-09
0.0210757
-0.00058994
1.21865e-09
0.0212319
-0.000258414
1.23715e-09
0.0213852
8.17655e-05
1.10351e-09
0.0215194
0.000412
8.59279e-10
0.0216281
0.000719711
6.79552e-10
0.0217046
0.000991942
4.12733e-10
0.0217691
0.0012326
2.95488e-10
0.0218306
0.00144576
2.86556e-10
0.0218751
0.00164513
2.69223e-10
0.0218887
0.00182407
2.49298e-10
0.0218959
0.00197004
1.9554e-10
0.0219047
0.00209384
2.53443e-10
0.0219113
0.00220841
3.21792e-10
0.0219231
0.00230936
3.92916e-10
0.0219385
0.00239608
4.71572e-10
0.0219616
0.0024697
5.59744e-10
0.0219942
0.00252292
6.3371e-10
0.0220343
0.00256267
7.95254e-10
0.0220707
0.00259341
8.21549e-10
0.0221277
0.00258532
8.88487e-10
0.0222228
0.00253723
9.90863e-10
0.0223501
0.00247565
1.16276e-09
0.0225001
0.0023778
1.33826e-09
0.0226996
0.0022139
1.64252e-09
0.022958
0.00200826
1.82246e-09
0.0232589
0.00176248
1.95278e-09
0.0235854
0.00149467
1.97284e-09
0.0239201
0.00122129
1.86593e-09
0.0242296
0.000963731
1.62182e-09
0.0245025
0.000734359
1.30087e-09
0.0247203
0.00054151
9.46064e-10
0.0248875
0.00038476
6.17556e-10
0.0250044
0.000259427
3.46752e-10
0.0250799
0.000160671
1.47945e-10
0.025126
8.12233e-05
-3.44404e-11
0.0251566
4.62743e-06
-4.22693e-11
0.0251721
-6.36767e-05
-5.71115e-11
0.0251737
-0.000126387
-9.72602e-11
0.0251665
-0.000182738
-1.58428e-10
0.0251544
-0.000237596
-2.09631e-10
-0.000290811
-2.10382e-10
0.0167145
0.00303576
1.58036e-08
0.0175903
0.00302146
-2.38996e-09
0.0183633
0.0033112
-1.42943e-09
0.0191048
0.0036118
1.80176e-10
0.0198608
0.00381616
2.06539e-10
0.0206436
0.00392546
-1.97165e-10
0.0214443
0.00395944
-7.47403e-10
0.0222414
0.00393421
-1.25399e-09
0.0230101
0.00385424
-1.6287e-09
0.0237369
0.00372217
-1.89633e-09
0.0244048
0.00354336
-2.08567e-09
0.025009
0.00332395
-2.21257e-09
0.0255388
0.00307285
-2.27093e-09
0.0259958
0.00279776
-2.255e-09
0.026376
0.00250771
-2.1711e-09
0.026686
0.00220877
-2.03968e-09
0.0269275
0.00190805
-1.88314e-09
0.0271074
0.00160948
-1.72553e-09
0.0272336
0.00131745
-1.58525e-09
0.0273092
0.00103427
-1.46936e-09
0.0273444
0.000762041
-1.38755e-09
0.0273386
0.000501927
-1.33275e-09
0.0272981
0.000254129
-1.29329e-09
0.0272253
1.98445e-05
-1.3114e-09
0.0271185
-0.000197982
-1.31041e-09
0.0269835
-0.000401789
-1.3182e-09
0.0268183
-0.000591476
-1.31967e-09
0.0266286
-0.00076728
-1.32452e-09
0.0264169
-0.000930638
-1.32611e-09
0.0261839
-0.00108097
-1.3177e-09
0.025937
-0.00121988
-1.31347e-09
0.0256765
-0.00134666
-1.29357e-09
0.0254085
-0.00146271
-1.28027e-09
0.0251318
-0.00156776
-1.2596e-09
0.0248518
-0.00166289
-1.23352e-09
0.0245769
-0.00174786
-1.22123e-09
0.0243104
-0.00182427
-1.15733e-09
0.0240536
-0.00189141
-1.13339e-09
0.0237993
-0.00195021
-1.09974e-09
0.0235496
-0.00200001
-1.05528e-09
0.0232981
-0.00204143
-1.01789e-09
0.0230541
-0.00207398
-9.51486e-10
0.0228105
-0.00209915
-8.85676e-10
0.022566
-0.00211498
-8.22169e-10
0.0223175
-0.00212263
-7.51172e-10
0.0220637
-0.00212084
-6.7161e-10
0.0218064
-0.00210973
-5.89954e-10
0.0215468
-0.00208938
-5.00048e-10
0.0212945
-0.00205848
-4.12699e-10
0.021047
-0.00201657
-3.05807e-10
0.0208107
-0.00196156
-2.48247e-10
0.0205845
-0.00190235
-1.28119e-10
0.0203852
-0.00183026
-1.35462e-11
0.0202153
-0.00173929
1.66921e-10
0.0200771
-0.00162612
2.99141e-10
0.0199845
-0.00149124
4.88769e-10
0.0199116
-0.00132434
7.41956e-10
0.0198654
-0.00113818
7.80972e-10
0.0198728
-0.000944356
8.62915e-10
0.0199552
-0.000713925
1.01081e-09
0.0200858
-0.000432692
1.27384e-09
0.0202387
-0.000114889
1.32221e-09
0.0204017
0.000212005
1.19106e-09
0.0205544
0.000537024
1.03142e-09
0.0206848
0.00084086
7.71992e-10
0.0207927
0.00111519
6.45444e-10
0.0208796
0.00135448
5.0103e-10
0.0209623
0.00156328
4.23728e-10
0.02104
0.00175098
4.19324e-10
0.021098
0.00192033
4.1807e-10
0.0211343
0.00206777
4.28003e-10
0.0211737
0.00218215
4.76242e-10
0.0212151
0.00227811
5.33842e-10
0.0212689
0.00235622
6.31808e-10
0.0213289
0.00241801
7.30155e-10
0.0213893
0.00247116
8.32324e-10
0.0214567
0.00250004
9.49613e-10
0.0215824
0.00247226
9.96678e-10
0.0217372
0.00243263
1.11874e-09
0.0218898
0.00238359
1.27921e-09
0.0220904
0.00226664
1.57824e-09
0.0223537
0.00210094
1.75848e-09
0.0226561
0.00189175
1.93861e-09
0.0229933
0.0016488
2.00512e-09
0.023338
0.00139117
1.95742e-09
0.0236747
0.00113501
1.79525e-09
0.0239738
0.000899666
1.52074e-09
0.0242298
0.00069527
1.19235e-09
0.0244266
0.000526421
8.6011e-10
0.0245745
0.000390623
5.71782e-10
0.0246755
0.000281465
3.55042e-10
0.0247404
0.000195284
1.41979e-10
0.0247775
0.000124157
6.66078e-11
0.024801
5.56089e-05
3.77001e-11
0.0248089
-6.47042e-06
-2.16615e-11
0.0248056
-6.44649e-05
-7.25231e-11
0.0247897
-0.000117172
-1.01202e-10
0.0247674
-0.000167588
-1.3206e-10
0.0247393
-0.000215095
-1.96857e-10
-0.000261786
-2.02713e-10
0.0175006
0.00241961
8.5352e-09
0.0179026
0.00266142
-3.14221e-09
0.0182889
0.00290869
-2.55313e-09
0.0186841
0.00315701
-1.61663e-09
0.0191175
0.00333954
-1.51551e-09
0.019632
0.00342067
-1.8804e-09
0.0202174
0.00343041
-1.91169e-09
0.0208491
0.00338459
-1.91604e-09
0.0214927
0.00329583
-1.8918e-09
0.0221217
0.00316675
-1.89154e-09
0.0227183
0.00300487
-1.93579e-09
0.0232683
0.0028148
-2.00947e-09
0.023765
0.00260303
-2.07335e-09
0.0242055
0.00237549
-2.0908e-09
0.024591
0.00213723
-2.04542e-09
0.0249212
0.00189334
-1.94221e-09
0.0252011
0.00164726
-1.80292e-09
0.0254291
0.00140287
-1.65121e-09
0.0256111
0.00116194
-1.51097e-09
0.0257453
0.000927374
-1.3945e-09
0.0258361
0.000699772
-1.30998e-09
0.0258842
0.000481181
-1.25452e-09
0.0258893
0.000271574
-1.22791e-09
0.0258583
7.18057e-05
-1.19873e-09
0.0257897
-0.000115836
-1.20678e-09
0.0256936
-0.000291135
-1.22936e-09
0.0255678
-0.000454501
-1.24251e-09
0.0254204
-0.000606335
-1.25072e-09
0.0252539
-0.00074718
-1.26767e-09
0.0250734
-0.000877556
-1.27024e-09
0.0248864
-0.000998207
-1.27578e-09
0.0246937
-0.00110976
-1.26894e-09
0.0244995
-0.00121266
-1.25616e-09
0.0243047
-0.00130714
-1.25534e-09
0.02411
-0.00139323
-1.24974e-09
0.0239151
-0.00147159
-1.23223e-09
0.0237173
-0.00154204
-1.20656e-09
0.0235155
-0.00160494
-1.18713e-09
0.0233071
-0.00165989
-1.14885e-09
0.0230887
-0.00170736
-1.11036e-09
0.0228583
-0.00174698
-1.05882e-09
0.022616
-0.00177899
-1.00821e-09
0.0223587
-0.00180322
-9.39897e-10
0.0220848
-0.00181994
-8.98093e-10
0.0218028
-0.00182855
-8.31891e-10
0.0215135
-0.00183126
-7.44674e-10
0.0212276
-0.00182602
-6.61425e-10
0.0209478
-0.0018151
-5.7318e-10
0.0206788
-0.00179511
-4.85894e-10
0.0204247
-0.00176848
-3.95808e-10
0.0201882
-0.00173025
-3.06119e-10
0.0199631
-0.00168344
-2.4504e-10
0.0197582
-0.00163054
-1.46505e-10
0.0195741
-0.00156536
-2.54707e-11
0.0194144
-0.0014817
9.9544e-11
0.0192866
-0.00138096
2.76538e-10
0.0191971
-0.00125665
4.41495e-10
0.0191361
-0.00110612
7.0602e-10
0.0190979
-0.000930067
7.44159e-10
0.0191108
-0.000750864
8.22592e-10
0.0191957
-0.000538691
9.85907e-10
0.0193358
-0.000282009
1.28591e-09
0.0195024
2.2058e-05
1.25139e-09
0.0196845
0.000337638
1.28674e-09
0.0198624
0.000655114
1.16959e-09
0.0200256
0.000954579
1.04237e-09
0.0201639
0.00122761
8.45252e-10
0.0202778
0.00146597
7.25748e-10
0.0203782
0.0016702
7.03232e-10
0.0204726
0.00184947
6.79676e-10
0.0205609
0.0020019
6.83106e-10
0.0206334
0.00213176
6.9672e-10
0.020697
0.0022338
7.27832e-10
0.0207558
0.0023131
8.87876e-10
0.0208199
0.00236591
9.22919e-10
0.020925
0.00237894
1.01073e-09
0.0210736
0.00235448
1.1838e-09
0.021216
0.00233284
1.2528e-09
0.0213833
0.00226265
1.44491e-09
0.0216159
0.00214108
1.70314e-09
0.0218929
0.00197178
1.89427e-09
0.0222071
0.0017634
2.01532e-09
0.0225482
0.00152662
2.04254e-09
0.0228884
0.00128167
1.93942e-09
0.0232139
0.00104451
1.72417e-09
0.0234949
0.000832664
1.42756e-09
0.0237286
0.000652224
1.10669e-09
0.0239047
0.000505788
8.07276e-10
0.0240326
0.00038874
5.58425e-10
0.0241171
0.000294445
3.72928e-10
0.0241674
0.000218224
2.39671e-10
0.0241929
0.000154723
1.29097e-10
0.0242063
9.57229e-05
5.10653e-11
0.0242024
3.99073e-05
4.6555e-11
0.0241895
-1.32623e-05
2.02776e-11
0.0241678
-6.22205e-05
-3.9786e-11
0.0241398
-0.000107965
-8.71492e-11
0.0241052
-0.000152075
-1.31016e-10
0.0240657
-0.000192845
-1.94765e-10
-0.000233433
-2.07051e-10
0.0175378
0.00195454
-4.46672e-09
0.0179023
0.00233785
-3.84926e-09
0.01819
0.00260469
-3.32288e-09
0.0184625
0.00285943
-3.17331e-09
0.0187663
0.00303645
-2.70347e-09
0.0191363
0.00309949
-2.66151e-09
0.0195826
0.00306621
-2.33144e-09
0.020079
0.00297818
-1.9382e-09
0.0205928
0.00285193
-1.60718e-09
0.0210981
0.00269952
-1.4114e-09
0.0215884
0.0025303
-1.36263e-09
0.022056
0.0023496
-1.42756e-09
0.0224994
0.00216138
-1.53923e-09
0.0229141
0.00196846
-1.63522e-09
0.0232956
0.00177234
-1.67594e-09
0.0236379
0.00157461
-1.65091e-09
0.0239367
0.0013765
-1.57331e-09
0.0241872
0.00117946
-1.46844e-09
0.0243884
0.000984641
-1.36142e-09
0.0245394
0.000793508
-1.27078e-09
0.0246413
0.000607031
-1.20447e-09
0.0246978
0.000426545
-1.16348e-09
0.0247104
0.00025276
-1.14256e-09
0.0246872
8.62466e-05
-1.13062e-09
0.0246325
-7.16506e-05
-1.13449e-09
0.0245551
-0.000219743
-1.1483e-09
0.0244601
-0.000358037
-1.15845e-09
0.0243536
-0.000486799
-1.17602e-09
0.0242406
-0.000606331
-1.18164e-09
0.0241215
-0.000717716
-1.19485e-09
0.0239977
-0.000820926
-1.213e-09
0.0238668
-0.000917029
-1.23078e-09
0.0237307
-0.00100581
-1.26123e-09
0.0235854
-0.00108817
-1.25954e-09
0.0234291
-0.00116371
-1.26518e-09
0.0232589
-0.00123298
-1.26352e-09
0.0230726
-0.0012954
-1.25284e-09
0.0228684
-0.00135151
-1.23449e-09
0.0226468
-0.00140078
-1.20395e-09
0.0224111
-0.00144365
-1.16507e-09
0.0221627
-0.0014799
-1.11906e-09
0.0219017
-0.00151021
-1.05441e-09
0.021638
-0.00153387
-9.96834e-10
0.0213758
-0.00155267
-9.0414e-10
0.0211191
-0.00156518
-8.37617e-10
0.0208672
-0.00157265
-7.69735e-10
0.0206214
-0.00157374
-7.02351e-10
0.02038
-0.00156926
-6.29358e-10
0.0201446
-0.00155815
-5.53901e-10
0.0199153
-0.00154027
-4.80955e-10
0.0196935
-0.00151488
-3.95674e-10
0.0194819
-0.00148002
-3.41249e-10
0.0192767
-0.00143846
-2.58594e-10
0.019088
-0.0013896
-1.64768e-10
0.0189197
-0.00132856
-5.43569e-11
0.018778
-0.00125243
7.76423e-11
0.0186674
-0.00116014
2.32681e-10
0.0185982
-0.00104666
4.14093e-10
0.0185641
-0.000907197
6.7326e-10
0.0185438
-0.00073809
6.89275e-10
0.0185765
-0.000569468
7.69755e-10
0.0186682
-0.000371928
1.02365e-09
0.018822
-0.000134962
1.38573e-09
0.019001
0.000155387
1.41392e-09
0.0191975
0.000459608
1.43123e-09
0.0193911
0.000768634
1.36276e-09
0.019569
0.00106225
1.20353e-09
0.0197229
0.0013285
1.08417e-09
0.0198549
0.00156036
9.42864e-10
0.0199705
0.00175521
9.17562e-10
0.0200754
0.00191746
9.20847e-10
0.0201779
0.00204946
9.24999e-10
0.0202766
0.00214986
9.68093e-10
0.0203803
0.00222004
1.04527e-09
0.0204963
0.00225153
1.21354e-09
0.0206309
0.0022433
1.21808e-09
0.020773
0.00220661
1.37131e-09
0.0209597
0.00213088
1.63508e-09
0.0211977
0.00200203
1.87011e-09
0.0214772
0.00183148
2.00468e-09
0.0217917
0.00162494
2.07851e-09
0.0221217
0.00139748
2.06271e-09
0.0224424
0.00116746
1.92792e-09
0.0227367
0.000950684
1.69347e-09
0.0229826
0.000761604
1.39449e-09
0.0231791
0.000603795
1.08792e-09
0.0233219
0.000477781
8.12844e-10
0.0234222
0.000377381
5.94875e-10
0.0234844
0.000297076
4.30331e-10
0.0235204
0.000229725
3.15112e-10
0.0235343
0.000173559
2.1901e-10
0.0235359
0.000123186
1.18282e-10
0.0235231
7.38886e-05
1.06378e-10
0.0235026
2.6767e-05
8.36479e-11
0.0234725
-1.80226e-05
3.83424e-11
0.0234373
-5.93762e-05
-4.85607e-11
0.0233952
-9.88081e-05
-3.81842e-11
0.0233517
-0.000136298
-1.49065e-10
0.0233069
-0.000171212
-1.93086e-10
-0.000205976
-2.09082e-10
0.0168032
0.00134822
-9.45531e-09
0.0174235
0.00181147
-7.88615e-09
0.0178291
0.00221045
-4.81585e-09
0.0181591
0.00252416
-3.63951e-09
0.0185025
0.00271753
-3.22402e-09
0.0188889
0.00277909
-2.6202e-09
0.0193072
0.00273008
-2.07792e-09
0.0197483
0.00261261
-1.46376e-09
0.020193
0.00245831
-9.81112e-10
0.0206255
0.00228756
-6.91959e-10
0.021043
0.00211279
-6.01903e-10
0.0214441
0.0019398
-6.71128e-10
0.0218309
0.00177074
-8.32158e-10
0.0222005
0.00160528
-1.01207e-09
0.022546
0.00144303
-1.15375e-09
0.0228599
0.0012828
-1.22983e-09
0.0231345
0.00112415
-1.24279e-09
0.0233644
0.000966801
-1.21381e-09
0.0235468
0.000810936
-1.16681e-09
0.0236814
0.000657328
-1.12232e-09
0.0237705
0.000506797
-1.09045e-09
0.0238201
0.000360458
-1.07343e-09
0.0238351
0.000219219
-1.06527e-09
0.0238241
8.34254e-05
-1.06178e-09
0.0237945
-4.59288e-05
-1.06057e-09
0.0237508
-0.000167903
-1.06405e-09
0.0237
-0.000282559
-1.071e-09
0.0236412
-0.000389886
-1.07711e-09
0.0235758
-0.000490046
-1.08926e-09
0.0235011
-0.000583805
-1.10955e-09
0.023414
-0.000671376
-1.13555e-09
0.0233123
-0.000753322
-1.17384e-09
0.0231933
-0.00082963
-1.20773e-09
0.023055
-0.00090071
-1.23658e-09
0.022898
-0.000966251
-1.26336e-09
0.022723
-0.00102651
-1.27775e-09
0.0225319
-0.00108126
-1.27778e-09
0.0223291
-0.00113059
-1.26528e-09
0.0221172
-0.00117451
-1.23542e-09
0.0218992
-0.00121305
-1.19478e-09
0.0216794
-0.00124629
-1.13997e-09
0.0214578
-0.00127444
-1.0757e-09
0.0212374
-0.00129738
-1.01451e-09
0.0210163
-0.00131557
-9.37745e-10
0.0207943
-0.00132877
-8.66765e-10
0.020572
-0.0013371
-7.9969e-10
0.0203472
-0.00134058
-7.27653e-10
0.0201222
-0.00133888
-6.60272e-10
0.0198953
-0.00133221
-5.92677e-10
0.0196707
-0.00131972
-5.29471e-10
0.0194471
-0.0013017
-4.59122e-10
0.0192329
-0.00127654
-3.9059e-10
0.0190241
-0.00124395
-3.3704e-10
0.018829
-0.0012068
-2.60388e-10
0.0186514
-0.00116038
-1.75645e-10
0.018493
-0.00110364
-7.66167e-11
0.0183653
-0.00103366
4.88587e-11
0.018266
-0.00094914
2.05739e-10
0.0182071
-0.000844361
3.82933e-10
0.0181859
-0.000715624
6.62952e-10
0.0181766
-0.000554434
6.98536e-10
0.0182112
-0.00039619
8.06183e-10
0.0182964
-0.000212439
9.58211e-10
0.0184417
1.08362e-05
1.25037e-09
0.0186196
0.000276187
1.49575e-09
0.0188144
0.000566148
1.6308e-09
0.0190059
0.000862332
1.57481e-09
0.0191822
0.00114463
1.46188e-09
0.0193369
0.00139715
1.33167e-09
0.019472
0.00161255
1.23454e-09
0.0195931
0.00178663
1.22502e-09
0.0197093
0.00192102
1.26117e-09
0.0198272
0.0020174
1.28225e-09
0.0199571
0.00207163
1.39386e-09
0.02011
0.00207687
1.42613e-09
0.0202674
0.00205497
1.5518e-09
0.0204549
0.0019814
1.73961e-09
0.020682
0.00185483
1.94148e-09
0.0209434
0.00168454
2.10827e-09
0.0212317
0.00148256
2.1786e-09
0.0215266
0.00126542
2.12721e-09
0.0218146
0.00105016
1.97208e-09
0.0220706
0.000853781
1.72268e-09
0.0222833
0.000685342
1.43307e-09
0.0224489
0.00054834
1.14655e-09
0.0225684
0.00044014
8.95183e-10
0.0226474
0.000355251
6.93285e-10
0.0226974
0.000287116
5.39788e-10
0.0227248
0.00022999
4.25151e-10
0.0227328
0.000181276
3.34109e-10
0.0227303
0.000137143
2.31444e-10
0.0227237
9.50451e-05
1.62111e-10
0.0227097
5.47512e-05
1.25373e-10
0.0226865
1.58205e-05
1.06777e-10
0.022659
-2.06996e-05
5.67258e-11
0.0226362
-5.70263e-05
-2.83983e-11
0.0226121
-8.99154e-05
-7.14981e-11
0.0225884
-0.00012233
-9.79825e-11
0.0225626
-0.000150916
-1.78116e-10
-0.000179906
-2.25115e-10
0.0174384
0.0011067
-1.12208e-08
0.0177292
0.00162424
-9.41776e-09
0.0179818
0.0019838
-5.05734e-09
0.0182491
0.00226803
-2.90487e-09
0.018566
0.00243764
-2.08366e-09
0.0189359
0.00247305
-1.50784e-09
0.0193356
0.00239827
-1.01813e-09
0.0197426
0.0022552
-5.03476e-10
0.0201413
0.00208217
-1.0343e-10
0.0205269
0.00190426
1.40923e-10
0.0208979
0.00173352
2.03221e-10
0.0212549
0.00157363
9.97245e-11
0.0215958
0.00142502
-1.01638e-10
0.0219189
0.00128541
-3.57304e-10
0.0222225
0.00115276
-5.94643e-10
0.0224991
0.00102444
-7.73936e-10
0.0227408
0.00089857
-8.80758e-10
0.0229385
0.000774256
-9.31444e-10
0.0230883
0.000651084
-9.50797e-10
0.0231905
0.000529506
-9.60246e-10
0.0232518
0.000410115
-9.72098e-10
0.0232814
0.000293919
-9.87313e-10
0.0232884
0.0001816
-9.99607e-10
0.0232819
7.36872e-05
-1.00531e-09
0.023267
-2.95032e-05
-1.00603e-09
0.0232468
-0.000127692
-9.98554e-10
0.0232211
-0.000220603
-9.94633e-10
0.0231865
-0.000308205
-9.95529e-10
0.02314
-0.000390587
-1.00777e-09
0.023078
-0.000468231
-1.03197e-09
0.022998
-0.000541331
-1.071e-09
0.0228991
-0.000610216
-1.11636e-09
0.0227814
-0.000674869
-1.16718e-09
0.0226473
-0.000735301
-1.21633e-09
0.0224985
-0.000791565
-1.25123e-09
0.0223383
-0.000843301
-1.27709e-09
0.0221685
-0.000890697
-1.288e-09
0.0219918
-0.000933305
-1.28294e-09
0.0218096
-0.000971452
-1.25857e-09
0.0216223
-0.00100483
-1.21888e-09
0.0214306
-0.00103367
-1.16767e-09
0.0212333
-0.00105799
-1.10358e-09
0.0210298
-0.00107803
-1.03461e-09
0.02082
-0.00109361
-9.61975e-10
0.0206028
-0.00110539
-8.86812e-10
0.0203797
-0.00111271
-8.18837e-10
0.0201502
-0.0011165
-7.50844e-10
0.0199175
-0.00111577
-6.90374e-10
0.0196829
-0.00111148
-6.2595e-10
0.0194499
-0.00110258
-5.67208e-10
0.0192218
-0.00108944
-5.10707e-10
0.0190016
-0.00107123
-4.50944e-10
0.0187942
-0.00104738
-3.90882e-10
0.0185978
-0.00101789
-3.3596e-10
0.0184198
-0.000983211
-2.70664e-10
0.0182589
-0.000940014
-1.88699e-10
0.0181218
-0.000888111
-9.05026e-11
0.018008
-0.000824242
3.46835e-11
0.017923
-0.000746055
1.90831e-10
0.0178726
-0.000649946
3.71371e-10
0.0178568
-0.000530332
6.86981e-10
0.0178525
-0.000380886
7.28381e-10
0.0178818
-0.000233807
8.13295e-10
0.0179605
-6.4476e-05
9.50298e-10
0.0180935
0.000134803
1.26492e-09
0.0182562
0.000383857
1.65214e-09
0.0184411
0.000651952
1.79471e-09
0.0186295
0.000927006
1.77518e-09
0.0188076
0.00118856
1.69685e-09
0.0189704
0.00141928
1.61738e-09
0.0191171
0.00160764
1.52691e-09
0.0192561
0.00174864
1.54687e-09
0.0193977
0.00184085
1.58711e-09
0.01955
0.00187853
1.73766e-09
0.0197199
0.00186565
1.78705e-09
0.0199144
0.00181048
2.01954e-09
0.0201444
0.00169665
2.14274e-09
0.0204038
0.00153708
2.24075e-09
0.0206785
0.00134551
2.27746e-09
0.0209577
0.00113982
2.21753e-09
0.0212203
0.00093948
2.04167e-09
0.0214499
0.000759862
1.79597e-09
0.0216394
0.000609156
1.51779e-09
0.0217835
0.00048901
1.25086e-09
0.0218856
0.000395873
1.02202e-09
0.0219561
0.000323762
8.33909e-10
0.0219999
0.000266495
6.86238e-10
0.0220223
0.000219033
5.64043e-10
0.0220337
0.0001775
4.7081e-10
0.0220371
0.000140057
3.65513e-10
0.0220342
0.000105695
2.40969e-10
0.0220261
7.15258e-05
2.25139e-10
0.0220194
3.83112e-05
1.9504e-10
0.0220146
6.28674e-06
1.42246e-10
0.0220079
-2.37202e-05
4.78878e-11
0.0220029
-5.33755e-05
-3.17262e-11
0.0219985
-8.1134e-05
-7.1345e-11
0.0219984
-0.000107658
-1.29132e-10
0.0219991
-0.000131189
-1.87243e-10
-0.000154718
-2.01215e-10
0.0166484
0.000629718
-1.41814e-08
0.0172544
0.00113903
-1.06675e-08
0.0176936
0.00157152
-4.63857e-09
0.0181094
0.00187105
-1.73859e-09
0.0185566
0.00203438
-7.18371e-10
0.0190197
0.0020649
-2.50633e-10
0.0194738
0.00198913
1.18081e-11
0.0199048
0.00184966
3.5549e-10
0.0203141
0.00168556
6.28764e-10
0.0207027
0.001523
7.81179e-10
0.0210653
0.00137291
8.12381e-10
0.0214011
0.00123756
7.0381e-10
0.0217121
0.00111531
4.60895e-10
0.021997
0.00100346
1.67975e-10
0.0222531
0.000899028
-1.26179e-10
0.0224727
0.000799228
-3.76362e-10
0.0226532
0.00070192
-5.58952e-10
0.0227923
0.000606006
-6.84586e-10
0.0228919
0.000511266
-7.71702e-10
0.022958
0.000417827
-8.37394e-10
0.0229981
0.000326271
-8.91204e-10
0.0230218
0.000237126
-9.33492e-10
0.0230362
0.000150961
-9.59267e-10
0.023045
6.80235e-05
-9.6757e-10
0.0230497
-1.21877e-05
-9.56817e-10
0.0230463
-8.78277e-05
-9.37847e-10
0.0230334
-0.000161311
-9.21097e-10
0.0230062
-0.000231105
-9.12461e-10
0.0229622
-0.000297659
-9.21733e-10
0.0228992
-0.000360806
-9.52313e-10
0.022817
-0.000420957
-9.981e-10
0.0227173
-0.000477668
-1.05814e-09
0.0226012
-0.000531441
-1.1225e-09
0.0224726
-0.000581435
-1.18571e-09
0.0223324
-0.000628362
-1.23969e-09
0.0221843
-0.000671107
-1.28103e-09
0.0220287
-0.000710618
-1.29655e-09
0.0218666
-0.000745658
-1.29724e-09
0.0216985
-0.000777277
-1.27741e-09
0.0215233
-0.000804394
-1.23757e-09
0.0213407
-0.00082813
-1.18212e-09
0.0211508
-0.000847493
-1.11944e-09
0.0209517
-0.000863774
-1.04363e-09
0.0207443
-0.000875952
-9.70982e-10
0.0205268
-0.000885386
-8.95325e-10
0.0203014
-0.000891032
-8.2652e-10
0.0200689
-0.000894131
-7.61652e-10
0.019832
-0.000893692
-7.01954e-10
0.0195941
-0.000890643
-6.4801e-10
0.0193572
-0.000884113
-5.95775e-10
0.0191261
-0.00087453
-5.47406e-10
0.0189033
-0.000861265
-4.97854e-10
0.0186918
-0.000843947
-4.44986e-10
0.0184943
-0.000821926
-3.96385e-10
0.0183106
-0.000796013
-3.37575e-10
0.0181451
-0.000764219
-2.63578e-10
0.0179967
-0.000725697
-1.79939e-10
0.0178685
-0.00067896
-8.26902e-11
0.0177609
-0.000621939
4.16605e-11
0.0176792
-0.000551806
1.97023e-10
0.0176251
-0.000465844
3.99422e-10
0.0176036
-0.000355502
7.02845e-10
0.0175939
-0.000223436
7.43861e-10
0.017617
-9.01321e-05
8.40709e-10
0.0176834
5.99969e-05
1.03354e-09
0.0178105
0.000237406
1.39572e-09
0.0179695
0.000462941
1.73114e-09
0.0181576
0.000704203
1.91358e-09
0.0183562
0.000951076
1.94971e-09
0.0185546
0.00118079
1.94248e-09
0.0187451
0.00137708
1.92281e-09
0.0189288
0.00152421
1.92717e-09
0.0191139
0.00161376
1.99703e-09
0.0193114
0.00163859
1.99748e-09
0.0195189
0.00160965
2.17765e-09
0.0197573
0.00151858
2.32125e-09
0.020018
0.00137879
2.41014e-09
0.0202903
0.00120495
2.41474e-09
0.0205598
0.00101661
2.32307e-09
0.0208072
0.000833089
2.13564e-09
0.0210202
0.000669369
1.88396e-09
0.0211934
0.000533798
1.61943e-09
0.0213226
0.000427302
1.36922e-09
0.021415
0.000346111
1.15605e-09
0.0214783
0.000284514
9.83237e-10
0.0215164
0.00023656
8.38705e-10
0.0215369
0.000197442
7.16801e-10
0.0215481
0.000163707
6.09892e-10
0.0215514
0.000133455
5.15211e-10
0.0215468
0.000104672
4.02799e-10
0.0215443
7.81387e-05
2.68428e-10
0.0215442
5.14693e-05
2.54427e-10
0.0215446
2.50841e-05
2.17426e-10
0.0215441
-8.64765e-07
1.47316e-10
0.0215464
-2.47651e-05
3.49749e-11
0.0215543
-4.80281e-05
-8.36548e-13
0.0215633
-7.06341e-05
-5.08994e-11
0.021577
-9.16255e-05
-1.15771e-10
0.0215917
-0.000110156
-1.89335e-10
-0.000128343
-1.97165e-10
0.0171843
0.000452691
-1.22538e-08
0.0173963
0.00100669
-9.26858e-09
0.0177045
0.00131917
-3.48453e-09
0.0180988
0.0015304
-5.97964e-10
0.0185563
0.00163989
2.35988e-10
0.0190272
0.00164113
4.21984e-10
0.0194785
0.00155526
7.84952e-10
0.0199044
0.00142228
9.79504e-10
0.0203077
0.00127709
1.12506e-09
0.0206933
0.00114033
1.21602e-09
0.0210577
0.00101877
1.21516e-09
0.0213922
0.000913032
1.09528e-09
0.0216904
0.000819606
8.7449e-10
0.0219546
0.000735574
5.68207e-10
0.0221862
0.000657742
2.43413e-10
0.0223817
0.000583986
-5.13788e-11
0.0225352
0.000512728
-2.97266e-10
0.0226466
0.000442787
-4.83397e-10
0.0227213
0.000374023
-6.27684e-10
0.0227716
0.000306332
-7.42612e-10
0.0228082
0.000240209
-8.33487e-10
0.0228403
0.000175794
-8.99196e-10
0.0228718
0.000113485
-9.3517e-10
0.0229014
5.33881e-05
-9.44787e-10
0.022924
-3.2053e-06
-9.03393e-10
0.022939
-6.08545e-05
-8.88961e-10
0.0229391
-0.000114395
-8.64738e-10
0.0229211
-0.000166206
-8.50883e-10
0.0228835
-0.000216464
-8.58653e-10
0.0228272
-0.000264477
-8.89973e-10
0.0227516
-0.000310769
-9.41764e-10
0.0226605
-0.000354409
-1.01269e-09
0.022554
-0.000396136
-1.08867e-09
0.0224359
-0.000434722
-1.16578e-09
0.0223071
-0.000471074
-1.23143e-09
0.0221696
-0.000503959
-1.28023e-09
0.0220245
-0.000534244
-1.31064e-09
0.0218713
-0.000561034
-1.31205e-09
0.0217104
-0.000584905
-1.29558e-09
0.0215395
-0.000605479
-1.25541e-09
0.0213579
-0.000622914
-1.20238e-09
0.0211644
-0.000637475
-1.13434e-09
0.0209576
-0.00064887
-1.06067e-09
0.0207388
-0.000657955
-9.84127e-10
0.0205086
-0.000664079
-9.10456e-10
0.0202693
-0.000668367
-8.40332e-10
0.0200246
-0.000669886
-7.7913e-10
0.0197767
-0.000669987
-7.18613e-10
0.0195311
-0.000667179
-6.70764e-10
0.01929
-0.000663176
-6.19308e-10
0.0190583
-0.000655911
-5.78131e-10
0.0188368
-0.000647087
-5.31588e-10
0.0186287
-0.000634604
-4.87447e-10
0.0184349
-0.000619371
-4.42279e-10
0.0182542
-0.000600558
-3.8682e-10
0.0180869
-0.000578003
-3.28447e-10
0.0179343
-0.000550638
-2.51884e-10
0.0177956
-0.000517788
-1.64119e-10
0.0176741
-0.000477925
-6.26406e-11
0.0175711
-0.000429469
7.59045e-11
0.0174897
-0.000369268
2.18991e-10
0.0174387
-0.000296119
4.47902e-10
0.0174106
-0.000195783
7.56948e-10
0.0174071
-9.12861e-05
8.05522e-10
0.0174365
2.21014e-05
9.22936e-10
0.0175103
0.000149292
1.14334e-09
0.0176442
0.000302904
1.56249e-09
0.0178166
0.000496777
1.86919e-09
0.0180239
0.000702234
2.07855e-09
0.0182493
0.000908747
2.20243e-09
0.0184851
0.0010932
2.28245e-09
0.0187242
0.00123606
2.32748e-09
0.0189674
0.00131983
2.39585e-09
0.0192198
0.00133526
2.47615e-09
0.0194882
0.00128748
2.57275e-09
0.0197684
0.00118197
2.62961e-09
0.0200513
0.00103764
2.60542e-09
0.0203222
0.000875435
2.47388e-09
0.0205682
0.000715214
2.26239e-09
0.0207753
0.000571955
1.99822e-09
0.020939
0.000453171
1.73025e-09
0.0210628
0.000360214
1.49165e-09
0.0211492
0.000290024
1.28772e-09
0.0212071
0.000237487
1.12135e-09
0.0212448
0.000197536
9.84183e-10
0.0212667
0.000165901
8.62158e-10
0.0212744
0.000139466
7.51142e-10
0.0212772
0.000115989
6.47628e-10
0.0212756
9.47029e-05
5.55159e-10
0.0212663
7.37655e-05
4.26832e-10
0.021259
5.41734e-05
2.96646e-10
0.0212546
3.44723e-05
2.79077e-10
0.0212512
1.48304e-05
2.37397e-10
0.0212459
-4.41074e-06
1.63511e-10
0.0212437
-2.31216e-05
3.6376e-11
0.0212456
-4.05683e-05
6.41994e-13
0.0212479
-5.75653e-05
-6.39165e-11
0.0212536
-7.3006e-05
-1.22258e-10
0.0212603
-8.76189e-05
-1.94044e-10
-9.91083e-05
-1.928e-10
0.0169063
0.000365843
-1.07817e-08
0.0170314
0.000907908
-7.68387e-09
0.0173869
0.00109172
-3.12091e-09
0.0178473
0.00118152
-1.91157e-10
0.0183421
0.00121659
6.81264e-10
0.0188291
0.00117895
8.90043e-10
0.0192879
0.00108506
1.05392e-09
0.0197181
0.00096698
1.25166e-09
0.0201284
0.000850185
1.39189e-09
0.0205234
0.000746848
1.45944e-09
0.0208995
0.000659164
1.44028e-09
0.0212469
0.000585188
1.32412e-09
0.0215535
0.000521371
1.09635e-09
0.0218214
0.000464256
7.96447e-10
0.0220523
0.000411675
4.52309e-10
0.0222474
0.000362166
1.28553e-10
0.0224015
0.00031449
-1.51438e-10
0.0225153
0.000268098
-3.77782e-10
0.022595
0.000222831
-5.64301e-10
0.0226542
0.000178649
-7.11228e-10
0.0227036
0.00013583
-8.23459e-10
0.0227517
9.44445e-05
-9.00769e-10
0.0228001
5.47524e-05
-9.37844e-10
0.0228451
1.64802e-05
-9.32259e-10
0.0228833
-1.94566e-05
-9.30625e-10
0.0229049
-5.41095e-05
-8.72352e-10
0.0229094
-8.79219e-05
-8.29147e-10
0.0228959
-0.000120408
-8.07087e-10
0.0228635
-0.00015178
-8.09875e-10
0.0228153
-0.000182096
-8.42034e-10
0.0227507
-0.000211308
-8.9807e-10
0.0226726
-0.000239292
-9.75534e-10
0.0225804
-0.00026592
-1.0602e-09
0.0224753
-0.000290963
-1.14547e-09
0.0223588
-0.000314371
-1.22156e-09
0.0222302
-0.000335858
-1.27668e-09
0.0220923
-0.00035544
-1.31467e-09
0.0219424
-0.000372969
-1.31962e-09
0.021783
-0.000388412
-1.30761e-09
0.0216094
-0.000401845
-1.26504e-09
0.0214236
-0.000413139
-1.21233e-09
0.0212216
-0.000422601
-1.14023e-09
0.0210054
-0.000430002
-1.06681e-09
0.0207749
-0.000435965
-9.87426e-10
0.0205332
-0.000439851
-9.15137e-10
0.0202825
-0.000442831
-8.43884e-10
0.020029
-0.000443666
-7.85339e-10
0.0197739
-0.000443868
-7.27457e-10
0.0195241
-0.000442003
-6.81527e-10
0.0192807
-0.000439391
-6.36668e-10
0.0190472
-0.000434748
-5.95401e-10
0.0188259
-0.000428924
-5.56296e-10
0.0186161
-0.000421012
-5.12032e-10
0.0184206
-0.000410939
-4.69414e-10
0.0182367
-0.000398879
-4.17869e-10
0.0180667
-0.000384228
-3.61217e-10
0.0179071
-0.000366747
-3.03545e-10
0.0177585
-0.00034569
-2.23427e-10
0.0176234
-0.000320561
-1.34447e-10
0.0175017
-0.000289873
-1.54102e-11
0.0173988
-0.00025263
1.11532e-10
0.0173179
-0.000206119
2.97793e-10
0.0172725
-0.000147923
5.03829e-10
0.0172414
-6.91906e-05
8.70532e-10
0.0172459
6.84321e-06
9.14094e-10
0.0172909
9.0428e-05
1.02488e-09
0.0173884
0.000186756
1.2552e-09
0.0175449
0.000308814
1.70885e-09
0.0177507
0.000455018
2.07623e-09
0.0180003
0.000611226
2.38221e-09
0.0182806
0.000758655
2.59363e-09
0.0185842
0.000875717
2.7612e-09
0.0188999
0.000943842
2.85187e-09
0.0192216
0.000951299
2.93336e-09
0.0195463
0.000900931
2.93463e-09
0.019862
0.000805958
2.85107e-09
0.0201564
0.000686221
2.67654e-09
0.0204147
0.000562079
2.42244e-09
0.0206295
0.000448546
2.1388e-09
0.0207986
0.000353405
1.86063e-09
0.0209237
0.000278639
1.61717e-09
0.021013
0.000222102
1.41773e-09
0.0210726
0.000180012
1.25267e-09
0.0211083
0.000148497
1.11487e-09
0.0211283
0.000124221
9.95061e-10
0.0211371
0.000104629
8.82072e-10
0.021133
8.80249e-05
7.77371e-10
0.0211269
7.30541e-05
6.69694e-10
0.0211173
5.94259e-05
5.86536e-10
0.0211029
4.59119e-05
4.19479e-10
0.0210904
3.27622e-05
3.75774e-10
0.0210824
1.97307e-05
2.90727e-10
0.0210764
6.60745e-06
2.21374e-10
0.0210688
-6.40728e-06
1.5992e-10
0.0210627
-1.89077e-05
4.6207e-11
0.0210602
-3.06641e-05
-5.4678e-12
0.0210577
-4.19525e-05
-8.68887e-11
0.0210563
-5.24181e-05
-1.20356e-10
0.0210536
-6.18725e-05
-1.92363e-10
-6.90079e-05
-1.94947e-10
0.0162891
0.00015458
-1.28479e-08
0.0167278
0.000472531
-8.45717e-09
0.0173162
0.000591912
-2.67944e-09
0.0179561
0.000635238
3.69683e-10
0.0185824
0.000642482
1.09879e-09
0.0191628
0.000610763
1.09292e-09
0.0196873
0.000550928
1.20409e-09
0.0201625
0.000482615
1.40627e-09
0.0206015
0.00041939
1.54204e-09
0.0210092
0.000365613
1.59621e-09
0.0213822
0.000321247
1.55942e-09
0.0217105
0.000284156
1.4511e-09
0.0219855
0.000252248
1.23733e-09
0.0222076
0.000223635
9.45031e-10
0.0223868
0.000197125
5.94273e-10
0.0225313
0.000172052
2.62115e-10
0.0226353
0.000147952
-5.16136e-11
0.0226983
0.000124579
-2.98847e-10
0.0227299
0.00010197
-5.18355e-10
0.0227492
8.00841e-05
-6.92467e-10
0.0227717
5.90405e-05
-8.2347e-10
0.022805
3.88256e-05
-9.08912e-10
0.0228471
1.96524e-05
-9.45931e-10
0.0228884
1.96585e-06
-9.38074e-10
0.0229216
-1.5769e-05
-8.9314e-10
0.0229381
-3.20292e-05
-8.40538e-10
0.0229338
-4.7693e-05
-7.9573e-10
0.0229093
-6.29307e-05
-7.71498e-10
0.0228662
-7.77344e-05
-7.75016e-10
0.0228075
-9.21465e-05
-8.11037e-10
0.0227348
-0.000106143
-8.73051e-10
0.0226505
-0.000119657
-9.57662e-10
0.0225542
-0.000132652
-1.04968e-09
0.0224472
-0.000144916
-1.14288e-09
0.0223302
-0.000156533
-1.22595e-09
0.0222021
-0.000167148
-1.28708e-09
0.0220655
-0.00017697
-1.3295e-09
0.021917
-0.000185661
-1.33731e-09
0.0217584
-0.000193411
-1.32622e-09
0.0215857
-0.000200075
-1.28361e-09
0.0214004
-0.000205712
-1.22985e-09
0.0211987
-0.000210406
-1.15551e-09
0.0209848
-0.000214096
-1.08238e-09
0.0207555
-0.000217047
-9.99676e-10
0.0205177
-0.000219018
-9.27777e-10
0.0202713
-0.000220471
-8.55964e-10
0.0200219
-0.000220954
-7.94874e-10
0.0197728
-0.000220977
-7.40635e-10
0.0195271
-0.000220153
-6.9085e-10
0.0192884
-0.000218657
-6.50248e-10
0.0190567
-0.000216487
-6.05962e-10
0.0188361
-0.000213363
-5.72305e-10
0.0186231
-0.000209497
-5.27671e-10
0.0184218
-0.000204478
-4.88436e-10
0.018229
-0.000198388
-4.40612e-10
0.0180466
-0.000191181
-3.90601e-10
0.0178737
-0.000182421
-3.27781e-10
0.0177143
-0.000172283
-2.58025e-10
0.0175635
-0.000159857
-1.72819e-10
0.0174302
-0.00014525
-7.19334e-11
0.0173111
-0.000127179
4.36298e-11
0.0172124
-0.000104854
2.18028e-10
0.0171436
-7.77402e-05
3.6471e-10
0.0170995
-3.81979e-05
8.14833e-10
0.0170945
4.75451e-09
8.64178e-10
0.017129
4.21011e-05
9.65688e-10
0.017209
8.9385e-05
1.17038e-09
0.0173461
0.000147667
1.56643e-09
0.0175412
0.00022415
2.01119e-09
0.0177973
0.000307678
2.45002e-09
0.0181119
0.000389894
2.81962e-09
0.0184714
0.000456779
3.08805e-09
0.018858
0.000495275
3.25182e-09
0.0192488
0.000497307
3.29128e-09
0.0196232
0.000464427
3.18552e-09
0.0199646
0.000407103
2.96064e-09
0.0202589
0.00033895
2.65616e-09
0.0205009
0.000272199
2.32798e-09
0.0206904
0.000214155
2.02229e-09
0.0208309
0.000167564
1.76179e-09
0.0209317
0.000131994
1.55169e-09
0.0209999
0.000105472
1.38269e-09
0.0210413
8.57489e-05
1.24057e-09
0.0210638
7.08493e-05
1.11737e-09
0.0210722
5.92215e-05
1.00479e-09
0.0210684
4.97104e-05
8.94027e-10
0.0210574
4.16011e-05
7.94072e-10
0.0210466
3.42468e-05
6.80774e-10
0.0210294
2.74147e-05
6.00357e-10
0.0210133
2.11821e-05
4.31319e-10
0.0210015
1.42552e-05
4.11741e-10
0.020996
7.52633e-06
3.26384e-10
0.0209904
1.07325e-06
2.19147e-10
0.0209856
-5.54252e-06
1.23556e-10
0.0209833
-1.15936e-05
2.73585e-11
0.0209846
-1.77194e-05
1.87569e-11
0.0209866
-2.33039e-05
-1.04329e-10
0.020989
-2.85187e-05
-1.238e-10
0.0209894
-3.30443e-05
-1.97094e-10
-3.59446e-05
-2.00208e-10
0.0161632
-1.21749e-08
0.0166327
-8.0146e-09
0.0173457
-2.63945e-09
0.0180622
5.91009e-10
0.0187224
1.42085e-09
0.019322
1.32235e-09
0.0198625
1.34495e-09
0.0203512
1.50293e-09
0.0207964
1.65009e-09
0.0212021
1.68979e-09
0.0215651
1.64274e-09
0.021878
1.5209e-09
0.0221342
1.29973e-09
0.0223339
1.00595e-09
0.0224853
6.49662e-10
0.0225988
3.10198e-10
0.0226771
-2.18806e-11
0.0227143
-2.79491e-10
0.0227165
-5.08924e-10
0.0227093
-6.97528e-10
0.0227154
-8.36035e-10
0.0227448
-9.2264e-10
0.0227913
-9.53719e-10
0.022842
-9.3327e-10
0.0228829
-8.89386e-10
0.0229046
-8.29766e-10
0.022903
-7.78233e-10
0.0228787
-7.51837e-10
0.0228339
-7.55508e-10
0.022773
-7.93607e-10
0.0226975
-8.57541e-10
0.0226113
-9.45852e-10
0.0225134
-1.04044e-09
0.0224066
-1.138e-09
0.0222907
-1.22381e-09
0.0221647
-1.28784e-09
0.0220307
-1.33267e-09
0.0218845
-1.34153e-09
0.0217281
-1.33152e-09
0.0215568
-1.28919e-09
0.0213725
-1.2349e-09
0.0211718
-1.16032e-09
0.0209586
-1.08682e-09
0.0207309
-1.00336e-09
0.0204951
-9.31428e-10
0.0202515
-8.60111e-10
0.0200047
-7.97278e-10
0.0197594
-7.46208e-10
0.0195156
-6.93891e-10
0.0192793
-6.55918e-10
0.0190491
-6.12106e-10
0.0188282
-5.77646e-10
0.0186157
-5.36038e-10
0.0184125
-4.96162e-10
0.0182188
-4.50509e-10
0.0180334
-3.98647e-10
0.0178582
-3.40702e-10
0.0176929
-2.7334e-10
0.0175377
-1.90339e-10
0.017398
-9.60715e-11
0.0172718
1.67661e-11
0.0171669
1.77835e-10
0.0170873
3.12103e-10
0.0170352
7.66907e-10
0.0170243
8.09707e-10
0.0170536
9.05009e-10
0.0171276
1.09179e-09
0.0172556
1.41316e-09
0.0174453
2.03692e-09
0.0177089
2.48815e-09
0.0180461
2.9469e-09
0.0184431
3.31674e-09
0.0188747
3.52388e-09
0.0193073
3.52726e-09
0.0197106
3.33262e-09
0.0200629
3.00371e-09
0.0203543
2.62327e-09
0.020585
2.2644e-09
0.0207591
1.95794e-09
0.0208862
1.71506e-09
0.0209755
1.52463e-09
0.0210329
1.3699e-09
0.0210663
1.23735e-09
0.0210817
1.11921e-09
0.0210816
1.00919e-09
0.0210703
8.968e-10
0.0210542
8.02144e-10
0.0210359
6.83265e-10
0.0210124
6.01405e-10
0.0209918
4.51692e-10
0.0209803
4.03585e-10
0.020974
2.99901e-10
0.0209649
2.26258e-10
0.0209595
1.79073e-10
0.0209573
5.20709e-11
0.0209597
-1.83386e-11
0.020963
-1.32918e-10
0.0209658
-1.19538e-10
0.0209661
-2.05564e-10
-2.02295e-10
0.00744883
0.00884719
0.00282544
0.00462039
-0.00143328
0.00425566
-0.00331462
0.00188149
-0.00459112
0.00127534
-0.00525866
0.000665094
-0.00549332
0.000232078
-0.00580086
0.000305735
-0.00614872
0.000345607
-0.00644565
0.000294315
-0.00666625
0.000217411
-0.00683383
0.000165968
-0.00695134
0.000117955
-0.00705078
9.42877e-05
-0.00716323
0.000103562
-0.00724859
7.49448e-05
-0.00727818
1.88966e-05
-0.00725919
-3.38429e-05
-0.00718482
-9.18639e-05
-0.00704832
-0.000155397
-0.00685044
-0.000216983
-0.00660163
-0.000266197
-0.00631626
-0.000301046
-0.00599807
-0.000330848
-0.00566228
-0.000345695
-0.00531359
-0.00035536
-0.0049541
-0.000362705
-0.00458589
-0.000369821
-0.00420624
-0.000379635
-0.00381406
-0.000389646
-0.0034115
-0.000399255
-0.00299033
-0.000417386
-0.00255668
-0.000429129
-0.00211836
-0.000433426
-0.00167876
-0.000435349
-0.00123783
-0.000437295
-0.000793337
-0.00044061
-0.000346624
-0.000443143
0.000118266
-0.000462612
0.000575299
-0.000456259
0.00101296
-0.000438316
0.00143268
-0.000421204
0.00184192
-0.000411066
0.00223618
-0.00039716
0.00261482
-0.000382794
0.00298017
-0.000370345
0.00333972
-0.00036499
0.00369323
-0.000360389
0.00403442
-0.000348374
0.00436129
-0.000334607
0.00467509
-0.00032197
0.00497555
-0.000309573
0.00526424
-0.000297483
0.00554003
-0.000285578
0.00580434
-0.00027336
0.00605764
-0.000261824
0.00629986
-0.000249884
0.00653202
-0.000238622
0.00675363
-0.000227181
0.00696584
-0.000216291
0.00716868
-0.000205427
0.00736177
-0.000195069
0.00754594
-0.000184721
0.00772134
-0.000174973
0.00788834
-0.000165242
0.00804679
-0.000156098
0.00819794
-0.000146986
0.00834095
-0.000138486
0.00847694
-0.000129955
0.00860584
-0.000122055
0.00872729
-0.000114077
0.00884267
-0.000106665
0.00895043
-9.92214e-05
0.00905236
-9.22261e-05
0.00914733
-8.52902e-05
0.00923615
-7.8723e-05
0.00931879
-7.22903e-05
0.00939538
-6.6199e-05
0.00946624
-6.02826e-05
0.00953158
-5.46659e-05
0.00959152
-4.92364e-05
0.00964642
-4.4041e-05
0.00969647
-3.90491e-05
0.0097417
-3.42787e-05
0.00978276
-2.96959e-05
0.00981909
-2.52868e-05
0.00985184
-2.11239e-05
0.00988011
-1.70601e-05
0.00990481
-1.30184e-05
0.00992576
-9.41352e-06
0.00994313
-5.90399e-06
0.00995733
-2.26991e-06
0.00996742
1.14282e-06
0.00997537
4.22985e-06
0.009979
7.55873e-06
0.00997971
1.13579e-05
0.00997528
1.57155e-05
0.00996582
2.117e-05
0.00994888
2.81584e-05
3.70096e-05
0.0114613
0.0132525
0.00790222
0.0081777
0.00602877
0.00612455
0.00354521
0.00436304
0.00179942
0.00301934
0.000234937
0.0022253
-0.00125326
0.001721
-0.00231664
0.00137309
-0.00301431
0.001046
-0.00347853
0.000759608
-0.00376747
0.000505732
-0.00400468
0.000403206
-0.0042289
0.000341788
-0.00438549
0.00024705
-0.00448615
0.000196832
-0.00454306
0.000123078
-0.00453366
-9.9502e-07
-0.00445989
-0.000122124
-0.00432258
-0.000247362
-0.00411075
-0.000388151
-0.00383987
-0.000510283
-0.00352653
-0.000600865
-0.00318769
-0.000658055
-0.00282482
-0.000710927
-0.00245664
-0.000729356
-0.00208026
-0.000743516
-0.00169783
-0.000754781
-0.00130557
-0.000770315
-0.000901371
-0.000788363
-0.000485738
-0.000807306
-5.23531e-05
-0.000832656
0.000375504
-0.000845924
0.000800111
-0.000853815
0.00122322
-0.000855828
0.00164859
-0.000859479
0.00207115
-0.000859426
0.00249037
-0.000858551
0.00290607
-0.000857276
0.00330144
-0.000857034
0.00369096
-0.000846124
0.00407891
-0.000826737
0.0044638
-0.000806563
0.00483802
-0.000785632
0.00520372
-0.000763626
0.00555665
-0.000737649
0.00589685
-0.000713224
0.00622345
-0.000693757
0.00654235
-0.000682265
0.00684987
-0.000659591
0.00714645
-0.000635185
0.00742922
-0.000609336
0.00770016
-0.000584988
0.00795711
-0.000560031
0.00820282
-0.000536228
0.00843651
-0.000512046
0.00865855
-0.000488726
0.00886969
-0.000465232
0.00907
-0.000442658
0.0092597
-0.000420026
0.00943977
-0.000398327
0.00961008
-0.000376749
0.00977116
-0.000356068
0.00992359
-0.000335628
0.010067
-0.000316119
0.010202
-0.000296914
0.0103288
-0.00027864
0.0104471
-0.000260721
0.0105584
-0.00024365
0.010661
-0.000227014
0.0107576
-0.000211037
0.0108462
-0.000195561
0.0109289
-0.000180599
0.0110044
-0.000166167
0.0110739
-0.000152165
0.0111367
-0.000138731
0.0111937
-0.000125723
0.0112444
-0.000113324
0.0112898
-0.000101391
0.0113293
-9.00534e-05
0.0113639
-7.91694e-05
0.0113933
-6.88086e-05
0.0114177
-5.88432e-05
0.0114377
-4.93382e-05
0.011453
-4.03174e-05
0.0114646
-3.15427e-05
0.0114719
-2.3369e-05
0.0114759
-1.55441e-05
0.0114759
-8.06506e-06
0.0114725
-3.79113e-07
0.0114664
5.27143e-06
0.0114577
1.13252e-05
0.0114467
1.73584e-05
0.0114325
2.33987e-05
0.0114162
2.93835e-05
0.0113963
3.56817e-05
0.011374
4.24879e-05
0.0113479
5.03672e-05
0.011318
5.98078e-05
0.0112827
7.18938e-05
8.74853e-05
0.0153005
0.0151541
0.0127771
0.0106989
0.0105844
0.00831506
0.00847722
0.00646587
0.00649907
0.00499255
0.00481707
0.00389953
0.00341013
0.00312488
0.00226792
0.00251749
0.00130553
0.00201149
0.00045154
0.00161533
-0.000348379
0.00130707
-0.000994245
0.00104991
-0.00146073
0.000806197
-0.00178178
0.000564646
-0.00192218
0.000329985
-0.00192626
0.00012038
-0.00181588
-0.000121998
-0.00166095
-0.000291768
-0.00145162
-0.000476015
-0.00115194
-0.000710659
-0.000802394
-0.000886266
-0.000419017
-0.00101046
-9.01063e-06
-0.00108969
0.000373557
-0.00111865
0.000762974
-0.00113878
0.00115577
-0.00115305
0.00155598
-0.0011695
0.00196501
-0.00119135
0.00237894
-0.00121307
0.00279937
-0.0012371
0.00321697
-0.00126006
0.00363845
-0.00127711
0.00406302
-0.00128708
0.00449085
-0.00129272
0.00491538
-0.00129313
0.00533747
-0.00129126
0.005753
-0.00128408
0.00616068
-0.00127476
0.0065535
-0.00126071
0.00693706
-0.00124103
0.00731153
-0.00121392
0.00767676
-0.00118369
0.00802875
-0.00115096
0.00836859
-0.001116
0.00869559
-0.00107822
0.00900824
-0.00103845
0.00930312
-0.00100221
0.00958093
-0.000973735
0.0098496
-0.000942412
0.0101063
-0.000906046
0.0103511
-0.000867778
0.0105814
-0.000828807
0.0107996
-0.000790932
0.0110045
-0.000753467
0.0111975
-0.000717032
0.0113784
-0.000681092
0.0115488
-0.000645975
0.011708
-0.00061142
0.0118581
-0.00057768
0.0119976
-0.000544721
0.0121285
-0.000512553
0.0122496
-0.000481346
0.0123622
-0.000450935
0.0124663
-0.000421581
0.0125619
-0.000393062
0.0126503
-0.000365602
0.0127308
-0.000339001
0.0128047
-0.000313426
0.0128714
-0.000288639
0.0129316
-0.000264833
0.0129853
-0.000241781
0.0130325
-0.000219607
0.0130739
-0.000198139
0.0131089
-0.000177571
0.0131387
-0.000157636
0.0131625
-0.000138683
0.0131816
-0.000120413
0.0131954
-0.000103166
0.0132049
-8.6577e-05
0.0132094
-7.0918e-05
0.0132101
-5.5866e-05
0.0132059
-4.1529e-05
0.0131986
-2.80146e-05
0.0131872
-1.52638e-05
0.0131733
-2.83994e-06
0.0131565
7.61792e-06
0.0131384
1.76252e-05
0.0131175
2.7332e-05
0.0130953
3.67813e-05
0.0130699
4.55907e-05
0.0130418
5.40529e-05
0.0130119
6.23643e-05
0.0129791
7.05115e-05
0.0129448
7.86754e-05
0.0129073
8.69573e-05
0.0128683
9.57878e-05
0.0128263
0.000105611
0.012782
0.000117206
0.0127348
0.00013155
0.000150189
0.0174121
0.015907
0.0157119
0.0123961
0.0140602
0.00996455
0.012336
0.00818488
0.0106331
0.00669004
0.00898381
0.00554069
0.00745946
0.00464137
0.00609832
0.00387122
0.00493189
0.00317641
0.00396193
0.00258609
0.00314173
0.00212809
0.00246331
0.00172912
0.00191267
0.00135508
0.00148611
0.000986008
0.00118472
0.000623106
0.00103527
0.000260074
0.00105066
-0.000150499
0.00122876
-0.000489106
0.00151039
-0.000783679
0.00187174
-0.00110033
0.00228189
-0.00132816
0.00270223
-0.00146379
0.00312227
-0.00154138
0.00354709
-0.00157412
0.00397332
-0.00159191
0.00440474
-0.00160769
0.00484433
-0.00162925
0.00528825
-0.00165347
0.00573791
-0.00167888
0.00618838
-0.00170228
0.00663823
-0.00172305
0.00708494
-0.00173678
0.00752981
-0.00174331
0.00796814
-0.00174249
0.00840004
-0.00173519
0.00882123
-0.00172299
0.00922968
-0.00170402
0.0096235
-0.00168063
0.0100009
-0.00165076
0.0103632
-0.00161606
0.0107105
-0.00157447
0.0110426
-0.00152967
0.0113576
-0.00148117
0.0116583
-0.00143152
0.0119436
-0.00137881
0.0122128
-0.00132376
0.0124619
-0.00126826
0.0126881
-0.00121845
0.0129029
-0.00117688
0.0131058
-0.00112862
0.0132948
-0.00107681
0.0134714
-0.00102489
0.0136349
-0.00097315
0.0137862
-0.000922967
0.0139259
-0.000873584
0.0140542
-0.000825831
0.0141723
-0.000778873
0.0142799
-0.000733542
0.0143782
-0.000688919
0.0144674
-0.000645929
0.014548
-0.000603713
0.0146208
-0.000563141
0.0146854
-0.000523483
0.014743
-0.000485417
0.014793
-0.000448411
0.0148364
-0.000412887
0.0148728
-0.000378497
0.0149026
-0.000345432
0.0149262
-0.000313505
0.0149433
-0.000282726
0.0149547
-0.000253025
0.01496
-0.000224375
0.0149599
-0.000196818
0.0149545
-0.000170212
0.0149438
-0.000144823
0.0149287
-0.000120429
0.0149089
-9.73594e-05
0.0148851
-7.52885e-05
0.0148573
-5.43948e-05
0.0148259
-3.44876e-05
0.0147912
-1.58486e-05
0.0147533
1.94333e-06
0.0147144
1.70117e-05
0.0146734
3.19027e-05
0.0146309
4.61109e-05
0.0145859
5.95741e-05
0.0145383
7.2242e-05
0.0144891
8.44271e-05
0.0144371
9.6054e-05
0.0143844
0.000107149
0.0143288
0.000117676
0.014273
0.000127756
0.0142146
0.000137592
0.014156
0.00014716
0.0140952
0.000156849
0.0140341
0.000166717
0.0139712
0.000177558
0.0139078
0.000189799
0.0138432
0.0002047
0.000223844
0.0185718
0.016194
0.0175387
0.0134283
0.0163154
0.0111858
0.0150292
0.00946691
0.0136827
0.00803067
0.0123341
0.00688218
0.0110116
0.00595347
0.00973433
0.00513996
0.00849665
0.0044042
0.00735076
0.0037247
0.00636463
0.00311011
0.00554753
0.00254133
0.00489843
0.00199883
0.00441637
0.00145822
0.0041091
0.000916693
0.00397379
0.000377943
0.00395247
-0.000153382
0.00412754
-0.000692742
0.00448157
-0.00117392
0.00489605
-0.001556
0.00536246
-0.00183574
0.00584404
-0.00199188
0.00633289
-0.00207549
0.00682162
-0.00210602
0.00730442
-0.00211177
0.00778392
-0.0021202
0.00825769
-0.00213354
0.00872716
-0.00215142
0.00919033
-0.00216884
0.00964767
-0.00218484
0.010094
-0.00219374
0.0105302
-0.0021948
0.0109522
-0.00218542
0.0113611
-0.00216742
0.0117529
-0.0021413
0.0121265
-0.0021084
0.0124808
-0.00206943
0.012815
-0.00202466
0.0131294
-0.00197504
0.0134254
-0.00192046
0.013705
-0.00186184
0.0139684
-0.00179965
0.0142175
-0.00173521
0.0144499
-0.00166949
0.0146661
-0.00160208
0.0148657
-0.00153154
0.0150491
-0.00146027
0.015214
-0.00139282
0.0153618
-0.0013346
0.0154993
-0.00127653
0.015628
-0.00121597
0.0157463
-0.00115445
0.015855
-0.00109245
0.0159534
-0.00103205
0.0160426
-0.000972588
0.0161224
-0.000915279
0.0161935
-0.000858956
0.0162562
-0.000804692
0.0163105
-0.000751428
0.0163573
-0.000700088
0.0163963
-0.000649871
0.0164287
-0.000601464
0.0164539
-0.000554357
0.0164737
-0.00050896
0.0164869
-0.000465001
0.0164954
-0.000422633
0.016498
-0.00038174
0.0164962
-0.000342284
0.016489
-0.00030424
0.0164778
-0.000267499
0.0164614
-0.00023208
0.0164412
-0.00019791
0.0164161
-0.000165033
0.0163873
-0.000133436
0.0163541
-0.000103242
0.0163176
-7.45057e-05
0.0162771
-4.72157e-05
0.0162337
-2.16552e-05
0.0161875
2.37744e-06
0.0161396
2.39777e-05
0.0160905
4.46171e-05
0.0160391
6.40911e-05
0.0159852
8.2539e-05
0.0159278
9.98414e-05
0.0158691
0.000116566
0.0158068
0.00013224
0.0157432
0.000147231
0.0156767
0.000161291
0.0156088
0.00017473
0.0155389
0.000187415
0.0154674
0.000199424
0.015395
0.00021081
0.0153211
0.000221657
0.015247
0.000232126
0.0151719
0.000242353
0.0150971
0.000252629
0.015022
0.000263372
0.0149477
0.000275271
0.0148742
0.000289097
0.000306818
0.0193705
0.0162259
0.0187017
0.0140936
0.0178262
0.0120602
0.0168688
0.0104214
0.0158265
0.00906792
0.0147729
0.00793093
0.0137105
0.00700657
0.0126419
0.00619881
0.0115802
0.00545284
0.0105436
0.00474913
0.00957975
0.00405999
0.00871851
0.00338753
0.00800245
0.00269762
0.00745232
0.0019891
0.00708828
0.001252
0.00692589
0.000507344
0.00696418
-0.000234037
0.00718869
-0.000962618
0.00758199
-0.00161853
0.00807799
-0.00210765
0.00860487
-0.00242063
0.00914486
-0.00258563
0.00967641
-0.00265657
0.0101954
-0.00267499
0.0106958
-0.00265753
0.0111764
-0.00264286
0.0116338
-0.00263116
0.0120672
-0.00262342
0.0124807
-0.00261696
0.0128733
-0.00260789
0.0132467
-0.00259386
0.0136005
-0.00257198
0.0139359
-0.00254123
0.0142524
-0.00250208
0.0145509
-0.00245559
0.0148314
-0.00240316
0.0150945
-0.00234546
0.0153414
-0.00228348
0.0155735
-0.00221801
0.015791
-0.00214808
0.0159948
-0.00207481
0.0161844
-0.0019984
0.0163608
-0.00192048
0.0165244
-0.00184169
0.0166768
-0.00176291
0.0168179
-0.00168077
0.0169483
-0.0015979
0.0170659
-0.00151751
0.0171696
-0.00144447
0.0172631
-0.00137643
0.0173498
-0.00130865
0.0174282
-0.00123979
0.0174993
-0.0011702
0.017562
-0.00110177
0.0176168
-0.00103428
0.0176635
-0.000968917
0.0177024
-0.000904899
0.0177341
-0.000842998
0.0177579
-0.000782522
0.0177754
-0.000723985
0.0177854
-0.000666988
0.0177895
-0.000611798
0.0177868
-0.00055827
0.017779
-0.000506471
0.0177654
-0.000456396
0.0177473
-0.000407971
0.0177242
-0.000361233
0.0176968
-0.000316028
0.0176652
-0.000272407
0.0176294
-0.000230217
0.0175898
-0.000189553
0.0175463
-0.000150315
0.0174996
-0.000112667
0.0174489
-7.63797e-05
0.0173959
-4.23114e-05
0.0173397
-9.96239e-06
0.0172829
1.95466e-05
0.0172239
4.71781e-05
0.0171642
7.34603e-05
0.0171006
9.83639e-05
0.0170358
0.000121816
0.0169673
0.000144166
0.0168975
0.00016512
0.0168241
0.000185087
0.0167496
0.000203713
0.0166723
0.000221607
0.0165935
0.000238132
0.0165128
0.000254049
0.0164303
0.000268629
0.0163469
0.000282733
0.0162615
0.000295555
0.0161761
0.000307946
0.016089
0.000319207
0.0160022
0.000330156
0.0159146
0.000340287
0.0158279
0.000350401
0.0157413
0.000360329
0.0156564
0.000371079
0.0155729
0.000382937
0.00039758
0.0199438
0.0162044
0.0195461
0.0144897
0.0188655
0.0127359
0.0181213
0.0111619
0.0173237
0.00985997
0.0164845
0.00876326
0.0156508
0.00783277
0.0148069
0.00702973
0.0139617
0.00628603
0.0131149
0.00557556
0.0123059
0.00484472
0.0115714
0.00409752
0.0109403
0.00329419
0.010447
0.00245082
0.010124
0.00153773
0.0100186
0.000572764
0.0100955
-0.000356225
0.010339
-0.00124761
0.0107029
-0.00202659
0.0111143
-0.00255824
0.0115261
-0.0028655
0.0120103
-0.00310064
0.0124808
-0.00315539
0.0128692
-0.00310241
0.0133043
-0.00312966
0.0137247
-0.00310033
0.0141193
-0.00306034
0.014485
-0.00301915
0.0148243
-0.00298306
0.0151422
-0.00295009
0.0154411
-0.00291513
0.0157229
-0.00287429
0.0159897
-0.00282656
0.016241
-0.0027716
0.0164791
-0.00271024
0.0167035
-0.00264299
0.0169153
-0.00257125
0.0171161
-0.0024965
0.0173049
-0.00241768
0.0174826
-0.00233548
0.0176496
-0.00225053
0.0178063
-0.00216321
0.0179534
-0.00207459
0.0180904
-0.00198532
0.0182182
-0.00189692
0.0183359
-0.00180489
0.0184446
-0.00171272
0.0185423
-0.0016215
0.018627
-0.00153466
0.0187021
-0.00145771
0.018768
-0.00138053
0.0188255
-0.0013042
0.0188764
-0.00122785
0.0189195
-0.00115235
0.0189553
-0.00107764
0.0189834
-0.00100473
0.0190037
-0.000933404
0.019017
-0.000864116
0.0190229
-0.000796645
0.0190226
-0.000731099
0.0190153
-0.000667458
0.0190023
-0.000605636
0.018983
-0.000545783
0.0189585
-0.000487691
0.0189285
-0.000431568
0.0188939
-0.00037713
0.0188546
-0.000324569
0.0188111
-0.000273594
0.0187634
-0.000224384
0.0187116
-0.000176708
0.0186559
-0.000130821
0.0185964
-8.65419e-05
0.0185336
-4.43411e-05
0.0184672
-3.82501e-06
0.0184005
3.21342e-05
0.0183318
6.71021e-05
0.0182607
0.000100165
0.0181861
0.000131387
0.0181095
0.000160897
0.0180294
0.000188877
0.0179476
0.000215253
0.0178627
0.000240241
0.0177763
0.000263684
0.0176873
0.00028586
0.0175969
0.000306531
0.0175046
0.000326128
0.0174108
0.000344289
0.017316
0.00036149
0.0172194
0.000377318
0.0171225
0.000392259
0.017024
0.00040592
0.0169256
0.000418709
0.0168262
0.000430345
0.0167274
0.000441161
0.0166283
0.00045106
0.0165305
0.000460335
0.0164332
0.000469167
0.0163381
0.000477973
0.0162449
0.0004874
0.000498161
0.0204279
0.0161288
0.0201743
0.0147426
0.0196814
0.0132269
0.0190485
0.0117897
0.0183897
0.0105134
0.0177112
0.00943347
0.0170251
0.0085089
0.016349
0.00769234
0.0156823
0.00693245
0.0150369
0.00619834
0.0144368
0.00541179
0.0138779
0.004614
0.0133635
0.00376785
0.0130024
0.00276857
0.0128542
0.00163183
0.0128424
0.000552438
0.0129742
-0.000526308
0.0131999
-0.00151206
0.0134297
-0.00228297
0.0136309
-0.00276646
0.0138359
-0.00308512
0.0139896
-0.00326788
0.0142767
-0.00346232
0.0147067
-0.00355806
0.0150386
-0.00349343
0.0153856
-0.00348701
0.0157583
-0.00347304
0.0161064
-0.00340459
0.0164315
-0.00334269
0.0167304
-0.00328087
0.0170082
-0.00322175
0.0172675
-0.00316094
0.0175135
-0.00309691
0.0177467
-0.00302796
0.01797
-0.00295333
0.0181829
-0.0028744
0.018386
-0.00279022
0.0185776
-0.00270198
0.0187582
-0.00260971
0.0189273
-0.00251501
0.0190854
-0.00241781
0.0192322
-0.00231871
0.0193682
-0.00221791
0.0194932
-0.00211751
0.0196076
-0.00201734
0.0197139
-0.00191723
0.0198111
-0.00181471
0.0198976
-0.00171273
0.0199726
-0.00161314
0.0200334
-0.00152221
0.0200846
-0.00143511
0.0201275
-0.00135108
0.0201628
-0.00126745
0.0201907
-0.00118514
0.0202106
-0.00110335
0.0202235
-0.00102338
0.0202282
-0.00094485
0.0202261
-0.000868505
0.0202159
-0.000794076
0.0201991
-0.000721807
0.0201747
-0.0006516
0.0201444
-0.000583435
0.0201078
-0.000517367
0.0200662
-0.000453254
0.0200192
-0.000391185
0.0199677
-0.000330977
0.0199114
-0.000272675
0.0198509
-0.000216152
0.019786
-0.000161411
0.0197174
-0.000108479
0.0196452
-5.75435e-05
0.0195701
-9.0551e-06
0.0194938
3.61238e-05
0.0194165
7.91886e-05
0.0193363
0.000119624
0.0192534
0.000157946
0.0191687
0.000194438
0.0190808
0.000228894
0.0189915
0.000261533
0.0188989
0.000292295
0.0188053
0.000321311
0.0187088
0.000348637
0.0186114
0.000374239
0.0185117
0.000398354
0.0184109
0.000420756
0.0183086
0.000441873
0.0182047
0.00046133
0.0180999
0.000479634
0.0179934
0.000496348
0.0178868
0.000511951
0.0177785
0.000526071
0.0176707
0.000539041
0.0175616
0.000550664
0.0174537
0.000561068
0.0173453
0.00057032
0.0172387
0.000578357
0.0171326
0.000585589
0.0170293
0.000591877
0.0169281
0.000598209
0.000604544
0.0208034
0.0160139
0.0206644
0.0148776
0.0203143
0.0135755
0.0198227
0.0122774
0.019252
0.011077
0.0186713
0.0100066
0.0180959
0.00907117
0.0175276
0.00824277
0.0169963
0.00743884
0.0165278
0.00663178
0.0160462
0.00584173
0.0156252
0.0049875
0.0153525
0.00398489
0.0152695
0.00278691
0.0152418
0.00161168
0.0153411
0.000424279
0.0154836
-0.000697308
0.0156025
-0.00165101
0.0156145
-0.00229234
0.0156194
-0.00276422
0.0156529
-0.00311253
0.0157464
-0.00336887
0.0158211
-0.00354679
0.0159957
-0.00374619
0.0163486
-0.00386832
0.0166769
-0.00385081
0.0169876
-0.00382659
0.0173401
-0.00379947
0.0176915
-0.00373352
0.0180161
-0.0036411
0.0183091
-0.0035476
0.0185739
-0.00345606
0.0188164
-0.00336669
0.0190412
-0.00327779
0.0192538
-0.00318698
0.0194537
-0.00309306
0.0196417
-0.00299426
0.0198191
-0.00289203
0.0199837
-0.00278538
0.0201367
-0.00267713
0.0202775
-0.00256601
0.0204049
-0.00245285
0.0205213
-0.00233981
0.0206259
-0.00222738
0.0207203
-0.00211543
0.0208068
-0.00200621
0.0208845
-0.0018938
0.0209524
-0.0017819
0.0210102
-0.0016714
0.0210552
-0.00156784
0.0210888
-0.00146993
0.0211134
-0.0013771
0.0211299
-0.00128586
0.0211397
-0.00119673
0.021142
-0.00110859
0.0211382
-0.00102233
0.0211267
-0.000937555
0.0211094
-0.000854926
0.0210845
-0.000774298
0.0210538
-0.000695934
0.0210157
-0.000619781
0.0209719
-0.000545855
0.0209217
-0.000474149
0.0208662
-0.000404562
0.0208055
-0.000337085
0.0207403
-0.00027158
0.0206705
-0.000208021
0.0205967
-0.00014637
0.0205189
-8.64874e-05
0.020438
-2.91946e-05
0.0203549
2.51788e-05
0.0202702
7.6691e-05
0.0201833
0.000125617
0.0200939
0.000172125
0.0200025
0.000216264
0.0199081
0.00025798
0.0198126
0.000297534
0.0197142
0.00033493
0.0196152
0.000370207
0.0195136
0.000403495
0.0194119
0.000434669
0.019308
0.0004641
0.0192038
0.000491411
0.019098
0.000517232
0.0189914
0.00054093
0.0188837
0.000563339
0.0187748
0.000583672
0.0186653
0.000602834
0.0185544
0.000620006
0.0184436
0.000636012
0.0183314
0.000650142
0.0182197
0.000663015
0.0181072
0.000674118
0.0179959
0.000683805
0.0178844
0.000691812
0.0177749
0.000698234
0.0176665
0.000703117
0.0175612
0.000706327
0.0174589
0.000708602
0.000709569
0.0211032
0.0159263
0.0210298
0.0149468
0.0207834
0.0138173
0.0204092
0.0126457
0.0199568
0.0115225
0.01946
0.0104894
0.0189768
0.0095406
0.0185181
0.00867591
0.0181197
0.00779982
0.0177118
0.00698715
0.0173821
0.00611415
0.0171946
0.00511558
0.0171966
0.00390025
0.0172571
0.00266409
0.0173561
0.00147959
0.0174749
0.000275802
0.0175486
-0.000792665
0.0174866
-0.00159013
0.0173729
-0.00214821
0.0172431
-0.00261033
0.0171519
-0.00300662
0.0171244
-0.00334115
0.0171742
-0.00360821
0.0172219
-0.00380768
0.0173572
-0.00402088
0.0176366
-0.00415717
0.0179479
-0.0041716
0.0182159
-0.00410957
0.0185325
-0.0040929
0.0188673
-0.00401651
0.0191787
-0.00389705
0.0194572
-0.00376916
0.0197045
-0.00364546
0.0199261
-0.00352739
0.0201289
-0.00341351
0.0203154
-0.00330032
0.0204906
-0.00318578
0.0206523
-0.00306882
0.0208033
-0.00294852
0.0209421
-0.00282615
0.0210677
-0.00270126
0.0211829
-0.00257671
0.0212864
-0.00245075
0.0213792
-0.00232616
0.0214628
-0.00220294
0.021538
-0.00208389
0.0216056
-0.00196219
0.0216649
-0.00184155
0.0217153
-0.00172142
0.0217528
-0.00160573
0.0217802
-0.00149885
0.0217964
-0.00139544
0.0218033
-0.00129572
0.0218035
-0.00119921
0.0217968
-0.00110463
0.0217846
-0.00101214
0.0217655
-0.000921464
0.0217403
-0.000832773
0.0217077
-0.000746257
0.0216684
-0.000661877
0.021622
-0.000579945
0.0215695
-0.000500223
0.0215106
-0.000422968
0.0214462
-0.000347846
0.0213763
-0.000275014
0.0213013
-0.000204143
0.0212216
-0.000135362
0.0211375
-6.85046e-05
0.02105
-4.1216e-06
0.0209609
5.64424e-05
0.0208699
0.000114649
0.0207764
0.000170096
0.0206811
0.000222832
0.0205831
0.000273005
0.0204833
0.000320621
0.0203806
0.000365735
0.0202766
0.000408301
0.0201698
0.000448568
0.0200624
0.000486347
0.0199528
0.000522049
0.0198427
0.00055528
0.019731
0.000586683
0.0196189
0.000615634
0.0195057
0.000642985
0.0193918
0.000667918
0.0192774
0.000691406
0.0191618
0.000712555
0.0190462
0.000732315
0.0189293
0.000749857
0.0188129
0.000765956
0.0186954
0.000779957
0.0185787
0.000792349
0.0184615
0.000802716
0.0183457
0.000811187
0.0182301
0.000817609
0.018117
0.000821688
0.0180054
0.000823622
0.0178975
0.000822723
0.0177933
0.000820008
0.000814128
0.0214206
0.0158988
0.0213528
0.0150114
0.0211676
0.0139965
0.0208708
0.012934
0.0205104
0.0118704
0.0201174
0.0108675
0.0197257
0.00990229
0.0194002
0.00896443
0.0190691
0.00806996
0.0188337
0.007161
0.0187221
0.00614984
0.0188229
0.00492379
0.018962
0.0036705
0.019096
0.00248314
0.0192898
0.00124969
0.0193994
0.000145264
0.0193432
-0.00073328
0.0191063
-0.00132351
0.0188637
-0.00187531
0.0186476
-0.00236779
0.018477
-0.00282017
0.0183673
-0.00322597
0.0183282
-0.00357514
0.0183609
-0.00385607
0.0183895
-0.00406599
0.0184732
-0.00425827
0.0186792
-0.00440187
0.01898
-0.00444594
0.0192046
-0.0043556
0.0194815
-0.00433425
0.0197944
-0.00425111
0.0200921
-0.00410653
0.0203667
-0.00395602
0.0206138
-0.00380414
0.0208345
-0.00365779
0.0210327
-0.00351666
0.0212107
-0.00337961
0.0213724
-0.00324379
0.0215194
-0.00310852
0.0216534
-0.00297157
0.0217743
-0.00283415
0.021884
-0.00269542
0.0219857
-0.00255852
0.0220777
-0.00242192
0.0221602
-0.00228707
0.0222323
-0.00215611
0.0222993
-0.00202791
0.0223559
-0.00189742
0.0224016
-0.00176714
0.0224356
-0.0016403
0.022456
-0.00152061
0.022466
-0.00140742
0.0224669
-0.00129903
0.0224606
-0.00119453
0.0224467
-0.00109284
0.0224271
-0.000993899
0.0224003
-0.000897133
0.0223678
-0.000802536
0.0223278
-0.000710143
0.0222816
-0.000619968
0.0222284
-0.00053225
0.0221689
-0.000446884
0.0221033
-0.000364028
0.0220321
-0.000283477
0.0219557
-0.000205238
0.0218743
-0.000129091
0.0217883
-5.52101e-05
0.0216986
1.57987e-05
0.0216063
8.38966e-05
0.0215105
0.000148751
0.0214121
0.000210803
0.0213112
0.000269961
0.0212083
0.000326404
0.0211031
0.000379992
0.0209964
0.000430919
0.0208874
0.000479042
0.0207774
0.000524502
0.0206653
0.000567315
0.0205527
0.000607511
0.0204385
0.000645316
0.020324
0.000680531
0.0202084
0.000713619
0.0200923
0.000744145
0.0199756
0.000772754
0.0198579
0.000798856
0.0197399
0.000823156
0.0196207
0.000845043
0.0195017
0.000865139
0.0193815
0.000882936
0.0192618
0.000898849
0.0191414
0.000912533
0.0190221
0.000924116
0.0189026
0.000933425
0.018785
0.000940237
0.0186683
0.000944533
0.0185544
0.000945688
0.0184429
0.000943857
0.0183359
0.000937897
0.0182339
0.000928707
0.000915029
0.0217419
0.0159244
0.0216564
0.0150908
0.0214999
0.0141456
0.0212661
0.0131561
0.0209795
0.0121382
0.0206808
0.0111425
0.0204032
0.0101374
0.0201559
0.00914612
0.0199655
0.00819167
0.0199205
0.00713096
0.0200998
0.00588655
0.0203203
0.00458021
0.0205439
0.00336957
0.0207894
0.00220694
0.0209187
0.00109117
0.0208799
0.00017298
0.0206176
-0.000444562
0.0203557
-0.00102679
0.0200841
-0.00156891
0.0198396
-0.00209767
0.0196342
-0.00260089
0.0194762
-0.0030646
0.0193701
-0.00347239
0.0193221
-0.00381708
0.0193361
-0.0040919
0.0193564
-0.00429916
0.0193878
-0.0044531
0.01951
-0.00459443
0.0197706
-0.00465092
0.0199627
-0.00455959
0.0201829
-0.00450945
0.0204591
-0.00442339
0.0207491
-0.00428365
0.0210235
-0.00411082
0.0212706
-0.00393192
0.0214868
-0.00375572
0.0216745
-0.00358648
0.0218385
-0.00342435
0.0219828
-0.00326774
0.022112
-0.00311405
0.0222289
-0.00296214
0.0223346
-0.00281118
0.0224315
-0.00266156
0.0225192
-0.00251403
0.0225978
-0.00236851
0.0226656
-0.00222557
0.0227242
-0.00208731
0.0227735
-0.00194797
0.0228138
-0.00180907
0.0228438
-0.00167222
0.0228612
-0.00154013
0.02287
-0.00141813
0.0228687
-0.00129965
0.0228596
-0.00118642
0.0228428
-0.00107711
0.0228194
-0.000971185
0.0227884
-0.000867977
0.0227511
-0.000767263
0.0227062
-0.000668955
0.022655
-0.000572992
0.0225965
-0.000479534
0.0225319
-0.000388502
0.022461
-0.000300028
0.0223846
-0.000213937
0.022303
-0.000130173
0.0222166
-4.88016e-05
0.0221264
2.96068e-05
0.0220327
0.000104771
0.0219358
0.000176901
0.0218351
0.000245883
0.0217316
0.000311827
0.0216249
0.000374716
0.0215162
0.000434652
0.0214048
0.000491576
0.0212924
0.000545529
0.0211776
0.000596571
0.0210625
0.000644605
0.0209454
0.00068993
0.0208283
0.000732233
0.0207099
0.000772119
0.0205915
0.00080899
0.0204724
0.000843721
0.020353
0.000875477
0.0202333
0.000905275
0.0201128
0.000932186
0.0199924
0.000957193
0.0198708
0.000979437
0.0197496
0.00099972
0.0196276
0.00101735
0.0195061
0.00103285
0.0193845
0.00104571
0.0192639
0.00105614
0.0191439
0.00106372
0.0190259
0.00106832
0.0189097
0.00106954
0.0187971
0.00106678
0.0186881
0.00105968
0.0185855
0.00104666
0.0184889
0.00102987
0.0010086
0.0221283
0.0159936
0.0220052
0.0152045
0.0218383
0.0142994
0.0216363
0.0133394
0.0214126
0.0123362
0.0212082
0.0113046
0.0210474
0.0102265
0.02089
0.00922812
0.0208874
0.00810817
0.0211081
0.00680819
0.0214321
0.00543099
0.0217358
0.00418922
0.0219915
0.00307085
0.0222071
0.00195683
0.0222278
0.00104931
0.0219596
0.000455388
0.0216891
-0.000128296
0.0213974
-0.000697377
0.0211238
-0.00126982
0.0208777
-0.00183618
0.020663
-0.00237709
0.0204794
-0.00287784
0.020331
-0.00332413
0.0202217
-0.0037114
0.0201535
-0.00403136
0.0201282
-0.00428757
0.0201414
-0.00448431
0.0201368
-0.00461631
0.0201721
-0.00471329
0.0203674
-0.00478458
0.0205542
-0.00472723
0.0207281
-0.00463163
0.02097
-0.00456105
0.0212461
-0.00442148
0.0215166
-0.00423446
0.0217639
-0.00403232
0.0219827
-0.00383008
0.0221721
-0.00363536
0.0223355
-0.00344923
0.0224767
-0.00327169
0.022601
-0.00310058
0.022714
-0.00293457
0.0228155
-0.00277183
0.0229093
-0.00261188
0.0229922
-0.00245544
0.0230647
-0.00230099
0.0231253
-0.00215036
0.0231801
-0.0020047
0.0232248
-0.00185591
0.0232601
-0.0017092
0.0232839
-0.00156571
0.0232955
-0.00143076
0.0232969
-0.00130243
0.0232897
-0.00117998
0.0232737
-0.00106211
0.0232501
-0.000948073
0.0232184
-0.000837421
0.0231794
-0.000729751
0.0231327
-0.000624948
0.023079
-0.000522747
0.0230178
-0.000423232
0.02295
-0.000326232
0.0228753
-0.000231859
0.0227945
-0.000139858
0.022708
-5.04333e-05
0.0226168
3.59733e-05
0.0225217
0.000119017
0.0224227
0.000198712
0.0223205
0.000275126
0.0222148
0.000348243
0.0221065
0.000418149
0.0219951
0.00048477
0.0218816
0.000548191
0.0217653
0.000608378
0.0216479
0.00066534
0.0215281
0.000719196
0.021408
0.000769793
0.0212863
0.000817489
0.0211646
0.000861915
0.0210423
0.000903695
0.0209198
0.000942246
0.0207973
0.000978374
0.0206742
0.00101137
0.0205513
0.00104206
0.0204275
0.00106976
0.0203038
0.00109515
0.0201793
0.00111767
0.020055
0.00113779
0.0199302
0.00115507
0.0198061
0.00116975
0.0196824
0.00118143
0.0195603
0.00119011
0.0194395
0.00119536
0.0193217
0.00119677
0.0192066
0.00119389
0.0190967
0.00118556
0.018992
0.00117099
0.0188948
0.00114999
0.0188036
0.00112537
0.0010919
0.0224926
0.0160977
0.0223665
0.0153191
0.0222043
0.0144419
0.0220318
0.0134806
0.0218796
0.0124465
0.0217881
0.0113187
0.0216439
0.0102847
0.0216873
0.00909459
0.0219691
0.00771822
0.0223641
0.0062697
0.0227095
0.00498643
0.0229798
0.00386383
0.0232689
0.00274115
0.0233335
0.00186524
0.0230722
0.00131529
0.0228163
0.000756768
0.0225429
0.000186048
0.0222763
-0.000401559
0.0220273
-0.00100185
0.0217951
-0.0015924
0.0215812
-0.00215419
0.0213847
-0.00267406
0.0212085
-0.0031426
0.0210541
-0.0035551
0.0209274
-0.00390819
0.020833
-0.00420191
0.0207691
-0.00443535
0.0207469
-0.00461262
0.0207463
-0.00473732
0.0207463
-0.00480769
0.0208518
-0.00485832
0.021032
-0.0048396
0.0211836
-0.00474046
0.0213843
-0.00465552
0.0216403
-0.00452565
0.0218987
-0.00432579
0.0221471
-0.00411115
0.0223732
-0.00388917
0.0225701
-0.00367052
0.02274
-0.00346127
0.0228863
-0.00326299
0.0230118
-0.00307417
0.0231239
-0.00289363
0.0232226
-0.00271863
0.0233101
-0.0025481
0.023388
-0.00238248
0.023455
-0.00221951
0.0235113
-0.00206232
0.0235598
-0.00190654
0.0235984
-0.00175018
0.0236256
-0.00159557
0.0236391
-0.00144612
0.0236431
-0.00130802
0.0236363
-0.00117458
0.0236198
-0.00104699
0.0235945
-0.000923779
0.0235607
-0.000804766
0.0235192
-0.000689386
0.02347
-0.000577522
0.0234138
-0.000468659
0.0233502
-0.000362827
0.0232798
-0.00025967
0.0232025
-0.000159234
0.023119
-6.13047e-05
0.0230298
3.35343e-05
0.0229361
0.000124878
0.022838
0.000212713
0.0227356
0.00029695
0.0226297
0.000377738
0.0225198
0.000454944
0.0224073
0.000528752
0.0222913
0.000598987
0.0221737
0.000665807
0.0220533
0.000729133
0.0219321
0.000788999
0.0218088
0.000845533
0.0216849
0.000898555
0.0215596
0.000948468
0.0214341
0.000994845
0.021308
0.00103836
0.0211817
0.00107838
0.0210555
0.00111574
0.0209291
0.00114973
0.0208033
0.00118114
0.0206769
0.00120932
0.0205512
0.00123488
0.020425
0.00125734
0.0202995
0.00127697
0.020174
0.00129351
0.0200495
0.00130683
0.0199259
0.00131682
0.0198043
0.00132291
0.0196847
0.00132493
0.0195692
0.00132183
0.0194576
0.00131315
0.0193532
0.00129663
0.0192555
0.00127368
0.0191644
0.0012448
0.0190851
0.00120591
0.00115515
0.022869
0.0162408
0.0227356
0.0154341
0.0226016
0.0145451
0.0224795
0.0135529
0.0224327
0.0124222
0.0222997
0.011364
0.0223734
0.010108
0.0227156
0.00863525
0.0231665
0.0071306
0.0235336
0.00580372
0.0238343
0.00463277
0.024168
0.00349348
0.0242337
0.00265498
0.0239642
0.00214446
0.0237296
0.0015866
0.0234931
0.00102506
0.0232575
0.000443317
0.0230307
-0.00015981
0.0228132
-0.000775022
0.0226023
-0.00137196
0.0223951
-0.00193878
0.0221941
-0.00246343
0.022
-0.00294179
0.0218178
-0.00336758
0.0216516
-0.00374182
0.021507
-0.00406102
0.0213902
-0.0043284
0.0213072
-0.00454234
0.0212583
-0.00470519
0.0212494
-0.00481773
0.0212495
-0.00488221
0.0212893
-0.00490259
0.0214171
-0.00489372
0.0215795
-0.00484549
0.021747
-0.00472445
0.0219727
-0.00458528
0.022228
-0.00439875
0.0224804
-0.00417219
0.0227154
-0.00393339
0.022925
-0.00369477
0.0231038
-0.00346283
0.023257
-0.00324343
0.0233859
-0.00303599
0.0234971
-0.00283929
0.0235932
-0.00265135
0.0236757
-0.00247007
0.0237474
-0.00229528
0.0238066
-0.00212471
0.0238582
-0.00196073
0.0238995
-0.00179405
0.0239313
-0.00162997
0.023952
-0.00146883
0.0239579
-0.0013152
0.0239542
-0.00117164
0.0239392
-0.00103257
0.0239146
-0.00089914
0.0238807
-0.000770933
0.0238386
-0.000647118
0.0237881
-0.00052751
0.0237304
-0.000411453
0.023665
-0.000298867
0.0235926
-0.000189254
0.0235131
-8.25019e-05
0.0234272
2.12476e-05
0.0233357
0.000121347
0.0232389
0.00021772
0.0231377
0.000310401
0.0230322
0.000399239
0.0229231
0.000484421
0.0228107
0.00056572
0.0226954
0.000643385
0.0225772
0.000717167
0.0224569
0.000787312
0.0223338
0.000853647
0.0222096
0.000916325
0.0220828
0.000975357
0.0219558
0.00103068
0.021827
0.00108262
0.0216983
0.0011308
0.0215688
0.00117589
0.0214395
0.0012172
0.0213103
0.00125565
0.0211811
0.00129041
0.0210526
0.00132238
0.0209238
0.00135081
0.020796
0.0013763
0.0206679
0.00139837
0.0205413
0.00141716
0.0204147
0.00143246
0.0202903
0.00144383
0.0201672
0.0014513
0.0200475
0.00145372
0.0199311
0.00145116
0.0198205
0.00144156
0.0197166
0.00142406
0.0196211
0.00139842
0.0195322
0.00136678
0.0194552
0.00132361
0.0193974
0.00126151
0.00119419
0.0232408
0.0164188
0.0231041
0.015533
0.0230359
0.0145644
0.0230188
0.0134891
0.0229183
0.0124347
0.0230472
0.0111294
0.0234734
0.00956145
0.0239258
0.00802369
0.024297
0.00665961
0.0246313
0.00541743
0.0249681
0.00425953
0.0249786
0.00346682
0.0247101
0.00295186
0.0245049
0.00238249
0.0242964
0.00182522
0.0240967
0.00124673
0.0239061
0.000644528
0.0237179
3.33843e-05
0.0235284
-0.000583324
0.0233337
-0.00117432
0.0231343
-0.00173485
0.0229327
-0.00225575
0.022732
-0.00273501
0.022535
-0.00316692
0.022348
-0.00355294
0.0221745
-0.00389015
0.022021
-0.00417997
0.021892
-0.00442269
0.0217919
-0.00461815
0.0217264
-0.00476864
0.0216986
-0.0048729
0.0217079
-0.00493223
0.0217332
-0.00494186
0.0217647
-0.0048991
0.0218877
-0.00487151
0.0220821
-0.00480545
0.0222799
-0.00462669
0.0225102
-0.00443412
0.022758
-0.00421089
0.0229953
-0.00395914
0.0232122
-0.00370222
0.0234004
-0.00345041
0.0235589
-0.00320931
0.0236914
-0.00298231
0.023802
-0.0027694
0.0238966
-0.00256796
0.0239754
-0.00237633
0.0240425
-0.00219231
0.0240957
-0.00201376
0.0241432
-0.00184136
0.0241801
-0.00166721
0.0242057
-0.00149508
0.0242169
-0.00132724
0.0242139
-0.00116883
0.0241991
-0.00101822
0.0241742
-0.000874293
0.0241397
-0.000736272
0.0240971
-0.000603352
0.0240461
-0.000475319
0.023988
-0.00035152
0.023922
-0.000231693
0.0238489
-0.000115167
0.0237686
-2.1679e-06
0.0236819
0.000107147
0.0235895
0.000212538
0.0234913
0.000313876
0.0233888
0.000411372
0.023281
0.000504712
0.0231701
0.000594167
0.0230546
0.000679436
0.0229368
0.000760764
0.0228153
0.00083797
0.0226921
0.000911194
0.0225661
0.000980431
0.0224387
0.00104565
0.0223095
0.00110708
0.0221795
0.00116447
0.0220484
0.0012183
0.0219173
0.00126807
0.0217858
0.00131453
0.0216547
0.00135695
0.0215242
0.00139624
0.0213939
0.00143157
0.0212652
0.00146378
0.0211365
0.00149216
0.0210098
0.0015172
0.0208834
0.00153846
0.0207587
0.00155583
0.020635
0.0015692
0.0205138
0.00157775
0.0203946
0.00158144
0.0202798
0.00157878
0.0201697
0.00156924
0.0200674
0.00155001
0.0199739
0.00152245
0.0198863
0.00148835
0.0198134
0.00143988
0.0197599
0.00137295
0.0197239
0.00128791
0.00120568
0.0237335
0.0166706
0.0235854
0.0156276
0.0234946
0.0145636
0.0234122
0.0134843
0.0236166
0.0121164
0.0241365
0.0104826
0.0246206
0.00894043
0.0250136
0.00753952
0.0254324
0.00621123
0.0257743
0.00504588
0.0257205
0.00430412
0.0254619
0.00376298
0.0252714
0.0031839
0.025072
0.00261487
0.0248884
0.00202924
0.0247229
0.00142393
0.0245635
0.000807035
0.0244054
0.000192926
0.0242351
-0.000411254
0.0240564
-0.000991127
0.023868
-0.00153957
0.0236711
-0.00205167
0.0234702
-0.00252569
0.0232656
-0.00295808
0.0230654
-0.00334914
0.0228691
-0.00369727
0.0226867
-0.00400204
0.0225189
-0.00426538
0.0223742
-0.00448402
0.0222554
-0.00466324
0.0221665
-0.00479666
0.0221131
-0.00489331
0.0221007
-0.00494493
0.0221346
-0.00495154
0.0221481
-0.00490328
0.0221531
-0.00482967
0.022304
-0.00479795
0.0225122
-0.00466716
0.0227307
-0.00445545
0.0229604
-0.00421433
0.0231969
-0.00396437
0.023418
-0.003694
0.0236138
-0.00342343
0.0237805
-0.00316272
0.0239209
-0.00291756
0.0240348
-0.00268756
0.024129
-0.00247168
0.0242037
-0.00226824
0.024264
-0.00207433
0.0243125
-0.00188889
0.0243512
-0.00170562
0.0243808
-0.00152418
0.0243987
-0.00134496
0.0244026
-0.00117118
0.0243951
-0.00100872
0.0243755
-0.000852456
0.0243452
-0.000703328
0.0243054
-0.0005602
0.0242567
-0.000422714
0.0241991
-0.000290255
0.0241329
-0.000162376
0.0240585
-3.8647e-05
0.0239765
8.08232e-05
0.0238877
0.000196017
0.0237922
0.00030689
0.0236913
0.000413391
0.023585
0.000515711
0.0234748
0.000613564
0.0233603
0.000707269
0.0232428
0.000796385
0.0231221
0.000881398
0.0229989
0.000961784
0.0228739
0.00103813
0.0227463
0.00110993
0.0226181
0.0011777
0.0224876
0.00124115
0.0223574
0.00130049
0.0222254
0.00135584
0.0220939
0.00140698
0.0219619
0.00145443
0.0218302
0.00149765
0.0216992
0.00153733
0.0215686
0.00157283
0.0214395
0.00160476
0.0213113
0.00163254
0.0211852
0.00165646
0.0210601
0.00167609
0.020938
0.00169117
0.0208176
0.00170137
0.0207009
0.00170573
0.0205887
0.0017037
0.0204819
0.00169347
0.0203841
0.0016731
0.0202953
0.00164337
0.0202136
0.00160622
0.0201463
0.00155491
0.020104
0.0014784
0.0200713
0.00139344
0.02005
0.00129694
0.00116949
0.0242999
0.0169616
0.0240784
0.0157621
0.0239684
0.0145878
0.024192
0.013136
0.0247292
0.0114298
0.0252275
0.00984031
0.0256472
0.00842093
0.0261451
0.00700996
0.0264881
0.00584599
0.0263698
0.00516304
0.0261352
0.00457864
0.0259598
0.00398072
0.0257792
0.00339976
0.0256191
0.00280105
0.0254781
0.00218619
0.0253459
0.00156328
0.0252107
0.000943787
0.0250659
0.000336799
0.024905
-0.00025112
0.0247306
-0.000815373
0.024544
-0.00134825
0.0243478
-0.00184863
0.0241446
-0.00231322
0.0239362
-0.00274257
0.0237282
-0.00313292
0.0235209
-0.00348719
0.0233227
-0.00380002
0.0231332
-0.00407767
0.0229603
-0.00431236
0.0228048
-0.00451315
0.0226725
-0.00467043
0.0225641
-0.00479313
0.0224834
-0.00487327
0.0224406
-0.00491995
0.0224443
-0.00492142
0.0224821
-0.00488064
0.0224613
-0.00479307
0.0224923
-0.00471635
0.0226617
-0.00464502
0.0228847
-0.00446311
0.0231096
-0.00421466
0.0233424
-0.00395223
0.0235734
-0.00367568
0.0237868
-0.00339326
0.0239724
-0.00311488
0.0241278
-0.00284922
0.0242523
-0.0025999
0.0243523
-0.00236758
0.0244286
-0.00215033
0.0244868
-0.00194586
0.0245347
-0.00175182
0.0245692
-0.00155749
0.0245937
-0.00136833
0.0246074
-0.00118274
0.0246063
-0.00100472
0.0245944
-0.000836166
0.0245695
-0.000674371
0.0245346
-0.000519636
0.0244885
-0.000371314
0.024433
-0.000228892
0.0243673
-9.18093e-05
0.0242926
4.0083e-05
0.0242096
0.000166723
0.0241186
0.000288276
0.024021
0.000405079
0.0239165
0.000517049
0.0238072
0.000624419
0.0236921
0.000727045
0.0235739
0.000824978
0.0234509
0.00091827
0.0233258
0.00100668
0.0231971
0.00109067
0.0230669
0.0011696
0.0229344
0.0012444
0.0228008
0.00131403
0.0226661
0.0013798
0.0225306
0.00144039
0.022395
0.00149733
0.0222589
0.00154917
0.0221233
0.00159745
0.021988
0.00164079
0.021854
0.0016805
0.0217208
0.00171547
0.0215901
0.00174649
0.0214605
0.00177293
0.0213341
0.00179475
0.0212103
0.00181174
0.02109
0.0018231
0.0209742
0.00182842
0.0208635
0.00182643
0.0207602
0.00181549
0.0206662
0.00179345
0.0205821
0.00176161
0.0205068
0.00172104
0.0204462
0.00166461
0.0204107
0.00158452
0.0203748
0.00150314
0.0203556
0.00139747
0.0203825
0.00125305
0.00105379
0.0248281
0.0173413
0.0245662
0.0159332
0.0247702
0.0142599
0.0253312
0.0124049
0.0258629
0.0107555
0.026304
0.00930707
0.0268768
0.00781997
0.0271989
0.00667003
0.0270073
0.00604626
0.0267948
0.00541229
0.0266159
0.00479609
0.0264417
0.00418781
0.026297
0.00356976
0.0261755
0.00293856
0.0260695
0.00230606
0.0259597
0.00167921
0.0258412
0.00106644
0.0257053
0.000473168
0.0255534
-9.60216e-05
0.0253847
-0.000642651
0.0252041
-0.00115906
0.0250106
-0.00164566
0.0248096
-0.00210021
0.0245994
-0.00252293
0.0243862
-0.00291102
0.0241688
-0.00326586
0.0239542
-0.00358403
0.0237432
-0.00386864
0.0235414
-0.00411524
0.023353
-0.00432948
0.0231803
-0.00450535
0.0230324
-0.00465051
0.0229108
-0.00475925
0.0228195
-0.00483459
0.022762
-0.00487281
0.022743
-0.00487488
0.022769
-0.00483092
0.0227837
-0.00474765
0.0227715
-0.00465069
0.0228652
-0.00457676
0.0230556
-0.0044263
0.0232833
-0.00420381
0.0235167
-0.00393391
0.0237626
-0.0036589
0.0239949
-0.00336257
0.0242016
-0.00306461
0.024376
-0.00277825
0.0245156
-0.00250763
0.0246226
-0.00225612
0.0247016
-0.0020224
0.0247576
-0.00180529
0.0248055
-0.00160175
0.0248377
-0.00139663
0.0248577
-0.00119893
0.0248639
-0.00100628
0.0248577
-0.000824104
0.0248387
-0.000648892
0.0248082
-0.000481835
0.0247654
-0.000321703
0.024712
-0.000167972
0.024647
-2.06047e-05
0.0245727
0.000120312
0.0244883
0.000255022
0.0243952
0.00038373
0.0242941
0.000506987
0.0241854
0.000624774
0.0240713
0.000737533
0.0239507
0.000845022
0.0238271
0.000947538
0.0236978
0.0010449
0.0235671
0.00113715
0.0234319
0.00122445
0.023296
0.00130642
0.0231572
0.00138379
0.0230179
0.00145563
0.0228772
0.00152326
0.0227362
0.00158522
0.0225948
0.00164336
0.0224532
0.00169573
0.0223126
0.00174449
0.0221715
0.00178753
0.0220333
0.00182681
0.0218951
0.00186062
0.0217609
0.00189003
0.0216282
0.0019141
0.0215001
0.0019328
0.0213759
0.00194552
0.021257
0.00195136
0.0211449
0.00194933
0.021041
0.00193733
0.0209492
0.00191284
0.020867
0.00187871
0.0207952
0.00183526
0.0207439
0.00177081
0.0207046
0.00169384
0.020671
0.00160706
0.0206718
0.00148981
0.0207277
0.00132497
0.0208324
0.00112159
0.000850085
0.025388
0.0175555
0.0256079
0.0155779
0.0261449
0.0135151
0.0266736
0.0117302
0.0271243
0.0102021
0.0277356
0.00863739
0.0279938
0.00754324
0.0277129
0.00696177
0.0275224
0.00628611
0.0273343
0.00564341
0.0271529
0.00500616
0.0269989
0.00435682
0.0268787
0.00370203
0.0267747
0.00304952
0.0266769
0.00240817
0.0265732
0.00178552
0.026458
0.00118461
0.0263264
0.000608228
0.0261775
5.78028e-05
0.026012
-0.00047017
0.0258322
-0.00097046
0.0256415
-0.00144342
0.0254406
-0.00188765
0.025232
-0.00230235
0.0250168
-0.00268653
0.0247976
-0.00303908
0.0245773
-0.0033602
0.0243591
-0.00364831
0.0241474
-0.00390516
0.0239457
-0.00412864
0.0237586
-0.00432209
0.0235896
-0.00448235
0.0234365
-0.00461227
0.023307
-0.004709
0.0232026
-0.00477603
0.0231258
-0.00480749
0.0230896
-0.00480761
0.023092
-0.00476619
0.0231058
-0.00468088
0.0231017
-0.00459069
0.0231279
-0.00447188
0.0232738
-0.00436838
0.0234958
-0.00417689
0.023727
-0.00391106
0.0239663
-0.00361924
0.0242077
-0.0033209
0.02443
-0.00300956
0.0246188
-0.00270205
0.0247702
-0.00240871
0.0248854
-0.00213578
0.0249681
-0.00188348
0.0250249
-0.0016511
0.0250707
-0.00143547
0.0250981
-0.00121845
0.0251117
-0.00101163
0.0251099
-0.000812561
0.0250978
-0.000626803
0.0250716
-0.000446035
0.0250327
-0.000273695
0.0249818
-0.000108388
0.0249195
4.97918e-05
0.0248466
0.000200545
0.0247628
0.000344099
0.0246698
0.000480813
0.0245673
0.000611167
0.0244581
0.00073535
0.0243415
0.000853844
0.0242201
0.000966473
0.0240926
0.00107384
0.0239613
0.0011753
0.0238255
0.00127174
0.0236863
0.00136207
0.0235449
0.00144757
0.0234003
0.00152693
0.0232558
0.00160149
0.0231086
0.00167027
0.0229628
0.00173402
0.0228154
0.00179257
0.0226694
0.00184578
0.0225235
0.00189416
0.0223784
0.0019371
0.0222356
0.001975
0.022094
0.00200749
0.0219559
0.00203424
0.0218217
0.00205514
0.0216921
0.00206923
0.021569
0.00207584
0.0214537
0.00207369
0.0213491
0.00206017
0.0212571
0.00203333
0.0211784
0.00199537
0.0211087
0.00194888
0.0210633
0.00187896
0.0210192
0.00180512
0.020992
0.0017098
0.0210076
0.00157734
0.0210844
0.00139138
0.0212246
0.00115213
0.0214202
0.000885269
0.000584938
0.0268061
0.0172057
0.0271932
0.0149919
0.0276323
0.0129157
0.0281301
0.0111439
0.0287836
0.00947967
0.028905
0.00848169
0.0285843
0.00789689
0.0283926
0.00719713
0.0281795
0.0065343
0.0279785
0.0058623
0.0278122
0.00518003
0.0276752
0.0044927
0.0275625
0.00381116
0.0274601
0.00314798
0.0273583
0.00250743
0.0272492
0.00189422
0.0271275
0.00130736
0.0269911
0.000747362
0.0268402
0.000213294
0.0266755
-0.000297159
0.0264991
-0.000783214
0.026313
-0.00124329
0.0261157
-0.00167712
0.0259107
-0.00208375
0.0256966
-0.0024628
0.0254784
-0.00281227
0.0252559
-0.00313354
0.0250345
-0.0034233
0.0248155
-0.00368552
0.0246038
-0.00391537
0.0244005
-0.00411883
0.0242085
-0.0042896
0.0240306
-0.00443518
0.0238697
-0.00454805
0.0237258
-0.00463658
0.0236056
-0.00469154
0.0235102
-0.00472092
0.0234482
-0.00471519
0.0234304
-0.00467662
0.0234225
-0.00459574
0.0234426
-0.00450454
0.0234373
-0.00437974
0.0235086
-0.00426453
0.0236785
-0.00409745
0.0239064
-0.00386534
0.0241415
-0.00357338
0.0243824
-0.00326647
0.0246132
-0.00294433
0.024816
-0.0026187
0.0249827
-0.00230341
0.0251073
-0.00200607
0.0251946
-0.00173214
0.0252501
-0.0014816
0.0252956
-0.00125329
0.0253197
-0.00102468
0.0253274
-0.000807484
0.0253167
-0.000601746
0.0252968
-0.000411892
0.0252631
-0.000226463
0.0252164
-4.99778e-05
0.0251588
0.000118292
0.0250896
0.00027883
0.0250101
0.000431718
0.0249197
0.000577215
0.0248199
0.000715348
0.0247117
0.00084664
0.0245959
0.000971112
0.0244742
0.00108941
0.0243457
0.00120146
0.0242129
0.00130753
0.0240743
0.0014077
0.0239327
0.0015017
0.0237872
0.00159007
0.0236394
0.00167211
0.0234905
0.0017487
0.0233398
0.0018191
0.0231897
0.00188406
0.0230396
0.00194309
0.02289
0.00199668
0.0227429
0.00204429
0.0225964
0.00208663
0.0224536
0.00212235
0.0223133
0.00215278
0.0221771
0.00217551
0.0220466
0.00219199
0.0219214
0.00219901
0.0218059
0.00219727
0.0217009
0.0021818
0.0216106
0.00215228
0.021533
0.0021116
0.0214697
0.00205793
0.0214199
0.00198975
0.0213767
0.00191335
0.0213657
0.00180519
0.0214061
0.00165261
0.0215185
0.00143918
0.0216766
0.00119463
0.0218723
0.000909748
0.0221132
0.000593501
0.000279333
0.0280871
0.0164647
0.0287458
0.0142064
0.0294195
0.0121718
0.0300922
0.0103954
0.0300008
0.00952427
0.0296298
0.00887605
0.0293933
0.00817037
0.02913
0.00748525
0.0288987
0.00677983
0.0287064
0.00605609
0.0285567
0.00532628
0.0284338
0.00460893
0.0283252
0.00391316
0.0282206
0.00324791
0.0281119
0.00261341
0.0279946
0.00201134
0.0278648
0.00143839
0.0277223
0.000893414
0.0275672
0.000374077
0.0274005
-0.000120668
0.0272233
-0.000594423
0.0270369
-0.00104295
0.0268394
-0.00146712
0.026634
-0.00186567
0.0264187
-0.0022382
0.0261985
-0.00258349
0.025972
-0.00290176
0.0257451
-0.00319166
0.0255181
-0.00345492
0.0252956
-0.00368922
0.0250779
-0.00389781
0.0248698
-0.00407765
0.0246702
-0.00423227
0.0244829
-0.00435958
0.0243094
-0.00446147
0.0241509
-0.00453699
0.0240137
-0.00458588
0.023898
-0.00460756
0.0238156
-0.00460032
0.0237709
-0.0045613
0.0237432
-0.00448621
0.0237392
-0.00438465
0.0237374
-0.00427798
0.0237593
-0.00413408
0.0238621
-0.00398476
0.0240501
-0.00377807
0.0242657
-0.00350381
0.0244881
-0.00318706
0.0247179
-0.00286482
0.024927
-0.00252428
0.0251031
-0.00218704
0.0252415
-0.00186679
0.0253402
-0.00157038
0.025401
-0.00129976
0.0254491
-0.00105604
0.0254761
-0.000817517
0.0254791
-0.000588376
0.0254587
-0.000375263
0.025428
-0.000181173
0.0253835
6.89045e-06
0.0253285
0.000184345
0.0252625
0.000353897
0.0251864
0.00051569
0.0250994
0.00066998
0.0250033
0.00081637
0.0248986
0.000955166
0.0247861
0.0010863
0.0246671
0.00121056
0.0245411
0.00132774
0.0244105
0.00143849
0.0242742
0.00154251
0.0241342
0.00164022
0.0239904
0.00173136
0.0238436
0.00181631
0.0236948
0.00189468
0.0235444
0.00196706
0.0233931
0.00203281
0.0232426
0.00209265
0.0230919
0.00214591
0.022944
0.00219293
0.0227975
0.00223338
0.0226553
0.0022668
0.0225171
0.00229308
0.0223853
0.00231088
0.0222609
0.0023197
0.0221459
0.00231733
0.022045
0.00230092
0.0219608
0.00226653
0.0218869
0.00222581
0.0218341
0.0021636
0.0217814
0.00210237
0.0217459
0.00201518
0.0217555
0.00189112
0.021832
0.00171004
0.0219712
0.00148408
0.0221526
0.00122091
0.0223791
0.000921442
0.0226306
0.000607193
0.0228849
0.000287865
-4.71105e-06
0.0294125
0.0153422
0.030441
0.0131093
0.0312591
0.0112975
0.0310622
0.0105686
0.0307734
0.00984869
0.0305471
0.00914909
0.0302888
0.00846538
0.030043
0.00774447
0.0298272
0.00698998
0.0296399
0.00622583
0.0294731
0.00546871
0.0293246
0.00473531
0.0291885
0.00403331
0.0290591
0.00336851
0.0289271
0.00274095
0.028791
0.00214754
0.0286478
0.00158563
0.0284985
0.00105166
0.028341
0.000544136
0.0281741
6.20822e-05
0.0279974
-0.000401031
0.0278093
-0.000839866
0.0276107
-0.00125442
0.0274013
-0.00164539
0.0271835
-0.00201047
0.026959
-0.00235102
0.0267293
-0.00266511
0.0264984
-0.00295374
0.0262668
-0.00321627
0.0260366
-0.00345261
0.025811
-0.00366408
0.0255875
-0.00384935
0.0253722
-0.00401102
0.0251613
-0.00414673
0.0249597
-0.00425911
0.0247682
-0.00434626
0.0245903
-0.00441019
0.0244295
-0.00444946
0.0242897
-0.00446352
0.0241747
-0.00445167
0.024092
-0.00440968
0.0240373
-0.00433639
0.0239832
-0.00423195
0.0239651
-0.00412472
0.0239517
-0.00398472
0.0239791
-0.00381951
0.0240958
-0.00363474
0.0242862
-0.00339312
0.0244922
-0.00308582
0.0247048
-0.00275127
0.0249189
-0.00240952
0.0251085
-0.00205917
0.0252618
-0.00171812
0.0253708
-0.00139961
0.0254352
-0.0011085
0.0254794
-0.000846822
0.0255067
-0.000600328
0.0255056
-0.000359122
0.0254771
-0.000138007
0.0254387
6.06095e-05
0.0253894
0.000246981
0.0253294
0.000425511
0.0252595
0.000594904
0.0251805
0.000756652
0.0250929
0.000910507
0.0249964
0.0010565
0.0248924
0.00119465
0.0247799
0.0013251
0.0246612
0.00144778
0.024536
0.00156318
0.0244063
0.0016711
0.024272
0.00177227
0.024135
0.00186616
0.0239948
0.00195365
0.0238531
0.00203387
0.0237097
0.00210788
0.0235655
0.00217453
0.0234213
0.00223488
0.0232775
0.00228769
0.0231359
0.0023337
0.0229972
0.00237163
0.0228628
0.00240174
0.0227342
0.0024223
0.022614
0.00243283
0.0225036
0.00243071
0.0224093
0.00241264
0.0223333
0.00237519
0.0222692
0.00233031
0.0222182
0.00227066
0.0221675
0.00220959
0.0221536
0.00210986
0.0221955
0.00195971
0.022311
0.00175509
0.0224716
0.00151409
0.0226808
0.00123411
0.0229308
0.000925259
0.0231975
0.000607499
0.0234557
0.000304002
0.0236791
2.2982e-05
-0.000208984
0.0305898
0.0137261
0.0316547
0.0119978
0.0316227
0.0113315
0.031546
0.01067
0.0314041
0.0100298
0.0312109
0.00937469
0.0310255
0.00866433
0.0308614
0.0079018
0.0307158
0.00711866
0.0305834
0.00633768
0.0304585
0.0055792
0.030332
0.0048525
0.0301966
0.00416304
0.0300526
0.00350981
0.0299021
0.00289229
0.0297456
0.00230748
0.0295867
0.00175315
0.0294213
0.00122687
0.0292518
0.000726845
0.0290717
0.000252747
0.02888
-0.0001989
0.0286782
-0.000629756
0.0284674
-0.00103589
0.028249
-0.00141824
0.0280232
-0.00177673
0.0277937
-0.00211146
0.0275579
-0.00242156
0.0273204
-0.00270697
0.0270777
-0.00296735
0.0268347
-0.00320196
0.0265884
-0.00341278
0.0263424
-0.00359787
0.0260969
-0.00376081
0.0258535
-0.003899
0.0256148
-0.00401638
0.0253821
-0.00410991
0.0251591
-0.00418346
0.0249451
-0.00423304
0.0247458
-0.00426239
0.024562
-0.00426704
0.0244009
-0.00424961
0.0242675
-0.0042053
0.0241661
-0.00413263
0.0240695
-0.00402987
0.0240074
-0.00392536
0.0239807
-0.0037993
0.0239667
-0.00362761
0.0240024
-0.00343625
0.0241293
-0.003221
0.0243104
-0.00294695
0.0245074
-0.00261831
0.0247111
-0.00227327
0.0249046
-0.00191677
0.0250682
-0.00156258
0.0251896
-0.00122499
0.0252656
-0.000913766
0.025311
-0.000632085
0.0253442
-0.000378541
0.0253491
-0.000129213
0.0253236
0.000100357
0.0252808
0.000304984
0.0252307
0.000489565
0.0251683
0.000668587
0.0250977
0.000836431
0.0250194
0.000995879
0.0249335
0.00114792
0.0248392
0.00129251
0.024737
0.00142905
0.0246277
0.00155742
0.0245122
0.00167754
0.0243919
0.00178974
0.0242677
0.00189419
0.0241405
0.00199112
0.0240116
0.00208063
0.0238812
0.00216283
0.0237507
0.00223766
0.0236201
0.00230514
0.0234906
0.00236493
0.0233624
0.00241686
0.0232368
0.00246028
0.0231154
0.00249458
0.0229996
0.00251877
0.0228924
0.00253105
0.0227961
0.00252965
0.0227174
0.00250883
0.0226564
0.00247091
0.0226092
0.00242018
0.022557
0.00237472
0.0225209
0.00229771
0.0225408
0.00217866
0.0226298
0.00200357
0.0227775
0.00178405
0.0229699
0.00152905
0.0232085
0.0012331
0.0234782
0.00091834
0.0237522
0.000605088
0.0240079
0.00031213
0.0242225
5.67893e-05
0.0243813
-0.000160065
-0.000331544
0.0305291
0.0114678
0.0310933
0.0114482
0.0311575
0.0113325
0.0313079
0.0105751
0.0314227
0.00994617
0.0314433
0.00935752
0.0314444
0.00864348
0.0314248
0.00788963
0.0313841
0.0071263
0.0313213
0.0063733
0.0312421
0.0056422
0.0311458
0.00494216
0.0310322
0.0042755
0.0309
0.003642
0.0307544
0.00303938
0.0305995
0.00246705
0.0304373
0.00192311
0.0302688
0.00140668
0.0300934
0.000916079
0.0299099
0.000451127
0.0297128
1.34192e-05
0.0295096
-0.000410571
0.0292968
-0.000806086
0.0290749
-0.0011788
0.0288435
-0.00152823
0.0286029
-0.00185421
0.0283521
-0.00215608
0.028094
-0.00243406
0.0278275
-0.00268819
0.0275576
-0.00291854
0.0272829
-0.00312604
0.0270067
-0.00330995
0.0267294
-0.00347221
0.0264526
-0.00361217
0.026178
-0.00373139
0.0259072
-0.00383
0.0256415
-0.00390855
0.0253835
-0.00396719
0.0251352
-0.0040064
0.0248998
-0.00402534
0.0246797
-0.0040243
0.0244811
-0.00400181
0.024309
-0.00395764
0.0241678
-0.00388609
0.0240317
-0.00378563
0.0239148
-0.00368082
0.0238453
-0.00355679
0.023808
-0.00340329
0.0237899
-0.00320651
0.0238446
-0.00300604
0.0239822
-0.00276341
0.024155
-0.00245975
0.0243414
-0.00211556
0.0245361
-0.00176501
0.024707
-0.0014023
0.024843
-0.0010488
0.0249385
-0.00072098
0.0249919
-0.000421936
0.0250339
-0.000157645
0.0250543
9.31957e-05
0.0250417
0.000331243
0.0250004
0.000544909
0.0249513
0.000730033
0.0248942
0.000905339
0.0248277
0.00107158
0.0247545
0.00122863
0.0246741
0.00137807
0.0245875
0.00151963
0.0244946
0.00165291
0.0243959
0.00177781
0.0242921
0.00189419
0.0241837
0.00200222
0.0240721
0.00210192
0.0239579
0.00219359
0.0238423
0.00227713
0.023726
0.0023527
0.0236101
0.00241987
0.0234955
0.00247854
0.0233837
0.00252777
0.0232757
0.00256717
0.0231739
0.00259497
0.0230804
0.00261012
0.0229995
0.00260867
0.0229364
0.00258716
0.0228933
0.00254667
0.0228531
0.00250167
0.0228064
0.00245791
0.0228059
0.00236558
0.0228679
0.00222039
0.023001
0.00202304
0.0231795
0.00179287
0.0234048
0.00151848
0.0236759
0.00121435
0.0239618
0.000901622
0.0242401
0.000597684
0.0244853
0.000323305
0.0246842
8.71597e-05
0.0248238
-0.000102903
0.0249115
-0.00025906
-0.000382862
0.0272163
0.00943046
0.0282757
0.0104326
0.029337
0.0103331
0.0299599
0.010006
0.0304046
0.00953133
0.0307829
0.00897989
0.0310735
0.00833644
0.0312895
0.00765426
0.0314494
0.00696047
0.0315475
0.00627347
0.0315882
0.0056058
0.031579
0.00496126
0.0315299
0.00433732
0.0314475
0.00373751
0.0313376
0.00316072
0.0312092
0.00260853
0.0310683
0.0020812
0.0309175
0.00157929
0.0307556
0.00110262
0.0305823
0.000650989
0.0303988
0.000224813
0.0301968
-0.000180872
0.0299823
-0.000564153
0.0297536
-0.000924067
0.029511
-0.00126139
0.029255
-0.00157632
0.0289863
-0.00186816
0.0287079
-0.00213741
0.0284194
-0.00238354
0.0281245
-0.00260748
0.0278234
-0.00280918
0.0275179
-0.00298973
0.0272113
-0.00314893
0.0269024
-0.00328872
0.0265953
-0.00340764
0.0262896
-0.00350917
0.0259864
-0.00359031
0.0256879
-0.00365509
0.0253953
-0.00370063
0.0251107
-0.00372962
0.0248393
-0.00374021
0.024582
-0.00373378
0.0243454
-0.00370784
0.0241353
-0.00366408
0.0239579
-0.00359559
0.0237946
-0.00350439
0.0236538
-0.00340343
0.0235493
-0.00329067
0.0234968
-0.0031482
0.0234483
-0.00295962
0.0234349
-0.00275349
0.0235047
-0.00253608
0.0236481
-0.00227005
0.0238121
-0.00194316
0.0239871
-0.00159254
0.0241613
-0.00123611
0.0243123
-0.000877934
0.0244252
-0.00053701
0.0244994
-0.000224374
0.0245465
5.56227e-05
0.024583
0.000303669
0.0245904
0.000548214
0.0245632
0.000769639
0.0245206
0.000961132
0.0244705
0.00113253
0.0244106
0.00129742
0.0243448
0.00145057
0.0242745
0.00159514
0.0241992
0.00173177
0.0241186
0.00186044
0.0240329
0.00198055
0.0239433
0.0020918
0.0238505
0.00219415
0.0237558
0.00228755
0.0236602
0.00237212
0.0235648
0.00244755
0.0234708
0.00251358
0.0233793
0.00256954
0.0232924
0.00261437
0.0232117
0.00264696
0.0231393
0.00266544
0.0230818
0.00266531
0.0230414
0.00264258
0.0230199
0.00260308
0.0229803
0.00257699
0.0229602
0.00251065
0.0230077
0.00239717
0.0231253
0.00222889
0.0232949
0.00202314
0.0235067
0.00177557
0.0237704
0.00148893
0.0240622
0.00118327
0.0243586
0.000875408
0.024634
0.000587758
0.0248669
0.000334266
0.0250461
0.000121892
0.0251678
-4.82779e-05
0.0252392
-0.000180725
0.0252733
-0.000296706
-0.000387615
0.0228932
0.00731039
0.0248727
0.00851466
0.0264473
0.0088147
0.0277284
0.00874013
0.0286799
0.00855346
0.0294633
0.00816289
0.0300745
0.00769274
0.0305221
0.00716845
0.0308307
0.00660928
0.0310395
0.00603442
0.0311841
0.00545308
0.0312748
0.00487716
0.0313167
0.00430918
0.0313212
0.00375424
0.0312923
0.0032146
0.0312382
0.00269382
0.0311592
0.00219448
0.0310603
0.0017171
0.0309401
0.00126294
0.0307987
0.000831474
0.0306397
0.000423423
0.030458
3.86104e-05
0.0302584
-0.000325914
0.030039
-0.000668109
0.0298021
-0.000988683
0.0295476
-0.00128811
0.0292778
-0.0015661
0.0289943
-0.00182265
0.0286992
-0.00205846
0.028394
-0.00227278
0.0280815
-0.00246771
0.0277616
-0.00264169
0.0274388
-0.00279768
0.0271106
-0.00293386
0.0267822
-0.00305298
0.0264515
-0.00315386
0.0261208
-0.00323828
0.0257934
-0.00330586
0.0254687
-0.00335793
0.0251524
-0.00339372
0.0248458
-0.00341505
0.0245519
-0.00342017
0.0242749
-0.00341065
0.0240155
-0.00338441
0.0237812
-0.00334173
0.023574
-0.0032789
0.023383
-0.00319499
0.02321
-0.00310106
0.0230706
-0.00299783
0.022986
-0.00286708
0.022931
-0.00270007
0.0228889
-0.00249801
0.0229062
-0.00229337
0.0230075
-0.0020571
0.0231609
-0.00176503
0.0233268
-0.00142397
0.0235025
-0.00107302
0.0236649
-0.000715054
0.0237977
-0.000365465
0.0238935
-4.14564e-05
0.0239495
0.000250191
0.0240011
0.000503538
0.0240304
0.000746988
0.0240235
0.00097539
0.0239895
0.00117535
0.0239506
0.00134465
0.0239044
0.00150389
0.0238526
0.00165243
0.0237964
0.00179128
0.0237361
0.00192229
0.0236714
0.00204487
0.0236031
0.00215862
0.0235315
0.00226325
0.0234581
0.00235813
0.0233841
0.00244316
0.0233108
0.00251748
0.0232408
0.00258059
0.0231749
0.00263143
0.0231176
0.00266787
0.0230696
0.00268955
0.0230385
0.00268993
0.0230313
0.0026638
0.0230207
0.00264098
0.0230018
0.00261163
0.0230368
0.00252921
0.0231409
0.00238872
0.0232975
0.00221471
0.023497
0.00199747
0.0237478
0.00173462
0.0240385
0.00144343
0.024346
0.00113946
0.0246459
0.000845145
0.0249118
0.000576945
0.025129
0.000347029
0.025289
0.000158388
0.025397
6.93309e-06
0.0254525
-0.000106785
0.0254778
-0.000204157
0.025476
-0.000294826
-0.000375051
0.019216
0.00563318
0.0213399
0.00643649
0.0232598
0.00689971
0.0247938
0.0071509
0.0260963
0.00717124
0.0271882
0.00701387
0.0281048
0.00675223
0.0288569
0.00641644
0.0294578
0.00602772
0.0299227
0.00559745
0.0302659
0.00513993
0.0305145
0.0046615
0.0306852
0.00417302
0.0307892
0.00368123
0.0308381
0.00319425
0.0308438
0.00271811
0.0308149
0.00225631
0.0307576
0.00181149
0.0306765
0.00138581
0.0305706
0.000979902
0.0304424
0.000594895
0.0302887
0.000231472
0.0301108
-0.000111189
0.0299096
-0.000432357
0.0296862
-0.000732626
0.0294456
-0.00101269
0.0291854
-0.00127296
0.0289118
-0.00151353
0.0286215
-0.00173535
0.0283204
-0.00193794
0.0280068
-0.00212293
0.0276853
-0.00228947
0.0273566
-0.00243938
0.0270221
-0.00257182
0.0266846
-0.00268852
0.0263443
-0.00278895
0.0260039
-0.00287425
0.0256654
-0.00294468
0.02533
-0.00300043
0.0250014
-0.00304253
0.0246805
-0.00307082
0.0243697
-0.00308597
0.024071
-0.00308797
0.0237868
-0.00307652
0.0235201
-0.00305154
0.0232753
-0.00301173
0.0230567
-0.00295543
0.0228562
-0.00288027
0.0226721
-0.00279589
0.0225198
-0.00270297
0.0224112
-0.00258379
0.0223465
-0.00243408
0.0222922
-0.00224876
0.0222685
-0.00204582
0.0223181
-0.00183301
0.0224497
-0.00157572
0.0226053
-0.00126006
0.0227752
-0.000913026
0.0229419
-0.000560223
0.0230887
-0.000207906
0.0232
0.000124392
0.0232699
0.000426144
0.0233253
0.000689386
0.0233697
0.000930214
0.0233861
0.0011605
0.0233678
0.00136604
0.0233394
0.00153749
0.0233066
0.00168947
0.0232676
0.00183308
0.023227
0.00196457
0.0231849
0.00208699
0.0231423
0.00220083
0.0230977
0.00230583
0.0230524
0.00240061
0.023007
0.00248462
0.0229636
0.00255602
0.0229252
0.00261397
0.0228941
0.00265627
0.0228736
0.0026812
0.0228701
0.00268506
0.0228806
0.0026679
0.0228719
0.00265999
0.0228948
0.00260594
0.0229958
0.00249546
0.0231454
0.00235839
0.0233312
0.00217419
0.0235703
0.0019412
0.0238571
0.00167142
0.0241711
0.00137992
0.0244896
0.00108678
0.0247849
0.000810398
0.0250402
0.000566337
0.0252373
0.00036118
0.025382
0.000195861
0.0254727
6.44953e-05
0.0255189
-3.71694e-05
0.0255442
-0.000126332
0.0255534
-0.000209225
0.0255418
-0.000279148
-0.000349871
0.0170706
0.00452675
0.0189143
0.00461034
0.0206212
0.00516906
0.0221386
0.00555819
0.0234668
0.00575038
0.0246247
0.0057793
0.0256325
0.00569781
0.0265065
0.00552925
0.0272569
0.00529415
0.0278967
0.00500198
0.0284384
0.00466461
0.0288786
0.00429392
0.02923
0.00389636
0.0294998
0.00348589
0.0297021
0.0030664
0.0298471
0.00264874
0.0299371
0.00223629
0.0299809
0.00183422
0.0299779
0.00144571
0.029934
0.00107279
0.0298535
0.000717608
0.0297395
0.00038079
0.0295971
6.41056e-05
0.0294276
-0.000232236
0.0292324
-0.000508498
0.0290155
-0.000766039
0.0287763
-0.00100504
0.0285204
-0.00122677
0.0282489
-0.00143128
0.0279654
-0.00161955
0.0276719
-0.0017914
0.0273688
-0.00194822
0.0270578
-0.00208879
0.0267391
-0.00221554
0.0264156
-0.00232655
0.0260858
-0.00242472
0.0257533
-0.00250757
0.0254177
-0.00257843
0.0250832
-0.00263486
0.0247522
-0.00268079
0.0244264
-0.00271391
0.0241093
-0.00273721
0.0238016
-0.00274874
0.0235075
-0.0027502
0.0232286
-0.00274003
0.0229671
-0.00271831
0.0227274
-0.00268423
0.022509
-0.00263459
0.0223067
-0.00256923
0.0221172
-0.00249417
0.0219543
-0.00240981
0.0218252
-0.00230167
0.0217348
-0.00216413
0.0216713
-0.00199878
0.0216165
-0.00179952
0.0216181
-0.00159998
0.0216967
-0.00136699
0.0218286
-0.00108331
0.0219817
-0.00075057
0.0221417
-0.000409184
0.0222974
-5.96609e-05
0.0224186
0.000275916
0.022506
0.000583054
0.0225683
0.000853717
0.0226273
0.00109277
0.0226702
0.00131507
0.0226782
0.00152287
0.0226632
0.00170055
0.0226464
0.00184693
0.0226265
0.00198158
0.0226042
0.00210571
0.0225809
0.00221865
0.0225581
0.00232258
0.0225356
0.00241541
0.0225168
0.00249565
0.0225017
0.00256144
0.0224946
0.00261018
0.0224997
0.00263888
0.0225108
0.00265308
0.022535
0.00264788
0.0225613
0.00262365
0.0226561
0.00255038
0.0227952
0.00244802
0.022963
0.00230243
0.0231885
0.00210244
0.0234671
0.0018596
0.023785
0.00158888
0.0241151
0.00130358
0.0244386
0.00102637
0.0247285
0.000772615
0.024969
0.000554433
0.0251557
0.000374161
0.0252859
0.000230349
0.025371
0.000116659
0.0254173
2.61989e-05
0.0254467
-5.66399e-05
0.0254615
-0.000132042
0.0254584
-0.000198553
0.0254461
-0.000258791
-0.000319826
0.0174793
0.00384075
0.0182567
0.00386033
0.0192918
0.00410119
0.0203569
0.00441726
0.0213992
0.00462934
0.0223986
0.00472877
0.023345
0.00473717
0.0242183
0.00467508
0.0250187
0.00454534
0.0257392
0.00435872
0.0263853
0.00411843
0.0269513
0.00383784
0.0274379
0.00352319
0.0278474
0.00318653
0.0281776
0.00283512
0.0284389
0.00247699
0.0286258
0.00211932
0.02875
0.00176585
0.0288133
0.00142249
0.0288237
0.00109064
0.028793
0.000773747
0.0287211
0.00047245
0.0286213
0.000187639
0.0284924
-7.99403e-05
0.0283372
-0.000328628
0.0281583
-0.000560025
0.027955
-0.000775343
0.0277317
-0.000974719
0.0274905
-0.00115964
0.0272321
-0.00132965
0.0269622
-0.00148589
0.0266771
-0.00162833
0.0263824
-0.00175716
0.0260784
-0.00187336
0.0257678
-0.00197615
0.0254478
-0.0020677
0.0251213
-0.00214617
0.0247938
-0.00221467
0.0244707
-0.00227253
0.0241589
-0.00232083
0.0238579
-0.00236055
0.0235679
-0.00238998
0.0232893
-0.0024115
0.023023
-0.00242203
0.022766
-0.00242484
0.022522
-0.0024156
0.0222842
-0.00239732
0.0220586
-0.00236527
0.0218431
-0.00232136
0.0216339
-0.00226095
0.0214318
-0.00219354
0.0212502
-0.00211645
0.0210973
-0.00201644
0.0209746
-0.00189099
0.0208982
-0.00174286
0.0208252
-0.00155748
0.0207915
-0.00136451
0.020827
-0.0011533
0.0209386
-0.000901162
0.0210747
-0.000591524
0.0212311
-0.000259943
0.0213844
8.03405e-05
0.0215189
0.000410727
0.0216277
0.000718655
0.0217043
0.000991153
0.021769
0.00123205
0.0218306
0.00144537
0.0218753
0.00164487
0.0218889
0.00182396
0.0218962
0.0019701
0.021905
0.00209399
0.0219116
0.00220864
0.0219233
0.00230966
0.0219386
0.00239645
0.0219618
0.00247012
0.0219943
0.00252342
0.0220344
0.00256316
0.0220707
0.00259397
0.0221274
0.00258608
0.0222225
0.00253791
0.0223497
0.00247639
0.0224995
0.00237875
0.0226987
0.00221495
0.0229572
0.00200939
0.0232581
0.0017636
0.0235848
0.00149572
0.0239197
0.00122218
0.0242295
0.000964422
0.0245027
0.000734811
0.0247209
0.000541752
0.0248883
0.000384825
0.0250054
0.000259347
0.025081
0.00016052
0.0251272
8.104e-05
0.0251578
4.41898e-06
0.0251732
-6.38738e-05
0.0251749
-0.000126568
0.0251677
-0.000182892
0.0251555
-0.000237738
-0.000290936
0.0167144
0.00303036
0.017588
0.00302445
0.0183594
0.00331386
0.0191
0.00361389
0.0198562
0.0038177
0.0206403
0.00392709
0.0214425
0.00396124
0.0222411
0.00393606
0.0230111
0.00385593
0.023739
0.00372354
0.0244076
0.00354432
0.0250123
0.00332447
0.0255422
0.00307296
0.0259992
0.00279752
0.0263793
0.00250719
0.0266891
0.00220805
0.0269303
0.00190722
0.0271102
0.00160859
0.0272363
0.00131655
0.0273118
0.00103339
0.027347
0.000761204
0.0273413
0.000501154
0.0273009
0.00025343
0.027228
1.92258e-05
0.0271211
-0.00019849
0.0269859
-0.00040221
0.0268206
-0.000591804
0.0266308
-0.000767524
0.026419
-0.000930805
0.026186
-0.00108107
0.0259392
-0.00121993
0.0256787
-0.00134666
0.0254109
-0.00146268
0.0251343
-0.00156772
0.0248546
-0.00166284
0.0245801
-0.00174782
0.0243141
-0.00182426
0.0240575
-0.00189142
0.0238033
-0.00195024
0.0235536
-0.00200006
0.023302
-0.0020415
0.0230581
-0.0020741
0.0228143
-0.00209931
0.0225694
-0.00211516
0.0223205
-0.00212286
0.0220662
-0.0021211
0.0218083
-0.00211005
0.0215482
-0.00208976
0.0212954
-0.00205895
0.0210475
-0.00201711
0.020811
-0.00196218
0.0205846
-0.001903
0.0203853
-0.00183103
0.0202152
-0.00174015
0.0200768
-0.00162707
0.019984
-0.00149229
0.0199112
-0.00132553
0.0198648
-0.00113932
0.0198719
-0.000945584
0.0199542
-0.000715233
0.0200848
-0.000434164
0.0202379
-0.00011633
0.0204011
0.000210614
0.0205541
0.000535802
0.0206849
0.000839875
0.020793
0.00111446
0.0208801
0.00135399
0.0209629
0.00156299
0.0210408
0.00175087
0.0210989
0.00192037
0.0211352
0.00206796
0.0211746
0.00218245
0.0212161
0.00227848
0.0212698
0.00235671
0.0213298
0.00241854
0.0213899
0.00247174
0.0214573
0.0025007
0.0215829
0.00247314
0.0217377
0.0024334
0.0218902
0.00238448
0.0220906
0.00226769
0.0223537
0.00210207
0.0226561
0.00189292
0.0229932
0.00164993
0.0233378
0.00139219
0.0236746
0.00113584
0.023974
0.000900279
0.0242302
0.000695658
0.0244271
0.000526616
0.0245752
0.000390663
0.0246762
0.000281397
0.0247411
0.000195153
0.0247781
0.00012398
0.0248017
5.54426e-05
0.0248096
-6.63151e-06
0.024806
-6.46325e-05
0.0247901
-0.000117326
0.0247678
-0.000167726
0.0247397
-0.000215208
-0.000261878
0.0175006
0.00241863
0.0178988
0.00266146
0.0182835
0.00290956
0.0186775
0.00315807
0.0191116
0.00334025
0.0196276
0.00342147
0.0202146
0.00343125
0.0208477
0.00338535
0.0214922
0.0032964
0.0221221
0.00316705
0.0227192
0.0030049
0.0232696
0.00281457
0.0237666
0.00260259
0.0242075
0.00237489
0.0245932
0.00213652
0.0249237
0.00189256
0.0252037
0.00164645
0.0254318
0.00140205
0.0256139
0.00116114
0.0257481
0.000926605
0.0258387
0.000699047
0.0258867
0.000480511
0.0258916
0.000270971
0.0258604
7.12745e-05
0.0257916
-0.000116267
0.0256954
-0.000291469
0.0255695
-0.000454742
0.0254222
-0.00060649
0.0252558
-0.000747256
0.0250756
-0.000877573
0.0248889
-0.000998185
0.0246966
-0.00110972
0.0245028
-0.0012126
0.0243084
-0.00130707
0.024114
-0.00139316
0.0239193
-0.00147152
0.0237217
-0.00154197
0.0235198
-0.00160488
0.0233113
-0.00165984
0.0230925
-0.00170732
0.0228616
-0.00174695
0.0226189
-0.00177897
0.0223608
-0.00180322
0.0220864
-0.00181996
0.0218039
-0.00182862
0.0215142
-0.00183139
0.0212282
-0.00182623
0.0209483
-0.00181539
0.0206793
-0.00179547
0.0204252
-0.00176892
0.0201887
-0.00173076
0.0199636
-0.00168401
0.0197587
-0.00163116
0.0195742
-0.00156607
0.0194145
-0.00148246
0.0192865
-0.00138182
0.0191968
-0.0012576
0.0191359
-0.00110721
0.0190977
-0.000931122
0.0191105
-0.000751989
0.0191954
-0.000539902
0.0193356
-0.000283357
0.0195025
2.0575e-05
0.0196848
0.000336352
0.0198632
0.000653977
0.0200267
0.000953664
0.0201652
0.00122696
0.0202792
0.00146557
0.0203797
0.00166998
0.0204742
0.00184944
0.0205625
0.00200202
0.0206348
0.00213202
0.0206983
0.00223419
0.020757
0.00231356
0.020821
0.0023665
0.0209258
0.00237972
0.0210743
0.00235527
0.0212166
0.00233362
0.0213838
0.00226353
0.0216161
0.00214216
0.0218929
0.00197292
0.022207
0.00176453
0.0225481
0.00152769
0.0228884
0.00128261
0.0232139
0.00104526
0.0234951
0.000833214
0.0237289
0.000652574
0.0239051
0.000505974
0.0240329
0.000388796
0.0241173
0.000294413
0.0241675
0.00021813
0.024193
0.000154585
0.0242061
9.55903e-05
0.0242022
3.977e-05
0.0241892
-1.33947e-05
0.0241676
-6.23538e-05
0.0241395
-0.000108069
0.024105
-0.000152185
0.0240655
-0.000192932
-0.000233493
0.0175368
0.00195617
0.0178976
0.00233797
0.0181836
0.00260491
0.0184559
0.00285987
0.0187602
0.00303687
0.0191316
0.00309962
0.0195792
0.00306608
0.0200765
0.00297776
0.0205909
0.00285128
0.0210967
0.00269872
0.0215876
0.00252944
0.0220559
0.00234874
0.0225001
0.00216055
0.0229156
0.00196767
0.0232976
0.00177159
0.0236403
0.00157389
0.0239392
0.0013758
0.0241896
0.00117877
0.0243906
0.000983974
0.0245412
0.000792864
0.0246427
0.000606419
0.0246989
0.000425981
0.0247112
0.000252257
0.0246878
8.58225e-05
0.0246331
-7.19818e-05
0.0245558
-0.000219976
0.024461
-0.000358179
0.024355
-0.000486857
0.0242425
-0.000606328
0.0241238
-0.000717662
0.0240003
-0.000820839
0.0238699
-0.00091692
0.023734
-0.0010057
0.0235889
-0.00108806
0.0234325
-0.0011636
0.0232621
-0.00123286
0.0230755
-0.00129529
0.0228709
-0.00135139
0.0226489
-0.00140066
0.0224129
-0.00144354
0.0221641
-0.00147981
0.0219029
-0.00151014
0.0216391
-0.00153384
0.0213769
-0.00155268
0.0211202
-0.00156524
0.0208683
-0.00157276
0.0206225
-0.00157391
0.0203809
-0.00156949
0.0201453
-0.00155843
0.0199158
-0.00154061
0.0196938
-0.00151528
0.0194821
-0.00148048
0.0192767
-0.00143894
0.0190879
-0.00139015
0.0189197
-0.00132917
0.018778
-0.0012531
0.0186675
-0.00116091
0.0185984
-0.0010475
0.0185645
-0.000908188
0.0185444
-0.000739023
0.0185774
-0.000570461
0.018669
-0.000373007
0.0188227
-0.00013622
0.0190018
0.000154114
0.0191985
0.00045842
0.0193923
0.000767579
0.0195703
0.0010614
0.0197244
0.00132787
0.0198565
0.00155998
0.019972
0.00175503
0.0200768
0.00191746
0.0201792
0.00204963
0.0202776
0.00215018
0.0203811
0.0022205
0.0204967
0.00225216
0.0206313
0.00224394
0.0207732
0.00220744
0.0209595
0.00213176
0.0211973
0.00200299
0.0214767
0.00183251
0.0217911
0.00162597
0.0221211
0.00139846
0.0224417
0.0011683
0.022736
0.000951352
0.022982
0.000762091
0.0231785
0.000604114
0.0233214
0.000477963
0.0234216
0.000377462
0.0234838
0.000297086
0.0235197
0.000229688
0.0235336
0.000173483
0.023535
0.000123091
0.0235221
7.37847e-05
0.0235016
2.6666e-05
0.0234715
-1.81259e-05
0.0234363
-5.94715e-05
0.0233943
-9.89106e-05
0.023351
-0.000136376
0.0233065
-0.00017127
-0.00020602
0.0168037
0.00134915
0.0174214
0.00181234
0.0178254
0.00221158
0.018155
0.00252542
0.0184991
0.00271845
0.0188862
0.00277931
0.0193052
0.00272955
0.0197467
0.00261148
0.0201916
0.00245687
0.0206243
0.00228608
0.0210423
0.00211143
0.021444
0.00193866
0.0218314
0.00176981
0.0222017
0.00160452
0.0225476
0.0014424
0.0228617
0.00128226
0.0231362
0.00112365
0.0233658
0.000966313
0.0235478
0.000810453
0.023682
0.000656852
0.0237708
0.00050634
0.0238201
0.000360041
0.023835
0.00021886
0.0238241
8.31405e-05
0.0237947
-4.61273e-05
0.0237514
-0.000168018
0.0237011
-0.000282597
0.0236427
-0.000389865
0.0235778
-0.000489984
0.0235033
-0.000583719
0.0234163
-0.000671278
0.0233146
-0.000753219
0.0231955
-0.00082953
0.023057
-0.000900614
0.0228997
-0.000966155
0.0227245
-0.00102642
0.0225333
-0.00108116
0.0223304
-0.00113049
0.0221184
-0.00117442
0.0219005
-0.00121295
0.0216808
-0.00124621
0.0214592
-0.00127437
0.0212389
-0.00129733
0.0210177
-0.00131556
0.0207957
-0.00132879
0.0205731
-0.00133716
0.0203482
-0.00134067
0.0201229
-0.00133902
0.0198957
-0.0013324
0.0196709
-0.00131995
0.0194471
-0.00130199
0.0192328
-0.00127689
0.0190239
-0.00124435
0.0188289
-0.00120721
0.0186514
-0.00116087
0.0184931
-0.00110417
0.0183657
-0.00103426
0.0182666
-0.000949801
0.0182078
-0.000845096
0.0181868
-0.000716497
0.0181776
-0.000555236
0.0182121
-0.000397035
0.0182971
-0.000213348
0.0184423
9.93895e-06
0.01862
0.000275012
0.0188147
0.000565023
0.0190061
0.000861296
0.0191824
0.00114376
0.019337
0.0013965
0.019472
0.00161211
0.0195929
0.00178638
0.019709
0.00192096
0.0198268
0.00201753
0.0199566
0.00207195
0.0201092
0.00207731
0.0202663
0.0020555
0.0204535
0.00198219
0.0206803
0.00185572
0.0209415
0.00168547
0.0212298
0.0014835
0.0215247
0.00126629
0.0218128
0.0010509
0.022069
0.00085438
0.0222818
0.000685778
0.0224476
0.000548636
0.0225671
0.000440325
0.0226461
0.000355353
0.0226962
0.00028716
0.0227235
0.000229999
0.0227315
0.000181251
0.0227291
0.000137078
0.0227227
9.50028e-05
0.0227087
5.47059e-05
0.0226856
1.57622e-05
0.0226583
-2.07848e-05
0.0226359
-5.7124e-05
0.0226121
-9.00093e-05
0.0225886
-0.0001224
0.0225631
-0.000150967
-0.000179935
0.0174371
0.0011066
0.0177268
0.00162566
0.0179786
0.00198577
0.0182461
0.00227011
0.0185636
0.00243911
0.0189342
0.00247341
0.0193342
0.0023975
0.0197412
0.00225365
0.0201399
0.00208031
0.0205257
0.00190245
0.020897
0.00173198
0.0212544
0.00157244
0.0215958
0.00142415
0.0219193
0.0012848
0.0222233
0.00115233
0.0225
0.00102409
0.0227416
0.000898265
0.0229388
0.000773955
0.0230881
0.000650774
0.0231897
0.000529193
0.0232507
0.000409815
0.0232802
0.000293655
0.0232874
0.000181392
0.0232813
7.3546e-05
0.0232669
-2.95752e-05
0.0232473
-0.0001277
0.023222
-0.000220562
0.0231877
-0.000308133
0.0231415
-0.000390504
0.0230795
-0.000468151
0.0229994
-0.000541264
0.0229004
-0.000610165
0.0227826
-0.000674832
0.0226485
-0.000735276
0.0224996
-0.000791543
0.0223395
-0.00084328
0.0221697
-0.000890666
0.0219932
-0.000933264
0.021811
-0.0009714
0.0216237
-0.00100477
0.0214321
-0.0010336
0.0212346
-0.00105793
0.0210311
-0.00107797
0.020821
-0.00109356
0.0206036
-0.00110536
0.0203801
-0.00111271
0.0201503
-0.00111653
0.0199174
-0.00111585
0.0196827
-0.0011116
0.0194496
-0.00110274
0.0192214
-0.00108964
0.0190014
-0.00107149
0.0187941
-0.00104768
0.0185979
-0.00101823
0.0184201
-0.000983586
0.0182594
-0.000940426
0.0181226
-0.000888562
0.0180089
-0.000824741
0.0179241
-0.000746612
0.0178736
-0.000650561
0.0178578
-0.000531091
0.0178535
-0.000381576
0.0178825
-0.000234542
0.0179609
-6.52806e-05
0.0180933
0.000133874
0.0182557
0.000382725
0.0184404
0.000650868
0.0186286
0.000926017
0.0188066
0.00118771
0.0189694
0.00141865
0.0191159
0.00160725
0.0192549
0.00174847
0.0193963
0.00184092
0.0195485
0.00187884
0.0197183
0.001866
0.0199126
0.00181106
0.0201424
0.0016974
0.0204017
0.00153793
0.0206764
0.00134638
0.0209556
0.00114063
0.0212183
0.000940179
0.021448
0.000760419
0.0216377
0.000609568
0.0217818
0.0004893
0.021884
0.000396066
0.0219546
0.000323884
0.0219983
0.000266568
0.0220208
0.000219073
0.0220324
0.000177517
0.0220359
0.000140048
0.0220331
0.00010567
0.0220253
7.14881e-05
0.0220191
3.82755e-05
0.0220146
6.23699e-06
0.0220081
-2.37881e-05
0.0220035
-5.34284e-05
0.0219994
-8.11955e-05
0.0219998
-0.000107715
0.0220008
-0.000131236
-0.000154745
0.0166499
0.000629792
0.0172551
0.00114123
0.0176936
0.00157461
0.0181096
0.00187391
0.018557
0.0020363
0.0190202
0.00206552
0.0194742
0.00198838
0.0199049
0.0018481
0.020314
0.00168371
0.0207025
0.00152129
0.021065
0.00137155
0.0214008
0.00123659
0.0217119
0.00111469
0.0219969
0.00100309
0.0222529
0.000898821
0.0224723
0.000799099
0.0226524
0.00070181
0.0227911
0.000605888
0.0228903
0.000511134
0.0229562
0.00041769
0.0229964
0.000326145
0.0230204
0.000237029
0.0230352
0.000150907
0.0230446
6.80164e-05
0.0230498
-1.21492e-05
0.0230468
-8.77597e-05
0.0230342
-0.00016123
0.0230071
-0.00023103
0.022963
-0.000297602
0.0229
-0.000360775
0.0228177
-0.000420954
0.022718
-0.000477691
0.0226019
-0.00053148
0.0224733
-0.000581485
0.0223333
-0.000628411
0.0221854
-0.000671147
0.0220299
-0.000710646
0.021868
-0.000745663
0.0216999
-0.000777262
0.0215247
-0.000804357
0.0213421
-0.000828076
0.0211521
-0.000847428
0.0209527
-0.000863707
0.0207451
-0.00087589
0.0205272
-0.000885337
0.0203015
-0.000891003
0.0200687
-0.000894133
0.0198316
-0.000893724
0.0195936
-0.000890718
0.0193566
-0.000884223
0.0191256
-0.000874685
0.018903
-0.000861455
0.0186917
-0.000844177
0.0184945
-0.000822186
0.0183111
-0.0007963
0.0181459
-0.000764533
0.0179976
-0.000726035
0.0178695
-0.000679324
0.0177619
-0.000622338
0.0176801
-0.000552254
0.0176258
-0.000466348
0.0176042
-0.000356144
0.0175942
-0.000224002
0.017617
-9.07519e-05
0.017683
5.93275e-05
0.0178098
0.000236604
0.0179686
0.000461982
0.0181565
0.000703221
0.0183549
0.000950175
0.0185533
0.00118005
0.0187438
0.00137657
0.0189273
0.00152395
0.0191125
0.00161376
0.0193099
0.00163886
0.0195172
0.00161012
0.0197555
0.00151923
0.0200161
0.00137954
0.0202884
0.00120574
0.0205579
0.00101735
0.0208053
0.000833731
0.0210184
0.000669885
0.0211916
0.00053419
0.0213209
0.000427584
0.0214132
0.00034631
0.0214765
0.000284653
0.0215146
0.000236655
0.0215352
0.000197506
0.0215466
0.000163749
0.0215499
0.000133481
0.0215456
0.000104678
0.0215435
7.81307e-05
0.0215438
5.14519e-05
0.0215445
2.50551e-05
0.0215443
-8.93277e-07
0.0215472
-2.48075e-05
0.0215555
-4.80711e-05
0.0215648
-7.06817e-05
0.0215789
-9.16618e-05
0.0215939
-0.000110184
-0.000128359
0.0171803
0.000453252
0.0173944
0.00100947
0.0177037
0.00132206
0.0180989
0.00153299
0.0185566
0.00164143
0.0190272
0.00164125
0.0194781
0.00155425
0.0199036
0.00142065
0.0203068
0.00127533
0.0206924
0.00113879
0.0210569
0.00101761
0.0213911
0.000912258
0.0216892
0.000819146
0.0219534
0.000735332
0.0221848
0.000657627
0.02238
0.000583932
0.0225332
0.000512692
0.0226442
0.000442747
0.0227188
0.000373974
0.0227693
0.000306286
0.0228063
0.000240177
0.0228391
0.00017579
0.0228712
0.000113515
0.0229014
5.34538e-05
0.0229245
-3.09756e-06
0.0229398
-6.07553e-05
0.02294
-0.000114303
0.022922
-0.00016614
0.0228844
-0.000216433
0.022828
-0.000264485
0.0227524
-0.000310812
0.0226613
-0.000354481
0.0225549
-0.000396224
0.022437
-0.000434813
0.0223083
-0.000471162
0.022171
-0.00050403
0.022026
-0.000534296
0.0218729
-0.000561058
0.021712
-0.000584906
0.021541
-0.000605451
0.0213592
-0.000622866
0.0211653
-0.000637406
0.0209582
-0.000648794
0.0207389
-0.000657875
0.0205084
-0.000664009
0.0202688
-0.00066831
0.0200239
-0.000669855
0.0197759
-0.000669981
0.0195304
-0.000667208
0.0192894
-0.000663237
0.0190579
-0.000656004
0.0188367
-0.000647213
0.0186289
-0.000634754
0.0184355
-0.000619553
0.018255
-0.000600753
0.0180879
-0.000578221
0.0179354
-0.000550876
0.0177967
-0.000518043
0.0176751
-0.000478202
0.017572
-0.000429779
0.0174905
-0.000369618
0.0174392
-0.000296532
0.017411
-0.000196335
0.0174071
-9.17221e-05
0.0174362
2.16376e-05
0.0175097
0.000148744
0.0176433
0.000302175
0.0178154
0.000495948
0.0180225
0.000701406
0.0182477
0.000908034
0.0184836
0.00109267
0.0187226
0.00123578
0.0189658
0.00131981
0.0192181
0.00133548
0.0194864
0.00128795
0.0197666
0.00118257
0.0200495
0.0010383
0.0203204
0.000876073
0.0205664
0.000715774
0.0207736
0.000572412
0.0209373
0.00045352
0.021061
0.000360474
0.0211473
0.000290214
0.0212052
0.000237625
0.021243
0.000197638
0.0212648
0.000165976
0.0212726
0.00013952
0.0212756
0.000116027
0.0212741
9.47305e-05
0.021265
7.37758e-05
0.021258
5.41861e-05
0.0212541
3.4466e-05
0.021251
1.48165e-05
0.021246
-4.42929e-06
0.0212442
-2.31439e-05
0.0212464
-4.05956e-05
0.0212491
-5.7588e-05
0.0212551
-7.30249e-05
0.021262
-8.76318e-05
-9.91203e-05
0.0168989
0.000367293
0.0170278
0.000910145
0.0173868
0.00109385
0.0178478
0.0011831
0.0183422
0.00121711
0.0188285
0.00117833
0.0192868
0.00108365
0.0197167
0.000965251
0.020127
0.000848532
0.0205222
0.000745484
0.0208983
0.000658164
0.0212455
0.000584523
0.0215519
0.000520954
0.0218196
0.000464001
0.0220503
0.00041151
0.0222453
0.000362045
0.0223991
0.000314381
0.0225127
0.000267993
0.0225924
0.000222731
0.0226519
0.000178565
0.0227019
0.000135773
0.0227508
9.44251e-05
0.0227999
5.47758e-05
0.0228455
1.65463e-05
0.0228841
-1.93585e-05
0.0229059
-5.39923e-05
0.0229105
-8.7806e-05
0.022897
-0.000120309
0.0228646
-0.000151709
0.0228166
-0.000182057
0.0227521
-0.0002113
0.0226741
-0.000239308
0.022582
-0.000265952
0.022477
-0.000291002
0.0223606
-0.000314407
0.0222321
-0.000335884
0.0220942
-0.000355452
0.0219444
-0.000372963
0.0217848
-0.000388388
0.021611
-0.000401801
0.0214248
-0.000413081
0.0212224
-0.00042253
0.0210056
-0.000429927
0.0207747
-0.000435887
0.0205325
-0.000439782
0.0202816
-0.000442771
0.020028
-0.000443622
0.0197728
-0.000443844
0.0195232
-0.000441998
0.01928
-0.000439411
0.0190469
-0.000434784
0.0188259
-0.000428985
0.0186164
-0.000421087
0.0184212
-0.000411036
0.0182376
-0.000398988
0.0180677
-0.000384353
0.0179083
-0.000366885
0.0177596
-0.000345847
0.0176244
-0.000320733
0.0175025
-0.000290074
0.0173994
-0.00025286
0.0173184
-0.00020638
0.0172727
-0.000148263
0.0172413
-6.95492e-05
0.0172457
6.46679e-06
0.0172905
9.00343e-05
0.0173876
0.000186303
0.0175438
0.000308246
0.0177493
0.000454413
0.0179987
0.000610657
0.0182789
0.000758208
0.0185824
0.000875448
0.018898
0.000943814
0.0192196
0.000951484
0.0195444
0.000901298
0.0198602
0.000806427
0.0201547
0.000686706
0.020413
0.000562521
0.0206278
0.000448909
0.0207969
0.000353686
0.0209219
0.00027885
0.0210112
0.000222257
0.0210706
0.000180126
0.0211063
0.000148583
0.0211262
0.000124285
0.0211349
0.000104677
0.0211309
8.80608e-05
0.021125
7.30809e-05
0.0211155
5.94387e-05
0.0211012
4.59279e-05
0.0210893
3.27791e-05
0.0210819
1.97367e-05
0.0210761
6.60366e-06
0.0210686
-6.41967e-06
0.0210629
-1.89254e-05
0.0210608
-3.06816e-05
0.0210585
-4.19726e-05
0.0210574
-5.24282e-05
0.0210548
-6.1883e-05
-6.9016e-05
0.0162886
0.000155941
0.0167302
0.000474476
0.017322
0.000593437
0.0179622
0.000636163
0.0185873
0.000642637
0.0191662
0.000610217
0.0196895
0.000549977
0.020164
0.000481564
0.0206025
0.000418457
0.0210098
0.000364888
0.0213822
0.000320739
0.0217097
0.000283828
0.0219839
0.000252045
0.0222054
0.000223507
0.0223842
0.000197034
0.0225285
0.000171978
0.022632
0.000147878
0.0226947
0.00012451
0.0227263
0.000101907
0.0227461
8.00334e-05
0.0227695
5.90096e-05
0.0228038
3.88204e-05
0.0228468
1.96774e-05
0.0228886
2.01451e-06
0.022922
-1.56897e-05
0.0229386
-3.1941e-05
0.0229343
-4.7604e-05
0.0229097
-6.28512e-05
0.0228666
-7.76714e-05
0.0228081
-9.21039e-05
0.0227356
-0.00010612
0.0226514
-0.000119651
0.0225553
-0.000132656
0.0224485
-0.000144928
0.0223317
-0.000156545
0.0222037
-0.000167156
0.0220672
-0.000176971
0.0219187
-0.000185653
0.0217599
-0.000193393
0.021587
-0.000200046
0.0214013
-0.000205676
0.0211993
-0.000210363
0.0209848
-0.000214051
0.0207551
-0.000217001
0.020517
-0.000218976
0.0202704
-0.000220436
0.0200209
-0.000220925
0.0197718
-0.00022096
0.0195262
-0.000220142
0.0192877
-0.00021866
0.0190563
-0.000216498
0.0188361
-0.000213383
0.0186233
-0.000209527
0.0184222
-0.000204515
0.0182295
-0.000198435
0.0180473
-0.000191232
0.0178744
-0.000182484
0.017715
-0.000172353
0.0175643
-0.000159939
0.0174309
-0.000145344
0.0173116
-0.00012729
0.0172128
-0.000104983
0.0171438
-7.79019e-05
0.0170996
-3.83796e-05
0.0170944
-1.62251e-07
0.0171286
4.18845e-05
0.0172085
8.91471e-05
0.0173454
0.000147364
0.0175401
0.00022384
0.0177959
0.000307365
0.0181103
0.000389638
0.0184697
0.000456635
0.0188562
0.000495266
0.0192471
0.000497428
0.0196215
0.000464644
0.019963
0.000407363
0.0202575
0.000339207
0.0204995
0.000272422
0.020689
0.000214332
0.0208293
0.000167697
0.02093
0.000132091
0.020998
0.000105542
0.0210392
8.58004e-05
0.0210616
7.08872e-05
0.0210698
5.92486e-05
0.021066
4.97297e-05
0.0210552
4.16155e-05
0.0210445
3.42556e-05
0.0210275
2.74194e-05
0.0210117
2.11861e-05
0.0210006
1.42522e-05
0.0209957
7.52829e-06
0.0209903
1.07641e-06
0.0209857
-5.53615e-06
0.0209838
-1.16042e-05
0.0209854
-1.77369e-05
0.0209877
-2.3314e-05
0.0209902
-2.85188e-05
0.0209906
-3.305e-05
-3.59458e-05
0.0161617
0.0166366
0.0173538
0.0180699
0.0187284
0.0193263
0.0198655
0.0203532
0.0207977
0.0212026
0.0215649
0.0218769
0.0221322
0.0223311
0.0224821
0.0225953
0.0226732
0.0227099
0.0227122
0.0227056
0.022713
0.0227436
0.0227911
0.0228424
0.0228834
0.0229051
0.0229033
0.0228789
0.0228341
0.0227733
0.022698
0.022612
0.0225144
0.0224078
0.0222921
0.0221663
0.0220324
0.0218861
0.0217296
0.021558
0.0213733
0.0211722
0.0209587
0.0207305
0.0204944
0.0202507
0.0200038
0.0197586
0.0195149
0.0192789
0.0190489
0.0188283
0.018616
0.018413
0.0182194
0.0180341
0.0178589
0.0176936
0.0175384
0.0173986
0.0172723
0.0171673
0.0170876
0.0170354
0.0170243
0.0170535
0.0171272
0.017255
0.0174444
0.0177077
0.0180446
0.0184416
0.018873
0.0193057
0.0197091
0.0200616
0.0203531
0.0205838
0.0207578
0.0208848
0.0209738
0.0210309
0.0210641
0.0210793
0.0210791
0.0210677
0.0210518
0.0210336
0.0210103
0.0209901
0.0209794
0.0209735
0.0209646
0.0209595
0.0209578
0.0209605
0.0209642
0.020967
0.0209673
)
;
boundaryField
{
inlet
{
type calculated;
value nonuniform List<scalar>
500
(
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
-0.0168001
)
;
}
outlet
{
type calculated;
value nonuniform List<scalar>
400
(
0.0099231
0.0112405
0.0126839
0.0137776
0.014802
0.0154928
0.0161552
0.0168308
0.0173611
0.0176947
0.0181381
0.0183987
0.018722
0.0190192
0.0193522
0.0197019
0.020071
0.0204723
0.0209931
0.0216352
0.0223681
0.0231218
0.0238555
0.0244887
0.0249572
0.0252776
0.0254658
0.0255188
0.025422
0.0251334
0.0247053
0.024022
0.023265
0.022544
0.0220066
0.0216099
0.0212657
0.0210505
0.0209871
0.0209638
0.00992277
0.0112402
0.0126835
0.0137773
0.0148016
0.0154924
0.0161548
0.0168304
0.0173608
0.0176944
0.0181378
0.0183985
0.0187219
0.0190192
0.0193523
0.0197022
0.0200714
0.0204731
0.0209945
0.0216367
0.0223696
0.0231231
0.023856
0.0244887
0.024957
0.0252772
0.0254652
0.025518
0.025421
0.0251322
0.0247048
0.0240221
0.0232651
0.0225431
0.0220046
0.0216075
0.021264
0.0210493
0.0209859
0.0209626
0.00992272
0.0112401
0.0126835
0.0137773
0.0148015
0.0154923
0.0161547
0.0168304
0.0173607
0.0176944
0.0181378
0.0183984
0.0187218
0.0190192
0.0193523
0.0197022
0.0200714
0.0204733
0.0209947
0.021637
0.0223698
0.0231233
0.0238562
0.0244888
0.024957
0.0252772
0.0254651
0.025518
0.0254209
0.0251321
0.0247048
0.0240221
0.0232652
0.022543
0.0220044
0.0216073
0.0212638
0.0210492
0.0209858
0.0209625
0.00992272
0.0112401
0.0126835
0.0137772
0.0148015
0.0154923
0.0161547
0.0168304
0.0173607
0.0176944
0.0181378
0.0183984
0.0187218
0.0190192
0.0193523
0.0197022
0.0200714
0.0204733
0.0209947
0.021637
0.0223698
0.0231233
0.0238562
0.0244888
0.024957
0.0252772
0.0254651
0.025518
0.0254209
0.0251321
0.0247048
0.0240221
0.0232652
0.022543
0.0220044
0.0216073
0.0212638
0.0210492
0.0209858
0.0209625
0.00992271
0.0112401
0.0126835
0.0137772
0.0148015
0.0154923
0.0161547
0.0168303
0.0173607
0.0176944
0.0181378
0.0183984
0.0187218
0.0190192
0.0193523
0.0197022
0.0200715
0.0204733
0.0209947
0.021637
0.0223699
0.0231234
0.0238562
0.0244888
0.024957
0.0252771
0.0254651
0.0255179
0.0254209
0.0251321
0.0247047
0.0240221
0.0232652
0.0225429
0.0220044
0.0216072
0.0212637
0.0210491
0.0209857
0.0209625
0.00992271
0.0112401
0.0126835
0.0137772
0.0148015
0.0154923
0.0161547
0.0168303
0.0173607
0.0176944
0.0181378
0.0183984
0.0187218
0.0190192
0.0193523
0.0197022
0.0200715
0.0204733
0.0209947
0.021637
0.0223699
0.0231234
0.0238562
0.0244888
0.024957
0.0252771
0.0254651
0.025518
0.0254209
0.0251321
0.0247047
0.0240221
0.0232652
0.0225429
0.0220044
0.0216072
0.0212637
0.0210491
0.0209857
0.0209625
0.00992271
0.0112401
0.0126835
0.0137772
0.0148015
0.0154923
0.0161547
0.0168303
0.0173607
0.0176944
0.0181378
0.0183984
0.0187218
0.0190192
0.0193523
0.0197022
0.0200714
0.0204733
0.0209947
0.021637
0.0223698
0.0231233
0.0238562
0.0244888
0.024957
0.0252772
0.0254651
0.025518
0.0254209
0.0251321
0.0247048
0.0240221
0.0232652
0.022543
0.0220044
0.0216073
0.0212638
0.0210492
0.0209858
0.0209625
0.00992272
0.0112401
0.0126835
0.0137773
0.0148015
0.0154923
0.0161547
0.0168304
0.0173607
0.0176944
0.0181378
0.0183984
0.0187218
0.0190192
0.0193523
0.0197022
0.0200714
0.0204733
0.0209947
0.021637
0.0223698
0.0231233
0.0238562
0.0244888
0.024957
0.0252772
0.0254651
0.025518
0.0254209
0.0251321
0.0247048
0.0240221
0.0232652
0.022543
0.0220044
0.0216073
0.0212638
0.0210492
0.0209858
0.0209625
0.00992277
0.0112402
0.0126835
0.0137773
0.0148016
0.0154924
0.0161548
0.0168304
0.0173608
0.0176944
0.0181378
0.0183985
0.0187219
0.0190192
0.0193523
0.0197022
0.0200714
0.0204731
0.0209945
0.0216367
0.0223696
0.0231231
0.023856
0.0244887
0.024957
0.0252772
0.0254652
0.025518
0.025421
0.0251322
0.0247048
0.0240221
0.0232651
0.0225431
0.0220046
0.0216076
0.021264
0.0210493
0.0209859
0.0209626
0.00992311
0.0112405
0.0126839
0.0137776
0.014802
0.0154928
0.0161552
0.0168308
0.0173611
0.0176947
0.0181381
0.0183987
0.018722
0.0190192
0.0193522
0.0197019
0.020071
0.0204723
0.0209931
0.0216351
0.022368
0.0231218
0.0238555
0.0244887
0.0249572
0.0252777
0.0254658
0.0255188
0.0254221
0.0251334
0.0247053
0.024022
0.023265
0.022544
0.0220067
0.02161
0.0212657
0.0210505
0.0209871
0.0209638
)
;
}
bottom
{
type symmetryPlane;
value uniform 0;
}
top
{
type symmetryPlane;
value uniform 0;
}
obstacle
{
type calculated;
value uniform 0;
}
defaultFaces
{
type empty;
value nonuniform 0();
}
}
// ************************************************************************* //
| [
"benroque94@gmail.com"
] | benroque94@gmail.com | |
59d66397c3924fecb8ec678a76ea308e079a257e | 5f0fa955729dd7594798125626ad9d817f117070 | /blimp_controller/roboard/roboard/libsrc/com.cpp | 6e3e800e1c8b1b1c53a9a05175275f8085f3d5ae | [] | no_license | slobdell/pycon_blimp | 7c6b1f60d88a4f182ee7bf5a5da2e63a7d9f9d25 | 93f85bd665060f2203fe2cc4141fe6711bb0047e | refs/heads/master | 2021-01-02T23:13:03.362122 | 2014-07-02T00:30:39 | 2014-07-02T00:30:39 | 21,406,421 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 35,274 | cpp | #define __COM_LIB
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
#define USE_COMMON
#include "common.h"
#include "io.h"
#include "com.h"
#if defined(RB_MSVC_WIN32) || defined(RB_MSVC_WINCE)
#include <windows.h>
#include <tchar.h>
#elif defined(RB_LINUX)
#include <unistd.h>
#include <termios.h>
#include <fcntl.h>
#include <errno.h>
#include <sys/ioctl.h>
#include <sys/resource.h>
#endif
#define COM_TIMEOUT (5000L) // timeout = 5s
static unsigned char COM_ctrlREG[4] = {0x53, 0xa0, 0xa4, 0xa8}; // SB UART-CTRL registers
static unsigned char COM_addrREG[4] = {0x54, 0xa0, 0xa4, 0xa8}; // SB UART-ADDR registers
#if defined(RB_MSVC_WIN32) || defined(RB_MSVC_WINCE)
#ifdef RB_MSVC_WINCE
static LPCTSTR COM_portname[4] = {_T("COM1:"), _T("COM2:"), _T("COM3:"), _T("COM4:")};
#else
static LPCTSTR COM_portname[4] = {_T("\\\\.\\COM1"), _T("\\\\.\\COM2"), _T("\\\\.\\COM3"), _T("\\\\.\\COM4")};
#endif
typedef struct com_port {
HANDLE fp;
DCB newstate;
DCB oldstate;
COMMTIMEOUTS newtimeouts;
COMMTIMEOUTS oldtimeouts;
} COM_t;
#elif defined(RB_LINUX)
static char* COM_portname[4] = {"/dev/ttyS0", "/dev/ttyS1", "/dev/ttyS2", "/dev/ttyS3"};
typedef struct com_port {
int fp;
termios newstate;
termios oldstate;
} COM_t;
#else
// TODO ...
typedef int* COM_t;
#endif
static COM_t COM_info[4];
static bool COM_oldTMode[4] = {false, false, false, false}; // old turbo-mode setting
static bool COM_oldFMode[4] = {false, false, false, false}; // old FIFO32-mode setting
static int COM_duplex[4] = {COM_FDUPLEX, COM_FDUPLEX, COM_FDUPLEX, COM_FDUPLEX}; // duplex-mode stting
static unsigned short COM_baseaddr[4] = {0x00, 0x00, 0x00, 0x00}; // I/O base address of each UART
/**************************** Internal Functions ****************************/
_RB_INLINE bool uart_isenabled(int com) {
if (com == COM_PORT1)
return ((read_sb_regb(COM_ctrlREG[com]) & 0x80) == 0)? false : true;
else
return ((read_sb_reg(COM_ctrlREG[com]) & (0x01L << 23)) == 0L)? false : true;
}
_RB_INLINE unsigned short uart_getbaseaddr(int com) {
return (unsigned short)(read_sb_reg(COM_addrREG[com]) & 0xfff8L);
}
_RB_INLINE void clear_rts(int com) {
#if defined(RB_MSVC_WIN32) || defined(RB_MSVC_WINCE)
EscapeCommFunction(COM_info[com].fp, CLRRTS);
#elif defined(RB_LINUX)
int cmd;
ioctl(COM_info[com].fp, TIOCMGET, &cmd);
cmd &= ~TIOCM_RTS;
ioctl(COM_info[com].fp, TIOCMSET, &cmd);
#endif
}
_RB_INLINE void set_rts(int com) {
#if defined(RB_MSVC_WIN32) || defined(RB_MSVC_WINCE)
EscapeCommFunction (COM_info[com].fp, SETRTS);
#elif defined(RB_LINUX)
int cmd;
ioctl(COM_info[com].fp, TIOCMGET, &cmd);
cmd |= TIOCM_RTS;
ioctl(COM_info[com].fp, TIOCMSET, &cmd);
#endif
}
_RB_INLINE int check_rfifo(int com) {
#if defined(RB_MSVC_WIN32) || defined(RB_MSVC_WINCE)
COMSTAT stat;
stat.cbInQue = 0;
if (ClearCommError(COM_info[com].fp, NULL, &stat) == FALSE) return -1;
return (int)(stat.cbInQue);
#elif defined(RB_LINUX)
int numbytes = 0;
if (ioctl(COM_info[com].fp, FIONREAD, &numbytes) < 0) return -1;
return numbytes;
#else
// TODO ...
return -1;
#endif
}
/*----------------------- end of Internal Functions ------------------------*/
static int COM_ioSection[4] = {-1, -1, -1, -1};
RBAPI(bool) com_InUse(int com) {
if((com < 0) || (com > 3)) return false;
if(COM_ioSection[com] != -1) return true; else return false;
}
RBAPI(bool) com_Init(int com, int duplex) {
if (com_InUse(com) == true)
{
err_SetMsg(ERROR_COM_INUSE, "COM%d was already opened", com);
return false;
}
#ifdef ROBOIO
duplex = (duplex == COM_ADUPLEX)? COM_FDUPLEX : duplex;
switch (roboio_GetRBVer())
{
case RB_100b1:
switch (com)
{
case COM_PORT1: COM_duplex[com] = (duplex != COM_HDUPLEX_TXDEN)? duplex : COM_HDUPLEX; break;
case COM_PORT2: COM_duplex[com] = COM_HDUPLEX_TXDEN; break;
case COM_PORT3: COM_duplex[com] = (duplex == COM_FDUPLEX)? duplex : COM_HDUPLEX; break;
case COM_PORT4: COM_duplex[com] = COM_HDUPLEX_RTS; break;
}
break;
case RB_100b2:
switch (com)
{
case COM_PORT1: COM_duplex[com] = COM_FDUPLEX; break;
case COM_PORT2: COM_duplex[com] = COM_HDUPLEX_TXDEN; break;
case COM_PORT3: COM_duplex[com] = (duplex == COM_FDUPLEX)? duplex : COM_HDUPLEX; break;
case COM_PORT4: COM_duplex[com] = COM_HDUPLEX_RTS; break;
}
break;
case RB_100b3:
switch (com)
{
case COM_PORT1: COM_duplex[com] = (duplex != COM_HDUPLEX_TXDEN)? duplex : COM_HDUPLEX; break;
case COM_PORT2: COM_duplex[com] = COM_HDUPLEX_TXDEN; break;
case COM_PORT3: COM_duplex[com] = (duplex == COM_FDUPLEX)? duplex : COM_HDUPLEX; break;
case COM_PORT4: COM_duplex[com] = COM_HDUPLEX; break;
}
break;
case RB_100:
case RB_100RD:
switch (com)
{
case COM_PORT1: COM_duplex[com] = COM_FDUPLEX; break;
case COM_PORT2: COM_duplex[com] = COM_HDUPLEX_TXDEN; break;
case COM_PORT3: COM_duplex[com] = (duplex == COM_FDUPLEX)? duplex : COM_HDUPLEX; break;
case COM_PORT4: COM_duplex[com] = COM_HDUPLEX; break;
}
break;
case RB_110:
case RB_050:
switch (com)
{
case COM_PORT1: COM_duplex[com] = COM_FDUPLEX; break;
case COM_PORT2: COM_duplex[com] = COM_HDUPLEX_TXDEN; break;
case COM_PORT3: COM_duplex[com] = (duplex == COM_FDUPLEX)? duplex : COM_HDUPLEX; break;
case COM_PORT4: COM_duplex[com] = (duplex == COM_FDUPLEX)? duplex : COM_HDUPLEX; break;
}
break;
default:
err_SetMsg(ERROR_RBVER_UNKNOWN, "unrecognized RoBoard");
return false;
}
#else
COM_duplex[com] = duplex;
#endif
if((COM_ioSection[com] = io_Init()) == -1) return false;
if(uart_isenabled(com) == false)
{
err_SetMsg(ERROR_COM_INVALID, "COM%d isn't enabled in BIOS", com);
goto COMINIT_FAIL;
}
COM_baseaddr[com] = uart_getbaseaddr(com);
COM_oldTMode[com] = com_IsTurboMode(com);
COM_oldFMode[com] = com_IsFIFO32Mode(com);
#if defined(RB_MSVC_WIN32) || defined(RB_MSVC_WINCE)
{
#ifdef RB_MSVC_WINCE
int idx = com;
#else
int i, idx;
// find the device name of the COM port
for (idx=0, i=0; i<com; i++) if (uart_isenabled(i) == true) idx++;
#endif
COM_info[com].fp = CreateFile(
COM_portname[idx], // device name of COM port
GENERIC_READ | GENERIC_WRITE, // access mode
0, // share mode
0, // security attributes
OPEN_EXISTING, // opens a device only if it exists
0, // non-overlapped
NULL); // NULL when opening an existing file
if (COM_info[com].fp == INVALID_HANDLE_VALUE)
{
err_SetMsg(ERROR_COM_FAIL, "cannot open COM%d device driver", com);
goto COMINIT_FAIL;
}
// backup the old DCB
if (GetCommState(COM_info[com].fp, &(COM_info[com].oldstate)) == FALSE)
{
err_SetMsg(ERROR_COM_FAIL, "fail to get DCB settings");
goto COMINIT_FAIL2;
}
memcpy(&(COM_info[com].newstate), &(COM_info[com].oldstate), sizeof(DCB));
// set new DCB
COM_info[com].newstate.fBinary = TRUE; // binary mode
COM_info[com].newstate.fOutxCtsFlow = FALSE; // no CTS output control
COM_info[com].newstate.fOutxDsrFlow = FALSE; // no DSR output control
COM_info[com].newstate.fDtrControl = DTR_CONTROL_DISABLE; // no DRT control
COM_info[com].newstate.fDsrSensitivity = FALSE; // no sensitive to DSR
COM_info[com].newstate.fOutX = FALSE; // no S/W output flow control
COM_info[com].newstate.fInX = FALSE; // no S/W input flow control
COM_info[com].newstate.fErrorChar = FALSE; // no replace parity-error byte
COM_info[com].newstate.fNull = FALSE; // no discard NULL byte
COM_info[com].newstate.fRtsControl = RTS_CONTROL_DISABLE; // no S/W input flow control
COM_info[com].newstate.fAbortOnError = FALSE; // no terminate on errors
if (SetCommState(COM_info[com].fp, &(COM_info[com].newstate)) == FALSE)
{
err_SetMsg(ERROR_COM_FAIL, "fail to set DCB settings");
goto COMINIT_FAIL2;
}
// get old timeout parameters
if (GetCommTimeouts(COM_info[com].fp, &(COM_info[com].oldtimeouts)) == FALSE)
{
err_SetMsg(ERROR_COM_FAIL, "fail to get TIMEOUTS settings");
goto COMINIT_FAIL3;
}
// set timeout parameters (no waiting on read/write)
COM_info[com].newtimeouts.ReadIntervalTimeout = MAXDWORD;
COM_info[com].newtimeouts.ReadTotalTimeoutConstant = 0;
COM_info[com].newtimeouts.ReadTotalTimeoutMultiplier = 0;
COM_info[com].newtimeouts.WriteTotalTimeoutConstant = 0;
COM_info[com].newtimeouts.WriteTotalTimeoutMultiplier = 0;
if (SetCommTimeouts(COM_info[com].fp, &(COM_info[com].newtimeouts)) == FALSE)
{
err_SetMsg(ERROR_COM_FAIL, "fail to set TIMEOUT parameters");
goto COMINIT_FAIL3;
}
ClearCommBreak(COM_info[com].fp);
ClearCommError(COM_info[com].fp, NULL, NULL); // clear all communication errors
SetupComm(COM_info[com].fp, 8192, 8192); // set read/write FIFO to 8KB
PurgeComm(COM_info[com].fp, PURGE_RXABORT | PURGE_RXCLEAR | PURGE_TXABORT | PURGE_TXCLEAR); // clear all communication buffers
}
#elif defined(RB_LINUX)
if ((COM_info[com].fp = open(COM_portname[com], O_RDWR | O_NOCTTY | O_NONBLOCK)) < 0)
{
err_SetMsg(ERROR_COM_FAIL, "cannot open COM%d device driver", com);
goto COMINIT_FAIL;
}
// backup the old termios settings
if (tcgetattr(COM_info[com].fp, &(COM_info[com].oldstate)) < 0)
{
err_SetMsg(ERROR_COM_FAIL, "fail to get termios settings");
goto COMINIT_FAIL2;
}
memcpy(&(COM_info[com].newstate), &(COM_info[com].oldstate), sizeof(termios));
// set new termios settings
COM_info[com].newstate.c_cflag |= CLOCAL | CREAD;
COM_info[com].newstate.c_cflag &= ~CRTSCTS; // disable H/W flow control
COM_info[com].newstate.c_lflag &= ~(ICANON | // raw mode
ISIG | // disable SIGxxxx signals
IEXTEN | // disable extended functions
ECHO | ECHOE); // disable all auto-echo functions
COM_info[com].newstate.c_iflag &= ~(IXON | IXOFF | IXANY); // disable S/W flow control
COM_info[com].newstate.c_oflag &= ~OPOST; // raw output
COM_info[com].newstate.c_cc[VTIME] = 0; // no waiting to read
COM_info[com].newstate.c_cc[VMIN] = 0;
if(tcsetattr(COM_info[com].fp, TCSANOW, &(COM_info[com].newstate)) < 0)
{
err_SetMsg(ERROR_COM_FAIL, "fail to set termios settings");
goto COMINIT_FAIL2;
}
// clear input/output buffers
tcflush(COM_info[com].fp, TCIOFLUSH);
#else
// TODO ...
err_SetMsg(ERROR_COM_INVALID, "unsupported platform");
goto COMINIT_FAIL;
#endif
if (COM_duplex[com] == COM_HDUPLEX_RTS) clear_rts(com); // set COM direction as input
com_SetFormat(com, COM_BYTESIZE8, COM_STOPBIT1, COM_NOPARITY); // default data format: 8 bits, 1 stop bit, no parity
com_SetBaud(com, COMBAUD_115200BPS); // default baudrate: 115200 bps
com_EnableFIFO32(com); // set Vortex86DX's UART FIFO as 32 bytes
return true;
#if defined(RB_MSVC_WIN32) || defined(RB_MSVC_WINCE)
COMINIT_FAIL3:
SetCommState(COM_info[com].fp, &(COM_info[com].oldstate));
COMINIT_FAIL2:
CloseHandle(COM_info[com].fp);
#elif defined(RB_LINUX)
COMINIT_FAIL2:
close(COM_info[com].fp);
#endif
COMINIT_FAIL:
io_Close(COM_ioSection[com]);
COM_ioSection[com] = -1;
return false;
}
RBAPI(void) com_Close(int com) {
if(com_InUse(com) == false) return;
#if defined(RB_MSVC_WIN32) || defined(RB_MSVC_WINCE)
SetCommTimeouts(COM_info[com].fp, &COM_info[com].oldtimeouts);
SetCommState(COM_info[com].fp, &(COM_info[com].oldstate));
CloseHandle(COM_info[com].fp);
#elif defined(RB_LINUX)
tcsetattr(COM_info[com].fp, TCSANOW, &(COM_info[com].oldstate));
close(COM_info[com].fp);
#endif
if (COM_oldTMode[com] == true) com_EnableTurboMode(com); else com_DisableTurboMode(com);
if (COM_oldFMode[com] == true) com_EnableFIFO32(com); else com_DisableFIFO32(com);
io_Close(COM_ioSection[com]);
COM_ioSection[com] = -1;
}
RBAPI(bool) com_SetFormat(int com, int bytesize, int stopbit, int parity) {
#if defined(RB_MSVC_WIN32) || defined(RB_MSVC_WINCE)
COM_info[com].newstate.ByteSize = bytesize;
switch (stopbit)
{
case COM_STOPBIT1: COM_info[com].newstate.StopBits = ONESTOPBIT; break;
case COM_STOPBIT2: COM_info[com].newstate.StopBits = TWOSTOPBITS; break;
}
switch (parity)
{
case COM_NOPARITY:
COM_info[com].newstate.Parity = NOPARITY; break;
case COM_ODDPARITY:
COM_info[com].newstate.Parity = ODDPARITY; break;
case COM_EVENPARITY:
COM_info[com].newstate.Parity = EVENPARITY; break;
}
if (SetCommState(COM_info[com].fp, &(COM_info[com].newstate)) == FALSE)
{
err_SetMsg(ERROR_COM_FAIL, "fail to set DCB settings");
return false;
}
#elif defined(RB_LINUX)
switch (bytesize)
{
case COM_BYTESIZE5:
COM_info[com].newstate.c_cflag = (COM_info[com].newstate.c_cflag & ~CSIZE) | CS5; break;
case COM_BYTESIZE6:
COM_info[com].newstate.c_cflag = (COM_info[com].newstate.c_cflag & ~CSIZE) | CS6; break;
case COM_BYTESIZE7:
COM_info[com].newstate.c_cflag = (COM_info[com].newstate.c_cflag & ~CSIZE) | CS7; break;
case COM_BYTESIZE8:
COM_info[com].newstate.c_cflag = (COM_info[com].newstate.c_cflag & ~CSIZE) | CS8; break;
}
switch (stopbit)
{
case COM_STOPBIT1: COM_info[com].newstate.c_cflag &= ~CSTOPB; break;
case COM_STOPBIT2: COM_info[com].newstate.c_cflag |= CSTOPB; break;
}
switch (parity)
{
case COM_NOPARITY:
COM_info[com].newstate.c_cflag &= ~PARENB;
COM_info[com].newstate.c_iflag |= IGNPAR;
COM_info[com].newstate.c_iflag &= ~(INPCK | ISTRIP | PARMRK);
break;
case COM_ODDPARITY:
COM_info[com].newstate.c_cflag |= (PARENB | PARODD);
//COM_info[com].newstate.c_iflag |= (INPCK | ISTRIP | PARMRK);
COM_info[com].newstate.c_iflag |= INPCK; // enable input parity check
COM_info[com].newstate.c_iflag &= ~(ISTRIP | PARMRK | IGNPAR); // neither strip the 8-th bit nor mark parity errors
break;
case COM_EVENPARITY:
COM_info[com].newstate.c_cflag |= PARENB;
COM_info[com].newstate.c_cflag &= ~PARODD;
//COM_info[com].newstate.c_iflag |= (INPCK | ISTRIP | PARMRK);
COM_info[com].newstate.c_iflag |= INPCK; // enable input parity check
COM_info[com].newstate.c_iflag &= ~(ISTRIP | PARMRK | IGNPAR); // neither strip the 8-th bit nor mark parity errors
break;
}
if(tcsetattr(COM_info[com].fp, TCSANOW, &(COM_info[com].newstate)) < 0)
{
err_SetMsg(ERROR_COM_FAIL, "fail to set termios settings");
return false;
}
#else
// TODO ...
err_SetMsg(ERROR_COM_INVALID, "unsupported platform");
return false;
#endif
return true;
}
RBAPI(bool) com_SetBaud(int com, unsigned int baudrate) {
unsigned int baud = baudrate;
switch (baudrate)
{
case COMBAUD_748800BPS: baud = COMBAUD_57600BPS; break;
case COMBAUD_499200BPS: baud = COMBAUD_38400BPS; break;
case COMBAUD_249600BPS: baud = COMBAUD_19200BPS; break;
}
#if defined(RB_MSVC_WIN32) || defined(RB_MSVC_WINCE)
{
DWORD oldbaud = COM_info[com].newstate.BaudRate;
switch (baud)
{
case COMBAUD_50BPS: COM_info[com].newstate.BaudRate = 50; break;
case COMBAUD_300BPS: COM_info[com].newstate.BaudRate = 300; break;
case COMBAUD_1200BPS: COM_info[com].newstate.BaudRate = 1200; break;
case COMBAUD_2400BPS: COM_info[com].newstate.BaudRate = 2400; break;
case COMBAUD_4800BPS: COM_info[com].newstate.BaudRate = 4800; break;
case COMBAUD_9600BPS: COM_info[com].newstate.BaudRate = 9600; break;
case COMBAUD_19200BPS: COM_info[com].newstate.BaudRate = 19200; break;
case COMBAUD_38400BPS: COM_info[com].newstate.BaudRate = 38400; break;
case COMBAUD_57600BPS: COM_info[com].newstate.BaudRate = 57600; break;
case COMBAUD_115200BPS: COM_info[com].newstate.BaudRate = 115200; break;
}
if (SetCommState(COM_info[com].fp, &(COM_info[com].newstate)) == FALSE)
{
COM_info[com].newstate.BaudRate = oldbaud;
err_SetMsg(ERROR_COM_FAIL, "fail to set DCB settings");
return false;
}
}
#elif defined(RB_LINUX)
{
speed_t oldospeed = cfgetospeed(&(COM_info[com].newstate));
speed_t oldispeed = cfgetispeed(&(COM_info[com].newstate));
speed_t newspeed = B50;
switch (baud)
{
case COMBAUD_50BPS: newspeed = B50; break;
case COMBAUD_300BPS: newspeed = B300; break;
case COMBAUD_1200BPS: newspeed = B1200; break;
case COMBAUD_2400BPS: newspeed = B2400; break;
case COMBAUD_4800BPS: newspeed = B4800; break;
case COMBAUD_9600BPS: newspeed = B9600; break;
case COMBAUD_19200BPS: newspeed = B19200; break;
case COMBAUD_38400BPS: newspeed = B38400; break;
case COMBAUD_57600BPS: newspeed = B57600; break;
case COMBAUD_115200BPS: newspeed = B115200; break;
}
cfsetospeed(&(COM_info[com].newstate), newspeed);
cfsetispeed(&(COM_info[com].newstate), newspeed);
if(tcsetattr(COM_info[com].fp, TCSANOW, &(COM_info[com].newstate)) < 0)
{
cfsetospeed(&(COM_info[com].newstate), oldospeed);
cfsetispeed(&(COM_info[com].newstate), oldispeed);
err_SetMsg(ERROR_COM_FAIL, "fail to set termios settings");
return false;
}
}
#else
// TODO ...
err_SetMsg(ERROR_COM_INVALID, "unsupported platform");
return false;
#endif
if ((baudrate & 0x8000) != 0) com_EnableTurboMode(com); else com_DisableTurboMode(com);
return true;
}
#define MAXRWSIZE (256)
RBAPI(bool) com_Receive(int com, unsigned char* buf, int bsize) {
int numbytes, bsize2;
unsigned long nowtime;
if (bsize <= 0) return true;
for (; bsize > 0; bsize -= bsize2, buf += bsize2)
{
bsize2 = (bsize <= MAXRWSIZE)? bsize : MAXRWSIZE;
// wait enough bytes to read
for (nowtime = timer_nowtime(); (numbytes = check_rfifo(com)) < bsize2; )
{
if (numbytes < 0)
{
err_SetMsg(ERROR_COM_READFAIL, "fail to check read FIFO");
return false;
}
if ((timer_nowtime() - nowtime) > COM_TIMEOUT)
{
err_SetMsg(ERROR_COM_READFAIL, "time-out to read bytes");
return false;
}
} // end for (nowtime...
#if defined(RB_MSVC_WIN32) || defined(RB_MSVC_WINCE)
if (ReadFile(COM_info[com].fp, buf, bsize2, (LPDWORD)&numbytes, NULL) == FALSE)
{
err_SetMsg(ERROR_COM_READFAIL, "ReadFile() fails");
return false;
}
#elif defined(RB_LINUX)
/*
if ((numbytes = read(COM_info[com].fp, buf, bsize2)) < 0)
{
err_SetMsg(ERROR_COM_READFAIL, "read() fails");
return false;
}
*/
while ((numbytes = read(COM_info[com].fp, buf, bsize2)) < 0)
{
if (errno != EINTR)
{
err_SetMsg(ERROR_COM_READFAIL, "read() fails");
return false;
}
if ((timer_nowtime() - nowtime) > (2L*COM_TIMEOUT)) // note nowtime's value is from the above code of waiting rfifo
{
err_SetMsg(ERROR_COM_READFAIL, "time-out to read bytes");
return false;
}
}
#else
// TODO ...
err_SetMsg(ERROR_COM_INVALID, "unsupported platform");
return false;
#endif
if (numbytes != bsize2)
{
err_SetMsg(ERROR_COM_READFAIL, "cannot read enough bytes");
return false;
}
} // end for (; bsize...
return true;
}
RBAPI(unsigned int) com_Read(int com) {
#if defined(RB_MSVC_WIN32) || defined(RB_MSVC_WINCE) || defined(RB_LINUX)
unsigned char val;
if (com_Receive(com, &val, 1) == false) return 0xffff;
return (unsigned int)val;
#else
// TODO ...
err_SetMsg(ERROR_COM_INVALID, "unsupported platform");
return 0xffff;
#endif
}
RBAPI(bool) com_ClearRFIFO(int com) {
#if defined(RB_MSVC_WIN32) || defined(RB_MSVC_WINCE)
if (PurgeComm(COM_info[com].fp, PURGE_RXCLEAR) == FALSE)
{
err_SetMsg(ERROR_COM_FAIL, "fail to clear read FIFO");
return false;
}
#elif defined(RB_LINUX)
if (tcflush(COM_info[com].fp, TCIFLUSH) < 0)
{
err_SetMsg(ERROR_COM_FAIL, "fail to clear read FIFO");
return false;
}
#endif
return true;
}
RBAPI(int) com_QueryRFIFO(int com) {
int numbytes = check_rfifo(com);
if (numbytes < 0) err_SetMsg(ERROR_COM_FAIL, "fail to query read FIFO");
return numbytes;
}
#if defined(RB_MSVC_WIN32)
static HANDLE hApp, hThread;
static int iPriorityClass, iPriority;
#elif defined(RB_MSVC_WINCE)
static HANDLE hThread;
static int iPriority;
#elif defined(RB_LINUX)
static int iPriority;
#endif
static void MPOS_Start(void) {
#if defined(RB_MSVC_WIN32)
hApp = GetCurrentProcess();
hThread = GetCurrentThread();
iPriorityClass = GetPriorityClass(hApp);
iPriority = GetThreadPriority(hThread);
if (iPriorityClass != 0) SetPriorityClass(hApp, REALTIME_PRIORITY_CLASS);
if (iPriority != THREAD_PRIORITY_ERROR_RETURN) SetThreadPriority(hThread, THREAD_PRIORITY_TIME_CRITICAL);
#elif defined(RB_MSVC_WINCE)
hThread = GetCurrentThread();
iPriority = GetThreadPriority(hThread);
if (iPriority != THREAD_PRIORITY_ERROR_RETURN) SetThreadPriority(hThread, THREAD_PRIORITY_TIME_CRITICAL);
#elif defined(RB_LINUX)
iPriority = getpriority(PRIO_PROCESS, 0); //lazy to check error:p
setpriority(PRIO_PROCESS, 0, -20);
#else
//backup & disable all IRQ except COM port's IRQ
#endif
}
static void MPOS_End(void) {
#if defined(RB_MSVC_WIN32)
if (iPriorityClass != 0) SetPriorityClass(hApp, iPriorityClass);
if (iPriority != THREAD_PRIORITY_ERROR_RETURN) SetThreadPriority(hThread, iPriority);
#elif defined(RB_MSVC_WINCE)
if (iPriority != THREAD_PRIORITY_ERROR_RETURN) SetThreadPriority(hThread, iPriority);
#elif defined(RB_LINUX)
setpriority(PRIO_PROCESS, 0, iPriority);
#else
//restore all IRQ settings
#endif
}
RBAPI(bool) com_Send(int com, unsigned char* buf, int bsize) {
unsigned long nowtime;
int numbytes = 0, bsize2;
if (bsize <= 0) return true;
if (COM_duplex[com] == COM_HDUPLEX_RTS)
{
MPOS_Start();
set_rts(com);
}
while (bsize > 0)
{
bsize2 = (bsize <= MAXRWSIZE)? bsize : MAXRWSIZE;
for (nowtime = timer_nowtime(); bsize2 > 0; buf += numbytes, bsize2 -= numbytes, bsize -= numbytes)
{
#if defined(RB_MSVC_WIN32) || defined(RB_MSVC_WINCE)
if (WriteFile(COM_info[com].fp, buf, bsize2, (LPDWORD)&numbytes, NULL) == FALSE)
{
err_SetMsg(ERROR_COM_SENDFAIL, "WriteFile() fails");
goto SEND_FAIL;
}
#elif defined(RB_LINUX)
if ((numbytes = write(COM_info[com].fp, buf, bsize2)) < 0)
{
if ((errno != EINTR) && (errno != EAGAIN))
{
err_SetMsg(ERROR_COM_SENDFAIL, "write() fails");
goto SEND_FAIL;
}
numbytes = 0;
}
#else
// TODO ...
err_SetMsg(ERROR_COM_INVALID, "unsupported platform");
goto SEND_FAIL;
#endif
if ((timer_nowtime() - nowtime) > COM_TIMEOUT)
{
err_SetMsg(ERROR_COM_SENDFAIL, "time-out to write bytes");
goto SEND_FAIL;
}
} // for (nowtime...
} // end while (bsize...
if (COM_duplex[com] == COM_HDUPLEX_RTS)
{
com_FlushWFIFO(com);
clear_rts(com);
MPOS_End();
}
return true;
SEND_FAIL:
if (COM_duplex[com] == COM_HDUPLEX_RTS)
{
clear_rts(com);
MPOS_End();
}
return false;
}
RBAPI(bool) com_Write(int com, unsigned char val) {
#if defined(RB_MSVC_WIN32) || defined(RB_MSVC_WINCE) || defined(RB_LINUX)
return com_Send(com, &val, 1);
#else
// TODO ...
err_SetMsg(ERROR_COM_INVALID, "unsupported platform");
return false;
#endif
}
RBAPI(bool) com_FlushWFIFO(int com) {
#if defined(RB_MSVC_WIN32) || defined(RB_MSVC_WINCE)
if (FlushFileBuffers(COM_info[com].fp) == FALSE)
{
err_SetMsg(ERROR_COM_FAIL, "FlushFileBuffers() fails");
return false;
}
#elif defined(RB_LINUX)
if (COM_duplex[com] != COM_HDUPLEX_RTS)
{
if (tcdrain(COM_info[com].fp) < 0)
{
err_SetMsg(ERROR_COM_FAIL, "tcdrain() fails");
return false;
}
}
else // tcdrain() is too slow in the purpose of switching RTS to read servos in readtime
{
//use "ioctl(fd, FIONWRITE, &nBytes)" to wait write-FIFO empty...
}
#endif
if (COM_duplex[com] == COM_HDUPLEX_RTS) // ensure that all bytes in 16550 FIFO have been sent
while((io_inpb(COM_baseaddr[com] + 5) & 0x60) != 0x60);
return true;
}
RBAPI(bool) com_ClearWFIFO(int com) {
#if defined(RB_MSVC_WIN32) || defined(RB_MSVC_WINCE)
if (PurgeComm(COM_info[com].fp, PURGE_TXCLEAR) == FALSE)
{
err_SetMsg(ERROR_COM_FAIL, "fail to clear write FIFO");
return false;
}
#elif defined(RB_LINUX)
if (tcflush(COM_info[com].fp, TCOFLUSH) < 0)
{
err_SetMsg(ERROR_COM_FAIL, "fail to clear write FIFO");
return false;
}
#endif
return true;
}
#ifdef ROBOIO
RBAPI(bool) com_ServoTRX(int com, unsigned char* cmd, int csize, unsigned char* buf, int bsize) {
com_ClearRFIFO(com);
if (com_Send(com, cmd, csize) == false) return false;
if (COM_duplex[com] == COM_HDUPLEX) // discard the first-received csize bytes in case of TX/RX-short
{
int i; unsigned int tmpbyte; bool errflag = false;
for (i=0; i<csize; i++)
{
if ((tmpbyte = com_Read(com)) == 0xffff) return false;
if ((unsigned char)tmpbyte != cmd[i]) errflag = true;
}
if (errflag == true)
{
err_SetMsg(ERROR_COM_FAIL, "receive a wrong self-feedback byte");
return false;
}
} // end if (COM_duplex[com] ...
if ((buf != NULL) && (bsize > 0)) //&&
if (com_Receive(com, buf, bsize) == false) return false;
return true;
}
#endif
/************************* Isolated COM lib Functions ***********************/
RBAPI(void) com_EnableTurboMode(int com) {
if ((com < 0) || (com > 3) || (io_CpuID() != CPU_VORTEX86DX_3)) return;
if (com == COM_PORT1)
write_sb_regb(COM_ctrlREG[com], read_sb_regb(COM_ctrlREG[com]) | ((unsigned char)1<<6));
else // COM2 ~ COM4
write_sb_reg(COM_ctrlREG[com], read_sb_reg(COM_ctrlREG[com]) | (1L<<22));
}
RBAPI(void) com_DisableTurboMode(int com) {
if ((com < 0) || (com > 3) || (io_CpuID() != CPU_VORTEX86DX_3)) return;
if (com == COM_PORT1)
write_sb_regb(COM_ctrlREG[com], read_sb_regb(COM_ctrlREG[com]) & ~((unsigned char)1<<6));
else // COM2 ~ COM4
write_sb_reg(COM_ctrlREG[com], read_sb_reg(COM_ctrlREG[com]) & ~(1L<<22));
}
RBAPI(bool) com_IsTurboMode(int com) {
if ((com < 0) || (com > 3) || (io_CpuID() != CPU_VORTEX86DX_3)) return false;
if (com == COM_PORT1)
{
if ((read_sb_regb(COM_ctrlREG[com]) & ((unsigned char)1<<6)) == 0) return false;
}
else
{
if ((read_sb_reg(COM_ctrlREG[com]) & (1L<<22)) == 0L) return false;
}
return true;
}
RBAPI(void) com_EnableFIFO32(int com) {
if ((com < 0) || (com > 3)) return;
if (com == COM_PORT1)
write_sb_regb(COM_ctrlREG[com], read_sb_regb(COM_ctrlREG[com]) | ((unsigned char)1<<4));
else // COM2 ~ COM4
write_sb_reg(COM_ctrlREG[com], read_sb_reg(COM_ctrlREG[com]) | (1L<<21));
}
RBAPI(void) com_DisableFIFO32(int com) {
if ((com < 0) || (com > 3)) return;
if (com == COM_PORT1)
write_sb_regb(COM_ctrlREG[com], read_sb_regb(COM_ctrlREG[com]) & ~((unsigned char)1<<4));
else // COM2 ~ COM4
write_sb_reg(COM_ctrlREG[com], read_sb_reg(COM_ctrlREG[com]) & ~(1L<<21));
}
RBAPI(bool) com_IsFIFO32Mode(int com) {
if ((com < 0) || (com > 3)) return false;
if (com == COM_PORT1)
{
if ((read_sb_regb(COM_ctrlREG[com]) & ((unsigned char)1<<4)) == 0) return false;
}
else
{
if ((read_sb_reg(COM_ctrlREG[com]) & (1L<<21)) == 0L) return false;
}
return true;
}
/*-------------------- end of Isolated COM lib Functions -------------------*/
/**************************** COM STDIO Functions ***************************/
#ifdef _MANAGED
#pragma managed(push, off)
#endif
_RBAPI_C(bool) com_printf(int com, char* fmt, ...) {
char buf[512];
va_list args;
va_start(args, fmt);
vsprintf(buf, fmt, args);
va_end(args);
return com_Send(com, (unsigned char*)buf, (int)strlen(buf));
}
_RBAPI_C(bool) com1_printf(char* fmt, ...) {
char buf[512];
va_list args;
va_start(args, fmt);
vsprintf(buf, fmt, args);
va_end(args);
return com1_Send((unsigned char*)buf, (int)strlen(buf));
}
_RBAPI_C(bool) com2_printf(char* fmt, ...) {
char buf[512];
va_list args;
va_start(args, fmt);
vsprintf(buf, fmt, args);
va_end(args);
return com2_Send((unsigned char*)buf, (int)strlen(buf));
}
_RBAPI_C(bool) com3_printf(char* fmt, ...) {
char buf[512];
va_list args;
va_start(args, fmt);
vsprintf(buf, fmt, args);
va_end(args);
return com3_Send((unsigned char*)buf, (int)strlen(buf));
}
_RBAPI_C(bool) com4_printf(char* fmt, ...) {
char buf[512];
va_list args;
va_start(args, fmt);
vsprintf(buf, fmt, args);
va_end(args);
return com4_Send((unsigned char*)buf, (int)strlen(buf));
}
#ifdef _MANAGED
#pragma managed(pop)
#endif
RBAPI(bool) com_kbhit(int com) {
if (check_rfifo(com) > 0) return true;
return false;
}
RBAPI(unsigned int) com_getch(int com) {
int numbytes;
while ((numbytes = check_rfifo(com)) <= 0)
if (numbytes < 0) return 0xffff;
return (int)com_Read(com);
}
/*---------------------- end of COM STDIO Functions -------------------------*/
| [
"slobdell@hearsaycorp.com"
] | slobdell@hearsaycorp.com |
c12c895e373952b9cdaa80a1c8539912f7ffcde8 | c46fb68af825034eac40af2272b0febd4ee8fbbf | /libsensor_vl53l0_tof_af/SensorBase.cpp | 634a5f85e82818332687ed0523e98fce998878b2 | [
"Apache-2.0"
] | permissive | maxwellxy/vl53l0-androidHAL | 7df400e5ff720b852435e537e24fa6356447b0b9 | 995b031f6f6fc7a462c8cdb795baa502026bd8b2 | refs/heads/master | 2020-03-22T23:12:01.857213 | 2016-12-08T23:36:58 | 2016-12-08T23:41:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,323 | cpp | /*
* Copyright (C) 2014 STMicroelectronice, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <fcntl.h>
#include <errno.h>
#include <math.h>
#include <poll.h>
#include <unistd.h>
#include <dirent.h>
#include <sys/select.h>
#include <cutils/log.h>
#include <linux/input.h>
#include "SensorBase.h"
/*****************************************************************************/
SensorBase::SensorBase(
const char* dev_name,
const char* data_name)
: dev_name(dev_name), data_name(data_name),
dev_fd(-1), data_fd(-1)
{
if (data_name) {
data_fd = openInput(data_name);
}
}
SensorBase::~SensorBase() {
if (data_fd >= 0) {
close(data_fd);
}
if (dev_fd >= 0) {
close(dev_fd);
}
}
int SensorBase::open_device() {
if (dev_fd<0 && dev_name) {
dev_fd = open(dev_name, O_RDONLY);
LOGE_IF(dev_fd<0, "Couldn't open %s (%s)", dev_name, strerror(errno));
}
return 0;
}
int SensorBase::close_device() {
if (dev_fd >= 0) {
close(dev_fd);
dev_fd = -1;
}
return 0;
}
int SensorBase::getFd() const {
if (!data_name) {
return dev_fd;
}
return data_fd;
}
int SensorBase::setDelay(int32_t handle, int64_t ns) {
return 0;
}
bool SensorBase::hasPendingEvents() const {
return false;
}
int64_t SensorBase::getTimestamp() {
struct timespec t;
t.tv_sec = t.tv_nsec = 0;
clock_gettime(CLOCK_MONOTONIC, &t);
return int64_t(t.tv_sec)*1000000000LL + t.tv_nsec;
}
#if 0
int SensorBase::openInput(const char* inputName) {
int fd = -1;
char devname[PATH_MAX] = "/dev/stm_sensor";
char *filename;
fd = open(devname, O_RDONLY);
if (fd>=0) {
char name[80];
if (ioctl(fd, EVIOCGNAME(sizeof(name) - 1), &name) < 1) {
name[0] = '\0';
}
if (!strcmp(name, inputName)) {
strcpy(input_name, devname);
} else {
close(fd);
fd = -1;
}
}
LOGE_IF(fd<0, "couldn't find '%s' input device", inputName);
return fd;
}
#endif
int SensorBase::openInput(const char* inputName) {
int fd = -1;
const char *dirname = "/dev/input";
char devname[PATH_MAX];
char *filename;
DIR *dir;
struct dirent *de;
dir = opendir(dirname);
if(dir == NULL)
return -1;
strlcpy(devname, dirname, PATH_MAX);
filename = devname + strlen(devname);
*filename++ = '/';
LOGE("openInput");
while((de = readdir(dir))) {
if(de->d_name[0] == '.' &&
(de->d_name[1] == '\0' ||
(de->d_name[1] == '.' && de->d_name[2] == '\0')))
continue;
strcpy(filename, de->d_name);
fd = open(devname, O_RDONLY);
LOGE("devname: %s", devname);
if (fd>=0) {
char name[80];
if (ioctl(fd, EVIOCGNAME(sizeof(name) - 1), &name) < 1) {
name[0] = '\0';
}
if (!strcmp(name, inputName)) {
LOGE("inputName: %s found", inputName);
strlcpy(input_name, filename, PATH_MAX);
break;
} else {
close(fd);
fd = -1;
}
}
}
closedir(dir);
ALOGE_IF(fd<0, "couldn't find '%s' input device", inputName);
return fd;
}
int SensorBase::enable(int32_t handle, int enabled)
{
return 0;
}
int SensorBase::query(int what, int* value)
{
return 0;
}
int SensorBase::batch(int handle, int flags, int64_t period_ns, int64_t timeout)
{
return 0;
}
int SensorBase::flush(int handle)
{
return 0;
}
| [
"kalyan-kumar.vadlamudireddy@st.com"
] | kalyan-kumar.vadlamudireddy@st.com |
da03dfa60a185cc4c338dba9f75c32f915656dae | 37e3162d21ff298b7e646d698c18278959353d4e | /Lintcode-167/Lintcode-167/main.cpp | 6e1eb20a4351959dcdb978ac079933ddf9795659 | [] | no_license | leojing/Lintcode | 427395e8940b5ecb2e34c9d6e687cc5cf9ca3ee0 | 398d8b6df1831694aff19e349a7035275ea81013 | refs/heads/master | 2022-07-04T08:56:41.806784 | 2022-04-30T13:16:50 | 2022-05-12T12:03:15 | 145,299,605 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,946 | cpp | //
// main.cpp
// Lintcode-167
//
// Created by Jing Luo on 5/1/20.
// Copyright © 2020 Jing Luo. All rights reserved.
//
#include <iostream>
class ListNode {
public:
int val;
ListNode *next;
ListNode(int val) {
this->val = val;
this->next = NULL;
}
};
ListNode * addLists(ListNode * l1, ListNode * l2) {
if (l1 == NULL && l2 == NULL) { // Edge case, 0 + 0 = 0
return new ListNode(0);
}
ListNode *result = NULL;
ListNode *current = NULL;
int mod = 0;
int sum = 0;
while (l1 != NULL || l2 != NULL) {
int first = 0;
if (l1 != NULL) {
first = l1->val;
l1 = l1->next;
}
int second = 0;
if (l2 != NULL) {
second = l2->val;
l2 = l2->next;
}
sum = first + second + mod;
mod = sum / 10;
int dig = sum % 10;
ListNode *temp = new ListNode(dig);
if (result == NULL) {
result = temp;
current = result;
} else {
current->next = temp;
current = current->next;
}
}
if (sum / 10 != 0) {
ListNode *temp = new ListNode(sum / 10);
current->next = temp;
}
return result;
}
int main(int argc, const char * argv[]) {
ListNode *node1 = new ListNode(9);
ListNode *node2 = new ListNode(9);
// ListNode *node3 = new ListNode(6);
node1->next = node2;
// node2->next = node3;
// ListNode *node4 = new ListNode(5);
ListNode *node5 = new ListNode(9);
// ListNode *node6 = new ListNode(2);
// ListNode *node7 = new ListNode(1);
// node4->next = node5;
// node5->next = node6;
// node6->next = node7;
ListNode *result = addLists(node1, node5);
std::cout << "\n";
return 0;
}
/* test case:
l1 = null, l2 = null
l1 = 999, l2 = 9, 要考虑最后一位进位的情况
l1 = 11232, l2 = 32
l1 = 222, l2 = 124
*/
| [
"leojing1989@gmail.com"
] | leojing1989@gmail.com |
9d9938befc258ebb1d5f8f6500d7b330556de33f | f7ef7dabcc31ce5e2684a028f25f059302040392 | /src/gs2/jobQueue/Gs2JobQueueWebSocketClient.hpp | f1ed08276fb4bd62502705c6931e406a52208270 | [] | no_license | gs2io/gs2-cpp-sdk | 68bb09c0979588b850913feb07406698f661b012 | 8dc862e247e4cc2924a060701be783096d307a44 | refs/heads/develop | 2021-08-16T17:11:59.557099 | 2020-08-03T09:26:00 | 2020-08-03T09:26:10 | 148,787,757 | 0 | 0 | null | 2020-11-15T08:08:06 | 2018-09-14T12:50:30 | C++ | UTF-8 | C++ | false | false | 53,045 | hpp | /*
* Copyright 2016 Game Server Services, Inc. or its affiliates. All Rights
* Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* or in the "license" file accompanying this file. This file 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.
*/
#ifndef GS2_JOBQUEUE_GS2JOBQUEUEWEBSOCKETCLIENT_HPP_
#define GS2_JOBQUEUE_GS2JOBQUEUEWEBSOCKETCLIENT_HPP_
#include <gs2/core/AbstractGs2Client.hpp>
#include <gs2/core/json/JsonWriter.hpp>
#include <gs2/core/network/Gs2WebSocketSessionTask.hpp>
#include <gs2/core/network/Gs2WebSocketSession.hpp>
#include <gs2/core/util/StringVariable.hpp>
#include "model/model.hpp"
#include "request/DescribeNamespacesRequest.hpp"
#include "request/CreateNamespaceRequest.hpp"
#include "request/GetNamespaceStatusRequest.hpp"
#include "request/GetNamespaceRequest.hpp"
#include "request/UpdateNamespaceRequest.hpp"
#include "request/DeleteNamespaceRequest.hpp"
#include "request/DescribeJobsByUserIdRequest.hpp"
#include "request/GetJobByUserIdRequest.hpp"
#include "request/PushByUserIdRequest.hpp"
#include "request/RunRequest.hpp"
#include "request/RunByUserIdRequest.hpp"
#include "request/DeleteJobByUserIdRequest.hpp"
#include "request/PushByStampSheetRequest.hpp"
#include "request/DescribeDeadLetterJobsByUserIdRequest.hpp"
#include "request/GetDeadLetterJobByUserIdRequest.hpp"
#include "request/DeleteDeadLetterJobByUserIdRequest.hpp"
#include "result/DescribeNamespacesResult.hpp"
#include "result/CreateNamespaceResult.hpp"
#include "result/GetNamespaceStatusResult.hpp"
#include "result/GetNamespaceResult.hpp"
#include "result/UpdateNamespaceResult.hpp"
#include "result/DeleteNamespaceResult.hpp"
#include "result/DescribeJobsByUserIdResult.hpp"
#include "result/GetJobByUserIdResult.hpp"
#include "result/PushByUserIdResult.hpp"
#include "result/RunResult.hpp"
#include "result/RunByUserIdResult.hpp"
#include "result/DeleteJobByUserIdResult.hpp"
#include "result/PushByStampSheetResult.hpp"
#include "result/DescribeDeadLetterJobsByUserIdResult.hpp"
#include "result/GetDeadLetterJobByUserIdResult.hpp"
#include "result/DeleteDeadLetterJobByUserIdResult.hpp"
#include <cstring>
namespace gs2 { namespace jobQueue {
/**
* GS2 JobQueue API クライアント
*
* @author Game Server Services, Inc.
*
*/
class Gs2JobQueueWebSocketClient : public AbstractGs2ClientBase
{
private:
class DescribeNamespacesTask : public detail::Gs2WebSocketSessionTask<DescribeNamespacesResult>
{
private:
DescribeNamespacesRequest m_Request;
const char* getServiceName() const GS2_OVERRIDE
{
return "jobQueue";
}
const char* getComponentName() const GS2_OVERRIDE
{
return "namespace";
}
const char* getFunctionName() const GS2_OVERRIDE
{
return "describeNamespaces";
}
void constructRequestImpl(detail::json::JsonWriter& jsonWriter) GS2_OVERRIDE
{
if (m_Request.getContextStack())
{
jsonWriter.writePropertyName("contextStack");
jsonWriter.writeCharArray(*m_Request.getContextStack());
}
if (m_Request.getPageToken())
{
jsonWriter.writePropertyName("pageToken");
jsonWriter.writeCharArray(*m_Request.getPageToken());
}
if (m_Request.getLimit())
{
jsonWriter.writePropertyName("limit");
jsonWriter.writeInt64(*m_Request.getLimit());
}
if (m_Request.getRequestId())
{
jsonWriter.writePropertyName("xGs2RequestId");
jsonWriter.writeCharArray(*m_Request.getRequestId());
}
}
public:
DescribeNamespacesTask(
DescribeNamespacesRequest request,
Gs2WebSocketSessionTask<DescribeNamespacesResult>::CallbackType callback
) :
Gs2WebSocketSessionTask<DescribeNamespacesResult>(callback),
m_Request(std::move(request))
{}
~DescribeNamespacesTask() GS2_OVERRIDE = default;
};
class CreateNamespaceTask : public detail::Gs2WebSocketSessionTask<CreateNamespaceResult>
{
private:
CreateNamespaceRequest m_Request;
const char* getServiceName() const GS2_OVERRIDE
{
return "jobQueue";
}
const char* getComponentName() const GS2_OVERRIDE
{
return "namespace";
}
const char* getFunctionName() const GS2_OVERRIDE
{
return "createNamespace";
}
void constructRequestImpl(detail::json::JsonWriter& jsonWriter) GS2_OVERRIDE
{
if (m_Request.getContextStack())
{
jsonWriter.writePropertyName("contextStack");
jsonWriter.writeCharArray(*m_Request.getContextStack());
}
if (m_Request.getName())
{
jsonWriter.writePropertyName("name");
jsonWriter.writeCharArray(*m_Request.getName());
}
if (m_Request.getDescription())
{
jsonWriter.writePropertyName("description");
jsonWriter.writeCharArray(*m_Request.getDescription());
}
if (m_Request.getPushNotification())
{
jsonWriter.writePropertyName("pushNotification");
write(jsonWriter, *m_Request.getPushNotification());
}
if (m_Request.getLogSetting())
{
jsonWriter.writePropertyName("logSetting");
write(jsonWriter, *m_Request.getLogSetting());
}
if (m_Request.getRequestId())
{
jsonWriter.writePropertyName("xGs2RequestId");
jsonWriter.writeCharArray(*m_Request.getRequestId());
}
}
public:
CreateNamespaceTask(
CreateNamespaceRequest request,
Gs2WebSocketSessionTask<CreateNamespaceResult>::CallbackType callback
) :
Gs2WebSocketSessionTask<CreateNamespaceResult>(callback),
m_Request(std::move(request))
{}
~CreateNamespaceTask() GS2_OVERRIDE = default;
};
class GetNamespaceStatusTask : public detail::Gs2WebSocketSessionTask<GetNamespaceStatusResult>
{
private:
GetNamespaceStatusRequest m_Request;
const char* getServiceName() const GS2_OVERRIDE
{
return "jobQueue";
}
const char* getComponentName() const GS2_OVERRIDE
{
return "namespace";
}
const char* getFunctionName() const GS2_OVERRIDE
{
return "getNamespaceStatus";
}
void constructRequestImpl(detail::json::JsonWriter& jsonWriter) GS2_OVERRIDE
{
if (m_Request.getContextStack())
{
jsonWriter.writePropertyName("contextStack");
jsonWriter.writeCharArray(*m_Request.getContextStack());
}
if (m_Request.getNamespaceName())
{
jsonWriter.writePropertyName("namespaceName");
jsonWriter.writeCharArray(*m_Request.getNamespaceName());
}
if (m_Request.getRequestId())
{
jsonWriter.writePropertyName("xGs2RequestId");
jsonWriter.writeCharArray(*m_Request.getRequestId());
}
}
public:
GetNamespaceStatusTask(
GetNamespaceStatusRequest request,
Gs2WebSocketSessionTask<GetNamespaceStatusResult>::CallbackType callback
) :
Gs2WebSocketSessionTask<GetNamespaceStatusResult>(callback),
m_Request(std::move(request))
{}
~GetNamespaceStatusTask() GS2_OVERRIDE = default;
};
class GetNamespaceTask : public detail::Gs2WebSocketSessionTask<GetNamespaceResult>
{
private:
GetNamespaceRequest m_Request;
const char* getServiceName() const GS2_OVERRIDE
{
return "jobQueue";
}
const char* getComponentName() const GS2_OVERRIDE
{
return "namespace";
}
const char* getFunctionName() const GS2_OVERRIDE
{
return "getNamespace";
}
void constructRequestImpl(detail::json::JsonWriter& jsonWriter) GS2_OVERRIDE
{
if (m_Request.getContextStack())
{
jsonWriter.writePropertyName("contextStack");
jsonWriter.writeCharArray(*m_Request.getContextStack());
}
if (m_Request.getNamespaceName())
{
jsonWriter.writePropertyName("namespaceName");
jsonWriter.writeCharArray(*m_Request.getNamespaceName());
}
if (m_Request.getRequestId())
{
jsonWriter.writePropertyName("xGs2RequestId");
jsonWriter.writeCharArray(*m_Request.getRequestId());
}
}
public:
GetNamespaceTask(
GetNamespaceRequest request,
Gs2WebSocketSessionTask<GetNamespaceResult>::CallbackType callback
) :
Gs2WebSocketSessionTask<GetNamespaceResult>(callback),
m_Request(std::move(request))
{}
~GetNamespaceTask() GS2_OVERRIDE = default;
};
class UpdateNamespaceTask : public detail::Gs2WebSocketSessionTask<UpdateNamespaceResult>
{
private:
UpdateNamespaceRequest m_Request;
const char* getServiceName() const GS2_OVERRIDE
{
return "jobQueue";
}
const char* getComponentName() const GS2_OVERRIDE
{
return "namespace";
}
const char* getFunctionName() const GS2_OVERRIDE
{
return "updateNamespace";
}
void constructRequestImpl(detail::json::JsonWriter& jsonWriter) GS2_OVERRIDE
{
if (m_Request.getContextStack())
{
jsonWriter.writePropertyName("contextStack");
jsonWriter.writeCharArray(*m_Request.getContextStack());
}
if (m_Request.getNamespaceName())
{
jsonWriter.writePropertyName("namespaceName");
jsonWriter.writeCharArray(*m_Request.getNamespaceName());
}
if (m_Request.getDescription())
{
jsonWriter.writePropertyName("description");
jsonWriter.writeCharArray(*m_Request.getDescription());
}
if (m_Request.getPushNotification())
{
jsonWriter.writePropertyName("pushNotification");
write(jsonWriter, *m_Request.getPushNotification());
}
if (m_Request.getLogSetting())
{
jsonWriter.writePropertyName("logSetting");
write(jsonWriter, *m_Request.getLogSetting());
}
if (m_Request.getRequestId())
{
jsonWriter.writePropertyName("xGs2RequestId");
jsonWriter.writeCharArray(*m_Request.getRequestId());
}
}
public:
UpdateNamespaceTask(
UpdateNamespaceRequest request,
Gs2WebSocketSessionTask<UpdateNamespaceResult>::CallbackType callback
) :
Gs2WebSocketSessionTask<UpdateNamespaceResult>(callback),
m_Request(std::move(request))
{}
~UpdateNamespaceTask() GS2_OVERRIDE = default;
};
class DeleteNamespaceTask : public detail::Gs2WebSocketSessionTask<DeleteNamespaceResult>
{
private:
DeleteNamespaceRequest m_Request;
const char* getServiceName() const GS2_OVERRIDE
{
return "jobQueue";
}
const char* getComponentName() const GS2_OVERRIDE
{
return "namespace";
}
const char* getFunctionName() const GS2_OVERRIDE
{
return "deleteNamespace";
}
void constructRequestImpl(detail::json::JsonWriter& jsonWriter) GS2_OVERRIDE
{
if (m_Request.getContextStack())
{
jsonWriter.writePropertyName("contextStack");
jsonWriter.writeCharArray(*m_Request.getContextStack());
}
if (m_Request.getNamespaceName())
{
jsonWriter.writePropertyName("namespaceName");
jsonWriter.writeCharArray(*m_Request.getNamespaceName());
}
if (m_Request.getRequestId())
{
jsonWriter.writePropertyName("xGs2RequestId");
jsonWriter.writeCharArray(*m_Request.getRequestId());
}
}
public:
DeleteNamespaceTask(
DeleteNamespaceRequest request,
Gs2WebSocketSessionTask<DeleteNamespaceResult>::CallbackType callback
) :
Gs2WebSocketSessionTask<DeleteNamespaceResult>(callback),
m_Request(std::move(request))
{}
~DeleteNamespaceTask() GS2_OVERRIDE = default;
};
class DescribeJobsByUserIdTask : public detail::Gs2WebSocketSessionTask<DescribeJobsByUserIdResult>
{
private:
DescribeJobsByUserIdRequest m_Request;
const char* getServiceName() const GS2_OVERRIDE
{
return "jobQueue";
}
const char* getComponentName() const GS2_OVERRIDE
{
return "job";
}
const char* getFunctionName() const GS2_OVERRIDE
{
return "describeJobsByUserId";
}
void constructRequestImpl(detail::json::JsonWriter& jsonWriter) GS2_OVERRIDE
{
if (m_Request.getContextStack())
{
jsonWriter.writePropertyName("contextStack");
jsonWriter.writeCharArray(*m_Request.getContextStack());
}
if (m_Request.getNamespaceName())
{
jsonWriter.writePropertyName("namespaceName");
jsonWriter.writeCharArray(*m_Request.getNamespaceName());
}
if (m_Request.getUserId())
{
jsonWriter.writePropertyName("userId");
jsonWriter.writeCharArray(*m_Request.getUserId());
}
if (m_Request.getPageToken())
{
jsonWriter.writePropertyName("pageToken");
jsonWriter.writeCharArray(*m_Request.getPageToken());
}
if (m_Request.getLimit())
{
jsonWriter.writePropertyName("limit");
jsonWriter.writeInt64(*m_Request.getLimit());
}
if (m_Request.getRequestId())
{
jsonWriter.writePropertyName("xGs2RequestId");
jsonWriter.writeCharArray(*m_Request.getRequestId());
}
if (m_Request.getDuplicationAvoider())
{
jsonWriter.writePropertyName("xGs2DuplicationAvoider");
jsonWriter.writeCharArray(*m_Request.getDuplicationAvoider());
}
}
public:
DescribeJobsByUserIdTask(
DescribeJobsByUserIdRequest request,
Gs2WebSocketSessionTask<DescribeJobsByUserIdResult>::CallbackType callback
) :
Gs2WebSocketSessionTask<DescribeJobsByUserIdResult>(callback),
m_Request(std::move(request))
{}
~DescribeJobsByUserIdTask() GS2_OVERRIDE = default;
};
class GetJobByUserIdTask : public detail::Gs2WebSocketSessionTask<GetJobByUserIdResult>
{
private:
GetJobByUserIdRequest m_Request;
const char* getServiceName() const GS2_OVERRIDE
{
return "jobQueue";
}
const char* getComponentName() const GS2_OVERRIDE
{
return "job";
}
const char* getFunctionName() const GS2_OVERRIDE
{
return "getJobByUserId";
}
void constructRequestImpl(detail::json::JsonWriter& jsonWriter) GS2_OVERRIDE
{
if (m_Request.getContextStack())
{
jsonWriter.writePropertyName("contextStack");
jsonWriter.writeCharArray(*m_Request.getContextStack());
}
if (m_Request.getNamespaceName())
{
jsonWriter.writePropertyName("namespaceName");
jsonWriter.writeCharArray(*m_Request.getNamespaceName());
}
if (m_Request.getUserId())
{
jsonWriter.writePropertyName("userId");
jsonWriter.writeCharArray(*m_Request.getUserId());
}
if (m_Request.getJobName())
{
jsonWriter.writePropertyName("jobName");
jsonWriter.writeCharArray(*m_Request.getJobName());
}
if (m_Request.getRequestId())
{
jsonWriter.writePropertyName("xGs2RequestId");
jsonWriter.writeCharArray(*m_Request.getRequestId());
}
if (m_Request.getDuplicationAvoider())
{
jsonWriter.writePropertyName("xGs2DuplicationAvoider");
jsonWriter.writeCharArray(*m_Request.getDuplicationAvoider());
}
}
public:
GetJobByUserIdTask(
GetJobByUserIdRequest request,
Gs2WebSocketSessionTask<GetJobByUserIdResult>::CallbackType callback
) :
Gs2WebSocketSessionTask<GetJobByUserIdResult>(callback),
m_Request(std::move(request))
{}
~GetJobByUserIdTask() GS2_OVERRIDE = default;
};
class PushByUserIdTask : public detail::Gs2WebSocketSessionTask<PushByUserIdResult>
{
private:
PushByUserIdRequest m_Request;
const char* getServiceName() const GS2_OVERRIDE
{
return "jobQueue";
}
const char* getComponentName() const GS2_OVERRIDE
{
return "job";
}
const char* getFunctionName() const GS2_OVERRIDE
{
return "pushByUserId";
}
void constructRequestImpl(detail::json::JsonWriter& jsonWriter) GS2_OVERRIDE
{
if (m_Request.getContextStack())
{
jsonWriter.writePropertyName("contextStack");
jsonWriter.writeCharArray(*m_Request.getContextStack());
}
if (m_Request.getNamespaceName())
{
jsonWriter.writePropertyName("namespaceName");
jsonWriter.writeCharArray(*m_Request.getNamespaceName());
}
if (m_Request.getUserId())
{
jsonWriter.writePropertyName("userId");
jsonWriter.writeCharArray(*m_Request.getUserId());
}
if (m_Request.getJobs())
{
jsonWriter.writePropertyName("jobs");
jsonWriter.writeArrayStart();
auto& list = *m_Request.getJobs();
for (Int32 i = 0; i < detail::getCountOfListElements(list); ++i)
{
write(jsonWriter, list[i]);
}
jsonWriter.writeArrayEnd();
}
if (m_Request.getRequestId())
{
jsonWriter.writePropertyName("xGs2RequestId");
jsonWriter.writeCharArray(*m_Request.getRequestId());
}
if (m_Request.getDuplicationAvoider())
{
jsonWriter.writePropertyName("xGs2DuplicationAvoider");
jsonWriter.writeCharArray(*m_Request.getDuplicationAvoider());
}
}
public:
PushByUserIdTask(
PushByUserIdRequest request,
Gs2WebSocketSessionTask<PushByUserIdResult>::CallbackType callback
) :
Gs2WebSocketSessionTask<PushByUserIdResult>(callback),
m_Request(std::move(request))
{}
~PushByUserIdTask() GS2_OVERRIDE = default;
};
class RunTask : public detail::Gs2WebSocketSessionTask<RunResult>
{
private:
RunRequest m_Request;
const char* getServiceName() const GS2_OVERRIDE
{
return "jobQueue";
}
const char* getComponentName() const GS2_OVERRIDE
{
return "job";
}
const char* getFunctionName() const GS2_OVERRIDE
{
return "run";
}
void constructRequestImpl(detail::json::JsonWriter& jsonWriter) GS2_OVERRIDE
{
if (m_Request.getContextStack())
{
jsonWriter.writePropertyName("contextStack");
jsonWriter.writeCharArray(*m_Request.getContextStack());
}
if (m_Request.getNamespaceName())
{
jsonWriter.writePropertyName("namespaceName");
jsonWriter.writeCharArray(*m_Request.getNamespaceName());
}
if (m_Request.getRequestId())
{
jsonWriter.writePropertyName("xGs2RequestId");
jsonWriter.writeCharArray(*m_Request.getRequestId());
}
if (m_Request.getAccessToken())
{
jsonWriter.writePropertyName("xGs2AccessToken");
jsonWriter.writeCharArray(*m_Request.getAccessToken());
}
if (m_Request.getDuplicationAvoider())
{
jsonWriter.writePropertyName("xGs2DuplicationAvoider");
jsonWriter.writeCharArray(*m_Request.getDuplicationAvoider());
}
}
public:
RunTask(
RunRequest request,
Gs2WebSocketSessionTask<RunResult>::CallbackType callback
) :
Gs2WebSocketSessionTask<RunResult>(callback),
m_Request(std::move(request))
{}
~RunTask() GS2_OVERRIDE = default;
};
class RunByUserIdTask : public detail::Gs2WebSocketSessionTask<RunByUserIdResult>
{
private:
RunByUserIdRequest m_Request;
const char* getServiceName() const GS2_OVERRIDE
{
return "jobQueue";
}
const char* getComponentName() const GS2_OVERRIDE
{
return "job";
}
const char* getFunctionName() const GS2_OVERRIDE
{
return "runByUserId";
}
void constructRequestImpl(detail::json::JsonWriter& jsonWriter) GS2_OVERRIDE
{
if (m_Request.getContextStack())
{
jsonWriter.writePropertyName("contextStack");
jsonWriter.writeCharArray(*m_Request.getContextStack());
}
if (m_Request.getNamespaceName())
{
jsonWriter.writePropertyName("namespaceName");
jsonWriter.writeCharArray(*m_Request.getNamespaceName());
}
if (m_Request.getUserId())
{
jsonWriter.writePropertyName("userId");
jsonWriter.writeCharArray(*m_Request.getUserId());
}
if (m_Request.getRequestId())
{
jsonWriter.writePropertyName("xGs2RequestId");
jsonWriter.writeCharArray(*m_Request.getRequestId());
}
if (m_Request.getDuplicationAvoider())
{
jsonWriter.writePropertyName("xGs2DuplicationAvoider");
jsonWriter.writeCharArray(*m_Request.getDuplicationAvoider());
}
}
public:
RunByUserIdTask(
RunByUserIdRequest request,
Gs2WebSocketSessionTask<RunByUserIdResult>::CallbackType callback
) :
Gs2WebSocketSessionTask<RunByUserIdResult>(callback),
m_Request(std::move(request))
{}
~RunByUserIdTask() GS2_OVERRIDE = default;
};
class DeleteJobByUserIdTask : public detail::Gs2WebSocketSessionTask<DeleteJobByUserIdResult>
{
private:
DeleteJobByUserIdRequest m_Request;
const char* getServiceName() const GS2_OVERRIDE
{
return "jobQueue";
}
const char* getComponentName() const GS2_OVERRIDE
{
return "job";
}
const char* getFunctionName() const GS2_OVERRIDE
{
return "deleteJobByUserId";
}
void constructRequestImpl(detail::json::JsonWriter& jsonWriter) GS2_OVERRIDE
{
if (m_Request.getContextStack())
{
jsonWriter.writePropertyName("contextStack");
jsonWriter.writeCharArray(*m_Request.getContextStack());
}
if (m_Request.getNamespaceName())
{
jsonWriter.writePropertyName("namespaceName");
jsonWriter.writeCharArray(*m_Request.getNamespaceName());
}
if (m_Request.getUserId())
{
jsonWriter.writePropertyName("userId");
jsonWriter.writeCharArray(*m_Request.getUserId());
}
if (m_Request.getJobName())
{
jsonWriter.writePropertyName("jobName");
jsonWriter.writeCharArray(*m_Request.getJobName());
}
if (m_Request.getRequestId())
{
jsonWriter.writePropertyName("xGs2RequestId");
jsonWriter.writeCharArray(*m_Request.getRequestId());
}
if (m_Request.getDuplicationAvoider())
{
jsonWriter.writePropertyName("xGs2DuplicationAvoider");
jsonWriter.writeCharArray(*m_Request.getDuplicationAvoider());
}
}
public:
DeleteJobByUserIdTask(
DeleteJobByUserIdRequest request,
Gs2WebSocketSessionTask<DeleteJobByUserIdResult>::CallbackType callback
) :
Gs2WebSocketSessionTask<DeleteJobByUserIdResult>(callback),
m_Request(std::move(request))
{}
~DeleteJobByUserIdTask() GS2_OVERRIDE = default;
};
class PushByStampSheetTask : public detail::Gs2WebSocketSessionTask<PushByStampSheetResult>
{
private:
PushByStampSheetRequest m_Request;
const char* getServiceName() const GS2_OVERRIDE
{
return "jobQueue";
}
const char* getComponentName() const GS2_OVERRIDE
{
return "job";
}
const char* getFunctionName() const GS2_OVERRIDE
{
return "pushByStampSheet";
}
void constructRequestImpl(detail::json::JsonWriter& jsonWriter) GS2_OVERRIDE
{
if (m_Request.getContextStack())
{
jsonWriter.writePropertyName("contextStack");
jsonWriter.writeCharArray(*m_Request.getContextStack());
}
if (m_Request.getStampSheet())
{
jsonWriter.writePropertyName("stampSheet");
jsonWriter.writeCharArray(*m_Request.getStampSheet());
}
if (m_Request.getKeyId())
{
jsonWriter.writePropertyName("keyId");
jsonWriter.writeCharArray(*m_Request.getKeyId());
}
if (m_Request.getRequestId())
{
jsonWriter.writePropertyName("xGs2RequestId");
jsonWriter.writeCharArray(*m_Request.getRequestId());
}
if (m_Request.getDuplicationAvoider())
{
jsonWriter.writePropertyName("xGs2DuplicationAvoider");
jsonWriter.writeCharArray(*m_Request.getDuplicationAvoider());
}
}
public:
PushByStampSheetTask(
PushByStampSheetRequest request,
Gs2WebSocketSessionTask<PushByStampSheetResult>::CallbackType callback
) :
Gs2WebSocketSessionTask<PushByStampSheetResult>(callback),
m_Request(std::move(request))
{}
~PushByStampSheetTask() GS2_OVERRIDE = default;
};
class DescribeDeadLetterJobsByUserIdTask : public detail::Gs2WebSocketSessionTask<DescribeDeadLetterJobsByUserIdResult>
{
private:
DescribeDeadLetterJobsByUserIdRequest m_Request;
const char* getServiceName() const GS2_OVERRIDE
{
return "jobQueue";
}
const char* getComponentName() const GS2_OVERRIDE
{
return "deadLetterJob";
}
const char* getFunctionName() const GS2_OVERRIDE
{
return "describeDeadLetterJobsByUserId";
}
void constructRequestImpl(detail::json::JsonWriter& jsonWriter) GS2_OVERRIDE
{
if (m_Request.getContextStack())
{
jsonWriter.writePropertyName("contextStack");
jsonWriter.writeCharArray(*m_Request.getContextStack());
}
if (m_Request.getNamespaceName())
{
jsonWriter.writePropertyName("namespaceName");
jsonWriter.writeCharArray(*m_Request.getNamespaceName());
}
if (m_Request.getUserId())
{
jsonWriter.writePropertyName("userId");
jsonWriter.writeCharArray(*m_Request.getUserId());
}
if (m_Request.getPageToken())
{
jsonWriter.writePropertyName("pageToken");
jsonWriter.writeCharArray(*m_Request.getPageToken());
}
if (m_Request.getLimit())
{
jsonWriter.writePropertyName("limit");
jsonWriter.writeInt64(*m_Request.getLimit());
}
if (m_Request.getRequestId())
{
jsonWriter.writePropertyName("xGs2RequestId");
jsonWriter.writeCharArray(*m_Request.getRequestId());
}
if (m_Request.getDuplicationAvoider())
{
jsonWriter.writePropertyName("xGs2DuplicationAvoider");
jsonWriter.writeCharArray(*m_Request.getDuplicationAvoider());
}
}
public:
DescribeDeadLetterJobsByUserIdTask(
DescribeDeadLetterJobsByUserIdRequest request,
Gs2WebSocketSessionTask<DescribeDeadLetterJobsByUserIdResult>::CallbackType callback
) :
Gs2WebSocketSessionTask<DescribeDeadLetterJobsByUserIdResult>(callback),
m_Request(std::move(request))
{}
~DescribeDeadLetterJobsByUserIdTask() GS2_OVERRIDE = default;
};
class GetDeadLetterJobByUserIdTask : public detail::Gs2WebSocketSessionTask<GetDeadLetterJobByUserIdResult>
{
private:
GetDeadLetterJobByUserIdRequest m_Request;
const char* getServiceName() const GS2_OVERRIDE
{
return "jobQueue";
}
const char* getComponentName() const GS2_OVERRIDE
{
return "deadLetterJob";
}
const char* getFunctionName() const GS2_OVERRIDE
{
return "getDeadLetterJobByUserId";
}
void constructRequestImpl(detail::json::JsonWriter& jsonWriter) GS2_OVERRIDE
{
if (m_Request.getContextStack())
{
jsonWriter.writePropertyName("contextStack");
jsonWriter.writeCharArray(*m_Request.getContextStack());
}
if (m_Request.getNamespaceName())
{
jsonWriter.writePropertyName("namespaceName");
jsonWriter.writeCharArray(*m_Request.getNamespaceName());
}
if (m_Request.getUserId())
{
jsonWriter.writePropertyName("userId");
jsonWriter.writeCharArray(*m_Request.getUserId());
}
if (m_Request.getDeadLetterJobName())
{
jsonWriter.writePropertyName("deadLetterJobName");
jsonWriter.writeCharArray(*m_Request.getDeadLetterJobName());
}
if (m_Request.getRequestId())
{
jsonWriter.writePropertyName("xGs2RequestId");
jsonWriter.writeCharArray(*m_Request.getRequestId());
}
if (m_Request.getDuplicationAvoider())
{
jsonWriter.writePropertyName("xGs2DuplicationAvoider");
jsonWriter.writeCharArray(*m_Request.getDuplicationAvoider());
}
}
public:
GetDeadLetterJobByUserIdTask(
GetDeadLetterJobByUserIdRequest request,
Gs2WebSocketSessionTask<GetDeadLetterJobByUserIdResult>::CallbackType callback
) :
Gs2WebSocketSessionTask<GetDeadLetterJobByUserIdResult>(callback),
m_Request(std::move(request))
{}
~GetDeadLetterJobByUserIdTask() GS2_OVERRIDE = default;
};
class DeleteDeadLetterJobByUserIdTask : public detail::Gs2WebSocketSessionTask<DeleteDeadLetterJobByUserIdResult>
{
private:
DeleteDeadLetterJobByUserIdRequest m_Request;
const char* getServiceName() const GS2_OVERRIDE
{
return "jobQueue";
}
const char* getComponentName() const GS2_OVERRIDE
{
return "deadLetterJob";
}
const char* getFunctionName() const GS2_OVERRIDE
{
return "deleteDeadLetterJobByUserId";
}
void constructRequestImpl(detail::json::JsonWriter& jsonWriter) GS2_OVERRIDE
{
if (m_Request.getContextStack())
{
jsonWriter.writePropertyName("contextStack");
jsonWriter.writeCharArray(*m_Request.getContextStack());
}
if (m_Request.getNamespaceName())
{
jsonWriter.writePropertyName("namespaceName");
jsonWriter.writeCharArray(*m_Request.getNamespaceName());
}
if (m_Request.getUserId())
{
jsonWriter.writePropertyName("userId");
jsonWriter.writeCharArray(*m_Request.getUserId());
}
if (m_Request.getDeadLetterJobName())
{
jsonWriter.writePropertyName("deadLetterJobName");
jsonWriter.writeCharArray(*m_Request.getDeadLetterJobName());
}
if (m_Request.getRequestId())
{
jsonWriter.writePropertyName("xGs2RequestId");
jsonWriter.writeCharArray(*m_Request.getRequestId());
}
if (m_Request.getDuplicationAvoider())
{
jsonWriter.writePropertyName("xGs2DuplicationAvoider");
jsonWriter.writeCharArray(*m_Request.getDuplicationAvoider());
}
}
public:
DeleteDeadLetterJobByUserIdTask(
DeleteDeadLetterJobByUserIdRequest request,
Gs2WebSocketSessionTask<DeleteDeadLetterJobByUserIdResult>::CallbackType callback
) :
Gs2WebSocketSessionTask<DeleteDeadLetterJobByUserIdResult>(callback),
m_Request(std::move(request))
{}
~DeleteDeadLetterJobByUserIdTask() GS2_OVERRIDE = default;
};
protected:
static void write(detail::json::JsonWriter& jsonWriter, const Namespace& obj)
{
jsonWriter.writeObjectStart();
if (obj.getNamespaceId())
{
jsonWriter.writePropertyName("namespaceId");
jsonWriter.writeCharArray(*obj.getNamespaceId());
}
if (obj.getOwnerId())
{
jsonWriter.writePropertyName("ownerId");
jsonWriter.writeCharArray(*obj.getOwnerId());
}
if (obj.getName())
{
jsonWriter.writePropertyName("name");
jsonWriter.writeCharArray(*obj.getName());
}
if (obj.getDescription())
{
jsonWriter.writePropertyName("description");
jsonWriter.writeCharArray(*obj.getDescription());
}
if (obj.getPushNotification())
{
jsonWriter.writePropertyName("pushNotification");
write(jsonWriter, *obj.getPushNotification());
}
if (obj.getLogSetting())
{
jsonWriter.writePropertyName("logSetting");
write(jsonWriter, *obj.getLogSetting());
}
if (obj.getCreatedAt())
{
jsonWriter.writePropertyName("createdAt");
jsonWriter.writeInt64(*obj.getCreatedAt());
}
if (obj.getUpdatedAt())
{
jsonWriter.writePropertyName("updatedAt");
jsonWriter.writeInt64(*obj.getUpdatedAt());
}
jsonWriter.writeObjectEnd();
}
static void write(detail::json::JsonWriter& jsonWriter, const Job& obj)
{
jsonWriter.writeObjectStart();
if (obj.getJobId())
{
jsonWriter.writePropertyName("jobId");
jsonWriter.writeCharArray(*obj.getJobId());
}
if (obj.getName())
{
jsonWriter.writePropertyName("name");
jsonWriter.writeCharArray(*obj.getName());
}
if (obj.getUserId())
{
jsonWriter.writePropertyName("userId");
jsonWriter.writeCharArray(*obj.getUserId());
}
if (obj.getScriptId())
{
jsonWriter.writePropertyName("scriptId");
jsonWriter.writeCharArray(*obj.getScriptId());
}
if (obj.getArgs())
{
jsonWriter.writePropertyName("args");
jsonWriter.writeCharArray(*obj.getArgs());
}
if (obj.getCurrentRetryCount())
{
jsonWriter.writePropertyName("currentRetryCount");
jsonWriter.writeInt32(*obj.getCurrentRetryCount());
}
if (obj.getMaxTryCount())
{
jsonWriter.writePropertyName("maxTryCount");
jsonWriter.writeInt32(*obj.getMaxTryCount());
}
if (obj.getIndex())
{
jsonWriter.writePropertyName("index");
jsonWriter.writeDouble(*obj.getIndex());
}
if (obj.getCreatedAt())
{
jsonWriter.writePropertyName("createdAt");
jsonWriter.writeInt64(*obj.getCreatedAt());
}
if (obj.getUpdatedAt())
{
jsonWriter.writePropertyName("updatedAt");
jsonWriter.writeInt64(*obj.getUpdatedAt());
}
jsonWriter.writeObjectEnd();
}
static void write(detail::json::JsonWriter& jsonWriter, const JobResult& obj)
{
jsonWriter.writeObjectStart();
if (obj.getJobResultId())
{
jsonWriter.writePropertyName("jobResultId");
jsonWriter.writeCharArray(*obj.getJobResultId());
}
if (obj.getJobId())
{
jsonWriter.writePropertyName("jobId");
jsonWriter.writeCharArray(*obj.getJobId());
}
if (obj.getTryNumber())
{
jsonWriter.writePropertyName("tryNumber");
jsonWriter.writeInt32(*obj.getTryNumber());
}
if (obj.getStatusCode())
{
jsonWriter.writePropertyName("statusCode");
jsonWriter.writeInt32(*obj.getStatusCode());
}
if (obj.getResult())
{
jsonWriter.writePropertyName("result");
jsonWriter.writeCharArray(*obj.getResult());
}
if (obj.getTryAt())
{
jsonWriter.writePropertyName("tryAt");
jsonWriter.writeInt64(*obj.getTryAt());
}
jsonWriter.writeObjectEnd();
}
static void write(detail::json::JsonWriter& jsonWriter, const DeadLetterJob& obj)
{
jsonWriter.writeObjectStart();
if (obj.getDeadLetterJobId())
{
jsonWriter.writePropertyName("deadLetterJobId");
jsonWriter.writeCharArray(*obj.getDeadLetterJobId());
}
if (obj.getName())
{
jsonWriter.writePropertyName("name");
jsonWriter.writeCharArray(*obj.getName());
}
if (obj.getUserId())
{
jsonWriter.writePropertyName("userId");
jsonWriter.writeCharArray(*obj.getUserId());
}
if (obj.getScriptId())
{
jsonWriter.writePropertyName("scriptId");
jsonWriter.writeCharArray(*obj.getScriptId());
}
if (obj.getArgs())
{
jsonWriter.writePropertyName("args");
jsonWriter.writeCharArray(*obj.getArgs());
}
if (obj.getResult())
{
jsonWriter.writePropertyName("result");
jsonWriter.writeArrayStart();
auto& list = *obj.getResult();
for (Int32 i = 0; i < detail::getCountOfListElements(list); ++i)
{
write(jsonWriter, list[i]);
}
jsonWriter.writeArrayEnd();
}
if (obj.getCreatedAt())
{
jsonWriter.writePropertyName("createdAt");
jsonWriter.writeInt64(*obj.getCreatedAt());
}
if (obj.getUpdatedAt())
{
jsonWriter.writePropertyName("updatedAt");
jsonWriter.writeInt64(*obj.getUpdatedAt());
}
jsonWriter.writeObjectEnd();
}
static void write(detail::json::JsonWriter& jsonWriter, const ResponseCache& obj)
{
jsonWriter.writeObjectStart();
if (obj.getRegion())
{
jsonWriter.writePropertyName("region");
jsonWriter.writeCharArray(*obj.getRegion());
}
if (obj.getOwnerId())
{
jsonWriter.writePropertyName("ownerId");
jsonWriter.writeCharArray(*obj.getOwnerId());
}
if (obj.getResponseCacheId())
{
jsonWriter.writePropertyName("responseCacheId");
jsonWriter.writeCharArray(*obj.getResponseCacheId());
}
if (obj.getRequestHash())
{
jsonWriter.writePropertyName("requestHash");
jsonWriter.writeCharArray(*obj.getRequestHash());
}
if (obj.getResult())
{
jsonWriter.writePropertyName("result");
jsonWriter.writeCharArray(*obj.getResult());
}
jsonWriter.writeObjectEnd();
}
static void write(detail::json::JsonWriter& jsonWriter, const NotificationSetting& obj)
{
jsonWriter.writeObjectStart();
if (obj.getGatewayNamespaceId())
{
jsonWriter.writePropertyName("gatewayNamespaceId");
jsonWriter.writeCharArray(*obj.getGatewayNamespaceId());
}
if (obj.getEnableTransferMobileNotification())
{
jsonWriter.writePropertyName("enableTransferMobileNotification");
jsonWriter.writeBool(*obj.getEnableTransferMobileNotification());
}
if (obj.getSound())
{
jsonWriter.writePropertyName("sound");
jsonWriter.writeCharArray(*obj.getSound());
}
jsonWriter.writeObjectEnd();
}
static void write(detail::json::JsonWriter& jsonWriter, const LogSetting& obj)
{
jsonWriter.writeObjectStart();
if (obj.getLoggingNamespaceId())
{
jsonWriter.writePropertyName("loggingNamespaceId");
jsonWriter.writeCharArray(*obj.getLoggingNamespaceId());
}
jsonWriter.writeObjectEnd();
}
static void write(detail::json::JsonWriter& jsonWriter, const JobEntry& obj)
{
jsonWriter.writeObjectStart();
if (obj.getScriptId())
{
jsonWriter.writePropertyName("scriptId");
jsonWriter.writeCharArray(*obj.getScriptId());
}
if (obj.getArgs())
{
jsonWriter.writePropertyName("args");
jsonWriter.writeCharArray(*obj.getArgs());
}
if (obj.getMaxTryCount())
{
jsonWriter.writePropertyName("maxTryCount");
jsonWriter.writeInt32(*obj.getMaxTryCount());
}
jsonWriter.writeObjectEnd();
}
static void write(detail::json::JsonWriter& jsonWriter, const JobResultBody& obj)
{
jsonWriter.writeObjectStart();
if (obj.getTryNumber())
{
jsonWriter.writePropertyName("tryNumber");
jsonWriter.writeInt32(*obj.getTryNumber());
}
if (obj.getStatusCode())
{
jsonWriter.writePropertyName("statusCode");
jsonWriter.writeInt32(*obj.getStatusCode());
}
if (obj.getResult())
{
jsonWriter.writePropertyName("result");
jsonWriter.writeCharArray(*obj.getResult());
}
if (obj.getTryAt())
{
jsonWriter.writePropertyName("tryAt");
jsonWriter.writeInt64(*obj.getTryAt());
}
jsonWriter.writeObjectEnd();
}
public:
/**
* コンストラクタ。
*
* @param gs2WebSocketSession WebSocket API 用セッション
*/
explicit Gs2JobQueueWebSocketClient(Gs2WebSocketSession& gs2WebSocketSession) :
AbstractGs2ClientBase(gs2WebSocketSession)
{
}
/**
* ネームスペースの一覧を取得<br>
*
* @param callback コールバック関数
* @param request リクエストパラメータ
*/
void describeNamespaces(DescribeNamespacesRequest request, std::function<void(AsyncDescribeNamespacesResult)> callback)
{
DescribeNamespacesTask& task = *new DescribeNamespacesTask(std::move(request), callback);
getGs2WebSocketSession().execute(task);
}
/**
* ネームスペースを新規作成<br>
*
* @param callback コールバック関数
* @param request リクエストパラメータ
*/
void createNamespace(CreateNamespaceRequest request, std::function<void(AsyncCreateNamespaceResult)> callback)
{
CreateNamespaceTask& task = *new CreateNamespaceTask(std::move(request), callback);
getGs2WebSocketSession().execute(task);
}
/**
* ネームスペースの状態を取得<br>
*
* @param callback コールバック関数
* @param request リクエストパラメータ
*/
void getNamespaceStatus(GetNamespaceStatusRequest request, std::function<void(AsyncGetNamespaceStatusResult)> callback)
{
GetNamespaceStatusTask& task = *new GetNamespaceStatusTask(std::move(request), callback);
getGs2WebSocketSession().execute(task);
}
/**
* ネームスペースを取得<br>
*
* @param callback コールバック関数
* @param request リクエストパラメータ
*/
void getNamespace(GetNamespaceRequest request, std::function<void(AsyncGetNamespaceResult)> callback)
{
GetNamespaceTask& task = *new GetNamespaceTask(std::move(request), callback);
getGs2WebSocketSession().execute(task);
}
/**
* ネームスペースを更新<br>
*
* @param callback コールバック関数
* @param request リクエストパラメータ
*/
void updateNamespace(UpdateNamespaceRequest request, std::function<void(AsyncUpdateNamespaceResult)> callback)
{
UpdateNamespaceTask& task = *new UpdateNamespaceTask(std::move(request), callback);
getGs2WebSocketSession().execute(task);
}
/**
* ネームスペースを削除<br>
*
* @param callback コールバック関数
* @param request リクエストパラメータ
*/
void deleteNamespace(DeleteNamespaceRequest request, std::function<void(AsyncDeleteNamespaceResult)> callback)
{
DeleteNamespaceTask& task = *new DeleteNamespaceTask(std::move(request), callback);
getGs2WebSocketSession().execute(task);
}
/**
* ジョブの一覧を取得<br>
*
* @param callback コールバック関数
* @param request リクエストパラメータ
*/
void describeJobsByUserId(DescribeJobsByUserIdRequest request, std::function<void(AsyncDescribeJobsByUserIdResult)> callback)
{
DescribeJobsByUserIdTask& task = *new DescribeJobsByUserIdTask(std::move(request), callback);
getGs2WebSocketSession().execute(task);
}
/**
* ジョブを取得<br>
*
* @param callback コールバック関数
* @param request リクエストパラメータ
*/
void getJobByUserId(GetJobByUserIdRequest request, std::function<void(AsyncGetJobByUserIdResult)> callback)
{
GetJobByUserIdTask& task = *new GetJobByUserIdTask(std::move(request), callback);
getGs2WebSocketSession().execute(task);
}
/**
* ユーザIDを指定してジョブを登録<br>
*
* @param callback コールバック関数
* @param request リクエストパラメータ
*/
void pushByUserId(PushByUserIdRequest request, std::function<void(AsyncPushByUserIdResult)> callback)
{
PushByUserIdTask& task = *new PushByUserIdTask(std::move(request), callback);
getGs2WebSocketSession().execute(task);
}
/**
* ジョブを実行<br>
*
* @param callback コールバック関数
* @param request リクエストパラメータ
*/
void run(RunRequest request, std::function<void(AsyncRunResult)> callback)
{
RunTask& task = *new RunTask(std::move(request), callback);
getGs2WebSocketSession().execute(task);
}
/**
* ユーザIDを指定してジョブを実行<br>
*
* @param callback コールバック関数
* @param request リクエストパラメータ
*/
void runByUserId(RunByUserIdRequest request, std::function<void(AsyncRunByUserIdResult)> callback)
{
RunByUserIdTask& task = *new RunByUserIdTask(std::move(request), callback);
getGs2WebSocketSession().execute(task);
}
/**
* ジョブを取得<br>
*
* @param callback コールバック関数
* @param request リクエストパラメータ
*/
void deleteJobByUserId(DeleteJobByUserIdRequest request, std::function<void(AsyncDeleteJobByUserIdResult)> callback)
{
DeleteJobByUserIdTask& task = *new DeleteJobByUserIdTask(std::move(request), callback);
getGs2WebSocketSession().execute(task);
}
/**
* スタンプシートでジョブを登録<br>
*
* @param callback コールバック関数
* @param request リクエストパラメータ
*/
void pushByStampSheet(PushByStampSheetRequest request, std::function<void(AsyncPushByStampSheetResult)> callback)
{
PushByStampSheetTask& task = *new PushByStampSheetTask(std::move(request), callback);
getGs2WebSocketSession().execute(task);
}
/**
* デッドレタージョブの一覧を取得<br>
*
* @param callback コールバック関数
* @param request リクエストパラメータ
*/
void describeDeadLetterJobsByUserId(DescribeDeadLetterJobsByUserIdRequest request, std::function<void(AsyncDescribeDeadLetterJobsByUserIdResult)> callback)
{
DescribeDeadLetterJobsByUserIdTask& task = *new DescribeDeadLetterJobsByUserIdTask(std::move(request), callback);
getGs2WebSocketSession().execute(task);
}
/**
* デッドレタージョブを取得<br>
*
* @param callback コールバック関数
* @param request リクエストパラメータ
*/
void getDeadLetterJobByUserId(GetDeadLetterJobByUserIdRequest request, std::function<void(AsyncGetDeadLetterJobByUserIdResult)> callback)
{
GetDeadLetterJobByUserIdTask& task = *new GetDeadLetterJobByUserIdTask(std::move(request), callback);
getGs2WebSocketSession().execute(task);
}
/**
* デッドレタージョブを取得<br>
*
* @param callback コールバック関数
* @param request リクエストパラメータ
*/
void deleteDeadLetterJobByUserId(DeleteDeadLetterJobByUserIdRequest request, std::function<void(AsyncDeleteDeadLetterJobByUserIdResult)> callback)
{
DeleteDeadLetterJobByUserIdTask& task = *new DeleteDeadLetterJobByUserIdTask(std::move(request), callback);
getGs2WebSocketSession().execute(task);
}
protected:
Gs2WebSocketSession& getGs2WebSocketSession()
{
return static_cast<Gs2WebSocketSession&>(getGs2Session());
}
};
} }
#endif //GS2_JOBQUEUE_GS2JOBQUEUEWEBSOCKETCLIENT_HPP_ | [
"imatake_haruhiko@gs2.io"
] | imatake_haruhiko@gs2.io |
af5eb40f41814215a380fa2210594df8fa365757 | ecbe5ac6da0ab1da00c7f615353b739ef9a6ff03 | /679A.cpp | 2d7661d360c369a5023a488c3f88afec724eb2da | [] | no_license | ngthvan1612/Codeforces | 2d1b10f155ba2f0efc6e0fdda7d78bcbd6aad496 | b86c3d3d11df92f9744f75f495ad458ace9418ae | refs/heads/master | 2022-04-01T20:34:48.115083 | 2020-02-01T06:14:13 | 2020-02-01T06:14:13 | 237,571,708 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,090 | cpp | ///created: 1/Jul/2019 12:43:13
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> ii;
const int modulo = 1e9 + 7;
#ifdef LOCAL_DEBUG_NTV1612
template<class __Ty>
string to_string(__Ty a) {
string res = "[ ";
bool f = true;
for (auto &p : a) { res += (f ? string("") : string(", ")) + to_string(p); f = false; }
return res + " ]";
}
void _debug() { fprintf(stderr, "\n"); }
template<typename __Ty_head, typename... __Ty_tail>
void _debug(__Ty_head head, __Ty_tail... tail) { fprintf(stderr, "%s ", to_string(head).c_str()); _debug(tail...); }
#define debug(...) fprintf(stderr, "DEBUG [%s]: ", #__VA_ARGS__), _debug(__VA_ARGS__)
#else
#define debug(...) 0
#endif
template<class __Ty> bool mini(__Ty& a, __Ty b) { return a > b ? ((a = b) | 1) : (0); }
template<class __Ty> bool maxi(__Ty& a, __Ty b) { return a < b ? ((a = b) | 1) : (0); }
template<class __Ty> __Ty add(__Ty a, __Ty b) { return (a + b) % (__Ty(modulo)); }
template<class __Ty> __Ty sub(__Ty a, __Ty b) { __Ty m(modulo); return ((a - b) % m + m) % m; }
bool iprime(int v) {
for (int i = 2; i * i <= v; ++i)
if (v % i == 0)
return false;
return true;
}
void run(const vector<int>& q) {
for (int i = 2; i <= 100; ++i) {
int cnt = 0, pos = 0;
bool ip = iprime(i), res = true;
if (ip)
cout << i << ' ';
continue;
for (int j = 0; j < int(q.size()); ++j)
if (i % q[j] == 0) {
cnt++;
pos = j;
}
if (cnt > 1 || pos > 3)
res = false;
if (res != ip) {
cout << "fail: " << i << '\n';
cout << ip << ' ' << res << '\n';
debug(cnt, pos);
return;
}
}
}
int main() {
///ios::sync_with_stdio(0); cin.tie(0);
vector<int> question;
for (int i = 2; i <= 50; ++i)
if (iprime(i))
question.push_back(i);
question.push_back(9);
question.push_back(4);
question.push_back(25);
question.push_back(49);
int cnt = 0;
char res[4];
for (int v : question) {
printf("%d\n", v);
fflush(stdout);
scanf("%s", res);
if (res[0] == 'y')
cnt++;
}
printf((cnt <= 1) ? "prime\n" : "composite\n");
fflush(stdout);
return 0;
}
| [
"ngthvan1612@gmail.com"
] | ngthvan1612@gmail.com |
d1190c8233cca0886ca30a9234e4e6d26d3aa6b2 | 641fa8341d8c436ad24945bcbf8e7d7d1dd7dbb2 | /third_party/WebKit/Source/core/css/cssom/CSSResourceValueTest.cpp | ddc1cb16a2cfc2c4e5f963d785940c1e36cdeff6 | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"BSD-3-Clause",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft"
] | permissive | massnetwork/mass-browser | 7de0dfc541cbac00ffa7308541394bac1e945b76 | 67526da9358734698c067b7775be491423884339 | refs/heads/master | 2022-12-07T09:01:31.027715 | 2017-01-19T14:29:18 | 2017-01-19T14:29:18 | 73,799,690 | 4 | 4 | BSD-3-Clause | 2022-11-26T11:53:23 | 2016-11-15T09:49:29 | null | UTF-8 | C++ | false | false | 1,165 | cpp | // Copyright 2016 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.
#include "core/css/cssom/CSSResourceValue.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace blink {
namespace {
class FakeCSSResourceValue : public CSSResourceValue {
public:
FakeCSSResourceValue(Resource::Status status) : m_status(status) {}
Resource::Status status() const override { return m_status; }
CSSValue* toCSSValue() const override { return nullptr; }
StyleValueType type() const override { return Unknown; }
private:
Resource::Status m_status;
};
} // namespace
TEST(CSSResourceValueTest, TestStatus) {
EXPECT_EQ((new FakeCSSResourceValue(Resource::NotStarted))->state(),
"unloaded");
EXPECT_EQ((new FakeCSSResourceValue(Resource::Pending))->state(), "loading");
EXPECT_EQ((new FakeCSSResourceValue(Resource::Cached))->state(), "loaded");
EXPECT_EQ((new FakeCSSResourceValue(Resource::LoadError))->state(), "error");
EXPECT_EQ((new FakeCSSResourceValue(Resource::DecodeError))->state(),
"error");
}
} // namespace blink
| [
"xElvis89x@gmail.com"
] | xElvis89x@gmail.com |
8144e861daeddbe3fc7d2dc414faa1fbe0eddf1d | fe2836176ca940977734312801f647c12e32a297 | /LeetCode/old/PrepForProtonMailInterview2018/283.cpp | 48210ee21fa929dc84dcc4ca4406423c2aec59b6 | [] | no_license | henrybear327/Sandbox | ef26d96bc5cbcdc1ce04bf507e19212ca3ceb064 | d77627dd713035ab89c755a515da95ecb1b1121b | refs/heads/master | 2022-12-25T16:11:03.363028 | 2022-12-10T21:08:41 | 2022-12-10T21:08:41 | 53,817,848 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 872 | cpp | // :%s/^ \*//g
#ifdef LOCAL
#include <bits/stdc++.h>
using namespace std;
// define data structures here
#endif
static int __initialSetup = []()
{
std::ios::sync_with_stdio(false);
cin.tie(NULL);
return 0;
}
();
class Solution
{
public:
void moveZeroes(vector<int> &nums)
{
/*
int cur = 0;
for (int cand = 0; cand < (int)nums.size(); cand++) {
if (nums[cand] != 0) {
nums[cur] = nums[cand];
cur++;
}
}
for (int i = cur; i < (int)nums.size(); i++)
nums[i] = 0;
*/
int cur = 0;
for (int cand = 0; cand < (int)nums.size(); cand++) {
if (nums[cand] != 0) {
swap(nums[cand], nums[cur]);
cur++;
}
}
}
};
#ifdef LOCAL
int main()
{
return 0;
}
#endif
| [
"henry@protonmail.com"
] | henry@protonmail.com |
c42398e314f369daba5ef3b7d0cb675028bb0744 | 74309bbe4da17664ad43ce6334ff212918715d78 | /Project1/show.h | 9b278b2c8cd922f6e59883b9303de4a27c565dc7 | [] | no_license | Tolsi111/OOPFinalProject | c43ad151ac91efe2fa561a7e5a364727a31fffb2 | 7737d3e24b6993bc8b9f45b9041e9ecce4468df1 | refs/heads/main | 2023-04-30T16:18:33.479126 | 2021-05-11T19:42:19 | 2021-05-11T19:42:19 | 361,167,258 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 30 | h | #pragma once
class show
{
};
| [
"dey.bacila09@yahoo.com"
] | dey.bacila09@yahoo.com |
a949776b0a0584de3c0d7c1cb7eedd2443304e1a | 6c4193dd1a5c9354841b991a2a50ccc3293de9a5 | /pro4.cpp | 917999ad7ee16a2e3816cdcc852b22a3ee8387e8 | [] | no_license | ljh123294/ch9 | 53304dd68fce4db12ba8064fac51a7c53455e7f6 | f500265d9c0c029a2ce32fbeef8e700961b06b09 | refs/heads/master | 2023-06-13T08:55:28.460951 | 2021-07-04T14:30:44 | 2021-07-04T14:30:44 | 382,005,560 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 396 | cpp | #include <iostream>
#include <vector>
using namespace std;
bool find_int(vector<int>::const_iterator begin, vector<int>::const_iterator end, int n)
{
while(begin != end)
{
if(*begin == n)
return true;
++begin;
}
return false;
}
int main()
{
vector<int> vi{1,2,3,4,5,6};
cout << find_int(vi.begin(), vi.end(), 0) << endl;
return 0;
} | [
"2441396301@qq.com"
] | 2441396301@qq.com |
13865ba7994b317f26849d792bf3772843d7b2c0 | 76bdea87d5df7add7ff9498e6075577a35832ddf | /Other/倒数.cpp | 9c9d74fb1bdc9b357f8ce2c0900e1904b25c7338 | [] | no_license | ouxu/CppRecord | fc730747ded98377c364d6edae58241ed3fef45a | 7656c9502d47d71859a6216ba2767860b237ccca | refs/heads/master | 2020-04-16T02:39:28.314941 | 2019-01-11T08:05:49 | 2019-01-11T08:05:49 | 60,455,388 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 428 | cpp | #include <iostream>
#include <cmath>
using namespace std;
int main()
{
double a[100];
int N;
int i=0,j=0;
cin>>N;
for (i=0;i<N;i++)
cin>>a[i];
for (i=0;i<N-1;i++)
{for (i=0;j<N-1-i;j++)
{
if (a[j]>a[j+1])
{
int tmp;
tmp=a[j];
a[j]=a[j+1];
a[j+1]=tmp;
}
}
}
for (i=0;i<N;i++)
{
cout<<a[i]<<" ";
}
cout<<endl;
return 0;
}
| [
"fengcheng.xjj@alibaba-inc.com"
] | fengcheng.xjj@alibaba-inc.com |
90178ab429925288ed4ae75ad0d2b32f9e746363 | 844969bd953d7300f02172c867725e27b518c08e | /SDK/BP_HarpoonLauncher_classes.h | bc26cb841e853195ab7f6bfc5ee99441b63504fd | [] | no_license | zanzo420/SoT-Python-Offset-Finder | 70037c37991a2df53fa671e3c8ce12c45fbf75a5 | d881877da08b5c5beaaca140f0ab768223b75d4d | refs/heads/main | 2023-07-18T17:25:01.596284 | 2021-09-09T12:31:51 | 2021-09-09T12:31:51 | 380,604,174 | 0 | 0 | null | 2021-06-26T22:07:04 | 2021-06-26T22:07:03 | null | UTF-8 | C++ | false | false | 1,450 | h | #pragma once
// Name: SoT, Version: 2.2.1.1
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Classes
//---------------------------------------------------------------------------
// BlueprintGeneratedClass BP_HarpoonLauncher.BP_HarpoonLauncher_C
// 0x0018 (FullSize[0x0B38] - InheritedSize[0x0B20])
class ABP_HarpoonLauncher_C : public AHarpoonLauncher
{
public:
class UStaticMeshComponent* CubeNotWalkable; // 0x0B20(0x0008) (BlueprintVisible, ZeroConstructor, IsPlainOldData, NonTransactional, NoDestructor)
class UCapsuleComponent* MountCollision; // 0x0B28(0x0008) (BlueprintVisible, ZeroConstructor, IsPlainOldData, NonTransactional, NoDestructor)
class UCapsuleComponent* BarrelCollision; // 0x0B30(0x0008) (BlueprintVisible, ZeroConstructor, IsPlainOldData, NonTransactional, NoDestructor)
static UClass* StaticClass()
{
static UClass* ptr = UObject::FindClass("BlueprintGeneratedClass BP_HarpoonLauncher.BP_HarpoonLauncher_C");
return ptr;
}
void UserConstructionScript();
void AfterRead();
void BeforeDelete();
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"51171051+DougTheDruid@users.noreply.github.com"
] | 51171051+DougTheDruid@users.noreply.github.com |
8a9d291176179859444cc828b5b817cd5517fb64 | 70a770c0efe5a0c4bfb69997934aa77bddcd2b01 | /Task1 - RoamingForMines/center_servos/center_servos.ino | 7ce7d6e5053571ef2dea000737d5b6fc8fe58f45 | [] | no_license | dtbinh/autonomous_agents_boebot | 4696411326e2ec41861151686a914b1e02c021dd | 537e568a7e36688c234b87ff2e700213546db2e5 | refs/heads/master | 2021-01-19T09:09:26.217792 | 2014-05-11T13:57:39 | 2014-05-11T13:57:39 | 82,071,302 | 1 | 0 | null | 2017-02-15T14:48:55 | 2017-02-15T14:48:55 | null | UTF-8 | C++ | false | false | 779 | ino |
/*
Robotics with the BOE Shield – RightServoStayStill
Transmit the center or stay still signal on pin 12 for center adjustment.
*/
#include <Servo.h> // Include servo library
Servo servoRight;
Servo servoLeft; // Declare right servo
void setup() // Built-in initialization block
{
servoRight.attach(12); // Attach right signal to pin 12
servoRight.writeMicroseconds(1500); // 1.5 ms stay still signal
servoLeft.attach(13); // Attach right signal to pin 12
servoLeft.writeMicroseconds(1500);
}
void loop() // Main loop auto-repeats
{ // Empty, nothing needs repeating
}
| [
"kbunyik@gmail.com"
] | kbunyik@gmail.com |
942d57216aa9eba5aba97362c85c2d76e0c6f154 | e51e8a6a04d0e57901cca3d866f33e54736053c9 | /CodeForces/478/b/78449113_time_limit_exceeded_9.cpp | c8a2e2ccc6021ceed13bbd482e2ab75c7a1a528d | [] | no_license | Nipun4338/Solved-Programming-Problems | 7cb638112ef3d135fc6594eac9c6e79c5b0a0592 | 401a9ecc3157b8b4aa275ceb8c67f4e90213bccd | refs/heads/master | 2023-05-17T02:22:57.007396 | 2021-06-10T17:08:10 | 2021-06-10T17:08:10 | 283,442,802 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,602 | cpp | #include<bits/stdc++.h>
#define rep0(i,n) for(i=0;i<n;i++)
#define rep(i,n) for(i=1;i<=n;i++)
#define reps(i,a,n) for(i=a;i<=n;i++)
#define mem(ara,n) memset(ara,n,sizeof(ara))
#define memb(ara) memset(ara,false,sizeof(ara))
#define all(x) (x).begin(),(x).end()
#define fast ios_base:: sync_with_stdio( false ); cin.tie(0); cout.tie(0);
#define eb emplace_back
#define em emplace
#define pb push_back
#define Mp make_pair
#define ff first
#define ss second
#define mod 1000000007
typedef long long ll;
using namespace std;
const int M = (int)(2e6 + 239);
void decitobinbitodeci()
{
string binary = bitset<8>(128).to_string(); //to binary
cout<<binary<<"\n";
unsigned long decimal = bitset<8>(binary).to_ulong();
cout<<decimal<<"\n";
}
int getnum(string a)
{
int i,p=0;
rep0(i,a.size())
{
p*=10;
p+=a[i]-'0';
}
return p;
}
ll nCr(int n, int r)
{
ll p=1,k=1;
if (n-r<r)
{
r=n-r;
}
if(r!=0)
{
while(r)
{
p*=n;
k*=r;
ll m=__gcd(p, k);
p /= m;
k /= m;
n--;
r--;
}
}
else
{
p=1;
}
return p;
}
int main()
{
/*#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif*/
fast
ll a,b,c;
cin>>a>>b;
ll high=nCr(a-(b-1),2);
ll x1=a/b;
ll x2=a%b;
ll x3=x2*(x1*(x1+1)/2)+(b-x2)*(x1*(x1-1)/2);
cout<<x3<<" "<<high<<endl;
}
| [
"49658560+Nipun4338@users.noreply.github.com"
] | 49658560+Nipun4338@users.noreply.github.com |
8aab6d224003fcba06de2dc77e5cc5961bed937a | a75bfdb61d2bfa20f71d2a1548188db18a8e5e6d | /Codeforces/405/c.cpp | 953eac75f9ae32745549d603b82ddd0ea7785e4a | [] | no_license | Ra1nWarden/Online-Judges | 79bbe269fd35bfb1b4a5b3ea68b806fb39b49e15 | 6d8516bb1560f3620bdc2fc429863a1551d60e6a | refs/heads/master | 2022-05-01T17:50:00.253901 | 2022-04-18T06:55:25 | 2022-04-18T06:55:25 | 18,355,773 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 790 | cpp | #include <iostream>
#include <string>
#include <sstream>
using namespace std;
const int maxn = 50;
string ans[maxn+5];
int n, k;
string each;
string generate(int i) {
stringstream ss;
ss << (char) ('A' + (i % 26));
i /= 26;
while(i) {
ss << (char) ('a' + (i % 26));
i /= 26;
}
return ss.str();
}
int main() {
ios::sync_with_stdio(false);
cin >> n >> k >> ws;
int idx = 0;
int seed = 0;
for(int i = 0; i < k - 1; i++) {
ans[idx++] = generate(seed++);
}
for(int i = 0; i < n - k + 1; i++) {
cin >> each;
if(each == "YES") {
ans[idx] = generate(seed++);
} else {
ans[idx] = ans[idx - k + 1];
}
idx++;
}
for(int i = 0; i < n; i++) {
if(i)
cout << " ";
cout << ans[i];
}
cout << endl;
return 0;
}
| [
"wzh19921016@gmail.com"
] | wzh19921016@gmail.com |
b9fff1fb1ec7fc31e48d3d03887ad433e0b056b9 | 59dc5d428e102bf72eb7245dbbe7a47a66728378 | /common/misc/DebugStream.h | e668c32eb8b7c1c7bdf0952e695bf67fa186b3fd | [] | no_license | HarinarayanKrishnan/VisIt26RC_Trunk | 6716769694d1a309f994056209171f67e5131642 | 581a0825d81169572b48dd80c1946131c03d0858 | refs/heads/master | 2016-09-06T07:14:00.094983 | 2013-05-15T14:36:48 | 2013-05-15T14:36:48 | 7,009,345 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,553 | h | /*****************************************************************************
*
* Copyright (c) 2000 - 2012, Lawrence Livermore National Security, LLC
* Produced at the Lawrence Livermore National Laboratory
* LLNL-CODE-442911
* All rights reserved.
*
* This file is part of VisIt. For details, see https://visit.llnl.gov/. The
* full copyright notice is contained in the file COPYRIGHT located at the root
* of the VisIt distribution or at http://www.llnl.gov/visit/copyright.html.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the disclaimer below.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the disclaimer (as noted below) in the
* documentation and/or other materials provided with the distribution.
* - Neither the name of the LLNS/LLNL nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL LAWRENCE LIVERMORE NATIONAL SECURITY,
* LLC, THE U.S. DEPARTMENT OF ENERGY OR CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
*
*****************************************************************************/
// ************************************************************************* //
// DebugStream.h //
// ************************************************************************* //
#ifndef DEBUG_STREAM_H
#define DEBUG_STREAM_H
#include <misc_exports.h>
#include <visitstream.h>
//
// Hide as much of DebugStream interface as possible.
//
namespace DebugStream
{
// Query if a given level is enabled
extern MISC_API bool Level1();
extern MISC_API bool Level2();
extern MISC_API bool Level3();
extern MISC_API bool Level4();
extern MISC_API bool Level5();
// Obtain a given level's stream object
extern MISC_API ostream& Stream1();
extern MISC_API ostream& Stream2();
extern MISC_API ostream& Stream3();
extern MISC_API ostream& Stream4();
extern MISC_API ostream& Stream5();
// Query what the current level is (more expensive than LevelN())
extern MISC_API int GetLevel();
}
#define debug1 if (!DebugStream::Level1()) ; else (DebugStream::Stream1())
#define debug2 if (!DebugStream::Level2()) ; else (DebugStream::Stream2())
#define debug3 if (!DebugStream::Level3()) ; else (DebugStream::Stream3())
#define debug4 if (!DebugStream::Level4()) ; else (DebugStream::Stream4())
#define debug5 if (!DebugStream::Level5()) ; else (DebugStream::Stream5())
#endif
| [
"brugger@18c085ea-50e0-402c-830e-de6fd14e8384"
] | brugger@18c085ea-50e0-402c-830e-de6fd14e8384 |
be3392953eba7fdd15af87b2270ec3d883713a2c | fb8909f8ca2418e3ee25469073fa06636c3d294b | /src/table_printer/table_printer.cpp | c65ef4bac2437d7efcb471903c4d9285a6c3b15f | [
"BSD-3-Clause"
] | permissive | fossabot/turicreate | a1e9d95fc1f68e7074d1d8024ffd64de82463d39 | a500d5e52143ad15ebdf771d9f74198982c7c45c | refs/heads/master | 2020-12-02T21:45:09.045339 | 2019-12-31T17:50:02 | 2019-12-31T17:50:02 | 231,127,861 | 0 | 0 | BSD-3-Clause | 2019-12-31T17:50:01 | 2019-12-31T17:50:00 | null | UTF-8 | C++ | false | false | 4,866 | cpp | /* Copyright © 2017 Apple Inc. All rights reserved.
*
* Use of this source code is governed by a BSD-3-clause license that can
* be found in the LICENSE.txt file or at https://opensource.org/licenses/BSD-3-Clause
*/
#include <logger/logger.hpp>
#include <logger/assertions.hpp>
#include <timer/timer.hpp>
#include <sstream>
#include <util/try_finally.hpp>
#include <table_printer/table_printer.hpp>
namespace turi {
/** Constructor. Sets up the columns.
*
* \param _format A vector of (column name, width) pairs. If the
* length of column name is larger than width, than width is set to
* the column name. See class header for examples.
*/
table_printer::table_printer(const std::vector<std::pair<std::string, size_t> >& _format,
size_t _track_interval)
: format(_format)
, time_of_first_tick(-1.0)
, value_of_first_tick(0)
, num_ticks_so_far(0)
, next_tick_to_print(0)
, track_interval(_track_interval)
{
DASSERT_FALSE(format.empty());
size_t total_size = 0;
// The column start.
total_size += 2;
for(size_t i = 0; i < format.size(); ++i) {
if(format[i].first.size() > format[i].second)
format[i].second = format[i].first.size();
total_size += format[i].second;
total_size += 3; // Width into next column.
}
lowres_tt.ms();
tt.start();
}
/** Need to clean up some things.
*/
table_printer::~table_printer() {
if(track_sframe.is_opened_for_write()) {
track_sframe.close();
}
}
/** Prints the header.
*
* Example output:
*
* +-----------+------------+----------+------------------+
* | Iteration | Time | RMSE | Top String |
* +-----------+------------+----------+------------------+
*/
void table_printer::print_header() const {
print_line_break();
std::ostringstream ss;
ss << '|';
for(const auto& p : format) {
ss << ' ';
ss << p.first;
for(size_t i = p.first.size(); i < p.second; ++i)
ss << ' ';
ss << ' ' << '|';
}
_p(ss);
print_line_break();
}
/** Prints a line break.
*
* Example output:
*
* +-----------+------------+----------+------------------+
*/
void table_printer::print_line_break() const {
std::ostringstream ss;
ss << '+';
for(const auto& p : format) {
for(size_t i = 0; i < p.second + 2; ++i)
ss << '-';
ss << '+';
}
_p(ss);
}
/** Prints the footer.
*
* Example output:
*
* +-----------+------------+----------+------------------+
*/
void table_printer::print_footer() const {
print_line_break();
}
/** Returns the elapsed time since class creation. This is the
* value used if progress_time() is passed in to print_row.
*/
double table_printer::elapsed_time() const {
return tt.current_time();
}
/** Returns the current tracked table. Any rows added after this is
* called will cause the table to be cleared and all rows to be
* added to another table.
*/
sframe table_printer::get_tracked_table() {
std::lock_guard<decltype(track_register_lock)> register_lock_gourd(track_register_lock);
if(!tracker_is_initialized) {
// Initialize an empty table
track_sframe = sframe();
size_t n = format.size();
// Get the names
std::vector<std::string> column_names(n);
std::vector<flex_type_enum> column_types(n);
for(size_t i = 0; i < n; ++i) {
column_names[i] = format[i].first;
column_types[i] = flex_type_enum::STRING;
}
track_sframe.open_for_write(column_names, column_types, "", 1);
tracking_out_iter = track_sframe.get_output_iterator(0);
tracker_is_initialized = true;
}
if(track_sframe.is_opened_for_write()) {
track_sframe.close();
}
tracker_is_initialized = false;
return track_sframe;
}
/** Sets up the time interval at which things are printed.
*/
size_t table_printer::set_up_time_printing_interval(size_t tick) {
DASSERT_EQ(size_t(next_tick_to_print), 0);
double time_since_first_tick_registration
= (tt.current_time() - time_of_first_tick);
double time_estimate_between_ticks
= time_since_first_tick_registration / (tick - value_of_first_tick);
// Now, time to set the tick interval
size_t _tick_interval = 1000000000;
size_t tick_candidates[] = {1, 5, 10, 25};
bool tick_interval_set = false;
for(size_t magnitude = 0; !tick_interval_set && magnitude < 10; ++magnitude) {
for(size_t itv_itvl : tick_candidates) {
if(itv_itvl * time_estimate_between_ticks >= MIN_SECONDS_BETWEEN_TICK_PRINTS) {
_tick_interval = itv_itvl;
tick_interval_set = true;
break;
}
}
// Multiply by 10 and try again, so we're testing 1, 5, 10, 25,
// 50 100 250 500, etc. The min is what matters.
for(size_t& itv_itvl : tick_candidates)
itv_itvl *= 10;
}
return _tick_interval;
}
}
| [
"znation@apple.com"
] | znation@apple.com |
6636c03bb44adcd85be490abf14c2d325936360a | 23936657845a547e5f2680e5c3e3374f86250f03 | /python/writems.hpp | 43b745df976adc2acf82e08972b77ab0b8841989 | [] | no_license | molpopgen/qtrait_paper | 6e45617370c75a9e28efa3b4586263c00131bb52 | 9c382e3cb1beba180b96796e3bb7150da24809e6 | refs/heads/master | 2021-03-30T15:57:37.601061 | 2020-01-04T21:30:20 | 2020-01-04T21:30:20 | 56,942,800 | 0 | 0 | null | 2020-01-04T21:30:21 | 2016-04-23T22:00:04 | Jupyter Notebook | UTF-8 | C++ | false | false | 364 | hpp | #ifndef WRITEMS_HPP
#define WRITEMS_HPP
#include <Sequence/SimData.hpp>
#include <sstream>
#include <zlib.h>
namespace writems {
void writeSimData(const Sequence::SimData & d, const std::string & filename) {
std::ostringstream o;
o << d << '\n';
gzFile gz = gzopen(filename.c_str(),"ab");
gzwrite(gz,o.str().c_str(),o.str().size());
gzclose(gz);
}
}
#endif
| [
"krthornt@uci.edu"
] | krthornt@uci.edu |
96bb328c913a38be9e4b563cb2467162f508fb59 | 544a465731b44638ad61a4afa4f341aecf66f3cd | /src/libivk/cpplapack/_zgematrix-/_zgematrix-_zgematrix.hpp | 10bf8d1ceeabf226c851fee00d226d46c10cba36 | [] | no_license | skempken/interverdikom | e13cbe592aa6dc5b67d8b2fbb4182bcb2b8bc15b | dde091ee71dc1d88bbedb5162771623f3ab8a6f4 | refs/heads/master | 2020-05-29T15:29:18.076702 | 2014-01-03T10:10:03 | 2014-01-03T10:10:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,675 | hpp | //=============================================================================
/*! _zgematrix+_zgematrix operator */
inline _zgematrix operator+(const _zgematrix& matA, const _zgematrix& matB)
{
#ifdef CPPL_VERBOSE
std::cerr << "# [MARK] operator+(const _zgematrix&, const _zgematrix&)"
<< std::endl;
#endif//CPPL_VERBOSE
#ifdef CPPL_DEBUG
if(matA.N!=matB.N || matA.M!=matB.M){
std::cerr << "[ERROR] operator+(_zgematrix&, _zgematrix&)" << std::endl
<< "These two matrises can not make a summation." << std::endl
<< "Your input was (" << matA.M << "x" << matA.N << ") + ("
<< matB.M << "x" << matB.N << ")." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
for(long i=0; i<matA.M*matA.N; i++){ matA.Array[i]+=matB.Array[i]; }
matB.destroy();
return matA;
}
//=============================================================================
/*! _zgematrix-_zgematrix operator */
inline _zgematrix operator-(const _zgematrix& matA, const _zgematrix& matB)
{
#ifdef CPPL_VERBOSE
std::cerr << "# [MARK] operator-(const _zgematrix&, const _zgematrix&)"
<< std::endl;
#endif//CPPL_VERBOSE
#ifdef CPPL_DEBUG
if(matA.N!=matB.N || matA.M!=matB.M){
std::cerr << "[ERROR] operator-(_zgematrix&, _zgematrix&)" << std::endl
<< "These two matrises can not make a subtraction." << std::endl
<< "Your input was (" << matA.M << "x" << matA.N << ") - ("
<< matB.M << "x" << matB.N << ")." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
for(long i=0; i<matA.M*matA.N; i++){ matA.Array[i]-=matB.Array[i]; }
matB.destroy();
return matA;
}
//=============================================================================
/*! _zgematrix*_zgematrix operator */
inline _zgematrix operator*(const _zgematrix& matA, const _zgematrix& matB)
{
#ifdef CPPL_VERBOSE
std::cerr << "# [MARK] operator*(const _zgematrix&, const _zgematrix&)"
<< std::endl;
#endif//CPPL_VERBOSE
#ifdef CPPL_DEBUG
if(matA.N!=matB.M){
std::cerr << "[ERROR] operator*(_zgematrix&, _zgematrix&)" << std::endl
<< "These two matrises can not make a product." << std::endl
<< "Your input was (" << matA.M << "x" << matA.N << ") * ("
<< matB.M << "x" << matB.N << ")." << std::endl;
exit(1);
}
#endif//CPPL_DEBUG
zgematrix newmat( matA.M, matB.N );
zgemm_( 'N', 'N', matA.M, matB.N, matA.N, std::complex<double>(1.0,0.0),
matA.Array, matA.M, matB.Array, matB.M,
std::complex<double>(0.0,0.0), newmat.array, matA.M );
matA.destroy();
matB.destroy();
return _(newmat);
}
| [
"sebastian@ivk-virtualbox.(none)"
] | sebastian@ivk-virtualbox.(none) |
fd63fc79a018c701645b45f66937595ca1e8d4db | b0385513df204cfadfa5e95c780b05e032fc2efb | /Fibunacci.cpp | 990f2d49f223e7525a9d5591156c6623e6b23fba | [] | no_license | Esparses/Codes | 796ac902ab133d9d8800b31dc347c9e50582d03c | 2b9442c1ca39bee4b5c6ef86405137c26fe58775 | refs/heads/master | 2021-01-10T17:19:32.802256 | 2017-09-04T21:16:19 | 2017-09-04T21:16:19 | 48,201,876 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 752 | cpp | #include <iostream>
#include <vector>
#include <string>
using namespace std;
vector<string> ls;
string suma(string a,string b){
int l = 1+ (a.length() > b.length()?a.length():b.length());
string c(l,'0');
a = string (l-a.length(), '0')+a;
b = string (l-b.length(), '0')+b;
int ac=0,sum =0;
for(int i=l-1; i >=0; i--){
sum=a[i]+b[i]-'0'-'0' +ac;
c[i]=(sum%10)+'0';
ac=sum/10;
}
while(c.length()> 0 && c[0] == '0')
c.erase(c.begin());
return c;
}
string fibunacci(int n){
if(n <= ls.size())
return ls[n-1];
else{
ls.push_back(suma(fibunacci(n-1),fibunacci(n-2)));
return ls[n-1];
}
}
int main() {
int n;
ls.push_back("1");
ls.push_back("1");
while(cin>>n){
cout<<fibunacci(n)<<endl;
}
}
| [
"joel.regalado.morales@gmail.com"
] | joel.regalado.morales@gmail.com |
7e94d19b25b19fa80e5948c453f2f5e4faacedca | 8df07d62e3b360459c694da5ab482aa66aa2e383 | /KeyGen/Bai2.4/Hash.h | 012d12e4ef73fdb26a661c553aa368059a1ead19 | [] | no_license | hvphuc99/KeyGen | f7603f7a59356bd5e0711cc0a9e53d0361a0acc4 | 576083b83a5f691623468588734c8b8ee6961807 | refs/heads/master | 2020-05-29T21:39:56.468626 | 2019-06-08T08:15:50 | 2019-06-08T08:15:50 | 189,387,611 | 0 | 0 | null | 2019-06-08T08:15:52 | 2019-05-30T09:44:09 | C++ | UTF-8 | C++ | false | false | 222 | h | #pragma once
#include "Table.h"
#include <string>
using namespace std;
class Hash
{
public:
Hash(string arg);
string hash4ByteTo8Byte();
unsigned int hash8ByteTo4Byte(Table *table_inst);
private:
string str_input;
};
| [
"hvphuc081299@gmail.com"
] | hvphuc081299@gmail.com |
a0959522ec424c3b84c938e9b00b84764fde9c33 | c2486df973729fb40c023c7c008c0a3ea7621f08 | /ListView/my3/on_notify_msg.cpp | 6aab8d954629914c1872858e62f1a46d06cab837 | [] | no_license | orf53975/WINAPI1- | 060bf79cc022feefd1130ab4c00b5b2c43b09380 | 840bc8f4071d19bffeba3bbbef8070bf1273e3a8 | refs/heads/master | 2021-10-12T01:37:03.515294 | 2018-11-12T14:30:29 | 2018-11-12T14:30:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,787 | cpp |
long __stdcall on_notify(HWND hwnd,unsigned int message
,unsigned int wparam,long lparam)
{
switch(wparam)
{
case 369:
{
switch(((LPNMHDR)lparam)->code)
{
case TVN_GETDISPINFO:
{
TV_DISPINFO FAR *ptvdi = (TV_DISPINFO FAR *) lparam;
TV_DISPINFO* pTVDispInfo = (TV_DISPINFO*)lparam;
pTVDispInfo->item.pszText;// = (char *)(pTVDispInfo->item.lParam)->Lfn;
MessageBox(0,pTVDispInfo->item.pszText,0,0);
}
break;
case TVN_SELCHANGED:
{
char str[256]="2234";
NMTREEVIEW* pnmtv = (LPNMTREEVIEW)lparam;
TVITEM item;
item.hItem = pnmtv->itemNew.hItem;
item.mask = TVIF_TEXT;
item.pszText = str;
item.cchTextMax =256;
SendMessage(GetDlgItem(hwnd,1000),TVM_GETITEM,0,(LPARAM)&item);
MessageBox(0,str,0,0);
//LPNM_TREEVIEW ptv=new NM_TREEVIEW;
////TV_ITEM tviNew = ((LPNM_TREEVIEW)lParam)->itemNew;
//GetWindowText(( (LPNMHDR)lparam )->hwndFrom,str,256);
//((LPNM_TREEVIEW)lparam)->itemNew.pszText;
//MessageBox(0,((LPNM_TREEVIEW)lparam)->itemNew.pszText,str,0);
}
break;
case NM_DBLCLK:
{
MessageBox(0,"TV","NM_DBLCLK",0);
}
break;
case NM_RCLICK: break;
case TVN_ENDLABELEDIT: break;
case TVN_BEGINLABELEDIT: break;
case TVN_BEGINDRAG: break;
case TVN_KEYDOWN:
{
switch((((TV_KEYDOWN FAR *)lparam)->wVKey))
{
case VK_RETURN:
MessageBox(0,"TV","VK_RETURN",0);
break;
case VK_DELETE:
SendMessage(GetDlgItem(hwnd,369),WM_SETTEXT,0,(LPARAM)(LPCSTR)"delt");
break;
}
}
break;
case TVN_ITEMEXPANDED:
{
MessageBox(0,"TV","TVN_ITEMEXPANDED",0);
}
break;
}
}
break;
case 1212://listview
break;
}
return 0;
} | [
"vaxoalavidze97@gmail.com"
] | vaxoalavidze97@gmail.com |
158f2dabefb77eb1811bd1ce1ae9665a4a0cbdc6 | 2a02d8873c8825eb3fef2b352fcda238961831c9 | /olinfo/candies/main.cpp | d46339d69620cf12cde861d9dca464961456381a | [] | no_license | Stypox/olympiad-exercises | eb42b93a10ae566318317dfa3daaa65b7939621b | 70c6e83a6774918ade532855e818b4822d5b367b | refs/heads/master | 2023-04-13T22:30:55.122026 | 2023-04-10T15:09:17 | 2023-04-10T15:09:17 | 168,403,900 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,028 | cpp | #pragma GCC optimize ("O3")
#include <bits/stdc++.h>
using namespace std;
#define int int64_t
#define float long double
ifstream in{"input.txt"};
ofstream out{"output.txt"};
#ifdef DEBUG
template<class A,class B>ostream&operator<<(ostream&o,const pair<A,B>&p){cout<<"("<<p.first<<", "<<p.second<<")";return o;}
template<class T,typename=typename enable_if<!is_same<T, string>::value,decltype(*begin(declval<T>()))>::type>ostream&operator<<(ostream&o,const T&v){cout<<"[";for(auto it=v.begin();it!=v.end();++it){if(it!=v.begin()){cout<<", ";}cout<<*it;}cout<<"]";return o;}
void deb(){cout<<"\n";}template<class T,class...Ts>void deb(const T&t,const Ts&...args){cout<<t;if(sizeof...(args)!=0){cout<<" ";}deb(args...);}
#else
#define deb(...)
#endif
signed main() {
int N;
in>>N;
vector<int> S(N);
for(int n = 0; n != N; ++n) {
in>>S[n];
}
sort(S.begin(), S.end());
int res=0, prev=0, cand=0;
for(int n = 0; n != N; ++n) {
if (S[n] != prev) {
cand++;
prev = S[n];
}
res += cand;
}
out<<res<<"\n";
}
| [
"stypox@pm.me"
] | stypox@pm.me |
dbddd5c11d84dc08298d2b7f97dbbd89ef8c059a | dce8e139b2a15b88e0663388809550d65ed24141 | /dump.cpp | 505c90680cbde90624712b4b35e16521e1447896 | [] | no_license | alexdrozdov/asr-fsm-mental-fsm | fd87aea8f9debd33019532d3aa46339437f0181f | eccb10ac1722be5bebed5249c3ab08d2e85540b5 | refs/heads/master | 2021-01-02T08:33:11.160444 | 2014-09-02T08:40:21 | 2014-09-02T08:40:21 | 40,648,864 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,821 | cpp | /*
* dump.cpp
*
* Created on: 27.05.2013
* Author: drozdov
*/
#include <iostream>
#include "dump.h"
using namespace std;
DumpStream::DumpStream() {
dump_to_stdout = false;
dump_to_file = false;
dump_to_p2vera = false;
}
DumpStream::~DumpStream() {
if (dump_to_file) {
dump_stream.close();
}
}
void DumpStream::disable() {
if (dump_to_file) {
dump_stream.close();
}
dump_to_stdout = false;
dump_to_file = false;
dump_to_p2vera = false;
}
bool DumpStream::enabled() {
return dump_to_stdout | dump_to_stdout | dump_to_p2vera;
}
void DumpStream::set_stdout() {
if (dump_to_file) {
dump_stream.close();
}
dump_to_stdout = true;
dump_to_file = false;
dump_to_p2vera = false;
}
void DumpStream::set_file(std::string file_name) {
dump_to_stdout = false;
dump_to_p2vera = false;
if (dump_to_file) {
dump_stream.close();
}
dump_stream.open(file_name.c_str());
dump_to_file = true;
}
void DumpStream::set_p2vera_stream(std::string stream_name) {
if (dump_to_file) {
dump_stream.close();
}
cout << "DumpStream::set_p2vera_stream error - not implemented" << endl;
}
DumpStream& DumpStream::operator<<(std::string str) {
if (dump_to_stdout) cout << str;
if (dump_to_file) dump_stream << str;
return *this;
}
DumpStream& DumpStream::operator<<(int v) {
if (dump_to_stdout) cout << v;
if (dump_to_file) dump_stream << v;
return *this;
}
DumpStream& DumpStream::operator<<(long long v) {
if (dump_to_stdout) cout << v;
if (dump_to_file) dump_stream << v;
return *this;
}
DumpStream& DumpStream::operator<<(double v) {
if (dump_to_stdout) cout << v;
if (dump_to_file) dump_stream << v;
return *this;
}
DumpStream& DumpStream::operator<<(std::ostream& (*f)(std::ostream&)) {
if (dump_to_stdout) cout << endl;
if (dump_to_file) dump_stream << endl;
return *this;
}
| [
"alex.drozdovs@gmail.com"
] | alex.drozdovs@gmail.com |
a36dd193e6e03a1e5301759acbc3c92970735b64 | 31d00495b6fa63bfdcaeea68e6ec38e1ec4158b0 | /examples/galaga/src/galaga/FollowEntity.h | 17af227f3471734027d5718e2a12e8357436a6db | [
"Apache-2.0"
] | permissive | loafofpiecrust/lfant | c6e663a3e61afc33bd30112285b2e88177cba419 | a38826e325a50dffb5d030d71abcd58de59e8389 | refs/heads/master | 2021-01-23T14:52:29.782769 | 2014-12-19T18:56:42 | 2014-12-19T18:56:42 | 8,059,823 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,296 | h | /******************************************************************************
*
* LFANT Source
* Copyright (C) 2012-2013 by LazyFox Studios
* Created: 2013-06-18 by Taylor Snead
*
* 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.
*
******************************************************************************/
#pragma once
// internal
#include <lfant/Component.h>
// External
namespace lfant {
namespace galaga {
class FollowEntity : public lfant::Component
{
DECLARE_TYPE(lfant::Component, FollowEntity)
public:
FollowEntity();
~FollowEntity();
void Load(Properties* prop);
void Save(Properties* prop);
void Init();
void Update();
bool useX = true;
bool useY = true;
bool useZ = true;
float speed = 3.5f;
float damping = 1.0f;
Entity* entity = nullptr;
protected:
private:
};
}
} | [
"taylorsnead@gmail.com"
] | taylorsnead@gmail.com |
b52d6228482235874f88078be2549f7941142ccc | 64e33ef0860a04a06c5ea7bd8b2159890f757d7d | /jni/art-kitkat-mr1.1-release/runtime/verifier/reg_type.h | 2064cbd0eb448d225c9def9534982e35a1bd5e67 | [
"Apache-2.0"
] | permissive | handgod/soma | a16d5547d1b3a028ead86bd3531c0526568c74f5 | d64131f4d6f9543eacd1d4040b560df00555b2c8 | refs/heads/master | 2021-01-10T11:34:58.926723 | 2016-03-04T11:56:41 | 2016-03-04T11:56:41 | 53,018,560 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 31,845 | h | /*
* Copyright (C) 2012 The Android Open Source Project
*
* 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.
*/
#ifndef ART_RUNTIME_VERIFIER_REG_TYPE_H_
#define ART_RUNTIME_VERIFIER_REG_TYPE_H_
#include "base/macros.h"
#include "globals.h"
#include "primitive.h"
#include "jni.h"
#include <limits>
#include <stdint.h>
#include <set>
#include <string>
namespace art {
namespace mirror {
class Class;
} // namespace mirror
namespace verifier {
class RegTypeCache;
/*
* RegType holds information about the "type" of data held in a register.
*/
class RegType {
public:
virtual bool IsUndefined() const { return false; }
virtual bool IsConflict() const { return false; }
virtual bool IsBoolean() const { return false; }
virtual bool IsByte() const { return false; }
virtual bool IsChar() const { return false; }
virtual bool IsShort() const { return false; }
virtual bool IsInteger() const { return false; }
virtual bool IsLongLo() const { return false; }
virtual bool IsLongHi() const { return false; }
virtual bool IsFloat() const { return false; }
virtual bool IsDouble() const { return false; }
virtual bool IsDoubleLo() const { return false; }
virtual bool IsDoubleHi() const { return false; }
virtual bool IsUnresolvedReference() const { return false; }
virtual bool IsUninitializedReference() const { return false; }
virtual bool IsUninitializedThisReference() const { return false; }
virtual bool IsUnresolvedAndUninitializedReference() const { return false; }
virtual bool IsUnresolvedAndUninitializedThisReference() const { return false; }
virtual bool IsUnresolvedMergedReference() const { return false; }
virtual bool IsUnresolvedSuperClass() const { return false; }
virtual bool IsReference() const { return false; }
virtual bool IsPreciseReference() const { return false; }
virtual bool IsPreciseConstant() const { return false; }
virtual bool IsPreciseConstantLo() const { return false; }
virtual bool IsPreciseConstantHi() const { return false; }
virtual bool IsImpreciseConstantLo() const { return false; }
virtual bool IsImpreciseConstantHi() const { return false; }
virtual bool IsImpreciseConstant() const { return false; }
virtual bool IsConstantTypes() const { return false; }
bool IsConstant() const {
return IsPreciseConstant() || IsImpreciseConstant();
}
bool IsConstantLo() const {
return IsPreciseConstantLo() || IsImpreciseConstantLo();
}
bool IsPrecise() const {
return IsPreciseConstantLo() || IsPreciseConstant() || IsPreciseConstantHi();
}
bool IsLongConstant() const {
return IsConstantLo();
}
bool IsConstantHi() const {
return (IsPreciseConstantHi() || IsImpreciseConstantHi());
}
bool IsLongConstantHigh() const {
return IsConstantHi();
}
virtual bool IsUninitializedTypes() const { return false; }
bool IsUnresolvedTypes() const {
return IsUnresolvedReference() || IsUnresolvedAndUninitializedReference() ||
IsUnresolvedAndUninitializedThisReference() ||
IsUnresolvedMergedReference() || IsUnresolvedSuperClass();
}
bool IsLowHalf() const {
return (IsLongLo() || IsDoubleLo() || IsPreciseConstantLo() ||
IsImpreciseConstantLo());
}
bool IsHighHalf() const {
return (IsLongHi() || IsDoubleHi() || IsPreciseConstantHi() ||
IsImpreciseConstantHi());
}
bool IsLongOrDoubleTypes() const {
return IsLowHalf();
}
// Check this is the low half, and that type_h is its matching high-half.
inline bool CheckWidePair(const RegType& type_h) const {
if (IsLowHalf()) {
return ((IsPreciseConstantLo() && type_h.IsPreciseConstantHi()) ||
(IsPreciseConstantLo() && type_h.IsImpreciseConstantHi()) ||
(IsImpreciseConstantLo() && type_h.IsPreciseConstantHi()) ||
(IsImpreciseConstantLo() && type_h.IsImpreciseConstantHi()) ||
(IsDoubleLo() && type_h.IsDoubleHi()) ||
(IsLongLo() && type_h.IsLongHi()));
}
return false;
}
// The high half that corresponds to this low half
const RegType& HighHalf(RegTypeCache* cache) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
bool IsConstantBoolean() const {
return IsConstant() && (ConstantValue() >= 0) && (ConstantValue() <= 1);
}
virtual bool IsConstantChar() const {
return false;
}
virtual bool IsConstantByte() const {
return false;
}
virtual bool IsConstantShort() const {
return false;
}
virtual bool IsOne() const {
return false;
}
virtual bool IsZero() const {
return false;
}
bool IsReferenceTypes() const {
return IsNonZeroReferenceTypes() || IsZero();
}
virtual bool IsNonZeroReferenceTypes() const {
return false;
}
bool IsCategory1Types() const {
return IsChar() || IsInteger() || IsFloat() || IsConstant() || IsByte() || IsShort() ||
IsBoolean();
}
bool IsCategory2Types() const {
return IsLowHalf(); // Don't expect explicit testing of high halves
}
bool IsBooleanTypes() const {
return IsBoolean() || IsConstantBoolean();
}
bool IsByteTypes() const {
return IsConstantByte() || IsByte() || IsBoolean();
}
bool IsShortTypes() const {
return IsShort() || IsByte() || IsBoolean() || IsConstantShort();
}
bool IsCharTypes() const {
return IsChar() || IsBooleanTypes() || IsConstantChar();
}
bool IsIntegralTypes() const {
return IsInteger() || IsConstant() || IsByte() || IsShort() || IsChar() || IsBoolean();
}
// Give the constant value encoded, but this shouldn't be called in the general case.
virtual int32_t ConstantValue() const;
virtual int32_t ConstantValueLo() const;
virtual int32_t ConstantValueHi() const;
bool IsArrayIndexTypes() const {
return IsIntegralTypes();
}
// Float type may be derived from any constant type
bool IsFloatTypes() const {
return IsFloat() || IsConstant();
}
bool IsLongTypes() const {
return IsLongLo() || IsLongConstant();
}
bool IsLongHighTypes() const {
return (IsLongHi() ||
IsPreciseConstantHi() ||
IsImpreciseConstantHi());
}
bool IsDoubleTypes() const {
return IsDoubleLo() || IsLongConstant();
}
bool IsDoubleHighTypes() const {
return (IsDoubleHi() || IsPreciseConstantHi() || IsImpreciseConstantHi());
}
virtual bool IsLong() const {
return false;
}
virtual bool HasClass() const {
return false;
}
bool IsJavaLangObject() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
bool IsArrayTypes() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
bool IsObjectArrayTypes() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Primitive::Type GetPrimitiveType() const;
bool IsJavaLangObjectArray() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
bool IsInstantiableTypes() const;
const std::string& GetDescriptor() const {
DCHECK(HasClass() || (IsUnresolvedTypes() && !IsUnresolvedMergedReference() &&
!IsUnresolvedSuperClass()));
return descriptor_;
}
mirror::Class* GetClass() const {
DCHECK(!IsUnresolvedReference());
DCHECK(klass_ != NULL);
DCHECK(HasClass());
return klass_;
}
uint16_t GetId() const {
return cache_id_;
}
const RegType& GetSuperClass(RegTypeCache* cache) const
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
virtual std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
// Can this type access other?
bool CanAccess(const RegType& other) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
// Can this type access a member with the given properties?
bool CanAccessMember(mirror::Class* klass, uint32_t access_flags) const
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
// Can this type be assigned by src?
// Note: Object and interface types may always be assigned to one another, see comment on
// ClassJoin.
bool IsAssignableFrom(const RegType& src) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
// Can this type be assigned by src? Variant of IsAssignableFrom that doesn't allow assignment to
// an interface from an Object.
bool IsStrictlyAssignableFrom(const RegType& src) const
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
// Are these RegTypes the same?
bool Equals(const RegType& other) const {
return GetId() == other.GetId();
}
// Compute the merge of this register from one edge (path) with incoming_type from another.
virtual const RegType& Merge(const RegType& incoming_type, RegTypeCache* reg_types) const
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
/*
* A basic Join operation on classes. For a pair of types S and T the Join, written S v T = J, is
* S <: J, T <: J and for-all U such that S <: U, T <: U then J <: U. That is J is the parent of
* S and T such that there isn't a parent of both S and T that isn't also the parent of J (ie J
* is the deepest (lowest upper bound) parent of S and T).
*
* This operation applies for regular classes and arrays, however, for interface types there
* needn't be a partial ordering on the types. We could solve the problem of a lack of a partial
* order by introducing sets of types, however, the only operation permissible on an interface is
* invoke-interface. In the tradition of Java verifiers [1] we defer the verification of interface
* types until an invoke-interface call on the interface typed reference at runtime and allow
* the perversion of Object being assignable to an interface type (note, however, that we don't
* allow assignment of Object or Interface to any concrete class and are therefore type safe).
*
* [1] Java bytecode verification: algorithms and formalizations, Xavier Leroy
*/
static mirror::Class* ClassJoin(mirror::Class* s, mirror::Class* t)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
virtual ~RegType() {}
protected:
RegType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: descriptor_(descriptor), klass_(klass), cache_id_(cache_id) {
if (kIsDebugBuild) {
CheckInvariants();
}
}
void CheckInvariants() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
const std::string descriptor_;
mirror::Class* const klass_;
const uint16_t cache_id_;
friend class RegTypeCache;
private:
DISALLOW_COPY_AND_ASSIGN(RegType);
};
// Bottom type.
class ConflictType : public RegType {
public:
bool IsConflict() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
// Get the singleton Conflict instance.
static ConflictType* GetInstance();
// Create the singleton instance.
static ConflictType* CreateInstance(mirror::Class* klass, const std::string& descriptor,
uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
// Destroy the singleton instance.
static void Destroy();
private:
ConflictType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: RegType(klass, descriptor, cache_id) {
}
static ConflictType* instance_;
};
// A variant of the bottom type used to specify an undefined value in the incoming registers.
// Merging with UndefinedType yields ConflictType which is the true bottom.
class UndefinedType : public RegType {
public:
bool IsUndefined() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
// Get the singleton Undefined instance.
static UndefinedType* GetInstance();
// Create the singleton instance.
static UndefinedType* CreateInstance(mirror::Class* klass, const std::string& descriptor,
uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
// Destroy the singleton instance.
static void Destroy();
private:
UndefinedType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: RegType(klass, descriptor, cache_id) {
}
virtual const RegType& Merge(const RegType& incoming_type, RegTypeCache* reg_types) const
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
static UndefinedType* instance_;
};
class PrimitiveType : public RegType {
public:
PrimitiveType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
};
class Cat1Type : public PrimitiveType {
public:
Cat1Type(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
};
class IntegerType : public Cat1Type {
public:
bool IsInteger() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
static IntegerType* CreateInstance(mirror::Class* klass, const std::string& descriptor,
uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
static IntegerType* GetInstance();
static void Destroy();
private:
IntegerType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: Cat1Type(klass, descriptor, cache_id) {
}
static IntegerType* instance_;
};
class BooleanType : public Cat1Type {
public:
bool IsBoolean() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
static BooleanType* CreateInstance(mirror::Class* klass, const std::string& descriptor,
uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
static BooleanType* GetInstance();
static void Destroy();
private:
BooleanType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: Cat1Type(klass, descriptor, cache_id) {
}
static BooleanType* instance;
};
class ByteType : public Cat1Type {
public:
bool IsByte() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
static ByteType* CreateInstance(mirror::Class* klass, const std::string& descriptor,
uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
static ByteType* GetInstance();
static void Destroy();
private:
ByteType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: Cat1Type(klass, descriptor, cache_id) {
}
static ByteType* instance_;
};
class ShortType : public Cat1Type {
public:
bool IsShort() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
static ShortType* CreateInstance(mirror::Class* klass, const std::string& descriptor,
uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
static ShortType* GetInstance();
static void Destroy();
private:
ShortType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: Cat1Type(klass, descriptor, cache_id) {
}
static ShortType* instance_;
};
class CharType : public Cat1Type {
public:
bool IsChar() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
static CharType* CreateInstance(mirror::Class* klass, const std::string& descriptor,
uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
static CharType* GetInstance();
static void Destroy();
private:
CharType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: Cat1Type(klass, descriptor, cache_id) {
}
static CharType* instance_;
};
class FloatType : public Cat1Type {
public:
bool IsFloat() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
static FloatType* CreateInstance(mirror::Class* klass, const std::string& descriptor,
uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
static FloatType* GetInstance();
static void Destroy();
private:
FloatType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: Cat1Type(klass, descriptor, cache_id) {
}
static FloatType* instance_;
};
class Cat2Type : public PrimitiveType {
public:
Cat2Type(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
};
class LongLoType : public Cat2Type {
public:
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
bool IsLongLo() const {
return true;
}
bool IsLong() const {
return true;
}
static LongLoType* CreateInstance(mirror::Class* klass, const std::string& descriptor,
uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
static LongLoType* GetInstance();
static void Destroy();
private:
LongLoType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: Cat2Type(klass, descriptor, cache_id) {
}
static LongLoType* instance_;
};
class LongHiType : public Cat2Type {
public:
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
bool IsLongHi() const {
return true;
}
static LongHiType* CreateInstance(mirror::Class* klass, const std::string& descriptor,
uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
static LongHiType* GetInstance();
static void Destroy();
private:
LongHiType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: Cat2Type(klass, descriptor, cache_id) {
}
static LongHiType* instance_;
};
class DoubleLoType : public Cat2Type {
public:
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
bool IsDoubleLo() const {
return true;
}
bool IsDouble() const {
return true;
}
static DoubleLoType* CreateInstance(mirror::Class* klass, const std::string& descriptor,
uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
static DoubleLoType* GetInstance();
static void Destroy();
private:
DoubleLoType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: Cat2Type(klass, descriptor, cache_id) {
}
static DoubleLoType* instance_;
};
class DoubleHiType : public Cat2Type {
public:
std::string Dump() const;
virtual bool IsDoubleHi() const {
return true;
}
static DoubleHiType* CreateInstance(mirror::Class* klass, const std::string& descriptor,
uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
static DoubleHiType* GetInstance();
static void Destroy();
private:
DoubleHiType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: Cat2Type(klass, descriptor, cache_id) {
}
static DoubleHiType* instance_;
};
class ConstantType : public RegType {
public:
ConstantType(uint32_t constat, uint16_t cache_id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
// If this is a 32-bit constant, what is the value? This value may be imprecise in which case
// the value represents part of the integer range of values that may be held in the register.
virtual int32_t ConstantValue() const;
virtual int32_t ConstantValueLo() const;
virtual int32_t ConstantValueHi() const;
bool IsZero() const {
return IsPreciseConstant() && ConstantValue() == 0;
}
bool IsOne() const {
return IsPreciseConstant() && ConstantValue() == 1;
}
bool IsConstantChar() const {
return IsConstant() && ConstantValue() >= 0 &&
ConstantValue() <= std::numeric_limits<jchar>::max();
}
bool IsConstantByte() const {
return IsConstant() &&
ConstantValue() >= std::numeric_limits<jbyte>::min() &&
ConstantValue() <= std::numeric_limits<jbyte>::max();
}
bool IsConstantShort() const {
return IsConstant() &&
ConstantValue() >= std::numeric_limits<jshort>::min() &&
ConstantValue() <= std::numeric_limits<jshort>::max();
}
virtual bool IsConstantTypes() const { return true; }
private:
const uint32_t constant_;
};
class PreciseConstType : public ConstantType {
public:
PreciseConstType(uint32_t constat, uint16_t cache_id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: ConstantType(constat, cache_id) {
}
bool IsPreciseConstant() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
};
class PreciseConstLoType : public ConstantType {
public:
PreciseConstLoType(uint32_t constat, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: ConstantType(constat, cache_id) {
}
bool IsPreciseConstantLo() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
};
class PreciseConstHiType : public ConstantType {
public:
PreciseConstHiType(uint32_t constat, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: ConstantType(constat, cache_id) {
}
bool IsPreciseConstantHi() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
};
class ImpreciseConstType : public ConstantType {
public:
ImpreciseConstType(uint32_t constat, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
bool IsImpreciseConstant() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
};
class ImpreciseConstLoType : public ConstantType {
public:
ImpreciseConstLoType(uint32_t constat, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) : ConstantType(constat, cache_id) {
}
bool IsImpreciseConstantLo() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
};
class ImpreciseConstHiType : public ConstantType {
public:
ImpreciseConstHiType(uint32_t constat, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) : ConstantType(constat, cache_id) {
}
bool IsImpreciseConstantHi() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
};
// Common parent of all uninitialized types. Uninitialized types are created by "new" dex
// instructions and must be passed to a constructor.
class UninitializedType : public RegType {
public:
UninitializedType(mirror::Class* klass, const std::string& descriptor, uint32_t allocation_pc,
uint16_t cache_id)
: RegType(klass, descriptor, cache_id), allocation_pc_(allocation_pc) {
}
bool IsUninitializedTypes() const;
bool IsNonZeroReferenceTypes() const;
uint32_t GetAllocationPc() const {
DCHECK(IsUninitializedTypes());
return allocation_pc_;
}
private:
const uint32_t allocation_pc_;
};
// Similar to ReferenceType but not yet having been passed to a constructor.
class UninitializedReferenceType : public UninitializedType {
public:
UninitializedReferenceType(mirror::Class* klass, const std::string& descriptor,
uint32_t allocation_pc, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: UninitializedType(klass, descriptor, allocation_pc, cache_id) {
}
bool IsUninitializedReference() const {
return true;
}
bool HasClass() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
};
// Similar to UnresolvedReferenceType but not yet having been passed to a constructor.
class UnresolvedUninitializedRefType : public UninitializedType {
public:
UnresolvedUninitializedRefType(const std::string& descriptor, uint32_t allocation_pc,
uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: UninitializedType(NULL, descriptor, allocation_pc, cache_id) {
if (kIsDebugBuild) {
CheckInvariants();
}
}
bool IsUnresolvedAndUninitializedReference() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
private:
void CheckInvariants() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
};
// Similar to UninitializedReferenceType but special case for the this argument of a constructor.
class UninitializedThisReferenceType : public UninitializedType {
public:
UninitializedThisReferenceType(mirror::Class* klass, const std::string& descriptor,
uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: UninitializedType(klass, descriptor, 0, cache_id) {
if (kIsDebugBuild) {
CheckInvariants();
}
}
virtual bool IsUninitializedThisReference() const {
return true;
}
bool HasClass() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
private:
void CheckInvariants() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
};
class UnresolvedUninitializedThisRefType : public UninitializedType {
public:
UnresolvedUninitializedThisRefType(const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: UninitializedType(NULL, descriptor, 0, cache_id) {
if (kIsDebugBuild) {
CheckInvariants();
}
}
bool IsUnresolvedAndUninitializedThisReference() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
private:
void CheckInvariants() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
};
// A type of register holding a reference to an Object of type GetClass or a sub-class.
class ReferenceType : public RegType {
public:
ReferenceType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: RegType(klass, descriptor, cache_id) {
}
bool IsReference() const {
return true;
}
bool IsNonZeroReferenceTypes() const {
return true;
}
bool HasClass() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
};
// A type of register holding a reference to an Object of type GetClass and only an object of that
// type.
class PreciseReferenceType : public RegType {
public:
PreciseReferenceType(mirror::Class* klass, const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
bool IsPreciseReference() const {
return true;
}
bool IsNonZeroReferenceTypes() const {
return true;
}
bool HasClass() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
};
// Common parent of unresolved types.
class UnresolvedType : public RegType {
public:
UnresolvedType(const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) : RegType(NULL, descriptor, cache_id) {
}
bool IsNonZeroReferenceTypes() const;
};
// Similar to ReferenceType except the Class couldn't be loaded. Assignability and other tests made
// of this type must be conservative.
class UnresolvedReferenceType : public UnresolvedType {
public:
UnresolvedReferenceType(const std::string& descriptor, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) : UnresolvedType(descriptor, cache_id) {
if (kIsDebugBuild) {
CheckInvariants();
}
}
bool IsUnresolvedReference() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
private:
void CheckInvariants() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
};
// Type representing the super-class of an unresolved type.
class UnresolvedSuperClass : public UnresolvedType {
public:
UnresolvedSuperClass(uint16_t child_id, RegTypeCache* reg_type_cache, uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: UnresolvedType("", cache_id), unresolved_child_id_(child_id),
reg_type_cache_(reg_type_cache) {
if (kIsDebugBuild) {
CheckInvariants();
}
}
bool IsUnresolvedSuperClass() const {
return true;
}
uint16_t GetUnresolvedSuperClassChildId() const {
DCHECK(IsUnresolvedSuperClass());
return static_cast<uint16_t>(unresolved_child_id_ & 0xFFFF);
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
private:
void CheckInvariants() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
const uint16_t unresolved_child_id_;
const RegTypeCache* const reg_type_cache_;
};
// A merge of two unresolved types. If the types were resolved this may be Conflict or another
// known ReferenceType.
class UnresolvedMergedType : public UnresolvedType {
public:
UnresolvedMergedType(uint16_t left_id, uint16_t right_id, const RegTypeCache* reg_type_cache,
uint16_t cache_id)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
: UnresolvedType("", cache_id), reg_type_cache_(reg_type_cache), merged_types_(left_id, right_id) {
if (kIsDebugBuild) {
CheckInvariants();
}
}
// The top of a tree of merged types.
std::pair<uint16_t, uint16_t> GetTopMergedTypes() const {
DCHECK(IsUnresolvedMergedReference());
return merged_types_;
}
// The complete set of merged types.
std::set<uint16_t> GetMergedTypes() const;
bool IsUnresolvedMergedReference() const {
return true;
}
std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
private:
void CheckInvariants() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
const RegTypeCache* const reg_type_cache_;
const std::pair<uint16_t, uint16_t> merged_types_;
};
std::ostream& operator<<(std::ostream& os, const RegType& rhs)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
} // namespace verifier
} // namespace art
#endif // ART_RUNTIME_VERIFIER_REG_TYPE_H_
| [
"943488158@qq.com"
] | 943488158@qq.com |
fbd7003b7a858aa42b873cc2bf20bcb50fa9d6e9 | 87c69454346b1550da7da37f1b7ebfe5468b587c | /protocol/串口通信/串口监视工具/vc62933476624/GUILIB/SRC/GuiSliderCtrl.cpp | 6b176fd35f5786bee17d65d14aa547d78baa3279 | [] | no_license | hnlylmlzh/cs | 4305ae18d35d7fe774ae0ece263a68bea882ab6a | b45154053d46c3b3b1e912946d1acaa65e99089b | refs/heads/master | 2022-03-20T17:45:10.202053 | 2019-04-15T08:54:05 | 2019-04-15T08:54:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,051 | cpp | //-----------------------------------------------------------------------//
// This is a part of the GuiLib MFC Extention. //
// Autor : Francisco Campos //
// (C) 2002 Francisco Campos <www.beyondata.com> All rights reserved //
// This code is provided "as is", with absolutely no warranty expressed //
// or implied. Any use is at your own risk. //
// You must obtain the author's consent before you can include this code //
// in a software library. //
// If the source code in this file is used in any application //
// then acknowledgement must be made to the author of this program //
// fco_campos@tutopia.com //
//-----------------------------------------------------------------------//
#include "stdafx.h"
#include "..\header\GuiSliderCtrl.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CGuiSliderCtrl
/*
typedef struct tagNMCUSTOMDRAWINFO
{
NMHDR hdr;
DWORD dwDrawStage;
HDC hdc;
RECT rc;
DWORD dwItemSpec; // this is control specific, but it's how to specify an item. valid only with CDDS_ITEM bit set
UINT uItemState;
LPARAM lItemlParam;
} NMCUSTOMDRAW, FAR * LPNMCUSTOMDRAW;
*/
CGuiSliderCtrl::CGuiSliderCtrl()
{
bSelected=FALSE;
m_clrGreen=RGB(0,198,0); //verder
m_clrOrange=RGB(255,193,111); //no tan naranja
m_Press=FALSE;
}
CGuiSliderCtrl::~CGuiSliderCtrl()
{
}
BEGIN_MESSAGE_MAP(CGuiSliderCtrl, CSliderCtrl)
//{{AFX_MSG_MAP(CGuiSliderCtrl)
ON_NOTIFY_REFLECT(NM_CUSTOMDRAW, OnCustomdraw)
ON_WM_MOUSEMOVE()
ON_WM_TIMER()
ON_WM_LBUTTONDOWN()
ON_WM_LBUTTONUP()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CGuiSliderCtrl message handlers
void CGuiSliderCtrl::OnCustomdraw(NMHDR* pNMHDR, LRESULT* pResult)
{
LPNMCUSTOMDRAW lpcd = (LPNMCUSTOMDRAW)pNMHDR;
CDC* pDC=CDC::FromHandle(lpcd->hdc);
CRect rcClient=lpcd->rc;
UINT dwItemSpec=lpcd->dwItemSpec;
DWORD dwDrawStage=lpcd->dwDrawStage;
UINT uItemState=lpcd->uItemState;
//bSelected= uItemState & CDIS_FOCUS ? TRUE:FALSE;
//------------------------------------------------
//aun no se puede pintar el control
//------------------------------------------------
if (dwDrawStage == CDDS_PREPAINT)
{
*pResult = CDRF_NOTIFYITEMDRAW;
return;
}
//-----------------------------------------------
//intentelo ahora
//-----------------------------------------------
if (dwDrawStage == CDDS_ITEMPREPAINT)
{
if (dwItemSpec == TBCD_TICS)
{
*pResult = CDRF_DODEFAULT;
return;
}
else if (dwItemSpec == TBCD_THUMB)
{
*pResult = CDRF_SKIPDEFAULT;
if (rcClient.Height() > rcClient.Width())
DrawVThumb(pDC, rcClient);
else
DrawHThumb(pDC, rcClient);
return;
}
else if (dwItemSpec == TBCD_CHANNEL)
{
*pResult = CDRF_SKIPDEFAULT;
pDC->Draw3dRect(&rcClient,m_dl.GetRGBPressBXP(),::GetSysColor(COLOR_BTNHIGHLIGHT));
return;
}
}
}
void CGuiSliderCtrl::DrawHThumb(CDC* pDC,CRect rcClient)
{
//------------------------------------------
//prefiero todo a pulso
//------------------------------------------
CPen cpGreen(PS_SOLID,1,m_clrGreen);
CPen cpOrange(PS_SOLID,1,m_clrOrange);
CPen cp(PS_SOLID,1,m_dl.GetRGBPressBXP());
CPen cpFondo(PS_SOLID,1,m_dl.GetRGBFondoXP());
CPen cpSombra(PS_SOLID,1,RGB(225,225,225));
CPen cpSombraDark(PS_SOLID,1,RGB(200,200,200));
CPen* pOld;
CBrush cb;
//se pinta arriba y luego por la derecha
//vertice left,top
pOld=pDC->SelectObject(&cp);
int nMedio=rcClient.Width()-7;
//------------------------------------------
//pintar el fondo estilo xp
//------------------------------------------
rcClient.bottom--;
CRect m_rectTemp=rcClient;
m_rectTemp.right-=5;
cb.CreateSolidBrush(m_dl.GetRGBColorXP());
pDC->FillRect(&m_rectTemp,&cb);
//*************************************************
// -
pDC->MoveTo(rcClient.left+1,rcClient.top);
pDC->LineTo(rcClient.left+nMedio,rcClient.top);
// |
pDC->MoveTo(rcClient.left,rcClient.top+1);
pDC->LineTo(rcClient.left,rcClient.bottom);
// -
pDC->MoveTo(rcClient.left+1,rcClient.bottom);
pDC->LineTo(rcClient.left+nMedio,rcClient.bottom);
//Algo de sombra
pDC->SelectObject(&cpSombraDark);
pDC->MoveTo(rcClient.left+1,rcClient.top+1);
pDC->LineTo(rcClient.left+nMedio,rcClient.top+1);
pDC->SelectObject(&cpSombra);
pDC->MoveTo(rcClient.left+1,rcClient.top+2);
pDC->LineTo(rcClient.left+nMedio,rcClient.top+2);
pDC->MoveTo(rcClient.left+1,rcClient.bottom-1);
pDC->LineTo(rcClient.left+nMedio,rcClient.bottom-1);
//-----------------------------------------------------------
//se pinta los colores de acuerdo al la seleccion del boton
//naranja si se selecciona y verde normal, en la parte superior
//-----------------------------------------------------------
rcClient.DeflateRect(1,1);
pDC->SelectObject(bSelected!=TRUE?&cpGreen:&cpOrange);
for (int i=0; i<3;i++)
{
pDC->MoveTo(rcClient.left+i,rcClient.top);
pDC->LineTo(rcClient.left+i,rcClient.bottom+1);
}
rcClient.InflateRect(1,1);
pDC->SelectObject(&cp);
//-------------------------------------------------------------
//se pinta la punta
//-------------------------------------------------------------
for (int y =0; y<5;y++)
{
pDC->SetPixel(rcClient.left+nMedio+y,rcClient.top+y,m_dl.GetRGBPressBXP());
pDC->SetPixel(rcClient.left+nMedio+y,rcClient.bottom-y,m_dl.GetRGBPressBXP());
}
pDC->SetPixel(rcClient.left+nMedio+y,rcClient.bottom-y,m_dl.GetRGBPressBXP());
//pDC->SetPixel(rcClient.right-y,rcClient.top+nMedio+y,m_dl.GetRGBPressBXP());
//********************************************************
//-----------------------------------------------------------
//se pinta los colores de acuerdo al la seleccion del boton
//naranja si se selecciona y verde normal
//-----------------------------------------------------------
pDC->SelectObject(bSelected!=TRUE?&cpGreen:&cpOrange);
for (y =0; y<5;y++)
{
pDC->SetPixel(rcClient.left+nMedio+y,(rcClient.top+y)+1,
bSelected!=TRUE?m_clrGreen:m_clrOrange);
pDC->SetPixel((rcClient.left+nMedio+y),(rcClient.bottom-y)-1,
bSelected!=TRUE?m_clrGreen:m_clrOrange);
}
//-----------------------------------------------------------
//se pinta sombra a la punta para dar un aspecto mas grueso
//al boton
//-----------------------------------------------------------
pDC->SelectObject(bSelected!=TRUE?&cpGreen:&cpOrange);
for (y =0; y<4;y++)
{
pDC->SetPixel(rcClient.left+nMedio+y,(rcClient.top+y)+2,
RGB(225,225,225));
pDC->SetPixel(rcClient.left+nMedio+y,(rcClient.bottom-y)-2,
RGB(200,200,200));
}
pDC->SelectObject(pOld);
}
void CGuiSliderCtrl::DrawVThumb(CDC* pDC,CRect rcClient)
{
//------------------------------------------
//prefiero todo a pulso
//------------------------------------------
CPen cpGreen(PS_SOLID,1,m_clrGreen);
CPen cpOrange(PS_SOLID,1,m_clrOrange);
CPen cp(PS_SOLID,1,m_dl.GetRGBPressBXP());
CPen cpFondo(PS_SOLID,1,m_dl.GetRGBFondoXP());
CPen cpSombra(PS_SOLID,1,RGB(225,225,225));
CPen cpSombraDark(PS_SOLID,1,RGB(200,200,200));
CPen* pOld;
CBrush cb;
//se pinta arriba y luego por la derecha
//vertice left,top
pOld=pDC->SelectObject(&cp);
int nMedio=rcClient.Height()-7;
//------------------------------------------
//pintar el fondo estilo xp
//------------------------------------------
rcClient.right-=1;
rcClient.bottom++;
CRect m_rectTemp=rcClient;
m_rectTemp.bottom-=5;
m_rectTemp.DeflateRect(1,1);
cb.CreateSolidBrush(m_dl.GetRGBColorXP());
pDC->FillRect(&m_rectTemp,&cb);
//*************************************************
// -
pDC->MoveTo(rcClient.left+1,rcClient.top);
pDC->LineTo(rcClient.right,rcClient.top);
// |
pDC->MoveTo(rcClient.left,rcClient.top+1);
pDC->LineTo(rcClient.left,rcClient.top+nMedio);
// |
pDC->MoveTo(rcClient.right,rcClient.top+1);
pDC->LineTo(rcClient.right,rcClient.top+nMedio);
//Algo de sombra
pDC->SelectObject(&cpSombraDark);
pDC->MoveTo(rcClient.right-1,rcClient.top+1);
pDC->LineTo(rcClient.right-1,rcClient.top+nMedio+2);
pDC->SelectObject(&cpSombra);
pDC->MoveTo(rcClient.right-2,rcClient.top+1);
pDC->LineTo(rcClient.right-2,rcClient.top+nMedio+2);
pDC->MoveTo(rcClient.left+1,rcClient.top+1);
pDC->LineTo(rcClient.left+1,rcClient.top+nMedio);
//-----------------------------------------------------------
//se pinta los colores de acuerdo al la seleccion del boton
//naranja si se selecciona y verde normal, en la parte superior
//-----------------------------------------------------------
rcClient.DeflateRect(1,1);
pDC->SelectObject(bSelected!=TRUE?&cpGreen:&cpOrange);
for (int i=0; i<3;i++)
{
pDC->MoveTo(rcClient.left,rcClient.top+i);
pDC->LineTo(rcClient.right+1,rcClient.top+i);
}
rcClient.InflateRect(1,1);
pDC->SelectObject(&cp);
//-------------------------------------------------------------
//se pinta la punta
//-------------------------------------------------------------
for (int y =0; y<5;y++)
{
pDC->SetPixel(rcClient.left+y,rcClient.top+nMedio+y,m_dl.GetRGBPressBXP());
pDC->SetPixel(rcClient.right-y,rcClient.top+nMedio+y,m_dl.GetRGBPressBXP());
}
pDC->SetPixel(rcClient.right-y,rcClient.top+nMedio+y,m_dl.GetRGBPressBXP());
//********************************************************
//-----------------------------------------------------------
//se pinta los colores de acuerdo al la seleccion del boton
//naranja si se selecciona y verde normal
//-----------------------------------------------------------
pDC->SelectObject(bSelected!=TRUE?&cpGreen:&cpOrange);
for (y =0; y<5;y++)
{
pDC->SetPixel((rcClient.left+y)+1,rcClient.top+nMedio+y,
bSelected!=TRUE?m_clrGreen:m_clrOrange);
pDC->SetPixel((rcClient.right-y)-1,(rcClient.top+nMedio+y),
bSelected!=TRUE?m_clrGreen:m_clrOrange);
}
//-----------------------------------------------------------
//se pinta sombra a la punta para dar un aspecto mas grueso
//al boton
//-----------------------------------------------------------
pDC->SelectObject(bSelected!=TRUE?&cpGreen:&cpOrange);
for (y =0; y<4;y++)
{
pDC->SetPixel((rcClient.left+y)+2,rcClient.top+nMedio+y,
RGB(225,225,225));
pDC->SetPixel((rcClient.right-y)-2,rcClient.top+nMedio+y,
RGB(200,200,200));
}
pDC->SelectObject(pOld);
//uff!!!, que rutina tan aburridora de hacer!!!!
}
void CGuiSliderCtrl::OnMouseMove(UINT nFlags, CPoint point)
{
// TODO: Add your message handler code here and/or call default
if (bSelected==TRUE)
return;
CRect rc;
GetClientRect(&rc);
if (rc.PtInRect(point))
{
bSelected=TRUE;
Invalidate();
UpdateWindow();
SetTimer(1,100,NULL);
}
CSliderCtrl::OnMouseMove(nFlags, point);
}
void CGuiSliderCtrl::OnTimer(UINT nIDEvent)
{
// TODO: Add your message handler code here and/or call default
CRect m_rect;
CPoint pt(GetMessagePos());
ScreenToClient(&pt);
GetClientRect(m_rect);
if (!m_rect.PtInRect(pt))
{
bSelected=FALSE;
Invalidate();
UpdateWindow();
KillTimer(1);
}
CSliderCtrl::OnTimer(nIDEvent);
}
void CGuiSliderCtrl::OnLButtonDown(UINT nFlags, CPoint point)
{
// TODO: Add your message handler code here and/or call default
if (bSelected==FALSE)
{
bSelected=TRUE;
Invalidate();
UpdateWindow();
}
CSliderCtrl::OnLButtonDown(nFlags, point);
}
void CGuiSliderCtrl::OnLButtonUp(UINT nFlags, CPoint point)
{
// TODO: Add your message handler code here and/or call default
bSelected=FALSE;
Invalidate();
UpdateWindow();
KillTimer(1);
CSliderCtrl::OnLButtonUp(nFlags, point);
}
| [
"sunyongjie1984@gmail.com"
] | sunyongjie1984@gmail.com |
de00fbc9069f9fa8b643326c5c962c526e04b7d2 | 9353f7236ddf17f8b26e9536e56a68762e859a64 | /PrinterServer-BT-T080-test/net_handle.cpp | e93961700f6ff7ba82e81ed6d3735b6c5e1e0fd0 | [] | no_license | zhouhuamin/year2018testproject | 9ee58dee1b88c8a2b6d27cf6137b563459893a7d | 5c13f6c60d2990677988cf1b953fb6729139bf9a | refs/heads/master | 2020-03-07T05:55:04.345748 | 2018-03-29T15:16:17 | 2018-03-29T15:16:17 | 127,308,858 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 11,116 | cpp | #include "SysMessage.h"
#include "includes.h"
#include "packet_format.h"
#include "starup_handle.h"
#include "port.h"
#include "broadcast.h"
#include "jzLocker.h"
#include <string>
#include <vector>
#include <map>
#include <algorithm>
#include <iterator>
NVP_REGISTER reg_unit;
static net_packet_t net_packet;
static net_packet_head_t packet_head;
static u8 data_buf[0x800];
sem g_StartEventSem;
sem g_StoppedEventSem;
sem g_BroadcastEventSem;
int server_read_timeout(int server_fd, u8 *buf, int len, int timeout);
int get_one_packet(int net_fd, u8* buf);
int net_system_CTRL_handle(int server_fd, u8 *buf, int len);
NET_SYS_CTRL sys_ctrl;
extern volatile u32 DEV_request_count;
extern void GetCurTime(char *pTime);
extern label_list_t label_list;
int connect_server(const char *host_name, int port_id)
{
struct sockaddr_in server_addr;
struct hostent *host;
int sock;
int flag;
host = gethostbyname(host_name);
if (NULL == host)
{
//LOG("get hostname error!\n");
syslog(LOG_DEBUG, "get hostname error!\n");
return -1;
}
sock = socket(AF_INET, SOCK_STREAM, 0);
if (-1 == sock)
{
//LOG("socket error:%s\a\n!\n", strerror(errno));
syslog(LOG_DEBUG, "socket error:%s\a\n!\n", strerror(errno));
return -2;
}
bzero(&server_addr, sizeof(server_addr));
server_addr.sin_family = AF_INET;
server_addr.sin_port = htons(port_id);
server_addr.sin_addr = *((struct in_addr *) host->h_addr);
if (connect(sock, (struct sockaddr *) (&server_addr),
sizeof(struct sockaddr_in)) == -1)
{
//LOG_M("connect error:%s\n", strerror(errno));
syslog(LOG_DEBUG, "connect error-3:%s\n", strerror(errno));
close(sock);
return -3;
}
flag = fcntl(sock, F_GETFL, 0);
fcntl(sock, F_SETFL, flag | O_NONBLOCK);
return sock;
}
//dev login server
int net_dev_register_handle(int server_fd)
{
NVP_REGISTER *p_reg;
NVP_REGISTER_ACK *p_reg_ack;
char str_tmp[16];
int w_len, r_len;
int ret;
packet_head.msg_type = MSG_TYPE_DEV_REGISTER;
packet_head.packet_len = sizeof(NVP_REGISTER);
strcpy(packet_head.szVersion, "1.0");
strcpy((char *) data_buf, "0XJZTECH");
memcpy(data_buf + 8, &packet_head, sizeof(net_packet_head_t));
p_reg = (NVP_REGISTER *) (data_buf + 8 + sizeof(net_packet_head_t));
strcpy(p_reg->dev_tag, gSetting_system.register_DEV_TAG);
strcpy(p_reg->dev_id, gSetting_system.register_DEV_ID);
w_len = sizeof(net_packet_head_t) + sizeof(NVP_REGISTER) + 8;
strcpy((char *) (data_buf + w_len), "NJTECHJZ");
w_len += 8;
//tcflush(server_fd, TCIFLUSH);
ret = write(server_fd, data_buf, w_len);
if (ret != w_len)
{
//LOG_M("write data error! %d\n", ret);
syslog(LOG_DEBUG, "write data error! %d\n", ret);
return -1;
}
r_len = 8 + sizeof(net_packet_head_t) + sizeof(NVP_REGISTER_ACK) + 8;
ret = server_read_timeout(server_fd, data_buf, r_len, 500);
if (ret != r_len)
{
//LOG("get register ack r_len is error! %d\n", ret);
syslog(LOG_DEBUG, "get register ack r_len is error! %d\n", ret);
return -2;
}
memcpy(str_tmp, data_buf, 8);
str_tmp[8] = 0;
if (strcmp(str_tmp, NET_PACKET_HEAD_STRING))
{
//LOG("head string check error!\n");
syslog(LOG_DEBUG, "head string check error!\n");
return -3;
}
memcpy(str_tmp, data_buf + r_len - 8, 8);
str_tmp[8] = 0;
if (strcmp(str_tmp, NET_PACKET_TAIL_STRING))
{
//LOG("tail string check error!\n");
syslog(LOG_DEBUG, "tail string check error!\n");
return -4;
}
memcpy(&packet_head, data_buf + 8, sizeof(net_packet_head_t));
if ((packet_head.msg_type != MSG_TYPE_DEV_REGISTER_ACK)
|| (packet_head.packet_len != sizeof(NVP_REGISTER_ACK)))
{
//LOG_M("packer_len =%d\n", packet_head.packet_len);
syslog(LOG_DEBUG, "packer_len =%d\n", packet_head.packet_len);
return -5;
}
p_reg_ack = (NVP_REGISTER_ACK*) (data_buf + sizeof(net_packet_head_t) + 8);
if (0 == p_reg_ack->reg_result)
{
gReal_system.dev_register_flag = 1;
gReal_system.work_flag = p_reg_ack->next_action;
}
else
{
//LOG("dev register error!\n");
syslog(LOG_DEBUG, "dev register error!\n");
}
//LOG_M("result: %d, action: %d", p_reg_ack->reg_result, p_reg_ack->next_action);
syslog(LOG_DEBUG, "result: %d, action: %d", p_reg_ack->reg_result,
p_reg_ack->next_action);
return 0;
}
int net_dev_keeplive_handle(int server_fd)
{
static u32 keeplive_trig_systick = 0;
int w_len;
int ret;
if ((get_system_ms() - keeplive_trig_systick)
< gSetting_system.keeplive_gap)
{
return 0;
}
if (dev_unit.dev_keeplive_cnt >= 11)
{
if (dev_unit.dev_keeplive_ACK_cnt <= 0)
{
return -1;
}
dev_unit.dev_keeplive_cnt = 0;
dev_unit.dev_keeplive_ACK_cnt = 0;
}
keeplive_trig_systick = get_system_ms();
packet_head.msg_type = MSG_TYPE_KEEP_LIVE;
packet_head.packet_len = 0;
strcpy(packet_head.szVersion, "1.0");
strcpy((char *) data_buf, NET_PACKET_HEAD_STRING);
memcpy(data_buf + NET_PACKET_HEAD_STRING_LEN, &packet_head,
sizeof(net_packet_head_t));
w_len = sizeof(net_packet_head_t) + NET_PACKET_HEAD_STRING_LEN;
strcpy((char*) (data_buf + w_len), NET_PACKET_TAIL_STRING);
w_len += NET_PACKET_TAIL_STRING_LEN;
tcflush(server_fd, TCIFLUSH);
ret = write(server_fd, data_buf, w_len);
if (ret != w_len)
{
//LOG_M("write data error! %d\n", ret);
syslog(LOG_DEBUG, "write data error! %d\n", ret);
}
dev_unit.dev_keeplive_cnt++;
//LOG("keep live trigger!\n");
syslog(LOG_DEBUG, "keep live trigger!\n");
return 0;
}
int server_read_timeout(int server_fd, u8 *buf, int len, int time_out)
{
int ret;
int r_len = 0;
int nOldTimeOut = time_out;
while (1)
{
ret = read(server_fd, buf + r_len, len - r_len);
if (ret > 0)
{
r_len += ret;
break;
}
else if (ret == 0) //server close
{
return -99;
}
if (errno == 0)
return -99;
if (errno == EAGAIN)
{
usleep(50 * 1000);
//usleep(1 * 1000);
time_out--;
if (time_out <= 0)
{
//time_out = nOldTimeOut;
r_len = 0;
break;
}
continue;
}
}
return r_len;
}
int upload_data_handle(int server_fd)
{
eMsg_type CMD;
int ret = 0;
do
{
ret = recv_msg_from_dev(&CMD);
syslog(LOG_DEBUG, "recv_msg_from_dev:ret:%d, CMD:%d\n", ret, CMD);
if (ret > 0)
{
// if (gReal_system.work_flag)
{
if (msg_DEV_NEW_DATA == CMD) //new data
{
syslog(LOG_DEBUG, "DEV_request_count:%d,%d,%d\n", DEV_request_count, dev_unit.dev_scan_count,dev_unit.read_request_respond_flag);
if (DEV_request_count != dev_unit.dev_scan_count)
{
//if (0 == dev_unit.read_request_respond_flag)
{
xml_upload_gather_data(server_fd);
dev_unit.read_request_respond_flag = 1;
}
//else //drop
//{
//}
}
else
{
xml_upload_arrived_data(server_fd);
}
}
else if (msg_WT_THRESHOLD == CMD)
{
if (DEV_request_count == dev_unit.dev_scan_count)
{
//label_list.label_cnt = 0;
//label_list.msg_send_flag = 0;
xml_upload_threshold(server_fd);
}
}
}
}
usleep(50 * 1000);
} while (ret > 0);
return 0;
}
int net_system_CTRL_handle(int server_fd, u8 *buf, int len)
{
if (buf == NULL)
return 0;
NET_SYS_CTRL *pFirst = NULL;
NET_PACKET_MSG *p_ctrl = NULL;
p_ctrl = (NET_PACKET_MSG*) buf;
pFirst = (NET_SYS_CTRL*)p_ctrl->msg_body;
if (!strcmp(p_ctrl->msg_body, gSetting_system.SYS_CTRL_R_start_event_ID))
{
//log_send("ASK:\tStart read!\n");
syslog(LOG_DEBUG, "ASK:\tStart read!\n");
//DEV_request_count++;
//dev_unit.request_clean_history_cnt++;
//dev_unit.read_request_respond_flag = 0;
//xml_system_ctrl_hook(p_ctrl->xml_data, p_ctrl->xml_data_len);
//g_StartEventSem.post();
xml_system_ctrl_hook(pFirst->xml_data, pFirst->xml_data_len); // p_ctrl->msg_head.packet_len);
}
else if (!strcmp(p_ctrl->msg_body,
gSetting_system.SYS_CTRL_R_stop_event_ID))
{
//log_send("ASK:\tStop read!\n");
syslog(LOG_DEBUG, "ASK:\tStop read!\n");
//DEV_request_count = dev_unit.dev_scan_count;
//dev_unit.request_clean_history_cnt++;
////xml_system_ctrl_hook(p_ctrl->xml_data, p_ctrl->xml_data_len);
g_StoppedEventSem.post();
}
else if (!strcmp(p_ctrl->msg_body, gSetting_system.szIC_RING_EVENT))
{
//log_send("ASK:\tStop read!\n");
syslog(LOG_DEBUG, "ASK:\tRing Ring!\n");
//DEV_request_count = dev_unit.dev_scan_count;
//dev_unit.request_clean_history_cnt++;
////xml_system_ctrl_hook(p_ctrl->xml_data, p_ctrl->xml_data_len);
// structLedMsg tmpMsg;
// tmpMsg.id = 6;
// tmpMsg.strMsg = "?·å?¡æ????";
// g_MsgVectLock.lock();
// g_MsgVect.push_back(tmpMsg);
// g_MsgVectLock.unlock();
// g_BroadcastEventSem.post();
}
else
{
//LOG("system ctrl id= %s\n", p_ctrl->event_id);
syslog(LOG_DEBUG, "system ctrl id= %s\n", p_ctrl->msg_body);
}
return 0;
}
//get a packet
//return value: 0:no data; >0: get packet -1:server close -2:error
int get_one_packet(int net_fd, u8* buf)
{
int ret, r_len = 0;
net_packet_head_t msg_head;
char str_tmp[16];
ret = server_read_timeout(net_fd, buf, sizeof(net_packet_head_t) + 8, 10);
if (0 >= ret)
{
return ret;
}
else if (ret != (sizeof(net_packet_head_t) + 8))
{
//printf("get str head len error! %s\n", str_tmp);
syslog(LOG_DEBUG, "get str head len error! %s\n", str_tmp);
return -2;
}
memcpy(str_tmp, buf, 8);
str_tmp[8] = 0;
if (strcmp((char*) str_tmp, "0XJZTECH"))
{
//printf("str head check error!\n");
syslog(LOG_DEBUG, "str head check error!\n");
return -2;
}
memcpy(&msg_head, buf + 8, sizeof(net_packet_head_t));
r_len = sizeof(net_packet_head_t) + 8;
if (msg_head.packet_len > 0)
{
ret = server_read_timeout(net_fd, buf + r_len, msg_head.packet_len, 10);
if (0 >= ret)
{
return ret;
}
else if (ret != msg_head.packet_len)
{
//printf("get msg body len error!\n");
syslog(LOG_DEBUG, "get msg body len error!\n");
return -2;
}
r_len += msg_head.packet_len;
}
ret = server_read_timeout(net_fd, buf + r_len, 8, 10);
if (0 >= ret)
{
return ret;
}
else if (ret != 8)
{
//printf("get str tail len error!\n");
syslog(LOG_DEBUG, "get str tail len error!\n");
return -2;
}
memcpy(str_tmp, buf + r_len, 8);
str_tmp[8] = 0;
if (strcmp(str_tmp, "NJTECHJZ"))
{
//printf("str tail check error!\n");
syslog(LOG_DEBUG, "str tail check error!\n");
return -2;
}
r_len += 8;
return r_len;
}
// close(server_fd);
// log_send("ERR:\tthe server's connection is lost!\n");
// log_send("MSG:\tRetry to connect to the server...\n");
//
// //è¿??¥æ???¡ï¿½?// while (1)
// {
// server_fd = connect_server(gSetting_system.server_ip,
// gSetting_system.server_port);
// if (server_fd <= 0)
// {
// printf("connect to server error!\n");
// }
// else
// {
// log_send("MSG:\tconnected to the server!\n");
// ret = net_dev_register_handle(server_fd);
// if (0 == ret)
// {
// log_send("MSG:\tregister to the server!\n");
// break;
// }
// else
// {
// close(server_fd);
// }
// }
// sleep(2);
// }
| [
"523141399@qq.com"
] | 523141399@qq.com |
ad1b6d7ae1d87ce24f7e59df83bb75cd1484bfdc | afdfe6b9f9871c6432fbe35c3ee4ac031cfee576 | /Src/DataClasses/Tore.cpp | 5d11aef619d7d041ee67bd6835816438a3f7009a | [] | no_license | RomanHargrave/skulls3d | df5986c8286f1485678dc209c4a9a79a2026fa4f | 9a810c510fe57144c071f8f96ba58d5a5ff45cc0 | refs/heads/master | 2020-04-06T06:49:23.831615 | 2012-08-09T17:57:46 | 2012-08-09T17:57:46 | 35,354,516 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,171 | cpp |
#include "Tore.h"
#include "Tex.h"
#include "Vec3f.h"
#include "Vec2f.h"
#include "Matrix4x4.h"
Tore::Tore(unsigned int precision, Tex *t)
{
Mesh::Mesh();
this->m_texture = t;
this->m_vertexcount = precision*precision;
this->m_vb = new CUSTOMVERTEX[this->m_vertexcount];
float angle = (2*3.141592653589f) / precision;
Matrix4x4 bigg, ssmall;
bigg.SetIdentity();
ssmall.SetIdentity();
bigg.Translate(2.0f, 0.0f, 0.0f);
ssmall.Translate(0.8f, 0.0f, 0.0f);
for (unsigned int bg=0 ; bg<precision ; bg++)
{
for (unsigned int sm=0 ; sm<precision ; sm++)
{
Vec3f v;
v = ssmall * v;
v = bigg * v;
m_vb[bg*precision + sm].x = v.x;
m_vb[bg*precision + sm].y = v.y;
m_vb[bg*precision + sm].z = v.z;
ssmall.RotateZ(angle);
}
bigg.RotateY(angle);
}
for (unsigned int bg=0 ; bg<precision ; bg++)
{
unsigned int *ib = new unsigned int[precision*2 + 2];
Vec2f *tb = new Vec2f[3*precision*2];
ib[0] = bg*precision;
ib[1] = ((bg+1)%precision)*precision;
for (unsigned int i=1 ; i<=precision ; i++)
{
ib[i*2] = bg*precision + (i%precision);
ib[i*2+1] = ((bg+1)%precision)*precision + (i%precision);
tb[(i-1)*6].x = (t->m_mipmaps[0].m_width*1.0f / precision) * bg;
tb[(i-1)*6].y = (t->m_mipmaps[0].m_height*1.0f / precision) * (i-1);
tb[(i-1)*6+1].x = (t->m_mipmaps[0].m_width*1.0f / precision) * (bg+1);
tb[(i-1)*6+1].y = (t->m_mipmaps[0].m_height*1.0f / precision) * (i-1);
tb[(i-1)*6+2].x = (t->m_mipmaps[0].m_width*1.0f / precision) * bg;
tb[(i-1)*6+2].y = (t->m_mipmaps[0].m_height*1.0f / precision) * i;
tb[(i-1)*6+3].x = (t->m_mipmaps[0].m_width*1.0f / precision) * (bg+1);
tb[(i-1)*6+3].y = (t->m_mipmaps[0].m_height*1.0f / precision) * (i-1);
tb[(i-1)*6+4].x = (t->m_mipmaps[0].m_width*1.0f / precision) * bg;
tb[(i-1)*6+4].y = (t->m_mipmaps[0].m_height*1.0f / precision) * i;
tb[(i-1)*6+5].x = (t->m_mipmaps[0].m_width*1.0f / precision) * (bg+1);
tb[(i-1)*6+5].y = (t->m_mipmaps[0].m_height*1.0f / precision) * i;
}
this->AddStrip(ib, tb, precision*2 + 2);
delete[] ib;
delete[] tb;
}
}
| [
"gabriel.bizzotto@9012b7bc-1e1c-11df-ae22-3371deb0c1a1"
] | gabriel.bizzotto@9012b7bc-1e1c-11df-ae22-3371deb0c1a1 |
c393e6979c1f998bb78c7997046b53e6ef28324c | 80234a1628a3e7b5a35da915a47af812b2de79ae | /constraintsolver/include/types/DecisionLevel.h | 845557c7e785a82c63a9c2dda239a1e8ef039e69 | [
"MIT"
] | permissive | rapyuta-robotics/alica-supplementary | 731ba0a73197c789d0b9573d40a6149b10835ba0 | 6ffd66d0a479d6a77c0caf1e6a41db75f2a95b9c | refs/heads/rr-devel | 2021-12-19T14:13:00.180740 | 2021-11-12T08:30:33 | 2021-11-12T08:30:33 | 159,762,336 | 2 | 3 | MIT | 2021-12-09T12:33:15 | 2018-11-30T03:18:57 | C++ | UTF-8 | C++ | false | false | 409 | h | /*
* DecisionLevel.h
*
* Created on: Dec 4, 2014
* Author: Philipp
*/
#ifndef DECISIONLEVEL_H_
#define DECISIONLEVEL_H_
namespace alica
{
namespace reasoner
{
namespace cnsat
{
class DecisionLevel
{
public:
DecisionLevel(int level);
virtual ~DecisionLevel();
int level;
};
} /* namespace cnsat */
} /* namespace reasoner */
} /* namespace alica */
#endif /* DECISIONLEVEL_H_ */
| [
"opfer@vs.uni-kassel.de"
] | opfer@vs.uni-kassel.de |
2ac661d1a12fe44b783ea038e666b4815b7c6ce8 | 90578143e987b0b2667e0d3e8962c4fbcff3ad91 | /hwy/tests/blockwise_shift_test.cc | bab8a6b80fafad335c282cb37592150edfbacaf2 | [
"BSD-3-Clause",
"Apache-2.0"
] | permissive | google/highway | 9796c4a0b09a744d97bf164ae5145b9bf1aa45a9 | fed142a03f11ff0ac71594ac0225cf60b63ee741 | refs/heads/master | 2023-09-04T03:31:34.136598 | 2023-08-30T14:45:29 | 2023-08-30T14:45:29 | 206,791,328 | 2,736 | 215 | Apache-2.0 | 2023-09-14T13:52:06 | 2019-09-06T12:41:23 | C++ | UTF-8 | C++ | false | false | 9,353 | cc | // Copyright 2019 Google LLC
// SPDX-License-Identifier: Apache-2.0
//
// 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 <string.h> // memcpy
#include <algorithm> // std::fill
#undef HWY_TARGET_INCLUDE
#define HWY_TARGET_INCLUDE "tests/blockwise_shift_test.cc"
#include "hwy/foreach_target.h" // IWYU pragma: keep
#include "hwy/highway.h"
#include "hwy/tests/test_util-inl.h"
HWY_BEFORE_NAMESPACE();
namespace hwy {
namespace HWY_NAMESPACE {
struct TestShiftBytes {
template <class T, class D>
HWY_NOINLINE void operator()(T /*unused*/, D d) {
// Scalar does not define Shift*Bytes.
#if HWY_TARGET != HWY_SCALAR || HWY_IDE
const Repartition<uint8_t, D> du8;
const size_t N8 = Lanes(du8);
const size_t N = Lanes(d);
// Zero remains zero
const auto v0 = Zero(d);
HWY_ASSERT_VEC_EQ(d, v0, ShiftLeftBytes<1>(v0));
HWY_ASSERT_VEC_EQ(d, v0, ShiftLeftBytes<1>(d, v0));
HWY_ASSERT_VEC_EQ(d, v0, ShiftRightBytes<1>(d, v0));
auto bytes = AllocateAligned<uint8_t>(N8);
auto in = AllocateAligned<T>(N);
auto expected = AllocateAligned<T>(N);
HWY_ASSERT(bytes && in && expected);
// Zero after shifting out the high/low byte
std::fill(bytes.get(), bytes.get() + N8, 0);
bytes[N8 - 1] = 0x7F;
const auto vhi = BitCast(d, Load(du8, bytes.get()));
bytes[N8 - 1] = 0;
bytes[0] = 0x7F;
const auto vlo = BitCast(d, Load(du8, bytes.get()));
HWY_ASSERT_VEC_EQ(d, v0, ShiftLeftBytes<1>(vhi));
HWY_ASSERT_VEC_EQ(d, v0, ShiftLeftBytes<1>(d, vhi));
HWY_ASSERT_VEC_EQ(d, v0, ShiftRightBytes<1>(d, vlo));
// Check expected result with Iota
const uint8_t* in_bytes = reinterpret_cast<const uint8_t*>(in.get());
const auto v = BitCast(d, Iota(du8, 1));
Store(v, d, in.get());
uint8_t* expected_bytes = reinterpret_cast<uint8_t*>(expected.get());
const size_t block_size = HWY_MIN(N8, 16);
for (size_t block = 0; block < N8; block += block_size) {
expected_bytes[block] = 0;
memcpy(expected_bytes + block + 1, in_bytes + block, block_size - 1);
}
HWY_ASSERT_VEC_EQ(d, expected.get(), ShiftLeftBytes<1>(v));
HWY_ASSERT_VEC_EQ(d, expected.get(), ShiftLeftBytes<1>(d, v));
for (size_t block = 0; block < N8; block += block_size) {
memcpy(expected_bytes + block, in_bytes + block + 1, block_size - 1);
expected_bytes[block + block_size - 1] = 0;
}
HWY_ASSERT_VEC_EQ(d, expected.get(), ShiftRightBytes<1>(d, v));
#else
(void)d;
#endif // #if HWY_TARGET != HWY_SCALAR
}
};
HWY_NOINLINE void TestAllShiftBytes() {
ForIntegerTypes(ForPartialVectors<TestShiftBytes>());
}
struct TestShiftLeftLanes {
template <class T, class D>
HWY_NOINLINE void operator()(T /*unused*/, D d) {
// Scalar does not define Shift*Lanes.
#if HWY_TARGET != HWY_SCALAR || HWY_IDE
const auto v = Iota(d, T(1));
const size_t N = Lanes(d);
if (N == 1) return;
auto expected = AllocateAligned<T>(N);
HWY_ASSERT(expected);
HWY_ASSERT_VEC_EQ(d, v, ShiftLeftLanes<0>(v));
HWY_ASSERT_VEC_EQ(d, v, ShiftLeftLanes<0>(d, v));
constexpr size_t kLanesPerBlock = 16 / sizeof(T);
for (size_t i = 0; i < N; ++i) {
expected[i] = (i % kLanesPerBlock) == 0 ? T(0) : T(i);
}
HWY_ASSERT_VEC_EQ(d, expected.get(), ShiftLeftLanes<1>(v));
HWY_ASSERT_VEC_EQ(d, expected.get(), ShiftLeftLanes<1>(d, v));
#else
(void)d;
#endif // #if HWY_TARGET != HWY_SCALAR
}
};
struct TestShiftRightLanes {
template <class T, class D>
HWY_NOINLINE void operator()(T /*unused*/, D d) {
// Scalar does not define Shift*Lanes.
#if HWY_TARGET != HWY_SCALAR || HWY_IDE
const auto v = Iota(d, T(1));
const size_t N = Lanes(d);
if (N == 1) return;
auto expected = AllocateAligned<T>(N);
HWY_ASSERT(expected);
HWY_ASSERT_VEC_EQ(d, v, ShiftRightLanes<0>(d, v));
constexpr size_t kLanesPerBlock = 16 / sizeof(T);
for (size_t i = 0; i < N; ++i) {
const size_t mod = i % kLanesPerBlock;
expected[i] = mod == (kLanesPerBlock - 1) || i >= N - 1 ? T(0) : T(2 + i);
}
HWY_ASSERT_VEC_EQ(d, expected.get(), ShiftRightLanes<1>(d, v));
#else
(void)d;
#endif // #if HWY_TARGET != HWY_SCALAR
}
};
HWY_NOINLINE void TestAllShiftLeftLanes() {
ForAllTypes(ForPartialVectors<TestShiftLeftLanes>());
}
HWY_NOINLINE void TestAllShiftRightLanes() {
ForAllTypes(ForPartialVectors<TestShiftRightLanes>());
}
// Scalar does not define CombineShiftRightBytes.
#if HWY_TARGET != HWY_SCALAR || HWY_IDE
template <int kBytes>
struct TestCombineShiftRightBytes {
template <class T, class D>
HWY_NOINLINE void operator()(T, D d) {
constexpr size_t kBlockSize = 16;
static_assert(kBytes < kBlockSize, "Shift count is per block");
const Repartition<uint8_t, D> d8;
const size_t N8 = Lanes(d8);
if (N8 < 16) return;
auto hi_bytes = AllocateAligned<uint8_t>(N8);
auto lo_bytes = AllocateAligned<uint8_t>(N8);
auto expected_bytes = AllocateAligned<uint8_t>(N8);
HWY_ASSERT(hi_bytes && lo_bytes && expected_bytes);
uint8_t combined[2 * kBlockSize];
// Random inputs in each lane
RandomState rng;
for (size_t rep = 0; rep < AdjustedReps(100); ++rep) {
for (size_t i = 0; i < N8; ++i) {
hi_bytes[i] = static_cast<uint8_t>(Random64(&rng) & 0xFF);
lo_bytes[i] = static_cast<uint8_t>(Random64(&rng) & 0xFF);
}
for (size_t i = 0; i < N8; i += kBlockSize) {
// Arguments are not the same size.
CopyBytes<kBlockSize>(&lo_bytes[i], combined);
CopyBytes<kBlockSize>(&hi_bytes[i], combined + kBlockSize);
CopyBytes<kBlockSize>(combined + kBytes, &expected_bytes[i]);
}
const auto hi = BitCast(d, Load(d8, hi_bytes.get()));
const auto lo = BitCast(d, Load(d8, lo_bytes.get()));
const auto expected = BitCast(d, Load(d8, expected_bytes.get()));
HWY_ASSERT_VEC_EQ(d, expected, CombineShiftRightBytes<kBytes>(d, hi, lo));
}
}
};
template <int kLanes>
struct TestCombineShiftRightLanes {
template <class T, class D>
HWY_NOINLINE void operator()(T, D d) {
const Repartition<uint8_t, D> d8;
const size_t N8 = Lanes(d8);
if (N8 < 16) return;
auto hi_bytes = AllocateAligned<uint8_t>(N8);
auto lo_bytes = AllocateAligned<uint8_t>(N8);
auto expected_bytes = AllocateAligned<uint8_t>(N8);
HWY_ASSERT(hi_bytes && lo_bytes && expected_bytes);
constexpr size_t kBlockSize = 16;
uint8_t combined[2 * kBlockSize];
// Random inputs in each lane
RandomState rng;
for (size_t rep = 0; rep < AdjustedReps(100); ++rep) {
for (size_t i = 0; i < N8; ++i) {
hi_bytes[i] = static_cast<uint8_t>(Random64(&rng) & 0xFF);
lo_bytes[i] = static_cast<uint8_t>(Random64(&rng) & 0xFF);
}
for (size_t i = 0; i < N8; i += kBlockSize) {
// Arguments are not the same size.
CopyBytes<kBlockSize>(&lo_bytes[i], combined);
CopyBytes<kBlockSize>(&hi_bytes[i], combined + kBlockSize);
CopyBytes<kBlockSize>(combined + kLanes * sizeof(T),
&expected_bytes[i]);
}
const auto hi = BitCast(d, Load(d8, hi_bytes.get()));
const auto lo = BitCast(d, Load(d8, lo_bytes.get()));
const auto expected = BitCast(d, Load(d8, expected_bytes.get()));
HWY_ASSERT_VEC_EQ(d, expected, CombineShiftRightLanes<kLanes>(d, hi, lo));
}
}
};
#endif // #if HWY_TARGET != HWY_SCALAR
struct TestCombineShiftRight {
template <class T, class D>
HWY_NOINLINE void operator()(T t, D d) {
// Scalar does not define CombineShiftRightBytes.
#if HWY_TARGET != HWY_SCALAR || HWY_IDE
constexpr int kMaxBytes =
HWY_MIN(16, static_cast<int>(MaxLanes(d) * sizeof(T)));
constexpr int kMaxLanes = kMaxBytes / static_cast<int>(sizeof(T));
TestCombineShiftRightBytes<kMaxBytes - 1>()(t, d);
TestCombineShiftRightBytes<HWY_MAX(kMaxBytes / 2, 1)>()(t, d);
TestCombineShiftRightBytes<1>()(t, d);
TestCombineShiftRightLanes<kMaxLanes - 1>()(t, d);
TestCombineShiftRightLanes<HWY_MAX(kMaxLanes / 2, -1)>()(t, d);
TestCombineShiftRightLanes<1>()(t, d);
#else
(void)t;
(void)d;
#endif
}
};
HWY_NOINLINE void TestAllCombineShiftRight() {
// Need at least 2 lanes.
ForAllTypes(ForShrinkableVectors<TestCombineShiftRight>());
}
// NOLINTNEXTLINE(google-readability-namespace-comments)
} // namespace HWY_NAMESPACE
} // namespace hwy
HWY_AFTER_NAMESPACE();
#if HWY_ONCE
namespace hwy {
HWY_BEFORE_TEST(HwyBlockwiseShiftTest);
HWY_EXPORT_AND_TEST_P(HwyBlockwiseShiftTest, TestAllShiftBytes);
HWY_EXPORT_AND_TEST_P(HwyBlockwiseShiftTest, TestAllShiftLeftLanes);
HWY_EXPORT_AND_TEST_P(HwyBlockwiseShiftTest, TestAllShiftRightLanes);
HWY_EXPORT_AND_TEST_P(HwyBlockwiseShiftTest, TestAllCombineShiftRight);
} // namespace hwy
#endif
| [
"copybara-worker@google.com"
] | copybara-worker@google.com |
e5608cdaeac168960f13549441bf277d08933a36 | 72c0f0cd72cbf9d078b1723f7d99fd5be3e08b64 | /无向图中求两点间的所有简单路径/无向图中求两点间的所有简单路径/GraphMatrix.h | ff8fa85f9d94928ad0cd3ec4272a52eef717b11c | [] | no_license | garygb/datastructure | 127624b5973fb9d294d1c1be68a785af9120d6ea | 7da435f99fab7936c868cc3073a390cc5359e376 | refs/heads/master | 2020-03-20T15:25:21.561013 | 2018-06-15T17:23:21 | 2018-06-15T17:23:21 | 137,512,660 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 4,452 | h | #ifndef _GRAPHMATRIX_H_
#define _GRAPHMATRIX_H_
#include "..\..\List\AList.h"
#include "Graph.h"
template <typename Tv>
struct Vertex { //顶点对象(并未严格封装)
Tv data; //顶点数据
int inDegree, outDegree; //入度和出度
VStatus status;
int dTime, fTime; //时间标签
int parent; //在遍历数中的父节点
int priority; //在遍历树中的优先级(最短通路、极短跨边等)
Vertex (const Tv& d = (Tv)0) :
data(d), inDegree(0), outDegree(0), status(UNDISCOVERED),
dTime(-1), fTime(-1), parent(-1), priority(INT_MAX) { }
};
template <typename Te>
struct Edge { //边对象(为简化起见,并未严格封装)
Te data; int weight; EStatus status; //数据、权重、类型
Edge (const Te& d, int w) :
data (d), weight (w), status(UNDETERMINED) {} //构造新边
};
template <typename Tv, typename Te> //顶点类型和边类型
class GraphMatrix : public Graph<Tv, Te> { //基于向量,以矩阵形式实现的图
private:
AList< Vertex<Tv> > V; //顶点集(一组顶点组成的向量)
AList< AList< Edge<Te>* > > E;//边集(边组成的二维向量)
public:
//构造析构
GraphMatrix() {
n = e = 0;
}
virtual ~GraphMatrix() {
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
delete E[i][j];
}
}
}
/*顶点的操作接口*/
// 顶点的基本操作:查询第i个顶点(0 <= i < n)
virtual Rank find(const Tv& d) { //查找数据为i的顶点,返回相应的rank
for (int i = 0; i < n; i++) {
if (V[i].data == d)
return i;
}
return -1; //返回-1表示没找到
}
virtual Tv& vertex ( int i ) { return V[i].data; } //数据
virtual int inDegree ( int i ) { return V[i].inDegree; } //入度
virtual int outDegree ( int i ) { return V[i].outDegree; } //出度
virtual int firstNbr ( int i ) { return nextNbr ( i, n ); } //首个邻接顶点
virtual int nextNbr ( int i, int j ) { //相对于顶点j的下一邻接顶点(改用邻接表可提高效率)
while ( ( -1 < j ) && ( !exists ( i, --j ) ) ); //逆向线性试探(此时已经枚举到j)
return j;
}
virtual VStatus& status ( int i ) { return V[i].status; } //状态
virtual int& dTime ( int i ) { return V[i].dTime; } //时间标签dTime
virtual int& fTime ( int i ) { return V[i].fTime; } //时间标签fTime
virtual int& parent ( int i ) { return V[i].parent; } //在遍历树中的父亲
virtual int& priority ( int i ) { return V[i].priority; } //在遍历树中的优先级数
//顶点的动态操作(插入、删除)
//顶点插入,返回编号
virtual int insert(const Tv& vertex) {
for (int i = 0; i < n; i++) {
E[i].append(NULL);
}
n++;
E.append(AList<Edge<Te>*>(n, NULL));
return V.append(Vertex<Tv>(vertex));
}
//顶点删除,删除顶点及其关联边,返回该顶点信息
virtual Tv remove(int i) {
for (int j = 0; j < n; j++) {
if (exists(i, j)) { //删除所有出边
delete E[i][j];
V[j].inDegree--;
}
}
E.remove(i); n--; // 删除第i行
Tv vBak = vertex(i); //备份顶点i的信息
V.remove(i);
for ( int j = 0; j < n; j++ ) {//所有入边
if ( Edge<Te> * e = E[j].remove ( i ) ) {
delete e; V[j].outDegree--;
} //逐条删除
}
return vBak; //返回被删除顶点的信息
}
/*边的操作接口*/
//边的确认操作(是否存在这样一条边)
virtual bool exists(int i, int j) { //边(i,j)是否存在 (i,j) is valid && (i,j) != NULL
return (0 <= i) && (i < n) && (0 <= j) && (j < n) && E[i][j] != NULL;
}
//边的基本操作:查询第(i,j)条边的数据、状态、权重
virtual Te& edge(int i, int j) {
return E[i][j]->data;
}
virtual EStatus& status(int i, int j) {
return E[i][j]->status;
}
virtual int& weight(int i, int j) {
return E[i][j]->weight;
}
//边的动态操作(插入、删除)
//边插入
virtual void insert(const Te& edge, int w, int i, int j) {
if (exists(i, j)) return; //忽略原有的边
E[i][j] = new Edge<Te>(edge, w);//将新边的信息封装,并让E[i][j]指向这个边
e++; //更新边计数
V[i].outDegree++; //更新关联顶点i的出度
V[j].inDegree++; //更新关联顶点j的入度
}
//边删除
virtual Te remove(int i, int j) {
Te eBak = edge(i, j); //bak-备份 备份边(i,j)的信息(data)
delete E[i][j];
E[i][j] = NULL; //删除边
e--;
V[i].outDegree--;
V[j].inDegree--;
return eBak;
}
};
#endif | [
"583042080@qq.com"
] | 583042080@qq.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.