blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
247
content_id
stringlengths
40
40
detected_licenses
listlengths
0
57
license_type
stringclasses
2 values
repo_name
stringlengths
4
111
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
58
visit_date
timestamp[ns]date
2015-07-25 18:16:41
2023-09-06 10:45:08
revision_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
committer_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
github_id
int64
3.89k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
25 values
gha_event_created_at
timestamp[ns]date
2012-06-07 00:51:45
2023-09-14 21:58:52
gha_created_at
timestamp[ns]date
2008-03-27 23:40:48
2023-08-24 19:49:39
gha_language
stringclasses
159 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
10.5M
extension
stringclasses
111 values
filename
stringlengths
1
195
text
stringlengths
7
10.5M
d4634301240650c806d2706aecefe02a31c77904
35d4d90e4577dbb02b701a499add117462e06d76
/Problem09_SpecialPythagoreanTriplet.cpp
641f6f1670ebd37f14be6c7fffb5a68e2cc16db0
[]
no_license
edutamura/projecteuler
a6aebb5a665ae8736aabdd0f2e92e7a315c6ba70
c5692333f26cca8ee1c9677b33f120cc8882f769
refs/heads/master
2020-06-23T12:30:37.385180
2019-08-20T13:39:05
2019-08-20T13:39:05
198,625,070
0
0
null
null
null
null
UTF-8
C++
false
false
2,331
cpp
Problem09_SpecialPythagoreanTriplet.cpp
// Problem09_SpecialPythagoreanTriplet.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include "pch.h" #include <iostream> #include <math.h> using namespace std; bool verificaTriplet2(int num1, int num2, int num3) { cout << "chamou a funcao -- quadrados: " << endl; cout << pow(num1,2) << endl; cout << pow(num2,2) << endl; cout << pow(num3,2) << endl; if ((pow(num1, 2) + pow(num2, 2)) == pow(num3, 2)) return(true); else return(false); } int verificaTriplet(int num1, int num2) { int num3 = 0; float num4 = 0; num3 = pow(num1, 2) + pow(num2, 2); num4 = (float) num3; if (sqrt(num4) - sqrt(num3) == 0) return(sqrt(num3)); else return(-1); } bool verificaSoma(int num1, int num2, int num3) { if (num1 + num2 + num3 == 1000) return(true); else return(false); } int main() { float teste; bool verifica = false; int a = 2, b = 2, c, res; //int aux1, aux2; while (verifica == false) { for (a = 0; a < 500; a++) { for (b = 0; b < 500; b++) { if (verificaTriplet(a, b) > 0 && verificaSoma(a, b, verificaTriplet(a, b)) == true) { c = verificaTriplet(a, b); cout << "a: " << a << endl; cout << "b: " << b << endl; cout << "c: " << c << endl; cout << "resultado: " << (a * b * c) << endl; verifica = true; } } } } //if (verificaTriplet2(a, b, c) == true) cout << "\n verdadeiro \n"; //else cout << "\n deu ruim\n"; //if (verificaSoma(a, b, c) == true) cout << "\n achou \n"; //else cout << "\n perdeu\n"; cout << "\n\n\n\nHello World!\n"; } // Run program: Ctrl + F5 or Debug > Start Without Debugging menu // Debug program: F5 or Debug > Start Debugging menu // Tips for Getting Started: // 1. Use the Solution Explorer window to add/manage files // 2. Use the Team Explorer window to connect to source control // 3. Use the Output window to see build output and other messages // 4. Use the Error List window to view errors // 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project // 6. In the future, to open this project again, go to File > Open > Project and select the .sln file
d1998b0f02be433fb507b21fa3f174a81d6cc225
3c25475e4bd5a634d7980e291ae02ae62ab6e74a
/Source/Urho3D/Plugins/Plugin.h
4e351a92a08180d0b71579de27aa1d81987a96ea
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
eugeneko/rbfx
e1c8b41861093b5df03f616cd614f4a73795b16b
379641ebfeb63a2ceba901eb06be4309d3973272
refs/heads/master
2023-03-19T05:06:32.714516
2022-09-26T12:14:05
2022-09-26T12:14:05
186,170,069
1
0
MIT
2019-05-11T18:45:46
2019-05-11T18:45:46
null
UTF-8
C++
false
false
3,476
h
Plugin.h
// // Copyright (c) 2017-2020 the rbfx project. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. // #pragma once #include "../Plugins/PluginApplication.h" namespace Urho3D { /// A base class for plugins of all kinds. It only provides a common plugin interface. class URHO3D_API Plugin : public Object { URHO3D_OBJECT(Plugin, Object); public: explicit Plugin(Context* context) : Object(context) {} ~Plugin() override {} /// Name must be set right after creating a plugin object. void SetName(const ea::string& name) { name_ = name; } /// Returns a name of the plugin. Name is usually a base name of plugin file. const ea::string& GetName() const { return name_; } /// Return current version of the plugin. unsigned GetVersion() const { return version_; } /// Return plugin application, if available. PluginApplication* GetApplication() const { return application_; } /// Mark plugin for unloading. Plugin will be unloaded at the end of current frame. void Unload() { unloading_ = true; } /// Returns whether the plugin is about to be unloaded. bool IsUnloading() const { return unloading_; } /// Loads plugin into application memory space and initializes it. virtual bool Load() { return true; } /// Returns true if plugin is loaded and functional. virtual bool IsLoaded() const { return application_ != nullptr; } /// Returns true if plugin was modified on the disk and should be reloaded. virtual bool IsOutOfDate() const { return false; } /// This function will block until plugin file is complete and ready to be loaded. /// Returns false if timeout exceeded, but file is still incomplete. virtual bool WaitForCompleteFile(unsigned timeoutMs) const { return true; } /// Actually unloads the module. Called by %PluginManager at the end of frame when IsUnloading is true. virtual bool PerformUnload() { return true; } protected: /// Base plugin file name. ea::string name_; /// Flag indicating that plugin should unload on the end of the frame. bool unloading_{}; /// Current plugin version. unsigned version_{}; /// Instance to the plugin application. This should be a single owning reference to the plugin. Managed plugins are /// an exception as managed object holds reference to native object and must be disposed in order to free this object. SharedPtr<PluginApplication> application_; }; }
a66633dfd61b5890c4c0e9a8d994dd565d8bc200
775acebaa6559bb12365c930330a62365afb0d98
/source/open/components/buttonui/utils/UserInterfaceUtils.cpp
c82685aa18b3f2e531e11d179bbce72acd9494ac
[]
no_license
Al-ain-Developers/indesing_plugin
3d22c32d3d547fa3a4b1fc469498de57643e9ee3
36a09796b390e28afea25456b5d61597b20de850
refs/heads/main
2023-08-14T13:34:47.867890
2021-10-05T07:57:35
2021-10-05T07:57:35
339,970,603
1
1
null
2021-10-05T07:57:36
2021-02-18T07:33:40
C++
UTF-8
C++
false
false
18,475
cpp
UserInterfaceUtils.cpp
//======================================================================================== // // $File: //depot/devtech/16.0.x/plugin/source/open/components/buttonui/utils/UserInterfaceUtils.cpp $ // // Owner: Tim Wright // // $Author: pmbuilder $ // // $DateTime: 2020/11/06 13:08:29 $ // // $Revision: #2 $ // // $Change: 1088580 $ // // Copyright 1997-2010 Adobe Systems Incorporated. All rights reserved. // // NOTICE: Adobe permits you to use, modify, and distribute this file in accordance // with the terms of the Adobe license agreement accompanying it. If you have received // this file from a source other than Adobe, then your use, modification, or // distribution of it requires the prior written permission of Adobe. // // // This file contains common defines and macros for often-used functions. // // Adapted From SDKUtilities.cpp in the SDK // //======================================================================================== #include "VCPlugInHeaders.h" // InDesign interfaces: #include "IPanelControlData.h" #include "ITriStateControlData.h" #include "ITextControlData.h" #include "IDropDownListController.h" #include "ITextValue.h" #include "IGraphicAttributeSuite.h" #include "IStringListControlData.h" #include "IDialogController.h" #include "ISpread.h" #include "IPanorama.h" #include "IGeometry.h" #include "ILayoutControlData.h" #include "IMasterSpreadList.h" #include "IDocument.h" #include "ISpreadList.h" #include "IApplication.h" #include "IDialogMgr.h" #include "ISession.h" #include "CAlert.h" // ModalAlert #include "LocaleSetting.h" #include "CoreResTypes.h" #include "ErrorUtils.h" #include "TransformUtils.h" #include "ILayoutUIUtils.h" #include "RsrcSpec.h" //Blackduck #include "UserInterfaceUtils.h" #include "AttributesUtils.h" #include "IStringAttr.h" #include "FormFieldID.h" using namespace AttributesUtils; //----------------InvokePluginAboutBox------------------------ // Brings up CAlert with kAboutBoxString and OK button. //------------------------------------------------------------ void UserInterfaceUtils::InvokePlugInAboutBox(const PMString alertStringID) { CAlert::ModalAlert ( alertStringID, // Alert string kOKString, /*CAlert::kDefaultAction,*/ // OK button kNullString, /*CAlert::kDefaultAction,*/ // No second button kNullString, /*CAlert::kDefaultAction,*/ // No third button 1, // Set OK button to default CAlert::eInformationIcon // Information icon. ); } //------------------------------------------------------------ void UserInterfaceUtils::PresentModalDialog( PluginID inPluginID, RsrcID inDialogResourceID ) { IDialog* dialog = GetModalDialog(inPluginID, inDialogResourceID); if (dialog != nil) { // Open causes the dialog to be displayed and then returns immediately // so WaitForDialog() is used. dialog->Open(); dialog->WaitForDialog(); } } //------------------------------------------------------------ IDialog* UserInterfaceUtils::GetModalDialog( PluginID inPluginID, RsrcID inDialogResourceID, bool inVisible ) { // Get the applicaton interface and the DialogMgr: InterfacePtr<IApplication> app(GetExecutionContextSession()->QueryApplication()); InterfacePtr<IDialogMgr> dialogMgr(app, ::UseDefaultIID()); // We need to load the plug-ins resource: RsrcSpec dialogSpec ( LocaleSetting::GetLocale(), // Locale index from PMLocaleIDs.h. inPluginID, // Our Plug-in ID from SimpleDialog.h. kViewRsrcType, // This is the kViewRsrcType. inDialogResourceID, // Resource ID for our dialog. inVisible ? kTrue : kFalse // Initially visible. ); // CreateNewDialog takes the dialogSpec created above, and also // the type of dialog being created (kMovableModal). IDialog* dialog = dialogMgr->CreateNewDialog(dialogSpec, IDialog::kMovableModal); if (dialog == nil) ASSERT_FAIL("UserInterfaceUtils::DoAction: Could not create new dialog"); return dialog; } //---------------------------------------------------------------------------------------- void UserInterfaceUtils::UpdateStaticWidget( IPanelControlData* inPanelData, bool inEnable, WidgetID inStaticWidget ) { IControlView* iStaticView = inPanelData->FindWidget(inStaticWidget); ASSERT_MSG(iStaticView, "Widget Not Found"); if ( iStaticView == 0 ) return; iStaticView->Enable(inEnable); } //---------------------------------------------------------------------------------------- void UserInterfaceUtils::UpdatePopupWidget( IPanelControlData* inPanelData, IGraphicAttributeSuite * iGfxAttrSuite, bool inEnable, ClassID inAttrBoss, WidgetID inPopupWidget, IGraphicStyleAttributeBossList* inDefaults ) { IControlView* iListView = inPanelData->FindWidget(inPopupWidget); ASSERT_MSG(iListView, "Widget Not Found"); if (iListView == 0) return; InterfacePtr<IDropDownListController> iListData(iListView, ::UseDefaultIID()); if (inEnable) { if (iGfxAttrSuite->GetAttributeCount(inAttrBoss) >= 1) { int32 commonValue; if (HasUniqueValue(iGfxAttrSuite, inAttrBoss, &commonValue)) { iListData->Select(commonValue); } else iListData->Deselect(); } else { iListData->Select( inDefaults ? GetInt32Value(inDefaults, inAttrBoss) : 0 ); } } else iListData->Deselect(); iListView->Enable(inEnable); } //---------------------------------------------------------------------------------------- //Used when popup entries are variable and therefore we can't use enum to //store the attribute. inAttrBoss should be a string attribute, and the popup //menu should have a "custom" entry. void UserInterfaceUtils::UpdateStringListWidget( IPanelControlData* inPanelData, IGraphicAttributeSuite * iGfxAttrSuite, bool inEnable, ClassID inAttrBoss, WidgetID inPopupWidget, const PMString& inDefault ) { IControlView* iListView = inPanelData->FindWidget(inPopupWidget); ASSERT_MSG(iListView, "Widget Not Found"); if (iListView == 0) return; InterfacePtr<IDropDownListController> iListData(iListView, ::UseDefaultIID()); InterfacePtr<IStringListControlData> iStringList(iListView, ::UseDefaultIID()); if (inEnable) { PMString customStyleName("$$$/AppearanceStyle/Custom"); customStyleName.Translate(); customStyleName.SetTranslatable(kFalse); if (iGfxAttrSuite->GetAttributeCount(inAttrBoss) >= 1) { PMString commonValue; if (HasUniqueValue(iGfxAttrSuite, inAttrBoss, &commonValue)) { int32 popupIndex = iStringList->GetIndex(commonValue); if (popupIndex < 0) popupIndex = iStringList->GetIndex(customStyleName); if (popupIndex >= 0) iListData->Select(popupIndex); else iListData->Deselect(); } else iListData->Deselect(); } else { PMString defaultStyleName(inDefault); defaultStyleName.Translate(); int32 popupIndex = iStringList->GetIndex(defaultStyleName); if (popupIndex < 0) popupIndex = iStringList->GetIndex(customStyleName); if (popupIndex >= 0) iListData->Select(popupIndex); else iListData->Deselect(); } } else iListData->Deselect(); iListView->Enable(inEnable); } //---------------------------------------------------------------------------------------- void UserInterfaceUtils::UpdateCheckWidget( IPanelControlData* inPanelData, IGraphicAttributeSuite * iGfxAttrSuite, bool inEnable, ClassID inAttrBoss, WidgetID inWidget, IGraphicStyleAttributeBossList* inDefaults ) { IControlView* iTriStateView = inPanelData->FindWidget(inWidget); ASSERT_MSG(iTriStateView, "Widget Not Found"); if (iTriStateView == 0) return; InterfacePtr<ITriStateControlData> iTriStateData(iTriStateView, ::UseDefaultIID()); if (inEnable) { if (iGfxAttrSuite->GetAttributeCount(inAttrBoss) >= 1) { bool16 commonValue; if (HasUniqueValue(iGfxAttrSuite, inAttrBoss, &commonValue)) { if (commonValue) iTriStateData->Select(); else iTriStateData->Deselect(); } else iTriStateData->SetUnknown(); } else { if ( inDefaults && GetBoolValue(inDefaults, inAttrBoss) ) iTriStateData->Select(); else iTriStateData->Deselect(); } } else iTriStateData->Deselect(); iTriStateView->Enable(inEnable); } //---------------------------------------------------------------------------------------- void UserInterfaceUtils::UpdateTextWidget( IPanelControlData* inPanelData, IGraphicAttributeSuite * iGfxAttrSuite, bool inEnable, ClassID inAttrBoss, WidgetID inEditWidget, IGraphicStyleAttributeBossList* inDefaults) { IControlView* iEditView = inPanelData->FindWidget(inEditWidget); ASSERT_MSG(iEditView, "Widget Not Found"); if ( iEditView ==0 ) return; InterfacePtr<ITextControlData> iEdit(iEditView, ::UseDefaultIID()); InterfacePtr<ITextValue> iTextValue(iEditView, ::UseDefaultIID()); PMString strValue = ""; ITextValue::TextControlState controlState = ITextValue::kNormal; if (inEnable) { if (iGfxAttrSuite->GetAttributeCount(inAttrBoss) >= 1) { PMString commonValue; if (HasUniqueValue(iGfxAttrSuite, inAttrBoss, &commonValue)) { strValue = commonValue; } else { controlState = ITextValue::kUnknown; } } else { strValue = inDefaults ? GetStringValue(inDefaults, inAttrBoss) : ""; } } //Need to set iLastGood, otherwise we don't always get change notifications... iEdit->SetString(strValue); iTextValue->SetControlState(controlState); iEditView->Enable(inEnable); } //---------------------------------------------------------------------------------------- //twright 04/18/2001 //???? The MSVC optimizer screws up this routine //for some unknown reason... Turn off optimization around //it to avoid a program-terminating exception. #if MSVC #pragma optimize("",off) #endif void UserInterfaceUtils::UpdateRealWidget( IPanelControlData* inPanelData, IGraphicAttributeSuite * iGfxAttrSuite, bool inEnable, ClassID inAttrBoss, WidgetID inEditWidget, IGraphicStyleAttributeBossList* inDefaults) { IControlView* iEditView = inPanelData->FindWidget(inEditWidget); ASSERT_MSG(iEditView, "Widget Not Found"); if (iEditView ==0) return; InterfacePtr<ITextValue> iTextValue(iEditView, ::UseDefaultIID()); InterfacePtr<ITextControlData> iTextControlData(iEditView, ::UseDefaultIID()); bool enable = inEnable; ITextValue::TextControlState textControlState = ITextValue::kUnknown; PMReal value = inDefaults ? GetRealValue(inDefaults, inAttrBoss) : 0.0; if (enable) { if (iGfxAttrSuite->GetAttributeCount(inAttrBoss) >= 1) { PMReal commonValue; if (HasUniqueValue(iGfxAttrSuite, inAttrBoss, &commonValue)) { value = commonValue; textControlState = ITextValue::kNormal; } } } iTextValue->SetControlState(textControlState); if (textControlState == ITextValue::kNormal) iTextValue->SetTextFromValue(value); iEditView->Enable(enable); } //---------------------------------------------------------------------------------------- void UserInterfaceUtils::UpdateIntegerWidget( IPanelControlData* inPanelData, IGraphicAttributeSuite * iGfxAttrSuite, bool inEnable, ClassID inAttrBoss, WidgetID inEditWidget, IGraphicStyleAttributeBossList* inDefaults) { IControlView* iEditView = inPanelData->FindWidget(inEditWidget); ASSERT_MSG(iEditView, "Widget Not Found"); if (iEditView ==0) return; InterfacePtr<ITextValue> iTextValue(iEditView, ::UseDefaultIID()); InterfacePtr<ITextControlData> iTextControlData(iEditView, ::UseDefaultIID()); bool enable = inEnable; ITextValue::TextControlState textControlState = ITextValue::kUnknown; int32 value = inDefaults ? GetInt32Value(inDefaults, inAttrBoss) : 0; if (enable) { if (iGfxAttrSuite->GetAttributeCount(inAttrBoss) >= 1) { int32 commonValue; if (HasUniqueValue(iGfxAttrSuite, inAttrBoss, &commonValue)) { value = commonValue; textControlState = ITextValue::kNormal; } } } iTextValue->SetControlState(textControlState); if (textControlState == ITextValue::kNormal) iTextValue->SetTextFromValue(value); iEditView->Enable(enable); } #if MSVC #pragma optimize("",on) #endif //---------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------- void UserInterfaceUtils::UpdatePopupAttribute( const PMString& inCommandString, IGraphicAttributeSuite * inGfxAttrSuite, ClassID inAttrBoss, IPMUnknown* inControl ) { InterfacePtr<IDropDownListController> iList(inControl, ::UseDefaultIID()); if (iList->GetSelected() >= 0) SetInt32Value(inCommandString, inGfxAttrSuite, inAttrBoss, iList->GetSelected() ); } //---------------------------------------------------------------------------------------- void UserInterfaceUtils::UpdateCheckAttribute( const PMString& inCommandString, IGraphicAttributeSuite * inGfxAttrSuite, ClassID inAttrBoss, IPMUnknown* inControl ) { InterfacePtr<ITriStateControlData> iTriStateData(inControl, ::UseDefaultIID()); ITriStateControlData::TriState state = iTriStateData->GetState(); if (state != ITriStateControlData::kUnknown) SetBoolValue(inCommandString, inGfxAttrSuite, inAttrBoss, state == ITriStateControlData::kSelected ); } //---------------------------------------------------------------------------------------- void UserInterfaceUtils::UpdateTextAttribute( const PMString& inCommandString, IGraphicAttributeSuite * inGfxAttrSuite, ClassID inAttrBoss, IPMUnknown* inControl ) { InterfacePtr<ITextControlData> iEdit(inControl, ::UseDefaultIID()); InterfacePtr<ITextValue> iTextValue(inControl, ::UseDefaultIID()); if (iTextValue->GetControlState() != ITextValue::kUnknown) SetStringValue(inCommandString, inGfxAttrSuite, inAttrBoss, iEdit->GetString() ); } //---------------------------------------------------------------------------------------- void UserInterfaceUtils::UpdateStringListAttribute( const PMString& inCommandString, IGraphicAttributeSuite * inGfxAttrSuite, ClassID inAttrBoss, IPMUnknown* inControl ) { InterfacePtr<IDropDownListController> iDropDown(inControl, ::UseDefaultIID()); InterfacePtr<IStringListControlData> iStringList(inControl, ::UseDefaultIID()); if (iDropDown->GetSelected() >= 0) SetStringValue(inCommandString, inGfxAttrSuite, inAttrBoss, iStringList->GetString(iDropDown->GetSelected()) ); } //---------------------------------------------------------------------------------------- void UserInterfaceUtils::UpdateRealAttribute( const PMString& inCommandString, IGraphicAttributeSuite * inGfxAttrSuite, ClassID inAttrBoss, IPMUnknown* inControl ) { InterfacePtr<ITextValue> iTextValue(inControl, ::UseDefaultIID()); if (iTextValue->GetControlState() != ITextValue::kUnknown) SetRealValue(inCommandString, inGfxAttrSuite, inAttrBoss, iTextValue->GetTextAsValue()); } //---------------------------------------------------------------------------------------- void UserInterfaceUtils::UpdateIntegerAttribute( const PMString& inCommandString, IGraphicAttributeSuite * inGfxAttrSuite, ClassID inAttrBoss, IPMUnknown* inControl ) { InterfacePtr<ITextValue> iTextValue(inControl, ::UseDefaultIID()); if (iTextValue->GetControlState() != ITextValue::kUnknown) SetInt32Value(inCommandString, inGfxAttrSuite, inAttrBoss, ToInt32(iTextValue->GetTextAsValue())); } //---------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------- void UserInterfaceUtils::AddString(IGraphicStyleAttributeBossList * inAttrs, ClassID inAttrBoss, IControlView* inTextControlView ) { if (inTextControlView) { InterfacePtr<ITextValue> iTextValue(inTextControlView, ::UseDefaultIID()); InterfacePtr<ITextControlData> iTextData(inTextControlView, ::UseDefaultIID()); PMString theString(iTextData->GetString()); theString.Translate(); if (iTextValue->GetControlState() != ITextValue::kUnknown) AddStringValue( inAttrs, inAttrBoss, theString ); } } //---------------------------------------------------------------------------------------- void UserInterfaceUtils::AddBool(IGraphicStyleAttributeBossList * inAttrs, ClassID inAttrBoss, IControlView* inTriStateView ) { if (inTriStateView) { InterfacePtr<ITriStateControlData> iTriStateData(inTriStateView, ::UseDefaultIID()); ITriStateControlData::TriState state = iTriStateData->GetState(); if (state != ITriStateControlData::kUnknown) AddBoolValue( inAttrs, inAttrBoss, state == ITriStateControlData::kSelected ); } } //---------------------------------------------------------------------------------------- void UserInterfaceUtils::AddInt32(IGraphicStyleAttributeBossList * inAttrs, ClassID inAttrBoss, IControlView* iEditView ) { if (iEditView) { InterfacePtr<ITextValue> iTextValue(iEditView, ::UseDefaultIID()); if (iTextValue->GetControlState() != ITextValue::kUnknown) AddInt32Value( inAttrs, inAttrBoss, ToInt32(iTextValue->GetTextAsValue()) ); } } //---------------------------------------------------------------------------------------- void UserInterfaceUtils::AddEnum(IGraphicStyleAttributeBossList * inAttrs, ClassID inAttrBoss, IControlView* iPopupView ) { if (iPopupView) { InterfacePtr<IDropDownListController> iList(iPopupView, ::UseDefaultIID()); if (iList->GetSelected() >= 0) AddInt32Value(inAttrs, inAttrBoss, iList->GetSelected() ); } } //---------------------------------------------------------------------------------------- IControlView* UserInterfaceUtils::GetControl(IDialogController * inDialogController, WidgetID inWidget ) { InterfacePtr<IPanelControlData> panelData(inDialogController, ::UseDefaultIID()); return panelData ? panelData->FindWidget(inWidget) : 0; } // ----------------------------------------------------------------------------------------
0bffb91cf72bf66c80e48cda4f902bf37d139c67
ae6dbcfd6a333bf598b871e15a7741fef81f964f
/Projects/bdda/src/CPP/Word/inc/WrdStringWithDataTable.h
2c61651fd47ecbdc494b0de5725573ff24b36b49
[]
no_license
xeon2007/WSProf
7d431ec6a23071dde25226437583141f68ff6f85
d02c386118bbd45237f6defa14106be8fd989cd0
refs/heads/master
2016-11-03T17:25:02.997045
2015-12-08T22:04:14
2015-12-08T22:04:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,865
h
WrdStringWithDataTable.h
/** * @file WrdStringWithDataTable.h * * Declares the WrdStringWithDataTable class. * * (c) Schema Software Inc., 2002 - 2003 * * @ingroup Word */ #ifndef __WRD_STRING_WITH_DATA_TABLE_H__ #define __WRD_STRING_WITH_DATA_TABLE_H__ #include "WrdObject.h" #include "ChVector.h" /** * Class that corresponds to the way that * MS Word stores strings in the document. * * @ingroup Word * */ class WrdStringWithDataTable : public WrdObject,public ChOverwriteable { ChCOPY_CONSTRUCTOR(WrdStringWithDataTable); public: class StringData { public: ChIMPORT StringData (); virtual ChIMPORT ~StringData (); #ifdef ChCOMPILE_EQUALS_OPERATOR ChIMPORT bool operator== (const StringData& in_rhs) const; #endif // ChCOMPILE_EQUALS_OPERATOR ChIMPORT StringData& operator= (const StringData& in_rhs); CsString m_string; ChCHAR1* m_pExtraData; ChUINT2 m_unExtraDataLength; }; /** * Constructor for this class which corresponds to a string table as * described in the file format documentation. */ ChIMPORT WrdStringWithDataTable (); /** * Destructor for this class which corresponds to a string table * as described in the file format documentation. */ virtual ChIMPORT ~WrdStringWithDataTable (); /** * Implements the clone interface for this class. */ virtual ChIMPORT WrdStringWithDataTable* clone() const; #ifdef ChCOMPILE_EQUALS_OPERATOR /** * Tests if two WrdStringWithDataTable objects are (semantically) * the same. */ ChIMPORT bool operator==( const WrdStringWithDataTable & rhs ) const; #endif // ChCOMPILE_EQUALS_OPERATOR /** * Assignment operator */ ChIMPORT WrdStringWithDataTable& operator= (const WrdStringWithDataTable& in_rhs); ChIMPORT ChUINT2 getNumberOfStrings() const { return m_unNumberOfStrings; }; ChIMPORT ChUINT2 getExtraDataLength() const { return m_unExtraDataLength; }; ChIMPORT StringData & getStringDataReference (ChUINT2 in_unIndex); const ChIMPORT StringData & getStringData (ChUINT2 in_unIndex) const; ChIMPORT void setNumberOfStrings (ChUINT2 in_unNumberOfStrings); ChIMPORT void setExtraDataLength (ChUINT2 in_unExtraDataLength) { m_unExtraDataLength = in_unExtraDataLength; }; //code added on 18th dec 2006 ChIMPORT void appendString (const ChCHAR2* in_pData, ChUINT2 in_unNumberOfCharacters, ChWriter* pOverwriteInfo); ChIMPORT CsString& getString (ChUINT2 in_unIndex); ChIMPORT void getStringTakeOverwriteInfo(ChUINT2 in_unIndex, CsString& refsTarget); private: void cleanup(); ChUINT2 m_unNumberOfStrings; ChUINT2 m_unExtraDataLength; StringData* m_pStrings; ChWriter* m_pOverwriteInfo; ChVector<CsString*>m_strings; }; #endif
4240cef350a1f94aa841cdf351da1ecc86d5d44d
f05fc1c3eebbdbac27b0ac3523ab9809b674456b
/kollmorgen/orocos_kinematics_alter/src/chainjnttojacdotsolver.cpp
c0c40d849754edaa0beeeb2b17f3215606fbfb65
[]
no_license
Tianhuanyu/RGM_controller
43fc4f0f9c323267580e1c8068fd25ce3db603c6
dbd42d006e468628a3382fa681e3329a84bb40cd
refs/heads/master
2020-03-15T23:15:07.346846
2019-09-02T13:08:26
2019-09-02T13:08:26
132,389,804
5
2
null
null
null
null
UTF-8
C++
false
false
7,328
cpp
chainjnttojacdotsolver.cpp
/* Computes the Jacobian time derivative Copyright (C) 2015 Antoine Hoarau <hoarau [at] isir.upmc.fr> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "chainjnttojacdotsolver.hpp" namespace KDL { ChainJntToJacDotSolver::ChainJntToJacDotSolver(const Chain& _chain): chain(_chain), locked_joints_(chain.getNrOfJoints(),false), nr_of_unlocked_joints_(chain.getNrOfJoints()), jac_solver_(chain), jac_(chain.getNrOfJoints()), jac_dot_(chain.getNrOfJoints()), representation_(HYBRID), fk_solver_(chain) { } int ChainJntToJacDotSolver::JntToJacDot(const JntArrayVel& q_in, Twist& jac_dot_q_dot, int seg_nr) { JntToJacDot(q_in,jac_dot_,seg_nr); MultiplyJacobian(jac_dot_,q_in.qdot,jac_dot_q_dot); return (error = E_NOERROR); } int ChainJntToJacDotSolver::JntToJacDot(const JntArrayVel& q_in, Jacobian& jdot, int seg_nr) { unsigned int segmentNr; if(seg_nr<0) segmentNr=chain.getNrOfSegments(); else segmentNr = seg_nr; //Initialize Jacobian to zero since only segmentNr columns are computed SetToZero(jdot) ; if(q_in.q.rows()!=chain.getNrOfJoints()||nr_of_unlocked_joints_!=jdot.columns()) return (error = E_JAC_DOT_FAILED); else if(segmentNr>chain.getNrOfSegments()) return (error = E_JAC_DOT_FAILED); // First compute the jacobian in the Hybrid representation jac_solver_.JntToJac(q_in.q,jac_,segmentNr); // Change the reference frame and/or the reference point switch(representation_) { case HYBRID: // Do Nothing as it is the default in KDL; break; case BODYFIXED: // Ref Frame {ee}, Ref Point {ee} fk_solver_.JntToCart(q_in.q,F_bs_ee_,segmentNr); jac_.changeBase(F_bs_ee_.M.Inverse()); break; case INTERTIAL: // Ref Frame {bs}, Ref Point {bs} fk_solver_.JntToCart(q_in.q,F_bs_ee_,segmentNr); jac_.changeRefPoint(-F_bs_ee_.p); break; default: return (error = E_JAC_DOT_FAILED); } // Let's compute Jdot in the corresponding representation int k=0; for(unsigned int i=0;i<segmentNr;++i) { //Only increase joint nr if the segment has a joint if(chain.getSegment(i).getJoint().getType()!=Joint::None){ for(unsigned int j=0;j<chain.getNrOfJoints();++j) { // Column J is the sum of all partial derivatives ref (41) if(!locked_joints_[j]) jac_dot_k_ += getPartialDerivative(jac_,j,k,representation_) * q_in.qdot(j); } jdot.setColumn(k++,jac_dot_k_); SetToZero(jac_dot_k_); } } return (error = E_NOERROR); } const Twist& ChainJntToJacDotSolver::getPartialDerivative(const KDL::Jacobian& J, const unsigned int& joint_idx, const unsigned int& column_idx, const int& representation) { switch(representation) { case HYBRID: return getPartialDerivativeHybrid(J,joint_idx,column_idx); case BODYFIXED: return getPartialDerivativeBodyFixed(J,joint_idx,column_idx); case INTERTIAL: return getPartialDerivativeInertial(J,joint_idx,column_idx); default: SetToZero(this->t_djdq_); return t_djdq_; } } const Twist& ChainJntToJacDotSolver::getPartialDerivativeHybrid(const KDL::Jacobian& bs_J_ee, const unsigned int& joint_idx, const unsigned int& column_idx) { int j=joint_idx; int i=column_idx; jac_j_ = bs_J_ee.getColumn(j); jac_i_ = bs_J_ee.getColumn(i); SetToZero(t_djdq_); if(j < i) { // P_{\Delta}({}_{bs}J^{j}) ref (20) t_djdq_.vel = jac_j_.rot * jac_i_.vel; t_djdq_.rot = jac_j_.rot * jac_i_.rot; }else if(j > i) { // M_{\Delta}({}_{bs}J^{j}) ref (23) SetToZero(t_djdq_.rot); t_djdq_.vel = -jac_j_.vel * jac_i_.rot; }else if(j == i) { // ref (40) SetToZero(t_djdq_.rot); t_djdq_.vel = jac_i_.rot * jac_i_.vel; } return t_djdq_; } const Twist& ChainJntToJacDotSolver::getPartialDerivativeBodyFixed(const Jacobian& ee_J_ee, const unsigned int& joint_idx, const unsigned int& column_idx) { int j=joint_idx; int i=column_idx; SetToZero(t_djdq_); if(j > i) { jac_j_ = ee_J_ee.getColumn(j); jac_i_ = ee_J_ee.getColumn(i); // - S_d_(ee_J^j) * ee_J^ee ref (23) t_djdq_.vel = jac_j_.rot * jac_i_.vel + jac_j_.vel * jac_i_.rot; t_djdq_.rot = jac_j_.rot * jac_i_.rot; t_djdq_ = -t_djdq_; } return t_djdq_; } const Twist& ChainJntToJacDotSolver::getPartialDerivativeInertial(const KDL::Jacobian& bs_J_bs, const unsigned int& joint_idx, const unsigned int& column_idx) { int j=joint_idx; int i=column_idx; SetToZero(t_djdq_); if(j < i) { jac_j_ = bs_J_bs.getColumn(j); jac_i_ = bs_J_bs.getColumn(i); // S_d_(bs_J^j) * bs_J^bs ref (23) t_djdq_.vel = jac_j_.rot * jac_i_.vel + jac_j_.vel * jac_i_.rot; t_djdq_.rot = jac_j_.rot * jac_i_.rot; } return t_djdq_; } void ChainJntToJacDotSolver::setRepresentation(const int& representation) { if(representation == HYBRID || representation == BODYFIXED || representation == INTERTIAL) this->representation_ = representation; } int ChainJntToJacDotSolver::setLockedJoints(const std::vector< bool > locked_joints) { if(locked_joints.size()!=locked_joints_.size()) return -1; locked_joints_=locked_joints; nr_of_unlocked_joints_=0; for(unsigned int i=0;i<locked_joints_.size();i++){ if(!locked_joints_[i]) nr_of_unlocked_joints_++; } return 0; } const char* ChainJntToJacDotSolver::strError(const int error) const { if (E_JAC_DOT_FAILED == error) return "Jac Dot Failed"; else return SolverI::strError(error); } ChainJntToJacDotSolver::~ChainJntToJacDotSolver() { } } // namespace KDL
d9d9a807396934e289e2e3b99dedfb7c112de9d6
4498c2737934ca43b0607346f1bbfcc47ed468a1
/zoj/zoj1789.cpp
c3426d62582e41628ce5f568536c9257eeccf5af
[]
no_license
tsukipipi/C-Project
7c8a2b6a1d70f6438b28f0e10ce0817ce3ca63a9
161d4f0d72be683ba73fbdeb4bd58a3f02442d88
refs/heads/master
2021-04-09T14:27:39.855929
2018-04-30T15:09:23
2018-04-30T15:09:23
125,604,895
0
0
null
null
null
null
GB18030
C++
false
false
1,656
cpp
zoj1789.cpp
#include <iostream> #include<stdio.h> #include<string.h> using namespace std; //并查集 int parent[30001]; //实际学生数 int n; //实际组数 int m; //每组学生数 int k; //每组学生 int student[30001]; //并查集合并 void SetUnion(int i,int j) { //结点数之和 int temp=parent[i]+parent[j]; //树i结点比较多 if(parent[i]<parent[j]) { parent[j]=i; parent[i]=temp; } //两棵树结点一样多或者树j结点比较多 else { parent[i]=j; parent[j]=temp; } } //找到含元素i的树的根,采用坍塌规则缩短从i到根的所有结点到根的距离 int SetFind(int i) { int root=i; //找到根节点 while(parent[root]>=0) root=parent[root]; //路径坍塌 int p; while(i!=root) { p=parent[i]; parent[i]=root; i=p; } return root; } int main() { int s1,s2; int result; while(scanf("%d%d",&n,&m)!=EOF&&!(n==0&&m==0)) { //并查集置空 memset(parent,-1,sizeof(parent)); //输入每组学生数和具体学生 for(int i=0;i<m;i++) { scanf("%d",&k); for(int j=0;j<k;j++) scanf("%d",&student[j]); //合并有关系的并查集 for(int j=0;j<k-1;j++) { s1=SetFind(student[j]); s2=SetFind(student[j+1]); if(s1!=s2)//合并两个集合 SetUnion(s1,s2); } } s1=SetFind(0); result=0-parent[s1]; printf("%d\n",result); } return 0; }
b178a0c7c03c1454091ab74c909d147351c2c3d8
3acafaea6ada570668aeea4e076110aba8724bb5
/cxxlib/test/test_SharedPtr.h
ab0260ececb25f0a81d843a2e6cd7b19ebc06e52
[]
no_license
frankyueh/cxxlib
4ca1698d3847ca86204122550b8d1b2e5f520aac
d5d508eae79a53d6a73207ea5cea4afaffb736cd
refs/heads/master
2020-05-27T00:31:43.736151
2015-09-23T06:47:54
2015-09-23T06:47:54
41,167,531
0
0
null
null
null
null
UTF-8
C++
false
false
286
h
test_SharedPtr.h
#pragma once #include "SharedPtr.h" namespace SharedPtrTest { class ForwardDeclared; class TestForwardDeclared { public: TestForwardDeclared(int *); ~TestForwardDeclared() {} // expect: without no deleter warning private: cxxlib::SharedPtr<ForwardDeclared> m_qcPtr; }; }
b129cb9b6a52d41af8f93d21da177e616999d005
42a7f492f624dccf9ac2cc3d4ef991402a757d4b
/Source/OneWars/OWButton.cpp
036b828389f646f75d33153e272f4b2c83d3ba0e
[]
no_license
zeazer/OneWars
ec3098c27fdb266262d5ce67906085cdeab99c8b
f477a5d38a92f2c8ec16cd2f40af61f50ed9ff4d
refs/heads/master
2023-02-18T02:15:15.431074
2020-07-10T18:47:14
2020-07-10T18:47:14
278,668,544
0
0
null
null
null
null
UTF-8
C++
false
false
263
cpp
OWButton.cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "OWButton.h" UOWButton::UOWButton() { mPressedButtonText = TEXT("Just Pressed This Button"); } const FString& UOWButton::PressedButton() { return mPressedButtonText; }
2c7afd1a5167e2d3ccffdf6d46a7590944863d08
23ec33e86adfe96a0d49a88e91f880b2154b2c9b
/USACO/cryptcow.cpp
a11b768f16a206f012cb4a7e218342bad2eabf9a
[]
no_license
ck89119/Algorithm
88ee13e267406f8531b8625fbd2c20c807f535d4
94d39795706f07a8240b610927e709978a2ff5d6
refs/heads/master
2023-09-01T06:35:09.132142
2023-08-29T01:27:47
2023-08-29T01:27:47
30,058,525
3
0
null
null
null
null
UTF-8
C++
false
false
4,071
cpp
cryptcow.cpp
/* ID: ck891191 PROG: cryptcow LANG: C++ */ #include <iostream> #include <cstdio> #include <vector> #include <map> #include <set> #include <deque> #include <queue> #include <stack> #include <string> #include <cstring> #include <cmath> #include <algorithm> #include <bitset> #include <functional> #include <numeric> #include <utility> #include <sstream> #include <fstream> #include <iomanip> #include <cstdlib> using namespace std; #define dump(x) cerr << __LINE__ << " : "<< #x << " = " << (x) <<endl; #define FR(i,a,b) for(int i=(a);i<(b);++i)//[a,b) #define CL(a,x) memset(a,x,sizeof(a)) #define MP(A,B) make_pair(A,B) #define two(X) (1<<(X)) #define towL(X) (((int64)(1))<<(x)) #define contain(S,X) ((S&two(X))>0) #define containL(S,X) ((S&twoL(X))>0) #define lowbit(x) ((x)&(-(x))) #define MAXB 80 #define MAXH 3214567 #define DES 1670966 //destination Hash value //freopen("","r",stdin); //freopen("","w",stdout); const long long MAXN=(1LL<<62); const int INF=(1<<30); const double PI=acos(-1.0); const double EPS=1e-11; typedef char STR[MAXB]; int elfhash(char * str) { unsigned int res = 0,g; while (*str) { res = (res << 4) + (*str++); g = res & 0xF0000000; if (g) res ^= g >> 24; res &= ~g; } return res % MAXH; } inline void swap(int pos1,int pos2,int pos3,char *str,char *tmp) { //make sure that //str[pos1] == 'C ' str[pos2] == 'O' str[pos3] == 'W' char *ptr = tmp,len = strlen(str); memmove(ptr,str,pos1); ptr += pos1; memmove(ptr,str + pos2 + 1,pos3 - pos2 - 1); ptr += pos3 - pos2 - 1; memmove(ptr,str + pos1 + 1,pos2 - pos1 - 1); atr += pos2 - pos1 - 1; memmove(ptr,str + pos3 + 1,len - pos3 - 1); tmp[len - 3] = 0; } bool hash[MAXH],exist[MAXH]; int Ccnt = 0,Ocnt = 0,Wcnt = 0,maxstep; int prefix[MAXB],suffix[MAXB]; bool search(int step,char *str) { int len = strlen(str),hv = elfhash(str); int Cpos[10],Opos[10],Wpos[10]; int Ccnt,Ocnt,Wcnt,prev = 0,lC,lO,lW,fpos = -1; STR tmp; Ccnt = Ocnt = Wcnt = 0; if (hv == DES) return 1; //Success for (int i = 0; i < len; i++) if (str[i] == 'C' || str[i] == 'O' || str[i] == 'W') { if (fpos < 0) fpos = i; if (i - prev > 1) { memmove(tmp,str + prev,i - prev); tmp[i - prev] = 0; if (!exist[elfhash(tmp)]) return 0; } prev = i + 1; if (str[i] == 'C') {Cpos[++Ccnt] = i; lC = i; if (Ccnt == 1 && (Ocnt || Wcnt)) return 0;} else if (str[i] == 'O') {Opos[++Ocnt] = i; lO = i;} else if (str[i] == 'W') {Wpos[++Wcnt] = i; lW = i;} }//scan if (hash[hv] || step > maxstep) return 0; if (lW < lO || lW < lC) return 0; memmove(tmp,str,fpos); tmp[fpos] = 0; if (elfhash(tmp) != prefix[fpos - 1]) return 0; memmove(tmp,str + lW + 1,len - lW - 1); tmp[len - lW - 1] = 0; if (elfhash(tmp) != suffix[len - lW - 2]) return 0; hash[hv] = 1; for (int j = 1; j <= Ocnt; j++) for (int i = 1; i <= Ccnt; i++) if (Opos[j] > Cpos[i]) for (int k = Wcnt; k >= 1; k--) if (Wpos[k] > Opos[j]) { swap(Cpos[i],Opos[j],Wpos[k],str,tmp); if (search(step + 1,tmp)) return 1; } return 0; } int main() { STR str,tmp,dstr = "Begin the Escape execution at the Break of Dawn"; int len; freopen("cryptcow.in","r",stdin); freopen("cryptcow.out","w",stdout); memset(hash,0,sizeof(hash)); for (int i = 0; i < 47; i++) for (int j = i; j < 47; j++) { memmove(tmp,dstr + i, j - i + 1); tmp[j - i + 1] = 0; if (i == 0) prefix[j] = elfhash(tmp); exist[elfhash(tmp)] = 1; } for (int i = 0; i < 47; i++) { memmove(tmp,dstr + 46 - i,i + 1); tmp[i + 1] = 0; suffix[i] = elfhash(tmp); } //pre calc fgets(str,MAXB,stdin); str[len = (strlen(str) - 1)] = 0; for (int i = 0; i < len; i++) if (str[i] == 'C') ++Ccnt; else if (str[i] == 'O') ++Ocnt; else if (str[i] == 'W') ++Wcnt; if (elfhash(str) == DES) printf("%d %d\n",1,0); else if (Ccnt != Ocnt || Ocnt != Wcnt || ((len - 47) % 3)) printf("%d %d\n",0,0); else { maxstep = (len - 47) / 3; if (search(1,str)) printf("%d %d\n",1,Ccnt); else printf("%d %d\n",0,0); } return 0; }
045d4a1ad7c3f2610d7955912da7ee0ae7905e1d
b797d93c9f01734ce8a8dbd3803fd4b49112ac46
/DrawComponent.cpp
b87ce81b364c033cd321eb5ac8a6fd1a49595bb3
[]
no_license
xinshoujiajia/Test2
b659cac83c4fc85f0d31636cb428cba854049233
66672ffd59a53eeffe637385147780ee82a45ebe
refs/heads/main
2023-02-17T06:54:48.684975
2021-01-07T15:52:33
2021-01-07T15:52:33
325,922,836
0
0
null
null
null
null
UTF-8
C++
false
false
873
cpp
DrawComponent.cpp
#include"DrawComponent.h" #include"Actor.h" #include"Game.h" DrawComponent::DrawComponent(Actor *owner,Game *game,int updateOrder) :Component(owner,updateOrder) { game->AddDrawComponent(this); mSize=0; mColor={0,0,0,0}; } DrawComponent::~DrawComponent() { mOwner->GetGame()->RemoveDrawComponent(this); } void DrawComponent::Draw(SDL_Renderer *Renderer) { if (mOwner->GetState() == Actor::EActive) { SDL_SetRenderDrawColor( Renderer, mColor.R,//R mColor.G,//G mColor.B,//B mColor.A//A ); SDL_Rect wall{ static_cast<int>(mOwner->GetPosition().x),//x static_cast<int>(mOwner->GetPosition().y),//y mSize,// mSize// }; SDL_RenderFillRect(Renderer, &wall); } }
0efd73dfc565a78ef419e577c25321d747e4eacd
123ed592598184e38f1527bd6ed76797f00277fe
/src/kudu/tools/fs_tool.h
ec123cd4efc865cebe414c98e638016bdc9f4a02
[ "Apache-2.0", "BSD-3-Clause", "Zlib", "GPL-1.0-or-later", "LicenseRef-scancode-protobuf", "bzip2-1.0.6", "MIT", "NCSA", "CC0-1.0", "GPL-2.0-or-later", "BSL-1.0", "LicenseRef-scancode-public-domain", "BSD-2-Clause" ]
permissive
yuanjingkai/kudu
ee331cd9f5a41f1bd8acf237fa972bb97ce3dcac
3543c3534defcadd342d4a36f38501f2b84695a3
refs/heads/master
2020-04-09T12:45:46.424364
2015-09-16T01:34:47
2015-10-07T18:46:41
40,165,963
0
1
Apache-2.0
2023-03-20T11:57:17
2015-08-04T05:53:05
C++
UTF-8
C++
false
false
4,816
h
fs_tool.h
// Copyright 2014 Cloudera, 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. // // Shared fields and methods for querying local files and directories #ifndef KUDU_TOOLS_FS_TOOL_H #define KUDU_TOOLS_FS_TOOL_H #include <tr1/memory> #include <iostream> #include <vector> #include <string> #include <utility> #include "kudu/gutil/gscoped_ptr.h" #include "kudu/util/status.h" #include "kudu/tablet/delta_key.h" namespace kudu { class FsManager; class Schema; class BlockId; class RandomAccessFile; namespace tablet { class TabletMetadata; class RowSetMetadata; } namespace tools { struct DumpOptions { std::string start_key; std::string end_key; size_t nrows; bool metadata_only; DumpOptions() : start_key(""), end_key(""), nrows(0), metadata_only(false) { } }; class FsTool { public: enum DetailLevel { MINIMUM = 0, // Minimum amount of information HEADERS_ONLY = 1, // Tablet/segment headers only MAXIMUM = 2, }; explicit FsTool(DetailLevel detail_level); ~FsTool(); Status Init(); // Prints out the file system tree. Status FsTree(); // Lists all log segments in the root WALs directory. Status ListAllLogSegments(); // Lists all log segments for tablet 'tablet_id'. Status ListLogSegmentsForTablet(const std::string& tablet_id); // Lists all tablets in a tablet server's local file system. Status ListAllTablets(); // Prints the header for a log segment residing in 'path'. Status PrintLogSegmentHeader(const std::string& path, int indent); // Lists blocks for a tablet organized by rowset. Status ListBlocksForTablet(const std::string& tablet_id); // Lists blocks for all tablets. Status ListBlocksForAllTablets(); // Prints the tablet metadata for a tablet 'tablet_id'. Status PrintTabletMeta(const std::string& tablet_id, int indent); // Dumps the blocks that make up a tablet, rowset by rowset. This ends up // outputting on a column-by-column basis, as close as possible to the raw // storage. See also: DumpRowSet(). Status DumpTabletBlocks(const std::string& tablet_id, const DumpOptions& opts, int indent); // Dump the data stored in a tablet. The output here is much more readable // than DumpTabletBlocks, since it reconstructs rows and associates undo/redo deltas // with those rows. Status DumpTabletData(const std::string& tablet_id); // Dumps column blocks, all types of delta blocks for a given // rowset. Status DumpRowSet(const std::string& tablet_id, int64_t rowset_id, const DumpOptions& opts, int indent); Status DumpCFileBlock(const std::string& block_id, const DumpOptions& opts, int indent); // Prints the server's UUID to whom the data belongs and nothing else. Status PrintUUID(int indent); private: Status ListSegmentsInDir(const std::string& segments_dir); Status ListBlocksInRowSet(const Schema& schema, const tablet::RowSetMetadata& rs_meta); Status DumpRowSetInternal(const Schema& schema, const std::tr1::shared_ptr<tablet::RowSetMetadata>& rs_meta, const DumpOptions& opts, int indent); Status DumpCFileBlockInternal(const BlockId& block_id, const DumpOptions& opts, int indent); Status DumpDeltaCFileBlockInternal(const Schema& schema, const std::tr1::shared_ptr<tablet::RowSetMetadata>& rs_meta, const BlockId& block_id, tablet::DeltaType delta_type, const DumpOptions& opts, int indent, bool metadata_only); Status OpenBlockAsFile(const BlockId& block_id, uint64_t* file_size, std::tr1::shared_ptr<RandomAccessFile>* block_reader); bool initialized_; const DetailLevel detail_level_; gscoped_ptr<FsManager> fs_manager_; }; } // namespace tools } // namespace kudu #endif // KUDU_TOOLS_FS_TOOL_H
0b30e733d27db8118b0d9852df2cc509f449a474
c505feab29f4e78f46f7143e3ca254b48095347c
/GuidanceSDK/Guidance-SDK-master/demo/obstacle_bypass/discontinuity-balance_strategy/src/dji_sdk/src/dji_sdk_node.cpp
b019fa400b99f71a4bbea6cf97f43bbf13f2f22b
[]
no_license
seudrone/doc-for-dji
dece2910c074a563d43bb52cbe9bdfa9907635bb
5387a59e28b233692452adf177106d8048d2154d
refs/heads/master
2021-07-06T02:01:40.161580
2017-09-27T15:47:44
2017-09-27T15:47:44
105,038,341
3
0
null
null
null
null
UTF-8
C++
false
false
33,891
cpp
dji_sdk_node.cpp
/* ============================================================================ Name : dji_sdk_node.cpp Author : Mario Chris Description : Obstacle Avoidance ============================================================================ */ /* Onboard */ #include <stdio.h> #include <stdlib.h> #include <string> #include <sys/time.h> #include <unistd.h> #include "DJI_Pro_Codec.h" #include "DJI_Pro_Hw.h" #include "DJI_Pro_Link.h" #include "DJI_Pro_App.h" /* Guidance */ #include "opencv2/video/tracking.hpp" #include "opencv2/imgproc/imgproc.hpp" #include "opencv2/highgui/highgui.hpp" #include "opencv2/opencv.hpp" #include "DJI_guidance.h" #include "DJI_utility.h" #include "imagetransfer.h" #include "usb_transfer.h" using namespace cv; using namespace std; /* additional includes */ #include <string.h> #include <sstream> #include <iostream> #include <iomanip> #include <fstream> #include <ctime> #include <math.h> #include <sys/types.h> #include <sys/stat.h> #include <thread> /* enc_key */ char *key; /* req_id for nav closed by app msg */ req_id_t nav_force_close_req_id = {0}; /* std msg from uav */ sdk_std_msg_t recv_sdk_std_msgs = {0}; /* ros launch param */ std::string serial_name; int baud_rate; int app_id; int app_api_level; int app_version; std::string app_bundle_id; std::string enc_key; /* activation */ activation_data_t activation_msg = {14,2,1,""}; bool cmd_complete = false; /* parameter */ #define TAKEOFF (uint8_t) 4 #define LAND (uint8_t) 6 #define WIDTH 320 #define HEIGHT 240 #define IMAGE_SIZE (HEIGHT * WIDTH) #define VBUS e_vbus1 #define RETURN_IF_ERR(err_code) { if( err_code ){ release_transfer(); printf( "error code:%d,%s %d\n", err_code, __FILE__, __LINE__ );}} /* guidance */ int err_code; Mat g_greyscale_image_left=Mat::zeros(HEIGHT, WIDTH, CV_8UC1); Mat g_greyscale_image_right=Mat::zeros(HEIGHT, WIDTH, CV_8UC1); int iter = 0; DJI_lock g_lock; DJI_event g_event; // cells #define CELL_ROWS 20 #define CELL_COLS 20 struct cell { double of_x; // optical flow x double of_y; // optical flow y uint count; // number of keypoints bool disc; // discontinuity }; cell of_cells[CELL_ROWS][CELL_COLS]; #define OF_MARGIN (double) 0.5 // 2 optical flow values considered different if their difference exceeds this margin #define DISC_MARGIN (double) 0.5 // a cell considered discontinous if the proportion of neighboring cells with different optical flow values exceeds this margin #define MAX_NEIGH_DIST 1 // max distance allowed between two cells to be considered neighbors #define MAX_DISC (double) 0.7 // max proportion of discontinuous cells allowed for drone to continue maneuvering // Shi-Tomasi #define MIN_CORNERS (uint) 30 #define CORNER_THRESHOLD (uint) 190 #define MAX_CORNERS (uint) 200 #define QUALITY_LEVEL (double) 0.01 #define MIN_DISTANCE (double) 1 // Lucas-Kanade int frame_num = 0; vector<Point2f> prevleftpts, prevrightpts, prevlefttracked, prevrighttracked; Mat prevleftimg, prevrightimg; bool l_kpt_regen = true; bool r_kpt_regen = true; // control #define CMD_FLAG 0x4A // control horizontal/vertical velocity in body frame and yaw rate in ground frame #define FWD (double) 0.5 // constant horizontal velocity #define TURN (double) 10 // constant yaw rate #define ALT (double) 0.1 // constant vertical velocity double l_fwd = FWD; // left image forward control double l_turn = 0; // left image turn control double l_alt = 0; // left image altitude control double r_fwd = FWD; // right image forward control double r_turn = 0; // right image turn control double r_alt = 0; // right image altitude control /*************************************/ /* * table of sdk req data handler */ int16_t sdk_std_msgs_handler(uint8_t cmd_id,uint8_t* pbuf,uint16_t len,req_id_t req_id); int16_t nav_force_close_handler(uint8_t cmd_id,uint8_t* pbuf,uint16_t len,req_id_t req_id); /* cmd id table */ cmd_handler_table_t cmd_handler_tab[] = { {0x00,sdk_std_msgs_handler }, {0x01,nav_force_close_handler }, {ERR_INDEX,NULL } }; /* cmd set table */ set_handler_table_t set_handler_tab[] = { {0x02,cmd_handler_tab }, {ERR_INDEX,NULL } }; /* * sdk_req_data_callback */ int16_t nav_force_close_handler(uint8_t cmd_id,uint8_t* pbuf,uint16_t len,req_id_t req_id) { if(len != sizeof(uint8_t)) return -1; uint8_t msg; memcpy(&msg, pbuf, sizeof(msg)); /* test session ack */ nav_force_close_req_id.sequence_number = req_id.sequence_number; nav_force_close_req_id.session_id = req_id.session_id; nav_force_close_req_id.reserve = 1; printf("WARNING nav close by app %d !!!!!!!!!!!!!! \n", msg); return 0; } #define _recv_std_msgs(_flag, _enable, _data, _buf, _datalen) \ if( (_flag & _enable))\ {\ memcpy((uint8_t *)&(_data),(uint8_t *)(_buf)+(_datalen), sizeof(_data));\ _datalen += sizeof(_data);\ } int16_t sdk_std_msgs_handler(uint8_t cmd_id,uint8_t* pbuf,uint16_t len,req_id_t req_id) { uint16_t *msg_enable_flag = (uint16_t *)pbuf; uint16_t data_len = MSG_ENABLE_FLAG_LEN; _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_TIME , recv_sdk_std_msgs.time_stamp , pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_Q , recv_sdk_std_msgs.q , pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_A , recv_sdk_std_msgs.a , pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_V , recv_sdk_std_msgs.v , pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_W , recv_sdk_std_msgs.w , pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_POS , recv_sdk_std_msgs.pos , pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_MAG , recv_sdk_std_msgs.mag , pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_RC , recv_sdk_std_msgs.rc , pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_GIMBAL , recv_sdk_std_msgs.gimbal , pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_STATUS , recv_sdk_std_msgs.status , pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_BATTERY , recv_sdk_std_msgs.battery_remaining_capacity , pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_DEVICE , recv_sdk_std_msgs.ctrl_device , pbuf, data_len); return 0; } /* test cmd agency */ uint8_t test_cmd_send_flag = 1; uint8_t test_cmd_is_resend = 0; void cmd_callback_test_fun(uint16_t *ack) { char result[6][50]={{"REQ_TIME_OUT"},{"REQ_REFUSE"},{"CMD_RECIEVE"},{"STATUS_CMD_EXECUTING"},{"STATUS_CMD_EXE_FAIL"},{"STATUS_CMD_EXE_SUCCESS"}}; uint16_t recv_ack = *ack; printf("[DEBUG] recv_ack %#x \n", recv_ack); printf("[TEST_CMD] Cmd result: %s \n", *(result+recv_ack)); test_cmd_send_flag = 1; if(recv_ack != STATUS_CMD_EXE_SUCCESS) { test_cmd_is_resend = 1; } /* for debug */ if(recv_ack != STATUS_CMD_EXE_SUCCESS) { test_cmd_send_flag = 0; printf("[ERROR] APP LAYER NOT STATUS_CMD_EXE_SUCCESS !!!!!!!!!!!!!!!!!!\n"); } cmd_complete = true; printf("Completed Maneuver...\n"); } /* test activation */ void test_activation_ack_cmd_callback(ProHeader *header) { uint16_t ack_data; printf("Sdk_ack_cmd0_callback,sequence_number=%d,session_id=%d,data_len=%d\n", header->sequence_number, header->session_id, header->length - EXC_DATA_SIZE); memcpy((uint8_t *)&ack_data,(uint8_t *)&header->magic, (header->length - EXC_DATA_SIZE)); if( is_sys_error(ack_data)) { printf("[DEBUG] SDK_SYS_ERROR!!! \n"); } else { char result[][50]={{"ACTIVATION_SUCCESS"},{"PARAM_ERROR"},{"DATA_ENC_ERROR"},{"NEW_DEVICE_TRY_AGAIN"},{"DJI_APP_TIMEOUT"},{" DJI_APP_NO_INTERNET"},{"SERVER_REFUSED"},{"LEVEL_ERROR"}}; printf("[ACTIVATION] Activation result: %s \n", *(result+ack_data)); if(ack_data == 0) { Pro_Config_Comm_Encrypt_Key(key); printf("[ACTIVATION] set key %s\n",key); } } cmd_complete = true; printf("Completed Activation...\n"); } void test_activation(void) { App_Send_Data( 2, 0, MY_ACTIVATION_SET, API_USER_ACTIVATION,(uint8_t*)&activation_msg,sizeof(activation_msg), test_activation_ack_cmd_callback, 1000, 1); printf("[ACTIVATION] send acticition msg: %d %d %d %d \n", activation_msg.app_id, activation_msg.app_api_level, activation_msg.app_ver ,activation_msg.app_bundle_id[0]); } void sdk_ack_nav_open_close_callback(ProHeader *header) { uint16_t ack_data; printf("call %s\n",__func__); printf("Recv ACK,sequence_number=%d,session_id=%d,data_len=%d\n", header->sequence_number, header->session_id, header->length - EXC_DATA_SIZE); memcpy((uint8_t *)&ack_data,(uint8_t *)&header->magic, (header->length - EXC_DATA_SIZE)); if( is_sys_error(ack_data)) { printf("[DEBUG] SDK_SYS_ERROR!!! \n"); } cmd_complete = true; printf("Completed API Control...\n"); } // onboard monitor command set void monitor() { uint8_t pbuf; uint16_t *msg_enable_flag = (uint16_t *)(&pbuf); uint16_t data_len = MSG_ENABLE_FLAG_LEN; _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_TIME , recv_sdk_std_msgs.time_stamp , &pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_Q , recv_sdk_std_msgs.q , &pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_A , recv_sdk_std_msgs.a , &pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_V , recv_sdk_std_msgs.v , &pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_W , recv_sdk_std_msgs.w , &pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_POS , recv_sdk_std_msgs.pos , &pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_MAG , recv_sdk_std_msgs.mag , &pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_RC , recv_sdk_std_msgs.rc , &pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_GIMBAL , recv_sdk_std_msgs.gimbal , &pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_STATUS , recv_sdk_std_msgs.status , &pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_BATTERY , recv_sdk_std_msgs.battery_remaining_capacity , &pbuf, data_len); _recv_std_msgs( *msg_enable_flag, ENABLE_MSG_DEVICE , recv_sdk_std_msgs.ctrl_device , &pbuf, data_len); } // maneuvering void maneuver(int ctrl_flag, double roll_or_x, double pitch_or_y, double thr_z, double yaw) { api_ctrl_without_sensor_data_t motion = {0}; // initialize motion commands motion.ctrl_flag = ctrl_flag; motion.roll_or_x = roll_or_x; motion.pitch_or_y = pitch_or_y; motion.thr_z = thr_z; motion.yaw = yaw; while(true) { if(cmd_complete) { cmd_complete = false; App_Send_Data(0, 0, MY_CTRL_CMD_SET, API_CTRL_REQUEST, (uint8_t*)&motion, sizeof(motion), NULL, 0, 0); // send command cmd_complete = true; break; } } } /* * guidance callback function */ int guidance_callback(int data_type, int data_len, char *content) { g_lock.enter(); if (e_image == data_type && NULL != content) { printf("image data...................\n"); image_data data; memcpy( (char*)&data, content, sizeof(data) ); printf( "frame index:%d,stamp:%d\n", data.frame_index, data.time_stamp ); for ( int d = 0; d < CAMERA_PAIR_NUM; ++d ) { if ( data.m_greyscale_image_left[d] ) { memcpy( g_greyscale_image_left.data, data.m_greyscale_image_left[d], IMAGE_SIZE );//maybe select too many image so just overwrite it // control text string ctrl_text = ""; /* Lucas-Kanade */ if(prevleftpts.size() < MIN_CORNERS) { // control decision ctrl_text = "STOP MOVING"; l_fwd = 0; l_turn = 0; l_alt = 0; } else if(frame_num > 0) { vector<Point2f> LKleftpts; vector<uchar> status; vector<float> err; vector<Mat> prevleftpyr; buildOpticalFlowPyramid(prevleftimg, prevleftpyr, Size(21, 21), 3); vector<Mat> currleftpyr; buildOpticalFlowPyramid(g_greyscale_image_left, currleftpyr, Size(21, 21), 3); calcOpticalFlowPyrLK(prevleftpyr, currleftpyr, prevleftpts, LKleftpts, status, err, Size(21, 21), 3, TermCriteria(TermCriteria::COUNT+TermCriteria::EPS, 30, 0.01), OPTFLOW_LK_GET_MIN_EIGENVALS); // control decision ctrl_text = "GO"; double left_of_x = 0, left_of_y = 0, right_of_x = 0, right_of_y = 0, up_of_x = 0, up_of_y = 0, down_of_x = 0, down_of_y = 0; int left_count = 0, right_count = 0, up_count = 0, down_count = 0; // populating cell data for(int row = 0; row < CELL_ROWS; row++) { for(int col = 0; col < CELL_COLS; col++) { of_cells[row][col].of_x = 0; of_cells[row][col].of_y = 0; of_cells[row][col].count = 0; of_cells[row][col].disc = false; } } for(size_t i = 0; i < LKleftpts.size(); i++) { if(LKleftpts[i].x >= 0 && LKleftpts[i].y >= 0 && LKleftpts[i].x <= WIDTH && LKleftpts[i].y <= HEIGHT) { // calculating corresponding cell and optical flow int row = LKleftpts[i].y*CELL_ROWS/HEIGHT; int col = LKleftpts[i].x*CELL_COLS/WIDTH; double of_x = LKleftpts[i].x - prevleftpts[i].x; double of_y = LKleftpts[i].y - prevleftpts[i].y; // updating cell of_cells[row][col].of_x += of_x; of_cells[row][col].of_y += of_y; of_cells[row][col].count++; // saving optical flow values for control feedback if(LKleftpts[i].x < (double)WIDTH/2.0) { left_of_x += LKleftpts[i].x - prevleftpts[i].x; left_of_y += LKleftpts[i].y - prevleftpts[i].y; left_count++; } else { right_of_x += LKleftpts[i].x - prevleftpts[i].x; right_of_y += LKleftpts[i].y - prevleftpts[i].y; right_count++; } if(LKleftpts[i].y < (double)HEIGHT/2.0) { up_of_x += LKleftpts[i].x - prevleftpts[i].x; up_of_y += LKleftpts[i].y - prevleftpts[i].y; up_count++; } else { down_of_x += LKleftpts[i].x - prevleftpts[i].x; down_of_y += LKleftpts[i].y - prevleftpts[i].y; down_count++; } } } left_of_x /= (double)left_count; left_of_y /= (double)left_count; double left_of = pow(pow(left_of_x, 2) + pow(left_of_y, 2), 0.5); right_of_x /= (double)right_count; right_of_y /= (double)right_count; double right_of = pow(pow(right_of_x, 2) + pow(right_of_y, 2), 0.5); up_of_x /= (double)up_count; up_of_y /= (double)up_count; double up_of = pow(pow(up_of_x, 2) + pow(up_of_y, 2), 0.5); down_of_x /= (double)down_count; down_of_y /= (double)down_count; double down_of = pow(pow(down_of_x, 2) + pow(down_of_y, 2), 0.5); // finding discontinuous cells int left_disc = 0, right_disc = 0, up_disc = 0, down_disc = 0; for(int row = 0; row < CELL_ROWS; row++) { for(int col = 0; col < CELL_COLS; col++) { int neighbor_count = 0; int neighbor_diff = 0; // iterating over neighbor cells for(int x_dist = -1*MAX_NEIGH_DIST; x_dist <= MAX_NEIGH_DIST; x_dist++) { for(int y_dist = -1*MAX_NEIGH_DIST; y_dist <= MAX_NEIGH_DIST; y_dist++) { if(x_dist == 0 && y_dist == 0) continue; // do not count self as neighbor if(row - y_dist < 0 || row + y_dist > CELL_ROWS - 1 || col - x_dist < 0 || col + x_dist > CELL_COLS - 1) continue; // do not exceed boundaries // assign shorter vector as a and longer vector as b double a_x; double a_y; double b_x; double b_y; if(pow((pow(of_cells[row][col].of_x, 2) + pow(of_cells[row][col].of_y, 2))/pow((double)of_cells[row][col].count, 2), 0.5) < pow((pow(of_cells[row + y_dist][col + x_dist].of_x, 2) + pow(of_cells[row + y_dist][col + x_dist].of_y, 2))/pow((double)of_cells[row + y_dist][col + x_dist].count, 2), 0.5)) { a_x = of_cells[row][col].of_x/(double)of_cells[row][col].count; a_y = of_cells[row][col].of_y/(double)of_cells[row][col].count; b_x = of_cells[row + y_dist][col + x_dist].of_x/(double)of_cells[row + y_dist][col + x_dist].count; b_y = of_cells[row + y_dist][col + x_dist].of_y/(double)of_cells[row + y_dist][col + x_dist].count; } else { b_x = of_cells[row][col].of_x/(double)of_cells[row][col].count; b_y = of_cells[row][col].of_y/(double)of_cells[row][col].count; a_x = of_cells[row + y_dist][col + x_dist].of_x/(double)of_cells[row + y_dist][col + x_dist].count; a_y = of_cells[row + y_dist][col + x_dist].of_y/(double)of_cells[row + y_dist][col + x_dist].count; } if(1.0 - (a_x*b_x + a_y*b_y)/(pow(b_x, 2) + pow(b_y, 2)) > OF_MARGIN) neighbor_diff++; } } if((double)neighbor_diff/(double)neighbor_count > DISC_MARGIN) { if(CELL_COLS/(col + 1) >= 2) { left_disc++; } else { right_disc++; } if(CELL_ROWS/(row + 1) >= 2) { up_disc++; } else { down_disc++; } of_cells[row][col].disc = true; } } } // move away from high image section discontinuity l_fwd = FWD; double turn_prev = l_turn; double alt_prev = l_alt; l_turn = 0; l_alt = 0; if(left_disc > right_disc) { ctrl_text += " RIGHT"; if(turn_prev > 0) l_turn = (1 + (left_of - right_of)/(left_of + right_of))*turn_prev; else l_turn = TURN; } else if(right_disc > left_disc) { ctrl_text += " LEFT"; if(turn_prev < 0) l_turn = (1 + (right_of - left_of)/(right_of + left_of))*turn_prev; else l_turn = -1.0*TURN; } if(up_disc > down_disc) { ctrl_text += " DOWN"; if(alt_prev < 0) l_alt = (1 + (up_of - down_of)/(up_of + down_of))*alt_prev; else l_alt = -1.0*ALT; } else if(down_disc > up_disc) { ctrl_text += " UP"; if(alt_prev > 0) l_alt = (1 + (down_of - up_of)/(down_of + up_of))*alt_prev; else l_alt = ALT; } if((double)(left_disc + right_disc + up_disc + down_disc)/(double)(CELL_ROWS*CELL_COLS) > MAX_DISC) { ctrl_text = "STOP MOVING"; l_fwd = 0; l_turn = 0; l_alt = 0; } if(ctrl_text.compare("GO") == 0) ctrl_text += " STRAIGHT"; prevlefttracked.assign(LKleftpts.begin(), LKleftpts.end()); } /* Shi-Tomasi */ vector<Point2f> left_corners; if(frame_num > 0) { vector<Point2f> tracked_left_corners; for(size_t i = 0; i < prevlefttracked.size(); i++) { if(prevlefttracked[i].x >= 0 && prevlefttracked[i].x <= WIDTH && prevlefttracked[i].y >= 0 && prevlefttracked[i].y <= HEIGHT) tracked_left_corners.push_back(prevlefttracked[i]); } if(tracked_left_corners.size() >= CORNER_THRESHOLD) { left_corners.assign(tracked_left_corners.begin(), tracked_left_corners.end()); // retain previously tracked keypoints l_kpt_regen = false; } else { goodFeaturesToTrack(g_greyscale_image_left, left_corners, MAX_CORNERS, QUALITY_LEVEL, MIN_DISTANCE); // generate new keypoints l_kpt_regen = true; } } // allow for color overlaid on greyscale image Mat left_rgb(g_greyscale_image_left.size(), CV_8UC3); cvtColor(g_greyscale_image_left, left_rgb, CV_GRAY2RGB); // keypoints display for(size_t i = 0; i < left_corners.size(); i++) { circle(left_rgb, left_corners[i], 4, Scalar(255, 0, 0), -1); } g_greyscale_image_left.copyTo(prevleftimg); prevleftpts.assign(left_corners.begin(), left_corners.end()); // cells display for(int row = 1; row < CELL_ROWS; row++) { line(left_rgb, Point2f(0, row*HEIGHT/CELL_ROWS), Point2f(WIDTH, row*HEIGHT/CELL_ROWS), Scalar(0, 0, 255)); } for(int col = 1; col < CELL_COLS; col++) { line(left_rgb, Point2f(col*WIDTH/CELL_COLS, 0), Point2f(col*WIDTH/CELL_COLS, HEIGHT), Scalar(0, 0, 255)); } for(int row = 0; row < CELL_ROWS; row++) { for(int col = 0; col < CELL_COLS; col++) { if(of_cells[row][col].disc) { line(left_rgb, Point2f(col*WIDTH/CELL_COLS, row*HEIGHT/CELL_ROWS), Point2f((col + 1)*WIDTH/CELL_COLS, (row + 1)*HEIGHT/CELL_ROWS), Scalar(0, 0, 255)); line(left_rgb, Point2f((col + 1)*WIDTH/CELL_COLS, row*HEIGHT/CELL_ROWS), Point2f(col*WIDTH/CELL_COLS, (row + 1)*HEIGHT/CELL_ROWS), Scalar(0, 0, 255)); } } } // control display putText(left_rgb, ctrl_text, Point2f(10, HEIGHT - 10), FONT_HERSHEY_SIMPLEX, 1, Scalar(0, 255, 0), 3, 3); imshow("left", left_rgb); moveWindow("left", 0, 0); } if ( data.m_greyscale_image_right[d] ) { memcpy( g_greyscale_image_right.data, data.m_greyscale_image_right[d], IMAGE_SIZE ); // control text string ctrl_text = ""; /* Lucas-Kanade */ if(prevrightpts.size() < MIN_CORNERS) { // control decision ctrl_text = "STOP MOVING"; r_fwd = 0; r_turn = 0; r_alt = 0; } else if(frame_num > 0) { vector<Point2f> LKrightpts; vector<uchar> status; vector<float> err; vector<Mat> prevrightpyr; buildOpticalFlowPyramid(prevrightimg, prevrightpyr, Size(21, 21), 3); vector<Mat> currrightpyr; buildOpticalFlowPyramid(g_greyscale_image_right, currrightpyr, Size(21, 21), 3); calcOpticalFlowPyrLK(prevrightpyr, currrightpyr, prevrightpts, LKrightpts, status, err, Size(21, 21), 3, TermCriteria(TermCriteria::COUNT+TermCriteria::EPS, 30, 0.01), OPTFLOW_LK_GET_MIN_EIGENVALS); // control decision ctrl_text = "GO"; double left_of_x = 0, left_of_y = 0, right_of_x = 0, right_of_y = 0, up_of_x = 0, up_of_y = 0, down_of_x = 0, down_of_y = 0; int left_count = 0, right_count = 0, up_count = 0, down_count = 0; // populating cell data for(int row = 0; row < CELL_ROWS; row++) { for(int col = 0; col < CELL_COLS; col++) { of_cells[row][col].of_x = 0; of_cells[row][col].of_y = 0; of_cells[row][col].count = 0; of_cells[row][col].disc = false; } } for(size_t i = 0; i < LKrightpts.size(); i++) { if(LKrightpts[i].x >= 0 && LKrightpts[i].y >= 0 && LKrightpts[i].x <= WIDTH && LKrightpts[i].y <= HEIGHT) { // calculating corresponding cell and optical flow int row = LKrightpts[i].y*CELL_ROWS/HEIGHT; int col = LKrightpts[i].x*CELL_COLS/WIDTH; double of_x = LKrightpts[i].x - prevrightpts[i].x; double of_y = LKrightpts[i].y - prevrightpts[i].y; // updating cell of_cells[row][col].of_x += of_x; of_cells[row][col].of_y += of_y; of_cells[row][col].count++; // saving optical flow values for control feedback if(LKrightpts[i].x < (double)WIDTH/2.0) { left_of_x += LKrightpts[i].x - prevrightpts[i].x; left_of_y += LKrightpts[i].y - prevrightpts[i].y; left_count++; } else { right_of_x += LKrightpts[i].x - prevrightpts[i].x; right_of_y += LKrightpts[i].y - prevrightpts[i].y; right_count++; } if(LKrightpts[i].y < (double)HEIGHT/2.0) { up_of_x += LKrightpts[i].x - prevrightpts[i].x; up_of_y += LKrightpts[i].y - prevrightpts[i].y; up_count++; } else { down_of_x += LKrightpts[i].x - prevrightpts[i].x; down_of_y += LKrightpts[i].y - prevrightpts[i].y; down_count++; } } } left_of_x /= (double)left_count; left_of_y /= (double)left_count; double left_of = pow(pow(left_of_x, 2) + pow(left_of_y, 2), 0.5); right_of_x /= (double)right_count; right_of_y /= (double)right_count; double right_of = pow(pow(right_of_x, 2) + pow(right_of_y, 2), 0.5); up_of_x /= (double)up_count; up_of_y /= (double)up_count; double up_of = pow(pow(up_of_x, 2) + pow(up_of_y, 2), 0.5); down_of_x /= (double)down_count; down_of_y /= (double)down_count; double down_of = pow(pow(down_of_x, 2) + pow(down_of_y, 2), 0.5); // finding discontinuous cells int left_disc = 0, right_disc = 0, up_disc = 0, down_disc = 0; for(int row = 0; row < CELL_ROWS; row++) { for(int col = 0; col < CELL_COLS; col++) { int neighbor_count = 0; int neighbor_diff = 0; // iterating over neighbor cells for(int x_dist = -1*MAX_NEIGH_DIST; x_dist <= MAX_NEIGH_DIST; x_dist++) { for(int y_dist = -1*MAX_NEIGH_DIST; y_dist <= MAX_NEIGH_DIST; y_dist++) { if(x_dist == 0 && y_dist == 0) continue; // do not count self as neighbor if(row - y_dist < 0 || row + y_dist > CELL_ROWS - 1 || col - x_dist < 0 || col + x_dist > CELL_COLS - 1) continue; // do not exceed boundaries // assign shorter vector as a and longer vector as b double a_x; double a_y; double b_x; double b_y; if(pow((pow(of_cells[row][col].of_x, 2) + pow(of_cells[row][col].of_y, 2))/pow((double)of_cells[row][col].count, 2), 0.5) < pow((pow(of_cells[row + y_dist][col + x_dist].of_x, 2) + pow(of_cells[row + y_dist][col + x_dist].of_y, 2))/pow((double)of_cells[row + y_dist][col + x_dist].count, 2), 0.5)) { a_x = of_cells[row][col].of_x/(double)of_cells[row][col].count; a_y = of_cells[row][col].of_y/(double)of_cells[row][col].count; b_x = of_cells[row + y_dist][col + x_dist].of_x/(double)of_cells[row + y_dist][col + x_dist].count; b_y = of_cells[row + y_dist][col + x_dist].of_y/(double)of_cells[row + y_dist][col + x_dist].count; } else { b_x = of_cells[row][col].of_x/(double)of_cells[row][col].count; b_y = of_cells[row][col].of_y/(double)of_cells[row][col].count; a_x = of_cells[row + y_dist][col + x_dist].of_x/(double)of_cells[row + y_dist][col + x_dist].count; a_y = of_cells[row + y_dist][col + x_dist].of_y/(double)of_cells[row + y_dist][col + x_dist].count; } if(1.0 - (a_x*b_x + a_y*b_y)/(pow(b_x, 2) + pow(b_y, 2)) > OF_MARGIN) neighbor_diff++; } } if((double)neighbor_diff/(double)neighbor_count > DISC_MARGIN) { if(CELL_COLS/(col + 1) >= 2) { left_disc++; } else { right_disc++; } if(CELL_ROWS/(row + 1) >= 2) { up_disc++; } else { down_disc++; } of_cells[row][col].disc = true; } } } // move away from high image section discontinuity r_fwd = FWD; double turn_prev = r_turn; double alt_prev = r_alt; r_turn = 0; r_alt = 0; if(left_disc > right_disc) { ctrl_text += " RIGHT"; if(turn_prev > 0) r_turn = (1 + (left_of - right_of)/(left_of + right_of))*turn_prev; else r_turn = TURN; } else if(right_disc > left_disc) { ctrl_text += " LEFT"; if(turn_prev < 0) r_turn = (1 + (right_of - left_of)/(right_of + left_of))*turn_prev; else r_turn = -1.0*TURN; } if(up_disc > down_disc) { ctrl_text += " DOWN"; if(alt_prev < 0) r_alt = (1 + (up_of - down_of)/(up_of + down_of))*alt_prev; else r_alt = -1.0*ALT; } else if(down_disc > up_disc) { ctrl_text += " UP"; if(alt_prev > 0) r_alt = (1 + (down_of - up_of)/(down_of + up_of))*alt_prev; else r_alt = ALT; } if((double)(left_disc + right_disc + up_disc + down_disc)/(double)(CELL_ROWS*CELL_COLS) > MAX_DISC) { ctrl_text = "STOP MOVING"; r_fwd = 0; r_turn = 0; r_alt = 0; } if(ctrl_text.compare("GO") == 0) ctrl_text += " STRAIGHT"; prevrighttracked.assign(LKrightpts.begin(), LKrightpts.end()); } /* Shi-Tomasi */ vector<Point2f> right_corners; if(frame_num > 0) { vector<Point2f> tracked_right_corners; for(size_t i = 0; i < prevrighttracked.size(); i++) { if(prevrighttracked[i].x >= 0 && prevrighttracked[i].x <= WIDTH && prevrighttracked[i].y >= 0 && prevrighttracked[i].y <= HEIGHT) tracked_right_corners.push_back(prevrighttracked[i]); } if(tracked_right_corners.size() >= CORNER_THRESHOLD) { right_corners.assign(tracked_right_corners.begin(), tracked_right_corners.end()); // retain previously tracked keypoints r_kpt_regen = false; } else { goodFeaturesToTrack(g_greyscale_image_right, right_corners, MAX_CORNERS, QUALITY_LEVEL, MIN_DISTANCE); // generate new keypoints r_kpt_regen = true; } } // allow for color overlaid on greyscale image Mat right_rgb(g_greyscale_image_right.size(), CV_8UC3); cvtColor(g_greyscale_image_right, right_rgb, CV_GRAY2RGB); // keypoints display for(size_t i = 0; i < right_corners.size(); i++) { circle(right_rgb, right_corners[i], 4, Scalar(255, 0, 0), -1); } g_greyscale_image_right.copyTo(prevrightimg); prevrightpts.assign(right_corners.begin(), right_corners.end()); // cells display for(int row = 1; row < CELL_ROWS; row++) { line(right_rgb, Point2f(0, row*HEIGHT/CELL_ROWS), Point2f(WIDTH, row*HEIGHT/CELL_ROWS), Scalar(0, 0, 255)); } for(int col = 1; col < CELL_COLS; col++) { line(right_rgb, Point2f(col*WIDTH/CELL_COLS, 0), Point2f(col*WIDTH/CELL_COLS, HEIGHT), Scalar(0, 0, 255)); } for(int row = 0; row < CELL_ROWS; row++) { for(int col = 0; col < CELL_COLS; col++) { if(of_cells[row][col].disc) { line(right_rgb, Point2f(col*WIDTH/CELL_COLS, row*HEIGHT/CELL_ROWS), Point2f((col + 1)*WIDTH/CELL_COLS, (row + 1)*HEIGHT/CELL_ROWS), Scalar(0, 0, 255)); line(right_rgb, Point2f((col + 1)*WIDTH/CELL_COLS, row*HEIGHT/CELL_ROWS), Point2f(col*WIDTH/CELL_COLS, (row + 1)*HEIGHT/CELL_ROWS), Scalar(0, 0, 255)); } } } // control display putText(right_rgb, ctrl_text, Point2f(10, HEIGHT - 10), FONT_HERSHEY_SIMPLEX, 1, Scalar(0, 255, 0), 3, 3); imshow("right", right_rgb); moveWindow("right", 500, 0); frame_num++; } } waitKey(1); // maneuver if(ctrl_strat != NONE) { double x = (l_fwd + r_fwd)/2.0; double y = 0; double z = (l_alt + r_alt)/2.0; #ifdef NO_ALT_CTRL z = 0; #endif double yaw = (l_turn + r_turn)/2.0; maneuver(CMD_FLAG, x, y, z, yaw); } } g_lock.leave(); g_event.set_DJI_event(); return 0; } // opening and closing api void nav_open_close(uint8_t open_close, char *task) { uint8_t send_data = open_close; while(true) { if(cmd_complete) { printf("\n%s\n", task); cmd_complete = false; App_Send_Data(1, 1, MY_CTRL_CMD_SET, API_OPEN_SERIAL, (uint8_t *)&send_data, sizeof(send_data), sdk_ack_nav_open_close_callback, 1000, 0); // send command break; } } } // takeoff and landing void take_off_land(uint8_t send_data, char *task) { while(true) { if(cmd_complete) { printf("\n%s\n", task); cmd_complete = false; // reset cmd_complete App_Complex_Send_Cmd(send_data, cmd_callback_test_fun); // send command break; } } } // run mission void run() { /* Takeoff */ test_activation(); // activate nav_open_close(1, (char *)"Opening API Control..."); // open api take_off_land(TAKEOFF, (char *)"Taking off..."); // take off /* Maneuvering and avoiding obstacles */ usleep(15000000); // pause 15 seconds printf("\nBeginning Obstacle Avoidance...\n"); err_code = start_transfer(); // start guidance data collection RETURN_IF_ERR( err_code ); /* Landing */ getchar(); // press key to begin autonomous mode printf("\nEnding Obstacle Avoidance...\n"); err_code = stop_transfer(); // stop guidance RETURN_IF_ERR( err_code ); monitor(); while(recv_sdk_std_msgs.pos.height > 0) // check if drone reached ground level yet { take_off_land(LAND, (char *)"Landing..."); // land monitor(); } nav_open_close(0, (char *)"Closing API Control..."); // close api } /* * main_function */ int main (int argc, char** argv) { /* Onboard */ printf("Test SDK Protocol demo\n"); serial_name = std::string("/dev/ttyUSB0"); baud_rate = 230400; app_id = 1010572; app_api_level = 2; app_version = 1; app_bundle_id = std::string("12345678901234567890123456789012"); enc_key = std::string("ca5aed46d675076dd100ec73a8d3b8d3dbeea66392c77af62ac65cf9b5be8520"); activation_msg.app_id = (uint32_t)app_id; activation_msg.app_api_level = (uint32_t)app_api_level; activation_msg.app_ver = (uint32_t)app_version; memcpy(activation_msg.app_bundle_id, app_bundle_id.c_str(), 32); key = (char*)enc_key.c_str(); printf("[INIT] SET serial_port : %s \n", serial_name.c_str()); printf("[INIT] SET baud_rate : %d \n", baud_rate); printf("[INIT] ACTIVATION INFO : \n"); printf("[INIT] app_id %d \n", activation_msg.app_id); printf("[INIT] app_api_level %d \n", activation_msg.app_api_level); printf("[INIT] app_version %d \n", activation_msg.app_ver); printf("[INIT] app_bundle_id %s \n", activation_msg.app_bundle_id); printf("[INIT] enc_key %s \n", key); /* open serial port */ Pro_Hw_Setup((char *)serial_name.c_str(),baud_rate); Pro_Link_Setup(); App_Recv_Set_Hook(App_Recv_Req_Data); App_Set_Table(set_handler_tab, cmd_handler_tab); CmdStartThread(); Pro_Config_Comm_Encrypt_Key(key); /* Guidance */ reset_config(); err_code = init_transfer(); RETURN_IF_ERR( err_code ); err_code = select_greyscale_image( VBUS, true ); RETURN_IF_ERR( err_code ); err_code = select_greyscale_image( VBUS, false ); RETURN_IF_ERR( err_code ); err_code = set_sdk_event_handler( guidance_callback ); // set guidance callback RETURN_IF_ERR( err_code ); /* Mission */ printf("\nRunning Mission...\n"); run(); //make sure the ack packet from GUIDANCE is received sleep( 1000000 ); err_code = release_transfer(); RETURN_IF_ERR( err_code ); return 0; }
d2aa7854b75cbb777952deea47ef7a3de19847b4
d27b8032c7f5149279046917c72191db0a70bc07
/2018_06_12_02_State/console/ShopState.cpp
6111b0c5fd6e120dc8d3663f1dfecd6c17f4e1c0
[]
no_license
jungwoo9454/Console-Shooting-Game
d5fcfed4315e8b661d92968b5cd2f128a8bab935
0ad838f8d51834428464e8920e75f66a53539325
refs/heads/master
2023-05-12T18:29:41.686676
2020-07-15T03:16:02
2020-07-15T03:16:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,235
cpp
ShopState.cpp
#include "Include.h" CShopState::CShopState() { for (int i = 0; i < E_SHOP_MAX; i++) { m_bUse[i] = false; m_wFcolor_[i] = GREEN; } m_nCoin = 1000000; m_nX = 9; m_nY = 6; m_wBColor = BLACK; m_nCoinMul = 1; m_dwLimitTime = 80; m_dwStandTime = GetTickCount(); } CShopState::~CShopState() { } void CShopState::Clipping() { if (m_nY < 6) { m_nY = 6; } if (m_nY > 12) { m_nY = 12; } } void CShopState::Draw() { DrawStrEx3(6, 2, "COIN : ", YELLOW, BLACK); DrawStrEx3(14, 2, m_cCoin, YELLOW, BLACK); DrawStrEx3(m_nX, m_nY, ">", YELLOW, BLACK); DrawStrEx3(10, 6, "1.SMG Hero Unlock(1)/ 50000 G", m_wFcolor_[E_SHOP_1], m_wBColor); DrawStrEx3(10, 8, "2.SG Hero Unlock(1)/ 50000 G", m_wFcolor_[E_SHOP_2], m_wBColor); DrawStrEx3(10, 10, "3.TERRET Hero Unlock(1)/ 50000 G", m_wFcolor_[E_SHOP_3], m_wBColor); DrawStrEx3(10, 12, "4.COIN * 2(1) / 80000 G", m_wFcolor_[E_SHOP_4], m_wBColor); } void CShopState::Exit() { } void CShopState::Start() { } void CShopState::Update() { sprintf(m_cCoin, "%d", m_nCoin); if (IsKey(VK_TAB)) { if (m_nY == 6 && m_bUse[E_SHOP_1] == false) { if (m_nCoin >= 50000) { m_nCoin -= 50000; m_bUse[E_SHOP_1] = true; m_wFcolor_[E_SHOP_1] = RED; g_CMng.m_CHeroPickState.m_bUse[E_HERO_2] = true; } } //if (m_nY == 8 && m_bUse[E_SHOP_2] == false) //{ // if (m_nCoin >= 50000) // { // m_nCoin -= 50000; // m_bUse[E_SHOP_2] = true; // m_wFcolor_[E_SHOP_2] = RED; // g_CMng.m_CHeroPickState.m_bUse[E_HERO_3] = true; // } //} if (m_nY == 10 && m_bUse[E_SHOP_3] == false) { if (m_nCoin >= 50000) { m_nCoin -= 50000; m_bUse[E_SHOP_3] = true; m_wFcolor_[E_SHOP_3] = RED; g_CMng.m_CHeroPickState.m_bUse[E_HERO_4] = true; } } if (m_nY == 12 && m_bUse[E_SHOP_4] == false) { if (m_nCoin >= 80000) { m_nCoin -= 80000; m_bUse[E_SHOP_4] = true; m_wFcolor_[E_SHOP_4] = RED; m_nCoinMul = 2; } } } if (IsKey(VK_UP)) { if (m_dwLimitTime + m_dwStandTime <= GetTickCount()) { m_dwStandTime = GetTickCount(); m_nY -= 2; } } if (IsKey(VK_DOWN)) { if (m_dwLimitTime + m_dwStandTime <= GetTickCount()) { m_dwStandTime = GetTickCount(); m_nY += 2; } } Clipping(); }
b9547f5fb992785c949b31a6712cf6fd7a96b80b
16fb8d6b3cfa3535f8bf4989b62ace0a0a9ae980
/HBaseClient/cpp/src/Hbase_client.h
112ca8340deb6b4092dc4409e33736565148f614
[]
no_license
shineit/iFlyQA
9dc458abaf5f008e610300590357474212815273
e94a469afba6b1ac4df156e47ccec026d559e769
refs/heads/master
2018-03-23T22:20:20.773734
2015-04-20T06:07:28
2015-04-20T06:07:28
86,664,882
0
0
null
2017-03-30T06:01:58
2017-03-30T06:01:58
null
UTF-8
C++
false
false
1,751
h
Hbase_client.h
/* * Copyright 2012 iflytek.com inc. * File: Hbase_client.h * Author: qfdai2@iflytek.com * Create Date: 2012-12-21 * Modify: * Desc: */ #ifndef HBASECLIENT_H__ #define HBASECLIENT_H__ #include <iostream> #include <string> #include <vector> #include <thrift/protocol/TBinaryProtocol.h> #include <thrift/transport/TSocket.h> #include <thrift/transport/TTransportUtils.h> #include <thrift/transport/TBufferTransports.h> #include <boost/shared_ptr.hpp> #include "thrift/cpp/src/Hbase.h" using namespace std; namespace hbase { class HbaseClient { private: std::string hbaseServiceHost_; int hbaseServicePort_; int conn_timeOut_; int send_timeOut_; int recv_timeOut_; boost::shared_ptr<apache::thrift::transport::TSocket> socket_; boost::shared_ptr<apache::thrift::transport::TTransport> transport_; boost::shared_ptr<apache::thrift::protocol::TProtocol> protocol_; boost::shared_ptr<apache::hadoop::hbase::thrift::HbaseClient> client_; public: HbaseClient(const std::string & host, int port, int conn_timeout, int send_timeout, int recv_timeout); virtual ~HbaseClient(); // connect to the hbase bool connect(); // save void hmutateRow(const std::string &tableName, const std::string &rowKey, const std::vector<apache::hadoop::hbase::thrift::Mutation> &mutations) { client_->mutateRow(tableName, rowKey, mutations); } // get void hgetRowWithColumns( std::vector<apache::hadoop::hbase::thrift::TRowResult> & rowResult, const std::string &tableName, const std::string &rowKey, const std::vector<std::string> & columnNames) { client_->getRowWithColumns(rowResult, tableName, rowKey, columnNames); } private: // disconnect from the hbase bool disconnect(); }; } // hbase #endif /* HBASECLIENT_H_ */
cec3421d50711704358ffe8f987d74453ed8ddc0
08f54099e00c399b3a3eda30e158073f0c5de447
/TellerEvent.h
77bcc7a7456438b9738d63835aa14762c239b6ab
[]
no_license
hsmarch/CS2303_qSim
e5c3308d69c0e1aa78ef3f24921f6fbd1e5f4d3e
6535a72fc4aed1f9110ac8b8a38c0dff2aec5b1b
refs/heads/master
2021-03-19T20:38:53.042911
2018-02-15T03:37:09
2018-02-15T03:37:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
264
h
TellerEvent.h
// // Created by Harrison March on 2/14/2018. // #ifndef QSIM_HSMARCH_TELLEREVENT_H #define QSIM_HSMARCH_TELLEREVENT_H #include "Event.h" class TellerEvent : public Event { public: TellerEvent(double serviceTime); }; #endif //QSIM_HSMARCH_TELLEREVENT_H
de82d9e6dd853331fbdf58080b2c8e9aff4e4809
c09ffb7701d38365123beea17150a056d7e6090c
/HDU/HDU5976 Detachment.cpp
16d287473df3c802f6fd1e9abbbd3c35021e0fe4
[]
no_license
Reno-Jarrison/Code-Repository-for-Problem-Solving
f100aa1190c3a7d23955d4756a9afa8353c8edbe
b2715b696cdb4b0416e334a5bd231beea66cfca0
refs/heads/main
2023-04-12T08:08:16.151731
2021-05-11T01:29:07
2021-05-11T01:29:07
315,653,788
0
0
null
null
null
null
UTF-8
C++
false
false
788
cpp
HDU5976 Detachment.cpp
#include<cstdio> #include<cmath> #define ll long long using namespace std; const int maxn=1e5+5; const ll mod=1e9+7; ll fac[maxn]={1},inv[maxn]; ll qpow(ll a,ll b) { ll ans=1; while(b) { if(b&1) ans=ans*a%mod; a=a*a%mod,b>>=1; } return ans; } int main() { for(int i=1;i<maxn;i++) fac[i]=fac[i-1]*i%mod,inv[i]=qpow(i,mod-2); int t; ll x,tmp; scanf("%d",&t); while(t--) { scanf("%lld",&x); if(x<=4) { printf("%lld\n",x); continue; } tmp=sqrt(x*2); while(tmp*(tmp+1)/2-1>x) tmp--; ll r=x-tmp*(tmp+1)/2+1,ans; if(!r) ans=fac[tmp]; else if(r==tmp) ans=fac[tmp+2]*inv[2]%mod*inv[tmp+1]%mod; else ans=fac[tmp+1]*inv[tmp+1-r]%mod; printf("%lld\n",ans); } }
5d74cb20d3eb5c5662afd7122318ec067c8e5f42
e8e8ed1ddbc842516d5d74858fb345c5b5f88f5d
/yhmvc/Builders/Builder.cpp
b8db118c47f697849370248a34abb5a3e1ff29db
[]
no_license
trarck/yhmvc
9a2d788b76647e5fc4d97b61123a26b6adf8c856
c2b5eee4c668e28918c19cb7332eecd0d2ff2ae6
refs/heads/master
2021-01-02T08:20:44.422590
2014-02-20T08:53:33
2014-02-20T08:53:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
915
cpp
Builder.cpp
#include "Builder.h" NS_CC_YHMVC_BEGIN Builder::Builder() { } Builder::~Builder() { } bool Builder::init() { return true; } CCNode* Builder::buildFromFile(const std::string& filename) { return NULL; } CCNode* Builder::buildFromFile(const std::string& filename,CCObject* parameter) { return NULL; } CCNode* Builder::buildFromData(CCDictionary* data) { CCAssert(false, "CCBBuilder::buildFromData not support"); return NULL; } CCNode* Builder::buildFromData(CCDictionary* data,CCObject* parameter) { CCAssert(false, "CCBBuilder::buildFromData not support"); return NULL; } CCNode* Builder::buildFromJson(void* jsonData) { CCAssert(false, "CCBBuilder::buildFromJson not support"); return NULL; } CCNode* Builder::buildFromJson(void* jsonData,CCObject* parameter) { CCAssert(false, "CCBBuilder::buildFromJson not support"); return NULL; } NS_CC_YHMVC_END
c8d2870b5e7458a9fff0fdacd8d0fa7ed414bf57
e9c4f33f3f485d7bb0389700b0c63d92206b1d35
/Classes/Coin.h
3510706e6ecac6f99152a96b7a97e9b24174a3b5
[ "MIT" ]
permissive
wjingzhe/A_ParkourJingz
3d782c2a10df037734fc5185dfe886fe54dce9e2
62b56d804192918f44ef1fb262b83ca34db62a40
refs/heads/master
2021-01-18T04:27:15.259750
2019-04-17T09:32:07
2019-04-17T09:32:07
39,508,845
2
6
null
null
null
null
GB18030
C++
false
false
939
h
Coin.h
#pragma once #include "cocos2d.h" #include "MoveAbleElem.h" class Coin :public MoveAbleElem { #define DEFAULT_MODEL_RES_PATH "model/coin.c3b" protected: Coin(); public: virtual ~Coin(); bool init(const std::string &pathName = DEFAULT_MODEL_RES_PATH); static Coin* createWithAutoRealse() { Coin *pRet = new(std::nothrow) Coin(); #ifdef STD_VECTOR_ELEM if (pRet) #else if (pRet) #endif { return pRet; } else { delete pRet; pRet = NULL; return NULL; } } static Coin* create() { Coin *pRet = new(std::nothrow) Coin(); #ifdef STD_VECTOR_ELEM if (pRet) #else if (pRet && pRet->init()) #endif { pRet->autorelease(); return pRet; } else { delete pRet; pRet = NULL; return NULL; } } virtual void initSprite() { init(); } virtual void update(float dt) override; //自己被击效果 virtual void beHitted(MoveAbleElem * pMoveAbleElem); private: int _iGold; };
b217f304e3ba73d3b29a6464b658d3631e8f90d7
1b5c69d3d3c8c5dc4de9735b93a4d91ca7642a42
/other/alds/alds1_2_C.cpp
cdef6095d44e4882fb338cb1b73379fba1308fcf
[]
no_license
ritsuxis/kyoupro
19059ce166d2c35f643ce52aeb13663c1acece06
ce0a4aa0c18e19e038f29d1db586258970b35b2b
refs/heads/master
2022-12-23T08:25:51.282513
2020-10-02T12:43:16
2020-10-02T12:43:16
232,855,372
0
0
null
null
null
null
UTF-8
C++
false
false
1,324
cpp
alds1_2_C.cpp
#include <bits/stdc++.h> #include <algorithm> using namespace std; struct Card {char suit, value;}; void print(struct Card A[], int N){ for (int i = 0; i < N; i++){ if (i) cout << " "; cout << A[i].suit << A[i].value; } cout << endl; } void BubbleSort(struct Card A[], int N){ for (int i = 0; i < N; i++){ for (int j = N - 1; j >= i + 1; j--){ if (A[j].value < A[j - 1].value){ swap(A[j], A[j - 1]); } } } } void SelectionSort(struct Card A[], int N) { for (int i = 0; i < N; i++){ int minj = i; for (int j = i; j < N; j++){ if (A[j].value < A[minj].value) minj = j; } swap(A[i], A[minj]); } } bool isStable(struct Card A[], struct Card B[], int N){ for (int i = 0; i < N; i++){ if (A[i].suit != B[i].suit) return false; } return true; } int main(void){ int N; cin >> N; Card C1[100], C2[100]; for(int i = 0; i < N; i++) { cin >> C1[i].suit >> C1[i].value; C2[i] = C1[i]; } BubbleSort(C1, N); SelectionSort(C2, N); print(C1, N); cout << "Stable" << endl; print(C2, N); if ( isStable(C1, C2, N)) cout << "Stable"; else cout << "Not stable"; cout << endl; return 0; }
71194c80605bf53edd60ee6f23104810fbcb238a
90ace2db2cc15bc0439c2341e9445e6a65420757
/CompetitiveProgramming/RBLtree.cpp
69a04813fd760c222fe4b5ce763e27a237b2685f
[]
no_license
naukarshah/DSandAlgo
10ed6845cf160299c610b6aa15c2ba5861d8b3d7
6e516980ddba4bfbd9b02156b62f4ee6d63435f0
refs/heads/master
2022-04-12T01:50:10.973198
2020-04-11T17:40:30
2020-04-11T17:40:30
254,872,181
0
0
null
null
null
null
UTF-8
C++
false
false
3,625
cpp
RBLtree.cpp
// // RBLtree.cpp // CompetitiveProgramming // // Created by Ashutosh Pandey on 11/04/20. // Copyright © 2020 Ashutosh Pandey. All rights reserved. // #include "RBLtree.hpp" //print the keys of Red Black Tree void RBT::InorderTraversal(RBTnode* node){ if (node == nullptr) { return; } InorderTraversal(node->left); cout << node->key << "\n"; InorderTraversal(node->right); } void RBT::LeftRotate(RBTnode * node){ RBTnode * y = node->right; //set y node->right = y->left; //turn y's left subtree into x's rigth subtree if (y->left != nullptr) { y->left->parent = nullptr; } y->parent = node->parent; if (node->parent == nullptr) { root = y; } else if(node == node->parent->left){ node->parent->left = y; } else node->parent->right = y; y->left = node; node->parent = y; } void RBT::RightRotate(RBTnode * node){ RBTnode * y = node->left; //set y node->left = y->right; //turn y's right subtree into x's left subtree if (y->right != nullptr) { y->right->parent = nullptr; } y->parent = node->parent; if (node->parent == nullptr) { root = y; } else if(node == node->parent->right){ node->parent->right = y; } else node->parent->left = y; y->right = node; node->parent = y; } void RBT::Insertion(RBTnode * node){ RBTnode * y = nullptr; //this pointer keeps track of the appropriate place of insertion node parent RBTnode* x = root; while (x != nullptr) { y = x; if (node->key < x->key) x = x->left; else x = x->right; } node->parent = y; if (y== nullptr) { root = node; } else if(node->key < y->key){ y->left = node; } else y->right = node; //set the inserted node colour to RED node->left = nullptr; node->right = nullptr; node->color = RED; //passing parent node and it's child to fix RBT property RBTInsertFixup(node); } void RBT::RBTInsertFixup(RBTnode* node){ //what about the root case simply return or single level of tree no violation of nay property root is BLACK and children is RED at first level if (node->parent == nullptr || node->parent->parent == nullptr) { return; } while (node->parent->color == RED) { RBTnode* y = nullptr; if (node->parent== node->parent->parent->left) { y =node->parent->parent->right; if (y->color == RED) { node->parent->color = BLACK; y->color = BLACK; node->parent->parent->color = RED; node = node->parent->parent; } else if (node == node->parent->right){ node = node->parent; LeftRotate(node); } node->parent->color = BLACK; node->parent->parent->color = RED; RightRotate(node->parent->parent); } else{ y = node->parent->parent->left; if (y->color == RED) { node->parent->color = BLACK; y->color = BLACK; node->parent->parent->color = RED; node = node->parent->parent; } else if (node == node->parent->left){ node = node->parent; RightRotate(node); } node->parent->color = BLACK; node->parent->parent->color = RED; LeftRotate(node->parent->parent); } } root->color = BLACK; }
c995d00401ed78673d21a71d541bd6627faf3ba1
032ceb96c84d2b2a88c15b5e1b8e90fc492776c7
/Engine/Callback.hpp
4241b6ad8716187cf6113e009309f6ddd6fb6702
[]
no_license
antiqe/RType
ae8859cfe589cfcfbd5ba8c0fc82480bfcd759d5
6165ad1dd11c179c82946d8be07c862db82483b4
refs/heads/master
2016-09-06T09:31:13.177842
2013-12-04T09:59:40
2013-12-04T09:59:40
14,722,487
1
2
null
null
null
null
UTF-8
C++
false
false
331
hpp
Callback.hpp
#ifndef _CALLBACK_H_ # define _CALLBACK_H_ namespace Engine { class Widget; class Event; namespace Callback { typedef void (*EventFunction)(Widget*, Event*); void quit(Widget*, Event*); void followMouse(Engine::Widget*, Engine::Event*); typedef void* (*ThreadFunction)(void*); void* run(void* param); } } #endif
ea11f3b4b3da405bc575d3c3ec9218b9f2de6ebc
4608185b04438ed82efdaba51b077cfd67cb66bf
/mainwindow.cpp
a04fa593a5b6514e7dd04ec6459f2c00b2caba3b
[]
no_license
longwei/UI-prototype
6883951732dda2987568dffd36dd53ccacd169b0
5c3fa725cb7ae2e4b9c494174bb9e2606bba2c23
refs/heads/master
2021-01-19T18:29:49.536733
2013-09-13T06:39:00
2013-09-13T06:39:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,667
cpp
mainwindow.cpp
#include "mainwindow.h" #include "ui_mainwindow.h" #include <QDebug> class CustomTabStyle : public QProxyStyle { public: QSize sizeFromContents(ContentsType type, const QStyleOption *option, const QSize &size, const QWidget *widget) const { QSize s = QProxyStyle::sizeFromContents(type, option, size, widget); if (type == QStyle::CT_TabBarTab) s.transpose(); return s; } void drawControl(ControlElement element, const QStyleOption *option, QPainter *painter, const QWidget *widget) const { QProxyStyle::drawControl(element, option, painter, widget); if (element == CE_TabBarTabLabel) { if (const QStyleOptionTab *tab = qstyleoption_cast<const QStyleOptionTab *>(option)) { QStyleOptionTab opt(*tab); opt.shape = QTabBar::RoundedNorth; QProxyStyle::drawControl(element, &opt, painter, widget); return; } } QProxyStyle::drawControl(element, option, painter, widget); } }; bool MainWindow::leftbarHide = false; MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) { ui->setupUi(this); //populate and set the model QStringList packageList; packageList.append("Local Ads"); packageList.append("South American Ads"); packageList.append("German Ads"); QStandardItemModel* packageIconStringModel = new QStandardItemModel(this); QIcon iconAddCopy; QPixmap iconW(":/res/icons/white/add_copies.png"); QPixmap iconB(":/res/icons/black/add_copies.png"); iconAddCopy.addPixmap(iconW,QIcon::Normal); iconAddCopy.addPixmap(iconB,QIcon::Selected); QStandardItem* item1 = new QStandardItem(iconAddCopy, "Add Copies"); QIcon iconCampaigns; QPixmap iconCampaignsW(":/res/icons/white/campaigns.png"); QPixmap iconCampaignsB(":/res/icons/black/campaigns.png"); iconCampaigns.addPixmap(iconCampaignsW,QIcon::Normal); iconCampaigns.addPixmap(iconCampaignsB,QIcon::Selected); QStandardItem* item2 = new QStandardItem(iconCampaigns, "Campaigns"); QIcon iconCate; QPixmap iconCateW(":/res/icons/white/categories.png"); QPixmap iconCateB(":/res/icons/black/categories.png"); iconCate.addPixmap(iconCateW,QIcon::Normal); iconCate.addPixmap(iconCateB,QIcon::Selected); QStandardItem* item3 = new QStandardItem(iconCate, "Categories"); QIcon iconConfigure; QPixmap iconConfigureW(":/res/icons/white/config.png"); QPixmap iconConfigureB(":/res/icons/black/config.png"); iconConfigure.addPixmap(iconConfigureW,QIcon::Normal); iconConfigure.addPixmap(iconConfigureB,QIcon::Selected); QStandardItem* item4 = new QStandardItem(iconConfigure, "Configurations"); // QIcon iconCate; // QPixmap iconCateW(":/res/icons/white/categories.png"); // QPixmap iconCateB(":/res/icons/black/categories.png"); // iconCate.addPixmap(iconCateW,QIcon::Normal); // iconCate.addPixmap(iconCateB,QIcon::Selected); // QStandardItem* item3 = new QStandardItem(iconCate, "Categories"); packageIconStringModel->appendRow(item1); packageIconStringModel->appendRow(item2); packageIconStringModel->appendRow(item3); packageIconStringModel->appendRow(item4); tableModel = new TableModel(this); // ui->itemTableView->setAlternatingRowColors(true); ui->itemFrame->setStyleSheet(".QFrame#itemFrame{background-color: rgba(51,55,60,80);}"); ui->itemTableView->setStyleSheet("QHeaderView{background: rgba(109,94,95);color:white;} QTableCornerButton::section{background-color:rgba(51,55,60,0)}" \ " QTableView#itemTableView{color: white;background-color: rgba(51,55,60,0);selection-color:black; selection-background-color:white;}"); // ui->itemTableView->setStyleSheet("background-color: rgba(51,55,60,80);"); // ui->itemTableView->setStyleSheet(" QTableView#itemTableView{background-color: rgba(51,55,60,80);} QFrame#itemFrame{background-color:red}"); ui->itemEditWidget->setStyleSheet("QPushButton{background-color: rgba(30, 30, 30,200); color: white; font: 12pt}"); ui->menuBar->setStyleSheet("QMenuBar{background-color:rgb(35,58,144); color: white; padding-top:10px;} QMenu{font:12px}"); ui->tabWidget->setStyle(new CustomTabStyle); packageModel = new QStringListModel(packageList,this); ui->moduleList->setModel(packageIconStringModel); ui->packageListView->setModel(packageModel); ui->itemTableView->setModel(tableModel); ui->packageListWidget->hide(); ui->itemFrame->hide(); ui->itemEditWidget->hide(); ui->Wizard->hide(); //apply assets setStyleSheet("MainWindow {background-image:url(:/res/images/blurred_background.png)};"); QPixmap adminIcon(":/res/images/user_portrait.png"); ui->serverName->setPixmap(adminIcon); ui->serverName->setFixedSize(adminIcon.size()); //rightbar QPixmap networkHealth(":/res/images/network_health.png"); ui->networkHealth->setIcon(networkHealth); ui->networkHealth->setIconSize(networkHealth.size()); QPixmap networkBandwidth(":/res/images/network_bandwidth.png"); ui->networkBandwidth->setIcon(networkBandwidth); ui->networkBandwidth->setIconSize(networkBandwidth.size()); QPixmap networkUploaded(":/res/images/recently_uploaded.png"); ui->networkUploaded->setIcon(networkUploaded); ui->networkUploaded->setIconSize(networkUploaded.size()); QPixmap networkReported(":/res/images/recently_reported.png"); ui->networkReported->setIcon(networkReported); ui->networkReported->setIconSize(networkReported.size()); QPixmap networkAD(":/res/images/recently_created.png"); ui->networkCreatedAD->setIcon(networkAD); ui->networkCreatedAD->setIconSize(networkAD.size()); QPixmap networkStatus(":/res/images/network_status.png"); ui->networkStatus->setIcon(networkStatus); ui->networkStatus->setIconSize(networkStatus.size()); connect(ui->addItemButton, SIGNAL(clicked(bool)) , this, SLOT(test(bool))); connect(ui->networkHealth, SIGNAL(clicked()), this, SLOT(showNetworkHealthDialog())); connect(ui->moduleList, SIGNAL(clicked(QModelIndex)), this, SLOT(showPackageListWidget(QModelIndex)) ); connect(ui->itemTableView,SIGNAL(clicked(QModelIndex)),ui->itemEditWidget, SLOT(show())); connect(ui->itemEdit,SIGNAL(clicked()), ui->Wizard, SLOT(show())); connect(ui->packageListView,SIGNAL(clicked(QModelIndex)), this, SLOT(selectPackageList(QModelIndex))); connect(ui->WizardCancelButton,SIGNAL(clicked()), ui->Wizard, SLOT(hide())); connect(ui->resetviewButton,SIGNAL(clicked()), this, SLOT(resetview())); } MainWindow::~MainWindow() { delete ui; } void MainWindow::test(bool value){ qDebug() << "got value: " << value << endl; } void MainWindow::showNetworkHealthDialog(){ qDebug() << "got it" << endl; QDialog d; d.setWindowTitle("NewworkHealth"); d.exec(); } void MainWindow::showPackageListWidget(QModelIndex index){ this->ui->packageListWidget->show(); //TODO change model by the index; } void MainWindow::selectPackageList(QModelIndex index){ if(!leftbarHide){ ui->itemFrame->show(); //todo move module and package widget left; QPropertyAnimation* animationItemFrame = new QPropertyAnimation(ui->adminWidget, "geometry"); animationItemFrame->setDuration(duration); animationItemFrame->setEndValue(QRect(ui->adminWidget->geometry().x() - move_offset, ui->adminWidget->geometry().y(), ui->adminWidget->geometry().width(), ui->adminWidget->geometry().height())); QPropertyAnimation* animationPackageFrame = new QPropertyAnimation(ui->packageListWidget, "geometry"); animationPackageFrame->setDuration(duration); animationPackageFrame->setEndValue(QRect(ui->packageListWidget->geometry().x() - move_offset, ui->packageListWidget->geometry().y(), ui->packageListWidget->geometry().width(), ui->packageListWidget->geometry().height())); animationItemFrame->start(); animationPackageFrame->start(); leftbarHide = true; } } void MainWindow::resetview(){ //move module and package widget right, and hide itemTableview(as well as all its editor) if(leftbarHide){ ui->itemFrame->hide(); //layout hack, css will give layout color, the main item tableview, edit groupbox, and item tablview should be in same widget ui->itemEditWidget->hide(); ui->Wizard->hide(); QPropertyAnimation* animationItemFrame = new QPropertyAnimation(ui->adminWidget, "geometry"); animationItemFrame->setDuration(duration); animationItemFrame->setEndValue(QRect(ui->adminWidget->geometry().x() + move_offset, ui->adminWidget->geometry().y(), ui->adminWidget->geometry().width(), ui->adminWidget->geometry().height())); QPropertyAnimation* animationPackageFrame = new QPropertyAnimation(ui->packageListWidget, "geometry"); animationPackageFrame->setDuration(duration); animationPackageFrame->setEndValue(QRect(ui->packageListWidget->geometry().x() + move_offset, ui->packageListWidget->geometry().y(), ui->packageListWidget->geometry().width(), ui->packageListWidget->geometry().height())); animationItemFrame->start(); animationPackageFrame->start(); leftbarHide = false; } }
5f65055e65a934659133d1dde19838400fcd4307
d25389bd4f05a2ec4a9c8c86930f2fe909b462d5
/cob_people_detection/ros/src/SceneDrawer.cpp
e3e0194aab7b01667cbac5a5939d5441bdc7dc9b
[]
no_license
ipa-rmb/cob_people_perception
0f7af6c1763039efc108bf5079ec21bc2fc15274
9c78b9fa082bb181fd39a3eab46c4a393d2ffc3b
refs/heads/indigo_dev
2020-04-05T23:16:30.903078
2019-03-14T14:44:09
2019-03-14T14:44:09
2,598,635
30
42
null
2017-07-28T08:25:29
2011-10-18T12:03:40
C++
UTF-8
C++
false
false
4,895
cpp
SceneDrawer.cpp
/***************************************************************************** * * * OpenNI 1.0 Alpha * * Copyright (C) 2010 PrimeSense Ltd. * * * * This file is part of OpenNI. * * * * OpenNI is free software: you can redistribute it and/or modify * * it under the terms of the GNU Lesser General Public License as published * * by the Free Software Foundation, either version 3 of the License, or * * (at your option) any later version. * * * * OpenNI is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU Lesser General Public License for more details. * * * * You should have received a copy of the GNU Lesser General Public License * * along with OpenNI. If not, see <http://www.gnu.org/licenses/>. * * * *****************************************************************************/ //--------------------------------------------------------------------------- // Includes //--------------------------------------------------------------------------- #include "cob_people_detection/SceneDrawer.h" extern xn::UserGenerator g_UserGenerator; extern xn::DepthGenerator g_DepthGenerator; #define MAX_DEPTH 10000 float g_pDepthHist[MAX_DEPTH]; unsigned int getClosestPowerOfTwo(unsigned int n) { unsigned int m = 2; while (m < n) m <<= 1; return m; } XnFloat Colors[][3] = { { 0, 1, 1 }, { 0, 0, 1 }, { 0, 1, 0 }, { 1, 1, 0 }, { 1, 0, 0 }, { 1, .5, 0 }, { .5, 1, 0 }, { 0, .5, 1 }, { .5, 0, 1 }, { 1, 1, .5 }, { 1, 1, 1 } }; XnUInt32 nColors = 10; void DrawLimb(XnUserID player, XnSkeletonJoint eJoint1, XnSkeletonJoint eJoint2) { if (!g_UserGenerator.GetSkeletonCap().IsTracking(player)) { printf("not tracked!\n"); return; } XnSkeletonJointPosition joint1, joint2; g_UserGenerator.GetSkeletonCap().GetSkeletonJointPosition(player, eJoint1, joint1); g_UserGenerator.GetSkeletonCap().GetSkeletonJointPosition(player, eJoint2, joint2); if (joint1.fConfidence < 0.5 || joint2.fConfidence < 0.5) { return; } XnPoint3D pt[2]; pt[0] = joint1.position; pt[1] = joint2.position; g_DepthGenerator.ConvertRealWorldToProjective(2, pt, pt); } void PublishPeopleImage(const xn::DepthMetaData& dmd, const xn::SceneMetaData& smd, image_transport::Publisher& pub) { const XnDepthPixel* pDepth = dmd.Data(); const XnLabel* pLabels = smd.Data(); unsigned int nValue = 0; XnUInt16 g_nXRes = dmd.XRes(); XnUInt16 g_nYRes = dmd.YRes(); cv::Mat peopleSegmentation(g_nYRes, g_nXRes, CV_8UC3); // Prepare the texture map for (unsigned int nY = 0; nY < g_nYRes; nY++) { uchar* pDestImage = peopleSegmentation.ptr(nY); for (unsigned int nX = 0; nX < g_nXRes; nX++) { pDestImage[0] = 0; pDestImage[1] = 0; pDestImage[2] = 0; if (*pLabels != 0) { nValue = *pDepth; XnLabel label = *pLabels; XnUInt32 nColorID = label % nColors; if (nValue != 0) { pDestImage[0] = 255 * Colors[nColorID][0]; pDestImage[1] = 255 * Colors[nColorID][1]; pDestImage[2] = 255 * Colors[nColorID][2]; } } pDepth++; pLabels++; pDestImage += 3; } } // todo: stop and start with respect to odometry: segmentation works best if robot is standing still // publish try { IplImage img = (IplImage)peopleSegmentation; sensor_msgs::ImagePtr msg = (sensor_msgs::CvBridge::cvToImgMsg(&img, "bgr8")); msg->header.stamp = ros::Time::now(); pub.publish(msg); } catch (sensor_msgs::CvBridgeException error) { ROS_ERROR("[openni_tracker] Could not convert IplImage to ROS message"); } // cv_bridge::CvImage bridgeImage; did not work // bridgeImage.image = peopleSegmentation.clone(); // sensor_msgs::ImagePtr msg = bridgeImage.toImageMsg(); // pub.publish(msg); // display for checking the output // cv::namedWindow("Test"); // imshow("Test", peopleSegmentation); // uchar key = cv::waitKey(10); // if (key == 'r') // { // g_UserGenerator.StopGenerating(); // std::cout << "stop\n"; // } // if (key == 'c') // { // g_UserGenerator.StartGenerating(); // std::cout << "start\n"; // } }
f6cb63b59f5b2e304836cb8fb8b74e0eae927b43
0fe7089dd415fc2d985fb20582eccac71a123ab4
/src/gmc4sim/Board.cpp
cd2217fb24b68604de53f6ca887fc219d9d9f5cb
[]
no_license
tearitco/gmc4sim
5cf680540b123e429683b27653d83a8b765eaf66
85a8c26c5cf2e709da5081ade885c017ea93fa7c
refs/heads/master
2021-12-14T09:53:38.166057
2017-04-24T02:10:48
2017-04-24T02:10:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
17,956
cpp
Board.cpp
// GMC-4 Simulator // Copyright (C) 2009-2017 ypsitau // https://github.com/ypsitau/gmc4sim #include "stdafx.h" #include "Board.h" //----------------------------------------------------------------------------- // Board //----------------------------------------------------------------------------- Board::Board(wxWindow *pParent, wxWindowID id, long style, VirtualMachineGUI &vm) : wxPanel(pParent, id, wxDefaultPosition, wxDefaultSize, style | wxWANTS_CHARS), _vm(vm), _pElementPressed(NULL), FONT_Key(18, wxFONTFAMILY_SWISS, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_BOLD), FONT_KeySmall(10, wxFONTFAMILY_SWISS, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_BOLD), FONT_ModeIndicator(12, wxFONTFAMILY_SWISS, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_BOLD), PEN_ModeIndicator(wxColour(96, 192, 96)), COLOUR_ModeIndicatorOn(96, 214, 96), COLOUR_ModeIndicatorOff(196, 196, 196), COLOUR_InfoText(255, 255, 255), BRUSH_BoardFocusOn(wxColour(40, 128, 80)), BRUSH_BoardFocusOff(wxColour(50, 144, 96)), BRUSH_BinLED_On(wxColour(255, 64, 64)), BRUSH_BinLED_Off(wxColour(230, 230, 230)), BRUSH_BinLEDBackground(wxColour(255, 255, 255)), PEN_BinLED_On(wxColour(255, 128, 128)), PEN_BinLED_Off(wxColour(255, 255, 255)), PEN_BinLEDBorder(wxColour(196, 220, 196)), BRUSH_NumLED_On(wxColour(255, 64, 64)), BRUSH_NumLED_Off(wxColour(64, 64, 64)), BRUSH_NumLEDBackground(wxColour(32, 32, 32)), PEN_NumLED_On(wxColour(128, 32, 32)), PEN_NumLED_Off(wxColour(32, 32, 32)), PEN_NumLEDBorder(wxColour(96, 128, 96), 2), BRUSH_KeyFocusOn(wxColour(16, 16, 16)), BRUSH_KeyFocusOff(wxColour(92, 92, 92)), COLOUR_KeyText(214, 214, 214), COLOUR_KeyBlightSide(128, 128, 128) { ClearKeyBuff(); SetInitialBestSize(wxSize(480, 240)); const int CX_Key = 50, CY_Key = 40; do { const int CX_NumLED = 55, CY_NumLED = 80; int x = 120, y = 50; NumLED *pNumLED = new NumLED(this, wxRect(x, y, CX_NumLED, CY_NumLED), wxString::Format(wxT("7-seg LED"))); _elementTbl.push_back(pNumLED); _pNumLED = pNumLED; } while (0); do { const int CX_BinLED = 20, CY_BinLED= 16; for (int i = 0; i < CNT_BinLED; i++) { int x = (CNT_BinLED - 1 - i) * 70 + 10, y = 10; BinLED *pBinLED = new BinLED(this, wxRect(x, y, CX_BinLED, CY_BinLED), wxString::Format(wxT("LED%d"), i)); _elementTbl.push_back(pBinLED); _pBinLEDTbl[i] = pBinLED; } } while (0); do { const int CX_ModeIndicator = 80, CY_ModeIndicator = 20; wxRect rc(10, 150, CX_ModeIndicator, CY_ModeIndicator); _pModeIndicatorProgram = new ModeIndicator(this, rc, wxT("Program")); _elementTbl.push_back(_pModeIndicatorProgram); rc.y += 20; _pModeIndicatorRun = new ModeIndicator(this, rc, wxT("Run")); _elementTbl.push_back(_pModeIndicatorRun); rc.y += 20; _pModeIndicatorStep = new ModeIndicator(this, rc, wxT("Step")); _elementTbl.push_back(_pModeIndicatorStep); } while (0); do { static const struct { const wxChar *text; int keyCode; unsigned char value; int type; } tbl[] = { { wxT("C"), 'C', 0xc, Key_Hex::TYPE }, { wxT("D"), 'D', 0xd, Key_Hex::TYPE }, { wxT("E"), 'E', 0xe, Key_Hex::TYPE }, { wxT("F"), 'F', 0xf, Key_Hex::TYPE }, { wxT("A SET"), WXK_BACK, 0x0, Key_ASET::TYPE }, { wxT("8"), '8', 0x8, Key_Hex::TYPE }, { wxT("9"), '9', 0x9, Key_Hex::TYPE }, { wxT("A"), 'A', 0xa, Key_Hex::TYPE }, { wxT("B"), 'B', 0xb, Key_Hex::TYPE }, { wxT("INCR"), WXK_RETURN, 0x0, Key_INCR::TYPE }, { wxT("4"), '4', 0x4, Key_Hex::TYPE }, { wxT("5"), '5', 0x5, Key_Hex::TYPE }, { wxT("6"), '6', 0x6, Key_Hex::TYPE }, { wxT("7"), '7', 0x7, Key_Hex::TYPE }, { wxT("RUN"), 0, 0x0, Key_RUN::TYPE }, { wxT("0"), '0', 0x0, Key_Hex::TYPE }, { wxT("1"), '1', 0x1, Key_Hex::TYPE }, { wxT("2"), '2', 0x2, Key_Hex::TYPE }, { wxT("3"), '3', 0x3, Key_Hex::TYPE }, { wxT("RESET"), WXK_HOME, 0x0, Key_RESET::TYPE }, }; for (int i = 0; i < NUMBEROF(tbl); i++) { int x = (i % 5) * (CX_Key + 4) + 200; int y = (i / 5) * (CY_Key + 4) + 50; wxFont *pFont = (::wxStrlen(tbl[i].text) == 1)? &FONT_Key : &FONT_KeySmall; Key *pKey; if (tbl[i].type == Key_Hex::TYPE) { pKey = new Key_Hex(this, wxRect(x, y, CX_Key, CY_Key), tbl[i].text, tbl[i].keyCode, *pFont, tbl[i].value); } else if (tbl[i].type == Key_ASET::TYPE) { pKey = new Key_ASET(this, wxRect(x, y, CX_Key, CY_Key), tbl[i].text, tbl[i].keyCode, *pFont, tbl[i].value); } else if (tbl[i].type == Key_INCR::TYPE) { pKey = new Key_INCR(this, wxRect(x, y, CX_Key, CY_Key), tbl[i].text, tbl[i].keyCode, *pFont, tbl[i].value); } else if (tbl[i].type == Key_RUN::TYPE) { pKey = new Key_RUN(this, wxRect(x, y, CX_Key, CY_Key), tbl[i].text, tbl[i].keyCode, *pFont, tbl[i].value); } else if (tbl[i].type == Key_RESET::TYPE) { pKey = new Key_RESET(this, wxRect(x, y, CX_Key, CY_Key), tbl[i].text, tbl[i].keyCode, *pFont, tbl[i].value); } _elementTbl.push_back(pKey); } } while (0); SetModeIndicator(vm.GetMode()); } Board::~Board() { foreach (ElementTbl, ppElement, _elementTbl) { delete (*ppElement); } } void Board::SetBinLED(unsigned char value) { for (int iBit = 0; iBit < CNT_BinLED; iBit++) { _pBinLEDTbl[iBit]->SetValue((value & (1 << iBit))? true : false); } } void Board::SetNumLED(unsigned char value) { _pNumLED->SetValue(value); } void Board::SetModeIndicator(VirtualMachine::Mode mode) { _pModeIndicatorProgram->SetHighlight(mode == VirtualMachine::MODE_Program); _pModeIndicatorRun->SetHighlight(mode == VirtualMachine::MODE_Run); _pModeIndicatorStep->SetHighlight(mode == VirtualMachine::MODE_Step); } Board::Element *Board::GetElementByKeyCode(int keyCode) { foreach (ElementTbl, ppElement, _elementTbl) { Element *pElement = *ppElement; if (pElement->GetKeyCode() == keyCode) return pElement; } return NULL; } Board::Element *Board::GetElementByPoint(const wxPoint &pt) { foreach (ElementTbl, ppElement, _elementTbl) { Element *pElement = *ppElement; if (pElement->GetRect().Contains(pt)) return pElement; } return NULL; } void Board::NotifyModeChange(const VirtualMachine &vm) { SetModeIndicator(vm.GetMode()); Refresh(); } void Board::NotifyAddressChange(const VirtualMachine &vm) { if (vm.GetMode() == VirtualMachine::MODE_Program) { SetBinLED(vm.GetAddress()); SetNumLED(vm.GetMem(vm.GetAddress()) & 0xf); Refresh(); } else if (vm.GetMode() != VirtualMachine::MODE_Run) { // nothing to do } else if (vm.GetMode() == VirtualMachine::MODE_Step) { SetBinLED(vm.GetAddress()); Refresh(); } } void Board::NotifyOpExecuted(const VirtualMachine &vm) { // nothing to do } void Board::NotifyProgramChange(const VirtualMachine &vm) { SetBinLED(vm.GetAddress()); SetNumLED(vm.GetMem(vm.GetAddress()) & 0xf); } BEGIN_EVENT_TABLE(Board, wxPanel) EVT_ERASE_BACKGROUND(Board::OnEraseBackground) EVT_PAINT(Board::OnPaint) EVT_SET_FOCUS(Board::OnSetFocus) EVT_KILL_FOCUS(Board::OnKillFocus) EVT_MOTION(Board::OnMotion) EVT_LEFT_DOWN(Board::OnLeftDown) EVT_LEFT_UP(Board::OnLeftUp) EVT_LEFT_DCLICK(Board::OnLeftDClick) EVT_RIGHT_DOWN(Board::OnRightDown) EVT_RIGHT_UP(Board::OnRightUp) EVT_LEAVE_WINDOW(Board::OnLeaveWindow) EVT_KEY_DOWN(Board::OnKeyDown) EVT_KEY_UP(Board::OnKeyUp) EVT_CHAR(Board::OnChar) END_EVENT_TABLE() void Board::OnEraseBackground(wxEraseEvent &event) { // nothing to do } void Board::OnPaint(wxPaintEvent &event) { wxBufferedPaintDC dc(this); if (wxWindow::FindFocus() == this) { dc.SetBackground(BRUSH_BoardFocusOn); } else { dc.SetBackground(BRUSH_BoardFocusOff); } dc.Clear(); do { dc.SetPen(PEN_ModeIndicator); dc.SetBrush(*wxTRANSPARENT_BRUSH); dc.DrawRectangle(5, 150, 90, 60); } while (0); foreach (ElementTbl, ppElement, _elementTbl) { (*ppElement)->OnDraw(dc); } } void Board::OnSetFocus(wxFocusEvent &event) { Refresh(); } void Board::OnKillFocus(wxFocusEvent &event) { Refresh(); } void Board::OnMotion(wxMouseEvent &event) { Element *pElement = GetElementByPoint(event.GetPosition()); if (_pElementPressed != NULL && _pElementPressed != pElement) { _pElementPressed->OnRelease(false); _pElementPressed = NULL; } } void Board::OnLeftDown(wxMouseEvent &event) { SetFocus(); Element *pElement = GetElementByPoint(event.GetPosition()); if (_pElementPressed != NULL && _pElementPressed != pElement) { _pElementPressed->OnRelease(false); } if (pElement != NULL) { pElement->OnPress(); } Refresh(); _pElementPressed = pElement; } void Board::OnLeftUp(wxMouseEvent &event) { Element *pElement = GetElementByPoint(event.GetPosition()); if (_pElementPressed != NULL) { pElement->OnRelease(_pElementPressed == pElement); } Refresh(); _pElementPressed = NULL; } void Board::OnLeftDClick(wxMouseEvent &event) { } void Board::OnRightDown(wxMouseEvent &event) { } void Board::OnRightUp(wxMouseEvent &event) { } void Board::OnLeaveWindow(wxMouseEvent &event) { if (_pElementPressed != NULL) { _pElementPressed->OnRelease(false); _pElementPressed = NULL; } } void Board::OnKeyDown(wxKeyEvent &event) { if (event.GetKeyCode() == WXK_ESCAPE) { event.Skip(); return; } else if (event.GetKeyCode() == WXK_TAB) { wxNavigationKeyEvent eventNew; eventNew.SetDirection(!event.ShiftDown()); GetEventHandler()->ProcessEvent(eventNew); return; } else if (event.AltDown()) { event.Skip(); return; } Element *pElement = GetElementByKeyCode(event.GetKeyCode()); if (_pElementPressed != NULL) { if (_pElementPressed != pElement) { _pElementPressed->OnRelease(false); } else { return; } } if (pElement != NULL) { pElement->OnPress(); } Refresh(); _pElementPressed = pElement; } void Board::OnKeyUp(wxKeyEvent &event) { Element *pElement = GetElementByKeyCode(event.GetKeyCode()); if (_pElementPressed != NULL) { _pElementPressed->OnRelease(_pElementPressed == pElement); } Refresh(); _pElementPressed = NULL; } void Board::OnChar(wxKeyEvent &event) { event.Skip(); } //----------------------------------------------------------------------------- // Board::Element //----------------------------------------------------------------------------- void Board::Element::OnPress() { } void Board::Element::OnRelease(bool activeFlag) { } //----------------------------------------------------------------------------- // Board::NumLED //----------------------------------------------------------------------------- const char Board::NumLED::_patternTbl[16][NUM_SEGS] = { { 1, 1, 1, 1, 1, 1, 0 }, // 0 { 0, 1, 1, 0, 0, 0, 0 }, // 1 { 1, 1, 0, 1, 1, 0, 1 }, // 2 { 1, 1, 1, 1, 0, 0, 1 }, // 3 { 0, 1, 1, 0, 0, 1, 1 }, // 4 { 1, 0, 1, 1, 0, 1, 1 }, // 5 { 1, 0, 1, 1, 1, 1, 1 }, // 6 { 1, 1, 1, 0, 0, 0, 0 }, // 7 { 1, 1, 1, 1, 1, 1, 1 }, // 8 { 1, 1, 1, 1, 0, 1, 1 }, // 9 { 1, 1, 1, 0, 1, 1, 1 }, // A { 0, 0, 1, 1, 1, 1, 1 }, // B { 1, 0, 0, 1, 1, 1, 0 }, // C { 0, 1, 1, 1, 1, 0, 1 }, // D { 1, 0, 0, 1, 1, 1, 1 }, // E { 1, 0, 0, 0, 1, 1, 1 }, // F }; Board::NumLED::NumLED(Board *pBoard, const wxRect &rc, const wxString &text) : Element(pBoard, rc, text, 0), _value(0) { const int wdLine = 8; wxRect rcBox(_rc); rcBox.Deflate(_rc.width * 15 / 100, _rc.height * 10 / 100); int htCenter = rcBox.height / 2; int xMiddle = rcBox.x + wdLine; int xRight = rcBox.GetRight() - wdLine; int wdMiddle = xRight - xMiddle; _rcSegTbl[0] = wxRect(xMiddle, rcBox.y, wdMiddle, wdLine); _rcSegTbl[1] = wxRect(xRight, rcBox.y, wdLine, htCenter); _rcSegTbl[2] = wxRect(xRight, rcBox.y + htCenter, wdLine, htCenter); _rcSegTbl[3] = wxRect(xMiddle, rcBox.GetBottom() - wdLine + 1, wdMiddle, wdLine); _rcSegTbl[4] = wxRect(rcBox.x, rcBox.y + htCenter, wdLine, htCenter); _rcSegTbl[5] = wxRect(rcBox.x, rcBox.y, wdLine, htCenter); _rcSegTbl[6] = wxRect(xMiddle, rcBox.y + htCenter - wdLine / 2, wdMiddle, wdLine); } void Board::NumLED::SetValue(unsigned char value) { _value = value; } void Board::NumLED::OnDraw(wxDC &dc) { dc.SetPen(_pBoard->PEN_NumLEDBorder); dc.SetBrush(_pBoard->BRUSH_NumLEDBackground); dc.DrawRectangle(_rc); for (int i = 0; i < NUM_SEGS; i++) { if (_value < 0x10 && _patternTbl[_value][i]) { dc.SetPen(_pBoard->PEN_NumLED_On); dc.SetBrush(_pBoard->BRUSH_NumLED_On); } else { dc.SetPen(_pBoard->PEN_NumLED_Off); dc.SetBrush(_pBoard->BRUSH_NumLED_Off); } dc.DrawRectangle(_rcSegTbl[i]); } } //----------------------------------------------------------------------------- // Board::BinLED //----------------------------------------------------------------------------- Board::BinLED::BinLED(Board *pBoard, const wxRect &rc, const wxString &text) : Element(pBoard, rc, text, 0), _value(false) { } void Board::BinLED::SetValue(bool value) { _value = value; } void Board::BinLED::OnDraw(wxDC &dc) { dc.SetPen(_pBoard->PEN_BinLEDBorder); dc.SetBrush(_pBoard->BRUSH_BinLEDBackground); dc.DrawRectangle(_rc); if (_value) { dc.SetPen(_pBoard->PEN_BinLED_On); dc.SetBrush(_pBoard->BRUSH_BinLED_On); } else { dc.SetPen(_pBoard->PEN_BinLED_Off); dc.SetBrush(_pBoard->BRUSH_BinLED_Off); } int diameter = _rc.height * 9 / 10; int x = _rc.x + (_rc.width - diameter) / 2; int y = _rc.y + (_rc.height - diameter) / 2; dc.DrawEllipse(x, y, diameter, diameter); } //----------------------------------------------------------------------------- // Board::ModeIndicator //----------------------------------------------------------------------------- Board::ModeIndicator::ModeIndicator(Board *pBoard, const wxRect &rc, const wxString &text) : Element(pBoard, rc, text, 0) { } void Board::ModeIndicator::SetHighlight(bool flag) { _highlightFlag = flag; } void Board::ModeIndicator::OnDraw(wxDC &dc) { wxCoord wdText, htText; dc.SetFont(_pBoard->FONT_ModeIndicator); if (_highlightFlag) { dc.SetTextForeground(_pBoard->COLOUR_ModeIndicatorOn); } else { dc.SetTextForeground(_pBoard->COLOUR_ModeIndicatorOff); } dc.GetTextExtent(_text, &wdText, &htText); int x = _rc.x; int y = _rc.y + (_rc.height - htText) / 2; dc.DrawText(_text, x, y); } //----------------------------------------------------------------------------- // Board::Key //----------------------------------------------------------------------------- Board::Key::Key(Board *pBoard, const wxRect &rc, const wxChar *text, long keyCode, wxFont &font, unsigned char value) : Element(pBoard, rc, text ,keyCode), _font(font), _value(value), _pressedFlag(false) { } void Board::Key::OnPress() { _pressedFlag = true; //_pBoard->Refresh(); Action(); } void Board::Key::OnRelease(bool activeFlag) { _pressedFlag = false; //_pBoard->Refresh(); } void Board::Key::OnDraw(wxDC &dc) { do { dc.SetPen(*wxTRANSPARENT_PEN); if (wxWindow::FindFocus() == _pBoard) { dc.SetBrush(_pBoard->BRUSH_KeyFocusOn); } else { dc.SetBrush(_pBoard->BRUSH_KeyFocusOff); } dc.DrawRectangle(_rc); } while (0); do { wxCoord wdText, htText; dc.SetFont(_font); dc.SetTextForeground(_pBoard->COLOUR_KeyText); dc.GetTextExtent(_text, &wdText, &htText); int x = _rc.x + (_rc.width - wdText) / 2; int y = _rc.y + (_rc.height - htText) / 2; if (_pressedFlag) { x += 1, y += 1; } dc.DrawText(_text, x, y); } while (0); if (!_pressedFlag) { dc.SetPen(_pBoard->COLOUR_KeyBlightSide); dc.DrawLine(_rc.GetTopLeft(), _rc.GetTopRight()); dc.DrawLine(_rc.GetTopLeft(), _rc.GetBottomLeft()); } } void Board::Key_Hex::OnPress() { Key::OnPress(); _pBoard->GetVM().SetKeyScan(true, _value); } void Board::Key_Hex::OnRelease(bool activeFlag) { Key::OnRelease(activeFlag); _pBoard->GetVM().SetKeyScan(false); } void Board::Key_Hex::Action() { VirtualMachineGUI &vm = _pBoard->GetVM(); if (vm.GetMode() == VirtualMachine::MODE_Program || vm.GetMode() == VirtualMachine::MODE_Step) { _pBoard->SetNumLED(_value); _pBoard->PutKeyBuff(_value); } else if (vm.GetMode() == VirtualMachine::MODE_Run) { // nothing to do } else { // nothing to do } } void Board::Key_ASET::Action() { VirtualMachineGUI &vm = _pBoard->GetVM(); if (vm.GetMode() == VirtualMachine::MODE_Program || vm.GetMode() == VirtualMachine::MODE_Step) { vm.SetAddress(_pBoard->GetKeyBuff(), true); _pBoard->ClearKeyBuff(); } else if (vm.GetMode() == VirtualMachine::MODE_Run) { // nothing to do } else { // nothing to do } } void Board::Key_INCR::Action() { VirtualMachineGUI &vm = _pBoard->GetVM(); if (vm.GetMode() == VirtualMachine::MODE_Program) { if (_pBoard->CountKeyBuff() > 0) { unsigned char value = _pBoard->GetKeyBuff() & 0xf; vm.PutMem(vm.GetAddress(), value); if (vm.GetAddress() < VirtualMachine::ADDR_MEMORY) { vm.DoNotifyProgramChange(); } } vm.IncrAddress(); _pBoard->ClearKeyBuff(); } else if (vm.GetMode() == VirtualMachine::MODE_Run) { // nothing to do } else if (vm.GetMode() == VirtualMachine::MODE_Step) { vm.RunSingle(); } else { // nothing to do } } void Board::Key_RUN::Action() { VirtualMachineGUI &vm = _pBoard->GetVM(); if (vm.GetMode() == VirtualMachine::MODE_Program) { unsigned char runMode = _pBoard->GetKeyBuff() & 0xf; _pBoard->ClearKeyBuff(); if (runMode == 1 || runMode == 2) { vm.EnterRunMode(false); } else if (runMode == 5 || runMode == 6) { vm.Reset(); vm.EnterStepMode(); } else if (runMode == 0xa) { vm.EnterRunMode(true); } else { // nothing to do } } else if (vm.GetMode() == VirtualMachine::MODE_Run) { // nothing to do } else if (vm.GetMode() == VirtualMachine::MODE_Step) { // nothing to do } else { // nothing to do } } void Board::Key_RESET::Action() { VirtualMachineGUI &vm = _pBoard->GetVM(); if (vm.GetMode() == VirtualMachine::MODE_Program) { _pBoard->ClearKeyBuff(); vm.SetAddress(0x00, true); } else if (vm.GetMode() == VirtualMachine::MODE_Run) { _pBoard->ClearKeyBuff(); vm.LeaveRunMode(); } else if (vm.GetMode() == VirtualMachine::MODE_Step) { _pBoard->ClearKeyBuff(); vm.LeaveStepMode(); } else { // nothing to do } }
93c21ee02f9a29881b04853a774b595c6d1ea6e1
4b1bf024abc9065814ec0a56ba408484fb686790
/src/QrCodeModel.cpp
b4102a4bbcb2c6befcd2a5eb4567dda9373df74b
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
monich/harbour-qrclip
40b6b70618c4ac1fe6ec24a68167a6f99ad40df7
7c9fcb2cd3501df117722f7cad47a1d49dcbd5b9
refs/heads/master
2023-03-03T22:25:14.771100
2023-02-19T23:28:08
2023-02-19T23:28:08
184,955,371
1
7
NOASSERTION
2021-06-28T23:17:04
2019-05-04T23:53:53
QML
UTF-8
C++
false
false
9,173
cpp
QrCodeModel.cpp
/* * Copyright (C) 2021 Jolla Ltd. * Copyright (C) 2021 Slava Monich <slava@monich.com> * * You may use this file under the terms of BSD license as follows: * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer * in the documentation and/or other materials provided with the * distribution. * 3. Neither the names of the copyright holders nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "QrCodeModel.h" #include "HarbourQrCodeGenerator.h" #include "HarbourBase32.h" #include "HarbourTask.h" #include "HarbourDebug.h" // ========================================================================== // QrCodeModel::Task // ========================================================================== class QrCodeModel::Task : public HarbourTask { Q_OBJECT public: Task(QThreadPool* aPool, QString aText); void performTask() Q_DECL_OVERRIDE; public: QString iText; QString iCode[HarbourQrCodeGenerator::ECLevelCount]; }; QrCodeModel::Task::Task(QThreadPool* aPool, QString aText) : HarbourTask(aPool), iText(aText) { } void QrCodeModel::Task::performTask() { for (int i = 0; i < HarbourQrCodeGenerator::ECLevelCount && !isCanceled(); i++) { iCode[i] = HarbourBase32::toBase32(HarbourQrCodeGenerator::generate(iText, (HarbourQrCodeGenerator::ECLevel)i)); } } // ========================================================================== // QrCodeModel::Private // ========================================================================== class QrCodeModel::Private : public QObject { Q_OBJECT public: enum Role { QrCodeRole = Qt::UserRole, EcLevelRole }; Private(QrCodeModel* aParent); ~Private(); QrCodeModel* parentModel() const; int count() const; QString defaultCode() const; const QString* codeAt(int aRow, HarbourQrCodeGenerator::ECLevel* aLevel = Q_NULLPTR) const; void setText(QString aValue); public Q_SLOTS: void onTaskDone(); public: QThreadPool* iThreadPool; Task* iTask; QString iText; QString iCode[HarbourQrCodeGenerator::ECLevelCount]; }; QrCodeModel::Private::Private(QrCodeModel* aParent) : QObject(aParent), iThreadPool(new QThreadPool(this)), iTask(Q_NULLPTR) { // Serialize the tasks for this model: iThreadPool->setMaxThreadCount(1); } QrCodeModel::Private::~Private() { if (iTask) iTask->release(); iThreadPool->waitForDone(); } inline QrCodeModel* QrCodeModel::Private::parentModel() const { return qobject_cast<QrCodeModel*>(parent()); } int QrCodeModel::Private::count() const { int row = 0; for (int i = 0; i < HarbourQrCodeGenerator::ECLevelCount; i++) { if (!iCode[i].isEmpty()) { row++; } } return row; } const QString* QrCodeModel::Private::codeAt(int aRow, HarbourQrCodeGenerator::ECLevel* aLevel) const { int row = 0; for (int i = 0; i < HarbourQrCodeGenerator::ECLevelCount; i++) { const QString* code = iCode + i; if (!code->isEmpty()) { if (row == aRow) { if (aLevel) { *aLevel = (HarbourQrCodeGenerator::ECLevel)i; } return code; } row++; } } if (aLevel) { *aLevel = HarbourQrCodeGenerator::ECLevelDefault; } return Q_NULLPTR; } QString QrCodeModel::Private::defaultCode() const { const QString* code = codeAt(0); return code ? QString(*code) : QString(); } void QrCodeModel::Private::setText(QString aText) { if (iText != aText) { iText = aText; QrCodeModel* model = parentModel(); if (iText.isEmpty()) { // No text - no code. Just clear the model const QString prevCode(defaultCode()); for (int i = 0; i < HarbourQrCodeGenerator::ECLevelCount; i++) { iCode[i].clear(); } if (iTask) { // Cancel the task iTask->release(); iTask = Q_NULLPTR; Q_EMIT model->runningChanged(); } if (!prevCode.isEmpty()) { // It's empty now Q_EMIT model->qrcodeChanged(); } } else { // We actually need to generate a new code const bool wasRunning = (iTask != Q_NULLPTR); if (iTask) iTask->release(); iTask = new Task(iThreadPool, iText); iTask->submit(this, SLOT(onTaskDone())); if (!wasRunning) { Q_EMIT model->runningChanged(); } } Q_EMIT model->textChanged(); } } void QrCodeModel::Private::onTaskDone() { if (sender() == iTask) { Task* task = iTask; iTask = Q_NULLPTR; QModelIndex parent; QrCodeModel* model = parentModel(); const QString prevCode(defaultCode()); for (int i = 0, pos = 0; i < HarbourQrCodeGenerator::ECLevelCount; i++) { QString* modelValue = iCode + i; const QString* newValue = task->iCode + i; if (modelValue->compare(*newValue) != 0) { if (modelValue->isEmpty()) { // Inserting a new value model->beginInsertRows(parent, pos, pos); *modelValue = *newValue; model->endInsertRows(); pos++; } else if (newValue->isEmpty()) { // Removing the old value model->beginRemoveRows(parent, pos, pos); modelValue->clear(); model->endRemoveRows(); // Current position remains the same } else { // The value has changed *modelValue = *newValue; QVector<int> roles; roles.append(QrCodeRole); const QModelIndex index(model->index(pos)); model->dataChanged(index, index, roles); pos++; } } } task->release(); if (defaultCode() != prevCode) { Q_EMIT model->qrcodeChanged(); } Q_EMIT model->runningChanged(); } } // ========================================================================== // QrCodeModel // ========================================================================== QrCodeModel::QrCodeModel(QObject* aParent) : QAbstractListModel(aParent), iPrivate(new Private(this)) { } QrCodeModel::~QrCodeModel() { delete iPrivate; } // Callback for qmlRegisterSingletonType<QrCodeModel> QObject* QrCodeModel::createSingleton(QQmlEngine* aEngine, QJSEngine*) { return new QrCodeModel(); // Singleton doesn't need a parent } QString QrCodeModel::getText() const { return iPrivate->iText; } void QrCodeModel::setText(QString aValue) { iPrivate->setText(aValue); } QString QrCodeModel::getQrCode() const { return iPrivate->defaultCode(); } bool QrCodeModel::isRunning() const { return iPrivate->iTask != Q_NULLPTR; } QHash<int,QByteArray> QrCodeModel::roleNames() const { QHash<int,QByteArray> roles; roles.insert(Private::QrCodeRole, "qrcode"); roles.insert(Private::EcLevelRole, "eclevel"); return roles; } int QrCodeModel::rowCount(const QModelIndex& aParent) const { return iPrivate->count(); } QVariant QrCodeModel::data(const QModelIndex& aIndex, int aRole) const { const int row = aIndex.row(); HarbourQrCodeGenerator::ECLevel ecLevel; const QString* qrCode = iPrivate->codeAt(row, &ecLevel); if (qrCode) { switch ((Private::Role)aRole) { case Private::QrCodeRole: return *qrCode; case Private::EcLevelRole: return ecLevel; } } return QVariant(); } #include "QrCodeModel.moc"
711f307e152b77e724833ef76fe344946be00f31
05b458a94b13328c4ab0bb474513e69c5f253ec0
/analysis-sources/raylib-analysis/_cppstats/raylib/projects/VS2017.UWP/raylib.App.UWP/BaseApp.h
b4578eef78fd657c4d5c3ea2f8c680fc1da7a72d
[]
no_license
paulobernardoaf/dataset-files
c7b3a5f44f20a6809b6ac7c68b9098784d22ca52
6cc1726ee87e964dc05117673e50e3e364533015
refs/heads/master
2022-04-23T06:52:15.875641
2020-04-25T18:28:48
2020-04-25T18:28:48
253,626,694
0
0
null
null
null
null
UTF-8
C++
false
false
14,090
h
BaseApp.h
#pragma once #if defined(PCH) #include PCH #endif #include <chrono> #include <memory> #include <wrl.h> #include <EGL/eglplatform.h> #include "raylib.h" #include "utils.h" using namespace Windows::ApplicationModel::Core; using namespace Windows::ApplicationModel::Activation; using namespace Windows::UI::Core; using namespace Windows::UI::Input; using namespace Windows::Devices::Input; using namespace Windows::Foundation; using namespace Windows::Foundation::Collections; using namespace Windows::Gaming::Input; using namespace Windows::Graphics::Display; using namespace Microsoft::WRL; using namespace Platform; extern "C" { EGLNativeWindowType handle; }; #define MAX_GAMEPADS 4 #define MAX_GAMEPAD_BUTTONS 32 #define MAX_GAMEPAD_AXIS 8 bool cursorLocked = false; Vector2 mouseDelta = {0, 0}; CoreCursor ^regularCursor = ref new CoreCursor(CoreCursorType::Arrow, 0); ref class BaseApp : public Windows::ApplicationModel::Core::IFrameworkView { public: virtual void Initialize(Windows::ApplicationModel::Core::CoreApplicationView^ applicationView) { applicationView->Activated += ref new TypedEventHandler<CoreApplicationView^, IActivatedEventArgs^>(this, &BaseApp::OnActivated); CoreApplication::Resuming += ref new EventHandler<Platform::Object^>(this, &BaseApp::OnResuming); } virtual void SetWindow(Windows::UI::Core::CoreWindow^ window) { window->SizeChanged += ref new TypedEventHandler<CoreWindow^, WindowSizeChangedEventArgs^>(this, &BaseApp::OnWindowSizeChanged); window->VisibilityChanged += ref new TypedEventHandler<CoreWindow^, VisibilityChangedEventArgs^>(this, &BaseApp::OnVisibilityChanged); window->Closed += ref new TypedEventHandler<CoreWindow^, CoreWindowEventArgs^>(this, &BaseApp::OnWindowClosed); window->PointerPressed += ref new TypedEventHandler<CoreWindow^, PointerEventArgs^>(this, &BaseApp::PointerPressed); window->PointerWheelChanged += ref new TypedEventHandler<CoreWindow^, PointerEventArgs^>(this, &BaseApp::PointerWheelChanged); window->KeyDown += ref new TypedEventHandler<CoreWindow ^, KeyEventArgs ^>(this, &BaseApp::OnKeyDown); window->KeyUp += ref new TypedEventHandler<CoreWindow ^, KeyEventArgs ^>(this, &BaseApp::OnKeyUp); Windows::Devices::Input::MouseDevice::GetForCurrentView()->MouseMoved += ref new TypedEventHandler<MouseDevice^, MouseEventArgs^>(this, &BaseApp::MouseMoved); DisplayInformation^ currentDisplayInformation = DisplayInformation::GetForCurrentView(); currentDisplayInformation->DpiChanged += ref new TypedEventHandler<DisplayInformation^, Object^>(this, &BaseApp::OnDpiChanged); currentDisplayInformation->OrientationChanged += ref new TypedEventHandler<DisplayInformation^, Object^>(this, &BaseApp::OnOrientationChanged); handle = (EGLNativeWindowType)window; InitWindow(width, height, NULL); } virtual void Load(Platform::String^ entryPoint) {} void Setup(int width, int height) { this->width = width; this->height = height; } virtual void Run() { DisplayInformation^ dInfo = DisplayInformation::GetForCurrentView(); Vector2 screenSize = { dInfo->ScreenWidthInRawPixels, dInfo->ScreenHeightInRawPixels }; UWPMessage *msg = CreateUWPMessage(); msg->type = UWP_MSG_SET_DISPLAY_DIMS; msg->paramVector0 = screenSize; UWPSendMessage(msg); using clock = std::chrono::high_resolution_clock; auto timeStart = clock::now(); if (GetFPS() <= 0) SetTargetFPS(60); while (!mWindowClosed) { if (mWindowVisible) { auto delta = clock::now() - timeStart; UWPMessage *timeMsg = CreateUWPMessage(); timeMsg->type = UWP_MSG_SET_GAME_TIME; timeMsg->paramDouble0 = std::chrono::duration_cast<std::chrono::seconds>(delta).count(); UWPSendMessage(timeMsg); Update(); PollInput(); CoreWindow::GetForCurrentThread()->Dispatcher->ProcessEvents(CoreProcessEventsOption::ProcessAllIfPresent); } else { CoreWindow::GetForCurrentThread()->Dispatcher->ProcessEvents(CoreProcessEventsOption::ProcessOneAndAllPending); } } CloseWindow(); } virtual void Update() {} virtual void Uninitialize() {} protected: void PollInput() { { while (UWPHasMessages()) { auto msg = UWPGetMessage(); switch(msg->type) { case UWP_MSG_SHOW_MOUSE: case UWP_MSG_UNLOCK_MOUSE: { CoreWindow::GetForCurrentThread()->PointerCursor = regularCursor; cursorLocked = false; MoveMouse(GetMousePosition()); break; } case UWP_MSG_HIDE_MOUSE: case UWP_MSG_LOCK_MOUSE: { CoreWindow::GetForCurrentThread()->PointerCursor = nullptr; cursorLocked = true; break; } case UWP_MSG_SET_MOUSE_LOCATION: { MoveMouse(msg->paramVector0); break; } } DeleteUWPMessage(msg); } } { for (int k = 0x08; k < 0xA6; k++) { auto state = CoreWindow::GetForCurrentThread()->GetKeyState((Windows::System::VirtualKey) k); #if defined(HOLDHACK) if (KeyboardStateHack[k] == 2) { if ((state & CoreVirtualKeyStates::None) == CoreVirtualKeyStates::None) { KeyboardStateHack[k] = 3; } } else if (KeyboardStateHack[k] == 3) { if ((state & CoreVirtualKeyStates::None) == CoreVirtualKeyStates::None) { KeyboardStateHack[k] = 4; } } else if (KeyboardStateHack[k] == 4) { if ((state & CoreVirtualKeyStates::None) == CoreVirtualKeyStates::None) { KeyboardStateHack[k] = 0; RegisterKey(k, 0); } } #endif if (k == 0xA4 || k == 0xA5) { if ((state & CoreVirtualKeyStates::Down) == CoreVirtualKeyStates::Down) { RegisterKey(k, 1); } else { RegisterKey(k, 0); } } } } { if (CurrentPointerID > -1) { auto point = PointerPoint::GetCurrentPoint(CurrentPointerID); auto props = point->Properties; if (props->IsLeftButtonPressed) { RegisterClick(MOUSE_LEFT_BUTTON, 1); } else { RegisterClick(MOUSE_LEFT_BUTTON, 0); } if (props->IsRightButtonPressed) { RegisterClick(MOUSE_RIGHT_BUTTON, 1); } else { RegisterClick(MOUSE_RIGHT_BUTTON, 0); } if (props->IsMiddleButtonPressed) { RegisterClick(MOUSE_MIDDLE_BUTTON, 1); } else { RegisterClick(MOUSE_MIDDLE_BUTTON, 0); } } CoreWindow ^window = CoreWindow::GetForCurrentThread(); if (cursorLocked) { auto curMousePos = GetMousePosition(); auto x = curMousePos.x + mouseDelta.x; auto y = curMousePos.y + mouseDelta.y; UpdateMousePosition({ x, y }); Vector2 centerClient = { (float)(GetScreenWidth() / 2), (float)(GetScreenHeight() / 2) }; window->PointerPosition = Point(centerClient.x + window->Bounds.X, centerClient.y + window->Bounds.Y); } else { auto x = window->PointerPosition.X - window->Bounds.X; auto y = window->PointerPosition.Y - window->Bounds.Y; UpdateMousePosition({ x, y }); } mouseDelta = { 0 ,0 }; } { for (int i = 0; i < MAX_GAMEPADS; i++) { UWPMessage* msg = CreateUWPMessage(); msg->type = UWP_MSG_SET_GAMEPAD_ACTIVE; msg->paramInt0 = i; msg->paramBool0 = i < Gamepad::Gamepads->Size; UWPSendMessage(msg); } for (int i = 0; i < MAX_GAMEPADS; i++) { if (IsGamepadAvailable(i)) { auto gamepad = Gamepad::Gamepads->GetAt(i); GamepadReading reading = gamepad->GetCurrentReading(); RegisterGamepadButton(i, GAMEPAD_BUTTON_RIGHT_FACE_DOWN, ((reading.Buttons & GamepadButtons::A) == GamepadButtons::A)); RegisterGamepadButton(i, GAMEPAD_BUTTON_RIGHT_FACE_RIGHT, ((reading.Buttons & GamepadButtons::B) == GamepadButtons::B)); RegisterGamepadButton(i, GAMEPAD_BUTTON_RIGHT_FACE_LEFT, ((reading.Buttons & GamepadButtons::X) == GamepadButtons::X)); RegisterGamepadButton(i, GAMEPAD_BUTTON_RIGHT_FACE_UP, ((reading.Buttons & GamepadButtons::Y) == GamepadButtons::Y)); RegisterGamepadButton(i, GAMEPAD_BUTTON_LEFT_TRIGGER_1, ((reading.Buttons & GamepadButtons::LeftShoulder) == GamepadButtons::LeftShoulder)); RegisterGamepadButton(i, GAMEPAD_BUTTON_RIGHT_TRIGGER_1, ((reading.Buttons & GamepadButtons::RightShoulder) == GamepadButtons::RightShoulder)); RegisterGamepadButton(i, GAMEPAD_BUTTON_MIDDLE_LEFT, ((reading.Buttons & GamepadButtons::View) == GamepadButtons::View)); RegisterGamepadButton(i, GAMEPAD_BUTTON_MIDDLE_RIGHT, ((reading.Buttons & GamepadButtons::Menu) == GamepadButtons::Menu)); RegisterGamepadButton(i, GAMEPAD_BUTTON_LEFT_FACE_UP, ((reading.Buttons & GamepadButtons::DPadUp) == GamepadButtons::DPadUp)); RegisterGamepadButton(i, GAMEPAD_BUTTON_LEFT_FACE_RIGHT, ((reading.Buttons & GamepadButtons::DPadRight) == GamepadButtons::DPadRight)); RegisterGamepadButton(i, GAMEPAD_BUTTON_LEFT_FACE_DOWN, ((reading.Buttons & GamepadButtons::DPadDown) == GamepadButtons::DPadDown)); RegisterGamepadButton(i, GAMEPAD_BUTTON_LEFT_FACE_LEFT, ((reading.Buttons & GamepadButtons::DPadLeft) == GamepadButtons::DPadLeft)); RegisterGamepadButton(i, GAMEPAD_BUTTON_MIDDLE, false); RegisterGamepadAxis(i, GAMEPAD_AXIS_LEFT_X, (float)reading.LeftThumbstickX); RegisterGamepadAxis(i, GAMEPAD_AXIS_LEFT_Y, (float)reading.LeftThumbstickY); RegisterGamepadAxis(i, GAMEPAD_AXIS_RIGHT_X, (float)reading.RightThumbstickX); RegisterGamepadAxis(i, GAMEPAD_AXIS_RIGHT_Y, (float)reading.RightThumbstickY); RegisterGamepadAxis(i, GAMEPAD_AXIS_LEFT_TRIGGER, (float)reading.LeftTrigger); RegisterGamepadAxis(i, GAMEPAD_AXIS_RIGHT_TRIGGER, (float)reading.RightTrigger); } } } } void OnActivated(Windows::ApplicationModel::Core::CoreApplicationView^ applicationView, Windows::ApplicationModel::Activation::IActivatedEventArgs^ args) { CoreWindow::GetForCurrentThread()->Activate(); } void OnResuming(Platform::Object^ sender, Platform::Object^ args) {} void OnWindowSizeChanged(Windows::UI::Core::CoreWindow^ sender, Windows::UI::Core::WindowSizeChangedEventArgs^ args) { UWPMessage* msg = CreateUWPMessage(); msg->type = UWP_MSG_HANDLE_RESIZE; UWPSendMessage(msg); } void OnVisibilityChanged(Windows::UI::Core::CoreWindow^ sender, Windows::UI::Core::VisibilityChangedEventArgs^ args) { mWindowVisible = args->Visible; } void OnWindowClosed(Windows::UI::Core::CoreWindow^ sender, Windows::UI::Core::CoreWindowEventArgs^ args) { mWindowClosed = true; } void OnDpiChanged(Windows::Graphics::Display::DisplayInformation^ sender, Platform::Object^ args) {} void OnOrientationChanged(Windows::Graphics::Display::DisplayInformation^ sender, Platform::Object^ args) {} void PointerPressed(Windows::UI::Core::CoreWindow^ sender, Windows::UI::Core::PointerEventArgs^ args) { CurrentPointerID = args->CurrentPoint->PointerId; args->Handled = true; } void PointerWheelChanged(Windows::UI::Core::CoreWindow ^sender, Windows::UI::Core::PointerEventArgs^ args) { UWPMessage* msg = CreateUWPMessage(); msg->type = UWP_MSG_SCROLL_WHEEL_UPDATE; msg->paramFloat0 = args->CurrentPoint->Properties->MouseWheelDelta; UWPSendMessage(msg); } void MouseMoved(Windows::Devices::Input::MouseDevice^ mouseDevice, Windows::Devices::Input::MouseEventArgs^ args) { mouseDelta.x += args->MouseDelta.X; mouseDelta.y += args->MouseDelta.Y; } void OnKeyDown(Windows::UI::Core::CoreWindow ^ sender, Windows::UI::Core::KeyEventArgs ^ args) { #if defined(HOLDHACK) KeyboardStateHack[(int)args->VirtualKey] = 1; #endif RegisterKey((int)args->VirtualKey, 1); } void OnKeyUp(Windows::UI::Core::CoreWindow ^ sender, Windows::UI::Core::KeyEventArgs ^ args) { #if defined(HOLDHACK) if (KeyboardStateHack[(int)args->VirtualKey] == 1) { KeyboardStateHack[(int)args->VirtualKey] = 2; } else if (KeyboardStateHack[(int)args->VirtualKey] == 2) { KeyboardStateHack[(int)args->VirtualKey] = 3; } else if (KeyboardStateHack[(int)args->VirtualKey] == 3) { KeyboardStateHack[(int)args->VirtualKey] = 4; } else if (KeyboardStateHack[(int)args->VirtualKey] == 4) { RegisterKey((int)args->VirtualKey, 0); KeyboardStateHack[(int)args->VirtualKey] = 0; } #else RegisterKey((int)args->VirtualKey, 0); #endif } private: void RegisterKey(int key, char status) { UWPMessage* msg = CreateUWPMessage(); msg->type = UWPMessageType::UWP_MSG_REGISTER_KEY; msg->paramInt0 = key; msg->paramChar0 = status; UWPSendMessage(msg); } void MoveMouse(Vector2 pos) { CoreWindow ^window = CoreWindow::GetForCurrentThread(); Point mousePosScreen = Point(pos.x + window->Bounds.X, pos.y + window->Bounds.Y); window->PointerPosition = mousePosScreen; } void RegisterGamepadButton(int gamepad, int button, char status) { UWPMessage* msg = CreateUWPMessage(); msg->type = UWP_MSG_SET_GAMEPAD_BUTTON; msg->paramInt0 = gamepad; msg->paramInt1 = button; msg->paramChar0 = status; UWPSendMessage(msg); } void RegisterGamepadAxis(int gamepad, int axis, float value) { UWPMessage* msg = CreateUWPMessage(); msg->type = UWP_MSG_SET_GAMEPAD_AXIS; msg->paramInt0 = gamepad; msg->paramInt1 = axis; msg->paramFloat0 = value; UWPSendMessage(msg); } void UpdateMousePosition(Vector2 pos) { UWPMessage* msg = CreateUWPMessage(); msg->type = UWP_MSG_UPDATE_MOUSE_LOCATION; msg->paramVector0 = pos; UWPSendMessage(msg); } void RegisterClick(int button, char status) { UWPMessage* msg = CreateUWPMessage(); msg->type = UWPMessageType::UWP_MSG_REGISTER_CLICK; msg->paramInt0 = button; msg->paramChar0 = status; UWPSendMessage(msg); } bool mWindowClosed = false; bool mWindowVisible = true; int width = 640; int height = 480; int CurrentPointerID = -1; #if defined(HOLDHACK) char KeyboardStateHack[0xA6]; #endif }; template<typename AppType> ref class ApplicationSource sealed : Windows::ApplicationModel::Core::IFrameworkViewSource { public: virtual Windows::ApplicationModel::Core::IFrameworkView^ CreateView() { return ref new AppType(); } };
374d97fda5073366f287b2ebe4bfedbc74274e80
2239de4115fc8ced9ca9653a459dcce376443e64
/mess/Net/TcpClient.h
52d407cc41604d42c4fbc6386fc7ee1a27513bfe
[]
no_license
TangLingxiao/learn
6c7ebb00b134333cbbf417c2bda48afbcdceeda3
2927e3145e7c1b99d82fd2e1270de6c710461ed2
refs/heads/master
2021-06-29T15:58:56.047994
2020-10-09T03:54:14
2020-10-09T05:26:35
167,476,740
1
0
null
null
null
null
UTF-8
C++
false
false
833
h
TcpClient.h
#pragma once #include <memory> #include "CallBack.h" #include "Pattern/NonCopyable.h" #include <atomic> class EventLoop; class Connector; class InetAddr; class TcpConnection; class TcpClient : public NonCopyable { public: TcpClient(EventLoop *lp, const std::string& name); ~TcpClient(); void setMsgCb(MsgCb cb); void setConnCb(ConnectionCb cb); void connect(const std::string &ip, uint16_t port); void disconnect(); void stop(); void send(const std::string &msg); private: void newConnection(int32_t fd, const InetAddr &addr); void removeConnection(const TcpConnectionPtr& conn); private: EventLoop *_loop; std::atomic<bool> _started; std::unique_ptr<Connector> _connector; std::string _name; TcpConnectionPtr _connection; MsgCb _msgCb; ConnectionCb _connCb; };
6cf8db65bc4d76f8cb405a4480d819c18efc231d
b22588340d7925b614a735bbbde1b351ad657ffc
/athena/PhysicsAnalysis/MuonID/MuonPerformanceAnalysis/MuonCalibrationFit/src/GRLReader.cxx
9c7051d02cfe92a304f25fc0f7e4ee109034dde8
[]
no_license
rushioda/PIXELVALID_athena
90befe12042c1249cbb3655dde1428bb9b9a42ce
22df23187ef85e9c3120122c8375ea0e7d8ea440
refs/heads/master
2020-12-14T22:01:15.365949
2020-01-19T03:59:35
2020-01-19T03:59:35
234,836,993
1
0
null
null
null
null
UTF-8
C++
false
false
2,824
cxx
GRLReader.cxx
/* Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration */ #define GRLReader_cxx #include "../MuonCalibrationFit/GRLReader.h" GRLReader::GRLReader( string grl_name ) { string line; ifstream grl_file( grl_name.c_str() ); vector< string > all_runs; if( grl_file.is_open() ) { //regex the_reg( "<Run>(\\d+)</Run>" ); //cmatch the_match; boost::regex the_reg( "<Run>(\\d+)</Run>" ); boost::smatch the_match; while( getline( grl_file, line ) ) { //if( regex_match( line.c_str(), the_match, the_reg ) ) { if( boost::regex_match( line, the_match, the_reg, boost::match_extra ) ) { all_runs.push_back( the_match[ 1 ] ); } } grl_file.close(); } for( auto run_s : all_runs ) { int run = atoi( run_s.c_str() ); bool found_run_line = false; grl_file.open( grl_name.c_str() ); grl_vec vec; if( grl_file.is_open() ) { //regex run_reg( "<Run>" + run_s + "</Run>" ); //regex lb_reg( "<LBRange Start=\"(\\d+)\" End=\"(\\d+)\"/>" ); //regex end_reg( "</LumiBlockCollection>" ); //cmatch lb_match; boost::regex run_reg( "<Run>" + run_s + "</Run>" ); boost::regex lb_reg( "<LBRange Start=\"(\\d+)\" End=\"(\\d+)\"/>" ); boost::regex end_reg( "</LumiBlockCollection>" ); boost::smatch lb_match; while( getline( grl_file, line ) ) { //if( regex_match( line.c_str(), end_reg ) ) found_run_line = false; //if( regex_match( line.c_str(), run_reg ) ) found_run_line = true; if( boost::regex_match( line.c_str(), end_reg ) ) found_run_line = false; if( boost::regex_match( line.c_str(), run_reg ) ) found_run_line = true; if( found_run_line ) { //if( regex_match( line.c_str(), lb_match, lb_reg ) ) { if( boost::regex_match( line, lb_match, lb_reg, boost::match_extra ) ) { vec.push_back( make_pair( atoi( ( lb_match[ 1 ].str() ).c_str() ), atoi( ( lb_match[ 2 ].str() ).c_str() ) ) ); } } } grl_file.close(); } m_map[ run ] = vec; } //::: //Print(); } GRLReader::~GRLReader() { } void GRLReader::Print() { for( auto& key_value : m_map ) { cout << " Loaded Run: " << key_value.first << endl; int i = 1; for( auto& element : key_value.second ) { cout << " Interval #" << i << ": " << element.first << " -> " << element.second << endl; i++; } } } bool GRLReader::PassGRL( int run, int lumiblock ) { if( m_map.find( run ) != m_map.end() ) { bool found_good_range = false; for( grl_vec::iterator itr = m_map[ run ].begin(); itr != m_map[ run ].end(); ++itr ) { if( ( *itr ).first <= lumiblock && lumiblock <= ( *itr ).second ) found_good_range = true; } return found_good_range; } else return false; }
9e32f9c187c64061706a3a612a4bdbbf4b3b716c
1dbf007249acad6038d2aaa1751cbde7e7842c53
/cfw/src/v1/model/UpdateRuleAclDto.cpp
9f1ff602b0968756d04240b7170dc36a9497ef89
[]
permissive
huaweicloud/huaweicloud-sdk-cpp-v3
24fc8d93c922598376bdb7d009e12378dff5dd20
71674f4afbb0cd5950f880ec516cfabcde71afe4
refs/heads/master
2023-08-04T19:37:47.187698
2023-08-03T08:25:43
2023-08-03T08:25:43
324,328,641
11
10
Apache-2.0
2021-06-24T07:25:26
2020-12-25T09:11:43
C++
UTF-8
C++
false
false
15,092
cpp
UpdateRuleAclDto.cpp
#include "huaweicloud/cfw/v1/model/UpdateRuleAclDto.h" namespace HuaweiCloud { namespace Sdk { namespace Cfw { namespace V1 { namespace Model { UpdateRuleAclDto::UpdateRuleAclDto() { addressType_ = 0; addressTypeIsSet_ = false; name_ = ""; nameIsSet_ = false; sequenceIsSet_ = false; direction_ = 0; directionIsSet_ = false; actionType_ = 0; actionTypeIsSet_ = false; status_ = 0; statusIsSet_ = false; description_ = ""; descriptionIsSet_ = false; longConnectTimeHour_ = 0L; longConnectTimeHourIsSet_ = false; longConnectTimeMinute_ = 0L; longConnectTimeMinuteIsSet_ = false; longConnectTimeSecond_ = 0L; longConnectTimeSecondIsSet_ = false; longConnectTime_ = 0L; longConnectTimeIsSet_ = false; longConnectEnable_ = 0; longConnectEnableIsSet_ = false; sourceIsSet_ = false; destinationIsSet_ = false; serviceIsSet_ = false; type_ = 0; typeIsSet_ = false; } UpdateRuleAclDto::~UpdateRuleAclDto() = default; void UpdateRuleAclDto::validate() { } web::json::value UpdateRuleAclDto::toJson() const { web::json::value val = web::json::value::object(); if(addressTypeIsSet_) { val[utility::conversions::to_string_t("address_type")] = ModelBase::toJson(addressType_); } if(nameIsSet_) { val[utility::conversions::to_string_t("name")] = ModelBase::toJson(name_); } if(sequenceIsSet_) { val[utility::conversions::to_string_t("sequence")] = ModelBase::toJson(sequence_); } if(directionIsSet_) { val[utility::conversions::to_string_t("direction")] = ModelBase::toJson(direction_); } if(actionTypeIsSet_) { val[utility::conversions::to_string_t("action_type")] = ModelBase::toJson(actionType_); } if(statusIsSet_) { val[utility::conversions::to_string_t("status")] = ModelBase::toJson(status_); } if(descriptionIsSet_) { val[utility::conversions::to_string_t("description")] = ModelBase::toJson(description_); } if(longConnectTimeHourIsSet_) { val[utility::conversions::to_string_t("long_connect_time_hour")] = ModelBase::toJson(longConnectTimeHour_); } if(longConnectTimeMinuteIsSet_) { val[utility::conversions::to_string_t("long_connect_time_minute")] = ModelBase::toJson(longConnectTimeMinute_); } if(longConnectTimeSecondIsSet_) { val[utility::conversions::to_string_t("long_connect_time_second")] = ModelBase::toJson(longConnectTimeSecond_); } if(longConnectTimeIsSet_) { val[utility::conversions::to_string_t("long_connect_time")] = ModelBase::toJson(longConnectTime_); } if(longConnectEnableIsSet_) { val[utility::conversions::to_string_t("long_connect_enable")] = ModelBase::toJson(longConnectEnable_); } if(sourceIsSet_) { val[utility::conversions::to_string_t("source")] = ModelBase::toJson(source_); } if(destinationIsSet_) { val[utility::conversions::to_string_t("destination")] = ModelBase::toJson(destination_); } if(serviceIsSet_) { val[utility::conversions::to_string_t("service")] = ModelBase::toJson(service_); } if(typeIsSet_) { val[utility::conversions::to_string_t("type")] = ModelBase::toJson(type_); } return val; } bool UpdateRuleAclDto::fromJson(const web::json::value& val) { bool ok = true; if(val.has_field(utility::conversions::to_string_t("address_type"))) { const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("address_type")); if(!fieldValue.is_null()) { int32_t refVal; ok &= ModelBase::fromJson(fieldValue, refVal); setAddressType(refVal); } } if(val.has_field(utility::conversions::to_string_t("name"))) { const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("name")); if(!fieldValue.is_null()) { std::string refVal; ok &= ModelBase::fromJson(fieldValue, refVal); setName(refVal); } } if(val.has_field(utility::conversions::to_string_t("sequence"))) { const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("sequence")); if(!fieldValue.is_null()) { OrderRuleAclDto refVal; ok &= ModelBase::fromJson(fieldValue, refVal); setSequence(refVal); } } if(val.has_field(utility::conversions::to_string_t("direction"))) { const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("direction")); if(!fieldValue.is_null()) { int32_t refVal; ok &= ModelBase::fromJson(fieldValue, refVal); setDirection(refVal); } } if(val.has_field(utility::conversions::to_string_t("action_type"))) { const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("action_type")); if(!fieldValue.is_null()) { int32_t refVal; ok &= ModelBase::fromJson(fieldValue, refVal); setActionType(refVal); } } if(val.has_field(utility::conversions::to_string_t("status"))) { const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("status")); if(!fieldValue.is_null()) { int32_t refVal; ok &= ModelBase::fromJson(fieldValue, refVal); setStatus(refVal); } } if(val.has_field(utility::conversions::to_string_t("description"))) { const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("description")); if(!fieldValue.is_null()) { std::string refVal; ok &= ModelBase::fromJson(fieldValue, refVal); setDescription(refVal); } } if(val.has_field(utility::conversions::to_string_t("long_connect_time_hour"))) { const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("long_connect_time_hour")); if(!fieldValue.is_null()) { int64_t refVal; ok &= ModelBase::fromJson(fieldValue, refVal); setLongConnectTimeHour(refVal); } } if(val.has_field(utility::conversions::to_string_t("long_connect_time_minute"))) { const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("long_connect_time_minute")); if(!fieldValue.is_null()) { int64_t refVal; ok &= ModelBase::fromJson(fieldValue, refVal); setLongConnectTimeMinute(refVal); } } if(val.has_field(utility::conversions::to_string_t("long_connect_time_second"))) { const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("long_connect_time_second")); if(!fieldValue.is_null()) { int64_t refVal; ok &= ModelBase::fromJson(fieldValue, refVal); setLongConnectTimeSecond(refVal); } } if(val.has_field(utility::conversions::to_string_t("long_connect_time"))) { const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("long_connect_time")); if(!fieldValue.is_null()) { int64_t refVal; ok &= ModelBase::fromJson(fieldValue, refVal); setLongConnectTime(refVal); } } if(val.has_field(utility::conversions::to_string_t("long_connect_enable"))) { const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("long_connect_enable")); if(!fieldValue.is_null()) { int32_t refVal; ok &= ModelBase::fromJson(fieldValue, refVal); setLongConnectEnable(refVal); } } if(val.has_field(utility::conversions::to_string_t("source"))) { const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("source")); if(!fieldValue.is_null()) { RuleAddressDto refVal; ok &= ModelBase::fromJson(fieldValue, refVal); setSource(refVal); } } if(val.has_field(utility::conversions::to_string_t("destination"))) { const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("destination")); if(!fieldValue.is_null()) { RuleAddressDto refVal; ok &= ModelBase::fromJson(fieldValue, refVal); setDestination(refVal); } } if(val.has_field(utility::conversions::to_string_t("service"))) { const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("service")); if(!fieldValue.is_null()) { RuleServiceDto refVal; ok &= ModelBase::fromJson(fieldValue, refVal); setService(refVal); } } if(val.has_field(utility::conversions::to_string_t("type"))) { const web::json::value& fieldValue = val.at(utility::conversions::to_string_t("type")); if(!fieldValue.is_null()) { int32_t refVal; ok &= ModelBase::fromJson(fieldValue, refVal); setType(refVal); } } return ok; } int32_t UpdateRuleAclDto::getAddressType() const { return addressType_; } void UpdateRuleAclDto::setAddressType(int32_t value) { addressType_ = value; addressTypeIsSet_ = true; } bool UpdateRuleAclDto::addressTypeIsSet() const { return addressTypeIsSet_; } void UpdateRuleAclDto::unsetaddressType() { addressTypeIsSet_ = false; } std::string UpdateRuleAclDto::getName() const { return name_; } void UpdateRuleAclDto::setName(const std::string& value) { name_ = value; nameIsSet_ = true; } bool UpdateRuleAclDto::nameIsSet() const { return nameIsSet_; } void UpdateRuleAclDto::unsetname() { nameIsSet_ = false; } OrderRuleAclDto UpdateRuleAclDto::getSequence() const { return sequence_; } void UpdateRuleAclDto::setSequence(const OrderRuleAclDto& value) { sequence_ = value; sequenceIsSet_ = true; } bool UpdateRuleAclDto::sequenceIsSet() const { return sequenceIsSet_; } void UpdateRuleAclDto::unsetsequence() { sequenceIsSet_ = false; } int32_t UpdateRuleAclDto::getDirection() const { return direction_; } void UpdateRuleAclDto::setDirection(int32_t value) { direction_ = value; directionIsSet_ = true; } bool UpdateRuleAclDto::directionIsSet() const { return directionIsSet_; } void UpdateRuleAclDto::unsetdirection() { directionIsSet_ = false; } int32_t UpdateRuleAclDto::getActionType() const { return actionType_; } void UpdateRuleAclDto::setActionType(int32_t value) { actionType_ = value; actionTypeIsSet_ = true; } bool UpdateRuleAclDto::actionTypeIsSet() const { return actionTypeIsSet_; } void UpdateRuleAclDto::unsetactionType() { actionTypeIsSet_ = false; } int32_t UpdateRuleAclDto::getStatus() const { return status_; } void UpdateRuleAclDto::setStatus(int32_t value) { status_ = value; statusIsSet_ = true; } bool UpdateRuleAclDto::statusIsSet() const { return statusIsSet_; } void UpdateRuleAclDto::unsetstatus() { statusIsSet_ = false; } std::string UpdateRuleAclDto::getDescription() const { return description_; } void UpdateRuleAclDto::setDescription(const std::string& value) { description_ = value; descriptionIsSet_ = true; } bool UpdateRuleAclDto::descriptionIsSet() const { return descriptionIsSet_; } void UpdateRuleAclDto::unsetdescription() { descriptionIsSet_ = false; } int64_t UpdateRuleAclDto::getLongConnectTimeHour() const { return longConnectTimeHour_; } void UpdateRuleAclDto::setLongConnectTimeHour(int64_t value) { longConnectTimeHour_ = value; longConnectTimeHourIsSet_ = true; } bool UpdateRuleAclDto::longConnectTimeHourIsSet() const { return longConnectTimeHourIsSet_; } void UpdateRuleAclDto::unsetlongConnectTimeHour() { longConnectTimeHourIsSet_ = false; } int64_t UpdateRuleAclDto::getLongConnectTimeMinute() const { return longConnectTimeMinute_; } void UpdateRuleAclDto::setLongConnectTimeMinute(int64_t value) { longConnectTimeMinute_ = value; longConnectTimeMinuteIsSet_ = true; } bool UpdateRuleAclDto::longConnectTimeMinuteIsSet() const { return longConnectTimeMinuteIsSet_; } void UpdateRuleAclDto::unsetlongConnectTimeMinute() { longConnectTimeMinuteIsSet_ = false; } int64_t UpdateRuleAclDto::getLongConnectTimeSecond() const { return longConnectTimeSecond_; } void UpdateRuleAclDto::setLongConnectTimeSecond(int64_t value) { longConnectTimeSecond_ = value; longConnectTimeSecondIsSet_ = true; } bool UpdateRuleAclDto::longConnectTimeSecondIsSet() const { return longConnectTimeSecondIsSet_; } void UpdateRuleAclDto::unsetlongConnectTimeSecond() { longConnectTimeSecondIsSet_ = false; } int64_t UpdateRuleAclDto::getLongConnectTime() const { return longConnectTime_; } void UpdateRuleAclDto::setLongConnectTime(int64_t value) { longConnectTime_ = value; longConnectTimeIsSet_ = true; } bool UpdateRuleAclDto::longConnectTimeIsSet() const { return longConnectTimeIsSet_; } void UpdateRuleAclDto::unsetlongConnectTime() { longConnectTimeIsSet_ = false; } int32_t UpdateRuleAclDto::getLongConnectEnable() const { return longConnectEnable_; } void UpdateRuleAclDto::setLongConnectEnable(int32_t value) { longConnectEnable_ = value; longConnectEnableIsSet_ = true; } bool UpdateRuleAclDto::longConnectEnableIsSet() const { return longConnectEnableIsSet_; } void UpdateRuleAclDto::unsetlongConnectEnable() { longConnectEnableIsSet_ = false; } RuleAddressDto UpdateRuleAclDto::getSource() const { return source_; } void UpdateRuleAclDto::setSource(const RuleAddressDto& value) { source_ = value; sourceIsSet_ = true; } bool UpdateRuleAclDto::sourceIsSet() const { return sourceIsSet_; } void UpdateRuleAclDto::unsetsource() { sourceIsSet_ = false; } RuleAddressDto UpdateRuleAclDto::getDestination() const { return destination_; } void UpdateRuleAclDto::setDestination(const RuleAddressDto& value) { destination_ = value; destinationIsSet_ = true; } bool UpdateRuleAclDto::destinationIsSet() const { return destinationIsSet_; } void UpdateRuleAclDto::unsetdestination() { destinationIsSet_ = false; } RuleServiceDto UpdateRuleAclDto::getService() const { return service_; } void UpdateRuleAclDto::setService(const RuleServiceDto& value) { service_ = value; serviceIsSet_ = true; } bool UpdateRuleAclDto::serviceIsSet() const { return serviceIsSet_; } void UpdateRuleAclDto::unsetservice() { serviceIsSet_ = false; } int32_t UpdateRuleAclDto::getType() const { return type_; } void UpdateRuleAclDto::setType(int32_t value) { type_ = value; typeIsSet_ = true; } bool UpdateRuleAclDto::typeIsSet() const { return typeIsSet_; } void UpdateRuleAclDto::unsettype() { typeIsSet_ = false; } } } } } }
66734db7d0281d8606696e94d7693d1fc7435cf8
096728b65053d713d3ef56dc598ab4090a6f74e2
/test.cpp
b556b721fa77e0c4113a26ded85fc33b55ce0eeb
[]
no_license
ds1993/abstract_factory_test
87b310a420112cffcdd974627c60987e10b1f5d4
365170d36cbd455ba68a34b5ee6846814f36470c
refs/heads/master
2021-01-25T13:18:08.765223
2018-03-05T03:41:32
2018-03-05T03:41:32
123,550,700
0
1
null
null
null
null
UTF-8
C++
false
false
137
cpp
test.cpp
#include "MazeFactory.h" #include "MazeGame.h" int main() { MazeFactory factory; MazeGame maze; maze.CreateMaze(factory); }
b2be34e0c37d9b8b84f9a217f446957ccb694060
7abfebc6b47be941e3f915428e803785286a9872
/smartWatch_v2/smartWatch_v2.ino
2e4557cddae2f08b15968b394fcb853ecc854e6a
[]
no_license
mumahack/flirtyDancing
26bd73c67212fa7a37ce32a31fadbddcd7e692f3
6367cac9d7a2947bb8c2992a6be86003e34179e1
refs/heads/master
2021-08-24T11:58:06.605762
2017-12-09T17:15:21
2017-12-09T17:15:21
113,670,182
0
0
null
null
null
null
UTF-8
C++
false
false
9,698
ino
smartWatch_v2.ino
#include "Arduino.h" #include "Servo.h" #include "SimpleTimer.h" #include "Adafruit_NeoPixel.h" #include "Adafruit_GFX.h" #include "Adafruit_SSD1306.h" #include "Adafruit_MPR121.h" #include <EEPROM.h> #include <RtcDS3231.h> // //TODO _> I2c DS1302 or DS3231 //#define TIME_24_HOUR false //RTC_DS1307 rtc = RTC_DS1307(); int hours = 0; int minutes = 0; int seconds = 0; bool blinkColon = false; int16_t ax, ay, az, gx, gy, gz; const int MPU_addr=0x68; // I2C address of the MPU-6050 /* I2C device found at address 0x3C ! I2C device found at address 0x50 ! I2C device found at address 0x68 ! I2C device found at address 0x69 */ #define OLED_RESET D1 // Not Connected, software just requires it #define PIXEL_COUNT 60 // need to count #define defaultBrightness 100 // should I reserve energy? #define PIX_PIN D1 #define SWITCH_PIN D7 SimpleTimer timer; Servo stamperl; Servo compensation; Adafruit_SSD1306 display(OLED_RESET); Adafruit_MPR121 cap = Adafruit_MPR121(); #if I2CDEV_IMPLEMENTATION == I2CDEV_ARDUINO_WIRE #include "Wire.h" #endif RtcDS3231<TwoWire> Rtc(Wire); Adafruit_NeoPixel strip = Adafruit_NeoPixel(PIXEL_COUNT, PIX_PIN, NEO_GRB + NEO_KHZ800); const char *ssid = "Anton-0tcsbiez6m"; // "Berta-8axlgha56g" const char *password = "spoon"; volatile int dancedTonight = 0; volatile int currentActivity = 4; // unfortunately inverted... volatile unsigned long sum = 0; volatile unsigned long meanValue = 0; int sumCount = 0; int sampleRate = 5; long meanActivitySum = 0; int meanActivityCounter = 0; int meanActivitySampleRate = 10; void setup() { EEPROM.begin(512); //storeVal(3,0); Serial.begin(9600); Wire.begin(D2,D3); pinMode(SWITCH_PIN, INPUT_PULLUP); initDisplay(); welcome(); initMPU(); strip.begin(); strip.setBrightness(defaultBrightness); // should be stored in EEPROM strip.show(); delay(1000); Rtc.Begin(); RtcDateTime now = Rtc.GetDateTime(); // day month int lastDancedMonth = restoreVal(1); int lastDancedDay = restoreVal(2); if(now.Month() != lastDancedMonth || now.Day() != lastDancedDay){ storeVal(1, now.Month()); storeVal(2, now.Day()); storeVal(3,dancedTonight); storeVal(4,currentActivity); }else{ dancedTonight = restoreVal(3); currentActivity = restoreVal(4); } updateDanced(); // will be called by readyFordanced timer.setInterval(50, animateLed); timer.setInterval(100, readActivity); timer.setInterval(1000, readyForDanced); // at first to fake it just press timer.setInterval(1000, updateOLED); pinMode(SWITCH_PIN, INPUT_PULLUP); } //---------------------------------------------------------------------- void loop() { // main loop does not need to be changed //---------------------------------------------------------------------- //Serial.println(analogRead(A0)); // microphone //Serial.println(digitalRead(SWITCH_PIN)); // push button timer.run(); } void showClock(){ RtcDateTime now = Rtc.GetDateTime(); display.clearDisplay(); showBigAtLineWith(0, String(now.Month()) + "/" + String(now.Day())); showBigAtLineWith(1, String(now.Hour()) + ":" + String(now.Minute()) + ":" + String(now.Second()) ); display.display(); } void updateDanced(){ strip.clear(); for( int i = 0; i < dancedTonight; i++){ strip.setPixelColor(i, 0xffffff); } strip.show(); } void readActivity(){ readMPU(); if(sumCount >= sampleRate){ meanValue = sum/(sampleRate + 1); sum = 0; sumCount = 0; //meanActivitySum = map(); meanActivitySum += map(meanValue, 1600, 1800, 0, 4); meanActivityCounter++; if(meanActivityCounter >= meanActivitySampleRate){ if(currentActivity > meanActivitySum/(meanActivitySampleRate + 1)){ if(currentActivity > 0){ currentActivity--; } }else if(currentActivity < meanActivitySum/(meanActivitySampleRate + 1)){ if(currentActivity < 4){ currentActivity++; } } storeVal(4,currentActivity); meanActivitySum = 0; meanActivitySampleRate = 0; } }else{ sum += abs(ax)/10 + abs(ay)/10 + abs(az)/10; //sum += abs(gx)/10 + abs(gy)/10 + abs(gz)/10; sumCount++; } } void updateOLED(){ showOneLine(String(currentActivity)); } int ledState = HIGH; int buttonState; // the current reading from the input pin int lastButtonState = LOW; // the previous reading from the input pin // the following variables are unsigned long's because the time, measured in miliseconds, // will quickly become a bigger number than can be stored in an int. unsigned long lastDebounceTime = 0; // the last time the output pin was toggled unsigned long debounceDelay = 50; void readyForDanced(){ int reading = digitalRead(SWITCH_PIN); if(reading == LOW){ if(dancedTonight < 8){ dancedTonight++; storeVal(3,dancedTonight); updateDanced(); } else { dancedTonight = 0; storeVal(3,dancedTonight); updateDanced(); } } } //---------------------------------------------------------------------- void showOneLine(String message){ //---------------------------------------------------------------------- display.clearDisplay(); display.setTextSize(2); display.setTextColor(WHITE); display.setCursor(0,0); display.println(message); display.display(); } //---------------------------------------------------------------------- void showAtLineWith(int line, String message){ //---------------------------------------------------------------------- //display.clearDisplay(); // we want to be able to cascadate display.setTextSize(1); display.setTextColor(WHITE); display.setCursor(0,line*8); display.println(message); //display.display(); // -> ugly updating } //---------------------------------------------------------------------- void showBigAtLineWith(int line, String message){ //---------------------------------------------------------------------- //display.clearDisplay(); // we want to be able to cascadate display.setTextSize(2); display.setTextColor(WHITE); display.setCursor(0,line*16); display.println(message); //display.display(); // -> ugly updating } //---------------------------------------------------------------------- void initDisplay(){ //---------------------------------------------------------------------- display.begin(SSD1306_SWITCHCAPVCC, 0x3c); display.clearDisplay(); display.display(); } //---------------------------------------------------------------------- void welcome(){ //---------------------------------------------------------------------- display.clearDisplay(); showBigAtLineWith(0, "FLIRTY"); showBigAtLineWith(1, "DANCING <3"); display.display(); } void initMPU(){ Wire.beginTransmission(MPU_addr); Wire.write(0x6B); // PWR_MGMT_1 register Wire.write(0); // set to zero (wakes up the MPU-6050) Wire.endTransmission(true); Serial.write("Initiating MPU"); } void readMPU(){ Wire.beginTransmission(MPU_addr); Wire.write(0x3B); // starting with register 0x3B (ACCEL_XOUT_H) Wire.endTransmission(false); Wire.requestFrom(MPU_addr,14,true); // request a total of 14 registers gx=Wire.read()<<8|Wire.read(); // 0x3B (ACCEL_XOUT_H) & 0x3C (ACCEL_XOUT_L) gy=Wire.read()<<8|Wire.read(); // 0x3D (ACCEL_YOUT_H) & 0x3E (ACCEL_YOUT_L) gz=Wire.read()<<8|Wire.read(); // 0x3F (ACCEL_ZOUT_H) & 0x40 (ACCEL_ZOUT_L) int temperature=Wire.read()<<8|Wire.read(); // 0x41 (TEMP_OUT_H) & 0x42 (TEMP_OUT_L) ax=Wire.read()<<8|Wire.read(); // 0x43 (GYRO_XOUT_H) & 0x44 (GYRO_XOUT_L) ay=Wire.read()<<8|Wire.read(); // 0x45 (GYRO_YOUT_H) & 0x46 (GYRO_YOUT_L) az=Wire.read()<<8|Wire.read(); // 0x47 (GYRO_ZOUT_H) & 0x48 (GYRO_ZOUT_L) Serial.print("AcX = "); Serial.print(ax); Serial.print(" | AcY = "); Serial.print(ay); Serial.print(" | AcZ = "); Serial.print(az); Serial.println(); //Serial.print(" | Tmp = "); Serial.print(temperature/340.00+36.53); //equation for temperature in degrees C from datasheet Serial.print(" | GyX = "); Serial.print(gx); Serial.print(" | GyY = "); Serial.print(gy); Serial.print(" | GyZ = "); Serial.println(gz); //gx -> pitch //gy -> roll // gz -> az //ax -> roll acc //ay -> pitch acc //az -> yaw acc } //---------------------------------------------------------------------- void storeVal(int addr, int val){ //---------------------------------------------------------------------- EEPROM.write(addr, val); EEPROM.commit(); } //---------------------------------------------------------------------- int restoreVal(int addr){ //---------------------------------------------------------------------- return EEPROM.read(addr); } uint32_t Wheel(byte WheelPos) { WheelPos = 255 - WheelPos; if(WheelPos < 85) { return strip.Color(255 - WheelPos * 3, 0, WheelPos * 3); } if(WheelPos < 170) { WheelPos -= 85; return strip.Color(0, WheelPos * 3, 255 - WheelPos * 3); } WheelPos -= 170; return strip.Color(WheelPos * 3, 255 - WheelPos * 3, 0); } void animateLed() { uint16_t minimum, maximum; switch (currentActivity) { case 4: // violet minimum = 210; maximum = 230; break; case 3: // blue minimum = 120; maximum = 160; break; case 2: // green minimum = 50; maximum = 70; break; case 1: // yellow minimum = 28; maximum = 40; break; default: // red minimum = 0; maximum = 14; } for(int i=8; i < 16; i++) { strip.setPixelColor(i, 0x000000); } for(int i=8; i < 9 + (8 - currentActivity * 2) ; i++) { strip.setPixelColor(i, Wheel(random(minimum, maximum))); } strip.show(); }
d2881b037e98afa777f060cff11311880840be29
75dec89e66e21eeb173eda353dc2549dcbb25a0e
/Leetcode/c_200_Number_of_Islands.cpp
542cb134b0dc2daf1ac75107ff56e290db483932
[]
no_license
chenghu17/Algorithm
459569b1cf62f96b767ea00bb04c08fe4ff60897
d54e5b8435db8975e5938933c49807a2bfe3ca20
refs/heads/master
2022-03-13T02:37:18.263752
2019-10-14T10:16:07
2019-10-14T10:16:07
118,882,001
1
1
null
null
null
null
UTF-8
C++
false
false
3,181
cpp
c_200_Number_of_Islands.cpp
// // Created by Mr.Hu on 2018/8/14. // // leetcode 200 number of islands // // 题目给定一个二维的数组来表示一块区域,其中1表示岛屿,0表示海洋,要求求出岛屿的个数。 // 其中如果在垂直或水平方向上有连续的1,则说明是一个岛屿 // // 这个题目之前遇到过,大致解题思想还记得。 // 对于这样一个区域,如果存在某个位置为1,则我们需要继续去判断其上下左右是否也为1, // 如果其上下左右在这个区域内,且存在为1,则继续判断当前位置的上下左右是否为1。很容易想到用递归的思想。 // // 既然是每次判断上下左右是否为1,我们也可以把这个思路转换为图来考虑,这样解题的本质就是一个深度优先搜索。 // 其中值得注意的是,每次判断一个位置为1后,我们需要将这个位置赋值为0,这样避免重复死循环操作。 // // 最后我在写代码的时候,发现一个影响执行效率的地方:在numIslands()方法的双层for循环中,刚开始如果 // 区域为1,我会去调用四次islands()方法,即去判断其上下左右位置上是否存在连续的1。 // 但其实这个操作在islands中也会执行,所以我这样做导致递归操作并不是很完整。 // 所以在numIslands()中,只是去判断当前位置是否为1,一旦为1,则进入islands方法中,将该位置赋值为0, // 同时判断其他位置的情况。这样执行效率击败比例从2%提高到98%。 // 这样做之所以奏效,可能是因为我在不同的地方调用多次islands方法,会在内存中产生多个存储区, // 而如果直接用递归,则可能会在原来存储区的基础上进行执行。 // #include <iostream> #include <vector> using namespace std; class Solution { public: // 递归 // 深度优先搜索 void Islands(vector<vector<char>> &grid, int row, int col) { if (row < 0 || row >= grid.size() || col < 0 || col >= grid[0].size()) { return; } if (grid[row][col] == '1') { grid[row][col] = '0'; Islands(grid, row + 1, col); Islands(grid, row - 1, col); Islands(grid, row, col + 1); Islands(grid, row, col - 1); } } int numIslands(vector<vector<char>> &grid) { int result = 0; for (int i = 0; i < grid.size(); ++i) { for (int j = 0; j < grid[0].size(); ++j) { if (grid[i][j] == '1') { ++result; Islands(grid, i, j); } } } return result; } }; int main() { vector<vector<char>> grid; vector<char> grid_row; for (int i = 0; i < 4; ++i) { grid_row.emplace_back('1'); grid_row.emplace_back('1'); grid_row.emplace_back('1'); grid_row.emplace_back('1'); grid_row.emplace_back('0'); grid.emplace_back(grid_row); grid_row.clear(); } Solution solution; int numsofislands = solution.numIslands(grid); cout << "the count of islands is " << numsofislands << endl; return 0; }
a70851c78130323c4488febbbc4f4c8cefa1e50c
2f400d77e43ef968deba3156187bbe439359685d
/TestFtpClient/TestFtpClient/FtpClient.h
2f7d3a990da0fa925c571efb9c6a5fb080a52e7c
[]
no_license
agmzg/FtpClient
a52304f2415b83818a69d41e26403efffffc35b7
1f1d93810cacd45fbd21d8586213a4139d207287
refs/heads/master
2021-01-04T14:06:19.236412
2017-08-01T14:10:00
2017-08-01T14:10:00
98,971,080
0
1
null
null
null
null
UTF-8
C++
false
false
3,350
h
FtpClient.h
#ifndef _FtpClient_H_ #define _FtpClient_H_ #include <string> #include <vector> #include <deque> #include <curl/curl.h> #include <Poco/Mutex.h> #include <Poco/Thread.h> #include <Poco/Runnable.h> #include "AtomicBool.h" class ProgressObserver { public: virtual ~ProgressObserver(){} virtual void OnUploadProgress( const std::string &sFileName, long iCurSize, long iTotalSize) = 0; virtual void OnDownloadProgress( const std::string &sFileName, long iCurSize, long iTotalSize) = 0; }; class FtpClient; struct FtpParam { FILE *pFileHandle; std::string sFileName; long iCurSize; long iTotalSize; FtpClient *pClient; void (FtpClient::*pFunc)(const void*); volatile bool bCancel; Poco::FastMutex theMutex; }; class FtpClient : public Poco::Runnable , private Poco::Thread { enum OptMode { Unknown, Upload, Download, }; public: FtpClient(const std::string &sUserPwd = "admin:123456"); ~FtpClient(); void SetUserPwd(const std::string &sUserPwd); const std::string GetUserPwd() const; bool RegisterObserver(ProgressObserver *observer); bool UnRegisterObserver(ProgressObserver *observer); bool GetCurProcess( std::string &sFileName, long &iCurSize, long &iTotalSize); bool UploadFileSync( const std::string &sRemotePath, const std::string &sLocalPath, const std::string &sUserPwd = ""); bool UploadFileAsync( const std::string &sRemotePath, const std::string &sLocalPath, const std::string &sUserPwd = ""); bool UploadDirAllFilesAsync( const std::string &sRemoteDirectory, const std::string &sLocalDirectory, const std::string &sUserPwd = ""); bool UploadDirMatchedFilesAsync( const std::string &sRemoteDirectory, const std::string &sLocalDirectory, const std::vector<std::string> &vectMatch, bool bMatch = true, const std::string &sUserPwd = ""); bool DownloadFileSync( const std::string &sRemotePath, const std::string &sLocalPath, const std::string &sUserPwd = ""); bool DownloadFileAsync( const std::string &sRemotePath, const std::string &sLocalPath, const std::string &sUserPwd = ""); bool AwaitResult(); bool Cancel(); protected: void run(); private: bool SetStartState(const std::string &sUserPwd, OptMode eCurOptMode); bool UploadFileImpl( const std::string &sRemotePath, const std::string &sLocalPath, int iTimeout); bool DownloadFileImpl( const std::string &sRemotePath, const std::string &sLocalPath, int iTimeout); void OnUpload(const void *pParam); void OnDownLoad(const void *pParam); FtpClient(const FtpClient &rhs); FtpClient & operator=(const FtpClient &rhs); private: std::vector<ProgressObserver *> m_Observers; std::deque<std::pair<std::string, std::string> > m_UploadTasks; Poco::FastMutex m_CallbackMutex; std::string m_sLocalPath; std::string m_sRemotePath; std::string m_sUserPwd; OptMode m_eCurOptMode; bool m_bOptResult; FtpParam m_FtpParam; AtomicBool m_bRoutineStart; }; #endif // _FtpClient_H_
76ff61291b2b83b1102f75722beddb8b31c91774
24be8a8674bebc94db474388c51b346681938f5d
/GlobalVar.h
029dcab7f03f05caf9ae5ede11ed2a8aedbf6a81
[]
no_license
armear3000/Platform-allegro
b87318626ae0ca66208b966faefa595d6033d61b
e69363a108842928f246a95bd6fd9ba6e8e993c3
refs/heads/master
2020-05-01T17:30:49.275894
2019-03-26T16:58:18
2019-03-26T16:58:18
177,601,542
0
0
null
null
null
null
UTF-8
C++
false
false
638
h
GlobalVar.h
#define _CRT_SECURE_NO_WARNINGS #include <cstdlib> #include <allegro5/allegro.h> #include <allegro5/allegro_primitives.h> #include <allegro5/allegro5.h> #include <allegro5/allegro_image.h> #include <allegro5/allegro_font.h> #include <allegro5/allegro_ttf.h> #include <allegro5/allegro_native_dialog.h> #include <math.h> #include <stdio.h> #include <conio.h> #include <stdlib.h> #include "DevicesAndButtons.h" using namespace std; #ifndef GLOBALVAR #define GLOBALVAR ALLEGRO_DISPLAY *display; ALLEGRO_FONT *font24 = NULL; int width = 800; int height = 600; mouses mouse; keyboards kboard; #endif
0c07c71d52ace7bc9ff4c3196436ccbfd1585495
d209bace8bcf307448316c356578f1d602f140c1
/suturo_manipulation_move_robot/include/suturo_manipulation_move_robot.h
a5230534b02f0645b440c66a7d44284e328d964d
[]
no_license
SUTURO/legacy_suturo_manipulation
39de35adc0388e2513d85e843ec6e1ddab3ea1c8
200c4da883279af4f7d9b991061d81d42259dd76
refs/heads/master
2021-05-29T16:59:41.057026
2014-05-16T11:07:09
2014-05-16T11:07:09
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,404
h
suturo_manipulation_move_robot.h
#ifndef SUTURO_MANIPULATION_MOVE_ROBOT #define SUTURO_MANIPULATION_MOVE_ROBOT #include <iostream> #include <ros/ros.h> #include <geometry_msgs/Twist.h> #include <geometry_msgs/PoseWithCovarianceStamped.h> #include <geometry_msgs/PoseStamped.h> #include <tf/transform_listener.h> #include <tf/transform_datatypes.h> #include <suturo_manipulation_planning_scene_interface.h> #include <sensor_msgs/LaserScan.h> #include <cmath> #include <moveit/robot_model_loader/robot_model_loader.h> #include <moveit/planning_scene/planning_scene.h> #include <moveit/planning_scene_monitor/planning_scene_monitor.h> #include <moveit/kinematic_constraints/utils.h> #include <boost/signals2/mutex.hpp> #include <fstream> #include <ReflexxesAPI.h> #include <suturo_manipulation_2d_interpolator.h> class Suturo_Manipulation_Move_Robot { private: const static double footprint_radius = 0.5; //0.47 //! The node handle we'll be using ros::NodeHandle *nh_; //! We will be publishing to the "/base_controller/command" topic to issue commands ros::Publisher cmd_vel_pub_; //publishes planningscenes created during collisiondetection ros::Publisher coll_ps_pub_; // Localisation subscriber ros::Subscriber loc_sub_; // Subscriber for laserscan ros::Subscriber collision_sub_; // robot position geometry_msgs::PoseStamped robotPose_; // twist message geometry_msgs::Twist base_cmd_; // tf listener for transformations tf::TransformListener listener_; // planningscene interface to get objects Suturo_Manipulation_Planning_Scene_Interface *pi_; // target pose geometry_msgs::PoseStamped targetPose_; // target pose in base_link frame geometry_msgs::PoseStamped targetPoseBaseLink_; // twist value for z roatation double zTwist_; // bool for collision, true if collision std::vector<double> collisions_; // Angle between robot quaternion and home quaternion int robotToHome_; // Angle between robot quaternion and reverse home quaternion int robotToHome180_; // y Distance between target and robot pose at the beginning double yVariation_; // Mutex for getCollisions() boost::signals2::mutex mtx_; // Data to initialize the interpolator struct interpolator_2d_init_params *init_params_; // Inputparams to interpolate struct interpolator_2d_params *inp_params_; /** * Sets robotPose_ with incoming data from the localization topic. */ void subscriberLocalization(const geometry_msgs::PoseStamped &robotPoseFB); /** * Calculates the distance between the base_foortprint and the environment. * If the distance is smaller then "footprint_radius", "inCollision_" will * be set to true; * */ void subscriberCbLaserScan(const sensor_msgs::LaserScan &scan); /** * Checks if the target is arrived on x-axis. * * @return true, if successfull * false, otherwise */ bool xCoordArrived(geometry_msgs::PoseStamped targetPose_); /** * Checks if the target is arrived on y-axis. * * @return true, if successfull * false, otherwise */ bool yCoordArrived(geometry_msgs::PoseStamped targetPose_); /** * Checks if the target orientation is arrived. * * @return true, if successfull * false, otherwise */ bool orientationArrived(tf::Quaternion robotOrientation, tf::Quaternion *targetOrientation); /** * Waits for incoming data from localization topic. * * @return true, if successfull * false, otherwise */ bool checkLocalization(); /** * Transforms a PoseStamped Object to a new PoseStamped Object with * Coordinates in base_link frame. * * @return true, if successfull * false, otherwise */ bool transformToBaseLink(geometry_msgs::PoseStamped pose, geometry_msgs::PoseStamped &poseInBaseLink); /** * Transforms a PoseStamped Object to a new PoseStamped Object with * Coordinates in map frame. * * @return true, if successfull * false, otherwise */ bool transformToMap(geometry_msgs::PoseStamped pose, geometry_msgs::PoseStamped &poseInBaseLink); /** * Calculates the Z value for rotating the robot. * * @return true, if successfull * false, otherwise */ bool calculateZTwist(tf::Quaternion *targetOrientation); /** * Checks if a collision is in front of the robot. * * @return true, if collsion * false, if not */ bool collisionInFront(std::vector<double> collisionsList); /** * Checks if a collision is on the left side of the robot. * * @return true, if collsion * false, if not */ bool collisionOnLeft(std::vector<double> collisionsList); /** * Checks if a collision is on the right side of the robot. * * @return true, if collsion * false, if not */ bool collisionOnRight(std::vector<double> collisionsList); /** * Checks the current variation on the y axis between * the goal and the robot position and compares it with * yVariation_. * * @return true, if the robot is closer to the goal * false, if not */ bool checkYVariation(); /** * Rotates the base from the PR2 to the target orientation from * the targetPose. * * @return true, if successfull * false, otherwise */ bool rotateBase(); /** * Checks if the given pose is in collision with a collisionobject. * * @return true, if successfull * false, otherwise */ bool checkFullCollision(geometry_msgs::PoseStamped robot_pose); public: Suturo_Manipulation_Move_Robot(ros::NodeHandle *nh); ~Suturo_Manipulation_Move_Robot(); /** * Moves the base from the PR2 to the target coordinates from * the targetPose. * * @return true, if successfull * false, otherwise */ bool driveBase(geometry_msgs::PoseStamped targetPose, double range); /** * @return collision_ */ std::vector<double> getLaserScanCollisions(); }; #endif
6b04592408ad657fb974d448eedfe2bd884dc2a9
b3931bc2e18fe54799b805edc1b8934e28606b33
/2013-2014/Exams/Exam_2/Task_1/Task_1.cpp
77a1c366d7d5cee620f93082594eb2bbf92043cc
[]
no_license
maxim-yakupov/University
0830cfa36038bef8932c134a6a035bea76471e90
bcc0f5ed6bf28430f7d740a43867e7cd47271731
refs/heads/master
2021-01-17T13:03:30.068669
2017-01-30T21:55:23
2017-01-30T21:55:23
58,821,128
1
0
null
null
null
null
UTF-8
C++
false
false
480
cpp
Task_1.cpp
#include <iostream> using namespace std; unsigned int fibonachi(unsigned int step); int main() { cout << "Write number of Fibonachi number: "; unsigned int n = 0; cin >> n; cout << "Fib(" << n << ") = " << fibonachi(n); return 0; } unsigned int fibonachi(unsigned int step) { if (!step) { return 0; } else if (step == 1) { return 1; } else { return fibonachi(step - 1) + fibonachi(step - 2); } }
2cc0d24317f4641d58297be1753fcbcf30c3e99c
4955f3b54dace91022f896e2346049124f20cd6e
/Assignment 1/New assignment 6.cpp
8decaeaf341cf6a596f552425af328a20ce79534
[]
no_license
qrapheneee/cpp-Assignments
b5a3a08bb574117dbf609ab352233e56372bd76e
b591aac4c57e40ac22a8e47c3262f23d1aa348bf
refs/heads/master
2021-01-10T04:48:24.437809
2015-05-22T17:51:13
2015-05-22T17:51:13
36,082,568
0
0
null
null
null
null
UTF-8
C++
false
false
1,531
cpp
New assignment 6.cpp
/* * Question6.cpp * * Name: [ Inim Andrew Esiet ] * Department: [ Computer departmemt ] * Matric. No: [ 47123818DC ] * * Body Mass Index (BMI) calculator application that reads * the user’s weight in kilograms and height in meters, * calculates and display the user’s body mass index * * Stub file to enable you complete assignment #1 - question #6 */ #include <iostream> using namespace std; int main() { // Variable declaration double weightInKilograms; double heightInmetres; double BMI; // display welcome messages to user cout << "Welcome - This Body Mass Index (BMI) calculator application that reads\n"; cout << "the user’s weight in kilograms and height in meters,\n"; cout << "calculates and display the user’s body mass index\n\n"; // TODO: display information from the Department of Health and Human Services // TODO: read in values cout << "Enter weight (in kg): "; cin>>weightInKilograms; cout << "Enter height (in meters): "; cin>>heightInmetres; // TODO: calculate BMI (cin,BMI=weightInKilograms/(heightInmetres*heightInmetres)); // display result cout<<BMI; if (BMI<18.5) { cout<<"\tYou are Underweight";} if (BMI>=18.5 and BMI<=24.9) { cout<<"\tYou are Normal";} if (BMI>=25 and BMI<=29.9) { cout<<"\tYou are overweight";} if (BMI>=30) { cout<<"\tYou are obese";} cout << "\nThanks and Goodbye"; //system("PAUSE"); return EXIT_SUCCESS; }
464cdb3da312f11842b57d176917cda24ec41718
0eca16668f1ba547f3f24ec55cb10e053df4492e
/test/Case9.cpp
5762861d4c511580e9d13567ee926b927db22b52
[]
no_license
mateog4712/SparseRNAFolD
5ef4e06720eb75676ac3d30d1b1ff177ad028c1c
dea0b6cd627b97c1c4835d2e96ba18532809a872
refs/heads/main
2023-08-10T17:35:35.084413
2023-07-19T08:23:43
2023-07-19T08:23:43
301,299,157
1
0
null
null
null
null
UTF-8
C++
false
false
3,604
cpp
Case9.cpp
#include <string> #include <fstream> #include <vector> #include <iostream> #include <tuple> #include <iomanip> #include <sstream> #include <limits> #include <iterator> #include <cstring> #include <cassert> #include <numeric> #include <map> //#define CATCH_CONFIG_MAIN #include "catch.hpp" // Make random input structures for all of the sequences given in the file using namespace std; string make_structure(string seq); bool check_Pseudoknot(vector<tuple<int,int> > used, int i, int j); static int pairs[8][8] = /* _ A C G U X K I */ { { 0, 0, 0, 0, 0, 0, 0, 0 }, { 0, 0, 0, 0, 5, 0, 0, 5 }, { 0, 0, 0, 1, 0, 0, 0, 0 }, { 0, 0, 2, 0, 3, 0, 0, 0 }, { 0, 6, 0, 4, 0, 0, 0, 6 }, { 0, 0, 0, 0, 0, 0, 2, 0 }, { 0, 0, 0, 0, 0, 1, 0, 0 }, { 0, 6, 0, 0, 5, 0, 0, 0 } }; int main(int argc,char **argv) { vector<string> names; vector<string> seqs; string family; string file = "/home/mgray7/output2/fasta/"; cout << "Put Family: "; cin >> family; file = file + family + ".txt"; ifstream in(file); string str; int i = 0; while(getline(in,str)){ // cout << str << endl; if(i%2 == 0){ names.push_back(str); } else if(i%2==1){ seqs.push_back(str); } ++i; } in.close(); // string intermediary = make_structure(seqs[0]); // cout << intermediary << endl; // exit(0); string command = "./build/SparseMFEFold -d1"; // string command2 = "/home/mgray7/includes/vienna/bin/RNAfold -d1 --noPS "; string command2 = "/home/mgray7/RNAfold/build/src/RNAFold -d1 --noPS "; double score = 0; int size = seqs.size(); // exit(0); string filename = "/home/mgray7/output2/structures/" + family +".txt"; ofstream out3(filename); std::vector<int> wrong; for(int i =0;i<size;++i){ string intermediary = make_structure(seqs[i]); out3 << names[i] << endl; out3 << intermediary << endl; } out3.close(); return 0; } string make_structure(string seq){ std::map<char,uint> base; base['A']=1; base['C']=2; base['G']=3; base['U']=4; int len = seq.length(); string structure (len,'.'); int k = 0; vector<tuple<int,int> > used; int count = 0; while(k<.5*log2(len)){ std::random_device dev; std::mt19937 rng(dev()); std::uniform_int_distribution<std::mt19937::result_type> dist6(0,len); // distribution in range [0, len] int i = dist6(rng); std::uniform_int_distribution<std::mt19937::result_type> dist7(i,len); // distribution in range [0, len] int j = dist7(rng); bool knot = check_Pseudoknot(used,i,j); if(j-i>3 && !knot){ if(pairs[base[seq[i]]][base[seq[j]]] > 0){ used.push_back(make_tuple(i,j)); structure[i] = '('; structure[j] = ')'; ++k; } } count++; if(count>250){ count = 0; k = 0; used.clear(); structure = string(len,'.'); } } return structure; } bool check_Pseudoknot(vector<tuple<int,int> > used, int i, int j){ for(int m = 0; m<used.size();++m){ int k = get<0>(used[m]); int l = get<1>(used[m]); // cout << i << "\t" << k << "\t" << l << "\t" << j << endl; if(i==k || j==l || i==l || j==k) return true; if((i < k && j > k && j < l) || (i < l && j > l && i > k)) return true; } return false; }
fd3fc3b6e3f3b82340302fa5ba1bd0e84430fb0f
66661a9f3fd486c0277519accc9a4f0901709574
/tasks/BMaksimumMaksimumaIzMinimumov.cpp
75e58d3fb8fe52bc94d96514d4031edaaa07d5c2
[]
no_license
emli/competitive
b112ba3aee0009af68aa9bc997b2f35eb00cdfd8
e1e2b5f9e67b86a709a9719e072e8a8732ae76b3
refs/heads/master
2022-05-19T21:53:27.531860
2022-05-05T17:27:39
2022-05-05T17:27:39
154,149,766
1
0
null
null
null
null
UTF-8
C++
false
false
1,310
cpp
BMaksimumMaksimumaIzMinimumov.cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define all(x) x.begin(),x.end() const int dx[] = {1, -1, 0, 0}; const int dy[] = {0, 0, 1, -1}; class BMaksimumMaksimumaIzMinimumov { public: static void solve(std::istream &cin, std::ostream &cout) { int n, k; cin >> n >> k; vector<int> a(n); for (int i = 0; i < n; ++i) { cin >> a[i]; } if (k == 1) { cout << *min_element(all(a)) << endl; }else if (k == 2) { vector<int> minLeft(n), minRight(n); for (int i = 0; i < n; ++i) { if (i == 0) { minLeft[i] = a[i]; }else { minLeft[i] = min(minLeft[i - 1], a[i]); } } for (int i = n - 1; i >= 0; --i) { if (i == n - 1) { minRight[i] = a[i]; }else { minRight[i] = min(minRight[i + 1], a[i]); } } int ans = INT_MIN; for (int i = 0; i < n - 1; ++i) { ans = max(ans,max(minLeft[i],minRight[i + 1])); } cout << ans << endl; }else { cout << *max_element(all(a)) << endl; } } };
e1536303fab8b7cdb7fb8d1a85e7a6dbb3f97474
639b59d5f361339b70ddb0ee23f61497752e8554
/eigen_physiks.cpp
4c962d7e93603fb1b8c7bd77ce05754b1d4d0008
[]
no_license
rrti/eigenphys-iks
01037a715db195d562337ad09f2ed45a81df15d6
73c9579b0193502c8984518a7294970700eccdb4
refs/heads/master
2021-01-23T00:10:03.438308
2017-03-23T01:03:07
2017-03-23T01:03:07
85,703,804
0
0
null
null
null
null
UTF-8
C++
false
false
1,403
cpp
eigen_physiks.cpp
#include <GL/glew.h> #include <GL/gl.h> #include <GL/freeglut.h> #include "eigen_engine.hpp" static epiks::t_eigen_engine g_engine; static void update_frame() { g_engine.update_frame(); } static void render_frame() { g_engine.render_frame(); } static void regular_key_pressed (uint8_t key, int32_t, int32_t) { g_engine.regular_key_pressed (key); } static void regular_key_released(uint8_t key, int32_t, int32_t) { g_engine.regular_key_released(key); } static void special_key_pressed (int32_t key, int32_t, int32_t) { g_engine.special_key_pressed (key); } static void special_key_released(int32_t key, int32_t, int32_t) { g_engine.special_key_released(key); } static void init_glut(int argc, char** argv) { glutInit(&argc, argv); glutInitContextFlags(GLUT_FORWARD_COMPATIBLE); glutInitContextProfile(GLUT_CORE_PROFILE); glutSetOption(GLUT_ACTION_ON_WINDOW_CLOSE, GLUT_ACTION_GLUTMAINLOOP_RETURNS); glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH); glutInitWindowSize(800, 800); glutInitWindowPosition(0, 0); glutCreateWindow("eigenphys-iks"); glewInit(); glutDisplayFunc(render_frame); glutIdleFunc(update_frame); glutKeyboardFunc(regular_key_pressed); glutKeyboardUpFunc(regular_key_released); glutSpecialFunc(special_key_pressed); glutSpecialUpFunc(special_key_released); } int main(int argc, char** argv) { init_glut(argc, argv); g_engine.loop(); return 0; }
9e89f5cf9b393eeb2279e69f430978090e5f4cbf
f7006c9f2ae60e94b4ac2c5a13ce62329dd3db71
/partialmodel_hrt/pmraynode.h
233f627679fe060a1fb5358e07e5a2d2dad4a9a1
[ "BSD-3-Clause" ]
permissive
CHLMYR/vpl
9d61e310371346be29bbda95b6c5ad427db5570b
1a6e88353395ca0e43a0c4d0d6b38f7c7e2925f7
refs/heads/master
2023-03-15T16:24:58.187700
2018-08-17T14:26:14
2018-08-17T14:26:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,705
h
pmraynode.h
/* <one line to give the program's name and a brief idea of what it does.> Copyright (C) 2012 <copyright holder> <email> This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ #ifndef PMRAYNODE_H #define PMRAYNODE_H #include <vector> #include <list> #include <octomap/octomap.h> #include <octomap/ColorOcTree.h> #include <boost/numeric/ublas/matrix.hpp> #include <boost/numeric/ublas/io.hpp> class pmRayNode { public: pmRayNode(double x, double y, double z); pmRayNode(octomap::point3d r); /** * Receives a matrix r = [x, y, z, 1]^T */ pmRayNode(boost::numeric::ublas::matrix<double> r); octomap::point3d ray; boost::numeric::ublas::matrix<double> ray_matrix; int nLeafs; int deepth; int children_count; std::list< std::list<pmRayNode>::pointer > childrenPtrList; std::list<pmRayNode>::pointer parent; double angleTo(pmRayNode B); double dot(pmRayNode B); }; typedef std::list< std::list<pmRayNode>::pointer > rtChildrenPtrListType; typedef std::list<pmRayNode> rtTreeType; typedef std::list<pmRayNode>::pointer rtPointerToElementType ; #endif // PMRAYNODE_H
4add402d06bb2780d5378c7d607cd8a66980a7ca
7d83df57b7cb4a98733c76ad8c6a9691b2ca7890
/dev/ese/src/os/blockcache/_cachedfilehash.hxx
9c7f988f9e2b99485e0cdcd88d404b25e695e6a7
[ "MIT" ]
permissive
microsoft/Extensible-Storage-Engine
30ab5bf8b5f8f2c2b5887b1dfa59b82c0588de70
933dc839b5a97b9a5b3e04824bdd456daf75a57d
refs/heads/main
2023-08-13T11:53:52.563089
2022-07-29T17:16:38
2022-07-29T17:16:38
331,747,853
844
66
MIT
2023-06-15T11:57:35
2021-01-21T20:34:01
C++
UTF-8
C++
false
false
3,619
hxx
_cachedfilehash.hxx
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. #pragma once // Cached file table key. class CCachedFileKey { public: CCachedFileKey() : m_volumeid( volumeidInvalid ), m_fileid( fileidInvalid ), m_fileserial( fileserialInvalid ) { } CCachedFileKey( _In_ const VolumeId volumeid, _In_ const FileId fileid, _In_ const FileSerial fileserial ) : m_volumeid( volumeid ), m_fileid( fileid ), m_fileserial( fileserial ) { } CCachedFileKey( _In_ CCachedFileTableEntryBase* const pcfte ) : CCachedFileKey( pcfte->Volumeid(), pcfte->Fileid(), pcfte->Fileserial() ) { } CCachedFileKey( _In_ const CCachedFileKey& src ) { *this = src; } const CCachedFileKey& operator=( _In_ const CCachedFileKey& src ) { m_volumeid = src.m_volumeid; m_fileid = src.m_fileid; m_fileserial = src.m_fileserial; return *this; } VolumeId Volumeid() const { return m_volumeid; } FileId Fileid() const { return m_fileid; } FileSerial Fileserial() const { return m_fileserial; } UINT UiHash() const { return CCachedFileTableEntryBase::UiHash( m_volumeid, m_fileid, m_fileserial ); } private: VolumeId m_volumeid; FileId m_fileid; FileSerial m_fileserial; }; // Cached file table entry. class CCachedFileEntry { public: CCachedFileEntry() : m_pcfte( NULL ), m_uiHash( 0 ) { } CCachedFileEntry( _In_ CCachedFileTableEntryBase* const pcfte ) : m_pcfte( pcfte ), m_uiHash( pcfte->UiHash() ) { } CCachedFileEntry( _In_ const CCachedFileEntry& src ) { *this = src; } const CCachedFileEntry& operator=( _In_ const CCachedFileEntry& src ) { m_pcfte = src.m_pcfte; m_uiHash = src.m_uiHash; return *this; } CCachedFileTableEntryBase* Pcfte() const { return m_pcfte; } UINT UiHash() const { return m_uiHash; } private: CCachedFileTableEntryBase* m_pcfte; UINT m_uiHash; }; // Cached file hash table. typedef CDynamicHashTable<CCachedFileKey, CCachedFileEntry> CCachedFileHash; INLINE typename CCachedFileHash::NativeCounter CCachedFileHash::CKeyEntry::Hash( _In_ const CCachedFileKey& key ) { return CCachedFileHash::NativeCounter( key.UiHash() ); } INLINE typename CCachedFileHash::NativeCounter CCachedFileHash::CKeyEntry::Hash() const { return CCachedFileHash::NativeCounter( m_entry.UiHash() ); } INLINE BOOL CCachedFileHash::CKeyEntry::FEntryMatchesKey( _In_ const CCachedFileKey& key ) const { if ( m_entry.UiHash() != key.UiHash() ) { return fFalse; } if ( m_entry.Pcfte()->Volumeid() != key.Volumeid() ) { return fFalse; } if ( m_entry.Pcfte()->Fileid() != key.Fileid() ) { return fFalse; } if ( m_entry.Pcfte()->Fileserial() != key.Fileserial() ) { return fFalse; } return fTrue; } INLINE void CCachedFileHash::CKeyEntry::SetEntry( _In_ const CCachedFileEntry& entry ) { m_entry = entry; } INLINE void CCachedFileHash::CKeyEntry::GetEntry( _In_ CCachedFileEntry* const pentry ) const { *pentry = m_entry; }
54d2522da3e4dfb1e4e96ee3aef69aba2b0926eb
6c3e3b35867408aef48c94a020070bb8e9519469
/tests/newtonian/two_dimensional/gresho_vortex_2o/test.cpp
f886da46b26731385a2dbbe64e2a11501fbc8f1a
[]
no_license
bolverk/huji-rich
9f579bf4c16732f56a8b128886f07b1ac9aabd67
58ec1a7e71b00ddb387160b39196d8dd9e40bd3f
refs/heads/master
2022-10-02T20:25:09.887543
2022-03-31T19:18:47
2022-03-31T19:18:47
32,133,420
16
13
null
2021-07-25T01:16:41
2015-03-13T06:09:39
C++
UTF-8
C++
false
false
5,677
cpp
test.cpp
#ifdef RICH_MPI #include "source/mpi/MeshPointsMPI.hpp" #endif #include <iostream> #include <cmath> #include "source/newtonian/two_dimensional/hdsim2d.hpp" #include "source/newtonian/two_dimensional/geometric_outer_boundaries/SquareBox.hpp" #include "source/tessellation/VoronoiMesh.hpp" #include "source/newtonian/common/ideal_gas.hpp" #include "source/newtonian/common/hllc.hpp" #include "source/newtonian/two_dimensional/point_motions/lagrangian.hpp" #include "source/newtonian/two_dimensional/point_motions/round_cells.hpp" #include "source/newtonian/two_dimensional/source_terms/zero_force.hpp" #include "source/newtonian/two_dimensional/spatial_distributions/uniform2d.hpp" #include "source/newtonian/two_dimensional/diagnostics.hpp" #include "source/misc/simple_io.hpp" #include "source/newtonian/test_2d/main_loop_2d.hpp" #include "source/newtonian/two_dimensional/hdf5_diagnostics.hpp" #include "source/misc/mesh_generator.hpp" #include "source/newtonian/two_dimensional/modular_flux_calculator.hpp" #include "source/newtonian/two_dimensional/simple_cell_updater.hpp" #include "source/newtonian/two_dimensional/simple_extensive_updater.hpp" #include "source/newtonian/two_dimensional/ghost_point_generators/RigidWallGenerator.hpp" #include "source/newtonian/two_dimensional/interpolations/LinearGaussImproved.hpp" #include "source/newtonian/two_dimensional/stationary_box.hpp" using namespace std; using namespace simulation2d; namespace { double calc_vq2r(double r) { if(r<0.2) return 5; else if(r>0.4) return 0; return 2.0/r-5.0; } double azimuthal_velocity(double r) { if(r<0.2) return 5*r; else if(r>0.4) return 0; else return 2-5*r; } double calc_pressure(double r) { if(r<0.2) return 5+(25./2.)*pow(r,2); else if(r>0.4) return 3+4*log(2.); else return 9+(25./2.)*pow(r,2)-20*r+4*log(r/0.2); } vector<ComputationalCell> calc_init_cond(const Tessellation& tess) { vector<ComputationalCell> res (static_cast<size_t>(tess.GetPointNo())); for(size_t i=0;i<res.size();++i){ const Vector2D r = tess.GetCellCM(static_cast<int>(i)); const double radius = abs(r); res[i].density = 1; res[i].pressure = calc_pressure(radius); res[i].velocity = calc_vq2r(radius)*Vector2D(-r.y,r.x); } return res; } class VelocityX: public SpatialDistribution { public: double operator()(Vector2D const& r) const { if(abs(r)<-0) return 0; else return -azimuthal_velocity(abs(r))*r.y/abs(r); } }; class VelocityY: public SpatialDistribution { public: double operator()(Vector2D const& r) const { if(abs(r)<=0) return 0; else return azimuthal_velocity(abs(r))*r.x/abs(r); } }; class Pressure: public SpatialDistribution { public: double operator()(Vector2D const& r) const { return calc_pressure(abs(r)); } }; } #ifdef RICH_MPI int GetWS(void) { int ws; MPI_Comm_size(MPI_COMM_WORLD, &ws); return ws; } vector<Vector2D> process_positions(const SquareBox& boundary) { int ws,rank; MPI_Comm_size(MPI_COMM_WORLD, &ws); MPI_Comm_rank(MPI_COMM_WORLD, &rank); const Vector2D lower_left = boundary.getBoundary().first; const Vector2D upper_right = boundary.getBoundary().second; vector<Vector2D> res(ws); vector<double> temp(static_cast<size_t>(ws) * 2); if(rank==0) { res = RandSquare(ws, lower_left.x,upper_right.x, lower_left.y,upper_right.y); temp = list_serialize(res); } MPI_Bcast(&temp[0], ws * 2, MPI_DOUBLE, 0, MPI_COMM_WORLD); Vector2D vtemp; res = list_unserialize(temp, vtemp); return res; } #endif class SimData { public: SimData(void): #ifdef RICH_MPI ws_(GetWS()), #endif outer_(-0.5,0.5,0.5,-0.5), rs_(), #ifdef RICH_MPI proctess_(process_positions(outer_), outer_), #endif tess_( #ifdef RICH_MPI proctess_, SquareMeshM(30*ws_,30*ws_,proctess_,outer_.getBoundary().first, outer_.getBoundary().second), #else cartesian_mesh (30, 30, outer_.getBoundary().first, outer_.getBoundary().second), #endif outer_), eos_(5./3.), bpm_(), point_motion_(bpm_,eos_), evc_(), force_(), tsf_(0.3), gpg_(), sr_(eos_,gpg_), fc_(sr_,rs_), eu_(), sim_( #ifdef RICH_MPI proctess_, #endif tess_, outer_, pg_, calc_init_cond(tess_), eos_, point_motion_, evc_, force_, tsf_, fc_, eu_, cu_) {} hdsim& getSim(void) { return sim_; } private: #ifdef RICH_MPI const int ws_; #endif const SlabSymmetry pg_; const SquareBox outer_; const Hllc rs_; #ifdef RICH_MPI VoronoiMesh proctess_; #endif VoronoiMesh tess_; const IdealGas eos_; Lagrangian bpm_; RoundCells point_motion_; const StationaryBox evc_; ZeroForce force_; const SimpleCFL tsf_; const RigidWallGenerator gpg_; const LinearGaussImproved sr_; const ModularFluxCalculator fc_; const SimpleExtensiveUpdater eu_; const SimpleCellUpdater cu_; hdsim sim_; }; namespace { void my_main_loop(hdsim& sim) { SafeTimeTermination term_cond(0.003, 1e6); WriteTime diag("time.txt"); main_loop(sim, term_cond, &hdsim::TimeAdvance2Heun, &diag); } } int main(void) { #ifdef RICH_MPI MPI_Init(NULL, NULL); #endif SimData sim_data; hdsim& sim = sim_data.getSim(); my_main_loop(sim); #ifdef RICH_MPI int rank; MPI_Comm_rank(MPI_COMM_WORLD, &rank); write_snapshot_to_hdf5(sim, "process_"+int2str(rank)+"_final.h5"); MPI_Finalize(); #else write_snapshot_to_hdf5(sim, "final.h5"); #endif return 0; }
e69e49b20a45e8196e79f2835983222df4ec0d4b
34083fb5c21e0ccbbfb8b3a27d864154e1731b31
/src/common/davcollectionsfetchjob.cpp
34c6287df20fcf8c061469867f083efbdb880f0a
[]
no_license
KDE/kdav
f1c147eb1e6545e082d819d8933f70d162d093f3
a2b6819d7a8b08d9e974a4cd56c6c4b8f800ea5b
refs/heads/master
2023-08-17T08:02:27.787178
2023-08-08T02:22:33
2023-08-08T02:22:33
77,642,671
5
0
null
null
null
null
UTF-8
C++
false
false
14,751
cpp
davcollectionsfetchjob.cpp
/* SPDX-FileCopyrightText: 2010 Tobias Koenig <tokoe@kde.org> SPDX-License-Identifier: LGPL-2.0-or-later */ #include "davcollectionsfetchjob.h" #include "davjobbase_p.h" #include "daverror.h" #include "davmanager_p.h" #include "davprincipalhomesetsfetchjob.h" #include "davprotocolbase_p.h" #include "utils_p.h" #include "libkdav_debug.h" #include <KIO/DavJob> #include <KIO/Job> #include <QBuffer> #include <QColor> using namespace KDAV; namespace KDAV { class DavCollectionsFetchJobPrivate : public DavJobBasePrivate { public: void principalFetchFinished(KJob *job); void collectionsFetchFinished(KJob *job); void doCollectionsFetch(const QUrl &url); void subjobFinished(); DavUrl mUrl; DavCollection::List mCollections; uint mSubJobCount = 0; Q_DECLARE_PUBLIC(DavCollectionsFetchJob) }; } DavCollectionsFetchJob::DavCollectionsFetchJob(const DavUrl &url, QObject *parent) : DavJobBase(new DavCollectionsFetchJobPrivate, parent) { Q_D(DavCollectionsFetchJob); d->mUrl = url; } void DavCollectionsFetchJob::start() { Q_D(DavCollectionsFetchJob); if (DavManager::davProtocol(d->mUrl.protocol())->supportsPrincipals()) { DavPrincipalHomeSetsFetchJob *job = new DavPrincipalHomeSetsFetchJob(d->mUrl); connect(job, &DavPrincipalHomeSetsFetchJob::result, this, [d](KJob *job) { d->principalFetchFinished(job); }); job->start(); } else { d->doCollectionsFetch(d->mUrl.url()); } } DavCollection::List DavCollectionsFetchJob::collections() const { Q_D(const DavCollectionsFetchJob); return d->mCollections; } DavUrl DavCollectionsFetchJob::davUrl() const { Q_D(const DavCollectionsFetchJob); return d->mUrl; } void DavCollectionsFetchJobPrivate::doCollectionsFetch(const QUrl &url) { ++mSubJobCount; const QDomDocument collectionQuery = DavManager::davProtocol(mUrl.protocol())->collectionsQuery()->buildQuery(); KIO::DavJob *job = DavManager::self()->createPropFindJob(url, collectionQuery.toString()); QObject::connect(job, &KIO::DavJob::result, q_ptr, [this](KJob *job) { collectionsFetchFinished(job); }); job->addMetaData(QStringLiteral("PropagateHttpHeader"), QStringLiteral("true")); } void DavCollectionsFetchJobPrivate::principalFetchFinished(KJob *job) { const DavPrincipalHomeSetsFetchJob *davJob = qobject_cast<DavPrincipalHomeSetsFetchJob *>(job); if (davJob->error()) { if (davJob->latestResponseCode()) { // If we have a HTTP response code then this may mean that // the URL was not a principal URL. Retry as if it were a calendar URL. qCDebug(KDAV_LOG) << job->errorText(); doCollectionsFetch(mUrl.url()); } else { // Just give up here. setDavError(davJob->davError()); setErrorTextFromDavError(); emitResult(); } return; } const QStringList homeSets = davJob->homeSets(); qCDebug(KDAV_LOG) << "Found" << homeSets.size() << "homesets"; qCDebug(KDAV_LOG) << homeSets; if (homeSets.isEmpty()) { // Same as above, retry as if it were a calendar URL. doCollectionsFetch(mUrl.url()); return; } for (const QString &homeSet : homeSets) { QUrl url = mUrl.url(); if (homeSet.startsWith(QLatin1Char('/'))) { // homeSet is only a path, use request url to complete url.setPath(homeSet, QUrl::TolerantMode); } else { // homeSet is a complete url QUrl tmpUrl(homeSet); tmpUrl.setUserName(url.userName()); tmpUrl.setPassword(url.password()); url = tmpUrl; } doCollectionsFetch(url); } } void DavCollectionsFetchJobPrivate::collectionsFetchFinished(KJob *job) { Q_Q(DavCollectionsFetchJob); KIO::DavJob *davJob = qobject_cast<KIO::DavJob *>(job); const QString responseCodeStr = davJob->queryMetaData(QStringLiteral("responsecode")); const int responseCode = responseCodeStr.isEmpty() ? 0 : responseCodeStr.toInt(); // KIO::DavJob does not set error() even if the HTTP status code is a 4xx or a 5xx if (davJob->error() || (responseCode >= 400 && responseCode < 600)) { if (davJob->url() != mUrl.url()) { // Retry as if the initial URL was a calendar URL. // We can end up here when retrieving a homeset on // which a PROPFIND resulted in an error doCollectionsFetch(mUrl.url()); --mSubJobCount; return; } setLatestResponseCode(responseCode); setError(ERR_PROBLEM_WITH_REQUEST); setJobErrorText(davJob->errorText()); setJobError(davJob->error()); setErrorTextFromDavError(); } else { // For use in the collectionDiscovered() signal QUrl _jobUrl = mUrl.url(); _jobUrl.setUserInfo(QString()); const QString jobUrl = _jobUrl.toDisplayString(); // Validate that we got a valid PROPFIND response QDomDocument response; response.setContent(davJob->responseData(), true); QDomElement rootElement = response.documentElement(); if (rootElement.tagName().compare(QLatin1String("multistatus"), Qt::CaseInsensitive) != 0) { setError(ERR_COLLECTIONFETCH); setErrorTextFromDavError(); subjobFinished(); return; } QByteArray resp = davJob->responseData(); QDomDocument document; if (!document.setContent(resp, true)) { setError(ERR_COLLECTIONFETCH); setErrorTextFromDavError(); subjobFinished(); return; } if (!q->error()) { /* * Extract information from a document like the following: * * <responses> * <response xmlns="DAV:"> * <href xmlns="DAV:">/caldav.php/test1.user/home/</href> * <propstat xmlns="DAV:"> * <prop xmlns="DAV:"> * <C:supported-calendar-component-set xmlns:C="urn:ietf:params:xml:ns:caldav"> * <C:comp xmlns:C="urn:ietf:params:xml:ns:caldav" name="VEVENT"/> * <C:comp xmlns:C="urn:ietf:params:xml:ns:caldav" name="VTODO"/> * <C:comp xmlns:C="urn:ietf:params:xml:ns:caldav" name="VJOURNAL"/> * <C:comp xmlns:C="urn:ietf:params:xml:ns:caldav" name="VTIMEZONE"/> * <C:comp xmlns:C="urn:ietf:params:xml:ns:caldav" name="VFREEBUSY"/> * </C:supported-calendar-component-set> * <resourcetype xmlns="DAV:"> * <collection xmlns="DAV:"/> * <C:calendar xmlns:C="urn:ietf:params:xml:ns:caldav"/> * <C:schedule-calendar xmlns:C="urn:ietf:params:xml:ns:caldav"/> * </resourcetype> * <displayname xmlns="DAV:">Test1 User</displayname> * <current-user-privilege-set xmlns="DAV:"> * <privilege xmlns="DAV:"> * <read xmlns="DAV:"/> * </privilege> * </current-user-privilege-set> * <getctag xmlns="http://calendarserver.org/ns/">12345</getctag> * </prop> * <status xmlns="DAV:">HTTP/1.1 200 OK</status> * </propstat> * </response> * </responses> */ const QDomElement responsesElement = document.documentElement(); QDomElement responseElement = Utils::firstChildElementNS(responsesElement, QStringLiteral("DAV:"), QStringLiteral("response")); while (!responseElement.isNull()) { QDomElement propstatElement; // check for the valid propstat, without giving up on first error { const QDomNodeList propstats = responseElement.elementsByTagNameNS(QStringLiteral("DAV:"), QStringLiteral("propstat")); for (int i = 0; i < propstats.length(); ++i) { const QDomElement propstatCandidate = propstats.item(i).toElement(); const QDomElement statusElement = Utils::firstChildElementNS(propstatCandidate, QStringLiteral("DAV:"), QStringLiteral("status")); if (statusElement.text().contains(QLatin1String("200"))) { propstatElement = propstatCandidate; } } } if (propstatElement.isNull()) { responseElement = Utils::nextSiblingElementNS(responseElement, QStringLiteral("DAV:"), QStringLiteral("response")); continue; } // extract url const QDomElement hrefElement = Utils::firstChildElementNS(responseElement, QStringLiteral("DAV:"), QStringLiteral("href")); if (hrefElement.isNull()) { responseElement = Utils::nextSiblingElementNS(responseElement, QStringLiteral("DAV:"), QStringLiteral("response")); continue; } QString href = hrefElement.text(); if (!href.endsWith(QLatin1Char('/'))) { href.append(QLatin1Char('/')); } QUrl url = davJob->url(); url.setUserInfo(QString()); if (href.startsWith(QLatin1Char('/'))) { // href is only a path, use request url to complete url.setPath(href, QUrl::TolerantMode); } else { // href is a complete url url = QUrl::fromUserInput(href); } // don't add this resource if it has already been detected bool alreadySeen = false; for (const DavCollection &seen : std::as_const(mCollections)) { if (seen.url().toDisplayString() == url.toDisplayString()) { alreadySeen = true; } } if (alreadySeen) { responseElement = Utils::nextSiblingElementNS(responseElement, QStringLiteral("DAV:"), QStringLiteral("response")); continue; } // extract display name const QDomElement propElement = Utils::firstChildElementNS(propstatElement, QStringLiteral("DAV:"), QStringLiteral("prop")); if (!DavManager::davProtocol(mUrl.protocol())->containsCollection(propElement)) { responseElement = Utils::nextSiblingElementNS(responseElement, QStringLiteral("DAV:"), QStringLiteral("response")); continue; } const QDomElement displaynameElement = Utils::firstChildElementNS(propElement, QStringLiteral("DAV:"), QStringLiteral("displayname")); const QString displayName = displaynameElement.text(); // Extract CTag const QDomElement CTagElement = Utils::firstChildElementNS(propElement, // QStringLiteral("http://calendarserver.org/ns/"), QStringLiteral("getctag")); QString CTag; if (!CTagElement.isNull()) { CTag = CTagElement.text(); } // extract calendar color if provided const QDomElement colorElement = Utils::firstChildElementNS(propElement, // QStringLiteral("http://apple.com/ns/ical/"), QStringLiteral("calendar-color")); QColor color; if (!colorElement.isNull()) { QString colorValue = colorElement.text(); if (QColor::isValidColorName(colorValue)) { // Color is either #RRGGBBAA or #RRGGBB but QColor expects #AARRGGBB // so we put the AA in front if the string's length is 9. if (colorValue.size() == 9) { QString fixedColorValue = QStringLiteral("#") + colorValue.mid(7, 2) + colorValue.mid(1, 6); color = QColor::fromString(fixedColorValue); } else { color = QColor::fromString(colorValue); } } } // extract allowed content types const DavCollection::ContentTypes contentTypes = DavManager::davProtocol(mUrl.protocol())->collectionContentTypes(propstatElement); auto _url = url; _url.setUserInfo(mUrl.url().userInfo()); DavCollection collection(DavUrl(_url, mUrl.protocol()), displayName, contentTypes); collection.setCTag(CTag); if (color.isValid()) { collection.setColor(color); } // extract privileges const QDomElement currentPrivsElement = Utils::firstChildElementNS(propElement, // QStringLiteral("DAV:"), QStringLiteral("current-user-privilege-set")); if (currentPrivsElement.isNull()) { // Assume that we have all privileges collection.setPrivileges(KDAV::All); } else { Privileges privileges = Utils::extractPrivileges(currentPrivsElement); collection.setPrivileges(privileges); } qCDebug(KDAV_LOG) << url.toDisplayString() << "PRIVS: " << collection.privileges(); mCollections << collection; Q_EMIT q->collectionDiscovered(mUrl.protocol(), url.toDisplayString(), jobUrl); responseElement = Utils::nextSiblingElementNS(responseElement, QStringLiteral("DAV:"), QStringLiteral("response")); } } } subjobFinished(); } void DavCollectionsFetchJobPrivate::subjobFinished() { if (--mSubJobCount == 0) { emitResult(); } } #include "moc_davcollectionsfetchjob.cpp"
dea6fe2618f68b252e35e7cc05f59908b662fb79
84090973310d01d8fb38a391f9aa182a5886e17e
/challenge/2020/october-leetcoding-challenge/asteroid-collision.cpp
99b0a848ea49f4ec88d3a616aabf3bd4dc4ae133
[]
no_license
VasuGoel/leetcode
29e4d7fe6654d76ae625037e6266ec9e8d25f304
2de293a5acbbe653a9e0757fea99eca37ac84e54
refs/heads/master
2023-04-14T11:19:16.995592
2021-04-30T16:35:57
2021-04-30T16:35:57
324,527,300
1
0
null
null
null
null
UTF-8
C++
false
false
686
cpp
asteroid-collision.cpp
// O(n) time and space. Stack-based approach. class Solution { public: vector<int> asteroidCollision(vector<int>& asteroids) { vector<int> ret; // simulates stack for(int cur: asteroids) { bool destroyed = false; while(!ret.empty() and ret.back() > 0 and cur < 0) { if(ret.back() >= -cur) { if(ret.back() == -cur) ret.pop_back(); destroyed = true; break; } else ret.pop_back(); } if(!destroyed) ret.push_back(cur); } return ret; } };
5eca8f6b22d3ce403f8789139cb8b94c2aaa62ad
9aeba5dbf1140a78d2fb6515331b3d84af93ce71
/l5q2.cpp
7ba4089d2de8e3e8685f69e16066dde661019340
[]
no_license
MohsinAliIrfan/3rd_Sem_all_Codes
c521a71ff76d4ce8ba5f3917c0f54a4c0a02639f
53d5d12caeed5e5962ed47b46f1a3e1094debf26
refs/heads/main
2023-03-22T08:19:05.426663
2021-03-13T12:00:12
2021-03-13T12:00:12
347,354,079
0
0
null
null
null
null
UTF-8
C++
false
false
3,102
cpp
l5q2.cpp
#include<iostream> using namespace std; class Employee { char* firstName; char* lastName; const double hourlyRate = 10; double hours, pay; public: // Parameterized Constructor with default arguments Employee(char* firstname = nullptr, char* lastname = nullptr, double hours = 0.0) { setFirstName(firstname); setLastName(lastname); } Employee(const Employee& s2) { this->firstName = deepcopy(s2.firstName); this->lastName = deepcopy(s2.lastName); this->hours = s2.hours; this->pay = s2.pay; } void CopyName(Employee &s1, char* firstname, char* lastname, double hours) { s1.firstName = deepcopy(firstname); s1.lastName = deepcopy(lastname); s1.hours = hours; } char* deepcopy(char *oldarr) { int size = strlen(oldarr) + 1; char* arr = new char[size]; strcpy_s(arr, size, oldarr); return arr; } void setFirstName(char* firstname) { if (firstName != nullptr) delete[]firstName; int size = strlen(firstname) + 1; firstName = new char[size]; strcpy_s(firstName, size, firstname); } void setLastName(char* lastname) { if (lastName != nullptr) delete[]lastname; int size = strlen(lastname) + 1; lastName = new char[size]; strcpy_s(lastName, size, lastname); } void setHours(double hours) { if (hours >= 0 && hours <= 23) this->hours = hours; } void printPayroll() { pay = hourlyRate * hours; cout << "\n\n First Name: " << firstName; cout << "\n Last Name: " << lastName; cout << "\n Hourly Rate: " << hourlyRate; cout << "\n Total Hours Worked: " << hours; cout << "\n Total Salry: " << pay; } ~Employee() { delete[]firstName; delete[]lastName; } }; int main() { char* firstName = new char[50]; char* lastName = new char[50]; double hourlyRate; double hours, pay; cout << "\n Enter data for Employee 1"; cout << "\n Enter first Name: "; cin >> firstName; cout << "\n Enter Last Name: "; cin >> lastName; cout << "\n Total Hours Worked: "; cin >> hours; Employee s1(firstName, lastName, hours); s1.setHours(hours); s1.printPayroll(); delete[]firstName; delete[]lastName; firstName = new char[50]; lastName = new char[50]; cout << "\n\n Enter data for Employee 2"; cout << "\n Enter first Name: "; cin >> firstName; cout << "\n Enter Last Name: "; cin >> lastName; cout << "\n Total Hours Worked: "; cin >> hours; Employee s2(firstName, lastName, hours); s2.setHours(hours); s2.printPayroll(); Employee s3 = s2; cout << "\n\n Data of S3\n"; s3.printPayroll(); delete[]firstName; delete[]lastName; firstName = new char[50]; lastName = new char[50]; cout << "\n\n Enter data for Employee 1 to change"; cout << "\n Enter first Name: "; cin >> firstName; cout << "\n Enter Last Name: "; cin >> lastName; cout << "\n Total Hours Worked: "; cin >> hours; s1.CopyName(s1, firstName, lastName, hours); cout << "\n Chnged Data for Employee 1"; s1.printPayroll(); delete[]firstName; delete[]lastName; return 0; }
f371d122d85afbad31859dcce6e41c04650e7d47
0c6da8b04ba38ba930364155fd3596b94c41dfbb
/Problemset/binary-tree-paths/binary-tree-paths.cpp
2a6edd0a6e77e67a973faf2a5affee9b5ad9c91e
[]
no_license
rubychen0611/LeetCode
200725a80cf4e27b8180a14276d4f5c8958b5c39
185a0f9de2624345ca1f219be633ed1e891e6d8d
refs/heads/main
2023-08-26T11:33:02.711733
2021-10-21T03:22:12
2021-10-21T03:22:12
306,789,533
0
0
null
null
null
null
UTF-8
C++
false
false
1,524
cpp
binary-tree-paths.cpp
// @Title: 二叉树的所有路径 (Binary Tree Paths) // @Author: rubychen0611 // @Date: 2021-02-08 15:14:46 // @Runtime: 8 ms // @Memory: 12.3 MB /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode() : val(0), left(nullptr), right(nullptr) {} * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {} * TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {} * }; */ #include<string> #include<vector> using namespace std; class Solution { private: vector<string> ans; void addPath(vector<int> & path) { string str = ""; int i; if(!path.empty()) { for (i = 0; i < path.size() - 1; i++) { str += to_string(path[i]) + "->"; } str += to_string(path[i]); } ans.push_back(str); } void backtracking(TreeNode* node, vector<int> & path) { path.push_back(node->val); if(node -> left != nullptr) backtracking(node->left, path); if(node ->right != nullptr) backtracking(node->right, path); if(node->left == nullptr && node->right == nullptr) addPath(path); path.pop_back(); } public: vector<string> binaryTreePaths(TreeNode* root) { vector<int> path; if(root == nullptr) return ans; backtracking(root, path); return ans; } };
0e31efd26fc1b5d028a1ea641942c835c963a0cd
73e3ead49cfcff43bc4fc584aca4964722472458
/src/Server/Games/BoardGames/Chess/ChessBoard/ChessPieces/King.h
7a0303726545fdc4abc51d917d750e1250164f77
[]
no_license
Alek96/WebGamesCentre
b45c074fde56e80105c7de90a025e23c2a858fb6
8ab46ad34220f041a669b838ad4a0a8ebd34c502
refs/heads/master
2021-01-19T22:20:27.995799
2017-06-13T12:54:04
2017-06-13T12:54:04
84,977,102
0
0
null
2017-06-13T12:54:05
2017-03-14T17:18:19
JavaScript
UTF-8
C++
false
false
539
h
King.h
#ifndef KING_H #define KING_H #include <string> #include <iostream> #include <memory> #include <map> #include <functional> #include "ChessPiece.h" #include "ChessPieceFactory.h" class King : public ChessPiece { public: typedef std::shared_ptr<ChessPiece> ChessPiecePtr; typedef std::vector<ChessBoardPosition> vectorPath; King(ChessPiece::Color color); ~King(); static ChessPiecePtr createWhite(); static ChessPiecePtr createBlack(); vectorPath getPath(ChessBoardPosition position); std::string getName(); }; #endif //KING_H
bf240b90b6cf8dd0ff091ecdeeeae4643b58d3b6
8b64d3dff8358825f9e9c59c4a2d4aa9d60eabac
/include/llvm/DebugInfo/CodeView/TypeSerializer.h
f785d4509547503a46a242700e4ef3603742dced
[ "NCSA" ]
permissive
kavon/ghc-llvm
43e4c76c9e89b57204b34f7d27e20db0dc27bf47
df1f7afc1e1be993d9789581876fd7c5bc2cffa7
refs/heads/master
2021-03-27T16:33:56.925361
2017-06-19T09:40:51
2017-06-19T09:40:51
88,052,346
5
0
null
null
null
null
UTF-8
C++
false
false
4,861
h
TypeSerializer.h
//===- TypeSerializer.h -----------------------------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef LLVM_DEBUGINFO_CODEVIEW_TYPESERIALIZER_H #define LLVM_DEBUGINFO_CODEVIEW_TYPESERIALIZER_H #include "llvm/DebugInfo/CodeView/TypeRecordMapping.h" #include "llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h" #include "llvm/Support/BinaryByteStream.h" #include "llvm/Support/BinaryStreamWriter.h" #include "llvm/ADT/Optional.h" #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/StringRef.h" #include "llvm/Support/Allocator.h" #include "llvm/Support/Error.h" namespace llvm { namespace codeview { class TypeHasher; class TypeSerializer : public TypeVisitorCallbacks { struct SubRecord { SubRecord(TypeLeafKind K, uint32_t S) : Kind(K), Size(S) {} TypeLeafKind Kind; uint32_t Size = 0; }; struct RecordSegment { SmallVector<SubRecord, 16> SubRecords; uint32_t length() const { uint32_t L = sizeof(RecordPrefix); for (const auto &R : SubRecords) { L += R.Size; } return L; } }; typedef SmallVector<MutableArrayRef<uint8_t>, 2> MutableRecordList; static constexpr uint8_t ContinuationLength = 8; BumpPtrAllocator &RecordStorage; RecordSegment CurrentSegment; MutableRecordList FieldListSegments; Optional<TypeLeafKind> TypeKind; Optional<TypeLeafKind> MemberKind; std::vector<uint8_t> RecordBuffer; MutableBinaryByteStream Stream; BinaryStreamWriter Writer; TypeRecordMapping Mapping; /// Private type record hashing implementation details are handled here. std::unique_ptr<TypeHasher> Hasher; /// Contains a list of all records indexed by TypeIndex.toArrayIndex(). SmallVector<ArrayRef<uint8_t>, 2> SeenRecords; /// Temporary storage that we use to copy a record's data while re-writing /// its type indices. SmallVector<uint8_t, 256> RemapStorage; TypeIndex nextTypeIndex() const; bool isInFieldList() const; MutableArrayRef<uint8_t> getCurrentSubRecordData(); MutableArrayRef<uint8_t> getCurrentRecordData(); Error writeRecordPrefix(TypeLeafKind Kind); Expected<MutableArrayRef<uint8_t>> addPadding(MutableArrayRef<uint8_t> Record); public: explicit TypeSerializer(BumpPtrAllocator &Storage, bool Hash = true); ~TypeSerializer(); void reset(); BumpPtrAllocator &getAllocator() { return RecordStorage; } ArrayRef<ArrayRef<uint8_t>> records() const; TypeIndex insertRecordBytes(ArrayRef<uint8_t> &Record); TypeIndex insertRecord(const RemappedType &Record); Expected<TypeIndex> visitTypeEndGetIndex(CVType &Record); Error visitTypeBegin(CVType &Record) override; Error visitTypeEnd(CVType &Record) override; Error visitMemberBegin(CVMemberRecord &Record) override; Error visitMemberEnd(CVMemberRecord &Record) override; #define TYPE_RECORD(EnumName, EnumVal, Name) \ virtual Error visitKnownRecord(CVType &CVR, Name##Record &Record) override { \ return visitKnownRecordImpl(CVR, Record); \ } #define TYPE_RECORD_ALIAS(EnumName, EnumVal, Name, AliasName) #define MEMBER_RECORD(EnumName, EnumVal, Name) \ Error visitKnownMember(CVMemberRecord &CVR, Name##Record &Record) override { \ return visitKnownMemberImpl<Name##Record>(CVR, Record); \ } #define MEMBER_RECORD_ALIAS(EnumName, EnumVal, Name, AliasName) #include "llvm/DebugInfo/CodeView/CodeViewTypes.def" private: template <typename RecordKind> Error visitKnownRecordImpl(CVType &CVR, RecordKind &Record) { return Mapping.visitKnownRecord(CVR, Record); } template <typename RecordType> Error visitKnownMemberImpl(CVMemberRecord &CVR, RecordType &Record) { assert(CVR.Kind == static_cast<TypeLeafKind>(Record.getKind())); if (auto EC = Writer.writeEnum(CVR.Kind)) return EC; if (auto EC = Mapping.visitKnownMember(CVR, Record)) return EC; // Get all the data that was just written and is yet to be committed to // the current segment. Then pad it to 4 bytes. MutableArrayRef<uint8_t> ThisRecord = getCurrentSubRecordData(); auto ExpectedRecord = addPadding(ThisRecord); if (!ExpectedRecord) return ExpectedRecord.takeError(); ThisRecord = *ExpectedRecord; CurrentSegment.SubRecords.emplace_back(CVR.Kind, ThisRecord.size()); CVR.Data = ThisRecord; // Both the last subrecord and the total length of this segment should be // multiples of 4. assert(ThisRecord.size() % 4 == 0); assert(CurrentSegment.length() % 4 == 0); return Error::success(); } }; } } #endif
568a5ad7e200411de979501de46763676593ff10
bf596878b2672d5ecd13b24dfb69485ef73b6717
/map_globaldata/map_globaldata_appdata.h
91167f411c26d01b09c3afb88ddf8eb4219af919
[]
no_license
CHENGPUYUAN/OSGEarth-Demo
87742f2fb2eb3cb3e0f4988d4d7d9131d49b5c53
839755225212e278ba3445809f229c5cc060dfe7
refs/heads/master
2023-03-16T02:03:37.104206
2020-02-05T02:27:15
2020-02-05T02:27:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,834
h
map_globaldata_appdata.h
#ifndef MAP_GLOBALDATA_APPDATA_H #define MAP_GLOBALDATA_APPDATA_H #include <QObject> #include <osgViewer/View> #include <osgEarth/MapNode> #include <osgEarth/SpatialReference> #include <osgEarthUtil/EarthManipulator> #include "map_controller/map_controller_mainwindowcontroller.h" #include "map_controller/map_controller_primitiveconfigcontroller.h" #include "map_controller/map_controller_canvastoolcontroller.h" #include "map_osg/map_osg_basehandler.h" #include "map_controller/map_controller_svgcontroller.h" #include "../map_osg/map_osg_baseviewer.h" #include "map_gr/map_gr_dis.h" /** * @brief The MAP_GLOBALDATA_APPData class * 全局使用到的数据在该类中进行交互; * 该类为单一实例类 */ class MAP_GLOBALDATA_APPData { public: /** * @brief The DrawingPrimitiveMode enum * 用于记录图元的绘制的样式,包括: * 点、线... * 主要应用于mainwindow以及控制器之间传递图元信息 * 获取: * MAP_GLOBALDATA_APPData::getInstance()->primitiveMode; */ enum DrawingPrimitiveMode { POINT, LINE }; DrawingPrimitiveMode g_primitiveMode; /** * @brief The osgMapData struct * 储存了所有osg地图的数据,它们默认会在初始化时储存进去。 * 使用前先判定一下valid是否有效。 * 使用方法: * MAP_GLOBALDATA_APPData::getInstance()->g_mapData; * 比如获取mapNode: * if(MAP_GLOBALDATA_APPData::getInstance()->g_mapData->valid) * auto mapNode = MAP_GLOBALDATA_APPData::getInstance()->g_mapData->pMapNode; */ struct osgMapData { bool valid; osgEarth::Map *pMap; osgEarth::MapNode *pMapNode; osgViewer::View *pView; osgEarth::Util::EarthManipulator *pEarthManipulator; /** * @brief pHandler * 通过该指针可获取事件中捕获的数据,如世界坐标值等; * 参见该头文件 * @see * map_osg/map_osg_basehandler.h * 使用前请判定是否为nullptr */ MAP_OSG_BaseHandler *pHandler; const osgEarth::SpatialReference *pMapSRS; }; const osgMapData* g_mapData; /** * @brief g_rootNode * osg模型的根节点, * earth属于它的子节点。 * 要在地图上添加部分模型时必须用到(如指南针)。 */ osg::ref_ptr<osg::Group> g_rootNode; /** * @brief g_osgWidget * OSG的承载控件。 * 注意,该类为ui控件,请尽量不要使用该类的接口! */ const MAP_OSG_BaseViewer *g_osgWidget; static MAP_GLOBALDATA_APPData *getInstance(); private: MAP_GLOBALDATA_APPData(); static MAP_GLOBALDATA_APPData *m_instance; }; /** * @brief The MAP_GLOBALDATA_Controller class * 该类用于包含各个controller类的全局实例,设置为全局属性的主要原因是考虑各个controller之间的通信 * 进一步也是两个窗口或者两个部件之间的通信,考虑通过controller进而影响界面的变化 * 涉及属性的变化进而导致界面更新的建议通过controller之间去连接信号与槽 */ class MAP_GLOBALDATA_Controller : public QObject { Q_OBJECT public: MAP_GLOBALDATA_Controller(); public: static MAP_CONTROLLER_MainWindowController *mainWindowController; static MAP_CONTROLLER_EntityViewController *entityViewController; static MAP_CONTROLLER_CurrentInfoViewController *currInfoViewController; static MAP_CONTROLLER_ShowViewController *showViewController; static MAP_CONTROLLER_PrimitiveConfigController *primitiveConfigController; static MAP_CONTROLLER_CanvasToolController *canvasToolController; static MAP_CONTROLLER_SVGController *svgController; }; #endif // MAP_GLOBALDATA_APPDATA_H
b29f0cff0e40e96ec3cadc1cb9a4ad54d09f02be
f5f451c3e1c420789107addacb0da3107685bc4f
/Common/TCMMemory/TCMPoolObject.h
e1194613c489990c6d24fcf422fa9315ac82a8b2
[]
no_license
cl4nk/TayCaMead-Engine
4db6089fd7d952f1aecee82378db0c3bad407c99
4e6a9281fbaf9b7708db95a95078e97b5aeb2772
refs/heads/master
2021-01-01T19:21:17.655499
2019-06-11T09:11:39
2019-06-11T09:11:39
98,566,424
0
1
null
null
null
null
UTF-8
C++
false
false
975
h
TCMPoolObject.h
#pragma once #include "TCMMemory/MemoryDefines.h" namespace TCM { namespace Engine { namespace Memory { /** * \brief Base class for every "poolable" object */ class MEMORY_ALWAYS_EXPORT TCMPoolObject { public: TCMPoolObject() = default; virtual ~TCMPoolObject() = default; /** * \brief Pseudo-constructor used instanciated by pool */ virtual void TCMPoolCreate() = 0; /** * \brief Pseudo-destructor used when released by pool */ virtual void TCMPoolRelease() = 0; /** * \brief Set the ID of this object * \param id The new ID to be set */ void TCMSetID( const uint32_t& id ) { m_id = id; }; /** * \brief Get the curent ID of this object * \return The object's ID */ uint32_t GetID() const { return m_id; }; private: /** * \brief Unique id for each object of same type */ uint32_t m_id = 0; }; } } }
1a90495c92d79dbd53a373463630c61f42071d11
fa63d027a94c97c43b19d5e94a0daf1b82780d0e
/TGEngine/private/graphics/GameGraphicsModule.cpp
41b8f359d0645cce746b47375f1ede3514da118e
[ "CC-BY-ND-4.0", "Apache-2.0", "LicenseRef-scancode-public-domain" ]
permissive
Troblecodings/TGEngine
ef154ede62968a75324c69b722b4300d6b2baa9c
9e364840b5db3b3d642c2921264e07b5148783f2
refs/heads/master
2022-02-09T00:20:52.898615
2022-01-04T13:09:11
2022-01-04T13:09:11
84,971,946
11
6
Apache-2.0
2021-09-12T10:08:48
2017-03-14T16:28:23
C++
UTF-8
C++
false
false
17,049
cpp
GameGraphicsModule.cpp
#include "../../public/graphics/GameGraphicsModule.hpp" #define TINYGLTF_IMPLEMENTATION #define STB_IMAGE_IMPLEMENTATION #define STB_IMAGE_WRITE_IMPLEMENTATION #include "../../public/Util.hpp" #include "../../public/graphics/GameShaderModule.hpp" #include "../../public/graphics/vulkan/VulkanShaderPipe.hpp" #include "../../public/headerlibs/tiny_gltf.h" #include <array> #include <glm/gtx/transform.hpp> #include <iostream> namespace tge::graphics { using namespace tinygltf; inline AddressMode gltfToAPI(int in, AddressMode def) { switch (in) { case TINYGLTF_TEXTURE_WRAP_REPEAT: return AddressMode::REPEAT; case TINYGLTF_TEXTURE_WRAP_CLAMP_TO_EDGE: return AddressMode::CLAMP_TO_EDGE; case TINYGLTF_TEXTURE_WRAP_MIRRORED_REPEAT: return AddressMode::MIRROR_REPEAT; } return def; } inline FilterSetting gltfToAPI(int in, FilterSetting def) { switch (in) { case TINYGLTF_TEXTURE_FILTER_LINEAR: return FilterSetting::LINEAR; case TINYGLTF_TEXTURE_FILTER_NEAREST: return FilterSetting::NEAREST; default: return def; } } inline vk::Format getFormatFromStride(uint32_t stride) { switch (stride) { case 4: return vk::Format::eR32Sfloat; case 8: return vk::Format::eR32G32Sfloat; case 12: return vk::Format::eR32G32B32Sfloat; case 16: return vk::Format::eR32G32B32A32Sfloat; default: throw std::runtime_error("Couldn't find format"); } } inline size_t loadSampler(const Model &model, APILayer *apiLayer) { size_t samplerIndex = -1; for (const auto &smplr : model.samplers) { const SamplerInfo samplerInfo = { gltfToAPI(smplr.minFilter, FilterSetting::LINEAR), gltfToAPI(smplr.minFilter, FilterSetting::LINEAR), gltfToAPI(smplr.wrapS, AddressMode::REPEAT), gltfToAPI(smplr.wrapT, AddressMode::REPEAT)}; samplerIndex = apiLayer->pushSampler(samplerInfo); } samplerIndex -= model.samplers.size() - 1; if (!model.images.empty()) { if (model.samplers.empty()) { // default sampler const SamplerInfo samplerInfo = { FilterSetting::LINEAR, FilterSetting::LINEAR, AddressMode::REPEAT, AddressMode::REPEAT}; samplerIndex = apiLayer->pushSampler(samplerInfo); } } return samplerIndex; } inline size_t loadTexturesFM(const Model &model, APILayer *apiLayer) { std::vector<TextureInfo> textureInfos; textureInfos.reserve(model.images.size()); for (const auto &img : model.images) { if (!img.image.empty()) [[likely]] { const TextureInfo info{(uint8_t *)img.image.data(), (uint32_t)img.image.size(), (uint32_t)img.width, (uint32_t)img.height, (uint32_t)img.component}; textureInfos.push_back(info); } else { throw std::runtime_error("Not implemented!"); } } if (!textureInfos.empty()) return apiLayer->pushTexture(textureInfos.size(), textureInfos.data()); return -1; } inline size_t loadMaterials(const Model &model, APILayer *apiLayer, const size_t sampler, const size_t texture, std::vector<shader::ShaderPipe> &created) { std::vector<Material> materials; materials.reserve(model.materials.size()); std::vector<glm::vec2> roughnessMetallicFactors; for (const auto &mat : model.materials) { const auto &pbr = mat.pbrMetallicRoughness; const auto &diffuseTexture = pbr.baseColorTexture; Material nmMat; if (diffuseTexture.index != -1) [[likely]] { nmMat.type = MaterialType::TextureOnly; const auto nextSampler = model.textures[diffuseTexture.index].sampler; nmMat.data.textureMaterial.samplerIndex = nextSampler < 0 ? sampler : (nextSampler + sampler); nmMat.data.textureMaterial.textureIndex = diffuseTexture.index + texture; } else { nmMat.type = MaterialType::None; } roughnessMetallicFactors.push_back(glm::vec2(pbr.roughnessFactor, pbr.metallicFactor)); nmMat.doubleSided = mat.doubleSided; materials.push_back(nmMat); } namespace s = shader; for (const auto &mesh : model.meshes) { const auto &prim = mesh.primitives[0]; s::ShaderCreateInfo createInfo[2]; apiLayer->getShaderAPI()->createShaderPipe(createInfo, 2); } return apiLayer->pushMaterials(materials.size(), materials.data()); } inline size_t loadDataBuffers(const Model &model, APILayer *apiLayer) { std::vector<uint8_t *> ptr; ptr.reserve(model.buffers.size()); std::vector<size_t> sizes; sizes.reserve(ptr.capacity()); for (const auto &buffer : model.buffers) { const auto ptrto = (uint8_t *)buffer.data.data(); ptr.push_back(ptrto); sizes.push_back(buffer.data.size()); } return apiLayer->pushData(ptr.size(), ptr.data(), sizes.data(), DataType::VertexIndexData); } inline void pushRender(const Model &model, APILayer *apiLayer, const size_t dataId, const size_t materialId, const size_t nodeID, const std::vector<size_t> bindings) { std::vector<RenderInfo> renderInfos; renderInfos.reserve(1000); for (size_t i = 0; i < model.meshes.size(); i++) { const auto &mesh = model.meshes[i]; const auto bItr = model.nodes.begin(); const auto eItr = model.nodes.end(); const auto oItr = std::find_if( bItr, eItr, [idx = i](const Node &node) { return node.mesh == idx; }); const auto nID = oItr != eItr ? std::distance(bItr, oItr) + nodeID : UINT64_MAX; const auto bID = bindings[nID]; for (const auto &prim : mesh.primitives) { std::vector<std::tuple<int, int, int>> strides; strides.reserve(prim.attributes.size()); for (const auto &attr : prim.attributes) { const auto &vertAccesor = model.accessors[attr.second]; const auto &vertView = model.bufferViews[vertAccesor.bufferView]; const auto bufferID = vertView.buffer + dataId; const auto vertOffset = vertView.byteOffset + vertAccesor.byteOffset; strides.push_back( std::make_tuple(vertAccesor.type, bufferID, vertOffset)); } std::sort(strides.rbegin(), strides.rend(), [](auto x, auto y) { return std::get<0>(x) < std::get<0>(y); }); std::vector<size_t> bufferIndicies; bufferIndicies.reserve(strides.size()); std::vector<size_t> bufferOffsets; bufferOffsets.reserve(bufferIndicies.capacity()); for (auto &stride : strides) { bufferIndicies.push_back(std::get<1>(stride)); bufferOffsets.push_back(std::get<2>(stride)); } if (prim.indices >= 0) [[likely]] { const auto &indexAccesor = model.accessors[prim.indices]; const auto &indexView = model.bufferViews[indexAccesor.bufferView]; const auto indexOffset = indexView.byteOffset + indexAccesor.byteOffset; const IndexSize indextype = indexView.byteStride == 4 ? IndexSize::UINT32 : IndexSize::UINT16; const RenderInfo renderInfo = { bufferIndicies, indexView.buffer + dataId, prim.material == -1 ? materialId : prim.material + materialId, indexAccesor.count, 1, indexOffset, indextype, bufferOffsets, bID}; renderInfos.push_back(renderInfo); } else { const auto accessorID = prim.attributes.begin()->second; const auto &vertAccesor = model.accessors[accessorID]; const RenderInfo renderInfo = { bufferIndicies, 0, prim.material == -1 ? materialId : prim.material + materialId, 0, 1, vertAccesor.count, IndexSize::NONE, bufferOffsets, bID}; renderInfos.push_back(renderInfo); } } } apiLayer->pushRender(renderInfos.size(), renderInfos.data()); } inline size_t loadNodes(const Model &model, APILayer *apiLayer, const size_t nextNodeID, GameGraphicsModule *ggm, const std::vector<shader::ShaderPipe> &created) { std::vector<NodeInfo> nodeInfos = {}; const auto amount = model.nodes.size(); nodeInfos.resize(amount + 1); if (amount != 0) [[likely]] { for (size_t i = 0; i < amount; i++) { const auto &node = model.nodes[i]; const auto infoID = i + 1; auto &info = nodeInfos[infoID]; if (!node.translation.empty()) { info.transforms.translation.x = (float)node.translation[0]; info.transforms.translation.y = (float)node.translation[1]; info.transforms.translation.z = (float)node.translation[2]; } if (!node.scale.empty()) { info.transforms.scale.x = (float)node.scale[0]; info.transforms.scale.y = (float)node.scale[1]; info.transforms.scale.z = (float)node.scale[2]; } if (!node.rotation.empty()) { info.transforms.rotation = glm::quat((float)node.rotation[3], (float)node.rotation[0], (float)node.rotation[1], (float)node.rotation[2]); } for (const auto id : node.children) { nodeInfos[id + 1].parent = nextNodeID + infoID; } if (node.mesh >= 0 && created.size() > node.mesh) [[likely]] { info.bindingID = apiLayer->getShaderAPI()->createBindings(created[node.mesh]); } else { info.bindingID = apiLayer->getShaderAPI()->createBindings(ggm->defaultPipe); } } for (auto &nInfo : nodeInfos) { if (nInfo.parent == UINT64_MAX) { nInfo.parent = nextNodeID; } } } else { const auto startID = apiLayer->getShaderAPI()->createBindings(ggm->defaultPipe); nodeInfos[0].bindingID = startID; } return ggm->addNode(nodeInfos.data(), nodeInfos.size()); } GameGraphicsModule::GameGraphicsModule(APILayer *apiLayer, WindowModule *winModule) { const auto prop = winModule->getWindowProperties(); this->apiLayer = apiLayer; this->windowModule = winModule; // TODO Cleanup this->projectionMatrix = glm::perspective(glm::radians(45.0f), (float)prop.width / (float)prop.height, 0.1f, 100.0f); this->projectionMatrix[1][1] *= -1; this->viewMatrix = glm::lookAt(glm::vec3(0, 0.5f, 1), glm::vec3(0, 0, 0), glm::vec3(0, 1, 0)); } size_t GameGraphicsModule::loadModel(const std::vector<char> &data, const bool binary, const std::string &baseDir, void *shaderPipe) { TinyGLTF loader; std::string error; std::string warning; Model model; const bool rst = binary ? loader.LoadBinaryFromMemory(&model, &error, &warning, (const uint8_t *)data.data(), data.size(), baseDir) : loader.LoadASCIIFromString(&model, &error, &warning, data.data(), data.size(), baseDir); if (!rst) { printf("[GLTF][ERR]: Loading failed\n[GLTF][ERR]: %s\n[GLTF][WARN]: %s\n", error.c_str(), warning.c_str()); return UINT64_MAX; } if (!warning.empty()) { printf("[GLTF][WARN]: %s\n", warning.c_str()); } const auto samplerId = loadSampler(model, apiLayer); const auto textureId = loadTexturesFM(model, apiLayer); const auto dataId = loadDataBuffers(model, apiLayer); std::vector<shader::ShaderPipe> createdShader; const auto materials = model.materials.empty() ? defaultMaterial : loadMaterials(model, apiLayer, samplerId, textureId, createdShader); const auto nId = loadNodes(model, apiLayer, node.size(), this, createdShader); pushRender(model, apiLayer, dataId, materials, nId + 1, this->bindingID); return nId; } main::Error GameGraphicsModule::init() { const auto size = this->node.size(); glm::mat4 projView = this->projectionMatrix * this->viewMatrix; modelMatrices.reserve(UINT16_MAX); for (size_t i = 0; i < size; i++) { const auto &transform = this->node[i]; const auto parantID = this->parents[i]; const auto mMatrix = glm::translate(transform.translation) * glm::scale(transform.scale) * glm::toMat4(transform.rotation); if (parantID < size) { modelMatrices[i] = modelMatrices[parantID] * mMatrix; } else { modelMatrices[i] = mMatrix; } } std::array mvpsPtr = {(const uint8_t *)modelMatrices.data(), (const uint8_t *)&projView}; std::array arrSize = {UINT16_MAX * sizeof(glm::mat4), sizeof(glm::mat4)}; dataID = apiLayer->pushData(mvpsPtr.size(), mvpsPtr.data(), arrSize.data(), DataType::Uniform); const Material defMat(defaultPipe = apiLayer->loadShader(MaterialType::None)); defaultMaterial = apiLayer->pushMaterials(1, &defMat); return main::Error::NONE; } void GameGraphicsModule::tick(double time) { const auto size = this->node.size(); const auto projView = this->projectionMatrix * this->viewMatrix; apiLayer->changeData(dataID + 1, (const uint8_t *)&projView, sizeof(glm::mat4)); for (size_t i = 0; i < size; i++) { const auto parantID = this->parents[i]; if (this->status[i] == 1 || (parantID < size && this->status[parantID])) { const auto &transform = this->node[i]; const auto mMatrix = glm::translate(transform.translation) * glm::scale(transform.scale) * glm::toMat4(transform.rotation); if (parantID < size) { modelMatrices[i] = modelMatrices[parantID] * mMatrix; } else { modelMatrices[i] = mMatrix; } apiLayer->changeData(dataID, (const uint8_t *)&modelMatrices[i], sizeof(glm::mat4), i * sizeof(glm::mat4)); } } std::fill(begin(this->status), end(this->status), 0); } void GameGraphicsModule::destroy() {} uint32_t GameGraphicsModule::loadTextures(const std::vector<std::vector<char>> &data) { std::vector<TextureInfo> textureInfos; util::OnExit onExit([tinfos = &textureInfos] { for (const auto &tex : *tinfos) if (tex.data != nullptr) free(tex.data); }); for (const auto &dataIn : data) { TextureInfo info; info.data = stbi_load_from_memory((stbi_uc *)dataIn.data(), dataIn.size(), (int *)&info.width, (int *)&info.height, (int *)&info.channel, 0); info.size = info.width * info.height * info.channel; textureInfos.push_back(info); if (info.channel == 3) throw std::runtime_error("Texture with 3 channels not supported!"); } return apiLayer->pushTexture(textureInfos.size(), textureInfos.data()); } uint32_t GameGraphicsModule::loadTextures(const std::vector<std::string> &names) { std::vector<std::vector<char>> data; data.reserve(names.size()); for (const auto &name : names) { data.push_back(util::wholeFile(name)); } return loadTextures(data); } size_t GameGraphicsModule::addNode(const NodeInfo *nodeInfos, const size_t count) { const auto nodeID = node.size(); node.reserve(nodeID + count); std::vector<shader::BindingInfo> bindings; bindings.reserve(count); for (size_t i = 0; i < count; i++) { const auto nodeI = nodeInfos[i]; const auto nodeIndex = (nodeID + i); node.push_back(nodeI.transforms); const auto mMatrix = glm::translate(nodeI.transforms.translation) * glm::scale(nodeI.transforms.scale) * glm::toMat4(nodeI.transforms.rotation); if (nodeI.parent < nodeIndex) { modelMatrices.push_back(modelMatrices[nodeI.parent] * mMatrix); parents.push_back(nodeI.parent); } else { modelMatrices.push_back(mMatrix); parents.push_back(UINT64_MAX); } status.push_back(0); if (nodeI.bindingID != UINT64_MAX) [[likely]] { const auto mvp = modelMatrices[nodeID]; const auto off = sizeof(mvp) * (nodeID + i); apiLayer->changeData(dataID, (const uint8_t *)&mvp, sizeof(mvp), off); bindings.push_back({2, nodeI.bindingID, shader::BindingType::UniformBuffer, {dataID, sizeof(mvp), off}}); bindings.push_back({3, nodeI.bindingID, shader::BindingType::UniformBuffer, {dataID + 1, sizeof(mvp), 0}}); } bindingID.push_back(nodeI.bindingID); } apiLayer->getShaderAPI()->bindData(bindings.data(), bindings.size()); return nodeID; } void GameGraphicsModule::updateTransform(const size_t nodeID, const NodeTransform &transform) { this->node[nodeID] = transform; this->status[nodeID] = 1; } } // namespace tge::graphics
330e0647366f25d3143b6ab73682cffec073551d
8635e9e8cde70ce1f55aac7b50d8090add38a163
/Problems/codeforces/454div2/A.cpp
4d13f8c545c2f8cf569555d5ceb158f5a9454ed3
[]
no_license
99hgz/Algorithms
f0b696f60331ece11e99c93e75eb8a38326ddd96
a24c22bdee5432925f615aef58949402814473cd
refs/heads/master
2023-04-14T15:21:58.434225
2023-04-03T13:01:04
2023-04-03T13:01:04
88,978,471
3
1
null
null
null
null
UTF-8
C++
false
false
962
cpp
A.cpp
#include <cstdio> #include <cstring> #include <cstdlib> #include <algorithm> using namespace std; typedef long long ll; int v1, v2, v3, v4, flag, a[5]; bool check(int i) { return i >= v4 && 2 * v4 >= i; } bool check2(int i) { return i >= v4 && 2 * v4 < i; } int main() { scanf("%d%d%d%d", &v1, &v2, &v3, &v4); for (int i = v3; i <= v3 * 2; i++) if (check(i)) { a[3] = i; flag = true; break; } if (!flag) { printf("-1\n"); return 0; } flag = 0; for (int i = max(v2, a[3] + 1); i <= v2 * 2; i++) if (check2(i)) { a[2] = i; flag = true; break; } if (!flag) { printf("-1\n"); return 0; } flag = 0; for (int i = max(v1, a[2] + 1); i <= v1 * 2; i++) if (check2(i)) { a[1] = i; flag = true; break; } if (!flag) { printf("-1\n"); return 0; } for (int i = 1; i <= 3; i++) { printf("%d\n", a[i]); } // system("pause"); return 0; }
d60fd6a448a231991de994171adbab31420092cc
63a791ef24332bed1ae06da442719ea8a7388aef
/src/sparams.cpp
5340c2e3937dfa24601a67c3c6a0cb31c9e3ef3f
[]
no_license
sanllier/QGen
c975b1c631d4c04639b5e0482a9d78796b68d337
15492c9142b7cfed824669d092bec72e21c75d87
refs/heads/master
2021-01-10T22:02:11.592725
2015-04-08T10:38:06
2015-04-08T10:38:06
25,967,884
0
0
null
null
null
null
UTF-8
C++
false
false
4,809
cpp
sparams.cpp
#include "sparams.h" #include "mpicheck.h" #include "pugixml.hpp" #include <vector> //------------------------------------------------------------ namespace QGen { //----------------------------------------------------------- SParams::SParams( MPI_Comm comm/* = MPI_COMM_NULL*/, const char* file/* = 0*/, IFitness* fC/* = 0*/, IRepair* rC/* = 0*/, IScreen* sC/* = 0*/ ) : problemSize(0) , cycThreshold(0) , individsNum(0) , indSize(0) , topoRows(1) , topoCols(1) , targetFitness( BASETYPE(0) ) , accuracy( BASETYPE(0) ) , thetaFrac( BASETYPE(1) ) , fClass(fC) , repClass(rC) , screenClass(sC) #ifdef GPU , gpu(false) #endif { if ( comm == MPI_COMM_NULL ) throw std::string( "Invalid communicator. " ).append( __FUNCTION__ ); if ( file ) initWithFile( comm, file, fC, rC, sC ); } //----------------------------------------------------------- void SParams::initWithFile( MPI_Comm comm, const char* file, IFitness* fC, IRepair* rC/* = 0*/, IScreen* sC/* = 0*/ ) { int isMPIInitialized = 0; CHECK( MPI_Initialized( &isMPIInitialized ) ); if ( !isMPIInitialized ) throw std::string( "MPI was not initialized." ).append( __FUNCTION__ ); if ( !file || !file[0] ) throw std::string( "Some problems with params file. " ).append( __FUNCTION__ ); MPI_File fp = MPI_FILE_NULL; CHECK( MPI_File_open( comm, const_cast<char*>(file), MPI_MODE_RDONLY, MPI_INFO_NULL, &fp ) ); MPI_Offset fileSize = 0; CHECK( MPI_File_get_size( fp, &fileSize ) ); std::vector<char> buf( (unsigned)fileSize ); MPI_Status status; CHECK( MPI_File_read_at_all( fp, 0, &buf[0], int( fileSize ), MPI_CHAR, &status ) ); CHECK( MPI_File_close( &fp ) ); pugi::xml_document doc; doc.load_buffer( &buf[0], unsigned( fileSize ) ); pugi::xml_node qgenNode = doc.child( "qgen" ); if ( !qgenNode ) throw std::string( "Some problems with params file. " ).append( __FUNCTION__ ); for ( pugi::xml_node node = qgenNode.child( "parameter" ); node; node = node.next_sibling() ) { const char* name = node.attribute( "name" ).as_string(0); if ( !name ) continue; if ( 0 == strcmp( "problem-size", name ) ) { problemSize = node.attribute( "value" ).as_uint(0); } else if ( 0 == strcmp( "cycle-threshold", name ) ) { cycThreshold = (long long)node.attribute( "value" ).as_uint(0); } else if ( 0 == strcmp( "individs-num", name ) ) { individsNum = node.attribute( "value" ).as_int(0); } else if ( 0 == strcmp( "individ-size", name ) ) { indSize = node.attribute( "value" ).as_int(0); } else if ( 0 == strcmp( "topology-rows", name ) ) { topoRows = node.attribute( "value" ).as_int(0); } else if ( 0 == strcmp( "topology-cols", name ) ) { topoCols = node.attribute( "value" ).as_int(0); } else if ( 0 == strcmp( "target-fitness", name ) ) { targetFitness = (BASETYPE)node.attribute( "value" ).as_double(0.0); } else if ( 0 == strcmp( "target-accuracy", name ) ) { accuracy = (BASETYPE)node.attribute( "value" ).as_double(0.0); } else if ( 0 == strcmp( "theta-frac", name ) ) { thetaFrac = (BASETYPE)node.attribute( "value" ).as_double(1.0); } else if ( 0 == strcmp( "out-file", name ) ) { outFile = node.attribute( "value" ).as_string(""); } #ifdef GPU else if ( 0 == strcmp( "use-gpu", name ) ) { gpu = node.attribute( "value" ).as_bool( false ); } #endif } pugi::xml_node custom_node = qgenNode.child( "custom" ); for ( pugi::xml_node node = custom_node.child( "parameter" ); node; node = node.next_sibling() ) { const char* name = node.attribute( "name" ).as_string(0); const char* value = node.attribute( "value" ).as_string(""); if ( !name ) continue; m_custom[ name ] = value ? value : ""; } fClass = fC; repClass = rC; screenClass = sC; } //------------------------------------------------------------ const char* SParams::getCustomParameter( const char* name ) const { if ( !name || !name[0] ) return 0; std::map< std::string, std::string >::const_iterator found = m_custom.find( name ); if ( found != m_custom.end() ) return found->second.c_str(); return 0; } //------------------------------------------------------------ }
f9bc6aa96c9f29549efb9fec1862251945fac64a
e40e883292051898726acb1712cf3131977b99b7
/src/my_sqrt.cpp
1f38c52ae50305bc8c160714522a6fba2c68acdb
[]
no_license
nathanmccardel/hw2
49964f5506e2d06266985adf8ea010820ff535f6
a240d77ee676a3a3c758e95682e080afbd7027d7
refs/heads/master
2021-01-16T00:35:45.113998
2016-01-25T00:11:39
2016-01-25T00:11:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
195
cpp
my_sqrt.cpp
#include "eecs230.h" static const double eps {1e-8}; int main() try { // your code goes here } catch (runtime_error& e) { cerr << "runtime error: " << e.what() << '\n'; return 1; }
2043849a05164415b5a4645e7fbc829c8eff52fd
8e6a9e63d76b8dc298a5dc0b38ac744ebeffe821
/VehicleSimulation/camera.cpp
ed258fe3bd10d9d93d97969453760ff0ba697dd3
[]
no_license
MhdAljuboori/Vehicle-Simulation
a023ec5e389253c8289efcb42423f2d175b07cc8
574ba381e3f230adc81f70638026743593c3cf96
refs/heads/master
2020-05-16T14:29:46.464505
2012-05-23T00:21:55
2012-05-23T00:21:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,154
cpp
camera.cpp
#include "camera.h" #include "math.h" Camera::Camera(Vector3D pos, Vector3D view) { Position = pos; View = view; Right = Vector3D (1.0, 0.0, 0.0); Up = Vector3D (0.0, 1.0, 0.0); RotatedX = RotatedY = RotatedZ = 0.0; } void Camera::Move(Vector3D& Direction) { Position = Position + Direction; } void Camera::RotateX(GLfloat Angle) { RotatedX += Angle; //Rotate viewdir around the right vector: View = Vector3D::Normalize(View*cosf(Angle*PIdiv180)+ Up*sinf(Angle*PIdiv180)); //now compute the new UpVector (by cross product) Up = Vector3D::crossProduct(View, Right)*-1; } void Camera::RotateY(GLfloat Angle) { RotatedY += Angle; //Rotate viewdir around the up vector: View = Vector3D::Normalize(View*cosf(Angle*PIdiv180)- Right*sinf(Angle*PIdiv180)); //now compute the new RightVector (by cross product) Right = Vector3D::crossProduct(View, Up); } void Camera::RotateZ(GLfloat Angle) { RotatedZ += Angle; //Rotate viewdir around the right vector: Right = Vector3D::Normalize(Right*cosf(Angle*PIdiv180)+ Up*sinf(Angle*PIdiv180)); //now compute the new UpVector (by cross product) Up = Vector3D::crossProduct(View, Right)*-1; } void Camera::Render() { //calculate view point Vector3D ViewPoint = Position+View; gluLookAt( Position.getX(),Position.getY(),Position.getZ(), ViewPoint.getX(),ViewPoint.getY(),ViewPoint.getZ(), Up.getX(),Up.getY(),Up.getZ()); } void Camera::MoveForward(GLfloat Distance) { Position = Position + (View*Distance); } void Camera::MoveRight(GLfloat Distance) { Position = Position + (Right*Distance); } void Camera::MoveUpward( GLfloat Distance ) { Position = Position + (Up*Distance); } void Camera::Reset(Vector3D view) { View = view; Right = Vector3D (1.0, 0.0, 0.0); Up = Vector3D (0.0, 1.0, 0.0); RotatedX = RotatedY = RotatedZ = 0; } void Camera::Reset() { View.setVector3D(0, 0, -1); Right = Vector3D (1.0, 0.0, 0.0); Up = Vector3D (0.0, 1.0, 0.0); RotatedX = RotatedY = RotatedZ = 0; } Vector3D Camera::getPosition() { return Position; } Vector3D Camera::getRotation() { return Vector3D(RotatedX, RotatedY, RotatedZ); } Vector3D Camera::getView() { return View; }
47abbda5a2b6683d209d6440078eed4a74724ad1
b10720c75f759564b8d214cf6eef9be70ff3894a
/array.cpp
6194ef398ad966763dd63b5bcb79aeb90f6616a4
[]
no_license
anonymouskirill/cpp
d6f2e8ccfc5e7232bd4d28dd435d60c169d4766e
8d59be628f14b5266faace815dd450d495c4c29a
refs/heads/master
2021-06-04T08:07:09.123721
2016-10-04T00:43:43
2016-10-04T00:43:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
306
cpp
array.cpp
#include<iostream> int factorial(int c) { if (c>2) { c=c*factorial(c-1); } return c; } int main() { int b; std::cout << "Please enter an integer: \n"; std::cin >> b; int a[b]; for (int n=0; n<=b-1; n++) { a[n]=factorial(n+1); } for (int n=0; n<=b-1; n++) { std::cout << a[n] << "\n"; } return 0; }
48a45d9347f14de2540ddf51e1b69bf05e696bb0
67401351095c5ed45460c3e47a80806fcc672c41
/1651-Range Update Queries.cpp
89b21dfb0bfac38e9cfea808a30147d4675b81b7
[]
no_license
cwza/cses
5f3d9feefb04a99a3b68b3da653269ea4fe3f09e
1923cadc355fcdc28a6d542dc53e4b46e75644e9
refs/heads/master
2023-04-03T09:29:23.588680
2021-03-29T01:05:48
2021-03-29T01:05:48
344,027,634
0
0
null
null
null
null
UTF-8
C++
false
false
3,101
cpp
1651-Range Update Queries.cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef vector<int> vi; typedef vector<vector<int>> vvi; typedef pair<int, int> pi; /* Binary Index Tree with Difference Array Concept */ // int n, q; // const int maxN = 2e5; // // int x[maxN+1]; // ll tree[maxN+2]; // void add(int idx, int delta) { // // add delta to x[idx] // while(idx <= n) { // tree[idx] += delta; // idx += idx & -idx; // } // } // ll sum(int idx) { // // return sum of range [1, idx] in x // ll s = 0; // while(idx >= 1) { // s += tree[idx]; // idx -= idx & -idx; // } // return s; // } // int main() { // ios::sync_with_stdio(0); // cin.tie(0); // cin >> n >> q; // for(int i = 1, x; i <= n; ++i) { // cin >> x; // add(i, x); // add(i+1, -x); // } // while(q--) { // int qt; // cin >> qt; // if(qt==1) { // int a, b, u; // increase [a, b] by u // cin >> a >> b >> u; // add(a, u); // add(b+1, -u); // } else { // int k; // what is the value in position k; // cin >> k; // cout << sum(k) << "\n"; // } // } // } /* Segment Tree with Lazy Update */ int n, q; const int maxN = 2e5; struct node { ll s, lz; }; node tree[1<<19]; void apply(int i, ll delta, int l, int r) { // update value and lazy tree[i].s += delta*(r-l+1); tree[i].lz += delta; } void push(int i, int l, int mid, int r) { // propagate from parent to children apply(2*i, tree[i].lz, l, mid); apply(2*i+1, tree[i].lz, mid+1, r); tree[i].lz = 0; } void update(int x, int y, ll delta, int i = 1, int l = 1, int r = n) { if(x > r || y < l) { // [x, y] completely not overlap with [l, r] return; } if(x <= l && y >= r) { // [x, y] completely cover [l, r] // Update value and lazy apply(i, delta, l, r); return; } // [x, y] partially overlap with [l, r] int mid = l + (r-l)/2; push(i, l, mid, r); // Propagate update(x, y, delta, 2*i, l, mid); update(x, y, delta, 2*i+1, mid+1, r); tree[i].s = tree[2*i].s + tree[2*i+1].s; } ll query(int x, int y, int i = 1, int l = 1, int r = n) { if(x > r || y < l) { // [x, y] completely not overlap with [l, r] return 0; } if(x <= l && y >= r) { // [x, y] completely cover [l, r] return tree[i].s; } // [x, y] partially overlap with [l, r] int mid = l + (r-l)/2; push(i, l, mid, r); // Propagate ll v1 = query(x, y, 2*i, l, mid); ll v2 = query(x, y, 2*i+1, mid+1, r); return v1 + v2; } int main() { ios::sync_with_stdio(0); cin.tie(0); cin >> n >> q; for(int i = 1, a; i <= n; ++i) { cin >> a; update(i, i, a); } while(q--) { int type, a, b, c; cin >> type; if(type==1) { cin >> a >> b >> c; update(a, b, c); } else { cin >> a; cout << query(a, a) << "\n"; } } }
b160332fe7bff0697459d5570e2ef73d239cff29
39748c7d5cf45a7c109c33c957c416b8657fdb08
/FEBioMech/FEDiscreteElementMaterial.h
d480d11e75ce228ccc4840e20ab43187774f1116
[ "MIT" ]
permissive
febiosoftware/FEBio
46f895daf2927b320c9f6bcbee4ac2accc598b8b
9b8d9371af6edba794a308b82424f9bc2eef74e0
refs/heads/develop
2023-08-13T12:57:21.134397
2023-08-11T18:25:12
2023-08-11T18:25:12
272,567,637
122
46
MIT
2023-08-07T07:06:01
2020-06-15T23:52:36
C++
UTF-8
C++
false
false
2,708
h
FEDiscreteElementMaterial.h
/*This file is part of the FEBio source code and is licensed under the MIT license listed below. See Copyright-FEBio.txt for details. Copyright (c) 2021 University of Utah, The Trustees of Columbia University in the City of New York, and others. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.*/ #pragma once #include "FEDiscreteElasticMaterial.h" #include <FECore/FEFunction1D.h> class FEDiscreteContractileMaterial : public FEDiscreteElasticMaterial { public: FEDiscreteContractileMaterial(FEModel* fem); // evaluate the force at a discrete element vec3d Force(FEDiscreteMaterialPoint& mp) override; // evaluate the stiffness at a discrete element (= dF / dr) mat3d Stiffness(FEDiscreteMaterialPoint& mp) override; private: double force(FEDiscreteMaterialPoint& mp); double force_deriv_L(FEDiscreteMaterialPoint& mp); double force_deriv_V(FEDiscreteMaterialPoint& mp); double passive_force(double L, double V); double active_force(double L, double V); double passive_force_deriv_L(double L, double V); double passive_force_deriv_V(double L, double V); double active_force_deriv_L(double L, double V); double active_force_deriv_V(double L, double V); private: double m_Vmax; // maximum shortening velocity double m_ac; // activation level double m_Fmax; // max force double m_Ksh; // shape parameter that determines the rise of exponential in passive element double m_Lmax; // relative length at which Fmax occurs double m_L0; // initial reference length FEFunction1D* m_Sv; // max velocity scale FEFunction1D* m_Ftl; // normalized tension-length curve for active element FEFunction1D* m_Ftv; // normalized tension-velocity curve for active element DECLARE_FECORE_CLASS(); };
2e2820f9d2816480e7f9b5ea246e3587961b94e8
c638dc9b72c1a148830639546652e2b6a8fa94da
/src/gfx/gfx.h
f036c14e38d39b54945f40c36c2bbbde730a2d60
[ "MIT" ]
permissive
ChronosWS/test_games
133e9c9a38800bc4a49e8d4156d7b6e68f34ed70
ccb3a83cd4b4b379ec271a2855c5723f1810b56f
refs/heads/master
2020-12-12T13:46:15.846481
2020-01-15T17:51:55
2020-01-15T18:02:33
234,138,817
1
0
MIT
2020-01-15T17:49:27
2020-01-15T17:49:27
null
UTF-8
C++
false
false
334
h
gfx.h
#pragma once #include "math/mat.h" #include "math/quat.h" #include "math/vec.h" #include "math/rect.h" #include "platform/platform.cc" // Do our best to keep all graphics related calls in here. namespace gfx { bool Initialize(); void Render(); void PushText(const char* msg, float screen_x, float screen_y); } // namespace gfx
b91071c91a9e911699ece2b726df68f107067e72
dfe1f796a54143e5eb8661f3328ad29dbfa072d6
/psx/_dump_/17/_dump_c_src_/diabpsx/source/objprint.cpp
2fa7bc73d3597451e0b890201f833cf4bc711bf8
[ "Unlicense" ]
permissive
diasurgical/scalpel
0f73ad9be0750ce08eb747edc27aeff7931800cd
8c631dff3236a70e6952b1f564d0dca8d2f4730f
refs/heads/master
2021-06-10T18:07:03.533074
2020-04-16T04:08:35
2020-04-16T04:08:35
138,939,330
15
7
Unlicense
2019-08-27T08:45:36
2018-06-27T22:30:04
C
UTF-8
C++
false
false
23,721
cpp
objprint.cpp
// C:\diabpsx\SOURCE\OBJPRINT.CPP #include "types.h" // address: 0x800749F0 // size: 0x28 // line start: 287 // line end: 314 struct POLY_FT4 *DefaultObjPrint__FP12ObjectStructiiP7TextDatiii(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos, int XOffSet, int YOffSet) { // register: 16 register int AnimFrame; // register: 17 // size: 0x28 register struct POLY_FT4 *Ft4; // register: 2 register int LoadIndex; // register: 17 register int Creature; { { // register: 16 register int PhysFrame; { { // register: 16 // size: 0x28 register struct POLY_FT4 *ShadFt4; } } } } } // address: 0x80074B84 // size: 0x28 // line start: 319 // line end: 338 struct POLY_FT4 *LightObjPrint__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { // register: 19 // size: 0x28 register struct POLY_FT4 *Ft4; { { { { } } } } } // address: 0x80074C3C // size: 0x28 // line start: 354 // line end: 430 struct POLY_FT4 *DoorObjPrint__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { // register: 22 register int AnimFrame; // register: 18 register int XOffSet; // register: 17 register int YOffSet; // register: 16 // size: 0x28 register struct POLY_FT4 *Ft4; // register: 19 // size: 0xC register struct FRAME_HDR *PalFr; // register: 16 // size: 0x6C register struct TextDat *ThisDat; // register: 3 register int LoadIndex; // register: 23 register int Creature; { { } } } // address: 0x80074ED0 // line start: 441 // line end: 448 void DrawLightSpark__Fiii(int xo, int yo, int ot) { } // address: 0x80074FA8 // size: 0x28 // line start: 459 // line end: 467 struct POLY_FT4 *PrintOBJ_L1LIGHT__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { // register: 2 // size: 0x28 register struct POLY_FT4 *Ft4; } // address: 0x80075030 // size: 0x28 // line start: 477 // line end: 478 struct POLY_FT4 *PrintOBJ_SKFIRE__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x8007505C // size: 0x28 // line start: 488 // line end: 489 struct POLY_FT4 *PrintOBJ_LEVER__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075088 // size: 0x28 // line start: 499 // line end: 500 struct POLY_FT4 *PrintOBJ_CHEST1__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800750B4 // size: 0x28 // line start: 510 // line end: 511 struct POLY_FT4 *PrintOBJ_CHEST2__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800750E0 // size: 0x28 // line start: 521 // line end: 522 struct POLY_FT4 *PrintOBJ_CHEST3__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x8007510C // size: 0x28 // line start: 532 // line end: 533 struct POLY_FT4 *PrintOBJ_CANDLE1__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075130 // size: 0x28 // line start: 543 // line end: 544 struct POLY_FT4 *PrintOBJ_CANDLE2__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075154 // size: 0x28 // line start: 554 // line end: 555 struct POLY_FT4 *PrintOBJ_CANDLEO__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075180 // size: 0x28 // line start: 565 // line end: 566 struct POLY_FT4 *PrintOBJ_BANNERL__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800751AC // size: 0x28 // line start: 576 // line end: 577 struct POLY_FT4 *PrintOBJ_BANNERM__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800751D8 // size: 0x28 // line start: 587 // line end: 588 struct POLY_FT4 *PrintOBJ_BANNERR__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075204 // size: 0x28 // line start: 598 // line end: 599 struct POLY_FT4 *PrintOBJ_SKPILE__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075230 // size: 0x28 // line start: 609 // line end: 610 struct POLY_FT4 *PrintOBJ_SKSTICK1__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x8007525C // size: 0x28 // line start: 620 // line end: 621 struct POLY_FT4 *PrintOBJ_SKSTICK2__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075288 // size: 0x28 // line start: 631 // line end: 632 struct POLY_FT4 *PrintOBJ_SKSTICK3__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800752B4 // size: 0x28 // line start: 642 // line end: 643 struct POLY_FT4 *PrintOBJ_SKSTICK4__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800752E0 // size: 0x28 // line start: 653 // line end: 654 struct POLY_FT4 *PrintOBJ_SKSTICK5__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x8007530C // size: 0x28 // line start: 664 // line end: 665 struct POLY_FT4 *PrintOBJ_CRUX1__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075338 // size: 0x28 // line start: 675 // line end: 676 struct POLY_FT4 *PrintOBJ_CRUX2__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075364 // size: 0x28 // line start: 686 // line end: 687 struct POLY_FT4 *PrintOBJ_CRUX3__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075390 // size: 0x28 // line start: 697 // line end: 698 struct POLY_FT4 *PrintOBJ_STAND__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800753BC // size: 0x28 // line start: 708 // line end: 709 struct POLY_FT4 *PrintOBJ_ANGEL__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800753E8 // size: 0x28 // line start: 719 // line end: 720 struct POLY_FT4 *PrintOBJ_BOOK2L__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075414 // size: 0x28 // line start: 730 // line end: 731 struct POLY_FT4 *PrintOBJ_BCROSS__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075440 // size: 0x28 // line start: 741 // line end: 742 struct POLY_FT4 *PrintOBJ_NUDEW2R__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x8007546C // size: 0x28 // line start: 752 // line end: 753 struct POLY_FT4 *PrintOBJ_SWITCHSKL__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075498 // size: 0x28 // line start: 763 // line end: 764 struct POLY_FT4 *PrintOBJ_TNUDEM1__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800754C4 // size: 0x28 // line start: 774 // line end: 775 struct POLY_FT4 *PrintOBJ_TNUDEM2__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800754F0 // size: 0x28 // line start: 785 // line end: 786 struct POLY_FT4 *PrintOBJ_TNUDEM3__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x8007551C // size: 0x28 // line start: 796 // line end: 797 struct POLY_FT4 *PrintOBJ_TNUDEM4__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075548 // size: 0x28 // line start: 807 // line end: 808 struct POLY_FT4 *PrintOBJ_TNUDEW1__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075574 // size: 0x28 // line start: 818 // line end: 819 struct POLY_FT4 *PrintOBJ_TNUDEW2__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800755A0 // size: 0x28 // line start: 829 // line end: 830 struct POLY_FT4 *PrintOBJ_TNUDEW3__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800755CC // size: 0x28 // line start: 840 // line end: 841 struct POLY_FT4 *PrintOBJ_TORTURE1__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800755F8 // size: 0x28 // line start: 851 // line end: 852 struct POLY_FT4 *PrintOBJ_TORTURE2__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075624 // size: 0x28 // line start: 862 // line end: 863 struct POLY_FT4 *PrintOBJ_TORTURE3__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075650 // size: 0x28 // line start: 873 // line end: 874 struct POLY_FT4 *PrintOBJ_TORTURE4__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x8007567C // size: 0x28 // line start: 884 // line end: 885 struct POLY_FT4 *PrintOBJ_TORTURE5__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800756A8 // size: 0x28 // line start: 895 // line end: 896 struct POLY_FT4 *PrintOBJ_BOOK2R__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800756D4 // line start: 906 // line end: 911 void PrintTorchStick__Fiiii(int x, int y, int f, int OtPos) { // register: 16 // size: 0x6C register struct TextDat *ThisDat; } // address: 0x80075768 // size: 0x28 // line start: 915 // line end: 921 struct POLY_FT4 *PrintOBJ_TORCHL__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { // register: 16 // size: 0x28 register struct POLY_FT4 *Ft4; } // address: 0x800757F8 // size: 0x28 // line start: 931 // line end: 937 struct POLY_FT4 *PrintOBJ_TORCHR__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { // register: 16 // size: 0x28 register struct POLY_FT4 *Ft4; } // address: 0x80075888 // size: 0x28 // line start: 947 // line end: 953 struct POLY_FT4 *PrintOBJ_TORCHL2__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { // register: 16 // size: 0x28 register struct POLY_FT4 *Ft4; } // address: 0x80075918 // size: 0x28 // line start: 963 // line end: 969 struct POLY_FT4 *PrintOBJ_TORCHR2__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { // register: 16 // size: 0x28 register struct POLY_FT4 *Ft4; } // address: 0x800759A8 // size: 0x28 // line start: 979 // line end: 980 struct POLY_FT4 *PrintOBJ_SARC__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800759D4 // size: 0x28 // line start: 990 // line end: 991 struct POLY_FT4 *PrintOBJ_FLAMEHOLE__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075A00 // size: 0x28 // line start: 1001 // line end: 1002 struct POLY_FT4 *PrintOBJ_FLAMELVR__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075A2C // size: 0x28 // line start: 1012 // line end: 1013 struct POLY_FT4 *PrintOBJ_WATER__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075A58 // size: 0x28 // line start: 1023 // line end: 1024 struct POLY_FT4 *PrintOBJ_BOOKLVR__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075A84 // size: 0x28 // line start: 1034 // line end: 1035 struct POLY_FT4 *PrintOBJ_TRAPL__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075AB0 // size: 0x28 // line start: 1045 // line end: 1046 struct POLY_FT4 *PrintOBJ_TRAPR__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075ADC // size: 0x28 // line start: 1056 // line end: 1057 struct POLY_FT4 *PrintOBJ_BOOKSHELF__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075B08 // size: 0x28 // line start: 1067 // line end: 1068 struct POLY_FT4 *PrintOBJ_WEAPRACK__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075B34 // size: 0x28 // line start: 1078 // line end: 1079 struct POLY_FT4 *PrintOBJ_BARREL__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075B60 // size: 0x28 // line start: 1089 // line end: 1115 struct POLY_FT4 *PrintOBJ_BARRELEX__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { // register: 16 register int AnimFrame; // register: 17 // size: 0x28 register struct POLY_FT4 *Ft4; { { // register: 16 register int PhysFrame; { { // register: 16 // size: 0x28 register struct POLY_FT4 *ShadFt4; } } } } } // address: 0x80075CB8 // size: 0x28 // line start: 1125 // line end: 1132 struct POLY_FT4 *PrintOBJ_SHRINEL__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { // register: 3 register int AnimFrame; } // address: 0x80075D84 // size: 0x28 // line start: 1142 // line end: 1149 struct POLY_FT4 *PrintOBJ_SHRINER__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { // register: 3 register int AnimFrame; } // address: 0x80075E50 // size: 0x28 // line start: 1159 // line end: 1160 struct POLY_FT4 *PrintOBJ_SKELBOOK__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075E7C // size: 0x28 // line start: 1170 // line end: 1171 struct POLY_FT4 *PrintOBJ_BOOKCASEL__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075EA8 // size: 0x28 // line start: 1181 // line end: 1182 struct POLY_FT4 *PrintOBJ_BOOKCASER__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075ED4 // size: 0x28 // line start: 1192 // line end: 1193 struct POLY_FT4 *PrintOBJ_BOOKSTAND__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075F00 // size: 0x28 // line start: 1203 // line end: 1204 struct POLY_FT4 *PrintOBJ_BOOKCANDLE__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075F24 // size: 0x28 // line start: 1214 // line end: 1215 struct POLY_FT4 *PrintOBJ_BLOODFTN__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075F50 // size: 0x28 // line start: 1225 // line end: 1226 struct POLY_FT4 *PrintOBJ_DECAP__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075F7C // size: 0x28 // line start: 1236 // line end: 1237 struct POLY_FT4 *PrintOBJ_TCHEST1__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075FA8 // size: 0x28 // line start: 1247 // line end: 1248 struct POLY_FT4 *PrintOBJ_TCHEST2__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80075FD4 // size: 0x28 // line start: 1258 // line end: 1259 struct POLY_FT4 *PrintOBJ_TCHEST3__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80076000 // size: 0x28 // line start: 1269 // line end: 1270 struct POLY_FT4 *PrintOBJ_BLINDBOOK__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x8007602C // size: 0x28 // line start: 1280 // line end: 1281 struct POLY_FT4 *PrintOBJ_BLOODBOOK__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80076058 // size: 0x28 // line start: 1291 // line end: 1292 struct POLY_FT4 *PrintOBJ_PEDISTAL__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80076084 // size: 0x28 // line start: 1302 // line end: 1303 struct POLY_FT4 *PrintOBJ_PURIFYINGFTN__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800760B0 // size: 0x28 // line start: 1313 // line end: 1314 struct POLY_FT4 *PrintOBJ_ARMORSTAND__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800760DC // size: 0x28 // line start: 1324 // line end: 1325 struct POLY_FT4 *PrintOBJ_ARMORSTANDN__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80076108 // size: 0x28 // line start: 1335 // line end: 1336 struct POLY_FT4 *PrintOBJ_GOATSHRINE__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80076134 // size: 0x28 // line start: 1346 // line end: 1347 struct POLY_FT4 *PrintOBJ_CAULDRON__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80076160 // size: 0x28 // line start: 1357 // line end: 1358 struct POLY_FT4 *PrintOBJ_MURKYFTN__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x8007618C // size: 0x28 // line start: 1368 // line end: 1369 struct POLY_FT4 *PrintOBJ_TEARFTN__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800761B8 // size: 0x28 // line start: 1379 // line end: 1380 struct POLY_FT4 *PrintOBJ_ALTBOY__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800761E4 // size: 0x28 // line start: 1390 // line end: 1422 struct POLY_FT4 *PrintOBJ_MCIRCLE1__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { // register: 19 register int AnimFrame; // register: 17 // size: 0x28 register struct POLY_FT4 *Ft4; // register: 2 register int LoadIndex; // register: 5 register int Creature; { // register: 20 register int PhysFrame; { { // register: 16 // size: 0x28 register struct POLY_FT4 *ShadFt4; } } } } // address: 0x80076378 // size: 0x28 // line start: 1446 // line end: 1447 struct POLY_FT4 *PrintOBJ_STORYBOOK__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800763A4 // size: 0x28 // line start: 1457 // line end: 1458 struct POLY_FT4 *PrintOBJ_STORYCANDLE__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800763C8 // size: 0x28 // line start: 1468 // line end: 1469 struct POLY_FT4 *PrintOBJ_STEELTOME__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800763F4 // size: 0x28 // line start: 1479 // line end: 1480 struct POLY_FT4 *PrintOBJ_WARARMOR__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80076420 // size: 0x28 // line start: 1490 // line end: 1491 struct POLY_FT4 *PrintOBJ_WARWEAP__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x8007644C // size: 0x28 // line start: 1501 // line end: 1502 struct POLY_FT4 *PrintOBJ_TBCROSS__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80076478 // size: 0x28 // line start: 1512 // line end: 1513 struct POLY_FT4 *PrintOBJ_WEAPONRACK__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800764A4 // size: 0x28 // line start: 1523 // line end: 1524 struct POLY_FT4 *PrintOBJ_WEAPONRACKN__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800764D0 // size: 0x28 // line start: 1534 // line end: 1535 struct POLY_FT4 *PrintOBJ_MUSHPATCH__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x800764FC // size: 0x28 // line start: 1545 // line end: 1546 struct POLY_FT4 *PrintOBJ_LAZSTAND__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80076528 // size: 0x28 // line start: 1556 // line end: 1557 struct POLY_FT4 *PrintOBJ_SLAINHERO__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { } // address: 0x80076554 // size: 0x28 // line start: 1567 // line end: 1568 struct POLY_FT4 *PrintOBJ_SIGNCHEST__FP12ObjectStructiiP7TextDati(struct ObjectStruct *OStr, int ScrX, int ScrY, struct TextDat *ObjDat, int OtPos) { }
cfad0c72402e724c2c386d8a3525b2534dcdfbf5
a07e8ce8748e1c11dcb2fb4f1d8438759a791c0d
/year2/STRINGS/A_attempt/a/main.cpp
b2b69ccbe18927b68b20131cf43863666ba8a9fa
[]
no_license
celidos/programming-mipt-2015-2017
7aef789009cf63dfe415070e6907c634a0b89c7a
cd27a7798f2f50164228b3ab0b7c3015a9c7c049
refs/heads/master
2021-06-16T14:22:29.455077
2017-05-13T15:33:58
2017-05-13T15:33:58
91,165,940
1
0
null
null
null
null
UTF-8
C++
false
false
4,052
cpp
main.cpp
#include <bits/stdc++.h> #define clr(x) memset((x), 0, sizeof(x)) #define all(x) (x).begin(), (x).end() #define pb push_back #define mp make_pair #define For(i, st, en) for(int i=(st); i<=(int)(en); i++) #define Ford(i, st, en) for(int i=(st); i>=(int)(en); i--) #define forn(i, n) for(int i=0; i<(int)(n); i++) #define ford(i, n) for(int i=(n)-1; i>=0; i--) #define fori(it, x) for (__typeof((x).begin()) it = (x).begin(); it != (x).end(); it++) #define in(x) int (x); input((x)); #define x first #define y second #define less(a,b) ((a) < (b) - EPS) #define more(a,b) ((a) > (b) + EPS) #define eq(a,b) (fabs((a) - (b)) < EPS) #define remax(a, b) ((a) = (b) > (a) ? (b) : (a)) #define remin(a, b) ((a) = (b) < (a) ? (b) : (a)) using namespace std; typedef long double ld; template <class _T> inline _T sqr(const _T& x) {return x * x;} template <class _T> inline string tostr(const _T& a) {ostringstream os(""); os << a; return os.str();} const ld PI = 3.1415926535897932384626433832795L; const ld EPS = 5e-12; char TEMPORARY_CHAR; typedef long long ll; typedef unsigned long long ull; typedef set < int > SI; typedef vector < int > VI; typedef vector < vector < int > > VVI; typedef map < string, int > MSI; typedef pair < int, int > PII; const int INF = 1e9; inline void input(int &a) {a = 0; while (((TEMPORARY_CHAR = getchar()) > '9' || TEMPORARY_CHAR < '0') && (TEMPORARY_CHAR != '-')){} char neg = 0; if (TEMPORARY_CHAR == '-') {neg = 1; TEMPORARY_CHAR = getchar();} while (TEMPORARY_CHAR <= '9' && TEMPORARY_CHAR >= '0') {a = 10 * a + TEMPORARY_CHAR - '0'; TEMPORARY_CHAR = getchar();} if (neg) a = -a;} inline void out(int a) {if (!a) putchar('0'); if (a < 0) {putchar('-'); a = -a;} char s[10]; int i; for(i = 0; a; ++i) {s[i] = '0' + a % 10; a /= 10;} ford(j, i) putchar(s[j]);} inline int nxt() {in(ret); return ret;} #define bit(a, pos) ((a >> pos) & 1) struct state { int len; state * link; state * next[10]; int cnt; char can; state() { cnt = 0; len = 0; link = 0; can = -1; memset(next, 0, sizeof(next)); } }; state * root; state * last; void init_sa() { root = new state(); last = root; } vector <state *> pos[150001]; void extend_sa(int c) { state * cur = new state(); cur->len = last->len + 1; pos[cur->len].pb(cur); cur->cnt = 1; state * p = last; for(; p && !p->next[c]; p = p->link) p->next[c] = cur; if (!p) cur->link = root; else { state * q = p->next[c]; if (p->len + 1 == q->len) cur->link = q; else { state * clone = new state(); clone->len = p->len + 1; pos[clone->len].pb(clone); memcpy(clone->next, q->next, sizeof(q->next)); clone->link = q->link; for(; p && p->next[c] == q; p = p->link) p->next[c] = clone; q->link = cur->link = clone; } } last = cur; } ll best = 0; state * bp; char can(state * v) { if (!v) return 0; if (v->can != -1) return v->can; return v->can = can(v->link); } int main() { in(n); in(m); int a[n]; init_sa(); forn(i, n) { a[i] = nxt() - 1; extend_sa(a[i]); } for(int i = n; i > 0; --i) for(int j = 0; j < (int)pos[i].size(); ++j) { state * x = pos[i][j]; if (x->link) x->link->cnt += x->cnt; ll cur = x->len * 1LL * x->cnt; if (cur > best) { best = cur; bp = x; } } bp->can = 1; cout << best << endl; cout << bp->len << endl; state * cur = root; for(int i = 0; i < n; ++i) { cur = cur->next[a[i]]; if (can(cur)) { for(int j = 0; j < bp->len; ++j) { if (j) cout << " "; cout << a[i - bp->len + j + 1] + 1; } cout << endl; return 0; } } return 0; }
def72b538a39471beb8138b56cc0ec8994638422
da297ea32be30cac55d7ba65ad9cd5dbe32b76bb
/apps/sspro4/sspro4_src/sspro/Predict.cxx
7fc7d85eb4b18334dd503aaaf3cad0d404b2838b
[]
no_license
bjornwallner/ProQ_scripts
e5b03f6c8e997bc65683e5036fd198ee8bd173e7
3c0ced2a1d840a6824581cbecb73b9ac6d355a27
refs/heads/master
2021-01-18T21:10:27.569130
2016-09-20T10:23:55
2016-09-20T10:23:55
10,240,829
4
3
null
null
null
null
UTF-8
C++
false
false
2,213
cxx
Predict.cxx
#include "Ensemble.h" #include "Sequence.h" #include "fstream.h" /* Predict the secondary structure for one sequence. Data set file only contains one sequence. */ int main(int argc, char** argv) { if (argc!=5) { cerr << "Usage: " << argv[0] << " model_definition dataset_file alignment_directory dataset_format\n"; //dataset_foramt: 0: 3-line, 1: 9-line, 2: 12 line (9 line + predicted contacts of 8, 12, 16 A). exit(1); } char model[256]; char prot[256]; char alig[256]; char format[256]; strcpy(model,argv[1]); // cout << "model definition: " << model << endl; strcpy(prot,argv[2]); // cout << "data set: " << prot << endl; strcpy(alig,argv[3]); // cout << "alignment directory: " << alig << endl; strcpy(format, argv[4]); // cout << "dataset foramt: " << format << endl; int iFormat = atoi(format); //prediction program accept five different formats /* 0: 3-line (name, sequence, and true_secondary_structure. all of them are strings not seperated by space. 1: 9-line 2: 9 lines + 3 lines of contacts 3: 9-lines + 3 lines of contacts + 1 line of predicted secondary structure 4: line 1: name, line 2: sequence length line 3: sequence, line 4-5: predicted contacts, line6: predicted secondary strucutre Notice: format 4 is only used by prediction program, not by training program and data set prediction. */ if (iFormat != 0 && iFormat != 1 && iFormat != 2 && iFormat !=3 && iFormat != 4) { cout << "data set format is not acceptable.\n"; exit(1); } // cout << "read model file...." << endl; //read models ifstream mstream(model); if (!mstream.is_open()) { cout << "can't open model definition file.\n"; exit(1); } Ensemble ensemble(mstream); // cout << "finish reading model file...." << endl; //read test data set ifstream dstream(prot); if (!dstream.is_open()) { cout << "can't open dataset file.\n"; exit(1); } // cout << "reading dataset...." << endl; DataSet dataset(dstream, alig, iFormat); dataset.set_belief(0); //make prediction for one sequence only for (int i = 0; i < 1; i++) { ensemble.predict(dataset.sequence[i], 1); } // cout << endl; // ensemble.printStatistics(); return 0; }
3c0a4e39386c67cd6607e4c9b9e9e3c21f3d38e3
cd0068a04a706aa902947d5f1233a7f07bec150c
/CPP/namespace/set1/namespace2.cpp
88c152eecdab6f2e77c374f76a0cf0c8a1938b53
[]
no_license
eLtronicsVilla/Miscellaneous
b0c579347faad12cee64408c2a112b33b38a6201
e83f44af985faad93336c1307aeae8694905c3e3
refs/heads/master
2021-11-28T04:22:08.278055
2021-08-14T19:53:29
2021-08-14T19:53:29
161,993,103
0
0
null
2021-08-14T19:53:29
2018-12-16T11:11:10
C++
UTF-8
C++
false
false
433
cpp
namespace2.cpp
// using namespace we can create two variable or member function with the same name scope. // more than one variable are used without reporting any error because they are declared in different namespace. #include <iostream> using namespace std; // variable created inside namespace namespace one { int val = 500; } //global variable int val = 100; int main() { // local variable int val=200; cout<<one::val<<'\n'; return 0; }
5a17cb4516bc9d34e34f2ff9d972cdce3d3ba4d8
c27c16841fc89922a18b71671677a01476a8f061
/memorypool/palloc.h
0c5805e55eac96d6080c335447f8b979f2f36bb8
[]
no_license
wangzhengyang/TreasureChest
389b8ede43e59254283276c2854db1c0a6445fbc
737bd84f49ac246ddfde30b22cce8d43acf359a1
refs/heads/master
2023-02-11T09:14:17.338661
2021-01-07T07:20:32
2021-01-07T07:20:32
258,927,349
0
0
null
null
null
null
UTF-8
C++
false
false
766
h
palloc.h
#ifndef _PALLOC_H #define _PALLOC_H #include "alloc.h" class palloc{ private: enum{ _ALIGN = 8 }; enum{ _MAX_BYTES = 128 }; enum{ _NFREELISTS = 16 }; union Obj{ union Obj *free_list_link; char data[1]; }; static Obj* volatile free_list[_NFREELISTS]; static char *start_free; static char *end_free; static size_t heapsize; static size_t round_up(size_t bytes); static size_t freelist_index(size_t bytes); static void *refill(size_t n); static void *chunk_alloc(size_t size, int &objs); public: static void *allocate(size_t n); static void *deallocate(void *p, size_t n); static void *reallocate(void *p, size_t old_sz, size_t new_sz); }; typedef palloc malloc_palloc; #endif
7b1a88779e2758a9de87b493f822c9c12a92d29a
2a7e77565c33e6b5d92ce6702b4a5fd96f80d7d0
/fuzzedpackages/RiemBase/inst/include/manifolds/riem_04stiefel.h
e167826ee5c0b37fb01005c3614973a24d3ae6f4
[]
no_license
akhikolla/testpackages
62ccaeed866e2194652b65e7360987b3b20df7e7
01259c3543febc89955ea5b79f3a08d3afe57e95
refs/heads/master
2023-02-18T03:50:28.288006
2021-01-18T13:23:32
2021-01-18T13:23:32
329,981,898
7
1
null
null
null
null
UTF-8
C++
false
false
5,233
h
riem_04stiefel.h
#ifndef RIEM_04STIEFEL_H #define RIEM_04STIEFEL_H #define ARMA_NO_DEBUG // [[Rcpp::depends(RcppArmadillo)]] #include <RcppArmadillo.h> using namespace arma; // 01. dim(x) inline int stiefel_dim(arma::mat x){ int n = x.n_rows; int p = x.n_cols; int output = ((n*p)-(p*(p+1)/2)); return(output); } // 02. inner(x,d1,d2) inline double stiefel_inner(arma::mat x, arma::mat d1, arma::mat d2){ return(arma::as_scalar(arma::dot(arma::vectorise(d1), arma::vectorise(d2)))); } // 03. norm(x,d) inline double stiefel_norm(arma::mat x, arma::mat d){ return(arma::norm(d, "fro")); } // 05. proj(x,u) inline arma::mat stiefel_proj(arma::mat x, arma::mat u){ arma::mat A = (x.t()*u); return(u - x*((A+A.t())/2.0)); } // 06. tangent(x,u) inline arma::mat stiefel_tangent(arma::mat x, arma::mat u){ return(stiefel_proj(x,u)); } // 07. tangent2ambient // 08. rand(x) inline arma::mat stiefel_rand(arma::mat x){ int n = x.n_rows; int p = x.n_cols; arma::mat A(n,p,fill::randn); arma::mat Q,R; arma::qr(Q,R,A); return(Q); } // 09. randvec(x) inline arma::mat stiefel_randvec(arma::mat x){ int n = x.n_rows; int p = x.n_cols; arma::mat A(n,p,fill::randn); arma::mat U; U = stiefel_proj(x,A); U /= arma::norm(U,"fro"); return(U); } // 10. zerovec(x) inline arma::mat stiefel_zerovec(arma::mat x){ int n = x.n_rows; int p = x.n_cols; arma::mat out(n,p,fill::zeros); return(out); } // 11. vec(x,u_mat) inline arma::mat stiefel_vec(arma::mat x, arma::mat u_mat){ int n = x.n_rows; int p = x.n_cols; arma::mat out = arma::reshape(u_mat,(n*p),1); return(out); } // 12. mat(x,u_vec) inline arma::mat stiefel_mat(arma::mat x, arma::mat u_vec){ arma::mat out = arma::reshape(u_vec, x.n_rows, x.n_cols); return(out); } // 13. nearest(x) {heuristic} inline arma::mat stiefel_nearest(arma::mat x){ arma::mat Q,R; arma::qr_econ(Q,R,x); return(Q); } // 14. exp(x,d,t) inline arma::mat stiefel_exp(arma::mat x, arma::mat u, double t){ const int n = x.n_rows; const int p = x.n_cols; arma::mat Ip(p,p,fill::eye); arma::mat Zp(p,p,fill::zeros); arma::mat tu = t*u; arma::mat term1 = arma::join_horiz(x, tu); arma::mat term21 = arma::join_horiz((x.t()*tu), -((tu.t())*tu)); arma::mat term22 = arma::join_horiz(Ip, (x.t()*tu)); arma::mat term2 = arma::expmat(arma::join_vert(term21, term22)); arma::mat term3 = arma::join_vert(arma::expmat(-(x.t()*tu)), Zp); arma::mat output = term1*term2*term3; return(output); } // 15. log(x,y) + // 04. dist(x,y) inline arma::mat stiefel_log(arma::mat U0, arma::mat U1){ const int n = U0.n_rows; const int p = U0.n_cols; const double tau = 1e-6; // default convergence threshold const int maxiter = 12345; // default maximum number of iterations // 1. arma::mat M = U0.t()*U1; // 2. thin QR of normal component of U1 arma::mat Q,N; arma::qr_econ(Q,N,U1-(U0*M)); // 3. orthogonal completion + procrustes preprocessing ------------- no QR_ECON ? arma::mat V, Vaway; arma::qr(V, Vaway, arma::join_vert(M,N)); arma::mat D, R; arma::vec vecS; arma::svd(D,vecS,R,V.submat(p,p,(2*p)-1,(2*p)-1)); arma::mat S = arma::diagmat(vecS); V.cols(p,(2*p)-1) = V.cols(p,(2*p)-1)*(R*D.t()); V = arma::join_horiz(arma::join_vert(M,N),V.cols(p,(2*p)-1)); // 4. for looping arma::cx_mat LVcx; arma::mat LV, C, Phi; double normC; for (int k=0;k<maxiter;k++){ LVcx = arma::logmat(V); LV = arma::real(LVcx); // lower (pxp) diagonal block C = LV.submat(p,p,(2*p)-1,(2*p)-1); // convergence check normC = arma::norm(C, 2); if (normC < tau){ break; } // matrix exponential Phi = arma::expmat(-C); // update last p columns V.cols(p,(2*p)-1) = V.cols(p,(2*p)-1)*Phi; } // 5. prepare output arma::mat Delta = (U0*LV.submat(0,0,(p-1),(p-1))) + (Q*LV.submat(p,0,(2*p)-1,p-1)); return(Delta); } inline double stiefel_dist(arma::mat x, arma::mat y){ arma::mat delta = stiefel_log(x,y); double output = stiefel_norm(x, delta); return(output); } // 16. retr(x,d,t) inline arma::mat stiefel_retr(arma::mat x, arma::mat u, double t){ arma::mat y = x + (t*u); arma::mat Q,R; arma::qr(Q,R,y); return(Q); } // 17. invretr(x,y) inline arma::mat stiefel_invretr(arma::mat x, arma::mat y){ int n = x.n_rows; int p = x.n_cols; arma::mat xty = (x.t()*y); arma::mat Ip(p,p,fill::eye); arma::mat A = xty; arma::mat B = xty.t(); arma::mat C = -2.0*Ip; arma::mat M = arma::syl(A,B,C); arma::mat U = y*M-x; return(U); } // 18. equiv(x,m,n) inline arma::vec stiefel_equiv(arma::mat x, int m, int n){ arma::vec output = arma::vectorise(x,0); return(output); } // 19. invequiv(x,m,n) inline arma::mat stiefel_invequiv(arma::vec x, int m, int n){ arma::mat mu = arma::reshape(x,m,n); arma::mat rhs = arma::pinv(arma::real(arma::sqrtmat(mu.t()*mu))); arma::mat output = mu*rhs; return(output); } // 20. extdist(x,y) inline double stiefel_extdist(arma::mat x, arma::mat y){ int m = x.n_rows; int n = x.n_cols; arma::vec xext = stiefel_equiv(x, m, n); arma::vec yext = stiefel_equiv(y, m, n); return(arma::as_scalar(arma::norm(xext-yext,"fro"))); } #endif
b1d8c7bcfabf868bb44d078c58c87294c4855bdb
deb3b26388ff579425d23235230cec1517e25d81
/LeastCommonAncestors.cpp
da8893a9f9521500dc785973a73208444b32a708
[]
no_license
GauravHokai/DS-Algo
b84232d5e6c03a81bf62afa8dea9f80aa6e2dd4b
bc7339127f8055fe633df6f7ba01527c69af59ff
refs/heads/master
2020-12-22T12:34:19.413755
2020-06-16T15:47:13
2020-06-16T15:47:13
236,782,475
0
0
null
null
null
null
UTF-8
C++
false
false
1,029
cpp
LeastCommonAncestors.cpp
/** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ void search(TreeNode *A,int B, bool &flag) { if(A==NULL) return; if(A->val==B) { flag = true; return; } if(A->left) search(A->left,B,flag); if(A->right) search(A->right,B,flag); } TreeNode *lcaa(TreeNode *A,int B, int C) { if(A==NULL || A->val==B || A->val==C) return A; TreeNode *left = lcaa(A->left,B,C); TreeNode *right = lcaa(A->right,B,C); if(left==NULL and right==NULL) return NULL; if(left!=NULL and right!=NULL) return A; return left==NULL?right:left; } int Solution::lca(TreeNode* A, int B, int C) { if(A==NULL) return -1; bool flag1 = false; bool flag2 = false; search(A,B,flag1); search(A,C,flag2); if(flag1==false || flag2==false) { return -1; } TreeNode *node; node = lcaa(A,B,C); return node->val; }
65740612ec0bf321e2a8bdf4fff482bd48aeceb1
fcedd7f4aad518c16c528ad082e7a37d6b346434
/winpcapTest/gpsExample_thread_ip.cpp
c3a0cd0a79e9e2cd2fb99fe1e162c59777e54f10
[]
no_license
qoo/winpcapTest-GPS-only
09950139126462ee34e504ea8262921f860ed1eb
d234f5e39bc60782a40469ceece9ebdd64c03bb7
refs/heads/master
2021-07-01T00:03:11.263497
2017-09-19T20:02:41
2017-09-19T20:02:41
104,223,917
0
0
null
null
null
null
UTF-8
C++
false
false
14,016
cpp
gpsExample_thread_ip.cpp
/* Adept MobileRobots Robotics Interface for Applications (ARIA) Copyright (C) 2004-2005 ActivMedia Robotics LLC Copyright (C) 2006-2010 MobileRobots Inc. Copyright (C) 2011-2015 Adept Technology, Inc. Copyright (C) 2016 Omron Adept Technologies, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA If you wish to redistribute ARIA under different terms, contact Adept MobileRobots for information about a commercial version of ARIA at robots@mobilerobots.com or Adept MobileRobots, 10 Columbia Drive, Amherst, NH 03031; +1-603-881-7960 */ /** @example gpsExample.cpp Example program to connect to a GPS and read and * display data on the terminal. * Also tries to connect to a TCM compass through the computer serial port, and * use that to set the ArGPS compass data. */ /* Multithreading definition */ #include "stdafx.h" #include <stdio.h> #include <iostream> #include <thread> /* GPS definition */ #include "Aria.h" #include "ArGPS.h" #include "ArGPSConnector.h" #include "ArTrimbleGPS.h" #include "ArTCMCompassDirect.h" /* Write data, read system time */ #include <iostream> #include <fstream> #include <string> #include <chrono> /* Multitheading */ #include <thread> using namespace std::chrono; using namespace std; /* prototype of the GPS */ int GPS(int argc, char** argv); /* Pcap definition */ #ifdef _MSC_VER /* * we do not want the warnings about the old deprecated and unsecure CRT functions * since these examples can be compiled under *nix as well */ #define _CRT_SECURE_NO_WARNINGS #endif #include <pcap.h> /* prototype of the packet handler */ int Lidar(int argc, char** argv, char *filter); std::ofstream lidarInit; /* Global variable, switch */ bool switch_gps = true; void getTime(char* buf); int main(int argc, char** argv) { // predefine //argv[1] = "Lidar_test.pcap"; //argv[2] = "Gps_test.csv"; argv[3] = "-gpsBaud"; argv[4] = "38400"; argv[5] = "-gpsPort"; argv[6] = "COM1"; argc = 7; //ArLog::log(ArLog::Terse, "Activate GPS device"); /* User choose ip filtering for Lidar*/ //char *filter = NULL; //string input = ""; //while (true) { // cout << "Please choose a Lidar to record (1: left, 2: right): "; // getline(cin, input); // if ( isdigit(input[0]) && input.substr(0, 1) == "1" ) { // filter = "src 192.168.1.201"; // "host 151.101.45.105" // break; // }else if (isdigit(input[0]) && input.substr(0, 1) == "2") { // filter = "src 192.168.1.202"; // "host 151.101.45.105" // break; // } // cout << "Invalid input, please try again" << endl; //} //char *cinput = new char[input.length() + 1]; //strcpy(cinput, input.c_str()); //filter = cinput; //cout << "Filtering ip: " << filter << endl; /* User choose port for GPS*/ //string input = ""; //while (true) { // cout << "Please enter a port (ex: COM1): "; // getline(cin, input); // if (input.substr(0, 3) == "COM" && isdigit(input[3]) ) { // break; // } // cout << "Invalid input, please try again" << endl; //} // //char *cinput = new char[input.length() + 1]; //strcpy(cinput, input.c_str()); //argv[6] = cinput; //cout << "Initiate gpsPort: " << argv[6] << endl; /* Use timestamp for file names*/ char buf[26]; getTime(buf); buf[24] = '_'; buf[25] = '\0'; int i = 0; while (buf[i] != '\0') { if (buf[i] == ':' || buf[i] == ' ') { buf[i] = '_'; } i = i + 1; } string str(buf); string str2(str); string str3(str); str += "Lidar_test.pcap"; str2 += "dataGPS_test.csv"; char *cstr = new char[str.length() + 1]; strcpy(cstr, str.c_str()); argv[1] = cstr; char *cstr2 = new char[str2.length() + 1]; strcpy(cstr2, str2.c_str()); argv[2] = cstr2; //str3 += "Lidar_init.csv"; //char *cstr3 = new char[str3.length() + 1]; //strcpy(cstr3, str3.c_str()); //std::ofstream lidarInit; //lidarInit.open(cstr3); //lidarInit.close(); // system("pause"); /* mulithreads for GPS and Lidar*/ // GPS(argc, argv); printf("Activate GPS device\n"); //thread t1(&GPS, argc, argv); GPS(argc, argv); // system("pause"); //printf("Activate Lidar device\n"); // Lidar(argc, argv); //thread t2(&Lidar, argc, argv, filter); //t1.join(); //t2.join(); return 0; } void getTime(char* buf) { struct tm newtime; __int64 ltime; //char buf[26]; errno_t err; milliseconds ms = duration_cast<milliseconds>( system_clock::now().time_since_epoch() ); _time64(&ltime); // Obtain coordinated universal time: err = _gmtime64_s(&newtime, &ltime); err = asctime_s(buf, 26, &newtime); } int Lidar(int argc, char** argv, char *filter) { pcap_if_t *alldevs; pcap_if_t *d; int inum; int i = 0; pcap_t *adhandle; char errbuf[PCAP_ERRBUF_SIZE]; pcap_dumper_t *dumpfile; /* Parameter for ex */ struct pcap_pkthdr *header; const u_char *pkt_data; time_t local_tv_sec; int res; struct tm *ltime; char timestr[16]; /* Check command line */ //if (argc != 2) //{ // printf("usage: %s filename", argv[0]); // return -1; //} /* Retrieve the device list on the local machine */ if (pcap_findalldevs(&alldevs, errbuf) == -1) { fprintf(stderr, "Error in pcap_findalldevs: %s\n", errbuf); exit(1); } /* Print the list */ for (d = alldevs; d; d = d->next) { printf("%d. %s", ++i, d->name); if (d->description) printf(" (%s)\n", d->description); else printf(" (No description available)\n"); } if (i == 0) { printf("\nNo interfaces found! Make sure WinPcap is installed.\n"); return -1; } printf("Enter the interface number (1-%d):", i); //scanf("%d", &inum); inum = 1; if (inum < 1 || inum > i) { printf("\nInterface number out of range.\n"); /* Free the device list */ pcap_freealldevs(alldevs); return -1; } /* Jump to the selected adapter */ for (d = alldevs, i = 0; i< inum - 1; d = d->next, i++); /* Open the adapter */ if ((adhandle = pcap_open_live(d->name, // name of the device 65536, // portion of the packet to capture. // 65536 grants that the whole packet will be captured on all the MACs. 1, // promiscuous mode (nonzero means promiscuous) 1000, // read timeout errbuf // error buffer )) == NULL) { fprintf(stderr, "\nUnable to open the adapter. %s is not supported by WinPcap\n", d->name); /* Free the device list */ pcap_freealldevs(alldevs); return -1; } /*!!! compile the filter */ //pcap_t *fp; // pcap_t *adhandle; struct bpf_program fcode; //char *filter = NULL; //filter = "host 151.101.45.105";//argv[6] = "COM1";"host 52.112.64.34" bpf_u_int32 netmask; if (filter != NULL) { if (d->addresses != NULL) /* Retrieve the mask of the first address of the interface */ netmask = ((struct sockaddr_in *)(d->addresses->netmask))->sin_addr.S_un.S_addr; else /* If the interface is without an address we suppose to be in a C class network */ netmask = 0xffffff; if (pcap_compile(adhandle, &fcode, filter, 1, netmask) < 0) { fprintf(stderr, "\nError compiling filter: wrong syntax.\n"); pcap_close(adhandle); return -3; } //set the filter if (pcap_setfilter(adhandle, &fcode)<0) { fprintf(stderr, "\nError setting the filter\n"); pcap_close(adhandle); return -4; } } /* Open the dump file */ dumpfile = pcap_dump_open(adhandle, argv[1]); if (dumpfile == NULL) { fprintf(stderr, "\nError opening output file\n"); return -1; } printf("\nlistening on %s... Press Ctrl+C to stop...\n", d->description); /* At this point, we no longer need the device list. Free it */ pcap_freealldevs(alldevs); /* start the capture */ // pcap_loop(adhandle, 0, packet_handler, (unsigned char *)dumpfile); /* Retrieve the packets */ long cntLidar = 0; while ((res = pcap_next_ex(adhandle, &header, &pkt_data)) >= 0) { if (res == 0) /* Timeout elapsed */ continue; /* convert the timestamp to readable format */ if (cntLidar < 10 || cntLidar % 100 == 0) { local_tv_sec = header->ts.tv_sec; ltime = localtime(&local_tv_sec); strftime(timestr, sizeof timestr, "%H:%M:%S", ltime); printf("%s,%.6d len:%d\n", timestr, header->ts.tv_usec, header->len); if (cntLidar == 0) { /*system time*/ milliseconds ms = duration_cast< milliseconds >( system_clock::now().time_since_epoch() ); lidarInit << ms.count() << ","; lidarInit.close(); } } cntLidar++; pcap_dump((unsigned char *)dumpfile, header, pkt_data); } if (res == -1) { printf("Error reading the packets: %s\n", pcap_geterr(adhandle)); return -1; } pcap_close(adhandle); return 0; } int GPS(int argc, char** argv) { ArLog::log(ArLog::Normal, "Program start...."); Aria::init(); ArArgumentParser parser(&argc, argv); parser.loadDefaultArguments(); ArRobot robot; ArRobotConnector robotConnector(&parser, &robot); ArGPSConnector gpsConnector(&parser); std::ofstream myfile; //myfile.open(argv[2]); // Connect to the robot, get some initial data from it such as type and name, // and then load parameter files for this robot. //if(!robotconnector.connectrobot()) //{ // arlog::log(arlog::terse, "gpsexample: warning: could not connect to robot. will not be able to switch gps power on, or load gps options from this robot's parameter file."); //} if (!Aria::parseArgs() || !parser.checkHelpAndWarnUnparsed()) { Aria::logOptions(); ArLog::log(ArLog::Terse, "gpsExample options:\n -printTable Print data to standard output in regular columns rather than a refreshing terminal display, and print more digits of precision"); Aria::exit(1); } //ArLog::log(ArLog::Normal, "gpsExample: Connected to robot."); //robot.runAsync(true); //// check command line arguments for -printTable bool printTable = parser.checkArgument("printTable"); // On the Seekur, power to the GPS receiver is switched on by this command. // (A third argument of 0 would turn it off). On other robots this command is // ignored. robot.com2Bytes(116, 6, 1); // Try connecting to a GPS. We pass the robot pointetr to the connector so it // can check the robot parameters for this robot type for default values for // GPS device connection information (receiver type, serial port, etc.) ArLog::log(ArLog::Normal, "gpsExample: Connecting to GPS, it may take a few seconds..."); ArGPS *gps = gpsConnector.createGPS(&robot); ArLog::log(ArLog::Terse, "save data as example.csv"); myfile.open(argv[2]); myfile.precision(15); gps->printDataLabelsHeader(); //gps->printData(); //(gps->printData()); //gps->haveLatitude(); //gps->writeDataLabelsHeader(); //printf("Pos:% 2.6f % 2.6f", gps->getLatitude(), gps->getLongitude());; myfile << "Latitude,Longitude,GPS time(hhmmss), System time(ms),Altitude (m),Speed (m/s),NumSatellites,AvgSNR (dB),\n"; if (!gps || !gps->connect()) { ArLog::log(ArLog::Terse, "gpsExample: Error connecting to GPS device. Try -gpsType, -gpsPort, and/or -gpsBaud command-line arguments. Use -help for help."); system("pause"); return -1; } if (gpsConnector.getGPSType() == ArGPSConnector::Simulator) { ArLog::log(ArLog::Normal, "gpsExample: GPS data is from simulator."); /* If connected to MobileSim, and aa map is loaded into MobileSim that contains an OriginLatLonAlt line, then MobileSim will provides simulated GPS data based on the robot's true position in the simulator. But you can also manually set "dummy" positions like this instead, or to simulate GPS without connecting to MobileSim: */ //ArLog::log(ArLog::Normal, "gpsExample: GPS is a simulator. Setting dummy position."); //(dynamic_cast<ArSimulatedGPS*>(gps))->setDummyPosition(42.80709, -71.579047, 100); } ArLog::log(ArLog::Normal, "gpsExample: Reading data..."); ArTime lastReadTime; if (printTable) { ArLog::log(ArLog::Normal, "printTable is true..."); //gps->printDataLabelsHeader(); } while (true) { int r = gps->read(); if (r & ArGPS::ReadError) { ArLog::log(ArLog::Terse, "gpsExample: Warning: error reading GPS data."); ArUtil::sleep(1000); continue; } if (r & ArGPS::ReadUpdated) { if (printTable) { gps->printData(false); printf("\n"); } else { gps->printData(); printf("\r"); /* Save data to csv via following order. "Latitude,Longitude,System time,Altitude (m),Speed (m/s),NumSatellites,AvgSNR (dB)\n";*/ if (!gps->havePosition()) { myfile << ","; myfile << ","; } else { myfile << gps->getLatitude() << ","; myfile << gps->getLongitude() << ","; } /* time */ myfile << gps->getGPSPositionTimestamp().getSec() << ","; /*system time*/ milliseconds ms = duration_cast< milliseconds >( system_clock::now().time_since_epoch() ); myfile << ms.count() << ","; if (!gps->haveAltitude()) { myfile << ","; } else { myfile << gps->getAltitude() << ","; } if (gps->haveSpeed()) { myfile << gps->getSpeed() << ","; } else { myfile << ","; } myfile << gps->getNumSatellitesTracked() << ","; if (gps->haveSNR()) { myfile << gps->getMeanSNR() << ","; } else { myfile << ","; } myfile << "\n"; } ArUtil::sleep(500); lastReadTime.setToNow(); continue; } else { if (lastReadTime.secSince() >= 5) { ArLog::log(ArLog::Terse, "gpsExample: Warning: haven't recieved any data from GPS for more than 5 seconds!"); } ArUtil::sleep(1000); continue; } } myfile.close(); return 0; };
dd16d2bd0d235454ea449a2ba01832bbe6855f06
8a3649b3fd343b85fa5e1a64c4e6261d3c0a2fe3
/on_tap_thi_cuoi_ki/1.1.14.cpp
3650b0fadece06eec2e3458386350a52ba05ee4c
[]
no_license
azaharbarbie/Bai_tapC
3c58405185e63b37f928eab46ca7e645a0a42779
59cdf98807c2971ec7fe8297b5a0bf84693d4bfd
refs/heads/main
2023-07-13T02:40:11.528098
2021-08-20T15:22:47
2021-08-20T15:22:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
591
cpp
1.1.14.cpp
#include<iostream> #include<math.h> using namespace std; bool kt1(int a, int k)// kiem tra co k chu so hay khong { if(a>=pow(10,k-1) && a<=(pow(10,k)-1)) return 1; return 0; } bool kt2(int a)// kiem tra so nguyen to { if(a<2) return 0; for(int i=2;i<=sqrt(a);i++){ if(a%i==0) return 0; } return 1; } bool kt3(int a)// kiem tra dao nguoc co la so nguyen to khong { int c=0; while (b>0){ c=c*10+a%10; a/=10; } if(kt2(c)==1) return 1; return 0 } bool kt4(int a){ while(a>0){ if(kt2(a%10)==0) return 0; a/=10; } return 1; } int main(){ }
932ec1b1cc564f78ddfe5845793c19eda154c542
1f13efa14eddb3def86759e51197465cd17225ba
/L1-039/L1-039.cpp
4d63147a57508e46db2d8d4efe7ff5359b9026f1
[ "MIT" ]
permissive
codexvn/PTA
d4b131f5e9f582ef9ec6ec9434f96644a4fa57f4
f258c312565643d9a15a45f8f7bbc6811cff4019
refs/heads/master
2021-06-25T01:44:02.159428
2021-04-22T02:57:51
2021-04-22T02:57:51
221,205,341
0
0
null
null
null
null
UTF-8
C++
false
false
476
cpp
L1-039.cpp
#include <iostream> #include<vector> using namespace std; int main() { int N; cin >> N >> ws; vector<char>* str; str = new vector<char>[N]; char get = 0; while (true) { for (int i = 0; i < N; i++) { cin.get(get); if (get == '\n') goto out_loop; str[i].push_back(get); } } out_loop: for (int i = 0; i < N; i++) { if (str[i].size() < str[0].size())cout << ' '; for (int j = str[i].size() - 1; j >= 0; j--) cout << str[i][j]; cout << endl; } }
3f56bc300f981b35cd3e8183ff6d495cfeb589be
aa804932a697ab16ad1463f4f68702c7f1c176d8
/Chapter 5/EngineTest/EngineTest/Source/Core/M5ArcheTypes.h
6feba9a267e8ad97d63590172f241db1db98481d
[ "MIT" ]
permissive
PacktPublishing/Game-Development-Patterns-and-Best-Practices
ab78d635d4942468a658a89d30ffd6a5d81249ce
5fabb45cb4e509472a71f6d72e63eafe4a89de66
refs/heads/master
2023-01-27T22:25:20.453578
2023-01-18T10:00:02
2023-01-18T10:00:02
88,573,350
21
3
null
null
null
null
UTF-8
C++
false
false
1,127
h
M5ArcheTypes.h
/******************************************************************************/ /*! \file M5ArcheTypes.h \author UserPreBuild.bat \par email: lazersquad\@gmail.com \par Mach5 Game Engine This file gets auto generated based on the names of the ArcheTypes in the current project. UserPreBuild.bat looks for files of the type *.ini in the ArcheTypes folder and creates an enumeration value of AT_*. */ /******************************************************************************/ #ifndef M5ARCHE_TYPES_H #define M5ARCHE_TYPES_H #include <string> //! AutoGenerated enum based on archetype ini file names enum M5ArcheTypes { AT_Bullet, AT_Player, AT_Raider, AT_Splash, AT_Ufo, AT_INVALID }; //! AutoGenerated function to convert strings to our M5ArcheTypes type inline M5ArcheTypes StringToArcheType(const std::string& string) { if(string == "Bullet") return AT_Bullet; if(string == "Player") return AT_Player; if(string == "Raider") return AT_Raider; if(string == "Splash") return AT_Splash; if(string == "Ufo") return AT_Ufo; return AT_INVALID; } #endif //M5ARCHE_TYPES_H
ac8a0bf8cea3186381ad78c2edceed829ffdc844
0a69cd1aabc62c1ed58d316f46da69ed0f18ff78
/src/include/HdPoseNode.h
c4b7f6bc9a4d62a94d10eba5fb341b055f56acaf
[ "MIT" ]
permissive
jonntd/hyperdrive
b25f396777bdf2aac38582afae4f7a38235c45a5
f542dd4c2c76ad6a6550fae8f277fd33d0316bdd
refs/heads/master
2020-06-18T03:05:31.023812
2019-04-29T20:27:57
2019-04-29T20:27:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,172
h
HdPoseNode.h
/* * ----------------------------------------------------------------------------- * This source file has been developed within the scope of the * Technical Director course at Filmakademie Baden-Wuerttemberg. * http://technicaldirector.de * * Written by Tim Lehr * Copyright (c) 2019 Animationsinstitut of Filmakademie Baden-Wuerttemberg * ----------------------------------------------------------------------------- */ #ifndef HD_POSE_NODE #define HD_POSE_NODE #include <maya/MPxNode.h> #include "spdlog/spdlog.h" #include "HdPose.h" class HdPoseNode : public MPxNode { public: HdPoseNode(); virtual ~HdPoseNode(); static void* creator(); static MStatus initialize(); void postConstructor(); virtual SchedulingType schedulingType() const override; virtual MStatus compute(const MPlug& plug, MDataBlock& data); MStatus setCacheIds(MDataBlock& data); bool cachesContainPoseId(MDataBlock& data, std::string poseIdHash, MStatus& status); HdPose createPose(MDataBlock& data, MStatus& status); MStatus setPoseId(MDataBlock& data, HdPose* pose); MStatus setRigFrozen(MDataBlock& data, bool frozen); MStatus preEvaluation(const MDGContext& context, const MEvaluationNode& evaluationNode); void logExecutionTime(HdUtils::time_point startTime); static MTypeId id; // unique node id static MObject aInCtrlVals; static MObject aInRigTag; static MObject aOutPoseId; static MObject aOutFreezeRig; static MObject aOutCacheIds; static MObject aInWhitelist; private: std::shared_ptr<spdlog::logger> log; bool instanceLog = false; bool currentPoseValid = false; bool needsEvaluation = false; }; #endif
27fefc87945dfcd4527169635560cb6a61c91e58
b4330417dd1590cf7ea3484c4dda20a0ecfee3b4
/Online_judge/poj/poj_3244.cpp
d28ccf5ab302bfb2bc124fd041dd89c5a9443cf2
[]
no_license
Q10Viking/ACM_ICPC
d2b2c69e451a4e8de2fafdf346797900c61e65ee
d3d6547313a4400ed9c3eef1339a79466ffa5d97
refs/heads/master
2021-01-01T17:26:04.629801
2014-07-03T06:54:15
2014-07-03T06:54:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,612
cpp
poj_3244.cpp
#include <iostream> #include <cstdio> #include <algorithm> #include <vector> #include <set> #include <cstring> #include <cmath> #define error {puts("-1");return 0;} #define mp(a,b) make_pair(a , b) #define mpp(a,b,c) mp(mp(a,b),c) #define HASH 1000000007 using namespace std; typedef long long LL; const int N = 200005; struct Node { int a , b , c; void input () { scanf ("%d %d %d" , &a , &b , &c); } }a[N]; int n; bool cmpab (Node a , Node b) { return a.a - a.b < b.a - b.b; } bool cmpbc (Node a , Node b) { return a.b - a.c < b.b - b.c; } bool cmpca (Node a , Node b) { return a.c - a.a < b.c - b.a; } int main () { #ifndef ONLINE_JUDGE freopen ("input.txt" , "r" , stdin); #endif while (scanf ("%d" , &n) != EOF && n) { for (int i = 0 ; i < n ; i ++) a[i].input (); LL ans = 0; sort (a , a + n , cmpab); for (int i = 1 ; i < n ; i ++) { LL t = (a[i].a - a[i].b) - (a[i - 1].a - a[i - 1].b); ans += t * 1LL * i * (n - i); } sort (a , a + n , cmpbc); for (int i = 1 ; i < n ; i ++) { LL t = (a[i].b - a[i].c) - (a[i - 1].b - a[i - 1].c); ans += t * 1LL * i * (n - i); } sort (a , a + n , cmpca); for (int i = 1 ; i < n ; i ++) { LL t = (a[i].c - a[i].a) - (a[i - 1].c - a[i - 1].a); ans += t * 1LL * i * (n - i); } printf ("%lld\n" , ans / 2); } return 0; }
e2ba039013c06584c77f0c222ff8030b8702d6ee
520fc6eb972594a707424cebfb6b32210db2e5e4
/src/phenotype.hpp
3c53e89732e41c1797f13180b0eadf931099c2a8
[ "MIT" ]
permissive
adamd1008/gaxx
17172aa38f3ed453adc969b625b72bb3d93c7a67
6c35d72ba6d690ea4c06f703d55d3abd3737a76a
refs/heads/master
2021-06-24T03:26:51.407921
2021-01-03T20:20:06
2021-01-03T20:20:06
185,960,085
0
0
null
null
null
null
UTF-8
C++
false
false
1,211
hpp
phenotype.hpp
#ifndef __PHENOTYPE_HPP__ #define __PHENOTYPE_HPP__ /* * Phenotype describes the individual in the population. The phenotype has a * genotype (chromosomes). */ #include "genotype.hpp" namespace gaxx { /** * TFT - target fitness type, i.e. the type of the variable passed into * calcFitness() to calculate the fitness */ template <typename TFT> class Phenotype { public: Phenotype<TFT>() = default; virtual ~Phenotype<TFT>() = default; void init() { getGenotype().init(); } void initWithMutateCrossover(Phenotype<TFT>& pt1, Phenotype<TFT>& pt2) { getGenotype().initWithMutateCrossover( pt1.getGenotype(), pt2.getGenotype()); } virtual bool isFitterThan(const Phenotype<TFT>&, TFT) const = 0; virtual bool isOptimalFitness(TFT) const = 0; protected: virtual Genotype<TFT>& getGenotype() = 0; /* XXX: I have *no idea* why this can't be a getter for the other * getGenotype() here - it doesn't compile in implemented classes. */ virtual const Genotype<TFT>& getGenotype() const = 0; }; } #endif
e49c005cca18b926d768552edcdcf644e07aeee8
a55b25054e7a59d9f37b039b38be9988058c17f7
/src/ABActor.h
eb5f936d92bdc162b73076e6299b9db6ed3de2b5
[]
no_license
sv-91/coro_async
8ed942945c5c65656364dc5ec10b94aed7d739e7
4f5f49ea850294b540056519defd64b480dc2eac
refs/heads/master
2022-04-19T17:26:05.482648
2020-03-25T08:38:04
2020-03-25T08:38:04
249,925,910
1
0
null
null
null
null
UTF-8
C++
false
false
1,483
h
ABActor.h
#ifndef COROUTINES_ABACTOR_H #define COROUTINES_ABACTOR_H #include "Actors/Actor.h" #include "Actors/Callback.h" #include "Coroutine/ActorAwaiter.h" #include "Coroutine/CoroTask.h" class ABActor: public Actor { public: using GetACallback = Callback<void(int result)>; using GetBCallback = Callback<void(int result)>; using SaveABCallback = Callback<void()>; using GetABHalfCallback = Callback<void(int a, int b)>; public: ABActor() : Actor("ABActor") {} public: void getA(const GetACallback &callback); void getB(const GetBCallback &callback); void saveAB(int a, int b, const SaveABCallback &callback); void getABHalf(const GetABHalfCallback &callback); public: ActorAwaiter<int> getAAsync(Actor &returnCallback); ActorAwaiter<int> getBAsync(Actor &returnCallback); ActorAwaiter<> saveABAsync(Actor &returnCallback, int a, int b); ActorAwaiter<int, int> getABHalfAsync(Actor &returnCallback); CoroTask2<int> getAAsync2(Actor &returnCallback); CoroTask2<int> getBAsync2(Actor &returnCallback); CoroTask2<> saveABAsync2(Actor &returnCallback, int a, int b); private: void getAProcess(const GetACallback &callback); void getBProcess(const GetBCallback &callback); void saveABProcess(int a, int b, const SaveABCallback &callback); void getABHalfProcess(const GetABHalfCallback &callback); private: int a = 10; int b = 20; }; #endif //COROUTINES_ABACTOR_H
f55559554fdf071617102c91476124b486864746
31f81380b60850e14b14f3a847cecd9daedacd92
/src/utils/inducers/path_inducer.cpp
7ca8ed710524565ca3928b1ffaf9b1b7484f76e2
[]
no_license
lizgorb/GraphExaminer
fa7216abf785b81eeeaf04ebb14f03dcfac0faae
8761355bdcf3221c20db4a76762e7ed8b428f44c
refs/heads/master
2022-02-01T07:55:05.284137
2018-05-24T12:53:47
2018-05-24T12:53:47
115,273,605
0
0
null
null
null
null
UTF-8
C++
false
false
3,970
cpp
path_inducer.cpp
/* * path_inducer.cpp * * Created on: Feb 25, 2018 * Author: liz */ #include "path_inducer.h" #include <boost/graph/adjacency_list.hpp> using namespace boost; template <typename Graph> PathInducer<Graph>::PathInducer(int n) { path_size = n; } template <typename Graph> bool PathInducer<Graph>::IsInduced(const Graph& g, const Graph& subgraph){ bool induced = false; int subgraph_v = boost::num_vertices(subgraph); vector<vector<int>> paths = ListPaths(g, subgraph_v); if(paths.size() > 0) { induced = true; } return induced; } // todo: test properly template <typename Graph> vector<vector<int>> PathInducer<Graph>::ListPaths(const Graph& g, int n){ vector<vector<int>> paths; typename graph_traits < Graph >::adjacency_iterator vi, vi_end; //typename boost::graph_traits<Graph>::adjacency_iterator adjacency_iterator; //adjacency_iterator vi, vi_end; int v = boost::num_vertices(g); if (n < 2) return paths; // base case - n is 2 - every edge is a path if (n == 2 ){ for (typename Graph::edge_iterator ei = edges(g).first; ei != edges(g).second; ei++) { vector<int> path = {source(*ei, g), target(*ei, g)}; paths.push_back(path); } } // base case - n is 3 else if (n == 3){ // for each vertex for(int i = 0; i <v; i++){ // get neighborhood vector<int> neighbors = this->GetNeighborhood(g, i); /*boost::tie(vi, vi_end) = boost::adjacent_vertices(i, g); for (; vi != vi_end; vi++) { neighbors.push_back(*vi); } */ for (int j = 0; j < v; j++){ // j not in i neighborhood auto it = find (neighbors.begin(), neighbors.end(), j); if (i != j && it == neighbors.end()){ // consider k boost::tie(vi, vi_end) = boost::adjacent_vertices(j, g); for (; vi != vi_end; vi++) { if (boost::edge(i,*vi,g).second){ vector<int> path; path.push_back(i); path.push_back(*vi); path.push_back(j); paths.push_back(path); } } } } } } // general case else{ vector<vector<int>> smaller_paths = ListPaths(g, n-2); vector<int> current_path ; for (auto it = smaller_paths.begin(); it != smaller_paths.end(); ++it){ current_path = *it; int front = current_path.front(); int end = current_path.back(); vector<int> front_candiates; vector<int> end_candiates; vector<int> path1; vector<int> path2; std::copy(current_path.begin() + 1, current_path.end(), back_inserter(path1)); std::copy(current_path.begin(), current_path.end() -1, back_inserter(path2)); // find vertices adjacent to front vertex boost::tie(vi, vi_end) = boost::adjacent_vertices(front, g); for (; vi != vi_end; vi++) { // check it's not adjacent to anything in the path if(CheckNonAdjacent(g, *vi, path1)){ front_candiates.push_back(*vi); } } // find vertices adjacent to the end vertex boost::tie(vi, vi_end) = boost::adjacent_vertices(end, g); for (; vi != vi_end; vi++) { // check it's not adjacent to anything in the path if(CheckNonAdjacent(g, *vi, path2)){ end_candiates.push_back(*vi); } } for (auto f_it = front_candiates.begin(); f_it != front_candiates.end(); ++f_it){ for (auto e_it = end_candiates.begin(); e_it != end_candiates.end(); ++e_it){ if (!boost::edge(*f_it,*e_it,g).second){ vector<int> path; path.push_back(*f_it); path.insert(path.end(), current_path.begin(), current_path.end()); path.push_back(*e_it); paths.push_back(path); } } } } } return paths; } template <typename Graph> bool PathInducer<Graph>::CheckNonAdjacent(const Graph& g, int v, vector<int> list){ typename graph_traits < Graph >::adjacency_iterator vi, vi_end; bool non_adjact = true; boost::tie(vi, vi_end) = boost::adjacent_vertices(v, g); for (; vi != vi_end; vi++) { auto it = find (list.begin(), list.end(), *vi); if (it != list.end()){ non_adjact = false; break; } } return non_adjact; }
547107326e60e0dbb33129a937380983c455ded1
c8f257630aaae015576d3e0a6c62686f30bc57bf
/easy/array/Minimum steps to make product equal to one.cpp
ce8f51ceb3886871f75f0a4d23569089549a3f3c
[]
no_license
hamza-badar/gfg_problems
d08172a20f9be8ff5ae2c7c6e70cca3b89c7e015
f7d7bbd04ffe5ddc9b82e92d620eb4b5319f9bd5
refs/heads/master
2023-05-09T04:40:32.383236
2021-06-03T17:28:17
2021-06-03T17:28:17
364,642,749
0
0
null
null
null
null
UTF-8
C++
false
false
750
cpp
Minimum steps to make product equal to one.cpp
class Solution { public: int makeProductOne(int arr[], int N) { int step=0; int negNo=0; int noZero=0; for(int i=0;i<N;i++) { if(arr[i]<0) { step=step+(-1-arr[i]); negNo++; } else if(arr[i]==0) { noZero++; } else { step=step+(-1+arr[i]); } } if(negNo%2==0) { return step+noZero; } else { if(noZero>0) { return step+noZero; } else { return step+2; } } } };
6068dd9e6e0ea28677e78fb3d77c2cd428e1ab90
1fac990457241ca8406e1ee2ba1e3399ca20b355
/devtool/u3asm/main.cc
661251e04ff3ba2c9967e85f0763716bb38ddafe
[ "BSD-2-Clause" ]
permissive
ekscrypto/Unununium
4861ad1f2a7bb258241d4adf84cf6205b54a5c3a
4b67e7c5e63cf1be2157382ffd4c1e9d12957a1f
refs/heads/master
2020-04-26T11:27:42.209268
2019-03-03T01:56:22
2019-03-03T01:56:22
1,208,417
9
0
null
null
null
null
UTF-8
C++
false
false
7,656
cc
main.cc
/* * U3ASM * $Header: /cvsroot/uuu/devtool/u3asm/main.cc,v 2.6 2003/06/18 04:18:32 daboy Exp $ * Copyright 2003 by Phil Frost; see file "License". */ /** \file main.cc * * definition of \c main(). */ #include "assembler.h" #include <iostream> Mem_stats mem_stats; int main( int argc, char *argv[] ) { mem_stats.reset(); bool print_mem_stats = false; exit_code code = exit_clean; unsigned error_count = 0, warning_count = 0; try { Program_options options( argc, argv ); if( options.do_print_stats() ) print_mem_stats = true; Assembler assembler( options ); extern Assembler *yyparse_asmblr; yyparse_asmblr = &assembler; try { assembler.run(); } catch( Exception const &e ) { /** \todo i'd like any std::exception thrown from assembler.run() * to be caught, but the virtual what() function doesn't seem to be * doing the virtual thing as I just get "fatal bug: St9exception" * rather than the "unable to open..." I'd expect... */ assembler.disp_error(); error_count = assembler.error_count; warning_count = assembler.warning_count; throw( e ); } error_count = assembler.error_count; warning_count = assembler.warning_count; if( assembler.error_count ) code = exit_unknown; } catch( Exception const &e ) { std::cerr << e.what(); if( e.code() == exit_bad_args ) std::cerr << " (u3asm +h for help)"; std::cerr << std::endl; code = e.code(); } catch( std::bad_alloc &e ) { std::cerr << "Couldn't allocate memory. What kind of beast are you trying to assemble? ;-)" << std::endl; } catch( std::exception const &e ) { std::cerr << "fatal bug: " << e.what() << std::endl << "You hare probably found a bug in u3asm. Perhaps I should include instructions on\nerror reporting..." << std::endl; } if( print_mem_stats ) { std::cerr << " errors: " << error_count << "\n warnings: " << warning_count << "\n calls to new: " << mem_stats.new_count() << "\ncalls to delete: " << mem_stats.delete_count() << std::endl; } return exit_clean; } /** \page syntax Syntax * * In the following sections the u3asm grammar is defined using BNF notation. * Elements in square brackets are optional. Elements in curly braces may repeat * zero or more times. Terminal symbols are in uppercase or in single quotes. * * Input is a string of statements. No delimiter is required between staments. * * \section comments comments * * Comments come in two flavors, single line and multiple line. Single line * comments are invoked by ';' and continue to the end of the line. Multiple * line comments are invoked by ';-' and continue to the matching '-;'. Multiple * line comments can be nested. Multiple line comments not need not use multiple * lines; they can just as readily comment a subsection of a line. * * \section statement-types statement types * * What follows is a terse, formal definition of all the possible statements. * Descriptions of the lower level elements such as strings, * immediate expressions, and label expressions follow. * * \subsection type-instruction instruction * * - <tt>instruction -> opcode [ operand [ ',' operand ... ] ]</tt> * * - <tt>instruction -> macro-name [ operand [ ',' operand ... ] ]</tt> * * \subsection type-label label definition * * - <tt>statement -> ':' label-expression</tt> * * defines the label \c label-expression * * - <tt>statement -> '{' label-expression</tt> * * starts a context within \c label-expression, but does not define \c * label-expression. * * - <tt>statement -> ':' '{' label-expression</tt> * * starts a context within \c label-expression and defines \c label-expression. * * - <tt>statement -> '}' [ label-expression ]</tt> * * ends a context. If \c label-expression is provided, it is checked against * that of the opening of the context and an error is issued if they do not * match. * * \subsection type-message message directive * * - <tt>statement -> '#error' STRING</tt> * * displays an error to stderr. This will ultimately cause assembly to fail. * However, the remainder of the input is still parsed. * * - <tt>statement -> '#warning' STRING</tt> * * displays a warning to stderr. This indicates something bad might have * happened, but only causes assembly to fail if the abort-on-warning option is * set. * * - <tt>statement -> '#remark' STRING</tt> * * displays a remark to stderr. This means nothing bad has happened. Remarks * never cause assembly to fail. * * \subsection type-conditional conditional directive * * Conditional expressions may be nested. * * - <tt>statement -> '#if' immediate-expression</tt> * * directs the assembler to process the following input if \c expression is * true. * * - <tt>statement -> '#fi'</tt> * * ends the conditional assembly invoked by \c #if * * \subsection type-misc miscellaneous directives * * - <tt>statement -> '#org' expression</tt> * * tells the assembler the following code will be loaded into memory at the * address \c expression. This effects the value of labels and usually provides * information to be placed in the output binary. * * - <tt>statement -> '#line' INTEGER [ STRING ]</tt> * * tells the assembler the following line is from line number \c INTEGER of file * \c STRING. If \c STRING is omitted, it is assumed to be the curent file. This * influences the error, warning, and remark messages output durring assembly. * This is useful when using an external program to generate input to u3asm. * * \section label-expressions label expressions * * The labels in u3asm, unlike most assemblers, are arranged in a hierarchial * manner rather than flatly. Labels are represented by a label expression, * which is very simular to file path names. '/' is used as the delimiter * between nodes, '..' represents the parent node, and '.' represents the curent * node. If a label expression does not begin with '/', it is relative to the * curent node. If it does begin with '/', it is relative to the root node. The * delimeter '/' is a token in itself, therefore '/' may be surrounded by any * whitespace if desired. * * The tokens between the optional '/' are strings. Thus, if you wish to define * a label with odd characters, quote it. However, it is often not necessary to * quote strings if they contain regular characters. See the next section for * details. * * \section strings strings * * Strings can be defined three ways, no quotes at all, with single quotes ('), * and with double quotes ("). * * For a string to qualify for the cool quoteless variety, it must consist * entirely of letters, numbers, or the following characters: _ . # @ $ * * If such a string begins with # or a digit, a warning is issued as it might * have been a number or directive that was mistyped. A commandline option to * supress this will be added in the future. * * The two remaining quoted types are identical except for the quote used. This * is to allow easy quoting of strings that contain quotes themselves. Within a * string, a backslash may be used to escape the special meaning of a character * or to include special characters. The following escapes are defined: * * - \\\\ * - a literal backslash * - \\n * - a newline * - \\\<newline\> * - exclude \<newline\> from the output. Can be used to write long one line * strings on multiple lines. * * Anything else escaped is put verbatim into the string. Thus \ can be used to * escape quotes. More escape sequences will be defined in the future. */
f3eb183376f6c479111ada7447cba104bd1f81fc
fed4fe8b87ce968e854e3ba656bae05e2d54d2a1
/c/算法/p34-15.cpp
11cf0ce8fffa030378a0b883c55fc1bfd62920b6
[]
no_license
jingdongHe/my-code
fabc8901523a20d2150396a91e2892fb9b88a097
2c25580253a8536eb91d8e9394d49e698304f0ad
refs/heads/master
2020-03-23T14:15:23.457597
2018-07-20T05:22:00
2018-07-20T05:22:00
141,665,641
1
0
null
null
null
null
GB18030
C++
false
false
1,752
cpp
p34-15.cpp
#include<stdio.h> #include<stdlib.h> typedef struct node { int point; struct node *next; }node; int po[1000]; int pr[1000]; node w[1000]; int n,s,k,q; bool visit(int d) { node *p; p=&w[d]; p=p->next; while(p!=NULL) { if(po[p->point]==0) return true; p=p->next; } return false; } void DFS(int d,int k1) { node *p; if(po[d]==1||k1>k) return ;//超出范围 if(k1==k&&w[d].next!=NULL&&visit(d)) { q=d;return; }//找出新的子树 po[d]=1; p=&w[d];p=p->next; while(p!=NULL) { DFS(p->point,k1+1); p=p->next; } return ; } void deep(int d,int k1) { if(pr[d]==1) { return; } if(q<k1) q=k1; pr[d]=1; node *p; p=&w[d]; p=p->next; while(p!=NULL) { deep(p->point,k1+1); p=p->next; } return; } void insert(int d,int a,int k1) { node *p; if(pr[d]==1||k1>a) return ;//超出范围 if(k1==a&&w[d].next!=NULL&&visit(d)) { q=d;return; }//找出新的子树 pr[d]=1; p=&w[d];p=p->next; while(p!=NULL) { DFS(p->point,k1+1); p=p->next; } return ; } int main() { int a,b; int i,q1; node *p,*px; scanf("%d%d%d",&n,&s,&k); for(i=0;i<n;i++) { w[i].point=i; w[i].next=NULL; } k--;//从0开始,故要将服务器位置减1 for(i=0;i<n-1;i++) { scanf("%d%d",&a,&b); px=(node *)malloc(sizeof(node)); px->point=b; px->next=NULL; p=&w[a]; while(p->next!=NULL) p=p->next; p->next=px; px=(node *)malloc(sizeof(node)); px->point=a; px->next=NULL; p=&w[b]; while(p->next!=NULL) p=p->next; p->next=px; } DFS(s,-1);//得出新的子树 for(i=0;i<n;i++) pr[i]=po[i]; q1=q;q=0; deep(q1,1);q-=k;a=q; for(i=0;i<n;i++) pr[i]=po[i]; insert(q1,a,1); printf("%d\n",q);//此处得出的是要加入点的位置,在使用while即可完成此题 return 0; }
5df0c36330262e2af36ae375f41d5ed51bb161d6
f4f60b0aff487461d64873b2b690fbd9d67c6ad0
/include/containos/ptr.h
8706be169ef333957b346cb9525aa0ca00dc9179
[ "MIT" ]
permissive
napina/containos
eb2dcdc489d96ee098403a7ae3f6d9e6bf872cf0
9be97e2f768ffdbed1ec9f893b31c3c63b3ce81a
refs/heads/master
2020-12-24T08:23:17.671663
2016-10-30T06:50:06
2016-10-30T06:50:06
7,767,992
2
2
null
null
null
null
UTF-8
C++
false
false
2,198
h
ptr.h
/*============================================================================= Copyright (c) 2013 Ville Ruusutie Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. =============================================================================*/ #pragma once #ifndef containos_ptr_h #define containos_ptr_h #include "containos/common.h" namespace containos { // Scoped pointer template<typename T> class Ptr { public: ~Ptr(); Ptr(); explicit Ptr(T* ptr); Ptr(Ptr<T>& other); Ptr<T>& operator=(T* ptr); Ptr<T>& operator=(Ptr<T>& handle); Ptr<T>& operator=(nullptr_t); bool operator==(T* other) const; bool operator!=(T* other) const; bool operator<(const Ptr<T>& other) const; operator bool() const; operator T*() const; operator T const*() const; T const& operator*() const; T& operator*(); T const* operator->() const; T* operator->(); T const* get() const; T* get(); bool isValid() const; template<typename T2> T2* cast(); void reset(T* ptr = nullptr); /// does not delete! this removes ownership and returns pointer T* release(); private: T* m_mem; }; } // end of containos #include "containos/ptr.inl" #endif
6148979fd9d7408d3c663df50368511533747352
38b9daafe39f937b39eefc30501939fd47f7e668
/tutorials/2WayCouplingOceanWave3D/basicTutorialwtProbesResultsWtPhiCoupled_180625/13.4/phi
27d8fd9ff8bd1bda2b2932c5120310369fa3951c
[]
no_license
rubynuaa/2-way-coupling
3a292840d9f56255f38c5e31c6b30fcb52d9e1cf
a820b57dd2cac1170b937f8411bc861392d8fbaa
refs/heads/master
2020-04-08T18:49:53.047796
2018-08-29T14:22:18
2018-08-29T14:22:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
530,635
phi
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 3.0.1 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class surfaceScalarField; location "13.4"; object phi; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 3 -1 0 0 0 0]; internalField nonuniform List<scalar> 42423 ( -0.000110579 -8.10943e-06 -0.000101293 -9.28588e-06 -9.10463e-05 -1.02466e-05 -7.98507e-05 -1.11957e-05 -6.75326e-05 -1.23182e-05 -5.44092e-05 -1.31234e-05 -4.03644e-05 -1.40448e-05 -2.57128e-05 -1.46516e-05 -1.06136e-05 -1.50993e-05 4.79859e-06 -1.54123e-05 2.04452e-05 -1.56466e-05 3.60031e-05 -1.5558e-05 5.15434e-05 -1.55404e-05 6.68344e-05 -1.52911e-05 8.17506e-05 -1.49163e-05 9.60627e-05 -1.43121e-05 0.00010955 -1.34878e-05 0.000122113 -1.25629e-05 0.000133598 -1.14848e-05 0.000143872 -1.0274e-05 0.000152902 -9.02998e-06 0.000160527 -7.6253e-06 0.000166724 -6.19669e-06 0.00017139 -4.66696e-06 0.000174547 -3.15675e-06 0.000176117 -1.56973e-06 0.000176244 -1.27767e-07 0.000174773 1.47182e-06 0.000171778 2.99483e-06 0.000167167 4.61102e-06 0.000160928 6.2386e-06 0.000153237 7.69135e-06 0.00014414 9.0968e-06 0.000133735 1.04048e-05 0.000122075 1.16599e-05 0.00010936 1.27152e-05 9.58195e-05 1.35402e-05 8.15124e-05 1.43071e-05 6.66587e-05 1.48537e-05 5.15553e-05 1.51034e-05 3.61751e-05 1.53801e-05 2.1029e-05 1.51461e-05 6.02335e-06 1.50057e-05 -8.60865e-06 1.4632e-05 -2.27583e-05 1.41497e-05 -3.63251e-05 1.35667e-05 -4.91951e-05 1.287e-05 -6.13008e-05 1.21057e-05 -7.26221e-05 1.13213e-05 -8.31105e-05 1.04884e-05 -9.27489e-05 9.63839e-06 -0.000101555 8.80608e-06 -0.000109523 7.96755e-06 -0.000116678 7.15523e-06 -0.000123006 6.32813e-06 -0.000128523 5.51671e-06 -0.000133304 4.78142e-06 -0.000137275 3.97052e-06 -0.000140443 3.16882e-06 -0.000142863 2.41923e-06 -0.000144467 1.60443e-06 -0.00014538 9.13081e-07 -0.000145502 1.22366e-07 -0.000144762 -7.40024e-07 -0.000143239 -1.52346e-06 -0.00014108 -2.15921e-06 -0.000138098 -2.98189e-06 -0.000134514 -3.58437e-06 -0.000130255 -4.25895e-06 -0.0001254 -4.85503e-06 -0.000120028 -5.37186e-06 -0.000114057 -5.97045e-06 -0.000107584 -6.4733e-06 -0.000100668 -6.91587e-06 -9.31806e-05 -7.48764e-06 -8.52376e-05 -7.943e-06 -7.68007e-05 -8.43699e-06 -6.7761e-05 -9.03971e-06 -5.83931e-05 -9.36799e-06 -4.83657e-05 -1.00274e-05 -3.79737e-05 -1.0392e-05 -2.70198e-05 -1.09539e-05 -1.56494e-05 -1.13705e-05 -3.80671e-06 -1.18427e-05 8.24428e-06 -1.20511e-05 2.06998e-05 -1.24556e-05 3.33348e-05 -1.26351e-05 4.60836e-05 -1.27489e-05 5.88974e-05 -1.28139e-05 7.15611e-05 -1.26638e-05 8.39075e-05 -1.23465e-05 9.58539e-05 -1.19464e-05 0.00010721 -1.13561e-05 0.000117779 -1.05688e-05 0.000127388 -9.60948e-06 0.000135881 -8.49264e-06 0.000143077 -7.19627e-06 0.000148822 -5.74503e-06 0.000152983 -4.16156e-06 0.000155465 -2.48177e-06 0.000156186 -7.20807e-07 0.000155151 1.03435e-06 0.000152286 2.86571e-06 0.000147656 4.62977e-06 0.000141354 6.30199e-06 0.000133452 7.90172e-06 0.000124117 9.33525e-06 0.000113495 1.06218e-05 0.000101755 1.17403e-05 8.90938e-05 1.2661e-05 7.57137e-05 1.338e-05 6.18576e-05 1.38561e-05 4.77189e-05 1.41387e-05 3.34902e-05 1.42287e-05 1.93331e-05 1.41571e-05 5.44301e-06 1.38902e-05 -8.06744e-06 1.35105e-05 -2.10565e-05 1.29891e-05 -3.34614e-05 1.2405e-05 -4.51951e-05 1.17337e-05 -5.62435e-05 1.10485e-05 -6.65642e-05 1.03207e-05 -7.61355e-05 9.57131e-06 -8.49945e-05 8.85898e-06 -9.31323e-05 8.13789e-06 -0.000100554 7.42186e-06 -0.000107294 6.73939e-06 -0.000113437 6.14342e-06 -0.000118906 5.46897e-06 -0.000123787 4.88068e-06 -0.000128113 4.32659e-06 -0.000131875 3.7622e-06 -0.000135097 3.2215e-06 -0.000137789 2.69257e-06 -0.000139935 2.14526e-06 -0.000141547 1.6121e-06 -0.000142617 1.07005e-06 -0.000143107 4.90363e-07 -0.000143018 -8.91208e-08 -0.000142286 -7.31923e-07 -0.000140893 -1.39356e-06 -0.000138808 -2.08425e-06 -0.000135998 -2.81027e-06 -0.000132404 -3.59439e-06 -0.000128015 -4.38841e-06 -0.000122787 -5.22884e-06 -0.000116707 -6.0794e-06 -0.000109751 -6.956e-06 -0.000101928 -7.8229e-06 -9.3246e-05 -8.68228e-06 -8.37048e-05 -9.5413e-06 -7.33503e-05 -1.03545e-05 -6.2223e-05 -1.11274e-05 -5.03758e-05 -1.18472e-05 -3.79353e-05 -1.24406e-05 -2.49427e-05 -1.29926e-05 -1.15046e-05 -1.34381e-05 2.24284e-06 -1.37475e-05 1.61727e-05 -1.39299e-05 3.01269e-05 -1.39543e-05 4.39537e-05 -1.38268e-05 5.74797e-05 -1.35261e-05 7.05588e-05 -1.30791e-05 8.30248e-05 -1.24661e-05 9.47389e-05 -1.17141e-05 0.000105552 -1.08127e-05 0.000115353 -9.80095e-06 0.000124017 -8.66456e-06 0.000131454 -7.43731e-06 0.000137601 -6.14705e-06 0.00014241 -4.80891e-06 0.000145791 -3.3808e-06 0.000147759 -1.96798e-06 0.000148295 -5.36667e-07 0.000147417 8.78322e-07 0.00014511 2.307e-06 0.000141409 3.70117e-06 0.000136368 5.04095e-06 0.000130044 6.32409e-06 0.000122495 7.54925e-06 0.000113801 8.69306e-06 0.000104065 9.73687e-06 9.33686e-05 1.06959e-05 8.1836e-05 1.15326e-05 6.96095e-05 1.22265e-05 5.67834e-05 1.28262e-05 4.35236e-05 1.32598e-05 2.9962e-05 1.35616e-05 1.62367e-05 1.37253e-05 2.49219e-06 1.37446e-05 -1.11431e-05 1.36353e-05 -2.45206e-05 1.33775e-05 -3.75581e-05 1.30375e-05 -5.01229e-05 1.25648e-05 -6.21312e-05 1.20083e-05 -7.35e-05 1.13689e-05 -8.41602e-05 1.06602e-05 -9.4063e-05 9.9028e-06 -0.000103177 9.11358e-06 -0.000111461 8.28456e-06 -0.000118889 7.42832e-06 -0.000125472 6.58206e-06 -0.000131199 5.7274e-06 -0.000136057 4.85803e-06 -0.000140092 4.0346e-06 -0.00014329 3.19807e-06 -0.000145683 2.39315e-06 -0.000147286 1.60351e-06 -0.000148139 8.52705e-07 -0.000148246 1.06648e-07 -0.00014763 -6.15381e-07 -0.000146284 -1.34654e-06 -0.000144254 -2.0297e-06 -0.000141553 -2.7013e-06 -0.00013818 -3.37265e-06 -0.000134151 -4.02911e-06 -0.000129475 -4.67642e-06 -0.000124182 -5.29228e-06 -0.00011824 -5.94214e-06 -0.000111724 -6.51655e-06 -0.00010459 -7.13391e-06 -9.68706e-05 -7.71923e-06 -8.85671e-05 -8.30345e-06 -7.97108e-05 -8.85632e-06 -7.03188e-05 -9.3921e-06 -6.03922e-05 -9.92658e-06 -5.00071e-05 -1.03852e-05 -3.918e-05 -1.08271e-05 -2.79384e-05 -1.12416e-05 -1.63588e-05 -1.15797e-05 -4.49019e-06 -1.18686e-05 7.58734e-06 -1.20776e-05 1.98011e-05 -1.22138e-05 3.20605e-05 -1.22594e-05 4.42815e-05 -1.22211e-05 5.63273e-05 -1.20459e-05 6.80968e-05 -1.17695e-05 7.94746e-05 -1.13778e-05 9.03563e-05 -1.08818e-05 0.000100582 -1.02256e-05 0.000110051 -9.46897e-06 0.000118643 -8.5921e-06 0.00012624 -7.59757e-06 0.000132741 -6.50022e-06 0.00013804 -5.29993e-06 0.00014207 -4.02976e-06 0.000144758 -2.68754e-06 0.000146078 -1.32088e-06 0.00014599 8.86548e-08 0.00014449 1.49939e-06 0.000141591 2.89908e-06 0.000137317 4.27407e-06 0.000131729 5.58831e-06 0.000124918 6.81041e-06 0.000116957 7.96152e-06 0.000107956 9.00081e-06 9.80439e-05 9.91198e-06 8.73376e-05 1.07064e-05 7.59804e-05 1.13571e-05 6.41195e-05 1.18609e-05 5.18974e-05 1.22222e-05 3.94584e-05 1.24389e-05 2.69521e-05 1.25063e-05 1.44942e-05 1.24578e-05 2.22262e-06 1.22716e-05 -9.75724e-06 1.19799e-05 -2.13558e-05 1.15986e-05 -3.24803e-05 1.11245e-05 -4.30501e-05 1.05697e-05 -5.30227e-05 9.97261e-06 -6.23452e-05 9.32251e-06 -7.09787e-05 8.63347e-06 -7.89016e-05 7.92291e-06 -8.61022e-05 7.20056e-06 -9.25722e-05 6.47001e-06 -9.82905e-05 5.71833e-06 -0.000103276 4.98581e-06 -0.000107549 4.27223e-06 -0.000111106 3.55761e-06 -0.000113936 2.83e-06 -0.000116099 2.16289e-06 -0.000117579 1.48005e-06 -0.000118415 8.35605e-07 -0.000118634 2.19235e-07 -0.00011818 -4.53977e-07 -0.000117148 -1.03162e-06 -0.000115492 -1.65612e-06 -0.000113249 -2.24333e-06 -0.000110463 -2.78613e-06 -0.000107081 -3.38208e-06 -0.000103171 -3.90964e-06 -9.87257e-05 -4.44541e-06 -9.37492e-05 -4.97649e-06 -8.82713e-05 -5.47793e-06 -8.23296e-05 -5.94172e-06 -7.58914e-05 -6.43816e-06 -6.90289e-05 -6.86255e-06 -6.17693e-05 -7.25962e-06 -5.41263e-05 -7.64302e-06 -4.61237e-05 -8.00258e-06 -3.78025e-05 -8.3212e-06 -2.92155e-05 -8.58698e-06 -2.04002e-05 -8.81539e-06 -1.14304e-05 -8.96979e-06 -2.27633e-06 -9.15405e-06 6.91404e-06 -9.19038e-06 1.61095e-05 -9.19548e-06 2.52583e-05 -9.1488e-06 3.4268e-05 -9.00969e-06 4.30742e-05 -8.80624e-06 5.15938e-05 -8.51959e-06 5.9771e-05 -8.17729e-06 6.7561e-05 -7.78999e-06 7.48389e-05 -7.27792e-06 8.15946e-05 -6.75571e-06 8.77439e-05 -6.14937e-06 9.32315e-05 -5.48757e-06 9.8043e-05 -4.81155e-06 0.000102106 -4.06289e-06 0.000105435 -3.32887e-06 0.000107987 -2.5526e-06 0.000109758 -1.77048e-06 0.000110765 -1.00732e-06 0.000110993 -2.28195e-07 0.000110426 5.67021e-07 0.000109106 1.32057e-06 0.000107087 2.01878e-06 0.000104421 2.66635e-06 0.000101147 3.27352e-06 9.73383e-05 3.80864e-06 9.30628e-05 4.27546e-06 8.83709e-05 4.69193e-06 8.3307e-05 5.06386e-06 7.79925e-05 5.31456e-06 7.24542e-05 5.53822e-06 6.67778e-05 5.67646e-06 6.10529e-05 5.72483e-06 5.5281e-05 5.77193e-06 4.95483e-05 5.73269e-06 4.3886e-05 5.66229e-06 3.8353e-05 5.53299e-06 3.30211e-05 5.33194e-06 2.78924e-05 5.12866e-06 2.30176e-05 4.87478e-06 1.84425e-05 4.57516e-06 1.41342e-05 4.30823e-06 1.01553e-05 3.97891e-06 6.52198e-06 3.63334e-06 3.18301e-06 3.33897e-06 2.24882e-07 2.95812e-06 -2.43431e-06 2.65919e-06 -4.77248e-06 2.33817e-06 -6.79657e-06 2.02409e-06 -8.52204e-06 1.72546e-06 -9.95037e-06 1.42833e-06 -1.10984e-05 1.14807e-06 8.76314e-07 -0.000110622 -1.62151e-05 -0.000101337 -1.85703e-05 -9.10909e-05 -2.04932e-05 -7.98939e-05 -2.23927e-05 -6.75738e-05 -2.46384e-05 -5.44457e-05 -2.62517e-05 -4.03952e-05 -2.80955e-05 -2.57359e-05 -2.93111e-05 -1.06302e-05 -3.02052e-05 4.78271e-06 -3.08253e-05 2.0439e-05 -3.13031e-05 3.60132e-05 -3.11324e-05 5.15628e-05 -3.10901e-05 6.68578e-05 -3.05862e-05 8.17801e-05 -2.98387e-05 9.61107e-05 -2.86429e-05 0.00010962 -2.69971e-05 0.000122189 -2.51317e-05 0.000133667 -2.29629e-05 0.000143946 -2.05541e-05 0.000152981 -1.80651e-05 0.000160618 -1.52619e-05 0.000166836 -1.24148e-05 0.0001715 -9.33093e-06 0.000174643 -6.30012e-06 0.000176214 -3.14072e-06 0.000176345 -2.59501e-07 0.000174868 2.94896e-06 0.000171873 5.98946e-06 0.00016726 9.22419e-06 0.00016102 1.24788e-05 0.000153329 1.53823e-05 0.000144225 1.82004e-05 0.000133816 2.08134e-05 0.000122149 2.33275e-05 0.000109421 2.54427e-05 9.5873e-05 2.70883e-05 8.15568e-05 2.86233e-05 6.66908e-05 2.97196e-05 5.15795e-05 3.02147e-05 3.61865e-05 3.0773e-05 2.10343e-05 3.02983e-05 6.0208e-06 3.00191e-05 -8.62113e-06 2.92739e-05 -2.27809e-05 2.83094e-05 -3.6358e-05 2.71438e-05 -4.9239e-05 2.57511e-05 -6.13524e-05 2.42191e-05 -7.26763e-05 2.26451e-05 -8.31685e-05 2.09806e-05 -9.28105e-05 1.92804e-05 -0.00010162 1.76152e-05 -0.000109586 1.59335e-05 -0.000116741 1.4311e-05 -0.000123078 1.26652e-05 -0.000128607 1.10451e-05 -0.000133384 9.55888e-06 -0.000137344 7.93036e-06 -0.000140516 6.34047e-06 -0.000142939 4.84239e-06 -0.000144551 3.21668e-06 -0.000145458 1.82027e-06 -0.00014557 2.34172e-07 -0.000144834 -1.47598e-06 -0.000143304 -3.05339e-06 -0.000141136 -4.32758e-06 -0.000138155 -5.9634e-06 -0.000134567 -7.17196e-06 -0.000130304 -8.52145e-06 -0.000125447 -9.71256e-06 -0.000120075 -1.07439e-05 -0.000114102 -1.19435e-05 -0.000107619 -1.29563e-05 -0.000100707 -1.38279e-05 -9.32157e-05 -1.4979e-05 -8.52664e-05 -1.58924e-05 -7.68315e-05 -1.6872e-05 -6.77928e-05 -1.80785e-05 -5.84205e-05 -1.87405e-05 -4.83906e-05 -2.00574e-05 -3.79984e-05 -2.07844e-05 -2.70435e-05 -2.19089e-05 -1.56707e-05 -2.27435e-05 -3.83466e-06 -2.36789e-05 8.22939e-06 -2.41153e-05 2.07e-05 -2.49264e-05 3.33314e-05 -2.52666e-05 4.60902e-05 -2.5508e-05 5.89044e-05 -2.56282e-05 7.15704e-05 -2.53299e-05 8.39302e-05 -2.47065e-05 9.58805e-05 -2.38968e-05 0.000107242 -2.27182e-05 0.000117824 -2.11502e-05 0.000127443 -1.9229e-05 0.000135937 -1.69865e-05 0.000143141 -1.44002e-05 0.00014889 -1.14938e-05 0.000153068 -8.34039e-06 0.000155565 -4.97839e-06 0.000156266 -1.42184e-06 0.000155218 2.082e-06 0.000152362 5.72195e-06 0.000147737 9.25477e-06 0.000141427 1.26115e-05 0.000133517 1.58118e-05 0.000124171 1.86812e-05 0.000113543 2.12501e-05 0.000101782 2.35011e-05 8.91151e-05 2.5328e-05 7.57287e-05 2.67665e-05 6.1857e-05 2.77279e-05 4.77095e-05 2.82863e-05 3.34795e-05 2.84588e-05 1.93112e-05 2.83255e-05 5.42999e-06 2.77714e-05 -8.10673e-06 2.70473e-05 -2.11024e-05 2.59848e-05 -3.35143e-05 2.4817e-05 -4.52528e-05 2.34722e-05 -5.63024e-05 2.20982e-05 -6.66202e-05 2.06385e-05 -7.61922e-05 1.91434e-05 -8.50575e-05 1.77242e-05 -9.31941e-05 1.62745e-05 -0.00010061 1.48377e-05 -0.000107353 1.34828e-05 -0.000113493 1.22828e-05 -0.000118968 1.09447e-05 -0.000123847 9.75901e-06 -0.000128176 8.65547e-06 -0.000131926 7.51301e-06 -0.000135148 6.44258e-06 -0.000137841 5.38623e-06 -0.000139992 4.29568e-06 -0.000141599 3.21953e-06 -0.000142661 2.13163e-06 -0.000143163 9.92883e-07 -0.000143069 -1.82967e-07 -0.000142334 -1.46756e-06 -0.000140955 -2.77239e-06 -0.000138862 -4.17741e-06 -0.000136045 -5.62703e-06 -0.000132466 -7.17374e-06 -0.000128072 -8.78263e-06 -0.000122836 -1.04648e-05 -0.00011676 -1.21548e-05 -0.000109803 -1.39129e-05 -0.000101979 -1.56471e-05 -9.32935e-05 -1.73681e-05 -8.37495e-05 -1.90854e-05 -7.33921e-05 -2.07119e-05 -6.2262e-05 -2.22576e-05 -5.0407e-05 -2.37023e-05 -3.79652e-05 -2.48825e-05 -2.49603e-05 -2.59976e-05 -1.15093e-05 -2.68893e-05 2.24143e-06 -2.74983e-05 1.61786e-05 -2.78672e-05 3.01397e-05 -2.79155e-05 4.39754e-05 -2.76627e-05 5.75078e-05 -2.70586e-05 7.06071e-05 -2.61786e-05 8.30834e-05 -2.49425e-05 9.47942e-05 -2.34251e-05 0.000105616 -2.16343e-05 0.000115427 -1.9612e-05 0.00012409 -1.73277e-05 0.000131536 -1.48841e-05 0.000137686 -1.22968e-05 0.000142492 -9.61512e-06 0.000145871 -6.75931e-06 0.000147838 -3.93514e-06 0.00014838 -1.07888e-06 0.000147496 1.762e-06 0.000145183 4.61995e-06 0.000141482 7.40236e-06 0.000136435 1.00873e-05 0.0001301 1.26591e-05 0.000122547 1.51027e-05 0.000113861 1.73788e-05 0.000104119 1.94792e-05 9.34069e-05 2.14077e-05 8.18649e-05 2.30747e-05 6.96263e-05 2.44651e-05 5.6799e-05 2.56535e-05 4.35292e-05 2.65296e-05 2.99569e-05 2.7134e-05 1.6226e-05 2.74561e-05 2.4782e-06 2.74924e-05 -1.11705e-05 2.7284e-05 -2.4559e-05 2.6766e-05 -3.75943e-05 2.60729e-05 -5.01702e-05 2.51407e-05 -6.21836e-05 2.40217e-05 -7.35496e-05 2.27349e-05 -8.42171e-05 2.13277e-05 -9.41301e-05 1.98158e-05 -0.000103245 1.82289e-05 -0.000111525 1.65643e-05 -0.00011896 1.48633e-05 -0.000125544 1.31657e-05 -0.000131266 1.14499e-05 -0.000136125 9.71695e-06 -0.000140163 8.07259e-06 -0.000143363 6.3976e-06 -0.000145754 4.78461e-06 -0.000147349 3.19835e-06 -0.000148201 1.7049e-06 -0.000148304 2.09072e-07 -0.000147683 -1.23631e-06 -0.000146348 -2.68102e-06 -0.000144309 -4.06923e-06 -0.000141599 -5.41164e-06 -0.000138231 -6.73987e-06 -0.000134205 -8.05501e-06 -0.000129523 -9.35922e-06 -0.000124225 -1.05901e-05 -0.000118293 -1.1874e-05 -0.000111769 -1.30406e-05 -0.000104629 -1.4274e-05 -9.69081e-05 -1.54401e-05 -8.86047e-05 -1.66068e-05 -7.97438e-05 -1.77174e-05 -7.03433e-05 -1.87927e-05 -6.04232e-05 -1.98468e-05 -5.00301e-05 -2.07783e-05 -3.9192e-05 -2.16653e-05 -2.79517e-05 -2.2482e-05 -1.63665e-05 -2.31649e-05 -4.49599e-06 -2.37393e-05 7.59011e-06 -2.41638e-05 1.98083e-05 -2.44322e-05 3.20752e-05 -2.45264e-05 4.43055e-05 -2.44515e-05 5.63559e-05 -2.40964e-05 6.81342e-05 -2.3548e-05 7.95154e-05 -2.27591e-05 9.0405e-05 -2.17715e-05 0.000100636 -2.04565e-05 0.000110113 -1.89459e-05 0.000118711 -1.71907e-05 0.000126319 -1.52058e-05 0.000132825 -1.30065e-05 0.000138125 -1.05999e-05 0.000142155 -8.05988e-06 0.000144845 -5.37723e-06 0.000146167 -2.64315e-06 0.000146078 1.78016e-07 0.000144573 3.00384e-06 0.000141676 5.79657e-06 0.000137396 8.55378e-06 0.000131801 1.11832e-05 0.000124986 1.3625e-05 0.000117019 1.59285e-05 0.000108012 1.80084e-05 9.80901e-05 1.98333e-05 8.73751e-05 2.14214e-05 7.60092e-05 2.2723e-05 6.41436e-05 2.37265e-05 5.19118e-05 2.44539e-05 3.94626e-05 2.48881e-05 2.69515e-05 2.50174e-05 1.44855e-05 2.49239e-05 2.20357e-06 2.45535e-05 -9.78199e-06 2.39654e-05 -2.13836e-05 2.32002e-05 -3.25133e-05 2.22542e-05 -4.30906e-05 2.1147e-05 -5.30682e-05 1.99502e-05 -6.23941e-05 1.86483e-05 -7.10279e-05 1.72673e-05 -7.89539e-05 1.58489e-05 -8.61579e-05 1.44046e-05 -9.26297e-05 1.29418e-05 -9.83492e-05 1.14378e-05 -0.000103334 9.97026e-06 -0.000107606 8.54464e-06 -0.000111165 7.11661e-06 -0.000113994 5.6586e-06 -0.00011616 4.32917e-06 -0.000117642 2.96186e-06 -0.000118473 1.66633e-06 -0.000118684 4.30709e-07 -0.000118237 -9.01388e-07 -0.000117205 -2.06305e-06 -0.000115549 -3.31213e-06 -0.000113308 -4.48465e-06 -0.000110516 -5.57765e-06 -0.000107135 -6.76323e-06 -0.000103222 -7.82232e-06 -9.87763e-05 -8.89157e-06 -9.38e-05 -9.95282e-06 -8.83211e-05 -1.09569e-05 -8.23739e-05 -1.18889e-05 -7.59352e-05 -1.28769e-05 -6.90698e-05 -1.37279e-05 -6.18056e-05 -1.45239e-05 -5.41626e-05 -1.5286e-05 -4.61569e-05 -1.60083e-05 -3.78366e-05 -1.66415e-05 -2.92402e-05 -1.71834e-05 -2.04239e-05 -1.76318e-05 -1.14444e-05 -1.79493e-05 -2.29276e-06 -1.83057e-05 6.90351e-06 -1.83867e-05 1.61046e-05 -1.83965e-05 2.52575e-05 -1.83017e-05 3.42731e-05 -1.80254e-05 4.30836e-05 -1.76168e-05 5.1608e-05 -1.70439e-05 5.97898e-05 -1.63592e-05 6.75849e-05 -1.55851e-05 7.48678e-05 -1.45608e-05 8.16277e-05 -1.35157e-05 8.77843e-05 -1.2306e-05 9.32759e-05 -1.09792e-05 9.80898e-05 -9.62549e-06 0.000102154 -8.12744e-06 0.000105483 -6.65772e-06 0.000108036 -5.10586e-06 0.000109806 -3.54025e-06 0.000110814 -2.01493e-06 0.000111041 -4.55074e-07 0.000110472 1.13531e-06 0.00010915 2.64299e-06 0.000107129 4.03919e-06 0.000104461 5.33495e-06 0.000101184 6.55036e-06 9.73742e-05 7.6183e-06 9.30934e-05 8.55619e-06 8.83962e-05 9.3892e-06 8.33303e-05 1.01297e-05 7.80118e-05 1.06331e-05 7.247e-05 1.108e-05 6.67904e-05 1.1356e-05 6.10622e-05 1.14531e-05 5.52872e-05 1.15469e-05 4.95493e-05 1.14707e-05 4.38878e-05 1.13237e-05 3.83508e-05 1.10699e-05 3.30173e-05 1.06655e-05 2.78858e-05 1.02601e-05 2.30112e-05 9.74937e-06 1.84335e-05 9.15285e-06 1.41235e-05 8.61823e-06 1.01464e-05 7.95604e-06 6.51013e-06 7.2696e-06 3.1696e-06 6.67949e-06 2.11978e-07 5.91574e-06 -2.447e-06 5.31816e-06 -4.78507e-06 4.67624e-06 -6.80857e-06 4.04758e-06 -8.53352e-06 3.45041e-06 -9.96112e-06 2.85593e-06 -1.11089e-05 2.29589e-06 1.75184e-06 -0.0001107 -2.43205e-05 -0.000101415 -2.78555e-05 -9.11653e-05 -3.07428e-05 -7.99638e-05 -3.35943e-05 -6.76393e-05 -3.6963e-05 -5.45027e-05 -3.93884e-05 -4.04438e-05 -4.21545e-05 -2.57738e-05 -4.39812e-05 -1.06539e-05 -4.53252e-05 4.77956e-06 -4.62589e-05 2.04533e-05 -4.6977e-05 3.60452e-05 -4.67244e-05 5.16144e-05 -4.66595e-05 6.69296e-05 -4.59016e-05 8.18677e-05 -4.4777e-05 9.62194e-05 -4.29947e-05 0.000109729 -4.0507e-05 0.0001223 -3.77027e-05 0.000133797 -3.44606e-05 0.000144101 -3.08582e-05 0.000153144 -2.71074e-05 0.000160771 -2.289e-05 0.000166988 -1.8631e-05 0.000171658 -1.40017e-05 0.00017482 -9.46165e-06 0.000176387 -4.7081e-06 0.000176492 -3.64612e-07 0.000174998 4.44273e-06 0.000171999 8.98874e-06 0.000167379 1.38433e-05 0.000161137 1.87205e-05 0.00015346 2.30601e-05 0.000144328 2.73316e-05 0.000133916 3.12251e-05 0.00012225 3.49937e-05 0.00010949 3.82023e-05 9.59278e-05 4.0651e-05 8.15988e-05 4.29521e-05 6.67121e-05 4.46063e-05 5.15832e-05 4.53435e-05 3.6184e-05 4.61723e-05 2.10147e-05 4.54676e-05 5.993e-06 4.50408e-05 -8.66997e-06 4.39369e-05 -2.28422e-05 4.24816e-05 -3.64264e-05 4.0728e-05 -4.93137e-05 3.86384e-05 -6.14319e-05 3.63373e-05 -7.27616e-05 3.39748e-05 -8.32612e-05 3.14801e-05 -9.29041e-05 2.89233e-05 -0.000101709 2.64204e-05 -0.000109682 2.39065e-05 -0.000116845 2.14742e-05 -0.000123173 1.89927e-05 -0.00012869 1.65619e-05 -0.000133478 1.4347e-05 -0.000137439 1.18917e-05 -0.000140599 9.49999e-06 -0.000143016 7.25935e-06 -0.000144622 4.82338e-06 -0.000145528 2.72546e-06 -0.000145629 3.35757e-07 -0.000144896 -2.20954e-06 -0.000143362 -4.58736e-06 -0.000141191 -6.49876e-06 -0.000138206 -8.94791e-06 -0.000134616 -1.07616e-05 -0.000130353 -1.27851e-05 -0.000125489 -1.4576e-05 -0.000120114 -1.61191e-05 -0.000114146 -1.7912e-05 -0.000107656 -1.94461e-05 -0.000100742 -2.07416e-05 -9.3255e-05 -2.24664e-05 -8.53071e-05 -2.38404e-05 -7.68658e-05 -2.53133e-05 -6.78344e-05 -2.71099e-05 -5.8462e-05 -2.8113e-05 -4.84292e-05 -3.00903e-05 -3.80348e-05 -3.1179e-05 -2.70851e-05 -3.28587e-05 -1.57136e-05 -3.41152e-05 -3.87682e-06 -3.55158e-05 8.21038e-06 -3.62026e-05 2.06873e-05 -3.74035e-05 3.33144e-05 -3.78938e-05 4.60904e-05 -3.82841e-05 5.89156e-05 -3.84537e-05 7.15826e-05 -3.7997e-05 8.39593e-05 -3.70833e-05 9.59234e-05 -3.5861e-05 0.000107302 -3.40971e-05 0.000117896 -3.17442e-05 0.000127521 -2.88546e-05 0.000136033 -2.54983e-05 0.000143249 -2.16166e-05 0.000149005 -1.72493e-05 0.000153193 -1.25292e-05 0.0001557 -7.48456e-06 0.000156402 -2.12405e-06 0.000155339 3.14443e-06 0.000152479 8.58219e-06 0.000147854 1.38796e-05 0.000141541 1.89251e-05 0.000133625 2.37274e-05 0.000124252 2.80539e-05 0.000113608 3.18941e-05 0.000101833 3.5276e-05 8.91561e-05 3.80053e-05 7.57526e-05 4.017e-05 6.18662e-05 4.16144e-05 4.77037e-05 4.24488e-05 3.34561e-05 4.27066e-05 1.92721e-05 4.25096e-05 5.38977e-06 4.16538e-05 -8.15636e-06 4.05935e-05 -2.11639e-05 3.89924e-05 -3.35824e-05 3.72355e-05 -4.53189e-05 3.52089e-05 -5.63748e-05 3.31542e-05 -6.66953e-05 3.0959e-05 -7.62554e-05 2.87036e-05 -8.51203e-05 2.65891e-05 -9.32677e-05 2.44219e-05 -0.000100685 2.22552e-05 -0.000107432 2.02297e-05 -0.000113546 1.8397e-05 -0.000119025 1.64238e-05 -0.000123907 1.46406e-05 -0.000128232 1.29805e-05 -0.000131987 1.12683e-05 -0.000135202 9.65717e-06 -0.000137892 8.07609e-06 -0.000140048 6.45191e-06 -0.000141663 4.83434e-06 -0.000142726 3.19448e-06 -0.000143221 1.48796e-06 -0.000143129 -2.74538e-07 -0.0001424 -2.19706e-06 -0.000141015 -4.15714e-06 -0.000138932 -6.26069e-06 -0.00013612 -8.43915e-06 -0.000132534 -1.0759e-05 -0.000128146 -1.31711e-05 -0.000122912 -1.56991e-05 -0.000116834 -1.82327e-05 -0.000109883 -2.08639e-05 -0.000102056 -2.34736e-05 -9.33647e-05 -2.60598e-05 -8.38244e-05 -2.86257e-05 -7.34596e-05 -3.10768e-05 -6.23274e-05 -3.33899e-05 -5.0468e-05 -3.55618e-05 -3.80126e-05 -3.7338e-05 -2.50028e-05 -3.90074e-05 -1.15423e-05 -4.035e-05 2.21943e-06 -4.12601e-05 1.61735e-05 -4.18214e-05 3.01474e-05 -4.18895e-05 4.39969e-05 -4.15123e-05 5.75443e-05 -4.06061e-05 7.06503e-05 -3.92847e-05 8.31352e-05 -3.74275e-05 9.48618e-05 -3.51518e-05 0.000105692 -3.24649e-05 0.000115513 -2.94325e-05 0.000124186 -2.60011e-05 0.000131633 -2.23315e-05 0.000137789 -1.84522e-05 0.000142599 -1.44255e-05 0.000145987 -1.01474e-05 0.000147956 -5.90374e-06 0.00014849 -1.61305e-06 0.000147596 2.65574e-06 0.000145278 6.93783e-06 0.000141579 1.11015e-05 0.000136528 1.51378e-05 0.000130191 1.89968e-05 0.000122633 2.26603e-05 0.00011393 2.60821e-05 0.000104182 2.92266e-05 9.34628e-05 3.21272e-05 8.19171e-05 3.46203e-05 6.96649e-05 3.67173e-05 5.68251e-05 3.84933e-05 4.35426e-05 3.98121e-05 2.9956e-05 4.07206e-05 1.62179e-05 4.11943e-05 2.46057e-06 4.12497e-05 -1.11937e-05 4.09383e-05 -2.45987e-05 4.01711e-05 -3.76421e-05 3.91162e-05 -5.02211e-05 3.77197e-05 -6.22472e-05 3.60479e-05 -7.36228e-05 3.41106e-05 -8.42884e-05 3.19933e-05 -9.41909e-05 2.97183e-05 -0.000103317 2.73555e-05 -0.0001116 2.48466e-05 -0.000119035 2.22989e-05 -0.000125621 1.97516e-05 -0.000131338 1.71665e-05 -0.000136196 1.4575e-05 -0.000140233 1.21098e-05 -0.000143435 9.59991e-06 -0.000145826 7.17509e-06 -0.000147416 4.78885e-06 -0.000148267 2.5554e-06 -0.000148367 3.09126e-07 -0.00014774 -1.86287e-06 -0.000146402 -4.01947e-06 -0.000144369 -6.10182e-06 -0.000141655 -8.12612e-06 -0.000138279 -1.01154e-05 -0.000134257 -1.20777e-05 -0.00012958 -1.40359e-05 -0.000124275 -1.58955e-05 -0.000118347 -1.78015e-05 -0.000111821 -1.95667e-05 -0.00010468 -2.14151e-05 -9.69513e-05 -2.31691e-05 -8.8649e-05 -2.49091e-05 -7.97882e-05 -2.65782e-05 -7.03819e-05 -2.81991e-05 -6.04628e-05 -2.97658e-05 -5.00673e-05 -3.1174e-05 -3.92247e-05 -3.2508e-05 -2.79837e-05 -3.37231e-05 -1.63906e-05 -3.47581e-05 -4.51534e-06 -3.56146e-05 7.58061e-06 -3.62598e-05 1.98096e-05 -3.66612e-05 3.20815e-05 -3.67985e-05 4.43185e-05 -3.66885e-05 5.63764e-05 -3.61544e-05 6.81648e-05 -3.53365e-05 7.95564e-05 -3.41508e-05 9.04576e-05 -3.26729e-05 0.000100703 -3.0702e-05 0.000110188 -2.84313e-05 0.000118791 -2.57933e-05 0.000126411 -2.28259e-05 0.00013292 -1.9516e-05 0.00013823 -1.591e-05 0.000142266 -1.20956e-05 0.000144961 -8.07225e-06 0.000146284 -3.96693e-06 0.000146186 2.76424e-07 0.000144676 4.51337e-06 0.000141773 8.69938e-06 0.00013749 1.28369e-05 0.000131896 1.67772e-05 0.000125075 2.04461e-05 0.000117096 2.39076e-05 0.00010808 2.70239e-05 9.815e-05 2.97637e-05 8.74231e-05 3.21483e-05 7.60462e-05 3.40998e-05 6.4167e-05 3.56057e-05 5.19246e-05 3.66963e-05 3.9469e-05 3.73437e-05 2.69425e-05 3.75439e-05 1.44677e-05 3.73986e-05 2.17958e-06 3.68417e-05 -9.81536e-06 3.59604e-05 -2.1425e-05 3.48099e-05 -3.2559e-05 3.33882e-05 -4.31422e-05 3.17302e-05 -5.31221e-05 2.99301e-05 -6.2449e-05 2.79752e-05 -7.10873e-05 2.59056e-05 -7.90168e-05 2.37784e-05 -8.62165e-05 2.16043e-05 -9.26898e-05 1.94151e-05 -9.84145e-05 1.71625e-05 -0.000103394 1.49495e-05 -0.000107663 1.28136e-05 -0.000111229 1.06826e-05 -0.000114056 8.48592e-06 -0.000116216 6.48916e-06 -0.000117701 4.44728e-06 -0.000118529 2.49449e-06 -0.000118736 6.36776e-07 -0.000118287 -1.35039e-06 -0.000117251 -3.09839e-06 -0.000115598 -4.96503e-06 -0.000113354 -6.72858e-06 -0.000110559 -8.37262e-06 -0.00010718 -1.01427e-05 -0.000103265 -1.17374e-05 -9.88169e-05 -1.33396e-05 -9.38402e-05 -1.49296e-05 -8.83601e-05 -1.6437e-05 -8.24121e-05 -1.78369e-05 -7.59725e-05 -1.93165e-05 -6.91094e-05 -2.05911e-05 -6.1841e-05 -2.17922e-05 -5.41914e-05 -2.29357e-05 -4.6184e-05 -2.40157e-05 -3.78587e-05 -2.49668e-05 -2.92584e-05 -2.57837e-05 -2.04383e-05 -2.64519e-05 -1.14534e-05 -2.69342e-05 -2.29847e-06 -2.74607e-05 6.90048e-06 -2.75857e-05 1.61072e-05 -2.76033e-05 2.52664e-05 -2.7461e-05 3.42905e-05 -2.70495e-05 4.31054e-05 -2.64317e-05 5.16358e-05 -2.55744e-05 5.98258e-05 -2.45491e-05 6.76257e-05 -2.33851e-05 7.49161e-05 -2.18513e-05 8.1682e-05 -2.02816e-05 8.78416e-05 -1.84656e-05 9.33368e-05 -1.64744e-05 9.81528e-05 -1.44416e-05 0.000102223 -1.21971e-05 0.000105555 -9.99032e-06 0.000108112 -7.66297e-06 0.000109883 -5.31071e-06 0.000110888 -3.02066e-06 0.000111104 -6.70946e-07 0.00011053 1.70925e-06 0.000109204 3.96958e-06 0.00010718 6.06303e-06 0.000104507 8.00724e-06 0.000101226 9.83207e-06 9.74166e-05 1.14274e-05 9.31256e-05 1.28472e-05 8.84201e-05 1.40947e-05 8.33531e-05 1.51967e-05 7.80283e-05 1.59578e-05 7.24815e-05 1.66268e-05 6.67981e-05 1.70394e-05 6.1064e-05 1.71871e-05 5.52847e-05 1.73261e-05 4.95385e-05 1.72169e-05 4.3878e-05 1.69842e-05 3.83367e-05 1.66112e-05 3.30011e-05 1.60012e-05 2.78657e-05 1.53955e-05 2.29931e-05 1.4622e-05 1.84106e-05 1.37353e-05 1.40983e-05 1.29305e-05 1.01273e-05 1.19271e-05 6.48439e-06 1.09125e-05 3.14208e-06 1.00218e-05 1.85066e-07 8.87276e-06 -2.47322e-06 7.97644e-06 -4.81076e-06 7.01378e-06 -6.83305e-06 6.06987e-06 -8.55685e-06 5.1742e-06 -9.98299e-06 4.28206e-06 -1.11299e-05 3.44282e-06 2.62581e-06 -0.000110818 -3.24254e-05 -0.000101531 -3.71422e-05 -9.1277e-05 -4.09971e-05 -8.00687e-05 -4.48027e-05 -6.77375e-05 -4.92943e-05 -5.45882e-05 -5.25378e-05 -4.05167e-05 -5.62261e-05 -2.58308e-05 -5.86672e-05 -1.06892e-05 -6.04669e-05 4.77988e-06 -6.17281e-05 2.04877e-05 -6.26849e-05 3.61125e-05 -6.23493e-05 5.17076e-05 -6.22548e-05 6.70455e-05 -6.12396e-05 8.20054e-05 -5.97371e-05 9.63742e-05 -5.73636e-05 0.000109905 -5.40376e-05 0.000122505 -5.03029e-05 0.000134015 -4.59715e-05 0.000144326 -4.1169e-05 0.00015338 -3.61613e-05 0.00016102 -3.05299e-05 0.000167242 -2.4853e-05 0.000171921 -1.86807e-05 0.000175079 -1.26202e-05 0.000176644 -6.27347e-06 0.00017672 -4.40547e-07 0.000175193 5.97001e-06 0.000172186 1.19954e-05 0.000167559 1.84699e-05 0.000161313 2.4967e-05 0.000153641 3.07319e-05 0.000144483 3.64898e-05 0.000134066 4.16416e-05 0.000122413 4.66471e-05 0.000109595 5.10201e-05 9.60097e-05 5.4236e-05 8.16617e-05 5.73e-05 6.6745e-05 5.9523e-05 5.15906e-05 6.04979e-05 3.61813e-05 6.15815e-05 2.09861e-05 6.06628e-05 5.95174e-06 6.00751e-05 -8.7392e-06 5.86278e-05 -2.29317e-05 5.66741e-05 -3.65293e-05 5.43256e-05 -4.94278e-05 5.15369e-05 -6.15571e-05 4.84666e-05 -7.28926e-05 4.53103e-05 -8.33932e-05 4.19808e-05 -9.30419e-05 3.8572e-05 -0.000101849 3.52275e-05 -0.000109821 3.1879e-05 -0.000116983 2.86358e-05 -0.000123312 2.53218e-05 -0.000128826 2.20762e-05 -0.000133614 1.91347e-05 -0.000137578 1.58552e-05 -0.000140733 1.26552e-05 -0.000143148 9.6746e-06 -0.000144742 6.41762e-06 -0.00014564 3.62351e-06 -0.000145726 4.21104e-07 -0.000144986 -2.94967e-06 -0.00014345 -6.12315e-06 -0.000141274 -8.67461e-06 -0.000138288 -1.19341e-05 -0.000134689 -1.43602e-05 -0.000130424 -1.70505e-05 -0.000125559 -1.94409e-05 -0.000120177 -2.15014e-05 -0.00011421 -2.38791e-05 -0.000107715 -2.59415e-05 -0.000100799 -2.76576e-05 -9.33114e-05 -2.99537e-05 -8.53672e-05 -3.17847e-05 -7.69228e-05 -3.37578e-05 -6.78973e-05 -3.61355e-05 -5.85217e-05 -3.74888e-05 -4.84998e-05 -4.01123e-05 -3.80954e-05 -4.15834e-05 -2.71528e-05 -4.38015e-05 -1.57752e-05 -4.54929e-05 -3.93754e-06 -4.73536e-05 8.1757e-06 -4.8316e-05 2.06614e-05 -4.98893e-05 3.32934e-05 -5.0526e-05 4.60929e-05 -5.10837e-05 5.89334e-05 -5.12943e-05 7.16032e-05 -5.06669e-05 8.40129e-05 -4.94931e-05 9.59978e-05 -4.7846e-05 0.000107391 -4.549e-05 0.000118001 -4.23553e-05 0.000127646 -3.84994e-05 0.000136176 -3.40281e-05 0.00014341 -2.88509e-05 0.000149185 -2.30242e-05 0.000153384 -1.67279e-05 0.000155899 -1.00002e-05 0.00015661 -2.83515e-06 0.000155528 4.22608e-06 0.000152665 1.14459e-05 0.00014803 1.8514e-05 0.000141702 2.52538e-05 0.000133783 3.16457e-05 0.000124382 3.74551e-05 0.000113721 4.25553e-05 0.000101921 4.70757e-05 8.92169e-05 5.07098e-05 7.57902e-05 5.35968e-05 6.18801e-05 5.55245e-05 4.76902e-05 5.66387e-05 3.34036e-05 5.69932e-05 1.92196e-05 5.66937e-05 5.3058e-06 5.55676e-05 -8.22601e-06 5.41254e-05 -2.12506e-05 5.20171e-05 -3.36802e-05 4.96651e-05 -4.54198e-05 4.69485e-05 -5.64798e-05 4.42143e-05 -6.68052e-05 4.12845e-05 -7.63645e-05 3.8263e-05 -8.52198e-05 3.54445e-05 -9.33641e-05 3.25662e-05 -0.000100783 2.96741e-05 -0.00010754 2.69873e-05 -0.000113644 2.45001e-05 -0.000119117 2.18968e-05 -0.000123997 1.95213e-05 -0.000128311 1.7294e-05 -0.00013207 1.50275e-05 -0.00013529 1.28768e-05 -0.000137976 1.07626e-05 -0.000140131 8.60645e-06 -0.000141749 6.45265e-06 -0.000142817 4.26262e-06 -0.000143308 1.9789e-06 -0.000143216 -3.66604e-07 -0.000142492 -2.92136e-06 -0.000141111 -5.53774e-06 -0.000139031 -8.34125e-06 -0.000136223 -1.12462e-05 -0.000132642 -1.43402e-05 -0.000128256 -1.75576e-05 -0.000123025 -2.093e-05 -0.000116949 -2.43086e-05 -0.000109996 -2.78171e-05 -0.00010217 -3.12994e-05 -9.34768e-05 -3.47531e-05 -8.39303e-05 -3.81723e-05 -7.35612e-05 -4.14459e-05 -6.24236e-05 -4.45276e-05 -5.05666e-05 -4.74189e-05 -3.80881e-05 -4.98166e-05 -2.50636e-05 -5.2032e-05 -1.15881e-05 -5.38256e-05 2.19502e-06 -5.50433e-05 1.61674e-05 -5.57939e-05 3.01604e-05 -5.58826e-05 4.4021e-05 -5.5373e-05 5.759e-05 -5.41753e-05 7.07196e-05 -5.24144e-05 8.32223e-05 -4.99303e-05 9.4964e-05 -4.68936e-05 0.000105808 -4.33091e-05 0.000115645 -3.92695e-05 0.000124326 -3.46818e-05 0.000131783 -2.97894e-05 0.000137945 -2.46142e-05 0.00014276 -1.92408e-05 0.000146154 -1.35411e-05 0.000148123 -7.87307e-06 0.000148654 -2.1436e-06 0.000147748 3.56196e-06 0.000145428 9.25715e-06 0.000141722 1.48076e-05 0.000136667 2.01932e-05 0.000130322 2.53417e-05 0.000122753 3.02286e-05 0.000114041 3.47941e-05 0.000104281 3.89868e-05 9.35472e-05 4.28611e-05 8.19926e-05 4.61749e-05 6.97184e-05 4.89915e-05 5.68623e-05 5.13494e-05 4.35671e-05 5.31074e-05 2.99639e-05 5.43237e-05 1.62077e-05 5.49505e-05 2.43627e-06 5.50212e-05 -1.12369e-05 5.46115e-05 -2.46566e-05 5.35908e-05 -3.77126e-05 5.21722e-05 -5.02998e-05 5.03069e-05 -6.23282e-05 4.80763e-05 -7.37181e-05 4.55005e-05 -8.43942e-05 4.26694e-05 -9.42975e-05 3.96216e-05 -0.000103425 3.64831e-05 -0.000111713 3.31342e-05 -0.000119148 2.97347e-05 -0.000125733 2.63361e-05 -0.000131453 2.28868e-05 -0.000136314 1.94355e-05 -0.000140342 1.6138e-05 -0.000143542 1.27997e-05 -0.000145933 9.56656e-06 -0.000147521 6.37684e-06 -0.000148368 3.40279e-06 -0.000148464 4.04236e-07 -0.000147829 -2.49749e-06 -0.000146483 -5.36506e-06 -0.00014445 -8.13546e-06 -0.000141737 -1.08388e-05 -0.00013836 -1.3493e-05 -0.000134331 -1.61059e-05 -0.000129658 -1.87089e-05 -0.000124353 -2.1201e-05 -0.000118432 -2.37227e-05 -0.000111892 -2.61062e-05 -0.000104754 -2.85532e-05 -9.70216e-05 -3.09018e-05 -8.87147e-05 -3.32161e-05 -7.98548e-05 -3.54382e-05 -7.04317e-05 -3.76222e-05 -6.05194e-05 -3.96782e-05 -5.01209e-05 -4.15726e-05 -3.92732e-05 -4.33557e-05 -2.80252e-05 -4.49712e-05 -1.64255e-05 -4.63579e-05 -4.54237e-06 -4.74978e-05 7.56578e-06 -4.83681e-05 1.98091e-05 -4.89046e-05 3.20947e-05 -4.90842e-05 4.4337e-05 -4.89309e-05 5.64109e-05 -4.82284e-05 6.82123e-05 -4.7138e-05 7.96229e-05 -4.55616e-05 9.05341e-05 -4.35843e-05 0.000100796 -4.0964e-05 0.000110295 -3.79306e-05 0.000118914 -3.44122e-05 0.000126555 -3.04667e-05 0.000133068 -2.60296e-05 0.000138387 -2.12284e-05 0.00014243 -1.61395e-05 0.000145131 -1.07731e-05 0.000146454 -5.28972e-06 0.000146352 3.78698e-07 0.000144833 6.03188e-06 0.000141922 1.16099e-05 0.000137634 1.71256e-05 0.000132036 2.23751e-05 0.000125203 2.72789e-05 0.000117214 3.18962e-05 0.000108185 3.60534e-05 9.82373e-05 3.97111e-05 8.74944e-05 4.28911e-05 7.61015e-05 4.54927e-05 6.42059e-05 4.75013e-05 5.19463e-05 4.89558e-05 3.94732e-05 4.98168e-05 2.69324e-05 5.00847e-05 1.44458e-05 4.98853e-05 2.14174e-06 4.91458e-05 -9.86692e-06 4.7969e-05 -2.14867e-05 4.64297e-05 -3.26257e-05 4.45272e-05 -4.32175e-05 4.2322e-05 -5.32041e-05 3.99168e-05 -6.25336e-05 3.73047e-05 -7.11804e-05 3.45525e-05 -7.91109e-05 3.1709e-05 -8.63066e-05 2.88e-05 -9.27852e-05 2.58937e-05 -9.85082e-05 2.28854e-05 -0.000103482 1.99233e-05 -0.000107755 1.70866e-05 -0.00011132 1.42479e-05 -0.000114141 1.13061e-05 -0.000116301 8.64964e-06 -0.00011779 5.93666e-06 -0.000118614 3.31777e-06 -0.000118814 8.36804e-07 -0.000118362 -1.8018e-06 -0.000117322 -4.1386e-06 -0.000115672 -6.61561e-06 -0.000113425 -8.97514e-06 -0.000110627 -1.11704e-05 -0.000107247 -1.35232e-05 -0.000103328 -1.5656e-05 -9.88802e-05 -1.77876e-05 -9.39029e-05 -1.99069e-05 -8.84203e-05 -2.19196e-05 -8.24691e-05 -2.37881e-05 -7.60321e-05 -2.57535e-05 -6.91675e-05 -2.74556e-05 -6.18915e-05 -2.90683e-05 -5.42352e-05 -3.05921e-05 -4.62264e-05 -3.20245e-05 -3.78923e-05 -3.33009e-05 -2.92865e-05 -3.43895e-05 -2.04602e-05 -3.52782e-05 -1.1467e-05 -3.59274e-05 -2.30743e-06 -3.66203e-05 6.89569e-06 -3.67888e-05 1.61085e-05 -3.68161e-05 2.52788e-05 -3.66313e-05 3.43137e-05 -3.60845e-05 4.31389e-05 -3.52569e-05 5.16772e-05 -3.41127e-05 5.98786e-05 -3.27507e-05 6.76897e-05 -3.11961e-05 7.49913e-05 -2.9153e-05 8.17617e-05 -2.7052e-05 8.79297e-05 -2.46336e-05 9.3434e-05 -2.19788e-05 9.82537e-05 -1.92613e-05 0.00010233 -1.62734e-05 0.000105665 -1.33254e-05 0.000108227 -1.02246e-05 0.000109995 -7.07938e-06 0.000111004 -4.02942e-06 0.000111208 -8.75019e-07 0.00011062 2.29743e-06 0.000109285 5.30482e-06 0.000107255 8.09235e-06 0.000104577 1.06851e-05 0.000101288 1.31208e-05 9.7475e-05 1.52408e-05 9.31738e-05 1.71483e-05 8.84572e-05 1.88113e-05 8.33878e-05 2.0266e-05 7.8053e-05 2.12926e-05 7.24987e-05 2.21812e-05 6.68098e-05 2.27283e-05 6.10666e-05 2.29303e-05 5.52809e-05 2.31118e-05 4.95242e-05 2.29736e-05 4.38632e-05 2.26452e-05 3.83159e-05 2.21585e-05 3.29767e-05 2.13404e-05 2.7836e-05 2.05362e-05 2.29672e-05 1.94907e-05 1.83761e-05 1.83264e-05 1.40608e-05 1.72458e-05 1.00999e-05 1.5888e-05 6.4458e-06 1.45666e-05 3.10178e-06 1.33658e-05 1.44882e-07 1.18297e-05 -2.51263e-06 1.06339e-05 -4.84926e-06 9.3504e-06 -6.8698e-06 8.0904e-06 -8.59185e-06 6.89625e-06 -1.00159e-05 5.70606e-06 -1.11614e-05 4.58838e-06 3.49744e-06 -0.000110975 -4.05296e-05 -0.000101686 -4.64307e-05 -9.14262e-05 -5.12575e-05 -8.02087e-05 -5.60203e-05 -6.78685e-05 -6.16346e-05 -5.47021e-05 -6.57043e-05 -4.06138e-05 -7.03145e-05 -2.59065e-05 -7.33747e-05 -1.07401e-05 -7.56334e-05 4.75996e-06 -7.72283e-05 2.0502e-05 -7.84271e-05 3.61603e-05 -7.80077e-05 5.17867e-05 -7.78814e-05 6.71535e-05 -7.66064e-05 8.2139e-05 -7.47227e-05 9.65379e-05 -7.17627e-05 0.000110096 -6.75956e-05 0.000122718 -6.29255e-05 0.000134244 -5.74972e-05 0.000144577 -5.15022e-05 0.000153642 -4.52267e-05 0.000161291 -3.81791e-05 0.000167523 -3.10848e-05 0.000172209 -2.33669e-05 0.00017537 -1.57818e-05 0.000176937 -7.84076e-06 0.000176997 -5.00072e-07 0.000175452 7.51455e-06 0.000172438 1.50096e-05 0.000167802 2.31061e-05 0.000161546 3.12221e-05 0.00015386 3.8418e-05 0.000144688 4.56616e-05 0.000134263 5.20663e-05 0.000122584 5.83268e-05 0.000109734 6.38703e-05 9.61201e-05 6.78494e-05 8.17465e-05 7.16736e-05 6.67907e-05 7.44788e-05 5.16034e-05 7.56852e-05 3.61798e-05 7.70051e-05 2.09497e-05 7.58928e-05 5.89808e-06 7.51268e-05 -8.8228e-06 7.33487e-05 -2.30377e-05 7.0889e-05 -3.66513e-05 6.79392e-05 -4.95616e-05 6.44472e-05 -6.17005e-05 6.06055e-05 -7.3042e-05 5.66517e-05 -8.35454e-05 5.24842e-05 -9.31962e-05 4.82228e-05 -0.000102003 4.40338e-05 -0.000109977 3.98533e-05 -0.000117136 3.57945e-05 -0.000123464 3.16499e-05 -0.000128981 2.75934e-05 -0.000133768 2.39221e-05 -0.000137726 1.98131e-05 -0.00014088 1.58093e-05 -0.000143299 1.20934e-05 -0.000144883 8.00134e-06 -0.000145779 4.51938e-06 -0.000145852 4.94111e-07 -0.000145103 -3.69851e-06 -0.000143567 -7.65878e-06 -0.000141382 -1.08599e-05 -0.000138396 -1.49199e-05 -0.000134788 -1.79683e-05 -0.000130516 -2.13226e-05 -0.000125651 -2.43058e-05 -0.000120262 -2.68904e-05 -0.000114293 -2.98483e-05 -0.000107792 -3.24422e-05 -0.000100873 -3.45767e-05 -9.33868e-05 -3.74402e-05 -8.54484e-05 -3.97231e-05 -7.69949e-05 -4.22114e-05 -6.7984e-05 -4.51464e-05 -5.8603e-05 -4.68699e-05 -4.85909e-05 -5.01245e-05 -3.81743e-05 -5.20002e-05 -2.72432e-05 -5.47327e-05 -1.58559e-05 -5.68804e-05 -4.02977e-06 -5.91799e-05 8.1199e-06 -6.04658e-05 2.06164e-05 -6.2386e-05 3.32653e-05 -6.3175e-05 4.6085e-05 -6.39036e-05 5.89354e-05 -6.41449e-05 7.16015e-05 -6.33331e-05 8.40664e-05 -6.19581e-05 9.60789e-05 -5.98587e-05 0.000107497 -5.69086e-05 0.000118132 -5.29896e-05 0.0001278 -4.81675e-05 0.00013636 -4.25881e-05 0.000143633 -3.61246e-05 0.000149417 -2.88083e-05 0.000153631 -2.09414e-05 0.000156156 -1.2526e-05 0.000156873 -3.55184e-06 0.000155782 5.31746e-06 0.000152913 1.43143e-05 0.000148268 2.31588e-05 0.000141922 3.15999e-05 0.000133984 3.95838e-05 0.000124557 4.68822e-05 0.000113871 5.32413e-05 0.000102039 5.8908e-05 8.9295e-05 6.34535e-05 7.58416e-05 6.70502e-05 6.18988e-05 6.94674e-05 4.76755e-05 7.08621e-05 3.3348e-05 7.13207e-05 1.91524e-05 7.08894e-05 5.20089e-06 6.95192e-05 -8.33346e-06 6.76598e-05 -2.13699e-05 6.50536e-05 -3.38091e-05 6.21045e-05 -4.55557e-05 5.86951e-05 -5.66013e-05 5.52598e-05 -6.69461e-05 5.16293e-05 -7.65124e-05 4.78294e-05 -8.53445e-05 4.42766e-05 -9.34956e-05 4.07174e-05 -0.000100916 3.70945e-05 -0.000107672 3.37433e-05 -0.000113764 3.05925e-05 -0.000119238 2.73701e-05 -0.000124116 2.43997e-05 -0.00012842 2.15982e-05 -0.000132177 1.87845e-05 -0.000135399 1.60989e-05 -0.000138084 1.34478e-05 -0.000140243 1.07649e-05 -0.000141862 8.07206e-06 -0.000142933 5.33297e-06 -0.000143422 2.46807e-06 -0.000143334 -4.54673e-07 -0.000142616 -3.639e-06 -0.000141241 -6.91231e-06 -0.000139167 -1.04155e-05 -0.000136363 -1.40504e-05 -0.000132787 -1.79167e-05 -0.000128404 -2.19406e-05 -0.000123182 -2.61518e-05 -0.000117107 -3.0384e-05 -0.000110154 -3.477e-05 -0.000102326 -3.91275e-05 -9.36268e-05 -4.34521e-05 -8.40761e-05 -4.7723e-05 -7.37034e-05 -5.18188e-05 -6.25533e-05 -5.56777e-05 -5.07011e-05 -5.92712e-05 -3.81929e-05 -6.23248e-05 -2.51506e-05 -6.50744e-05 -1.16472e-05 -6.73291e-05 2.15548e-06 -6.8846e-05 1.61476e-05 -6.97861e-05 3.0168e-05 -6.9903e-05 4.40526e-05 -6.92577e-05 5.76485e-05 -6.77713e-05 7.07981e-05 -6.55641e-05 8.33284e-05 -6.24608e-05 9.50948e-05 -5.866e-05 0.000105959 -5.41733e-05 0.000115808 -4.91182e-05 0.000124505 -4.33792e-05 0.000131979 -3.72634e-05 0.000138149 -3.07848e-05 0.000142965 -2.40562e-05 0.000146368 -1.69442e-05 0.00014834 -9.84539e-06 0.00014887 -2.6736e-06 0.000147953 4.47816e-06 0.000145629 1.15813e-05 0.000141924 1.85132e-05 0.000136854 2.52633e-05 0.0001305 3.16952e-05 0.000122919 3.78098e-05 0.000114192 4.35213e-05 0.00010441 4.87686e-05 9.36638e-05 5.36071e-05 8.20887e-05 5.77499e-05 6.97934e-05 6.12869e-05 5.69184e-05 6.42244e-05 4.3605e-05 6.64207e-05 2.99739e-05 6.79549e-05 1.61955e-05 6.87289e-05 2.4062e-06 6.88105e-05 -1.12901e-05 6.83078e-05 -2.47296e-05 6.70303e-05 -3.78004e-05 6.52431e-05 -5.04032e-05 6.29097e-05 -6.24373e-05 6.01104e-05 -7.38413e-05 5.69045e-05 -8.45276e-05 5.33557e-05 -9.44396e-05 4.95336e-05 -0.000103569 4.56121e-05 -0.000111858 4.1424e-05 -0.000119298 3.71741e-05 -0.000125879 3.29174e-05 -0.000131599 2.86067e-05 -0.000136463 2.4299e-05 -0.000140485 2.01602e-05 -0.000143681 1.59962e-05 -0.000146071 1.19558e-05 -0.000147658 7.96429e-06 -0.000148499 4.24406e-06 -0.000148587 4.91401e-07 -0.00014795 -3.13407e-06 -0.000146596 -6.71879e-06 -0.000144563 -1.01692e-05 -0.000141847 -1.35542e-05 -0.000138471 -1.68693e-05 -0.000134439 -2.0138e-05 -0.000129763 -2.3385e-05 -0.000124458 -2.65054e-05 -0.000118539 -2.96425e-05 -0.000111994 -3.2651e-05 -0.000104853 -3.56941e-05 -9.71196e-05 -3.86352e-05 -8.88094e-05 -4.15263e-05 -7.99426e-05 -4.4305e-05 -7.05152e-05 -4.70496e-05 -6.06033e-05 -4.95902e-05 -5.01961e-05 -5.19799e-05 -3.93419e-05 -5.421e-05 -2.80861e-05 -5.6227e-05 -1.64757e-05 -5.79684e-05 -4.58198e-06 -5.93916e-05 7.54173e-06 -6.04919e-05 1.98011e-05 -6.11641e-05 3.21022e-05 -6.13853e-05 4.43564e-05 -6.11852e-05 5.6449e-05 -6.03211e-05 6.82714e-05 -5.89605e-05 7.97025e-05 -5.69928e-05 9.06275e-05 -5.45094e-05 0.000100912 -5.12487e-05 0.000110433 -4.74519e-05 0.000119069 -4.30477e-05 0.000126729 -3.81267e-05 0.000133256 -3.25566e-05 0.000138588 -2.65603e-05 0.000142642 -2.01939e-05 0.000145351 -1.34819e-05 0.000146673 -6.6126e-06 0.000146569 4.83161e-07 0.000145045 7.5554e-06 0.000142127 1.45279e-05 0.000137831 2.14213e-05 0.000132224 2.79824e-05 0.000125376 3.41269e-05 0.000117372 3.99001e-05 0.000108324 4.51012e-05 9.83553e-05 4.96799e-05 8.75908e-05 5.36556e-05 7.61769e-05 5.69066e-05 6.42573e-05 5.94209e-05 5.19754e-05 6.12378e-05 3.94822e-05 6.231e-05 2.69186e-05 6.26482e-05 1.44303e-05 6.23736e-05 2.09514e-06 6.14809e-05 -9.93362e-06 5.99978e-05 -2.15667e-05 5.80627e-05 -3.271e-05 5.56705e-05 -4.33178e-05 5.29297e-05 -5.33123e-05 4.99113e-05 -6.26358e-05 4.66282e-05 -7.12987e-05 4.32153e-05 -7.92304e-05 3.96408e-05 -8.64166e-05 3.59861e-05 -9.2908e-05 3.23851e-05 -9.86278e-05 2.86052e-05 -0.000103598 2.48931e-05 -0.000107876 2.13648e-05 -0.000111435 1.78069e-05 -0.000114252 1.41237e-05 -0.000116415 1.08122e-05 -0.000117901 7.42295e-06 -0.000118719 4.13552e-06 -0.000118917 1.03468e-06 -0.000118462 -2.25644e-06 -0.000117418 -5.18306e-06 -0.000115768 -8.26526e-06 -0.000113519 -1.12243e-05 -0.000110718 -1.39714e-05 -0.000107336 -1.69051e-05 -0.000103413 -1.95795e-05 -9.89627e-05 -2.22375e-05 -9.39855e-05 -2.48841e-05 -8.84994e-05 -2.74057e-05 -8.2544e-05 -2.97435e-05 -7.6106e-05 -3.21916e-05 -6.92382e-05 -3.43234e-05 -6.19582e-05 -3.63483e-05 -5.42939e-05 -3.82563e-05 -4.62805e-05 -4.0038e-05 -3.79377e-05 -4.16437e-05 -2.93243e-05 -4.3003e-05 -2.04898e-05 -4.41127e-05 -1.14868e-05 -4.49304e-05 -2.31886e-06 -4.57883e-05 6.8917e-06 -4.59994e-05 1.61134e-05 -4.60378e-05 2.52966e-05 -4.58146e-05 3.43444e-05 -4.51322e-05 4.31824e-05 -4.4095e-05 5.17313e-05 -4.26617e-05 5.99458e-05 -4.09652e-05 6.77703e-05 -3.90206e-05 7.50861e-05 -3.64688e-05 8.1862e-05 -3.38279e-05 8.80392e-05 -3.08109e-05 9.35485e-05 -2.74881e-05 9.83765e-05 -2.40894e-05 0.00010246 -2.03569e-05 0.000105799 -1.66648e-05 0.000108364 -1.27889e-05 0.000110131 -8.84629e-06 0.000111141 -5.03986e-06 0.000111335 -1.06907e-06 0.000110738 2.89491e-06 0.000109393 6.64931e-06 0.000107356 1.01296e-05 0.000104664 1.33766e-05 0.000101373 1.64124e-05 9.75487e-05 1.90648e-05 9.32383e-05 2.14587e-05 8.85084e-05 2.35412e-05 8.34355e-05 2.53389e-05 7.80862e-05 2.66419e-05 7.25215e-05 2.77458e-05 6.68262e-05 2.84235e-05 6.10701e-05 2.86863e-05 5.52759e-05 2.8906e-05 4.95072e-05 2.87423e-05 4.38433e-05 2.83091e-05 3.82888e-05 2.7713e-05 3.29441e-05 2.66851e-05 2.77972e-05 2.5683e-05 2.29363e-05 2.43516e-05 1.83302e-05 2.29326e-05 1.40113e-05 2.15646e-05 1.00473e-05 1.9852e-05 6.38284e-06 1.82311e-05 3.05005e-06 1.66986e-05 9.1612e-08 1.47881e-05 -2.565e-06 1.32906e-05 -4.90051e-06 1.16859e-05 -6.91877e-06 1.01087e-05 -8.63846e-06 8.61593e-06 -1.00596e-05 7.1272e-06 -1.12031e-05 5.73191e-06 4.36619e-06 -0.000111172 -4.86328e-05 -0.000101881 -5.57215e-05 -9.16129e-05 -6.15257e-05 -8.0384e-05 -6.72492e-05 -6.80324e-05 -7.39864e-05 -5.48445e-05 -7.88922e-05 -4.07351e-05 -8.44241e-05 -2.6001e-05 -8.81088e-05 -1.0807e-05 -9.08275e-05 4.72069e-06 -9.27562e-05 2.04971e-05 -9.42037e-05 3.61877e-05 -9.36984e-05 5.18481e-05 -9.35419e-05 6.72518e-05 -9.20103e-05 8.2267e-05 -8.97381e-05 9.66981e-05 -8.61938e-05 0.000110285 -8.11825e-05 0.000122939 -7.55799e-05 0.000134483 -6.90417e-05 0.000144844 -6.18627e-05 0.000153922 -5.43046e-05 0.000161584 -4.58412e-05 0.000167827 -3.73286e-05 0.000172525 -2.80649e-05 0.000175688 -1.89445e-05 0.000177257 -9.41028e-06 0.000177317 -5.60503e-07 0.000175775 9.05742e-06 0.000172754 1.80298e-05 0.000168107 2.77536e-05 0.000161839 3.74892e-05 0.000154137 4.61207e-05 0.000144946 5.48523e-05 0.00013451 6.25019e-05 0.000122791 7.00456e-05 0.000109908 7.67535e-05 9.62596e-05 8.14978e-05 8.18537e-05 8.60794e-05 6.68496e-05 8.94829e-05 5.16231e-05 9.09116e-05 3.6182e-05 9.24462e-05 2.09056e-05 9.11692e-05 5.83242e-06 9.02e-05 -8.92048e-06 8.81016e-05 -2.316e-05 8.51286e-05 -3.67914e-05 8.15705e-05 -4.97147e-05 7.73705e-05 -6.18626e-05 7.27535e-05 -7.32093e-05 6.79984e-05 -8.37151e-05 6.299e-05 -9.33663e-05 5.7874e-05 -0.000102174 5.28412e-05 -0.000110147 4.78268e-05 -0.000117301 4.29484e-05 -0.000123628 3.7977e-05 -0.000129147 3.3112e-05 -0.000133932 2.87072e-05 -0.000137886 2.37676e-05 -0.000141042 1.89651e-05 -0.000143467 1.45184e-05 -0.000145045 9.57966e-06 -0.000145937 5.4112e-06 -0.000146005 5.61691e-07 -0.000145248 -4.45545e-06 -0.000143715 -9.19198e-06 -0.000141517 -1.30581e-05 -0.00013853 -1.79066e-05 -0.000134911 -2.15868e-05 -0.000130632 -2.56021e-05 -0.000125765 -2.91722e-05 -0.000120368 -3.22879e-05 -0.000114398 -3.58183e-05 -0.000107891 -3.89489e-05 -0.000100964 -4.15035e-05 -9.34802e-05 -4.49245e-05 -8.55534e-05 -4.76501e-05 -7.70852e-05 -5.06797e-05 -6.80948e-05 -5.41369e-05 -5.87065e-05 -5.62583e-05 -4.87062e-05 -6.01249e-05 -3.82722e-05 -6.24343e-05 -2.73698e-05 -6.56351e-05 -1.59569e-05 -6.82934e-05 -4.15171e-06 -7.09852e-05 8.03958e-06 -7.26572e-05 2.05534e-05 -7.49e-05 3.32219e-05 -7.58436e-05 4.606e-05 -7.67419e-05 5.89314e-05 -7.70164e-05 7.16178e-05 -7.60197e-05 8.41202e-05 -7.44606e-05 9.61681e-05 -7.19067e-05 0.000107612 -6.8353e-05 0.00011828 -6.36577e-05 0.00012799 -5.7877e-05 0.000136582 -5.118e-05 0.000143885 -4.34286e-05 0.000149699 -3.46217e-05 0.000153928 -2.51704e-05 0.000156445 -1.50439e-05 0.000157193 -4.29932e-06 0.000156103 6.40699e-06 0.000153222 1.71952e-05 0.000148568 2.78129e-05 0.000142196 3.79718e-05 0.00013423 4.75504e-05 0.00012478 5.63318e-05 0.000114051 6.39705e-05 0.000102199 7.07602e-05 8.94026e-05 7.62496e-05 7.59098e-05 8.05431e-05 6.19216e-05 8.34557e-05 4.76559e-05 8.51278e-05 3.32933e-05 8.56834e-05 1.90677e-05 8.51151e-05 5.09158e-06 8.34954e-05 -8.48011e-06 8.12315e-05 -2.15217e-05 7.80952e-05 -3.39708e-05 7.45536e-05 -4.57293e-05 7.04537e-05 -5.67654e-05 6.6296e-05 -6.71221e-05 6.1986e-05 -7.66967e-05 5.74041e-05 -8.55212e-05 5.31011e-05 -9.36645e-05 4.88607e-05 -0.000101082 4.45119e-05 -0.000107834 4.04954e-05 -0.000113914 3.66729e-05 -0.000119384 3.284e-05 -0.000124265 2.928e-05 -0.000128562 2.58958e-05 -0.000132314 2.25363e-05 -0.000135537 1.93222e-05 -0.00013822 1.61304e-05 -0.000140376 1.29208e-05 -0.000142 9.69642e-06 -0.000143074 6.40701e-06 -0.000143569 2.96303e-06 -0.000143487 -5.36479e-07 -0.000142776 -4.35075e-06 -0.000141408 -8.27989e-06 -0.000139342 -1.24815e-05 -0.000136539 -1.68538e-05 -0.000132972 -2.14837e-05 -0.000128593 -2.63196e-05 -0.000123382 -3.13628e-05 -0.000117305 -3.64608e-05 -0.000110353 -4.17219e-05 -0.000102524 -4.69563e-05 -9.38194e-05 -5.21572e-05 -8.4263e-05 -5.72794e-05 -7.38848e-05 -6.2197e-05 -6.2718e-05 -6.68446e-05 -5.08554e-05 -7.11338e-05 -3.83248e-05 -7.48556e-05 -2.52604e-05 -7.81389e-05 -1.17335e-05 -8.08561e-05 2.0995e-06 -8.26791e-05 1.61173e-05 -8.38041e-05 3.01688e-05 -8.39546e-05 4.40885e-05 -8.31775e-05 5.77186e-05 -8.14016e-05 7.08941e-05 -7.87397e-05 8.34548e-05 -7.50215e-05 9.52534e-05 -7.04587e-05 0.000106143 -6.50627e-05 0.000116006 -5.89813e-05 0.000124724 -5.2098e-05 0.000132218 -4.47574e-05 0.0001384 -3.69669e-05 0.000143216 -2.88723e-05 0.000146628 -2.03555e-05 0.000148605 -1.18233e-05 0.000149136 -3.20402e-06 0.000148215 5.39858e-06 0.000145884 1.3913e-05 0.000142166 2.22304e-05 0.00013709 3.03398e-05 0.000130726 3.8059e-05 0.000123128 4.54072e-05 0.000114381 5.22687e-05 0.000104574 5.85752e-05 9.38127e-05 6.43688e-05 8.22109e-05 6.93517e-05 6.98897e-05 7.36081e-05 5.6989e-05 7.71251e-05 4.36564e-05 7.97533e-05 2.99931e-05 8.16183e-05 1.61816e-05 8.25404e-05 2.35223e-06 8.26399e-05 -1.13544e-05 8.20145e-05 -2.48187e-05 8.04946e-05 -3.79111e-05 7.83355e-05 -5.0529e-05 7.55276e-05 -6.2567e-05 7.21484e-05 -7.39932e-05 6.83307e-05 -8.4694e-05 6.40565e-05 -9.46227e-05 5.94623e-05 -0.000103746 5.47356e-05 -0.000112042 4.97194e-05 -0.00011948 4.46127e-05 -0.000126062 3.94996e-05 -0.000131782 3.43262e-05 -0.000136648 2.91651e-05 -0.000140662 2.41749e-05 -0.000143853 1.9187e-05 -0.000146239 1.43421e-05 -0.000147835 9.55982e-06 -0.000148663 5.07183e-06 -0.000148744 5.73062e-07 -0.000148104 -3.77488e-06 -0.000146737 -8.08561e-06 -0.00014471 -1.21963e-05 -0.000141991 -1.62728e-05 -0.000138611 -2.0249e-05 -0.000134575 -2.41746e-05 -0.0001299 -2.80598e-05 -0.000124594 -3.18111e-05 -0.000118672 -3.5565e-05 -0.000112126 -3.91973e-05 -0.000104982 -4.28374e-05 -9.72449e-05 -4.63726e-05 -8.89315e-05 -4.98398e-05 -8.00567e-05 -5.31798e-05 -7.06271e-05 -5.64793e-05 -6.07111e-05 -5.95063e-05 -5.02959e-05 -6.23952e-05 -3.94323e-05 -6.50736e-05 -2.81658e-05 -6.74935e-05 -1.65434e-05 -6.95909e-05 -4.63161e-06 -7.13035e-05 7.50482e-06 -7.26284e-05 1.97893e-05 -7.34487e-05 3.21055e-05 -7.37016e-05 4.43767e-05 -7.34565e-05 5.64915e-05 -7.24361e-05 6.83394e-05 -7.08085e-05 7.97973e-05 -6.84507e-05 9.07411e-05 -6.54533e-05 0.000101051 -6.15588e-05 0.000110599 -5.70001e-05 0.000119259 -5.17074e-05 0.000126932 -4.58004e-05 0.000133482 -3.91065e-05 0.000138832 -3.19102e-05 0.000142899 -2.42613e-05 0.00014562 -1.62028e-05 0.000146941 -7.93373e-06 0.00014684 5.84139e-07 0.000145313 9.08221e-06 0.000142385 1.7456e-05 0.000138082 2.57248e-05 0.00013246 3.36036e-05 0.000125593 4.09942e-05 0.00011757 4.79229e-05 0.0001085 5.41714e-05 9.85033e-05 5.96766e-05 8.77126e-05 6.44462e-05 7.62734e-05 6.83458e-05 6.43215e-05 7.13727e-05 5.20121e-05 7.35472e-05 3.94973e-05 7.48248e-05 2.69007e-05 7.52449e-05 1.4382e-05 7.48923e-05 2.04718e-06 7.38157e-05 -1.0016e-05 7.20609e-05 -2.16656e-05 6.97124e-05 -3.28078e-05 6.68128e-05 -4.34414e-05 6.35632e-05 -5.3445e-05 5.99149e-05 -6.27717e-05 5.5955e-05 -7.1444e-05 5.18875e-05 -7.93766e-05 4.75734e-05 -8.65664e-05 4.31759e-05 -9.30555e-05 3.88742e-05 -9.87739e-05 3.43237e-05 -0.000103746 2.98653e-05 -0.000108022 2.56409e-05 -0.000111575 2.13593e-05 -0.000114394 1.69425e-05 -0.000116552 1.29712e-05 -0.000118035 8.90511e-06 -0.000118849 4.94962e-06 -0.000119044 1.22946e-06 -0.000118587 -2.7132e-06 -0.000117537 -6.23269e-06 -0.000115888 -9.91442e-06 -0.000113637 -1.34757e-05 -0.000110832 -1.67763e-05 -0.000107447 -2.02895e-05 -0.000103519 -2.35083e-05 -9.90639e-05 -2.66922e-05 -9.40889e-05 -2.98591e-05 -8.85961e-05 -3.28984e-05 -8.26378e-05 -3.57019e-05 -7.61949e-05 -3.86345e-05 -6.93189e-05 -4.11994e-05 -6.20357e-05 -4.36316e-05 -5.43673e-05 -4.59247e-05 -4.63456e-05 -4.80598e-05 -3.79954e-05 -4.99939e-05 -2.93713e-05 -5.16271e-05 -2.05269e-05 -5.29572e-05 -1.1513e-05 -5.39443e-05 -2.33245e-06 -5.49688e-05 6.8885e-06 -5.52204e-05 1.61224e-05 -5.52718e-05 2.53209e-05 -5.5013e-05 3.43832e-05 -5.41946e-05 4.32366e-05 -5.29484e-05 5.17984e-05 -5.12235e-05 6.00284e-05 -4.91952e-05 6.78681e-05 -4.68603e-05 7.51952e-05 -4.37959e-05 8.19816e-05 -4.06144e-05 8.81698e-05 -3.69991e-05 9.36853e-05 -3.30036e-05 9.85221e-05 -2.89262e-05 0.000102614 -2.44487e-05 0.000105959 -2.00104e-05 0.000108523 -1.53524e-05 0.000110287 -1.06102e-05 0.000111298 -6.05105e-06 0.000111483 -1.25401e-06 0.000110882 3.49624e-06 0.00010953 8.00103e-06 0.000107482 1.21778e-05 0.000104776 1.60824e-05 0.000101479 1.97093e-05 9.7641e-05 2.29028e-05 9.33189e-05 2.57807e-05 8.85745e-05 2.82856e-05 8.34982e-05 3.04152e-05 7.81282e-05 3.20118e-05 7.25451e-05 3.33289e-05 6.68481e-05 3.41205e-05 6.10745e-05 3.446e-05 5.52697e-05 3.47108e-05 4.94883e-05 3.45237e-05 4.38181e-05 3.39793e-05 3.82558e-05 3.32753e-05 3.29031e-05 3.20378e-05 2.77498e-05 3.08362e-05 2.28819e-05 2.92195e-05 1.82695e-05 2.7545e-05 1.39505e-05 2.58836e-05 9.9821e-06 2.38204e-05 6.30652e-06 2.19066e-05 2.98913e-06 2.0016e-05 2.53768e-08 1.77518e-05 -2.63052e-06 1.59464e-05 -4.96442e-06 1.40198e-05 -6.98005e-06 1.21243e-05 -8.69666e-06 1.03325e-05 -1.01141e-05 8.54469e-06 -1.12552e-05 6.87291e-06 5.23148e-06 -0.000111408 -5.67347e-05 -0.000102115 -6.50148e-05 -9.18374e-05 -7.18031e-05 -8.05949e-05 -7.84918e-05 -6.82294e-05 -8.6352e-05 -5.50156e-05 -9.21061e-05 -4.08807e-05 -9.85591e-05 -2.61148e-05 -0.000102875 -1.08898e-05 -0.000106053 4.66894e-06 -0.000108315 2.04835e-05 -0.000110018 3.62108e-05 -0.000109426 5.19106e-05 -0.000109242 6.73581e-05 -0.000107458 8.24092e-05 -0.000104789 9.68757e-05 -0.00010066 0.000110496 -9.48026e-05 0.000123181 -8.82654e-05 0.000134756 -8.06172e-05 0.000145143 -7.22494e-05 0.000154244 -6.34062e-05 0.000161923 -5.35199e-05 0.000168181 -4.35863e-05 0.000172897 -3.27815e-05 0.000176059 -2.21067e-05 0.000177633 -1.09844e-05 0.000177695 -6.22385e-07 0.000176163 1.05895e-05 0.000173134 2.10581e-05 0.000168473 3.24145e-05 0.000162191 4.37711e-05 0.00015447 5.38421e-05 0.000145254 6.40678e-05 0.000134808 7.29487e-05 0.000123044 8.18095e-05 0.000110119 8.96776e-05 9.64275e-05 9.51897e-05 8.19837e-05 0.000100523 6.6921e-05 0.000104546 5.16499e-05 0.000106183 3.61942e-05 0.000107902 2.08526e-05 0.000106511 5.75479e-06 0.000105298 -9.03785e-06 0.000102894 -2.33063e-05 9.9397e-05 -3.69584e-05 9.52226e-05 -4.98969e-05 9.03089e-05 -6.2055e-05 8.49116e-05 -7.34081e-05 7.93516e-05 -8.39169e-05 7.34987e-05 -9.35678e-05 6.7525e-05 -0.000102375 6.16484e-05 -0.000110345 5.57966e-05 -0.000117497 5.01006e-05 -0.000123821 4.43012e-05 -0.000129337 3.86281e-05 -0.000134121 3.3491e-05 -0.000138075 2.77218e-05 -0.000141232 2.21215e-05 -0.000143656 1.69428e-05 -0.000145236 1.11593e-05 -0.000146124 6.29933e-06 -0.000146186 6.23478e-07 -0.000145423 -5.21842e-06 -0.000143892 -1.07223e-05 -0.000141678 -1.52724e-05 -0.00013869 -2.0895e-05 -0.00013506 -2.52167e-05 -0.000130773 -2.98894e-05 -0.000125901 -3.4044e-05 -0.000120494 -3.76944e-05 -0.000114527 -4.17856e-05 -0.00010801 -4.54665e-05 -0.000101076 -4.84372e-05 -9.35928e-05 -5.24078e-05 -8.56761e-05 -5.55668e-05 -7.71987e-05 -5.91572e-05 -6.82313e-05 -6.31045e-05 -5.88279e-05 -6.56618e-05 -4.88591e-05 -7.00938e-05 -3.83953e-05 -7.28982e-05 -2.75381e-05 -7.64924e-05 -1.60719e-05 -7.97598e-05 -4.32237e-06 -8.27349e-05 7.93613e-06 -8.49159e-05 2.04758e-05 -8.74398e-05 3.31626e-05 -8.85306e-05 4.60205e-05 -8.95999e-05 5.89271e-05 -8.99232e-05 7.16389e-05 -8.87317e-05 8.41775e-05 -8.69994e-05 9.6271e-05 -8.40004e-05 0.000107752 -7.98341e-05 0.000118458 -7.4364e-05 0.000128213 -6.76316e-05 0.000136843 -5.98108e-05 0.00014417 -5.07553e-05 0.000150021 -4.04731e-05 0.00015428 -2.94294e-05 0.00015681 -1.7574e-05 0.000157574 -5.06296e-06 0.00015649 7.49047e-06 0.000153597 2.00887e-05 0.000148927 3.24829e-05 0.000142532 4.43671e-05 0.000134519 5.55624e-05 0.000125046 6.58052e-05 0.000114268 7.47489e-05 0.000102386 8.26421e-05 8.95424e-05 8.90933e-05 7.59952e-05 9.40903e-05 6.19483e-05 9.75026e-05 4.76357e-05 9.94405e-05 3.32433e-05 0.000100076 1.89635e-05 9.9395e-05 4.95122e-06 9.75077e-05 -8.64236e-06 9.48252e-05 -2.17023e-05 9.11552e-05 -3.41656e-05 8.70169e-05 -4.59373e-05 8.22255e-05 -5.69958e-05 7.73546e-05 -6.73346e-05 7.23249e-05 -7.69152e-05 6.69847e-05 -8.57598e-05 6.19457e-05 -9.38714e-05 5.69724e-05 -0.00010128 5.19206e-05 -0.000108025 4.72406e-05 -0.000114101 4.2749e-05 -0.000119565 3.83037e-05 -0.000124437 3.41523e-05 -0.000128718 3.01765e-05 -0.000132481 2.62994e-05 -0.000135703 2.25437e-05 -0.000138386 1.88136e-05 -0.000140525 1.50602e-05 -0.000142159 1.13301e-05 -0.000143242 7.48998e-06 -0.000143751 3.47219e-06 -0.000143675 -6.12796e-07 -0.00014297 -5.05578e-06 -0.000141609 -9.64111e-06 -0.000139551 -1.45386e-05 -0.000136762 -1.96436e-05 -0.0001332 -2.5045e-05 -0.000128819 -3.07009e-05 -0.000123618 -3.6564e-05 -0.000117545 -4.25338e-05 -0.000110595 -4.8672e-05 -0.000102764 -5.47875e-05 -9.40532e-05 -6.08677e-05 -8.44894e-05 -6.68434e-05 -7.40995e-05 -7.25869e-05 -6.29189e-05 -7.80253e-05 -5.10377e-05 -8.30151e-05 -3.84864e-05 -8.7407e-05 -2.53926e-05 -9.12327e-05 -1.18426e-05 -9.44062e-05 2.0275e-06 -9.65493e-05 1.60801e-05 -9.78567e-05 3.01702e-05 -9.80448e-05 4.41285e-05 -9.7136e-05 5.77987e-05 -9.50719e-05 7.10185e-05 -9.19596e-05 8.36088e-05 -8.76119e-05 9.54404e-05 -8.22904e-05 0.000106361 -7.59832e-05 0.000116247 -6.8868e-05 0.00012499 -6.08406e-05 0.000132501 -5.22689e-05 0.000138699 -4.31647e-05 0.000143522 -3.36958e-05 0.000146941 -2.37739e-05 0.000148921 -1.38036e-05 0.00014946 -3.74327e-06 0.000148531 6.32802e-06 0.00014619 1.62534e-05 0.000142455 2.59658e-05 0.000137372 3.54231e-05 0.000131004 4.44269e-05 0.000123379 5.30316e-05 0.00011461 6.10382e-05 0.000104777 6.84082e-05 9.39934e-05 7.51521e-05 8.236e-05 8.09851e-05 7.00069e-05 8.59612e-05 5.7074e-05 9.00579e-05 4.37084e-05 9.31189e-05 3.00114e-05 9.53153e-05 1.6167e-05 9.63848e-05 2.30119e-06 9.65058e-05 -1.14323e-05 9.57479e-05 -2.49225e-05 9.39848e-05 -3.80407e-05 9.14538e-05 -5.06805e-05 8.81675e-05 -6.27375e-05 8.42053e-05 -7.41806e-05 7.97739e-05 -8.4892e-05 7.47679e-05 -9.48354e-05 6.94057e-05 -0.000103962 6.38621e-05 -0.000112259 5.8017e-05 -0.000119703 5.20567e-05 -0.000126285 4.60807e-05 -0.000131998 4.004e-05 -0.000136865 3.4032e-05 -0.000140876 2.81852e-05 -0.000144063 2.23744e-05 -0.000146442 1.67206e-05 -0.000148037 1.11555e-05 -0.000148857 5.89141e-06 -0.000148935 6.50818e-07 -0.000148288 -4.42186e-06 -0.000146918 -9.45545e-06 -0.000144888 -1.42264e-05 -0.000142166 -1.89943e-05 -0.000138784 -2.36308e-05 -0.000134736 -2.82228e-05 -0.000130068 -3.27275e-05 -0.000124758 -3.71213e-05 -0.000118834 -4.1489e-05 -0.000112285 -4.57467e-05 -0.000105138 -4.99847e-05 -9.73975e-05 -5.41129e-05 -8.90799e-05 -5.81575e-05 -8.01859e-05 -6.20739e-05 -7.07745e-05 -6.58907e-05 -6.08407e-05 -6.94401e-05 -5.04172e-05 -7.28188e-05 -3.95431e-05 -7.59478e-05 -2.82634e-05 -7.87733e-05 -1.66256e-05 -8.12287e-05 -4.67592e-06 -8.32533e-05 7.45951e-06 -8.47639e-05 1.97545e-05 -8.57438e-05 3.21082e-05 -8.60554e-05 4.44003e-05 -8.57487e-05 5.65425e-05 -8.45784e-05 6.84185e-05 -8.26845e-05 7.9909e-05 -7.99414e-05 9.08782e-05 -7.64226e-05 0.000101218 -7.18988e-05 0.000110795 -6.65773e-05 0.000119485 -6.03971e-05 0.000127183 -5.34986e-05 0.000133753 -4.56768e-05 0.000139122 -3.72793e-05 0.000143205 -2.83442e-05 0.000145955 -1.89525e-05 0.000147264 -9.2434e-06 0.000147166 6.82694e-07 0.000145637 1.06112e-05 0.000142698 2.03942e-05 0.000138382 3.00405e-05 0.000132747 3.92395e-05 0.000125855 4.78852e-05 0.000117808 5.59699e-05 0.000108715 6.32643e-05 9.86815e-05 6.97104e-05 8.78588e-05 7.52689e-05 7.63959e-05 7.98087e-05 6.43991e-05 8.33694e-05 5.20557e-05 8.58905e-05 3.95222e-05 8.73583e-05 2.68798e-05 8.78873e-05 1.432e-05 8.7452e-05 1.9751e-06 8.61607e-05 -1.01148e-05 8.41508e-05 -2.17842e-05 8.13817e-05 -3.29427e-05 7.79713e-05 -4.35909e-05 7.42114e-05 -5.36047e-05 6.99287e-05 -6.29383e-05 6.52886e-05 -7.16182e-05 6.05674e-05 -7.95542e-05 5.55094e-05 -8.6742e-05 5.03636e-05 -9.32261e-05 4.53583e-05 -9.89517e-05 4.00493e-05 -0.000103921 3.48342e-05 -0.000108196 2.99163e-05 -0.000111745 2.49085e-05 -0.00011456 1.97569e-05 -0.000116714 1.51259e-05 -0.000118194 1.0385e-05 -0.000119004 5.75933e-06 -0.000119194 1.41966e-06 -0.000118738 -3.16943e-06 -0.00011768 -7.29012e-06 -0.000116032 -1.15633e-05 -0.000113777 -1.573e-05 -0.000110969 -1.95852e-05 -0.000107581 -2.36775e-05 -0.000103645 -2.74439e-05 -9.91883e-05 -3.11488e-05 -9.42117e-05 -3.48357e-05 -8.87116e-05 -3.83985e-05 -8.27502e-05 -4.16633e-05 -7.63007e-05 -4.50839e-05 -6.94157e-05 -4.80844e-05 -6.21268e-05 -5.09206e-05 -5.44553e-05 -5.35962e-05 -4.64229e-05 -5.60922e-05 -3.80653e-05 -5.83515e-05 -2.94277e-05 -6.02647e-05 -2.05718e-05 -6.18131e-05 -1.15446e-05 -6.29715e-05 -2.34837e-06 -6.41651e-05 6.88512e-06 -6.44539e-05 1.61343e-05 -6.4521e-05 2.5351e-05 -6.42297e-05 3.44301e-05 -6.32737e-05 4.32999e-05 -6.18182e-05 5.18793e-05 -5.9803e-05 6.01273e-05 -5.74432e-05 6.7986e-05 -5.47191e-05 7.53251e-05 -5.1135e-05 8.21237e-05 -4.74131e-05 8.83247e-05 -4.32002e-05 9.38489e-05 -3.85278e-05 9.86948e-05 -3.37721e-05 0.000102796 -2.85499e-05 0.000106145 -2.33593e-05 0.00010871 -1.79173e-05 0.000110471 -1.23712e-05 0.000111474 -7.05467e-06 0.000111658 -1.43783e-06 0.000111054 4.10029e-06 0.000109697 9.35805e-06 0.000107633 1.42413e-05 0.000104913 1.88029e-05 0.000101609 2.30131e-05 9.7752e-05 2.67596e-05 9.34158e-05 3.01169e-05 8.86559e-05 3.30456e-05 8.35803e-05 3.54907e-05 7.81786e-05 3.74135e-05 7.25772e-05 3.89304e-05 6.6878e-05 3.98197e-05 6.10799e-05 4.02581e-05 5.5262e-05 4.05286e-05 4.94677e-05 4.0318e-05 4.37874e-05 3.96596e-05 3.82176e-05 3.88451e-05 3.28535e-05 3.7402e-05 2.76944e-05 3.59953e-05 2.28167e-05 3.40972e-05 1.81888e-05 3.21729e-05 1.38795e-05 3.01929e-05 9.90432e-06 2.77956e-05 6.22262e-06 2.55883e-05 2.92394e-06 2.33147e-05 -5.38108e-08 2.07296e-05 -2.70931e-06 1.86019e-05 -5.04093e-06 1.63514e-05 -7.05362e-06 1.4137e-05 -8.76644e-06 1.20454e-05 -1.01796e-05 9.95784e-06 -1.13175e-05 8.01076e-06 6.0927e-06 -0.000111684 -6.4835e-05 -0.000102388 -7.43109e-05 -9.21e-05 -8.20912e-05 -8.08417e-05 -8.97503e-05 -6.84599e-05 -9.87338e-05 -5.52156e-05 -0.000105351 -4.10508e-05 -0.000112724 -2.62482e-05 -0.000117678 -1.0989e-05 -0.000121312 4.60837e-06 -0.000123912 2.04685e-05 -0.000125879 3.62376e-05 -0.000125195 5.1983e-05 -0.000124987 6.74839e-05 -0.000122959 8.25758e-05 -0.000119881 9.70831e-05 -0.000115168 0.000110743 -0.000108463 0.00012346 -0.000100983 0.000135074 -9.22308e-05 0.000145483 -8.26584e-05 0.000154622 -7.25452e-05 0.000162322 -6.12205e-05 0.000168592 -4.98566e-05 0.000173329 -3.75182e-05 0.000176493 -2.52713e-05 0.00017808 -1.25716e-05 0.000178136 -6.77893e-07 0.000176622 1.2103e-05 0.000173579 2.41015e-05 0.000168903 3.70899e-05 0.000162603 5.00713e-05 0.000154861 6.15841e-05 0.000145614 7.33146e-05 0.000135157 8.3405e-05 0.000123341 9.3626e-05 0.00011037 0.000102648 9.66238e-05 0.000108936 8.21372e-05 0.00011501 6.70053e-05 0.000119678 5.16837e-05 0.000121504 3.62279e-05 0.000123358 2.07899e-05 0.000121949 5.66546e-06 0.000120422 -9.17589e-06 0.000117736 -2.34771e-05 0.000113698 -3.71536e-05 0.000108899 -5.01098e-05 0.000103265 -6.228e-05 9.70817e-05 -7.36405e-05 9.07121e-05 -8.41523e-05 8.40105e-05 -9.38032e-05 7.71759e-05 -0.00010261 7.04554e-05 -0.000110575 6.37615e-05 -0.000117725 5.72507e-05 -0.000124046 5.06221e-05 -0.000129559 4.41412e-05 -0.000134342 3.82736e-05 -0.000138296 3.16755e-05 -0.000141453 2.52793e-05 -0.000143876 1.93655e-05 -0.000145457 1.27401e-05 -0.000146342 7.18472e-06 -0.000146397 6.78328e-07 -0.000145628 -5.98794e-06 -0.000144102 -1.2248e-05 -0.000141868 -1.75067e-05 -0.000138877 -2.38855e-05 -0.000135233 -2.88611e-05 -0.000130939 -3.41829e-05 -0.00012606 -3.89233e-05 -0.000120641 -4.31132e-05 -0.00011468 -4.77473e-05 -0.000108148 -5.19977e-05 -0.000101209 -5.53769e-05 -9.37276e-05 -5.9889e-05 -8.5818e-05 -6.34766e-05 -7.73343e-05 -6.76409e-05 -6.84026e-05 -7.20362e-05 -5.8967e-05 -7.50975e-05 -4.90233e-05 -8.00376e-05 -3.85385e-05 -8.33831e-05 -2.76768e-05 -8.73543e-05 -1.62069e-05 -9.12299e-05 -4.46497e-06 -9.44769e-05 7.81992e-06 -9.72009e-05 2.03833e-05 -0.000100003 3.3091e-05 -0.000101238 4.59731e-05 -0.000102482 5.89183e-05 -0.000102868 7.16608e-05 -0.000101474 8.42464e-05 -9.95851e-05 9.63867e-05 -9.61407e-05 0.000107919 -9.13671e-05 0.00011867 -8.51141e-05 0.000128475 -7.74375e-05 0.00013715 -6.84853e-05 0.000144512 -5.81179e-05 0.000150405 -4.63655e-05 0.000154699 -3.37236e-05 0.000157246 -2.0121e-05 0.00015802 -5.83752e-06 0.000156943 8.56742e-06 0.000154034 2.29979e-05 0.000149355 3.71616e-05 0.000142949 5.07731e-05 0.000134875 6.36365e-05 0.000125373 7.53078e-05 0.000114526 8.55951e-05 0.000102565 9.46031e-05 8.96752e-05 0.000101983 7.60826e-05 0.000107683 6.19795e-05 0.000111606 4.76125e-05 0.000113808 3.32031e-05 0.000114485 1.88418e-05 0.000113756 4.78761e-06 0.000111562 -8.83324e-06 0.000108446 -2.19082e-05 0.00010423 -3.43911e-05 9.94998e-05 -4.61815e-05 9.4016e-05 -5.72559e-05 8.8429e-05 -6.75838e-05 8.26529e-05 -7.71684e-05 7.65693e-05 -8.60084e-05 7.07858e-05 -9.4106e-05 6.50701e-05 -0.000101523 5.93378e-05 -0.00010825 5.39676e-05 -0.000114318 4.8817e-05 -0.000119775 4.37605e-05 -0.000124637 3.90148e-05 -0.000128929 3.4468e-05 -0.000132677 3.00475e-05 -0.000135895 2.57618e-05 -0.000138578 2.14968e-05 -0.0001407 1.71823e-05 -0.000142351 1.29805e-05 -0.000143436 8.5754e-06 -0.000143961 3.99718e-06 -0.000143892 -6.82304e-07 -0.000143196 -5.75115e-06 -0.000141843 -1.09943e-05 -0.000139797 -1.65851e-05 -0.000137018 -2.24224e-05 -0.000133463 -2.86002e-05 -0.000129092 -3.50719e-05 -0.000123896 -4.17599e-05 -0.000117827 -4.86029e-05 -0.000110877 -5.56216e-05 -0.000103044 -6.26213e-05 -9.43265e-05 -6.95848e-05 -8.47531e-05 -7.64168e-05 -7.43471e-05 -8.29929e-05 -6.31591e-05 -8.92134e-05 -5.12512e-05 -9.4923e-05 -3.8677e-05 -9.99813e-05 -2.55423e-05 -0.000104368 -1.19683e-05 -0.00010798 1.94383e-06 -0.000110462 1.60378e-05 -0.000111951 3.01719e-05 -0.000112179 4.41762e-05 -0.00011114 5.78938e-05 -0.00010879 7.11487e-05 -0.000105215 8.37874e-05 -0.000100251 9.56577e-05 -9.41607e-05 0.000106615 -8.69404e-05 0.000116531 -7.87839e-05 0.000125304 -6.96139e-05 0.000132832 -5.97976e-05 0.000139049 -4.93811e-05 0.000143882 -3.85292e-05 0.000147309 -2.72004e-05 0.000149291 -1.57859e-05 0.000149827 -4.27965e-06 0.000148896 7.2587e-06 0.000146548 1.8602e-05 0.000142798 2.97152e-05 0.000137701 4.05201e-05 0.000131318 5.08103e-05 0.000123671 6.0678e-05 0.000114877 6.98325e-05 0.000105015 7.82706e-05 9.42004e-05 8.59662e-05 8.25378e-05 9.26478e-05 7.01455e-05 9.83535e-05 5.7173e-05 0.00010303 4.37549e-05 0.000106537 3.00306e-05 0.00010904 1.61475e-05 0.000110268 2.24509e-06 0.000110408 -1.15226e-05 0.000109516 -2.50406e-05 0.000107503 -3.8191e-05 0.000104604 -5.08572e-05 0.000100834 -6.29502e-05 9.62983e-05 -7.43997e-05 9.12233e-05 -8.51238e-05 8.54921e-05 -9.50805e-05 7.93624e-05 -0.000104213 7.29948e-05 -0.000112513 6.63165e-05 -0.000119965 5.95091e-05 -0.000126544 5.266e-05 -0.000132242 4.57381e-05 -0.000137118 3.89078e-05 -0.000141125 3.21921e-05 -0.000144308 2.55573e-05 -0.000146677 1.90895e-05 -0.00014827 1.27485e-05 -0.000149083 6.70433e-06 -0.000149156 7.23995e-07 -0.000148501 -5.07683e-06 -0.000147142 -1.08144e-05 -0.000145096 -1.62724e-05 -0.000142371 -2.17197e-05 -0.000138985 -2.70167e-05 -0.000134924 -3.22835e-05 -0.000130263 -3.7389e-05 -0.00012495 -4.24341e-05 -0.000119022 -4.74171e-05 -0.000112471 -5.22979e-05 -0.00010532 -5.71357e-05 -9.75749e-05 -6.18576e-05 -8.92491e-05 -6.64833e-05 -8.03519e-05 -7.09712e-05 -7.09368e-05 -7.53058e-05 -6.09926e-05 -7.93844e-05 -5.05584e-05 -8.32531e-05 -3.96721e-05 -8.68342e-05 -2.83774e-05 -9.00681e-05 -1.67224e-05 -9.28837e-05 -4.75154e-06 -9.52243e-05 7.40526e-06 -9.69208e-05 1.97242e-05 -9.80628e-05 3.21214e-05 -9.84527e-05 4.44294e-05 -9.80567e-05 5.66031e-05 -9.67522e-05 6.85105e-05 -9.45921e-05 8.00484e-05 -9.14794e-05 9.10399e-05 -8.74142e-05 0.000101415 -8.22738e-05 0.000111024 -7.61871e-05 0.00011975 -6.91229e-05 0.000127464 -6.12121e-05 0.00013407 -5.22832e-05 0.000139462 -4.26719e-05 0.000143563 -3.24449e-05 0.000146326 -2.17156e-05 0.000147639 -1.05568e-05 0.000147545 7.76989e-07 0.000146016 1.21407e-05 0.000143065 2.33451e-05 0.000138734 3.43713e-05 0.000133087 4.48857e-05 0.000126162 5.48108e-05 0.000118086 6.40457e-05 0.000108978 7.23722e-05 9.88913e-05 7.97972e-05 8.80298e-05 8.61304e-05 7.65307e-05 9.13078e-05 6.44899e-05 9.54103e-05 5.21066e-05 9.82738e-05 3.95325e-05 9.99325e-05 2.68554e-05 0.000100564 1.42604e-05 0.000100047 1.8727e-06 9.85484e-05 -1.02303e-05 9.62538e-05 -2.19228e-05 9.30742e-05 -3.312e-05 8.91685e-05 -4.37653e-05 8.48567e-05 -5.37909e-05 7.99542e-05 -6.31534e-05 7.46512e-05 -7.18213e-05 6.92353e-05 -7.9761e-05 6.34491e-05 -8.69663e-05 5.75689e-05 -9.34218e-05 5.18138e-05 -9.91598e-05 4.57874e-05 -0.000104136 3.98108e-05 -0.000108397 3.41766e-05 -0.000111945 2.84571e-05 -0.000114759 2.25702e-05 -0.000116901 1.72679e-05 -0.00011838 1.18641e-05 -0.000119186 6.56544e-06 -0.00011937 1.60346e-06 -0.000118915 -3.62451e-06 -0.000117847 -8.3573e-06 -0.000116199 -1.32117e-05 -0.000113941 -1.79882e-05 -0.000111128 -2.23977e-05 -0.000107736 -2.70696e-05 -0.000103792 -3.13883e-05 -9.93339e-05 -3.56066e-05 -9.43542e-05 -3.98154e-05 -8.88463e-05 -4.39065e-05 -8.2881e-05 -4.76286e-05 -7.64234e-05 -5.15416e-05 -6.95286e-05 -5.49792e-05 -6.22317e-05 -5.82174e-05 -5.45581e-05 -6.12699e-05 -4.65127e-05 -6.41376e-05 -3.81482e-05 -6.6716e-05 -2.94938e-05 -6.89191e-05 -2.06246e-05 -7.06823e-05 -1.15815e-05 -7.20147e-05 -2.36855e-06 -7.33781e-05 6.8811e-06 -7.37036e-05 1.61486e-05 -7.37885e-05 2.53874e-05 -7.34685e-05 3.44848e-05 -7.23712e-05 4.33714e-05 -7.07048e-05 5.19741e-05 -6.84056e-05 6.02436e-05 -6.57128e-05 6.81265e-05 -6.2602e-05 7.54769e-05 -5.84854e-05 8.22898e-05 -5.4226e-05 8.85023e-05 -4.94126e-05 9.40413e-05 -4.40668e-05 9.88971e-05 -3.8628e-05 0.000103011 -3.26633e-05 0.000106356 -2.67044e-05 0.000108927 -2.04888e-05 0.000110686 -1.41303e-05 0.000111682 -8.05011e-06 0.000111864 -1.62013e-06 0.000111255 4.70952e-06 0.000109897 1.07156e-05 0.00010781 1.6328e-05 0.000105075 2.15387e-05 0.000101765 2.63227e-05 9.78818e-05 3.06428e-05 9.35257e-05 3.4473e-05 8.87529e-05 3.78183e-05 8.36685e-05 4.05752e-05 7.82344e-05 4.28476e-05 7.26169e-05 4.45478e-05 6.69052e-05 4.55315e-05 6.10862e-05 4.6077e-05 5.52529e-05 4.63619e-05 4.94462e-05 4.61247e-05 4.37512e-05 4.53546e-05 3.81762e-05 4.44201e-05 3.2788e-05 4.27901e-05 2.76323e-05 4.1151e-05 2.27411e-05 3.89884e-05 1.8103e-05 3.68109e-05 1.38008e-05 3.44951e-05 9.81391e-06 3.17825e-05 6.12966e-06 2.92726e-05 2.8696e-06 2.65747e-05 -1.46149e-07 2.37453e-05 -2.80132e-06 2.12571e-05 -5.13021e-06 1.86803e-05 -7.13905e-06 1.61458e-05 -8.84781e-06 1.37541e-05 -1.02561e-05 1.13661e-05 -1.13901e-05 9.14472e-06 6.94926e-06 -0.000112 -7.29331e-05 -0.000102701 -8.361e-05 -9.24009e-05 -9.23917e-05 -8.11246e-05 -0.000101027 -6.87244e-05 -0.000111134 -5.54447e-05 -0.00011863 -4.12458e-05 -0.000126923 -2.64015e-05 -0.000132522 -1.11061e-05 -0.000136607 4.5386e-06 -0.000139557 2.04499e-05 -0.00014179 3.62679e-05 -0.000141013 5.20652e-05 -0.000140785 6.76232e-05 -0.000138517 8.27668e-05 -0.000135025 9.73207e-05 -0.000129722 0.000111028 -0.00012217 0.000123785 -0.00011374 0.000135437 -0.000103883 0.000145879 -9.31002e-05 0.000155055 -8.17221e-05 0.000162787 -6.8952e-05 0.000169061 -5.61312e-05 0.000173804 -4.22614e-05 0.000176987 -2.84542e-05 0.000178583 -1.41678e-05 0.000178639 -7.33497e-07 0.000177158 1.35834e-05 0.000174087 2.71729e-05 0.000169398 4.17786e-05 0.000163074 5.63952e-05 0.000155309 6.93487e-05 0.000146022 8.26014e-05 0.000135516 9.39112e-05 0.000123683 0.000105459 0.000110666 0.000115665 9.68483e-05 0.000122754 8.23152e-05 0.000129543 6.7103e-05 0.00013489 5.17232e-05 0.000136884 3.62607e-05 0.00013882 2.07166e-05 0.000137493 5.56491e-06 0.000135574 -9.3352e-06 0.000132636 -2.36727e-05 0.000128036 -3.73774e-05 0.000122604 -5.03538e-05 0.000116241 -6.25377e-05 0.000109266 -7.39066e-05 0.000102081 -8.44217e-05 9.45256e-05 -9.40728e-05 8.68269e-05 -0.00010288 7.92627e-05 -0.000110839 7.17203e-05 -0.000117986 6.43981e-05 -0.000124303 5.69394e-05 -0.000129813 4.9651e-05 -0.000134595 4.3055e-05 -0.000138548 3.56288e-05 -0.000141707 2.84386e-05 -0.000144128 2.1786e-05 -0.00014571 1.43223e-05 -0.000146593 8.06729e-06 -0.000146639 7.24982e-07 -0.000145863 -6.76382e-06 -0.000144346 -1.37658e-05 -0.000142085 -1.97673e-05 -0.000139091 -2.68791e-05 -0.00013543 -3.25224e-05 -0.000131131 -3.84819e-05 -0.000126242 -4.38124e-05 -0.000120809 -4.85464e-05 -0.000114854 -5.37019e-05 -0.000108309 -5.85427e-05 -0.000101362 -6.23244e-05 -9.38833e-05 -6.73678e-05 -8.59811e-05 -7.13788e-05 -7.74909e-05 -7.61312e-05 -6.85781e-05 -8.09491e-05 -5.91255e-05 -8.45502e-05 -4.91854e-05 -8.99778e-05 -3.87028e-05 -9.38658e-05 -2.78363e-05 -9.82209e-05 -1.63614e-05 -0.000102705 -4.60663e-06 -0.000106232 7.69097e-06 -0.000109499 2.02768e-05 -0.000112589 3.30064e-05 -0.000113968 4.59204e-05 -0.000115396 5.89094e-05 -0.000115858 7.16845e-05 -0.00011425 8.43271e-05 -0.000112228 9.6512e-05 -0.000108326 0.000108097 -0.000102952 0.000118909 -9.59265e-05 0.000128775 -8.73036e-05 0.0001375 -7.72104e-05 0.000144911 -6.55285e-05 0.000150847 -5.23022e-05 0.000155169 -3.80453e-05 0.000157744 -2.26964e-05 0.00015853 -6.6233e-06 0.000157471 9.62594e-06 0.000154537 2.59321e-05 0.000149831 4.18682e-05 0.000143374 5.72301e-05 0.000135281 7.17293e-05 0.000125752 8.48364e-05 0.000114826 9.65219e-05 0.000102795 0.000106633 8.9839e-05 0.00011494 7.61814e-05 0.000121341 6.20163e-05 0.000125771 4.75848e-05 0.000128239 3.30773e-05 0.000128993 1.87024e-05 0.000128131 4.60571e-06 0.000125659 -9.05478e-06 0.000122107 -2.21531e-05 0.000117329 -3.46433e-05 0.00011199 -4.64618e-05 0.000105835 -5.75392e-05 9.95065e-05 -6.78632e-05 9.29769e-05 -7.74554e-05 8.61615e-05 -8.62895e-05 7.96199e-05 -9.43736e-05 7.31543e-05 -0.00010179 6.67542e-05 -0.000108507 6.06848e-05 -0.000114554 5.48638e-05 -0.000120016 4.92225e-05 -0.000124863 4.38622e-05 -0.000129161 3.87659e-05 -0.0001329 3.37865e-05 -0.000136112 2.89741e-05 -0.000138798 2.41822e-05 -0.000140951 1.93355e-05 -0.000142586 1.46154e-05 -0.000143668 9.65772e-06 -0.0001442 4.52916e-06 -0.000144139 -7.43127e-07 -0.000143455 -6.43571e-06 -0.000142111 -1.23383e-05 -0.000140077 -1.86192e-05 -0.00013731 -2.51891e-05 -0.000133762 -3.21488e-05 -0.00012941 -3.94241e-05 -0.000124211 -4.69587e-05 -0.00011815 -5.46638e-05 -0.000111201 -6.2571e-05 -0.000103364 -7.04577e-05 -9.46348e-05 -7.83142e-05 -8.50508e-05 -8.60009e-05 -7.46263e-05 -9.34175e-05 -6.34275e-05 -0.000100412 -5.14921e-05 -0.000106858 -3.88914e-05 -0.000112582 -2.57273e-05 -0.000117532 -1.21105e-05 -0.000121597 1.84649e-06 -0.000124419 1.59907e-05 -0.000126095 3.01733e-05 -0.000126362 4.42305e-05 -0.000125198 5.80053e-05 -0.000122565 7.13047e-05 -0.000118514 8.39925e-05 -0.000112939 9.59071e-05 -0.000106075 0.000106908 -9.79415e-05 0.00011685 -8.87256e-05 0.000125661 -7.84257e-05 0.000133211 -6.73478e-05 0.000139453 -5.56225e-05 0.000144294 -4.33709e-05 0.000147738 -3.06443e-05 0.000149717 -1.77645e-05 0.000150241 -4.80405e-06 0.000149312 8.18737e-06 0.000146952 2.0962e-05 0.000143194 3.34734e-05 0.00013808 4.56341e-05 0.000131663 5.72279e-05 0.000124003 6.83379e-05 0.000115182 7.86531e-05 0.000105286 8.81667e-05 9.44355e-05 9.68166e-05 8.27462e-05 0.000104337 7.03043e-05 0.000110795 5.72868e-05 0.000116048 4.38204e-05 0.000120003 3.00538e-05 0.000122806 1.61226e-05 0.000124199 2.17951e-06 0.000124351 -1.16264e-05 0.000123322 -2.51652e-05 0.000121042 -3.83633e-05 0.000117802 -5.10599e-05 0.00011353 -6.31832e-05 0.000108422 -7.46489e-05 0.000102689 -8.53898e-05 9.6233e-05 -9.53602e-05 8.93328e-05 -0.000104501 8.21353e-05 -0.000112795 7.46105e-05 -0.000120257 6.69716e-05 -0.000126839 5.92421e-05 -0.000132541 5.14396e-05 -0.000137409 4.37763e-05 -0.000141411 3.61944e-05 -0.000144588 2.87337e-05 -0.00014694 2.14412e-05 -0.000148534 1.43432e-05 -0.000149342 7.51156e-06 -0.00014941 7.91988e-07 -0.000148746 -5.74089e-06 -0.000147387 -1.21729e-05 -0.000145332 -1.83273e-05 -0.000142603 -2.44493e-05 -0.000139211 -3.04086e-05 -0.000135158 -3.63359e-05 -0.000130485 -4.2062e-05 -0.00012517 -4.77496e-05 -0.000119237 -5.33506e-05 -0.000112683 -5.88518e-05 -0.000105528 -6.42902e-05 -9.77714e-05 -6.96145e-05 -8.94303e-05 -7.48244e-05 -8.05524e-05 -7.98491e-05 -7.11198e-05 -8.47385e-05 -6.11668e-05 -8.93373e-05 -5.07199e-05 -9.37001e-05 -3.98192e-05 -9.77349e-05 -2.85079e-05 -0.000101379 -1.68339e-05 -0.000104558 -4.86208e-06 -0.000107196 7.34232e-06 -0.000109125 1.96953e-05 -0.000110416 3.21199e-05 -0.000110877 4.44614e-05 -0.000110398 5.66712e-05 -0.000108962 6.86162e-05 -0.000106537 8.01981e-05 -0.000103061 9.12246e-05 -9.84407e-05 0.000101639 -9.26881e-05 0.000111285 -8.58338e-05 0.000120068 -7.79054e-05 0.000127796 -6.89409e-05 0.000134434 -5.89207e-05 0.000139853 -4.80908e-05 0.000143975 -3.65673e-05 0.000146734 -2.44746e-05 0.000148074 -1.18966e-05 0.000147979 8.72084e-07 0.00014646 1.36591e-05 0.000143484 2.63209e-05 0.000139136 3.87195e-05 0.000133481 5.05409e-05 0.000126514 6.17772e-05 0.000118405 7.21555e-05 0.000109256 8.15209e-05 9.91312e-05 8.99218e-05 8.82255e-05 9.70361e-05 7.66709e-05 0.000102862 6.45934e-05 0.000107488 5.21651e-05 0.000110702 3.95278e-05 0.00011257 2.68267e-05 0.000113266 1.41938e-05 0.00011268 1.76092e-06 0.000110981 -1.03629e-05 0.000108378 -2.20813e-05 0.000104793 -3.33077e-05 0.000100395 -4.3965e-05 9.5514e-05 -5.40036e-05 8.99928e-05 -6.33823e-05 8.40299e-05 -7.20533e-05 7.79063e-05 -7.99964e-05 7.13922e-05 -8.7208e-05 6.47806e-05 -9.36619e-05 5.82676e-05 -9.93968e-05 5.15223e-05 -0.000104375 4.4789e-05 -0.000108625 3.8427e-05 -0.000112173 3.20043e-05 -0.000114985 2.53825e-05 -0.000117113 1.93959e-05 -0.00011859 1.33416e-05 -0.000119399 7.37357e-06 -0.000119571 1.77556e-06 -0.000119115 -4.0806e-06 -0.000118038 -9.4336e-06 -0.00011639 -1.48599e-05 -0.000114126 -2.02518e-05 -0.000111312 -2.52125e-05 -0.000107914 -3.04675e-05 -0.000103959 -3.53433e-05 -9.95008e-05 -4.00646e-05 -9.45165e-05 -4.47998e-05 -8.90023e-05 -4.94206e-05 -8.3029e-05 -5.36019e-05 -7.65631e-05 -5.80076e-05 -6.96482e-05 -6.18941e-05 -6.23545e-05 -6.55112e-05 -5.46759e-05 -6.89484e-05 -4.66148e-05 -7.21987e-05 -3.82433e-05 -7.50875e-05 -2.95696e-05 -7.75928e-05 -2.06849e-05 -7.95671e-05 -1.16238e-05 -8.10758e-05 -2.39224e-06 -8.26096e-05 6.87536e-06 -8.29712e-05 1.61655e-05 -8.30787e-05 2.5433e-05 -8.2736e-05 3.45477e-05 -8.14859e-05 4.34559e-05 -7.96131e-05 5.20832e-05 -7.7033e-05 6.03782e-05 -7.40078e-05 6.82779e-05 -7.05017e-05 7.56502e-05 -6.58577e-05 8.24801e-05 -6.10559e-05 8.87044e-05 -5.5637e-05 9.42626e-05 -4.9625e-05 9.91301e-05 -4.34955e-05 0.000103262 -3.67951e-05 0.000106598 -3.0041e-05 0.000109176 -2.30664e-05 0.00011093 -1.58849e-05 0.000111922 -9.04212e-06 0.000112103 -1.80059e-06 0.000111475 5.33737e-06 0.000110111 1.20799e-05 0.000108011 1.84273e-05 0.000105262 2.42883e-05 0.000101945 2.96399e-05 9.80304e-05 3.45569e-05 9.36451e-05 3.88582e-05 8.88669e-05 4.25965e-05 8.37536e-05 4.56885e-05 7.82999e-05 4.83013e-05 7.26643e-05 5.01834e-05 6.693e-05 5.12657e-05 6.10936e-05 5.19134e-05 5.52337e-05 5.22218e-05 4.94251e-05 5.19334e-05 4.37042e-05 5.10754e-05 3.81382e-05 4.99861e-05 3.27169e-05 4.82115e-05 2.7567e-05 4.63009e-05 2.26548e-05 4.39006e-05 1.80095e-05 4.14563e-05 1.37235e-05 3.87811e-05 9.7107e-06 3.57952e-05 6.02678e-06 3.29565e-05 2.76366e-06 2.98378e-05 -2.52487e-07 2.67615e-05 -2.90664e-06 2.39113e-05 -5.23231e-06 2.1006e-05 -7.23693e-06 1.81504e-05 -8.9408e-06 1.5458e-05 -1.03438e-05 1.27691e-05 -1.14728e-05 1.02737e-05 7.80068e-06 -0.000112357 -8.10287e-05 -0.000103055 -9.29121e-05 -9.27405e-05 -0.000102706 -8.14442e-05 -0.000112323 -6.90233e-05 -0.000123555 -5.57033e-05 -0.00013195 -4.14658e-05 -0.000141161 -2.65748e-05 -0.000147413 -1.12439e-05 -0.000151938 4.4594e-06 -0.000155261 2.04257e-05 -0.000157757 3.63016e-05 -0.000156889 5.21568e-05 -0.00015664 6.77729e-05 -0.000154133 8.2982e-05 -0.000150234 9.7589e-05 -0.000144329 0.00011135 -0.000135932 0.000124154 -0.000126543 0.000135846 -0.000115576 0.000146328 -0.000103582 0.000155545 -9.09396e-05 0.0001633 -7.67074e-05 0.000169588 -6.24187e-05 0.000174342 -4.70159e-05 0.00017754 -3.16522e-05 0.000179132 -1.57606e-05 0.000179201 -8.02285e-07 0.000177737 1.50474e-05 0.000174657 3.02532e-05 0.000169964 4.64716e-05 0.000163605 6.27542e-05 0.000155816 7.71378e-05 0.000146481 9.19356e-05 0.000135905 0.000104487 0.00012407 0.000117295 0.000111017 0.000128718 9.71008e-05 0.00013667 8.25189e-05 0.000144125 6.72152e-05 0.000150193 5.17667e-05 0.000152332 3.62295e-05 0.000154357 2.06312e-05 0.000153091 5.45392e-06 0.000150751 -9.51672e-06 0.000147606 -2.38945e-05 0.000142413 -3.76302e-05 0.00013634 -5.0629e-05 0.00012924 -6.28284e-05 0.000121465 -7.42066e-05 0.000113459 -8.47251e-05 0.000105044 -9.43763e-05 9.64782e-05 -0.000103184 8.80706e-05 -0.000111136 7.96716e-05 -0.00011828 7.1542e-05 -0.000124593 6.32528e-05 -0.000130099 5.51572e-05 -0.000134879 4.78351e-05 -0.000138832 3.95819e-05 -0.000141993 3.15989e-05 -0.000144412 2.42053e-05 -0.000145995 1.59056e-05 -0.000146875 8.94694e-06 -0.000146913 7.6272e-07 -0.00014613 -7.5468e-06 -0.000144604 -1.52909e-05 -0.00014233 -2.20415e-05 -0.000139333 -2.98768e-05 -0.000135653 -3.62017e-05 -0.00013135 -4.27849e-05 -0.000126448 -4.87152e-05 -0.000120998 -5.39964e-05 -0.000115051 -5.96481e-05 -0.000108494 -6.50998e-05 -0.000101535 -6.92834e-05 -9.40599e-05 -7.48433e-05 -8.61653e-05 -7.92735e-05 -7.76671e-05 -8.46295e-05 -6.87638e-05 -8.98524e-05 -5.93047e-05 -9.40094e-05 -4.93709e-05 -9.99117e-05 -3.88874e-05 -0.000104349 -2.80175e-05 -0.000109091 -1.65339e-05 -0.000114189 -4.77379e-06 -0.000117992 7.54503e-06 -0.000121818 2.01541e-05 -0.000125199 3.29086e-05 -0.000126723 4.58639e-05 -0.000128352 5.88976e-05 -0.000128891 7.17079e-05 -0.00012706 8.44168e-05 -0.000124937 9.66634e-05 -0.000120573 0.000108306 -0.000114595 0.000119182 -0.000106803 0.000129117 -9.72388e-05 0.000137896 -8.59891e-05 0.000145359 -7.29917e-05 0.000151346 -5.82895e-05 0.000155704 -4.24036e-05 0.00015831 -2.53027e-05 0.000159111 -7.42415e-06 0.000158045 1.06921e-05 0.000155103 2.88742e-05 0.000150367 4.66039e-05 0.000143866 6.37313e-05 0.000135743 7.98528e-05 0.000126119 9.44594e-05 0.000115157 0.000107484 0.000103057 0.000118733 9.00276e-05 0.00012797 7.63148e-05 0.000135053 6.20669e-05 0.000140019 4.75532e-05 0.000142753 3.29756e-05 0.000143571 1.85449e-05 0.000142562 4.40367e-06 0.0001398 -9.30004e-06 0.00013581 -2.24364e-05 0.000130465 -3.4905e-05 0.000124459 -4.67761e-05 0.000117706 -5.78597e-05 0.00011059 -6.81747e-05 0.000103292 -7.77718e-05 9.57587e-05 -8.66037e-05 8.84518e-05 -9.47011e-05 8.12517e-05 -0.000102091 7.41437e-05 -0.000108796 6.739e-05 -0.00011484 6.0908e-05 -0.000120288 5.46703e-05 -0.000125129 4.87034e-05 -0.000129419 4.30556e-05 -0.000133152 3.75204e-05 -0.000136356 3.21772e-05 -0.000139046 2.68727e-05 -0.000141206 2.14957e-05 -0.000142838 1.62475e-05 -0.000143929 1.07485e-05 -0.000144469 5.06935e-06 -0.000144419 -7.93776e-07 -0.000143746 -7.10833e-06 -0.000142413 -1.36711e-05 -0.000140393 -2.06397e-05 -0.000137638 -2.79443e-05 -0.000134096 -3.5691e-05 -0.000129761 -4.37589e-05 -0.000124559 -5.21602e-05 -0.000118513 -6.07103e-05 -0.000111564 -6.95194e-05 -0.000103723 -7.82994e-05 -9.49907e-05 -8.70463e-05 -8.53962e-05 -9.55955e-05 -7.49506e-05 -0.000103863 -6.37323e-05 -0.000111631 -5.17662e-05 -0.000118825 -3.91344e-05 -0.000125214 -2.59343e-05 -0.000130732 -1.22702e-05 -0.000135261 1.73624e-06 -0.000138425 1.59393e-05 -0.000140298 3.01753e-05 -0.000140598 4.42908e-05 -0.000139313 5.81317e-05 -0.000136406 7.14838e-05 -0.000131866 8.4224e-05 -0.000125679 9.61867e-05 -0.000118038 0.000107242 -0.000108997 0.000117223 -9.87063e-05 0.000126056 -8.7259e-05 0.000133642 -7.49341e-05 0.000139909 -6.18892e-05 0.000144762 -4.82239e-05 0.000148209 -3.40911e-05 0.000150194 -1.97499e-05 0.000150715 -5.32527e-06 0.000149782 9.12011e-06 0.000147406 2.33381e-05 0.00014364 3.72398e-05 0.000138508 5.07654e-05 0.000132063 6.36726e-05 0.000124378 7.60234e-05 0.000115528 8.75031e-05 0.000105594 9.81008e-05 9.47024e-05 0.000107708 8.29616e-05 0.000116078 7.048e-05 0.000123277 5.74147e-05 0.000129113 4.38968e-05 0.000133521 3.00805e-05 0.000136623 1.61059e-05 0.000138174 2.10894e-06 0.000138348 -1.17437e-05 0.000137174 -2.53266e-05 0.000134625 -3.856e-05 0.000131036 -5.12888e-05 0.000126259 -6.34421e-05 0.000120575 -7.49281e-05 0.000114175 -8.56875e-05 0.000106992 -9.56742e-05 9.93196e-05 -0.000104824 9.12854e-05 -0.000113116 8.29026e-05 -0.000120577 7.44325e-05 -0.000127171 6.58357e-05 -0.000132882 5.71507e-05 -0.000137737 4.86311e-05 -0.000141733 4.01901e-05 -0.000144901 3.19018e-05 -0.00014724 2.37807e-05 -0.000148833 1.59357e-05 -0.000149634 8.31239e-06 -0.000149694 8.52506e-07 -0.000149015 -6.42005e-06 -0.000147659 -1.3529e-05 -0.000145598 -2.03882e-05 -0.000142864 -2.71831e-05 -0.000139465 -3.38077e-05 -0.000135419 -4.03827e-05 -0.000130734 -4.67462e-05 -0.000125416 -5.30674e-05 -0.000119478 -5.92888e-05 -0.000112922 -6.54084e-05 -0.000105762 -7.14501e-05 -9.80026e-05 -7.73738e-05 -8.96517e-05 -8.31753e-05 -8.07687e-05 -8.87321e-05 -7.13263e-05 -9.4181e-05 -6.13624e-05 -9.93012e-05 -5.09017e-05 -0.000104161 -3.99854e-05 -0.000108651 -2.86552e-05 -0.00011271 -1.69594e-05 -0.000116254 -4.96519e-06 -0.00011919 7.27209e-06 -0.000121363 1.96728e-05 -0.000122817 3.2102e-05 -0.000123307 4.44963e-05 -0.000122793 5.67463e-05 -0.000121212 6.87372e-05 -0.000118528 8.03446e-05 -0.000114669 9.14303e-05 -0.000109527 0.000101889 -0.000103147 0.00011158 -9.55248e-05 0.000120405 -8.67305e-05 0.000128172 -7.6708e-05 0.000134844 -6.55926e-05 0.000140294 -5.3541e-05 0.000144443 -4.07168e-05 0.000147207 -2.72381e-05 0.00014856 -1.32496e-05 0.000148467 9.64751e-07 0.000146952 1.51739e-05 0.000143958 2.93145e-05 0.00013959 4.30873e-05 0.000133894 5.62375e-05 0.00012691 6.87604e-05 0.000118763 8.03025e-05 0.000109555 9.07296e-05 9.94013e-05 0.000100075 8.84462e-05 0.000107991 7.6833e-05 0.000114476 6.47096e-05 0.000119611 5.22316e-05 0.00012318 3.95409e-05 0.00012526 2.67945e-05 0.000126012 1.41203e-05 0.000125354 1.64351e-06 0.000123458 -1.05126e-05 0.000120534 -2.22577e-05 0.000116538 -3.35139e-05 0.000111651 -4.41901e-05 0.00010619 -5.424e-05 0.000100043 -6.36361e-05 9.34259e-05 -7.23145e-05 8.65848e-05 -8.02569e-05 7.93346e-05 -8.74774e-05 7.20011e-05 -9.39316e-05 6.47218e-05 -9.9658e-05 5.72486e-05 -0.00010464 4.97714e-05 -0.000108883 4.26695e-05 -0.000112425 3.55461e-05 -0.000115237 2.81945e-05 -0.000117366 2.15252e-05 -0.000118826 1.48017e-05 -0.000119635 8.1826e-06 -0.000119796 1.93641e-06 -0.000119337 -4.5395e-06 -0.000118253 -1.05177e-05 -0.000116605 -1.65081e-05 -0.000114335 -2.25221e-05 -0.00011152 -2.80273e-05 -0.000108114 -3.38733e-05 -0.000104146 -3.9311e-05 -9.96891e-05 -4.45217e-05 -9.46988e-05 -4.97901e-05 -8.91774e-05 -5.49421e-05 -8.31922e-05 -5.95871e-05 -7.67202e-05 -6.44795e-05 -6.97933e-05 -6.88211e-05 -6.24949e-05 -7.28095e-05 -5.47985e-05 -7.66449e-05 -4.67286e-05 -8.02686e-05 -3.83407e-05 -8.34755e-05 -2.96553e-05 -8.62782e-05 -2.07527e-05 -8.84697e-05 -1.16719e-05 -9.01566e-05 -2.41937e-06 -9.18622e-05 6.86592e-06 -9.22565e-05 1.61849e-05 -9.23977e-05 2.54757e-05 -9.20269e-05 3.46184e-05 -9.06286e-05 4.35524e-05 -8.85471e-05 5.22072e-05 -8.56878e-05 6.05353e-05 -8.23359e-05 6.84491e-05 -7.84155e-05 7.58454e-05 -7.32541e-05 8.26925e-05 -6.7903e-05 8.89357e-05 -6.18803e-05 9.45135e-05 -5.52028e-05 9.93945e-05 -4.83765e-05 0.000103531 -4.09314e-05 0.000106872 -3.3382e-05 0.000109456 -2.56507e-05 0.000111201 -1.76299e-05 0.000112196 -1.00374e-05 0.000112383 -1.9873e-06 0.000111727 5.99318e-06 0.000110352 1.34548e-05 0.00010823 2.05499e-05 0.000105475 2.7043e-05 0.00010213 3.29844e-05 9.8198e-05 3.84894e-05 9.37877e-05 4.32685e-05 8.90022e-05 4.73821e-05 8.38507e-05 5.08399e-05 7.83737e-05 5.37783e-05 7.27196e-05 5.58375e-05 6.69581e-05 5.70273e-05 6.1102e-05 5.77694e-05 5.52193e-05 5.81045e-05 4.94098e-05 5.77429e-05 4.36482e-05 5.68369e-05 3.80752e-05 5.55591e-05 3.26422e-05 5.36444e-05 2.74941e-05 5.1449e-05 2.2558e-05 4.88366e-05 1.79076e-05 4.61068e-05 1.3614e-05 4.30747e-05 9.57793e-06 3.98313e-05 5.91648e-06 3.66179e-05 2.63766e-06 3.31167e-05 -3.72911e-07 2.9772e-05 -3.02537e-06 2.65637e-05 -5.34731e-06 2.33279e-05 -7.34727e-06 2.01504e-05 -9.04545e-06 1.71561e-05 -1.04426e-05 1.41663e-05 -1.15657e-05 1.13968e-05 8.64649e-06 -0.000112754 -8.9121e-05 -0.000103449 -0.000102217 -9.31193e-05 -0.000113035 -8.18008e-05 -0.000123642 -6.93571e-05 -0.000135999 -5.59917e-05 -0.000145316 -4.17112e-05 -0.000155441 -2.67682e-05 -0.000162356 -1.14067e-05 -0.0001673 4.37093e-06 -0.000171038 2.0399e-05 -0.000173785 3.63389e-05 -0.000172829 5.22581e-05 -0.00017256 6.79398e-05 -0.000169815 8.32209e-05 -0.000165515 9.78883e-05 -0.000158997 0.000111711 -0.000149755 0.000124567 -0.0001394 0.000136302 -0.000127311 0.000146827 -0.000114107 0.000156072 -0.000100184 0.000163857 -8.44927e-05 0.000170171 -6.87335e-05 0.000174941 -5.1786e-05 0.000178154 -3.48645e-05 0.000179747 -1.73541e-05 0.000179824 -8.79744e-07 0.000178359 1.65125e-05 0.000175289 3.33232e-05 0.000170623 5.11377e-05 0.000164197 6.91804e-05 0.000156382 8.49528e-05 0.000146994 0.000101323 0.000136359 0.000115122 0.000124505 0.000129148 0.000111449 0.000141774 9.73808e-05 0.000150738 8.27498e-05 0.000158756 6.73441e-05 0.000165599 5.1815e-05 0.000167861 3.62011e-05 0.000169971 2.05332e-05 0.000168759 5.33419e-06 0.00016595 -9.72167e-06 0.000162662 -2.41428e-05 0.000156834 -3.79122e-05 0.000150109 -5.09359e-05 0.000142264 -6.31523e-05 0.000133681 -7.45406e-05 0.000124847 -8.50628e-05 0.000115566 -9.4714e-05 0.000106129 -0.000103518 9.68747e-05 -0.000111465 8.76188e-05 -0.000118605 7.86819e-05 -0.000124915 6.95621e-05 -0.000130417 6.06593e-05 -0.000135195 5.26138e-05 -0.000139149 4.35352e-05 -0.000142309 3.47597e-05 -0.000144729 2.66244e-05 -0.000146313 1.74901e-05 -0.00014719 9.82365e-06 -0.000147217 7.90165e-07 -0.000146427 -8.33744e-06 -0.000144889 -1.68283e-05 -0.000142604 -2.43271e-05 -0.000139601 -3.2879e-05 -0.000135903 -3.99004e-05 -0.000131599 -4.70884e-05 -0.000126677 -5.36377e-05 -0.000121207 -5.94665e-05 -0.000115271 -6.55842e-05 -0.000108706 -7.16645e-05 -0.000101729 -7.62607e-05 -9.42584e-05 -8.23137e-05 -8.63709e-05 -8.71611e-05 -7.7863e-05 -9.31375e-05 -6.89725e-05 -9.87429e-05 -5.95047e-05 -0.000103477 -4.9582e-05 -0.000109835 -3.90947e-05 -0.000114837 -2.82217e-05 -0.000119964 -1.67251e-05 -0.000125685 -4.96554e-06 -0.000129752 7.38359e-06 -0.000134167 2.00147e-05 -0.00013783 3.27965e-05 -0.000139505 4.58038e-05 -0.000141359 5.88835e-05 -0.000141971 7.17958e-05 -0.000139972 8.45166e-05 -0.000137658 9.68237e-05 -0.00013288 0.000108537 -0.000126309 0.000119483 -0.000117748 0.000129508 -0.000107265 0.000138342 -9.48227e-05 0.000145863 -8.05127e-05 0.000151903 -6.43305e-05 0.000156301 -4.68015e-05 0.000158942 -2.79432e-05 0.000159751 -8.23368e-06 0.00015869 1.17538e-05 0.000155741 3.18224e-05 0.000150969 5.13761e-05 0.000144427 7.0273e-05 0.00013625 8.803e-05 0.000126552 0.000104158 0.000115528 0.000118508 0.000103348 0.000130914 9.02336e-05 0.000141084 7.64331e-05 0.000148854 6.21397e-05 0.000154312 4.75254e-05 0.000157367 3.28667e-05 0.000158229 1.83682e-05 0.000157061 4.18158e-06 0.000153987 -9.56637e-06 0.000149558 -2.2743e-05 0.000143642 -3.52736e-05 0.000136989 -4.7124e-05 0.000129556 -5.82148e-05 0.000121681 -6.85528e-05 0.00011363 -7.81397e-05 0.000105346 -8.69577e-05 9.72698e-05 -9.50504e-05 8.93445e-05 -0.000102413 8.15067e-05 -0.000109119 7.40952e-05 -0.000115146 6.69358e-05 -0.000120588 6.01125e-05 -0.000125421 5.35358e-05 -0.0001297 4.73349e-05 -0.000133433 4.12536e-05 -0.000136621 3.53651e-05 -0.000139321 2.9572e-05 -0.000141482 2.36573e-05 -0.000143116 1.78815e-05 -0.000144225 1.18574e-05 -0.000144768 5.61272e-06 -0.00014473 -8.32256e-07 -0.000144063 -7.77502e-06 -0.000142749 -1.49853e-05 -0.000140735 -2.26539e-05 -0.000137987 -3.0692e-05 -0.000134473 -3.92053e-05 -0.000130152 -4.80801e-05 -0.00012497 -5.73416e-05 -0.000118918 -6.67627e-05 -0.000111971 -7.64658e-05 -0.000104115 -8.61561e-05 -9.53874e-05 -9.57738e-05 -8.57704e-05 -0.000105213 -7.532e-05 -0.000114314 -6.40715e-05 -0.000122879 -5.20663e-05 -0.00013083 -3.94051e-05 -0.000137875 -2.61628e-05 -0.000143974 -1.24475e-05 -0.000148977 1.61533e-06 -0.000152488 1.58742e-05 -0.000154557 3.01776e-05 -0.000154901 4.43613e-05 -0.000153497 5.8256e-05 -0.0001503 7.16792e-05 -0.00014529 8.44808e-05 -0.000138481 9.65014e-05 -0.000130059 0.000107597 -0.000120093 0.000117629 -0.000108739 0.000126501 -9.61309e-05 0.000134113 -8.25466e-05 0.000140396 -6.81722e-05 0.000145277 -5.31046e-05 0.000148731 -3.75447e-05 0.000150713 -2.17322e-05 0.000151241 -5.85363e-06 0.000150304 1.0057e-05 0.000147937 2.57052e-05 0.000144138 4.10388e-05 0.000138984 5.59194e-05 0.00013251 7.01467e-05 0.000124796 8.37376e-05 0.000115923 9.63758e-05 0.000105939 0.000108085 9.5e-05 0.000118647 8.3211e-05 0.000127867 7.06763e-05 0.000135812 5.7557e-05 0.000142233 4.39818e-05 0.000147097 3.01105e-05 0.000150494 1.60884e-05 0.000152196 2.03391e-06 0.000152403 -1.18752e-05 0.000151083 -2.55182e-05 0.000148268 -3.87801e-05 0.000144298 -5.15438e-05 0.000139023 -6.37299e-05 0.000132761 -7.52303e-05 0.000125676 -8.60109e-05 0.000117773 -9.60205e-05 0.000109329 -0.000105183 0.000100448 -0.0001135 9.1219e-05 -0.000120961 8.18939e-05 -0.000127541 7.24161e-05 -0.000133254 6.28635e-05 -0.000138099 5.34764e-05 -0.000142089 4.41798e-05 -0.000145247 3.50594e-05 -0.000147596 2.61298e-05 -0.000149166 1.7506e-05 -0.000149959 9.10505e-06 -0.000150008 9.01913e-07 -0.000149314 -7.11396e-06 -0.000147961 -1.4882e-05 -0.000145895 -2.24547e-05 -0.000143156 -2.99222e-05 -0.000139744 -3.72196e-05 -0.000135701 -4.44256e-05 -0.000131011 -5.14364e-05 -0.00012569 -5.83884e-05 -0.000119747 -6.52312e-05 -0.000113188 -7.19682e-05 -0.000106021 -7.86171e-05 -9.82417e-05 -8.51527e-05 -8.99133e-05 -9.15037e-05 -8.09877e-05 -9.76578e-05 -7.15562e-05 -0.000103613 -6.15802e-05 -0.000109277 -5.11044e-05 -0.000114637 -4.0172e-05 -0.000119584 -2.88192e-05 -0.000124063 -1.70997e-05 -0.000127973 -5.07685e-06 -0.000131213 7.20589e-06 -0.000133645 1.96201e-05 -0.000135231 3.20954e-05 -0.000135782 4.45348e-05 -0.000135232 5.68307e-05 -0.000133508 6.88728e-05 -0.00013057 8.052e-05 -0.000126316 9.16598e-05 -0.000120666 0.000102168 -0.000113656 0.000111911 -0.000105268 0.000120761 -9.55799e-05 0.000128587 -8.45347e-05 0.000135298 -7.23029e-05 0.000140795 -5.90384e-05 0.000144974 -4.48963e-05 0.000147739 -3.00031e-05 0.000149103 -1.46134e-05 0.000149013 1.05508e-06 0.000147473 1.67134e-05 0.000144483 3.23044e-05 0.000140096 4.74746e-05 0.000134362 6.19707e-05 0.000127355 7.57681e-05 0.000119164 8.84932e-05 0.000109904 9.99896e-05 9.97198e-05 0.000110259 8.86942e-05 0.000119017 7.70182e-05 0.000126151 6.48393e-05 0.00013179 5.23094e-05 0.00013571 3.95694e-05 0.000138 2.67583e-05 0.000138823 1.40445e-05 0.000138068 1.51389e-06 0.000135989 -1.06795e-05 0.000132727 -2.24395e-05 0.000128298 -3.37421e-05 0.000122954 -4.44409e-05 0.000116889 -5.44824e-05 0.000110084 -6.39168e-05 0.00010286 -7.26051e-05 9.52731e-05 -8.05327e-05 8.72621e-05 -8.77762e-05 7.92446e-05 -9.42305e-05 7.11761e-05 -9.99421e-05 6.29601e-05 -0.000104935 5.47643e-05 -0.000109168 4.69026e-05 -0.000112703 3.90805e-05 -0.000115517 3.10086e-05 -0.000117645 2.36533e-05 -0.000119088 1.62453e-05 -0.000119897 8.991e-06 -0.000120046 2.08589e-06 -0.000119583 -5.00303e-06 -0.000118492 -1.16087e-05 -0.000116842 -1.81575e-05 -0.000114566 -2.47984e-05 -0.00011175 -3.08439e-05 -0.000108336 -3.72866e-05 -0.000104358 -4.32891e-05 -9.99018e-05 -4.8978e-05 -9.49014e-05 -5.47905e-05 -8.93701e-05 -6.04734e-05 -8.33715e-05 -6.55858e-05 -7.68938e-05 -7.09572e-05 -6.99605e-05 -7.57544e-05 -6.26567e-05 -8.01133e-05 -5.49288e-05 -8.43728e-05 -4.68535e-05 -8.83439e-05 -3.84502e-05 -9.18788e-05 -2.97517e-05 -9.49768e-05 -2.08282e-05 -9.73931e-05 -1.17267e-05 -9.92582e-05 -2.45008e-06 -0.000101139 6.85779e-06 -0.000101564 1.62075e-05 -0.000101747 2.55231e-05 -0.000101343 3.46943e-05 -9.97998e-05 4.36606e-05 -9.75135e-05 5.2347e-05 -9.43742e-05 6.06989e-05 -9.06879e-05 6.86395e-05 -8.63562e-05 7.60624e-05 -8.0677e-05 8.29252e-05 -7.47658e-05 8.9195e-05 -6.81502e-05 9.47952e-05 -6.08031e-05 9.96934e-05 -5.32747e-05 0.000103831 -4.50695e-05 0.000107177 -3.67273e-05 0.000109764 -2.82375e-05 0.000111508 -1.93747e-05 0.000112503 -1.10317e-05 0.000112678 -2.16287e-06 0.000112011 6.65988e-06 0.000110622 1.48444e-05 0.00010848 2.26912e-05 0.000105718 2.9805e-05 0.000102338 3.63644e-05 9.83846e-05 4.24431e-05 9.39513e-05 4.77017e-05 8.91548e-05 5.21786e-05 8.39599e-05 5.60347e-05 7.84558e-05 5.92824e-05 7.27851e-05 6.15082e-05 6.69894e-05 6.28229e-05 6.11103e-05 6.36485e-05 5.52096e-05 6.40053e-05 4.93818e-05 6.35707e-05 4.35942e-05 6.26245e-05 3.80051e-05 6.11482e-05 3.25633e-05 5.90862e-05 2.73946e-05 5.66177e-05 2.24386e-05 5.37927e-05 1.77994e-05 5.07459e-05 1.34861e-05 4.7388e-05 9.43985e-06 4.38776e-05 5.8086e-06 4.02492e-05 2.49988e-06 3.64254e-05 -5.07351e-07 3.27793e-05 -3.15759e-06 2.9214e-05 -5.47525e-06 2.56456e-05 -7.47012e-06 2.21452e-05 -9.16174e-06 1.88478e-05 -1.05525e-05 1.5557e-05 -1.16689e-05 1.25133e-05 9.48599e-06 -0.000113191 -9.72096e-05 -0.000103883 -0.000111525 -9.35376e-05 -0.000123381 -8.21949e-05 -0.000134984 -6.97267e-05 -0.000148467 -5.63104e-05 -0.000158732 -4.19821e-05 -0.00016977 -2.69814e-05 -0.000177357 -1.16025e-05 -0.000182679 4.2736e-06 -0.000186915 2.03695e-05 -0.000189881 3.638e-05 -0.00018884 5.23691e-05 -0.000188549 6.81234e-05 -0.00018557 8.34721e-05 -0.000180864 9.82187e-05 -0.000173743 0.00011211 -0.000163646 0.000125026 -0.000152316 0.000136808 -0.000139093 0.000147379 -0.000124678 0.000156651 -0.000109456 0.000164473 -9.23149e-05 0.000170814 -7.50752e-05 0.000175603 -5.65752e-05 0.000178829 -3.80909e-05 0.000180426 -1.89513e-05 0.00018051 -9.63339e-07 0.000179047 1.79752e-05 0.00017598 3.63899e-05 0.000171297 5.58206e-05 0.000164847 7.56308e-05 0.000157008 9.27919e-05 0.00014756 0.00011077 0.000136869 0.000125814 0.000124984 0.000141033 0.000111824 0.000154934 9.76836e-05 0.000164878 8.29697e-05 0.00017347 6.74941e-05 0.000181075 5.18683e-05 0.000183487 3.61751e-05 0.000185665 2.04213e-05 0.000184513 5.17316e-06 0.000181198 -9.95171e-06 0.000177787 -2.44174e-05 0.0001713 -3.82239e-05 0.000163916 -5.12747e-05 0.000155315 -6.35098e-05 0.000145916 -7.49089e-05 0.000136247 -8.5435e-05 0.000126092 -9.50859e-05 0.00011578 -0.000103886 0.000105675 -0.000111828 9.55611e-05 -0.000118963 8.5817e-05 -0.000125269 7.58673e-05 -0.000130766 6.61567e-05 -0.000135543 5.73909e-05 -0.000139497 4.74889e-05 -0.000142658 3.79209e-05 -0.000145078 2.9044e-05 -0.000146664 1.90758e-05 -0.000147537 1.06973e-05 -0.000147553 8.05631e-07 -0.000146753 -9.13735e-06 -0.000145204 -1.83766e-05 -0.000142905 -2.6627e-05 -0.000139898 -3.58851e-05 -0.000136179 -4.36198e-05 -0.000131856 -5.14115e-05 -0.00012693 -5.8564e-05 -0.000121436 -6.49602e-05 -0.000115496 -7.15247e-05 -0.00010895 -7.82105e-05 -0.000101942 -8.3268e-05 -9.44802e-05 -8.97759e-05 -8.65981e-05 -9.50432e-05 -7.80788e-05 -0.000101657 -6.92043e-05 -0.000107618 -5.97259e-05 -0.000112956 -4.98182e-05 -0.000119742 -3.93238e-05 -0.000125331 -2.84497e-05 -0.000130838 -1.69365e-05 -0.000137199 -5.18331e-06 -0.000141505 7.20618e-06 -0.000146556 1.98558e-05 -0.00015048 3.26728e-05 -0.000152322 4.5741e-05 -0.000154427 5.88631e-05 -0.000155094 7.18467e-05 -0.000152956 8.46246e-05 -0.000150436 9.7005e-05 -0.00014526 0.000108791 -0.000138094 0.000119815 -0.000128772 0.000129916 -0.000117366 0.00013884 -0.000103747 0.000146415 -8.80878e-05 0.000152522 -7.04379e-05 0.000156963 -5.12428e-05 0.000159639 -3.06189e-05 0.000160459 -9.05423e-06 0.000159398 1.28156e-05 0.000156475 3.47448e-05 0.000151634 5.62175e-05 0.000145047 7.68596e-05 0.000136831 9.62468e-05 0.000127042 0.000113946 0.000115939 0.000129611 0.000103673 0.00014318 9.04668e-05 0.00015429 7.65605e-05 0.00016276 6.2159e-05 0.000168714 4.747e-05 0.000172056 3.27463e-05 0.000172953 1.81716e-05 0.000171635 3.9246e-06 0.000168234 -9.85189e-06 0.000163335 -2.30897e-05 0.00015688 -3.56531e-05 0.000149553 -4.75008e-05 0.000141404 -5.86055e-05 0.000132786 -6.89503e-05 0.000123975 -7.85355e-05 0.000114931 -8.73452e-05 0.00010608 -9.54301e-05 9.74293e-05 -0.000102804 8.8881e-05 -0.000109475 8.07663e-05 -0.000115499 7.29598e-05 -0.000120919 6.55319e-05 -0.00012574 5.83567e-05 -0.00013 5.15946e-05 -0.000133741 4.49953e-05 -0.000136928 3.85515e-05 -0.00013962 3.22641e-05 -0.000141787 2.58246e-05 -0.000143419 1.95135e-05 -0.000144544 1.29824e-05 -0.000145094 6.16231e-06 -0.00014507 -8.55674e-07 -0.000144419 -8.42584e-06 -0.000143114 -1.62905e-05 -0.000141124 -2.46439e-05 -0.000138402 -3.34147e-05 -0.000134901 -4.27063e-05 -0.000130585 -5.23957e-05 -0.000125413 -6.25133e-05 -0.000119362 -7.28141e-05 -0.000112418 -8.34099e-05 -0.000104565 -9.40089e-05 -9.58231e-05 -0.000104516 -8.6159e-05 -0.000114877 -7.57197e-05 -0.000124753 -6.44424e-05 -0.000134157 -5.24125e-05 -0.00014286 -3.97031e-05 -0.000150585 -2.64132e-05 -0.000157264 -1.26438e-05 -0.000162746 1.48167e-06 -0.000166614 1.58115e-05 -0.000168887 3.01801e-05 -0.00016927 4.44389e-05 -0.000167756 5.84003e-05 -0.000164262 7.18955e-05 -0.000158785 8.47637e-05 -0.000151349 9.68484e-05 -0.000142144 0.000107999 -0.000131243 0.000118078 -0.000118818 0.000126992 -0.000105045 0.000134637 -9.01913e-05 0.000140942 -7.44775e-05 0.000145845 -5.80077e-05 0.00014931 -4.10095e-05 0.000151309 -2.37313e-05 0.000151825 -6.36971e-06 0.000150882 1.10003e-05 0.000148496 2.80907e-05 0.000144683 4.48521e-05 0.000139508 6.10943e-05 0.000133006 7.66486e-05 0.000125256 9.14872e-05 0.000116336 0.000105296 0.000106316 0.000118104 9.53276e-05 0.000129636 8.34754e-05 0.000139719 7.08923e-05 0.000148395 5.772e-05 0.000155405 4.40766e-05 0.00016074 3.01426e-05 0.000164428 1.60578e-05 0.000166281 1.95862e-06 0.000166502 -1.20193e-05 0.000165061 -2.57173e-05 0.000161966 -3.90204e-05 0.000157601 -5.18179e-05 0.000151821 -6.40457e-05 0.000144989 -7.55852e-05 0.000137215 -8.63702e-05 0.000128558 -9.64049e-05 0.000119364 -0.000105581 0.000109624 -0.000113908 9.95463e-05 -0.000121369 8.93555e-05 -0.000127946 7.89929e-05 -0.000133661 6.85786e-05 -0.0001385 5.8315e-05 -0.000142483 4.81633e-05 -0.000145627 3.8203e-05 -0.000147974 2.84764e-05 -0.00014953 1.90623e-05 -0.000150314 9.88913e-06 -0.000150351 9.38655e-07 -0.00014967 -7.79458e-06 -0.000148295 -1.6257e-05 -0.000146221 -2.45288e-05 -0.000143474 -3.26692e-05 -0.000140049 -4.06447e-05 -0.000136011 -4.84635e-05 -0.000131316 -5.61314e-05 -0.000125991 -6.37136e-05 -0.000120044 -7.11779e-05 -0.000113478 -7.85339e-05 -0.000106291 -8.58048e-05 -9.85328e-05 -9.29108e-05 -9.01892e-05 -9.98474e-05 -8.1268e-05 -0.000106579 -7.1809e-05 -0.000113072 -6.18197e-05 -0.000119267 -5.13275e-05 -0.000125129 -4.03767e-05 -0.000130535 -2.89999e-05 -0.000135439 -1.7254e-05 -0.000139719 -5.19448e-06 -0.000143273 7.12347e-06 -0.000145964 1.95664e-05 -0.000147674 3.20898e-05 -0.000148306 4.45774e-05 -0.00014772 5.69364e-05 -0.000145867 6.9016e-05 -0.00014265 8.07171e-05 -0.000138017 9.1913e-05 -0.000131862 0.000102476 -0.000124218 0.000112286 -0.000115078 0.000121171 -0.000104464 0.000129047 -9.24111e-05 0.000135799 -7.90549e-05 0.000141319 -6.45584e-05 0.000145528 -4.91052e-05 0.000148324 -3.28e-05 0.000149701 -1.59897e-05 0.000149615 1.14082e-06 0.000148064 1.82642e-05 0.000145062 3.53059e-05 0.000140655 5.1882e-05 0.000134885 6.77408e-05 0.000127844 8.28091e-05 0.000119611 9.67259e-05 0.000110289 0.000109312 0.00010003 0.000120518 8.89858e-05 0.000130061 7.72243e-05 0.000137913 6.49814e-05 0.000144033 5.24101e-05 0.000148281 3.95811e-05 0.000150829 2.67178e-05 0.000151686 1.39601e-05 0.000150826 1.37226e-06 0.000148577 -1.08636e-05 0.000144963 -2.26519e-05 0.000140086 -3.39921e-05 0.000134294 -4.47164e-05 0.000127613 -5.47893e-05 0.000120157 -6.42259e-05 0.000112297 -7.29238e-05 0.000103971 -8.0873e-05 9.52114e-05 -8.81057e-05 8.64773e-05 -9.45579e-05 7.76283e-05 -0.000100281 6.86829e-05 -0.00010526 5.9744e-05 -0.00010948 5.11226e-05 -0.000113018 4.26183e-05 -0.000115826 3.38164e-05 -0.000117949 2.5776e-05 -0.000119382 1.76782e-05 -0.000120184 9.79318e-06 -0.000120322 2.22437e-06 -0.000119852 -5.47291e-06 -0.000118755 -1.27062e-05 -0.000117102 -1.98099e-05 -0.000114821 -2.70795e-05 -0.000112002 -3.36636e-05 -0.00010858 -4.07085e-05 -0.000104605 -4.72635e-05 -0.000100134 -5.34494e-05 -9.51243e-05 -5.98003e-05 -8.95814e-05 -6.60162e-05 -8.35636e-05 -7.16036e-05 -7.708e-05 -7.74408e-05 -7.01447e-05 -8.26897e-05 -6.28263e-05 -8.74317e-05 -5.50786e-05 -9.21205e-05 -4.69883e-05 -9.64342e-05 -3.85721e-05 -0.000100295 -2.98578e-05 -0.000103691 -2.09113e-05 -0.00010634 -1.17857e-05 -0.000108384 -2.48423e-06 -0.00011044 6.84994e-06 -0.000110899 1.62361e-05 -0.000111134 2.55756e-05 -0.000110682 3.47761e-05 -0.000109 4.37813e-05 -0.000106519 5.25049e-05 -0.000103098 6.08794e-05 -9.90623e-05 6.88494e-05 -9.43263e-05 7.62968e-05 -8.81245e-05 8.31867e-05 -8.16557e-05 8.94827e-05 -7.44462e-05 9.5111e-05 -6.64314e-05 0.000100008 -5.81718e-05 0.000104163 -4.92244e-05 0.000107513 -4.00776e-05 0.000110099 -3.08235e-05 0.00011185 -2.11256e-05 0.000112845 -1.20264e-05 0.000113003 -2.32144e-06 0.000112328 7.33542e-06 0.00011092 1.62524e-05 0.000108761 2.48499e-05 0.000105988 3.25781e-05 0.000102568 3.97842e-05 9.85774e-05 4.64338e-05 9.4137e-05 5.21422e-05 8.92986e-05 5.7017e-05 8.40811e-05 6.12521e-05 7.85469e-05 6.48166e-05 7.28589e-05 6.71961e-05 6.70242e-05 6.86577e-05 6.11125e-05 6.95602e-05 5.52066e-05 6.99111e-05 4.93418e-05 6.94354e-05 4.35398e-05 6.84265e-05 3.79277e-05 6.67603e-05 3.24832e-05 6.45307e-05 2.72858e-05 6.18151e-05 2.23154e-05 5.87631e-05 1.76959e-05 5.53654e-05 1.33465e-05 5.17374e-05 9.29853e-06 4.79255e-05 5.68328e-06 4.38644e-05 2.34989e-06 3.97588e-05 -6.55765e-07 3.57849e-05 -3.30338e-06 3.18616e-05 -5.6162e-06 2.79584e-05 -7.60553e-06 2.41346e-05 -9.2897e-06 2.05319e-05 -1.06734e-05 1.69407e-05 -1.17825e-05 1.36224e-05 1.03185e-05 -0.00011367 -0.000105293 -0.00010436 -0.000120836 -9.39961e-05 -0.000133745 -8.26273e-05 -0.000146353 -7.01327e-05 -0.000160962 -5.66597e-05 -0.000172206 -4.22789e-05 -0.00018415 -2.72134e-05 -0.000192423 -1.17935e-05 -0.000198099 4.16847e-06 -0.000202877 2.03368e-05 -0.000206049 3.64252e-05 -0.000204928 5.249e-05 -0.000204614 6.83244e-05 -0.000201404 8.37515e-05 -0.000196292 9.85812e-05 -0.000188573 0.000112547 -0.000177612 0.00012553 -0.000165299 0.000137367 -0.00015093 0.000147984 -0.000135295 0.000157292 -0.000118764 0.000165149 -0.000100171 0.000171516 -8.14427e-05 0.000176327 -6.13865e-05 0.000179567 -4.13312e-05 0.000181171 -2.05549e-05 0.000181259 -1.05111e-06 0.000179801 1.9433e-05 0.000176731 3.94592e-05 0.000172039 6.05131e-05 0.000165558 8.21116e-05 0.000157696 0.000100654 0.000148182 0.000120284 0.000137431 0.000136565 0.000125511 0.000152953 0.000112242 0.000168203 9.80121e-05 0.000179108 8.31598e-05 0.000188322 6.7675e-05 0.000196559 5.19263e-05 0.000199236 3.61515e-05 0.000201439 2.02953e-05 0.000200369 4.89194e-06 0.000196601 -1.02077e-05 0.000192887 -2.47193e-05 0.000185812 -3.85656e-05 0.000177762 -5.16458e-05 0.000168395 -6.3901e-05 0.000158172 -7.53118e-05 0.000147657 -8.58419e-05 0.000136623 -9.54923e-05 0.000125431 -0.000104288 0.00011447 -0.000112224 0.000103497 -0.000119354 9.29467e-05 -0.000125655 8.21681e-05 -0.000131147 7.16493e-05 -0.000135923 6.21662e-05 -0.000139877 5.14437e-05 -0.000143039 4.10824e-05 -0.000145459 3.14647e-05 -0.000147048 2.06639e-05 -0.000147918 1.15678e-05 -0.00014792 8.07655e-07 -0.000147109 -9.9481e-06 -0.00014555 -1.99356e-05 -0.000143233 -2.89444e-05 -0.000140223 -3.88947e-05 -0.000136483 -4.73607e-05 -0.000132136 -5.57584e-05 -0.000127207 -6.34926e-05 -0.000121687 -7.04803e-05 -0.00011571 -7.75016e-05 -0.000109207 -8.47142e-05 -0.000102177 -9.02976e-05 -9.47283e-05 -9.72247e-05 -8.68474e-05 -0.000102924 -7.83147e-05 -0.00011019 -6.94592e-05 -0.000116473 -5.99691e-05 -0.000122446 -5.00808e-05 -0.000129631 -3.95761e-05 -0.000135836 -2.87044e-05 -0.00014171 -1.71708e-05 -0.000148732 -5.42805e-06 -0.000153248 7.0129e-06 -0.000158998 1.96763e-05 -0.000163143 3.25714e-05 -0.000165217 4.56729e-05 -0.000167529 5.88355e-05 -0.000168256 7.18914e-05 -0.000166012 8.47334e-05 -0.000163278 9.71943e-05 -0.000157721 0.000109058 -0.000149958 0.000120171 -0.000139886 0.000130348 -0.000127542 0.000139392 -0.000112791 0.000147029 -9.57246e-05 0.000153196 -7.66054e-05 0.000157693 -5.574e-05 0.000160403 -3.33284e-05 0.000161238 -9.88975e-06 0.000160174 1.38793e-05 0.000157205 3.77142e-05 0.000152358 6.10642e-05 0.000145724 8.34942e-05 0.000137421 0.000104549 0.000127577 0.00012379 0.000116395 0.000140794 0.000104029 0.000155545 9.07255e-05 0.000167594 7.67079e-05 0.000176778 6.21965e-05 0.000183225 4.74177e-05 0.000186835 3.26187e-05 0.000187752 1.79613e-05 0.000186293 3.64453e-06 0.000182551 -1.0151e-05 0.000177131 -2.3464e-05 0.000170193 -3.60603e-05 0.000162149 -4.79368e-05 0.00015328 -5.90174e-05 0.000143866 -6.9381e-05 0.000134339 -7.89685e-05 0.000124518 -8.77711e-05 0.000114882 -9.58422e-05 0.0001055 -0.000103211 9.62498e-05 -0.000109862 8.74178e-05 -0.000115845 7.89419e-05 -0.000121284 7.09716e-05 -0.000126092 6.31645e-05 -0.000130302 5.58043e-05 -0.000134076 4.87694e-05 -0.000137244 4.17198e-05 -0.000139909 3.49295e-05 -0.000142115 2.80302e-05 -0.000143761 2.11599e-05 -0.000144894 1.41155e-05 -0.000145432 6.69994e-06 -0.00014544 -8.474e-07 -0.000144818 -9.04808e-06 -0.000143522 -1.75871e-05 -0.000141552 -2.6614e-05 -0.000138839 -3.61274e-05 -0.000135359 -4.6186e-05 -0.000131054 -5.6701e-05 -0.000125895 -6.76722e-05 -0.000119842 -7.88672e-05 -0.000112907 -9.03445e-05 -0.00010505 -0.000101866 -9.62922e-05 -0.000113274 -8.66438e-05 -0.000124525 -7.61596e-05 -0.000135237 -6.48523e-05 -0.000145464 -5.27856e-05 -0.000154927 -4.00304e-05 -0.00016334 -2.66758e-05 -0.000170619 -1.28603e-05 -0.000176562 1.34265e-06 -0.000180817 1.57354e-05 -0.00018328 3.01825e-05 -0.000183717 4.45261e-05 -0.0001821 5.85603e-05 -0.000178296 7.21325e-05 -0.000172357 8.5073e-05 -0.00016429 9.72292e-05 -0.0001543 0.000108438 -0.000142452 0.000118569 -0.000128949 0.000127528 -0.000114005 0.000135217 -9.78807e-05 0.000141542 -8.08029e-05 0.000146466 -6.29315e-05 0.000149943 -4.44869e-05 0.000151958 -2.57463e-05 0.000152466 -6.8772e-06 0.000151513 1.19533e-05 0.000149107 3.04965e-05 0.000145277 4.8682e-05 0.000140091 6.62807e-05 0.000133554 8.31855e-05 0.00012576 9.92806e-05 0.000116781 0.000114276 0.000106727 0.000128157 9.56846e-05 0.000140679 8.37694e-05 0.000151634 7.11277e-05 0.000161036 5.79012e-05 0.000168632 4.4183e-05 0.000174458 3.01782e-05 0.000178433 1.60191e-05 0.00018044 1.84839e-06 0.000180673 -1.2177e-05 0.000179087 -2.59345e-05 0.000175723 -3.92841e-05 0.00017095 -5.21146e-05 0.000164651 -6.43889e-05 0.000157263 -7.59632e-05 0.000148789 -8.6792e-05 0.000139387 -9.68263e-05 0.000129398 -0.000106014 0.000118812 -0.000114351 0.000107883 -0.000121815 9.68195e-05 -0.000128378 8.55566e-05 -0.000134105 7.43053e-05 -0.000138937 6.31472e-05 -0.000142912 5.2138e-05 -0.000146031 4.13218e-05 -0.000148383 3.08288e-05 -0.000149929 2.06081e-05 -0.000150704 1.06638e-05 -0.000150724 9.58843e-07 -0.000150044 -8.47477e-06 -0.000148657 -1.76436e-05 -0.000146568 -2.66186e-05 -0.000143818 -3.54186e-05 -0.000140406 -4.40571e-05 -0.00013635 -5.25192e-05 -0.00013165 -6.0832e-05 -0.000126321 -6.90427e-05 -0.000120367 -7.71318e-05 -0.000113788 -8.51124e-05 -0.000106607 -9.29861e-05 -9.88443e-05 -0.000100673 -9.04894e-05 -0.000108202 -8.15636e-05 -0.000115505 -7.20855e-05 -0.00012255 -6.20812e-05 -0.000129271 -5.15716e-05 -0.000135639 -4.05996e-05 -0.000141507 -2.91972e-05 -0.000146842 -1.742e-05 -0.000151497 -5.31482e-06 -0.000155378 7.01049e-06 -0.000158289 1.95116e-05 -0.000160175 3.20828e-05 -0.000160877 4.46223e-05 -0.00016026 5.70227e-05 -0.000158268 6.91789e-05 -0.000154806 8.09321e-05 -0.000149771 9.21885e-05 -0.000143119 0.000102811 -0.000134841 0.000112687 -0.000124954 0.000121621 -0.000113399 0.00012955 -0.000100341 0.000136348 -8.58526e-05 0.000141914 -7.01246e-05 0.000146139 -5.33305e-05 0.000148965 -3.56256e-05 0.000150354 -1.73792e-05 0.000150279 1.21603e-06 0.000148712 1.98312e-05 0.000145695 3.83227e-05 0.000141287 5.62899e-05 0.000135459 7.35692e-05 0.000128367 8.99002e-05 0.00012011 0.000104983 0.000110713 0.000118709 0.00010039 0.000130841 8.92708e-05 0.00014118 7.74495e-05 0.000149734 6.51371e-05 0.000156345 5.24754e-05 0.000160943 3.95936e-05 0.000163711 2.66735e-05 0.000164607 1.38421e-05 0.000163657 1.21805e-06 0.000161201 -1.10648e-05 0.000157246 -2.29213e-05 0.000151943 -3.42671e-05 0.00014564 -4.50175e-05 0.000138364 -5.51315e-05 0.000130271 -6.45639e-05 0.000121729 -7.32718e-05 0.000112679 -8.12455e-05 0.000103185 -8.8466e-05 9.36978e-05 -9.49152e-05 8.40774e-05 -0.000100653 7.4421e-05 -0.000105616 6.47069e-05 -0.000109835 5.53416e-05 -0.00011337 4.61535e-05 -0.000116164 3.66101e-05 -0.000118278 2.789e-05 -0.000119707 1.91074e-05 -0.000120495 1.05806e-05 -0.000120624 2.35377e-06 -0.000120146 -5.95054e-06 -0.000119042 -1.38108e-05 -0.000117384 -2.14677e-05 -0.000115101 -2.93627e-05 -0.000112276 -3.64881e-05 -0.000108845 -4.41398e-05 -0.000104872 -5.12367e-05 -0.000100387 -5.79349e-05 -9.53673e-05 -6.48195e-05 -8.98112e-05 -7.15723e-05 -8.37734e-05 -7.76414e-05 -7.72873e-05 -8.39268e-05 -7.03505e-05 -8.96265e-05 -6.30127e-05 -9.47695e-05 -5.52448e-05 -9.98885e-05 -4.71413e-05 -0.000104538 -3.87062e-05 -0.00010873 -2.99733e-05 -0.000112424 -2.10025e-05 -0.00011531 -1.18514e-05 -0.000117535 -2.52315e-06 -0.000119769 6.84219e-06 -0.000120264 1.62621e-05 -0.000120553 2.56331e-05 -0.000120053 3.48691e-05 -0.000118236 4.3917e-05 -0.000115567 5.26662e-05 -0.000111847 6.10768e-05 -0.000107473 6.90789e-05 -0.000102328 7.65529e-05 -9.55985e-05 8.34754e-05 -8.85782e-05 8.98003e-05 -8.07712e-05 9.54516e-05 -7.20826e-05 0.000100353 -6.30735e-05 0.000104525 -5.33965e-05 0.000107874 -4.34258e-05 0.000110472 -3.34218e-05 0.000112228 -2.28816e-05 0.000113233 -1.30318e-05 0.000113361 -2.44908e-06 0.00011268 8.01591e-06 0.000111234 1.76986e-05 0.000109072 2.70122e-05 0.000106264 3.53856e-05 0.00010282 4.32283e-05 9.88004e-05 5.04533e-05 9.43561e-05 5.65864e-05 8.94565e-05 6.19166e-05 8.42034e-05 6.65053e-05 7.86521e-05 7.03679e-05 7.29264e-05 7.29218e-05 6.70624e-05 7.45217e-05 6.11258e-05 7.54967e-05 5.52162e-05 7.58208e-05 4.92985e-05 7.53531e-05 4.34885e-05 7.42366e-05 3.78318e-05 7.2417e-05 3.24007e-05 6.99617e-05 2.71678e-05 6.70481e-05 2.21899e-05 6.37409e-05 1.75578e-05 5.99975e-05 1.31796e-05 5.61156e-05 9.15289e-06 5.19522e-05 5.51553e-06 4.75018e-05 2.13985e-06 4.31344e-05 -8.18139e-07 3.87429e-05 -3.46286e-06 3.45063e-05 -5.77023e-06 3.02658e-05 -7.7536e-06 2.61179e-05 -9.42931e-06 2.22076e-05 -1.08053e-05 1.83166e-05 -1.19063e-05 1.47235e-05 1.11434e-05 -0.00011419 -0.000113372 -0.000104878 -0.000130148 -9.44953e-05 -0.000144128 -8.3099e-05 -0.00015775 -7.05764e-05 -0.000173485 -5.70402e-05 -0.000185742 -4.2602e-05 -0.000198589 -2.74639e-05 -0.000207561 -1.19628e-05 -0.0002136 4.05593e-06 -0.000218896 2.03009e-05 -0.000222294 3.64672e-05 -0.000221094 5.26208e-05 -0.000220768 6.85429e-05 -0.000217326 8.40581e-05 -0.000211807 9.89767e-05 -0.000203492 0.000113023 -0.000191658 0.000126078 -0.000178354 0.000137986 -0.000162838 0.000148642 -0.000145951 0.000157992 -0.000128115 0.000165885 -0.000108065 0.000172277 -8.78351e-05 0.000177114 -6.62232e-05 0.000180368 -4.45851e-05 0.000181981 -2.21679e-05 0.000182071 -1.14102e-06 0.00018062 2.08837e-05 0.000177538 4.25412e-05 0.000172848 6.5203e-05 0.00016633 8.8629e-05 0.000158448 0.000108536 0.000148859 0.000129873 0.000138042 0.000147382 0.00012598 0.000165015 0.000112702 0.000181481 9.83702e-05 0.00019344 8.34025e-05 0.000203289 6.79116e-05 0.00021205 5.19886e-05 0.000215159 3.61309e-05 0.000217297 2.01592e-05 0.000216341 4.6353e-06 0.000212125 -1.04868e-05 0.000208009 -2.50486e-05 0.000200373 -3.89378e-05 0.000191651 -5.20499e-05 0.000181507 -6.43264e-05 0.000170448 -7.57494e-05 0.00015908 -8.62837e-05 0.000147157 -9.59332e-05 0.00013508 -0.000104724 0.000123261 -0.000112653 0.000111426 -0.000119777 0.00010007 -0.000126073 8.84647e-05 -0.000131561 7.71366e-05 -0.000136333 6.69387e-05 -0.00014029 5.54e-05 -0.000143451 4.42439e-05 -0.000145874 3.38871e-05 -0.000147466 2.22561e-05 -0.000148333 1.24347e-05 -0.00014832 7.9484e-07 -0.000147497 -1.07715e-05 -0.000145927 -2.15052e-05 -0.000143589 -3.12824e-05 -0.000140577 -4.1907e-05 -0.000136816 -5.11209e-05 -0.000132439 -6.01356e-05 -0.00012751 -6.84222e-05 -0.00012196 -7.603e-05 -0.000115956 -8.35055e-05 -0.000109463 -9.12077e-05 -0.000102434 -9.73264e-05 -9.50087e-05 -0.00010465 -8.71201e-05 -0.000110813 -7.85729e-05 -0.000118737 -6.9739e-05 -0.000125307 -6.02355e-05 -0.00013195 -5.03712e-05 -0.000139495 -3.98508e-05 -0.000146357 -2.89856e-05 -0.000152575 -1.74277e-05 -0.00016029 -5.69863e-06 -0.000164977 6.80545e-06 -0.000171502 1.94773e-05 -0.000175815 3.24405e-05 -0.00017818 4.55943e-05 -0.000180683 5.87917e-05 -0.000181454 7.19298e-05 -0.00017915 8.48706e-05 -0.000176219 9.73973e-05 -0.000170248 0.000109348 -0.000161909 0.000120561 -0.000151098 0.00013082 -0.000137802 0.000139932 -0.000121904 0.000147694 -0.000103486 0.000153925 -8.2837e-05 0.000158483 -6.02978e-05 0.000161233 -3.60781e-05 0.000162088 -1.07454e-05 0.000161022 1.49455e-05 0.00015802 4.07159e-05 0.000153144 6.59405e-05 0.00014646 9.01778e-05 0.000138083 0.000112927 0.000128161 0.000133712 0.000116871 0.000152084 0.000104414 0.000168002 9.10431e-05 0.000180965 7.68672e-05 0.000190954 6.22485e-05 0.000197844 4.73612e-05 0.000201722 3.24753e-05 0.000202638 1.77352e-05 0.000201033 3.33783e-06 0.000196948 -1.05581e-05 0.000191027 -2.38725e-05 0.000183507 -3.64978e-05 0.000174775 -4.83979e-05 0.000165181 -5.95092e-05 0.000154978 -6.98586e-05 0.000144688 -7.94381e-05 0.000134098 -8.82326e-05 0.000123677 -9.62735e-05 0.000113541 -0.00010365 0.000103626 -0.000110286 9.4054e-05 -0.000116258 8.49138e-05 -0.000121677 7.6391e-05 -0.000126473 6.79599e-05 -0.000130714 6.00453e-05 -0.000134437 5.24929e-05 -0.000137627 4.491e-05 -0.0001403 3.76025e-05 -0.00014247 3.01996e-05 -0.000144126 2.28162e-05 -0.000145268 1.52576e-05 -0.000145837 7.2688e-06 -0.000145845 -8.39871e-07 -0.000145245 -9.64812e-06 -0.000143955 -1.88764e-05 -0.000142004 -2.85651e-05 -0.000139314 -3.8818e-05 -0.000135859 -4.96404e-05 -0.000131556 -6.10047e-05 -0.000126416 -7.28122e-05 -0.000120367 -8.49159e-05 -0.000113439 -9.72726e-05 -0.000105577 -0.000109728 -9.68053e-05 -0.000122045 -8.71535e-05 -0.000134177 -7.66364e-05 -0.000145754 -6.52964e-05 -0.000156804 -5.31911e-05 -0.000167032 -4.03874e-05 -0.000176144 -2.69544e-05 -0.000184052 -1.309e-05 -0.000190426 1.17175e-06 -0.000195079 1.56466e-05 -0.000197755 3.01799e-05 -0.000198251 4.46185e-05 -0.000196538 5.87353e-05 -0.000192413 7.23902e-05 -0.000186012 8.54083e-05 -0.000177308 9.7627e-05 -0.000166519 0.000108912 -0.000153737 0.000119103 -0.00013914 0.000128108 -0.00012301 0.000135839 -0.000105612 0.000142195 -8.71588e-05 0.00014714 -6.78768e-05 0.000150631 -4.79782e-05 0.000152654 -2.77684e-05 0.000153163 -7.38622e-06 0.000152198 1.29176e-05 0.000149772 3.2923e-05 0.000145922 5.2532e-05 0.000140708 7.14946e-05 0.000134139 8.9754e-05 0.000126307 0.000107112 0.000117286 0.000123297 0.000107175 0.000138269 9.60894e-05 0.000151764 8.40961e-05 0.000163628 7.13836e-05 0.000173749 5.80683e-05 0.000181947 4.42933e-05 0.000188233 3.02161e-05 0.00019251 1.5978e-05 0.000194678 1.74149e-06 0.000194909 -1.23362e-05 0.000193164 -2.61663e-05 0.000189553 -3.9571e-05 0.000184355 -5.24691e-05 0.000177549 -6.47664e-05 0.00016956 -7.6374e-05 0.000160397 -8.72328e-05 0.000150246 -9.72763e-05 0.000139442 -0.000106473 0.000128008 -0.000114827 0.000116237 -0.000122296 0.000104289 -0.000128881 9.21416e-05 -0.000134588 8.00122e-05 -0.00013941 6.79694e-05 -0.000143374 5.61012e-05 -0.000146503 4.4451e-05 -0.00014883 3.31555e-05 -0.000150362 2.21409e-05 -0.000151124 1.14255e-05 -0.000151123 9.583e-07 -0.000150446 -9.15191e-06 -0.000149051 -1.90394e-05 -0.000146963 -2.87057e-05 -0.000144188 -3.8194e-05 -0.000140762 -4.74835e-05 -0.000136715 -5.65657e-05 -0.000132011 -6.55364e-05 -0.000126676 -7.43771e-05 -0.000120712 -8.30957e-05 -0.00011412 -9.17045e-05 -0.000106958 -0.000100149 -9.91782e-05 -0.000108453 -9.08145e-05 -0.000116566 -8.18744e-05 -0.000124445 -7.23852e-05 -0.000132039 -6.23647e-05 -0.000139292 -5.1837e-05 -0.000146166 -4.08419e-05 -0.000152502 -2.94043e-05 -0.00015828 -1.75868e-05 -0.000163314 -5.47681e-06 -0.000167488 6.90221e-06 -0.000170668 1.94516e-05 -0.000172725 3.20745e-05 -0.0001735 4.46706e-05 -0.000172856 5.71352e-05 -0.000170732 6.93413e-05 -0.000167013 8.11641e-05 -0.000161594 9.24881e-05 -0.000154443 0.00010318 -0.000145533 0.000113096 -0.00013487 0.000122107 -0.000122409 0.000130094 -0.000108328 0.000136942 -9.27011e-05 0.000142568 -7.57504e-05 0.000146811 -5.75738e-05 0.000149662 -3.84764e-05 0.000151062 -1.87792e-05 0.00015101 1.26759e-06 0.000149419 2.14227e-05 0.000146384 4.13573e-05 0.000141932 6.07418e-05 0.000136081 7.94207e-05 0.000128944 9.70371e-05 0.000120608 0.000113319 0.000111172 0.000128146 0.000100782 0.00014123 8.95748e-05 0.000152388 7.7693e-05 0.000161616 6.53078e-05 0.000168731 5.25597e-05 0.000173691 3.96125e-05 0.000176658 2.66272e-05 0.000177592 1.37252e-05 0.000176559 1.0493e-06 0.000173877 -1.12799e-05 0.000169575 -2.31882e-05 0.000163851 -3.45661e-05 0.000157017 -4.5339e-05 0.000149137 -5.54859e-05 0.000140418 -6.49306e-05 0.000131174 -7.36471e-05 0.000121395 -8.16367e-05 0.000111175 -8.88569e-05 0.000100918 -9.53027e-05 9.05233e-05 -0.000101045 8.01631e-05 -0.000106002 6.9664e-05 -0.000110223 5.95627e-05 -0.000113743 4.96731e-05 -0.000116529 3.93966e-05 -0.000118632 2.9993e-05 -0.000120056 2.05311e-05 -0.00012083 1.1355e-05 -0.000120951 2.47479e-06 -0.000120464 -6.43766e-06 -0.000119351 -1.49237e-05 -0.000117688 -2.31315e-05 -0.000115404 -3.16462e-05 -0.000112573 -3.93191e-05 -0.00010913 -4.75828e-05 -0.000105158 -5.52083e-05 -0.000100659 -6.24339e-05 -9.56305e-05 -6.98485e-05 -9.00562e-05 -7.71466e-05 -8.40187e-05 -8.3679e-05 -7.75171e-05 -9.04285e-05 -7.05748e-05 -9.65688e-05 -6.32133e-05 -0.000102131 -5.54286e-05 -0.000107673 -4.73072e-05 -0.000112659 -3.88526e-05 -0.000117185 -3.00981e-05 -0.000121178 -2.11024e-05 -0.000124306 -1.1924e-05 -0.000126713 -2.56504e-06 -0.000129127 6.83527e-06 -0.000129664 1.62868e-05 -0.000130005 2.56903e-05 -0.000129457 3.49716e-05 -0.000127518 4.40617e-05 -0.000124657 5.28417e-05 -0.000120627 6.12914e-05 -0.000115923 6.93194e-05 -0.000110356 7.68354e-05 -0.000103115 8.37921e-05 -9.55349e-05 9.01516e-05 -8.71307e-05 9.5813e-05 -7.77441e-05 0.000100729 -6.79896e-05 0.000104916 -5.75839e-05 0.000108271 -4.67806e-05 0.00011088 -3.60304e-05 0.000112646 -2.46477e-05 0.000113628 -1.40139e-05 0.000113745 -2.56675e-06 0.000113063 8.69836e-06 0.000111585 1.91768e-05 0.000109424 2.91735e-05 0.000106565 3.8244e-05 0.000103084 4.67095e-05 9.90497e-05 5.44876e-05 9.45654e-05 6.10707e-05 8.96283e-05 6.68536e-05 8.43187e-05 7.18149e-05 7.87527e-05 7.59339e-05 7.29997e-05 7.86748e-05 6.7096e-05 8.04255e-05 6.11496e-05 8.14431e-05 5.51934e-05 8.1777e-05 4.92432e-05 8.13033e-05 4.34342e-05 8.00455e-05 3.77367e-05 7.81145e-05 3.22885e-05 7.54099e-05 2.70282e-05 7.23084e-05 2.20643e-05 6.87048e-05 1.74013e-05 6.46605e-05 1.3006e-05 6.05109e-05 9.02075e-06 5.59375e-05 5.33681e-06 5.11857e-05 1.96247e-06 4.65088e-05 -9.9338e-07 4.16987e-05 -3.6361e-06 3.7149e-05 -5.93742e-06 3.25671e-05 -7.91439e-06 2.80949e-05 -9.58057e-06 2.38738e-05 -1.09483e-05 1.96843e-05 -1.20404e-05 1.58155e-05 1.19601e-05 -0.000114752 -0.000121443 -0.000105436 -0.000139464 -9.50364e-05 -0.000154527 -8.36066e-05 -0.000169179 -7.10589e-05 -0.000186033 -5.74527e-05 -0.000199348 -4.2952e-05 -0.000213089 -2.77336e-05 -0.000222779 -1.21505e-05 -0.000229184 3.93552e-06 -0.000234982 2.02619e-05 -0.000238621 3.65138e-05 -0.000237346 5.27626e-05 -0.000237017 6.87791e-05 -0.000233343 8.43912e-05 -0.000227419 9.94072e-05 -0.000218508 0.000113538 -0.000205788 0.000126669 -0.000191486 0.000138666 -0.000174836 0.000149353 -0.000156637 0.000158748 -0.00013751 0.000166683 -0.000116 0.000173099 -9.42511e-05 0.000177965 -7.10892e-05 0.000181231 -4.78513e-05 0.000182857 -2.37946e-05 0.000182947 -1.23043e-06 0.000181505 2.23249e-05 0.000178381 4.56653e-05 0.000173665 6.99186e-05 0.000167164 9.51301e-05 0.000159266 0.000116434 0.000149594 0.000139544 0.000138706 0.00015827 0.000126534 0.000177187 0.000113208 0.000194808 9.87607e-05 0.000207887 8.36812e-05 0.000218369 6.81664e-05 0.000227565 5.20539e-05 0.000231271 3.61138e-05 0.000233237 2.00163e-05 0.000232438 4.38631e-06 0.000227755 -1.07878e-05 0.000223183 -2.54054e-05 0.000214991 -3.93409e-05 0.000205587 -5.24872e-05 0.000194653 -6.47863e-05 0.000182747 -7.62222e-05 0.000170516 -8.67607e-05 0.000157695 -9.64089e-05 0.000144728 -0.000105194 0.000132047 -0.000113115 0.000119347 -0.000120232 0.000107187 -0.000126524 9.4757e-05 -0.000132007 8.2619e-05 -0.000136776 7.17074e-05 -0.000140734 5.93585e-05 -0.000143896 4.74057e-05 -0.00014632 3.63116e-05 -0.000147921 2.38566e-05 -0.000148782 1.32965e-05 -0.000148753 7.65522e-07 -0.000147915 -1.161e-05 -0.000146335 -2.30851e-05 -0.000143973 -3.36444e-05 -0.000140958 -4.49213e-05 -0.000137186 -5.48936e-05 -0.000132766 -6.45553e-05 -0.000127788 -7.34001e-05 -0.000122256 -8.15622e-05 -0.000116229 -8.95329e-05 -0.00010974 -9.76962e-05 -0.000102712 -0.000104355 -9.53145e-05 -0.000112047 -8.74094e-05 -0.000118718 -7.88535e-05 -0.000127293 -7.00425e-05 -0.000134118 -6.0524e-05 -0.000141468 -5.06892e-05 -0.00014933 -4.01489e-05 -0.000156897 -2.92965e-05 -0.000163428 -1.77079e-05 -0.000171879 -5.8358e-06 -0.000176849 6.58203e-06 -0.00018392 1.92496e-05 -0.000188483 3.2292e-05 -0.000191223 4.5504e-05 -0.000193895 5.8706e-05 -0.000194656 7.19592e-05 -0.000192404 8.49949e-05 -0.000189255 9.76011e-05 -0.000182854 0.000109666 -0.000173975 0.000120987 -0.000162419 0.000131336 -0.000148151 0.000140544 -0.000131111 0.000148388 -0.000111331 0.000154709 -8.91586e-05 0.00015936 -6.4948e-05 0.000162124 -3.88428e-05 0.000163038 -1.16592e-05 0.000161948 1.60358e-05 0.000158929 4.37341e-05 0.000153999 7.08712e-05 0.000147253 9.69235e-05 0.0001388 0.00012138 0.000128808 0.000143704 0.000117392 0.0001635 0.000104826 0.000180567 9.13079e-05 0.000194484 7.70374e-05 0.000205224 6.23088e-05 0.000212573 4.73017e-05 0.00021673 3.23045e-05 0.000217635 1.75173e-05 0.00021582 3.00809e-06 0.000211457 -1.09608e-05 0.000204996 -2.43156e-05 0.000196862 -3.69754e-05 0.000187435 -4.88967e-05 0.000177102 -6.00131e-05 0.000166094 -7.03496e-05 0.000155025 -7.99429e-05 0.000143691 -8.87328e-05 0.000132467 -9.67559e-05 0.000121564 -0.000104122 0.000110993 -0.000110747 0.000100678 -0.000116724 9.08913e-05 -0.000122083 8.17502e-05 -0.000126884 7.27605e-05 -0.000131121 6.42828e-05 -0.000134825 5.61968e-05 -0.000138017 4.8102e-05 -0.000140699 4.02842e-05 -0.000142863 3.2364e-05 -0.000144516 2.44687e-05 -0.000145672 1.64142e-05 -0.000146261 7.85729e-06 -0.000146275 -8.25835e-07 -0.000145701 -1.02215e-05 -0.000144416 -2.01618e-05 -0.000142493 -3.04878e-05 -0.000139795 -4.15167e-05 -0.000136392 -5.30429e-05 -0.000132114 -6.52827e-05 -0.000126981 -7.7945e-05 -0.000120934 -9.09634e-05 -0.00011401 -0.000104197 -0.000106144 -0.000117594 -9.73704e-05 -0.000130819 -8.76983e-05 -0.000143849 -7.71543e-05 -0.000156298 -6.57772e-05 -0.000168181 -5.3631e-05 -0.000179178 -4.07751e-05 -0.000189 -2.7318e-05 -0.000197509 -1.33372e-05 -0.000204407 9.94137e-07 -0.00020941 1.55573e-05 -0.000212318 3.01831e-05 -0.000212876 4.47021e-05 -0.000211058 5.89212e-05 -0.000206632 7.26657e-05 -0.000199757 8.57825e-05 -0.000190425 9.80788e-05 -0.000178815 0.000109422 -0.00016508 0.000119678 -0.000149396 0.000128737 -0.00013207 0.000136501 -0.000113375 0.000142897 -9.35554e-05 0.000147869 -7.28483e-05 0.000151376 -5.14851e-05 0.000153394 -2.97865e-05 0.00015391 -7.90216e-06 0.000152939 1.38884e-05 0.00015049 3.53713e-05 0.000146619 5.64032e-05 0.000141366 7.67473e-05 0.000134766 9.63546e-05 0.0001269 0.000114978 0.000117825 0.000132372 0.000107658 0.000148437 9.6497e-05 0.000162925 8.4445e-05 0.00017568 7.16609e-05 0.000186533 5.82652e-05 0.000195343 4.44134e-05 0.000202085 3.02584e-05 0.000206665 1.59382e-05 0.000208998 1.62583e-06 0.000209221 -1.25298e-05 0.00020732 -2.64205e-05 0.000203444 -3.98821e-05 0.000197817 -5.28348e-05 0.000190502 -6.51677e-05 0.000181893 -7.68132e-05 0.000172043 -8.7705e-05 0.000161137 -9.77679e-05 0.000149505 -0.000106983 0.000137223 -0.000115345 0.000124599 -0.000122818 0.000111762 -0.00012941 9.87335e-05 -0.000135108 8.57101e-05 -0.000139923 7.27844e-05 -0.000143869 6.0048e-05 -0.000146997 4.75787e-05 -0.000149307 3.5465e-05 -0.000150828 2.36617e-05 -0.000151573 1.21714e-05 -0.000151582 9.66633e-07 -0.000150881 -9.85268e-06 -0.000149474 -2.04464e-05 -0.000147377 -3.0803e-05 -0.000144591 -4.09795e-05 -0.00014118 -5.08949e-05 -0.000137111 -6.06349e-05 -0.000132401 -7.02458e-05 -0.000127055 -7.97231e-05 -0.000121075 -8.90764e-05 -0.000114511 -9.82686e-05 -0.000107327 -0.000107332 -9.95387e-05 -0.000116242 -9.11645e-05 -0.00012494 -8.22145e-05 -0.000133395 -7.27092e-05 -0.000141544 -6.26695e-05 -0.000149331 -5.21239e-05 -0.000156712 -4.1102e-05 -0.000163524 -2.96267e-05 -0.000169755 -1.78015e-05 -0.00017514 -5.63977e-06 -0.00017965 6.78508e-06 -0.000183093 1.93867e-05 -0.000185326 3.20649e-05 -0.000186178 4.4721e-05 -0.000185512 5.7269e-05 -0.00018328 6.95228e-05 -0.000179267 8.14152e-05 -0.000173486 9.28124e-05 -0.00016584 0.000103594 -0.000156315 0.000113557 -0.000144833 0.000122635 -0.000131487 0.000130683 -0.000116376 0.000137589 -9.96079e-05 0.000143237 -8.13984e-05 0.000147535 -6.18715e-05 0.000150432 -4.13734e-05 0.00015183 -2.01776e-05 0.000151758 1.33914e-06 0.00015018 2.30014e-05 0.000147129 4.4408e-05 0.000142636 6.52348e-05 0.000136752 8.53041e-05 0.000129569 0.000104221 0.000121166 0.000121721 0.000111667 0.000137644 0.000101211 0.000151686 8.99151e-05 0.000163684 7.79556e-05 0.000173575 6.55032e-05 0.000181183 5.26563e-05 0.000186538 3.96324e-05 0.000189682 2.65994e-05 0.000190625 1.36019e-05 0.000189556 8.65757e-07 0.000186613 -1.14937e-05 0.000181935 -2.34734e-05 0.000175831 -3.48887e-05 0.000168433 -4.56724e-05 0.00015992 -5.58657e-05 0.000150611 -6.53251e-05 0.000140634 -7.40506e-05 0.000130121 -8.20564e-05 0.00011918 -8.92767e-05 0.000108138 -9.57212e-05 9.69678e-05 -0.000101465 8.59071e-05 -0.000106416 7.46144e-05 -0.000110636 6.37829e-05 -0.000114143 5.31803e-05 -0.00011692 4.21737e-05 -0.000119015 3.2088e-05 -0.000120431 2.19469e-05 -0.000121192 1.21162e-05 -0.000121303 2.58612e-06 -0.000120801 -6.93949e-06 -0.000119683 -1.60426e-05 -0.000118018 -2.47955e-05 -0.00011573 -3.39342e-05 -0.000112892 -4.21577e-05 -0.00010944 -5.10346e-05 -0.000105465 -5.91831e-05 -0.000100952 -6.6947e-05 -9.59137e-05 -7.4887e-05 -9.03288e-05 -8.27314e-05 -8.42808e-05 -8.9727e-05 -7.7767e-05 -9.69423e-05 -7.08103e-05 -0.000103526 -6.34274e-05 -0.000109514 -5.56235e-05 -0.000115477 -4.74865e-05 -0.000120796 -3.9011e-05 -0.00012566 -3.02322e-05 -0.000129957 -2.12125e-05 -0.000133326 -1.20033e-05 -0.000135923 -2.6101e-06 -0.000138521 6.83093e-06 -0.000139105 1.63137e-05 -0.000139488 2.57535e-05 -0.000138896 3.50847e-05 -0.000136849 4.42107e-05 -0.000133783 5.3031e-05 -0.000129447 6.15171e-05 -0.000124409 6.95854e-05 -0.000118425 7.71437e-05 -0.000110673 8.41419e-05 -0.000102533 9.05142e-05 -9.35029e-05 9.62033e-05 -8.34332e-05 0.000101136 -7.29219e-05 0.000105333 -6.17809e-05 0.000108707 -5.01548e-05 0.000111326 -3.86498e-05 0.00011309 -2.64115e-05 0.000114055 -1.49793e-05 0.000114149 -2.66076e-06 0.000113462 9.38567e-06 0.000111969 2.06697e-05 0.000109778 3.13646e-05 0.000106891 4.11313e-05 0.000103373 5.0227e-05 9.93339e-05 5.85268e-05 9.47874e-05 6.56172e-05 8.98126e-05 7.18284e-05 8.44631e-05 7.71643e-05 7.88661e-05 8.15309e-05 7.30788e-05 8.44622e-05 6.71449e-05 8.63594e-05 6.11808e-05 8.74071e-05 5.517e-05 8.77877e-05 4.91844e-05 8.72889e-05 4.33573e-05 8.58726e-05 3.76434e-05 8.38285e-05 3.2168e-05 8.08853e-05 2.68878e-05 7.75885e-05 2.19347e-05 7.36579e-05 1.72337e-05 6.93615e-05 1.28348e-05 6.49097e-05 8.83681e-06 5.99355e-05 5.12189e-06 5.49006e-05 1.81473e-06 4.98159e-05 -1.18177e-06 4.46952e-05 -3.82324e-06 3.97905e-05 -6.11789e-06 3.48617e-05 -8.088e-06 3.0065e-05 -9.74347e-06 2.55293e-05 -1.11024e-05 2.10433e-05 -1.21846e-05 1.68977e-05 1.27679e-05 -0.000115357 -0.000129507 -0.000106031 -0.00014879 -9.56198e-05 -0.000164938 -8.41493e-05 -0.00018065 -7.15819e-05 -0.0001986 -5.78983e-05 -0.000213032 -4.33293e-05 -0.000227659 -2.80235e-05 -0.000238085 -1.23564e-05 -0.000244851 3.8074e-06 -0.000251146 2.02198e-05 -0.000255033 3.65657e-05 -0.000253693 5.29168e-05 -0.000253368 6.90332e-05 -0.00024946 8.47508e-05 -0.000243137 9.98765e-05 -0.000233634 0.000114092 -0.000220004 0.000127297 -0.000204692 0.000139355 -0.000186894 0.000150113 -0.000167395 0.000159559 -0.000146957 0.000167543 -0.000123984 0.000173981 -0.000100689 0.00017888 -7.59887e-05 0.000182156 -5.11271e-05 0.000183802 -2.54412e-05 0.000183887 -1.31555e-06 0.000182461 2.37515e-05 0.000179299 4.88263e-05 0.000174581 7.46373e-05 0.000168064 0.000101646 0.000160077 0.000124421 0.000150387 0.000149234 0.000139425 0.000169232 0.000127152 0.000189459 0.000113762 0.000208198 9.91871e-05 0.000222462 8.3986e-05 0.00023357 6.83456e-05 0.000243205 5.21205e-05 0.000247497 3.61011e-05 0.000249256 1.98715e-05 0.000248668 4.13512e-06 0.000243492 -1.11105e-05 0.000238428 -2.57901e-05 0.000229671 -3.97754e-05 0.000219572 -5.29581e-05 0.000207836 -6.52812e-05 0.00019507 -7.67305e-05 0.000181966 -8.72731e-05 0.000168238 -9.69195e-05 0.000154375 -0.000105699 0.000140826 -0.00011361 0.000127259 -0.000120719 0.000114297 -0.000127008 0.000101045 -0.000132486 8.80972e-05 -0.000137249 7.64704e-05 -0.00014121 6.33197e-05 -0.000144372 5.0568e-05 -0.0001468 3.87387e-05 -0.000148416 2.54732e-05 -0.000149269 1.4149e-05 -0.00014922 7.17174e-07 -0.000148363 -1.24674e-05 -0.000146775 -2.46734e-05 -0.000144385 -3.60342e-05 -0.000141332 -4.79738e-05 -0.000137598 -5.8628e-05 -0.000133116 -6.90371e-05 -0.000128103 -7.84132e-05 -0.000122575 -8.70908e-05 -0.000116525 -9.55821e-05 -0.00011004 -0.000104182 -0.00010301 -0.000111385 -9.55992e-05 -0.000119458 -8.76463e-05 -0.000126671 -7.91577e-05 -0.000135781 -7.03703e-05 -0.000142906 -6.08359e-05 -0.000151003 -5.10353e-05 -0.000159131 -4.04666e-05 -0.000167466 -2.95843e-05 -0.00017431 -1.80196e-05 -0.000183444 -6.05754e-06 -0.000188812 6.33686e-06 -0.000196314 1.89944e-05 -0.00020114 3.21239e-05 -0.000204353 4.53983e-05 -0.00020717 5.86356e-05 -0.000207894 7.19929e-05 -0.000205761 8.51278e-05 -0.00020239 9.77767e-05 -0.000195504 0.000110001 -0.0001862 0.000121465 -0.000173883 0.000131897 -0.000158583 0.000141208 -0.000140422 0.000149139 -0.000119262 0.000155549 -9.55684e-05 0.000160272 -6.96709e-05 0.00016308 -4.16507e-05 0.000163986 -1.25653e-05 0.000162913 1.71082e-05 0.000159884 4.67631e-05 0.000154916 7.58395e-05 0.000148106 0.000103734 0.000139571 0.000129915 0.000129472 0.000153802 0.000117949 0.000175023 0.000105268 0.000193249 9.16297e-05 0.000208122 7.72188e-05 0.000219635 6.23542e-05 0.000227438 4.72391e-05 0.000231845 3.21282e-05 0.000232746 1.72196e-05 0.000230729 2.65743e-06 0.00022602 -1.13892e-05 0.000219042 -2.47707e-05 0.000210244 -3.74811e-05 0.000200145 -4.94334e-05 0.000189054 -6.0573e-05 0.000177234 -7.08922e-05 0.000165344 -8.04732e-05 0.000153272 -8.92699e-05 0.000141264 -9.73089e-05 0.000129603 -0.000104628 0.000118312 -0.000111238 0.000107288 -0.000117196 9.68498e-05 -0.000122563 8.71173e-05 -0.000127336 7.75326e-05 -0.000131553 6.85006e-05 -0.000135242 5.98854e-05 -0.000138436 5.12963e-05 -0.00014111 4.29576e-05 -0.000143274 3.45283e-05 -0.000144946 2.61402e-05 -0.000146088 1.75566e-05 -0.000146711 8.48012e-06 -0.000146702 -8.3474e-07 -0.000146188 -1.07353e-05 -0.000144916 -2.14335e-05 -0.000143028 -3.23766e-05 -0.000140391 -4.41536e-05 -0.000136972 -5.64616e-05 -0.000132672 -6.9583e-05 -0.000127588 -8.30291e-05 -0.000121576 -9.69748e-05 -0.000114619 -0.000111154 -0.000106754 -0.000125459 -9.7973e-05 -0.000139601 -8.82799e-05 -0.000153542 -7.77094e-05 -0.000166869 -6.62933e-05 -0.000179597 -5.41051e-05 -0.000191367 -4.11909e-05 -0.000201914 -2.76671e-05 -0.000211033 -1.36172e-05 -0.000218457 8.01326e-07 -0.000223828 1.54564e-05 -0.000226973 3.01869e-05 -0.000227607 4.47996e-05 -0.00022567 5.91324e-05 -0.000220965 7.29641e-05 -0.000213588 8.61692e-05 -0.00020363 9.85519e-05 -0.000191198 0.000109971 -0.0001765 0.000120294 -0.000159718 0.000129418 -0.000141194 0.000137227 -0.000121184 0.000143654 -9.99827e-05 0.000148649 -7.78429e-05 0.000152185 -5.5021e-05 0.000154195 -3.17968e-05 0.000154705 -8.41267e-06 0.000153737 1.48564e-05 0.000151266 3.78423e-05 0.000147368 6.03019e-05 0.000142078 8.20371e-05 0.000135442 0.00010299 0.000127546 0.000122874 0.000118406 0.000141512 0.000108177 0.000158666 9.69501e-05 0.000174152 8.48202e-05 0.00018781 7.19588e-05 0.000199394 5.84879e-05 0.000208814 4.45434e-05 0.00021603 3.0317e-05 0.000220892 1.58966e-05 0.000223419 1.50099e-06 0.000223617 -1.2742e-05 0.000221563 -2.66934e-05 0.000217395 -4.02137e-05 0.000211337 -5.32272e-05 0.000203515 -6.56107e-05 0.000194277 -7.72744e-05 0.000183706 -8.8212e-05 0.000172075 -9.82957e-05 0.000159588 -0.000107544 0.000146472 -0.000115901 0.000132956 -0.000123375 0.000119236 -0.000129974 0.000105332 -0.000135666 9.14026e-05 -0.000140469 7.75874e-05 -0.000144396 6.39744e-05 -0.000147525 5.07081e-05 -0.000149821 3.77606e-05 -0.000151328 2.5169e-05 -0.000152043 1.28866e-05 -0.000152058 9.81787e-07 -0.000151344 -1.05668e-05 -0.000149927 -2.18636e-05 -0.000147817 -3.29128e-05 -0.000145042 -4.37548e-05 -0.000141613 -5.43237e-05 -0.000137535 -6.47129e-05 -0.000132817 -7.49642e-05 -0.000127448 -8.50917e-05 -0.000121491 -9.50337e-05 -0.000114915 -0.000104844 -0.000107724 -0.000114523 -9.99238e-05 -0.000124041 -9.15397e-05 -0.000133324 -8.25791e-05 -0.000142356 -7.3057e-05 -0.000151066 -6.29779e-05 -0.000159411 -5.24294e-05 -0.000167261 -4.13666e-05 -0.000174587 -2.9892e-05 -0.00018123 -1.80213e-05 -0.00018701 -5.81538e-06 -0.000191856 6.6599e-06 -0.000195568 1.93164e-05 -0.000197983 3.20547e-05 -0.000198916 4.47789e-05 -0.000198236 5.73735e-05 -0.000195875 6.97148e-05 -0.000191608 8.16815e-05 -0.000185453 9.31571e-05 -0.000177316 0.000103995 -0.000167153 0.000114049 -0.000154887 0.000123198 -0.000140636 0.000131312 -0.00012449 0.000138301 -0.000106597 0.000143977 -8.70746e-05 0.000148315 -6.62096e-05 0.000151224 -4.42828e-05 0.000152658 -2.16112e-05 0.000152581 1.41617e-06 0.000150997 2.45856e-05 0.000147939 4.74659e-05 0.000143399 6.97743e-05 0.000137474 9.12296e-05 0.000130262 0.000111432 0.00012177 0.000130213 0.0001122 0.000147215 0.000101685 0.000162201 9.02847e-05 0.000175084 7.82378e-05 0.000185622 6.56937e-05 0.000193727 5.27617e-05 0.00019947 3.96544e-05 0.00020279 2.6518e-05 0.000203761 1.34692e-05 0.000202605 6.68835e-07 0.000199413 -1.17768e-05 0.00019438 -2.37801e-05 0.000187834 -3.52343e-05 0.000179887 -4.60838e-05 0.00017077 -5.6275e-05 0.000160802 -6.57472e-05 0.000150106 -7.44853e-05 0.000138859 -8.25061e-05 0.000127201 -8.97251e-05 0.000115357 -9.61862e-05 0.000103429 -0.000101916 9.16364e-05 -0.000106857 7.95557e-05 -0.000111081 6.80067e-05 -0.000114571 5.66708e-05 -0.000117337 4.49389e-05 -0.000119429 3.41801e-05 -0.000120832 2.33501e-05 -0.000121579 1.28629e-05 -0.000121678 2.68564e-06 -0.000121171 -7.4467e-06 -0.000120039 -1.71748e-05 -0.000118378 -2.64566e-05 -0.00011608 -3.6232e-05 -0.000113233 -4.50048e-05 -0.000109773 -5.44947e-05 -0.000105792 -6.31636e-05 -0.000101264 -7.14751e-05 -9.62169e-05 -7.99341e-05 -9.06215e-05 -8.83269e-05 -8.456e-05 -9.57885e-05 -7.80431e-05 -0.000103459 -7.10611e-05 -0.000110508 -6.365e-05 -0.000116925 -5.58328e-05 -0.000123294 -4.76848e-05 -0.000128944 -3.91811e-05 -0.000134164 -3.0375e-05 -0.000138763 -2.13336e-05 -0.000142367 -1.20898e-05 -0.000145166 -2.65859e-06 -0.000147952 6.8169e-06 -0.000148581 1.63403e-05 -0.000149011 2.58248e-05 -0.000148381 3.52115e-05 -0.000146236 4.43709e-05 -0.000142942 5.32308e-05 -0.000138307 6.17617e-05 -0.00013294 6.98748e-05 -0.000126538 7.74807e-05 -0.000118279 8.45062e-05 -0.000109559 9.0904e-05 -9.99007e-05 9.66226e-05 -8.91519e-05 0.000101562 -7.78615e-05 0.000105788 -6.60071e-05 0.00010918 -5.35469e-05 0.00011181 -4.12797e-05 0.000113555 -2.81564e-05 0.000114516 -1.59406e-05 0.000114597 -2.74144e-06 0.000113892 1.00902e-05 0.000112392 2.21699e-05 0.000110157 3.35998e-05 0.000107233 4.40559e-05 0.000103696 5.37639e-05 9.9623e-05 6.25994e-05 9.50266e-05 7.02135e-05 8.99951e-05 7.68599e-05 8.46271e-05 8.25323e-05 7.89904e-05 8.71675e-05 7.31554e-05 9.02972e-05 6.72102e-05 9.23046e-05 6.11876e-05 9.34298e-05 5.5146e-05 9.38292e-05 4.91356e-05 9.32993e-05 4.32748e-05 9.17335e-05 3.75596e-05 8.95436e-05 3.20389e-05 8.6406e-05 2.67513e-05 8.28762e-05 2.17669e-05 7.86423e-05 1.70331e-05 7.40954e-05 1.26705e-05 6.92723e-05 8.63352e-06 6.39724e-05 4.90809e-06 5.86261e-05 1.69823e-06 5.30258e-05 -1.38494e-06 4.77784e-05 -4.02477e-06 4.24303e-05 -6.31183e-06 3.71488e-05 -8.27451e-06 3.20277e-05 -9.91797e-06 2.71727e-05 -1.12677e-05 2.2393e-05 -1.23389e-05 1.79689e-05 1.35663e-05 -0.000116004 -0.000137562 -0.000106669 -0.000158125 -9.62462e-05 -0.000175362 -8.47279e-05 -0.000192168 -7.21357e-05 -0.000211192 -5.83788e-05 -0.000226789 -4.37346e-05 -0.000242303 -2.83343e-05 -0.000253486 -1.25803e-05 -0.000260605 3.67295e-06 -0.000267399 2.01742e-05 -0.000271535 3.66217e-05 -0.00027014 5.30868e-05 -0.000269833 6.93051e-05 -0.000265678 8.5136e-05 -0.000258968 0.000100377 -0.000248875 0.000114685 -0.000234313 0.000127967 -0.000217973 0.000140099 -0.000199026 0.000150925 -0.000178221 0.000160424 -0.000156455 0.000168432 -0.000131992 0.000174923 -0.00010718 0.000179862 -8.09276e-05 0.000183143 -5.44086e-05 0.000184819 -2.71166e-05 0.000184894 -1.39089e-06 0.000183488 2.51567e-05 0.000180311 5.20035e-05 0.000175574 7.93741e-05 0.000169042 0.000108179 0.000160962 0.000132501 0.000151247 0.000158949 0.000140198 0.000180281 0.000127824 0.000201833 0.000114355 0.000221668 9.96571e-05 0.000237159 8.43156e-05 0.000248911 6.85476e-05 0.000258973 5.21886e-05 0.000263855 3.60154e-05 0.00026543 1.97343e-05 0.000264949 3.87559e-06 0.00025935 -1.14557e-05 0.00025376 -2.62031e-05 0.000244418 -4.02416e-05 0.00023361 -5.34631e-05 0.000221058 -6.58115e-05 0.000207419 -7.72744e-05 0.000193429 -8.78213e-05 0.000178785 -9.74649e-05 0.000164018 -0.000106237 0.000149599 -0.000114138 0.000135159 -0.000121239 0.000121397 -0.000127523 0.00010733 -0.000132999 9.3573e-05 -0.000137753 8.12248e-05 -0.000141718 6.7284e-05 -0.000144882 5.37321e-05 -0.000147311 4.11681e-05 -0.00014893 2.70925e-05 -0.000149769 1.49876e-05 -0.000149722 6.70393e-07 -0.000148841 -1.33484e-05 -0.000147246 -2.62683e-05 -0.000144824 -3.84563e-05 -0.000141728 -5.10698e-05 -0.000137994 -6.23625e-05 -0.000133492 -7.35386e-05 -0.000128449 -8.34562e-05 -0.000122916 -9.26242e-05 -0.000116845 -0.000101653 -0.000110363 -0.000110665 -0.000103328 -0.00011842 -9.59048e-05 -0.000126881 -8.79395e-05 -0.000134636 -7.94836e-05 -0.000144237 -7.07223e-05 -0.000151667 -6.1172e-05 -0.000160553 -5.13519e-05 -0.000168951 -4.08114e-05 -0.000178006 -2.98379e-05 -0.000185284 -1.83682e-05 -0.000194914 -6.33566e-06 -0.000200844 6.06352e-06 -0.000208714 1.87528e-05 -0.00021383 3.19423e-05 -0.000217542 4.52827e-05 -0.00022051 5.85846e-05 -0.000221196 7.20323e-05 -0.000219209 8.52625e-05 -0.00021562 9.80654e-05 -0.000208307 0.000110366 -0.000198501 0.000121914 -0.000185431 0.00013249 -0.000169158 0.000141923 -0.000149856 0.000149955 -0.000127295 0.000156454 -0.000102067 0.000161212 -7.44283e-05 0.000164099 -4.45386e-05 0.000165035 -1.35007e-05 0.00016396 1.81835e-05 0.00016092 4.98031e-05 0.000155898 8.08608e-05 0.00014902 0.000110612 0.000140395 0.00013854 0.000130189 0.000164009 0.000118554 0.000186658 0.000105756 0.000206047 9.19459e-05 0.000221932 7.74132e-05 0.000234168 6.24123e-05 0.000242439 4.71751e-05 0.000247082 3.19238e-05 0.000247998 1.69019e-05 0.000245751 2.24769e-06 0.000240674 -1.18427e-05 0.000233133 -2.53014e-05 0.000223702 -3.80332e-05 0.000212877 -4.99989e-05 0.00020102 -6.11596e-05 0.000188395 -7.15136e-05 0.000175698 -8.10813e-05 0.00016284 -8.98505e-05 0.000150033 -9.78723e-05 0.000137625 -0.000105162 0.000125602 -0.000111773 0.000113898 -0.000117697 0.000102774 -0.000123051 9.24709e-05 -0.00012781 8.22913e-05 -0.00013201 7.27012e-05 -0.000135685 6.35602e-05 -0.000138881 5.44927e-05 -0.000141561 4.5637e-05 -0.00014371 3.66777e-05 -0.000145399 2.78287e-05 -0.000146525 1.86824e-05 -0.00014719 9.14579e-06 -0.000147233 -7.91743e-07 -0.000146706 -1.12627e-05 -0.000145485 -2.26546e-05 -0.000143596 -3.4265e-05 -0.000140991 -4.6759e-05 -0.000137588 -5.98643e-05 -0.000133347 -7.38242e-05 -0.000128238 -8.81382e-05 -0.00012224 -0.000102973 -0.000115279 -0.000118116 -0.000107416 -0.000133321 -9.86178e-05 -0.000148399 -8.89049e-05 -0.000163255 -7.83042e-05 -0.00017747 -6.68442e-05 -0.000191057 -5.46122e-05 -0.000203599 -4.16406e-05 -0.000214886 -2.80418e-05 -0.000224632 -1.39205e-05 -0.000232578 5.94203e-07 -0.000238343 1.53486e-05 -0.000241728 3.01863e-05 -0.000242445 4.49066e-05 -0.000240391 5.93378e-05 -0.000235396 7.32797e-05 -0.00022753 8.659e-05 -0.00021694 9.90595e-05 -0.000203668 0.000110561 -0.000188001 0.000120954 -0.000170112 0.000130137 -0.000150377 0.00013799 -0.000129037 0.000144464 -0.000106456 0.000149483 -8.28627e-05 0.000153032 -5.85694e-05 0.000155053 -3.38185e-05 0.000155561 -8.92052e-06 0.000154569 1.58486e-05 0.000152092 4.03193e-05 0.000148171 6.42226e-05 0.000142842 8.73659e-05 0.000136167 0.000109666 0.000128207 0.000130833 0.000119037 0.000150682 0.00010873 0.000168973 9.74173e-05 0.000185465 8.52238e-05 0.000200003 7.22899e-05 0.000212328 5.87046e-05 0.000222399 4.46795e-05 0.000230055 3.03592e-05 0.000235212 1.58487e-05 0.000237929 1.3655e-06 0.0002381 -1.29632e-05 0.000235892 -2.69854e-05 0.000231418 -4.05583e-05 0.00022491 -5.36429e-05 0.0002166 -6.60765e-05 0.000206711 -7.78059e-05 0.000195436 -8.8759e-05 0.000183028 -9.88742e-05 0.000169704 -0.000108132 0.00015573 -0.000116494 0.000141318 -0.000123958 0.0001267 -0.000130575 0.000111949 -0.000136262 9.70891e-05 -0.000141047 8.23724e-05 -0.00014499 6.79174e-05 -0.000148088 5.38067e-05 -0.000150367 4.00391e-05 -0.000151857 2.6659e-05 -0.000152578 1.36082e-05 -0.000152567 9.70342e-07 -0.00015184 -1.12934e-05 -0.000150409 -2.32947e-05 -0.000148278 -3.50441e-05 -0.000145511 -4.65217e-05 -0.000142071 -5.77637e-05 -0.000137985 -6.87987e-05 -0.000133251 -7.96986e-05 -0.000127906 -9.04366e-05 -0.000121933 -0.000101006 -0.000115345 -0.000111433 -0.000108146 -0.000121722 -0.000100336 -0.000131851 -9.194e-05 -0.00014172 -8.29672e-05 -0.000151329 -7.34293e-05 -0.000160604 -6.33467e-05 -0.000169493 -5.27386e-05 -0.000177869 -4.16825e-05 -0.000185643 -3.01656e-05 -0.000192747 -1.82564e-05 -0.00019892 -6.00352e-06 -0.000204109 6.53034e-06 -0.000208102 1.92403e-05 -0.000210693 3.20412e-05 -0.000211717 4.48507e-05 -0.000211046 5.75015e-05 -0.000208526 6.99214e-05 -0.000204028 8.19665e-05 -0.000197498 9.354e-05 -0.00018889 0.00010444 -0.000178053 0.000114578 -0.000165025 0.000123803 -0.000149861 0.000131991 -0.000132678 0.000139016 -0.000113622 0.000144766 -9.28239e-05 0.000149147 -7.05907e-05 0.000152085 -4.72217e-05 0.000153561 -2.30866e-05 0.000153466 1.51036e-06 0.000151873 2.61793e-05 0.000148796 5.05429e-05 0.000144218 7.43519e-05 0.000138246 9.72014e-05 0.000130957 0.000118721 0.000122416 0.000138755 0.00011277 0.00015686 0.000102146 0.000172825 9.06795e-05 0.000186551 7.85403e-05 0.000197762 6.58854e-05 0.000206382 5.28733e-05 0.000212482 3.96797e-05 0.000215983 2.64455e-05 0.000216995 1.33262e-05 0.000215725 4.6128e-07 0.000212278 -1.20584e-05 0.0002069 -2.41089e-05 0.000199884 -3.55972e-05 0.000191375 -4.64974e-05 0.00018167 -5.67121e-05 0.000171017 -6.61849e-05 0.000159579 -7.4948e-05 0.000147622 -8.29859e-05 0.000135239 -9.01812e-05 0.000122553 -9.66879e-05 0.000109936 -0.000102395 9.73439e-05 -0.000107311 8.44717e-05 -0.000111551 7.22458e-05 -0.000115026 6.01464e-05 -0.000117772 4.76846e-05 -0.000119867 3.62755e-05 -0.000121258 2.47404e-05 -0.000121989 1.35938e-05 -0.000122076 2.77349e-06 -0.000121571 -7.95205e-06 -0.000120441 -1.83045e-05 -0.000118758 -2.81399e-05 -0.000116451 -3.85389e-05 -0.000113595 -4.78606e-05 -0.000110131 -5.79592e-05 -0.00010614 -6.71546e-05 -0.000101592 -7.60225e-05 -9.65385e-05 -8.4988e-05 -9.09396e-05 -9.39258e-05 -8.48575e-05 -0.000101871 -7.83307e-05 -0.000109986 -7.13274e-05 -0.000117511 -6.38907e-05 -0.000124362 -5.60593e-05 -0.000131126 -4.7893e-05 -0.000137111 -3.93627e-05 -0.000142694 -3.05294e-05 -0.000147597 -2.14669e-05 -0.00015143 -1.21835e-05 -0.00015445 -2.7106e-06 -0.000157425 6.80125e-06 -0.000158093 1.63651e-05 -0.000158575 2.59033e-05 -0.000157919 3.53344e-05 -0.000155667 4.45405e-05 -0.000152148 5.34417e-05 -0.000147208 6.20288e-05 -0.000141527 7.01888e-05 -0.000134698 7.7839e-05 -0.000125929 8.48919e-05 -0.000116612 9.13208e-05 -0.00010633 9.70617e-05 -9.48928e-05 0.00010203 -8.28299e-05 0.000106282 -7.0259e-05 0.000109698 -5.69628e-05 0.000112309 -4.38905e-05 0.000114053 -2.99009e-05 0.000115005 -1.68922e-05 0.000115087 -2.82403e-06 0.00011434 1.08375e-05 0.00011284 2.36693e-05 0.000110564 3.58766e-05 0.0001076 4.70198e-05 0.000104058 5.73056e-05 9.99189e-05 6.67384e-05 9.52791e-05 7.48532e-05 9.02155e-05 8.19235e-05 8.48168e-05 8.7931e-05 7.91279e-05 9.28565e-05 7.32505e-05 9.61746e-05 6.72708e-05 9.82843e-05 6.11958e-05 9.95048e-05 5.51151e-05 9.99099e-05 4.91052e-05 9.93093e-05 4.31701e-05 9.76685e-05 3.74478e-05 9.52659e-05 3.18867e-05 9.19671e-05 2.6625e-05 8.81379e-05 2.15892e-05 8.36782e-05 1.68445e-05 7.884e-05 1.24888e-05 7.3628e-05 8.40351e-06 6.80577e-05 4.71022e-06 6.23193e-05 1.47542e-06 5.62606e-05 -1.6052e-06 5.0859e-05 -4.24116e-06 4.50663e-05 -6.51947e-06 3.94271e-05 -8.47419e-06 3.39824e-05 -1.01041e-05 2.88026e-05 -1.14442e-05 2.37332e-05 -1.25033e-05 1.90279e-05 1.43549e-05 -0.000116694 -0.000145605 -0.000107352 -0.000167468 -9.69166e-05 -0.000185797 -8.53432e-05 -0.000203742 -7.26632e-05 -0.000223872 -5.88972e-05 -0.000240555 -4.41689e-05 -0.000257031 -2.8667e-05 -0.000268988 -1.28225e-05 -0.00027645 3.52037e-06 -0.000283742 2.01242e-05 -0.000288139 3.66806e-05 -0.000286697 5.3267e-05 -0.00028642 6.95946e-05 -0.000282006 8.55455e-05 -0.000274919 0.000100887 -0.000264217 0.0001153 -0.000248725 0.00012868 -0.000231354 0.000140897 -0.000211243 0.000151791 -0.000189115 0.000161345 -0.00016601 0.00016939 -0.000140038 0.000175931 -0.000113721 0.000180867 -8.5864e-05 0.000184194 -5.77362e-05 0.000185874 -2.87962e-05 0.000185967 -1.48398e-06 0.000184576 2.65473e-05 0.000181444 5.51357e-05 0.000176641 8.41766e-05 0.000170117 0.000114703 0.000161934 0.000140684 0.000152186 0.000168697 0.000141028 0.000191439 0.000128543 0.000214318 0.000114877 0.000235334 0.000100189 0.000251847 8.46683e-05 0.000264432 6.87722e-05 0.000274869 5.22618e-05 0.000280366 3.5893e-05 0.000281798 1.96282e-05 0.000281214 3.60386e-06 0.000275375 -1.18243e-05 0.000269188 -2.6645e-05 0.000259239 -4.07399e-05 0.000247705 -5.40026e-05 0.00023432 -6.63778e-05 0.000219794 -7.78541e-05 0.000204905 -8.84055e-05 0.000189336 -9.8046e-05 0.000173659 -0.00010681 0.000158363 -0.000114699 0.000143048 -0.00012179 0.000128488 -0.000128071 0.00011361 -0.000133542 9.90437e-05 -0.000138289 8.59718e-05 -0.000142256 7.12512e-05 -0.000145424 5.69001e-05 -0.000147854 4.35984e-05 -0.000149462 2.87008e-05 -0.000150277 1.58026e-05 -0.000150262 6.54744e-07 -0.000149351 -1.42591e-05 -0.00014775 -2.78692e-05 -0.000145292 -4.09139e-05 -0.000142161 -5.42017e-05 -0.000138416 -6.61075e-05 -0.000133894 -7.80597e-05 -0.000128823 -8.85273e-05 -0.000123282 -9.8166e-05 -0.000117187 -0.000107748 -0.000110708 -0.000117143 -0.000103668 -0.00012546 -9.62337e-05 -0.000134315 -8.82685e-05 -0.000142602 -7.98327e-05 -0.000152673 -7.10287e-05 -0.000160471 -6.15392e-05 -0.000170043 -5.16415e-05 -0.000178849 -4.1192e-05 -0.000188456 -3.01666e-05 -0.000196309 -1.87724e-05 -0.000206308 -6.65516e-06 -0.000212962 5.76024e-06 -0.000221129 1.84882e-05 -0.000226558 3.17469e-05 -0.000230801 4.51484e-05 -0.000233912 5.85475e-05 -0.000234595 7.20821e-05 -0.000232744 8.54021e-05 -0.00022894 9.83398e-05 -0.000221244 0.000110744 -0.000210905 0.00012241 -0.000197097 0.000133121 -0.000179869 0.000142671 -0.000159406 0.00015082 -0.000135444 0.000157426 -0.000108674 0.000162248 -7.92504e-05 0.000165211 -4.7501e-05 0.000166159 -1.44489e-05 0.000165081 1.92613e-05 0.000162 5.2884e-05 0.000156948 8.59129e-05 0.000149992 0.000117568 0.000141275 0.000147257 0.000130957 0.000174327 0.000119216 0.0001984 0.000106236 0.000219027 9.2291e-05 0.000235877 7.76163e-05 0.000248843 6.24825e-05 0.000257572 4.71538e-05 0.000262411 3.17139e-05 0.000263438 1.6566e-05 0.000260899 1.82488e-06 0.000255415 -1.23525e-05 0.00024731 -2.58433e-05 0.000237193 -3.86208e-05 0.000225654 -5.05603e-05 0.000212959 -6.17874e-05 0.000199622 -7.21511e-05 0.000186061 -8.17142e-05 0.000172403 -9.04647e-05 0.000158783 -9.84463e-05 0.000145607 -0.000105744 0.000132899 -0.000112338 0.000120493 -0.000118232 0.000108668 -0.000123565 9.78042e-05 -0.000128313 8.70389e-05 -0.000132499 7.68872e-05 -0.00013616 6.72207e-05 -0.000139351 5.76839e-05 -0.000142033 4.83196e-05 -0.000144196 3.88405e-05 -0.00014588 2.95125e-05 -0.000147064 1.98668e-05 -0.000147699 9.78045e-06 -0.000147772 -7.19106e-07 -0.000147266 -1.17683e-05 -0.000146073 -2.38479e-05 -0.000144178 -3.616e-05 -0.000141627 -4.93097e-05 -0.000138244 -6.32478e-05 -0.000134022 -7.80462e-05 -0.00012893 -9.323e-05 -0.000122942 -0.000108961 -0.000115992 -0.000125066 -0.000108118 -0.000141195 -9.92715e-05 -0.000157246 -8.95713e-05 -0.000172956 -7.89396e-05 -0.000188101 -6.73957e-05 -0.000202601 -5.51541e-05 -0.00021584 -4.21143e-05 -0.000227925 -2.84512e-05 -0.000238295 -1.42416e-05 -0.000246788 3.72713e-07 -0.000252958 1.52357e-05 -0.000256591 3.0175e-05 -0.000257384 4.5014e-05 -0.00025523 5.95657e-05 -0.000249948 7.3619e-05 -0.000241584 8.70281e-05 -0.00023035 9.95996e-05 -0.000216239 0.00011119 -0.000199592 0.000121661 -0.000180583 0.000130897 -0.000159614 0.000138806 -0.000136946 0.000145319 -0.000112969 0.000150374 -8.79187e-05 0.000153934 -6.21286e-05 0.000155967 -3.58521e-05 0.000156471 -9.42491e-06 0.000155453 1.68666e-05 0.000152969 4.2804e-05 0.000149021 6.81704e-05 0.000143659 9.27283e-05 0.000136938 0.000116386 0.00012892 0.000138851 0.000119683 0.00015992 0.000109335 0.00017932 9.79312e-05 0.000196869 8.56477e-05 0.000212287 7.26085e-05 0.000225367 5.89445e-05 0.000236063 4.4824e-05 0.000244175 3.0388e-05 0.000249648 1.57979e-05 0.000252519 1.23777e-06 0.000252661 -1.31951e-05 0.000250325 -2.72997e-05 0.000245522 -4.09571e-05 0.000238567 -5.40923e-05 0.000229735 -6.65584e-05 0.000219177 -7.83547e-05 0.000207232 -8.934e-05 0.000194013 -9.94637e-05 0.000179827 -0.000108754 0.000165021 -0.000117125 0.000149688 -0.000124617 0.000134192 -0.000131216 0.000118548 -0.000136899 0.000102772 -0.000141659 8.71324e-05 -0.000145602 7.18602e-05 -0.000148685 5.68898e-05 -0.000150949 4.23026e-05 -0.000152416 2.81267e-05 -0.000153137 1.43292e-05 -0.000153104 9.36862e-07 -0.000152365 -1.20322e-05 -0.000150917 -2.47423e-05 -0.000148794 -3.71677e-05 -0.00014601 -4.93052e-05 -0.000142555 -6.12196e-05 -0.000138464 -7.28897e-05 -0.000133725 -8.44375e-05 -0.000128377 -9.5784e-05 -0.000122396 -0.000106988 -0.0001158 -0.000118029 -0.000108593 -0.00012893 -0.000100774 -0.000139671 -9.23632e-05 -0.000150131 -8.33796e-05 -0.000160312 -7.38223e-05 -0.000170162 -6.37159e-05 -0.0001796 -5.31077e-05 -0.000188477 -4.20093e-05 -0.000196741 -3.0456e-05 -0.0002043 -1.85056e-05 -0.00021087 -6.20448e-06 -0.00021641 6.38265e-06 -0.000220689 1.91581e-05 -0.000223469 3.20304e-05 -0.00022459 4.48965e-05 -0.000223912 5.76369e-05 -0.000221266 7.01381e-05 -0.000216529 8.22709e-05 -0.000209631 9.39179e-05 -0.000200537 0.000104914 -0.00018905 0.000115138 -0.000175248 0.000124444 -0.000159168 0.000132732 -0.000140966 0.0001398 -0.000120691 0.00014561 -9.86336e-05 0.000150037 -7.5018e-05 0.00015301 -5.01954e-05 0.000154478 -2.45538e-05 0.000154413 1.57539e-06 0.000152808 2.77841e-05 0.000149691 5.36597e-05 0.00014509 7.89525e-05 0.000139074 0.000103218 0.000131713 0.000126082 0.000123104 0.000147364 0.000113387 0.000166577 0.000102658 0.000183554 9.11061e-05 0.000198103 7.88882e-05 0.00020998 6.61009e-05 0.000219169 5.29909e-05 0.000225592 3.97241e-05 0.00022925 2.6374e-05 0.000230345 1.31727e-05 0.000228926 2.56355e-07 0.000225194 -1.23536e-05 0.00021951 -2.44594e-05 0.00021199 -3.59821e-05 0.000202898 -4.69339e-05 0.000192622 -5.71761e-05 0.000181259 -6.66748e-05 0.000169077 -7.54502e-05 0.000156398 -8.34942e-05 0.000143283 -9.07164e-05 0.000129775 -9.72107e-05 0.00011643 -0.000102904 0.000103037 -0.00010783 8.93972e-05 -0.000112047 7.64636e-05 -0.000115509 6.36081e-05 -0.000118253 5.04284e-05 -0.000120332 3.83549e-05 -0.000121708 2.61165e-05 -0.000122431 1.43162e-05 -0.000122499 2.84178e-06 -0.000121994 -8.4572e-06 -0.000120861 -1.94376e-05 -0.000119161 -2.98396e-05 -0.000116843 -4.08567e-05 -0.000113982 -5.07217e-05 -0.00011051 -6.14318e-05 -0.000106507 -7.11571e-05 -0.000101947 -8.0583e-05 -9.68782e-05 -9.00566e-05 -9.12719e-05 -9.95321e-05 -8.51737e-05 -0.000107969 -7.8634e-05 -0.000116526 -7.16046e-05 -0.00012454 -6.41562e-05 -0.00013181 -5.63051e-05 -0.000138977 -4.81128e-05 -0.000145303 -3.9556e-05 -0.000151251 -3.06952e-05 -0.000156458 -2.16142e-05 -0.000160511 -1.22836e-05 -0.000163781 -2.76919e-06 -0.000166939 6.78261e-06 -0.000167645 1.63974e-05 -0.00016819 2.59945e-05 -0.000167516 3.54657e-05 -0.000165138 4.47142e-05 -0.000161397 5.36732e-05 -0.000156167 6.23185e-05 -0.000150172 7.05269e-05 -0.000142906 7.82105e-05 -0.000133613 8.53032e-05 -0.000123704 9.17567e-05 -0.000112783 9.75371e-05 -0.000100673 0.000102537 -8.78303e-05 0.000106822 -7.45438e-05 0.000110225 -6.03652e-05 0.00011284 -4.65057e-05 0.000114582 -3.16427e-05 0.000115515 -1.78258e-05 0.000115609 -2.91755e-06 0.000114827 1.16195e-05 0.000113302 2.51943e-05 0.000110985 3.81931e-05 0.000108005 4.99996e-05 0.000104427 6.0884e-05 0.000100235 7.09302e-05 9.55383e-05 7.95501e-05 9.04747e-05 8.69871e-05 8.5017e-05 9.33887e-05 7.92758e-05 9.85976e-05 7.33673e-05 0.000102083 6.73199e-05 0.000104332 6.12053e-05 0.000105619 5.5072e-05 0.000106043 4.90434e-05 0.000105338 4.30788e-05 0.000103633 3.73247e-05 0.00010102 3.17489e-05 9.75428e-05 2.64523e-05 9.34345e-05 2.13839e-05 8.87466e-05 1.66658e-05 8.3558e-05 1.22674e-05 7.80265e-05 8.15993e-06 7.21651e-05 4.53577e-06 6.59435e-05 1.24751e-06 5.95488e-05 -1.84255e-06 5.39491e-05 -4.47251e-06 4.76962e-05 -6.74109e-06 4.16957e-05 -8.68674e-06 3.59281e-05 -1.03016e-05 3.04175e-05 -1.1632e-05 2.50636e-05 -1.26775e-05 2.00734e-05 1.51332e-05 -0.000117429 -0.000153635 -0.000108079 -0.000176818 -9.76322e-05 -0.000196243 -8.59963e-05 -0.000215378 -7.32471e-05 -0.000236622 -5.9457e-05 -0.000254345 -4.45679e-05 -0.00027192 -2.90227e-05 -0.000284533 -1.30833e-05 -0.000292389 3.35758e-06 -0.000300183 2.00699e-05 -0.000304851 3.6741e-05 -0.000303368 5.34412e-05 -0.00030312 6.99013e-05 -0.000298466 8.59797e-05 -0.000290997 0.000101432 -0.000279669 0.000115952 -0.000263246 0.00012944 -0.000244841 0.00014175 -0.000223553 0.000152711 -0.000200076 0.000162325 -0.000175623 0.000170418 -0.000148131 0.000177021 -0.000120323 0.000181956 -9.07992e-05 0.000185325 -6.11054e-05 0.000186992 -3.04636e-05 0.000187113 -1.60476e-06 0.000185671 2.79888e-05 0.000182598 5.82087e-05 0.000177774 8.90011e-05 0.000171275 0.000121202 0.000162981 0.000148978 0.000153232 0.000178446 0.000141916 0.000202755 0.000129314 0.00022692 0.000115499 0.000249149 0.000100849 0.000266498 8.50435e-05 0.000280237 6.90201e-05 0.000290893 5.23464e-05 0.00029704 3.58098e-05 0.000298335 1.96158e-05 0.000297408 3.31694e-06 0.000291674 -1.22168e-05 0.000284721 -2.71165e-05 0.000274139 -4.12718e-05 0.000261861 -5.45772e-05 0.000247626 -6.69806e-05 0.000232197 -7.84701e-05 0.000216394 -8.90262e-05 0.000199892 -9.86628e-05 0.000183295 -0.000107418 0.000167118 -0.000115293 0.000150923 -0.000122373 0.000135569 -0.000128648 0.000119886 -0.000134106 0.000104501 -0.000138854 9.07194e-05 -0.000142825 7.52224e-05 -0.000145999 6.0074e-05 -0.000148428 4.60278e-05 -0.000150029 3.03012e-05 -0.000150834 1.6608e-05 -0.000150845 6.65685e-07 -0.000149894 -1.52103e-05 -0.000148286 -2.94773e-05 -0.000145791 -4.34091e-05 -0.000142625 -5.73668e-05 -0.000138864 -6.98693e-05 -0.000134322 -8.26013e-05 -0.000129222 -9.36271e-05 -0.000123675 -0.000103713 -0.000117549 -0.000113874 -0.000111076 -0.000123617 -0.000104033 -0.000132504 -9.65838e-05 -0.000141764 -8.86252e-05 -0.00015056 -8.02099e-05 -0.000161089 -7.13519e-05 -0.000169329 -6.19446e-05 -0.00017945 -5.20086e-05 -0.000188785 -4.16265e-05 -0.000198838 -3.05432e-05 -0.000207393 -1.92861e-05 -0.000217565 -7.00592e-06 -0.000225242 5.42823e-06 -0.000233563 1.81995e-05 -0.000239329 3.15333e-05 -0.000244135 4.49942e-05 -0.000247373 5.85414e-05 -0.000248142 7.21274e-05 -0.00024633 8.55557e-05 -0.000242369 9.86119e-05 -0.000234301 0.000111113 -0.000223406 0.000122949 -0.000208934 0.000133786 -0.000190706 0.000143455 -0.000169075 0.000151739 -0.000143727 0.000158454 -0.000115389 0.000163352 -8.41491e-05 0.000166363 -5.05113e-05 0.000167341 -1.54273e-05 0.00016627 2.03327e-05 0.000163158 5.59956e-05 0.000158105 9.09661e-05 0.000151071 0.000124602 0.000142214 0.000156113 0.00013177 0.000184771 0.000119925 0.000210244 0.000106765 0.000232188 9.26704e-05 0.000249971 7.78449e-05 0.000263669 6.25247e-05 0.000272893 4.70059e-05 0.00027793 3.14795e-05 0.000278964 1.62118e-05 0.000276167 1.37401e-06 0.000270253 -1.28872e-05 0.000261571 -2.64373e-05 0.000250743 -3.92393e-05 0.000238457 -5.12677e-05 0.000224988 -6.24572e-05 0.000210811 -7.28242e-05 0.000196429 -8.23765e-05 0.000181956 -9.11183e-05 0.000167525 -9.91074e-05 0.000153596 -0.000106369 0.00014016 -0.000112946 0.00012707 -0.000118807 0.00011453 -0.000124086 0.000103083 -0.000128819 9.17723e-05 -0.000133014 8.1082e-05 -0.000136639 7.08456e-05 -0.000139863 6.0908e-05 -0.000142539 5.09961e-05 -0.000144697 4.09984e-05 -0.00014639 3.12057e-05 -0.000147603 2.108e-05 -0.000148241 1.04181e-05 -0.000148341 -6.19418e-07 -0.000147872 -1.22376e-05 -0.000146692 -2.50278e-05 -0.000144846 -3.80051e-05 -0.000142302 -5.18543e-05 -0.000138903 -6.66466e-05 -0.000134754 -8.21948e-05 -0.000129663 -9.83217e-05 -0.000123689 -0.000114934 -0.000116746 -0.000132009 -0.000108863 -0.000149078 -0.000100032 -0.000166077 -9.02804e-05 -0.000182707 -7.96179e-05 -0.000198764 -6.80632e-05 -0.000214156 -5.57233e-05 -0.00022818 -4.2633e-05 -0.000241016 -2.88868e-05 -0.000252042 -1.45855e-05 -0.00026109 1.4303e-07 -0.000267686 1.51236e-05 -0.000271572 3.01796e-05 -0.00027244 4.51346e-05 -0.000270185 5.97999e-05 -0.000264614 7.39907e-05 -0.000255775 8.74971e-05 -0.000243856 0.000100175 -0.000228917 0.000111855 -0.000211272 0.000122423 -0.000191151 0.000131713 -0.000168904 0.000139674 -0.000144907 0.000146229 -0.000119524 0.000151331 -9.30211e-05 0.000154895 -6.5693e-05 0.000156943 -3.79001e-05 0.00015745 -9.93132e-06 0.000156415 1.79018e-05 0.000153898 4.53206e-05 0.000149917 7.21507e-05 0.000144521 9.81246e-05 0.000137769 0.000123138 0.000129683 0.000146938 0.000120381 0.000169222 0.000109947 0.000189754 9.84725e-05 0.000208343 8.60978e-05 0.000224661 7.29577e-05 0.000238508 5.92015e-05 0.000249819 4.49958e-05 0.000258381 3.04381e-05 0.000264206 1.57429e-05 0.000267214 1.06589e-06 0.000267338 -1.34469e-05 0.000264837 -2.76316e-05 0.000259707 -4.13763e-05 0.000252312 -5.45676e-05 0.000242926 -6.70991e-05 0.000231708 -7.89345e-05 0.000219067 -8.99582e-05 0.000205037 -0.000100128 0.000189997 -0.000109421 0.000174313 -0.000117794 0.000158062 -0.000125296 0.000141694 -0.000131892 0.000125144 -0.000137571 0.000108451 -0.000142341 9.19031e-05 -0.000146237 7.57553e-05 -0.00014932 5.99729e-05 -0.000151562 4.45447e-05 -0.00015302 2.95852e-05 -0.000153725 1.50342e-05 -0.000153674 8.86033e-07 -0.000152921 -1.27855e-05 -0.00015145 -2.62137e-05 -0.00014933 -3.92871e-05 -0.000146535 -5.21005e-05 -0.000143075 -6.46801e-05 -0.000138962 -7.70026e-05 -0.000134236 -8.91629e-05 -0.000128874 -0.000101146 -0.000122886 -0.000112976 -0.000116284 -0.000124631 -0.000109069 -0.000136145 -0.000101238 -0.000147501 -9.27895e-05 -0.000158579 -8.38128e-05 -0.000169289 -7.42236e-05 -0.000179751 -6.41249e-05 -0.000189698 -5.34869e-05 -0.000199115 -4.2349e-05 -0.000207879 -3.07644e-05 -0.000215885 -1.87705e-05 -0.000222864 -6.41898e-06 -0.000228762 6.22434e-06 -0.000233333 1.90683e-05 -0.000236313 3.20323e-05 -0.000237554 4.49573e-05 -0.000236837 5.77813e-05 -0.000234091 7.03671e-05 -0.000229115 8.2606e-05 -0.00022187 9.43242e-05 -0.000212255 0.000105419 -0.000200145 0.000115734 -0.000185563 0.000125131 -0.000168565 0.000133471 -0.000149306 0.000140631 -0.000127851 0.000146505 -0.000104507 0.00015098 -7.94932e-05 0.000154011 -5.32265e-05 0.000155471 -2.60141e-05 0.000155415 1.6314e-06 0.000153823 2.93768e-05 0.000150655 5.6827e-05 0.000146017 8.35908e-05 0.000139974 0.000109261 0.000132523 0.000133533 0.000123836 0.000156051 0.000114036 0.000176377 0.000103205 0.000194385 9.15501e-05 0.000209758 7.92045e-05 0.000222325 6.63303e-05 0.000232043 5.31163e-05 0.000238806 3.97224e-05 0.000242644 2.62983e-05 0.00024377 1.30101e-05 0.000242214 -1.83996e-08 0.000238223 -1.26693e-05 0.000232161 -2.48305e-05 0.000224151 -3.64315e-05 0.000214499 -4.73978e-05 0.000203588 -5.76661e-05 0.000191528 -6.72096e-05 0.000178621 -7.59812e-05 0.000165169 -8.40302e-05 0.000151332 -9.12782e-05 0.000137023 -9.77591e-05 0.000122911 -0.00010344 0.000108718 -0.000108375 9.43322e-05 -0.000112571 8.06599e-05 -0.00011602 6.70569e-05 -0.000118764 5.31725e-05 -0.000120823 4.04136e-05 -0.000122182 2.74759e-05 -0.000122902 1.50364e-05 -0.000122945 2.88471e-06 -0.000122439 -8.96389e-06 -0.000121301 -2.05756e-05 -0.000119588 -3.15526e-05 -0.000117256 -4.31887e-05 -0.000114393 -5.35842e-05 -0.00011091 -6.49145e-05 -0.000106895 -7.51729e-05 -0.000102325 -8.51527e-05 -9.72363e-05 -9.51453e-05 -9.1621e-05 -0.000105147 -8.55084e-05 -0.000114082 -7.89533e-05 -0.000123081 -7.19003e-05 -0.000131593 -6.44452e-05 -0.000139265 -5.65659e-05 -0.000146856 -4.83434e-05 -0.000153525 -3.97618e-05 -0.000159833 -3.08716e-05 -0.000165348 -2.17782e-05 -0.000169604 -1.239e-05 -0.000173169 -2.83367e-06 -0.000176496 6.75761e-06 -0.000177236 1.6435e-05 -0.000177867 2.6077e-05 -0.000177158 3.56018e-05 -0.000174663 4.4907e-05 -0.000170702 5.3924e-05 -0.000165184 6.2634e-05 -0.000158882 7.08704e-05 -0.000151143 7.86051e-05 -0.000141348 8.57331e-05 -0.000130832 9.22243e-05 -0.000119274 9.80503e-05 -0.000106499 0.000103092 -9.28719e-05 0.000107368 -7.88201e-05 0.000110784 -6.37814e-05 0.000113404 -4.91258e-05 0.000115131 -3.33689e-05 0.000116072 -1.87671e-05 0.000116148 -2.99313e-06 0.000115355 1.24116e-05 0.000113794 2.6756e-05 0.000111442 4.05451e-05 0.000108463 5.2978e-05 0.000104805 6.45418e-05 0.00010056 7.5176e-05 9.58382e-05 8.42716e-05 9.07321e-05 9.20932e-05 8.5204e-05 9.89168e-05 7.94142e-05 0.000104387 7.34722e-05 0.000108025 6.73729e-05 0.000110431 6.12037e-05 0.000111788 5.505e-05 0.000112197 4.89743e-05 0.000111414 4.30037e-05 0.000109604 3.7182e-05 0.000106842 3.16274e-05 0.000103097 2.62707e-05 9.87912e-05 2.11854e-05 9.38318e-05 1.64719e-05 8.82716e-05 1.20212e-05 8.24772e-05 7.93833e-06 7.62479e-05 4.27193e-06 6.96099e-05 9.16048e-07 6.29047e-05 -2.09802e-06 5.69631e-05 -4.71898e-06 5.03172e-05 -6.9772e-06 4.39539e-05 -8.91187e-06 3.78627e-05 -1.05106e-05 3.20163e-05 -1.1831e-05 2.6384e-05 -1.28614e-05 2.11038e-05 1.59011e-05 -0.000118208 -0.000161649 -0.000108852 -0.000186174 -9.83947e-05 -0.0002067 -8.66887e-05 -0.000227084 -7.38826e-05 -0.000249428 -6.00689e-05 -0.000268159 -4.49849e-05 -0.000287004 -2.94023e-05 -0.000300115 -1.33636e-05 -0.000308428 3.18388e-06 -0.00031673 2.00112e-05 -0.000321679 3.68036e-05 -0.00032016 5.36258e-05 -0.000319942 7.02114e-05 -0.000315052 8.64392e-05 -0.000307225 0.000102011 -0.000295242 0.000116653 -0.000277888 0.000130252 -0.00025844 0.000142659 -0.000235962 0.000153688 -0.000211105 0.000163363 -0.000185299 0.000171509 -0.000156277 0.00017816 -0.000126974 0.000183114 -9.57537e-05 0.000186535 -6.45267e-05 0.000188191 -3.21197e-05 0.000188353 -1.76638e-06 0.000186858 2.9484e-05 0.000183805 6.12614e-05 0.000178967 9.38385e-05 0.000172422 0.000127746 0.000164093 0.000157308 0.000154353 0.000188185 0.000142866 0.000214242 0.000130138 0.000239648 0.000116178 0.000263109 0.000101387 0.000281288 8.5436e-05 0.000296188 6.92917e-05 0.000307037 5.2451e-05 0.00031388 3.57361e-05 0.00031505 1.94041e-05 0.00031374 3.00974e-06 0.000308068 -1.26347e-05 0.000300366 -2.76184e-05 0.000289122 -4.18375e-05 0.00027608 -5.51877e-05 0.000260976 -6.76206e-05 0.00024463 -7.91231e-05 0.000227897 -8.96829e-05 0.000210452 -9.93155e-05 0.000192928 -0.00010806 0.000175863 -0.000115921 0.000158784 -0.000122988 0.000142636 -0.000129244 0.000126142 -0.000134702 0.000109959 -0.000139448 9.5466e-05 -0.000143425 7.91986e-05 -0.000146607 6.32561e-05 -0.000149034 4.84549e-05 -0.000150631 3.18985e-05 -0.000151433 1.74097e-05 -0.000151459 6.91739e-07 -0.00015047 -1.61988e-05 -0.000148854 -3.1094e-05 -0.000146321 -4.59422e-05 -0.000143121 -6.05668e-05 -0.000139338 -7.36513e-05 -0.000134777 -8.71623e-05 -0.000129647 -9.87577e-05 -0.000124101 -0.000109259 -0.000117934 -0.00012004 -0.000111466 -0.000130085 -0.000104426 -0.000139544 -9.69569e-05 -0.000149233 -8.90081e-05 -0.000158509 -8.06204e-05 -0.000169476 -7.17293e-05 -0.00017822 -6.24034e-05 -0.000188776 -5.2421e-05 -0.000198767 -4.2145e-05 -0.000209114 -3.09581e-05 -0.00021858 -1.96874e-05 -0.000228836 -7.3894e-06 -0.00023754 5.06744e-06 -0.00024602 1.79342e-05 -0.000252196 3.13044e-05 -0.000257505 4.48151e-05 -0.000260884 5.8487e-05 -0.000261814 7.21666e-05 -0.00026001 8.56929e-05 -0.000255895 9.88842e-05 -0.000247492 0.00011158 -0.000236102 0.000123513 -0.000220867 0.000134492 -0.000201685 0.000144291 -0.000178874 0.000152714 -0.000152151 0.000159513 -0.000122188 0.000164519 -8.91554e-05 0.000167595 -5.35874e-05 0.000168603 -1.64354e-05 0.000167539 2.13962e-05 0.000164387 5.91484e-05 0.000159238 9.61145e-05 0.000152122 0.000131718 0.000143244 0.000164992 0.000132626 0.000195389 0.000120619 0.000222251 0.000107328 0.000245479 9.30673e-05 0.000264231 7.80815e-05 0.000278654 6.25766e-05 0.000288398 4.69083e-05 0.000293598 3.1239e-05 0.000294634 1.58346e-05 0.000291571 8.9491e-07 0.000285193 -1.34562e-05 0.000275923 -2.70106e-05 0.000264298 -3.99245e-05 0.000251371 -5.19777e-05 0.000237041 -6.31697e-05 0.000222004 -7.35392e-05 0.000206798 -8.30652e-05 0.000191482 -9.18169e-05 0.000176277 -9.97818e-05 0.000161561 -0.000106967 0.000147346 -0.000113565 0.000133668 -0.00011941 0.000120375 -0.000124688 0.00010836 -0.000129417 9.65017e-05 -0.000133562 8.52269e-05 -0.000137181 7.44642e-05 -0.000140395 6.41224e-05 -0.000143067 5.36682e-05 -0.000145219 4.315e-05 -0.00014693 3.29169e-05 -0.000148163 2.23131e-05 -0.000148815 1.10697e-05 -0.000148941 -4.92635e-07 -0.000148508 -1.26711e-05 -0.000147345 -2.61912e-05 -0.00014553 -3.98198e-05 -0.000143016 -5.43686e-05 -0.000139691 -6.99712e-05 -0.000135519 -8.63671e-05 -0.00013044 -0.000103401 -0.000124494 -0.00012088 -0.000117547 -0.000138956 -0.000109655 -0.00015697 -0.000100822 -0.00017491 -9.10336e-05 -0.000192496 -8.03369e-05 -0.000209461 -6.87378e-05 -0.000225755 -5.63413e-05 -0.000240577 -4.31811e-05 -0.000254176 -2.93498e-05 -0.000265873 -1.49489e-05 -0.00027549 -1.21254e-07 -0.000282514 1.49756e-05 -0.000286669 3.01622e-05 -0.000287627 4.52563e-05 -0.000285279 6.00563e-05 -0.000279414 7.43563e-05 -0.000270075 8.79919e-05 -0.000257492 0.000100786 -0.000241711 0.000112563 -0.00022305 0.000123201 -0.000201789 0.000132572 -0.000178275 0.000140594 -0.000152929 0.000147194 -0.000126125 0.000152323 -9.81498e-05 0.000155911 -6.92815e-05 0.000157962 -3.99512e-05 0.000158469 -1.04381e-05 0.000157423 1.89476e-05 0.000154879 4.78648e-05 0.000150864 7.61659e-05 0.000145435 0.000103553 0.00013863 0.000129943 0.000130491 0.000155077 0.000121118 0.000178594 0.0001106 0.000200272 9.90469e-05 0.000219897 8.65937e-05 0.000237114 7.33357e-05 0.000251766 5.94728e-05 0.000263682 4.51416e-05 0.000272712 3.04903e-05 0.000278857 1.56839e-05 0.000282021 8.92596e-07 0.000282129 -1.37139e-05 0.000279444 -2.79675e-05 0.000273961 -4.18117e-05 0.000266156 -5.50745e-05 0.000256189 -6.76758e-05 0.00024431 -7.95525e-05 0.000230944 -9.06136e-05 0.000216098 -0.000100815 0.000200199 -0.000110122 0.00018362 -0.00011849 0.00016643 -0.000126015 0.000149219 -0.000132612 0.000131741 -0.000138268 0.000114107 -0.000143045 9.66797e-05 -0.000146934 7.96444e-05 -0.00014999 6.30285e-05 -0.000152206 4.67611e-05 -0.000153665 3.10445e-05 -0.000154343 1.57123e-05 -0.000154274 8.1652e-07 -0.000153503 -1.35563e-05 -0.000152046 -2.76704e-05 -0.000149906 -4.14274e-05 -0.000147092 -5.49147e-05 -0.000143618 -6.81538e-05 -0.000139501 -8.11195e-05 -0.000134769 -9.38949e-05 -0.0001294 -0.000106515 -0.000123404 -0.000118971 -0.000116794 -0.000131241 -0.000109571 -0.000143369 -0.000101729 -0.000155343 -9.329e-05 -0.000167018 -8.42622e-05 -0.000178317 -7.46897e-05 -0.000189324 -6.45537e-05 -0.000199835 -5.38871e-05 -0.000209782 -4.26881e-05 -0.000219078 -3.10915e-05 -0.000227481 -1.90525e-05 -0.000234903 -6.6473e-06 -0.000241167 6.05894e-06 -0.000246039 1.89793e-05 -0.000249233 3.2001e-05 -0.000250576 4.50281e-05 -0.000249864 5.79323e-05 -0.000246995 7.0611e-05 -0.000241794 8.2933e-05 -0.000234192 9.47563e-05 -0.000224079 0.000105952 -0.000211341 0.000116363 -0.000195974 0.00012587 -0.000178073 0.000134274 -0.00015771 0.000141513 -0.00013509 0.000147454 -0.000110448 0.00015199 -8.4029e-05 0.000155023 -5.62603e-05 0.000156524 -2.7515e-05 0.00015647 1.68574e-06 0.000154875 3.09715e-05 0.000151678 6.00241e-05 0.000147001 8.8268e-05 0.000140875 0.000115386 0.00013338 0.000141028 0.000124613 0.000164817 0.000114702 0.000186288 0.000103784 0.000205302 9.20206e-05 0.000221522 7.95531e-05 0.000234793 6.65724e-05 0.000245024 5.32576e-05 0.000252121 3.97382e-05 0.000256163 2.6217e-05 0.000257291 1.28595e-05 0.000255572 -2.82567e-07 0.000251365 -1.30043e-05 0.000244883 -2.51989e-05 0.000236346 -3.68838e-05 0.000226184 -4.7887e-05 0.000214591 -5.81613e-05 0.000201802 -6.77605e-05 0.00018822 -7.65715e-05 0.00017398 -8.45813e-05 0.000159342 -9.18606e-05 0.000144302 -9.8336e-05 0.000129386 -0.000104 0.000114383 -0.000108941 9.92723e-05 -0.000113122 8.48416e-05 -0.00011656 7.04949e-05 -0.000119297 5.59096e-05 -0.000121339 4.24555e-05 -0.000122684 2.8821e-05 -0.000123395 1.57474e-05 -0.000123417 2.90609e-06 -0.000122906 -9.47423e-06 -0.000121764 -2.17181e-05 -0.000120036 -3.32804e-05 -0.000117694 -4.55308e-05 -0.000114825 -5.64525e-05 -0.000111332 -6.84076e-05 -0.000107303 -7.92021e-05 -0.000102727 -8.97292e-05 -9.76172e-05 -0.000100255 -9.19856e-05 -0.000110779 -8.58608e-05 -0.000120206 -7.92827e-05 -0.000129659 -7.22233e-05 -0.000138653 -6.47551e-05 -0.000146733 -5.684e-05 -0.000154771 -4.85821e-05 -0.000161783 -3.99808e-05 -0.000168434 -3.10606e-05 -0.000174268 -2.19283e-05 -0.000178737 -1.25043e-05 -0.000182593 -2.90451e-06 -0.000186095 6.73657e-06 -0.000186877 1.64817e-05 -0.000187612 2.61648e-05 -0.000186842 3.57416e-05 -0.00018424 4.51156e-05 -0.000180076 5.41978e-05 -0.000174267 6.29518e-05 -0.000167636 7.12332e-05 -0.000159424 7.9016e-05 -0.00014913 8.61914e-05 -0.000138008 9.27287e-05 -0.000125812 9.8609e-05 -0.00011238 0.000103657 -9.79197e-05 0.000107947 -8.31104e-05 0.000111377 -6.72116e-05 0.000113986 -5.17347e-05 0.000115731 -3.51141e-05 0.000116674 -1.97104e-05 0.000116715 -3.03362e-06 0.000115924 1.32024e-05 0.000114298 2.83819e-05 0.00011194 4.29034e-05 0.000108906 5.6012e-05 0.000105207 6.82403e-05 0.00010091 7.94733e-05 9.61877e-05 8.89937e-05 9.09842e-05 9.72967e-05 8.53907e-05 0.00010451 7.95686e-05 0.000110209 7.35753e-05 0.000114018 6.74262e-05 0.00011658 6.12204e-05 0.000117994 5.50531e-05 0.000118364 4.88836e-05 0.000117583 4.29041e-05 0.000115583 3.70487e-05 0.000112697 3.1457e-05 0.000108689 2.60641e-05 0.000104184 2.10057e-05 9.88902e-05 1.6238e-05 9.30393e-05 1.1762e-05 8.69532e-05 7.72993e-06 8.02801e-05 3.99657e-06 7.33432e-05 5.96915e-07 6.63044e-05 -2.36875e-06 5.99288e-05 -4.98064e-06 5.29291e-05 -7.22877e-06 4.6202e-05 -9.14888e-06 3.97828e-05 -1.0731e-05 3.35984e-05 -1.2041e-05 2.7694e-05 -1.30548e-05 2.21176e-05 1.66584e-05 -0.000119033 -0.000169644 -0.000109671 -0.000195536 -9.92049e-05 -0.000217167 -8.74213e-05 -0.000238868 -7.45674e-05 -0.000262282 -6.0725e-05 -0.000282001 -4.5446e-05 -0.000302284 -2.98068e-05 -0.000315755 -1.36644e-05 -0.00032457 2.99853e-06 -0.000333393 1.99411e-05 -0.000338621 3.68695e-05 -0.000337089 5.38207e-05 -0.000336894 7.05374e-05 -0.000331768 8.69252e-05 -0.000323613 0.000102628 -0.000310945 0.000117397 -0.000292657 0.000131124 -0.000272167 0.000143627 -0.000248464 0.00015473 -0.000222209 0.000164463 -0.000195031 0.000172659 -0.000164473 0.000179338 -0.000133653 0.000184332 -0.000100748 0.000187765 -6.79598e-05 0.000189455 -3.38103e-05 0.000189641 -1.95229e-06 0.000188125 3.10006e-05 0.000185077 6.43088e-05 0.000180227 9.86889e-05 0.000173645 0.000134328 0.000165263 0.000165689 0.000155437 0.000198011 0.000143881 0.000225798 0.000131013 0.000252515 0.000116903 0.000277218 0.000101965 0.000296227 8.58479e-05 0.000312305 6.94625e-05 0.000323422 5.25967e-05 0.000330746 3.56632e-05 0.000331983 1.91919e-05 0.000330211 2.68265e-06 0.000324577 -1.30788e-05 0.000316127 -2.81514e-05 0.000304195 -4.24377e-05 0.000290366 -5.58345e-05 0.000274373 -6.82955e-05 0.000257091 -7.98134e-05 0.000239415 -9.03765e-05 0.000221015 -0.000100004 0.000202556 -0.000108737 0.000184595 -0.000116581 0.000166628 -0.000123634 0.000149689 -0.000129874 0.000132382 -0.000135329 0.000115414 -0.000140073 0.00010021 -0.000144055 8.3181e-05 -0.000147249 6.64494e-05 -0.000149672 5.08784e-05 -0.00015127 3.34964e-05 -0.000152068 1.82077e-05 -0.000152074 6.97709e-07 -0.00015108 -1.71932e-05 -0.000149454 -3.27194e-05 -0.000146884 -4.85121e-05 -0.000143644 -6.38075e-05 -0.00013984 -7.74548e-05 -0.00013523 -9.17726e-05 -0.000130097 -0.00010389 -0.000124575 -0.000114781 -0.000118341 -0.000126275 -0.000111879 -0.000136547 -0.000104858 -0.000146565 -9.73528e-05 -0.000156738 -8.94137e-05 -0.000166448 -8.1081e-05 -0.000177809 -7.21436e-05 -0.000187158 -6.29161e-05 -0.000198004 -5.28715e-05 -0.000208812 -4.25773e-05 -0.000219408 -3.14099e-05 -0.000229747 -2.01251e-05 -0.000240121 -7.80455e-06 -0.000249861 4.67128e-06 -0.000258496 1.76435e-05 -0.000265169 3.10616e-05 -0.000270924 4.45805e-05 -0.000274403 5.84073e-05 -0.000275641 7.21978e-05 -0.0002738 8.57624e-05 -0.00026946 9.91691e-05 -0.000260899 0.000112012 -0.000248945 0.000124082 -0.000232937 0.00013527 -0.000212873 0.000145191 -0.000188795 0.000153754 -0.000160714 0.000160661 -0.000129095 0.000165759 -9.42536e-05 0.000168901 -5.67292e-05 0.000169933 -1.74675e-05 0.000168894 2.24348e-05 0.000165686 6.23561e-05 0.000160483 0.000101318 0.00015328 0.000138921 0.000144242 0.00017403 0.000133527 0.000206104 0.000121357 0.000234422 0.000107931 0.000258905 9.34835e-05 0.000278678 7.83509e-05 0.000293787 6.26234e-05 0.000304125 4.67794e-05 0.000309442 3.09659e-05 0.000310447 1.54335e-05 0.000307104 4.08927e-07 0.000300217 -1.40621e-05 0.000290394 -2.77383e-05 0.000277974 -4.06501e-05 0.000264282 -5.27352e-05 0.000249126 -6.39135e-05 0.000233182 -7.42849e-05 0.000217169 -8.38091e-05 0.000201006 -9.25472e-05 0.000185015 -0.000100508 0.000169522 -0.000107725 0.000154563 -0.000114243 0.000140186 -0.000120054 0.000126186 -0.000125317 0.000113624 -0.000130012 0.000101197 -0.000134135 8.93499e-05 -0.00013776 7.80893e-05 -0.000140956 6.7318e-05 -0.000143636 5.63483e-05 -0.000145783 4.52971e-05 -0.000147495 3.46288e-05 -0.000148751 2.35695e-05 -0.000149413 1.17315e-05 -0.00014958 -3.25958e-07 -0.00014918 -1.30707e-05 -0.000148035 -2.73362e-05 -0.000146246 -4.1609e-05 -0.000143773 -5.68414e-05 -0.000140477 -7.32676e-05 -0.000136322 -9.05219e-05 -0.000131271 -0.000108452 -0.000125342 -0.00012681 -0.00011839 -0.000145908 -0.000110466 -0.000164894 -0.000101637 -0.000183739 -9.18293e-05 -0.000202303 -8.10984e-05 -0.000220192 -6.94435e-05 -0.00023741 -5.69962e-05 -0.000253024 -4.37586e-05 -0.000267414 -2.98437e-05 -0.000279788 -1.53287e-05 -0.000290006 -3.7805e-07 -0.000297465 1.48291e-05 -0.000301876 3.01459e-05 -0.000302944 4.539e-05 -0.000300524 6.03295e-05 -0.000294353 7.47576e-05 -0.000284503 8.85161e-05 -0.00027125 0.000101419 -0.000254614 0.000113324 -0.000234955 0.000124037 -0.000212502 0.000133482 -0.000187719 0.000141564 -0.000161012 0.000148221 -0.000132781 0.00015337 -0.000103299 0.000156986 -7.28978e-05 0.000159045 -4.20098e-05 0.00015954 -1.09338e-05 0.000158486 2.00018e-05 0.000155931 5.04199e-05 0.000151867 8.02294e-05 0.0001464 0.000109021 0.000139537 0.000136806 0.000131341 0.000163273 0.000121915 0.00018802 0.000111298 0.000210889 9.96606e-05 0.000231534 8.70818e-05 0.000249693 7.37316e-05 0.000265116 5.9758e-05 0.000277656 4.53053e-05 0.000287165 3.05347e-05 0.000293628 1.56362e-05 0.000296919 7.17051e-07 0.000297048 -1.39978e-05 0.000294159 -2.83679e-05 0.000288331 -4.22756e-05 0.000280064 -5.56088e-05 0.000269522 -6.82779e-05 0.000256979 -8.02033e-05 0.00024287 -9.12882e-05 0.000227183 -0.000101536 0.000210447 -0.000110863 0.000192947 -0.00011926 0.000174826 -0.000126771 0.00015673 -0.000133367 0.000138337 -0.000139045 0.000119786 -0.000143789 0.000101423 -0.000147659 8.35144e-05 -0.000150694 6.60634e-05 -0.000152897 4.89648e-05 -0.000154337 3.24836e-05 -0.000154975 1.63505e-05 -0.000154904 7.46038e-07 -0.000154109 -1.4352e-05 -0.000152658 -2.91205e-05 -0.000150502 -4.35836e-05 -0.000147675 -5.77416e-05 -0.00014418 -7.16486e-05 -0.000140077 -8.52225e-05 -0.000135328 -9.86439e-05 -0.000129953 -0.000111891 -0.00012395 -0.000124974 -0.000117331 -0.000137861 -0.000110092 -0.000150608 -0.000102235 -0.0001632 -9.37923e-05 -0.000175461 -8.47668e-05 -0.000187342 -7.5166e-05 -0.000198924 -6.50053e-05 -0.000209995 -5.43093e-05 -0.000220478 -4.3104e-05 -0.000230284 -3.14383e-05 -0.000239147 -1.93495e-05 -0.000246992 -6.8898e-06 -0.000253627 5.89188e-06 -0.000258821 1.88879e-05 -0.000262229 3.19738e-05 -0.000263662 4.50847e-05 -0.000262975 5.80871e-05 -0.000259997 7.08881e-05 -0.000254595 8.32808e-05 -0.000246585 9.52134e-05 -0.000236011 0.000106513 -0.000222641 0.000117041 -0.000206502 0.000126608 -0.00018764 0.000135124 -0.000166225 0.000142446 -0.000142413 0.000148457 -0.000116459 0.000153047 -8.86189e-05 0.000156115 -5.93288e-05 0.000157638 -2.90376e-05 0.000157593 1.73105e-06 0.000155958 3.26058e-05 0.000152755 6.32269e-05 0.000148056 9.29671e-05 0.000141851 0.000121591 0.000134285 0.000148595 0.000125458 0.000173645 0.00011542 0.000196326 0.000104397 0.000216324 9.25391e-05 0.00023338 7.99288e-05 0.000247403 6.68285e-05 0.000258125 5.33915e-05 0.000265558 3.97596e-05 0.000269795 2.61404e-05 0.00027091 1.26491e-05 0.000269063 -5.60651e-07 0.000264575 -1.33574e-05 0.000257679 -2.56525e-05 0.000248641 -3.73616e-05 0.000237893 -4.83988e-05 0.000225629 -5.8749e-05 0.000212152 -6.83421e-05 0.000197813 -7.71734e-05 0.000182811 -8.52198e-05 0.000167388 -9.24722e-05 0.000151554 -9.89416e-05 0.000135856 -0.000104625 0.000120066 -0.000109535 0.000104182 -0.000113699 8.90059e-05 -0.000117136 7.3931e-05 -0.000119857 5.86313e-05 -0.00012188 4.44779e-05 -0.000123224 3.01657e-05 -0.000123912 1.64353e-05 -0.000123912 2.90578e-06 -0.000123395 -9.99087e-06 -0.000122249 -2.28648e-05 -0.000120505 -3.50241e-05 -0.000118159 -4.78772e-05 -0.000115279 -5.93323e-05 -0.000111774 -7.19123e-05 -0.000107736 -8.324e-05 -0.000103146 -9.43191e-05 -9.8003e-05 -0.000105398 -9.23784e-05 -0.000116404 -8.62295e-05 -0.000126355 -7.96387e-05 -0.00013625 -7.25768e-05 -0.000145715 -6.50725e-05 -0.000154238 -5.71247e-05 -0.000162719 -4.88427e-05 -0.000170065 -4.02133e-05 -0.000177064 -3.12574e-05 -0.000183224 -2.20845e-05 -0.000187909 -1.26268e-05 -0.000192051 -2.98235e-06 -0.00019574 6.71758e-06 -0.000196577 1.65178e-05 -0.000197413 2.6252e-05 -0.000196576 3.58958e-05 -0.000193883 4.53453e-05 -0.000189526 5.4469e-05 -0.00018339 6.32875e-05 -0.000176455 7.16085e-05 -0.000167745 7.94521e-05 -0.000156974 8.66861e-05 -0.000145242 9.32767e-05 -0.000132402 9.91781e-05 -0.000118281 0.00010425 -0.000102992 0.000108559 -8.7419e-05 0.000111988 -7.06407e-05 0.000114621 -5.43682e-05 0.000116384 -3.6877e-05 0.000117315 -2.06415e-05 0.000117306 -3.02426e-06 0.000116502 1.40064e-05 0.00011485 3.00339e-05 0.000112482 4.52717e-05 0.000109375 5.91188e-05 0.000105613 7.20017e-05 0.000101304 8.37831e-05 9.6505e-05 9.37923e-05 9.12523e-05 0.000102549 8.56192e-05 0.000110143 7.97415e-05 0.000116087 7.36845e-05 0.000120075 6.74803e-05 0.000122784 6.12737e-05 0.000124201 5.50142e-05 0.000124624 4.88094e-05 0.000123788 4.27893e-05 0.000121603 3.69393e-05 0.000118547 3.12788e-05 0.00011435 2.58659e-05 0.000109597 2.07962e-05 0.00010396 1.59757e-05 9.78598e-05 1.15299e-05 9.1399e-05 7.44991e-06 8.436e-05 3.66413e-06 7.7129e-05 3.01235e-07 6.96673e-05 -2.65289e-06 6.28829e-05 -5.25753e-06 5.55337e-05 -7.49419e-06 4.84387e-05 -9.39947e-06 4.16881e-05 -1.09635e-05 3.51624e-05 -1.22622e-05 2.89927e-05 -1.32573e-05 2.31126e-05 1.74055e-05 -0.000119905 -0.000177617 -0.000110539 -0.000204902 -0.00010002 -0.000227685 -8.81955e-05 -0.000250693 -7.53007e-05 -0.000275176 -6.13584e-05 -0.000295944 -4.59442e-05 -0.000317698 -3.02374e-05 -0.000331462 -1.39876e-05 -0.00034082 2.80154e-06 -0.000350183 1.98645e-05 -0.000355684 3.69417e-05 -0.000354166 5.4026e-05 -0.000353978 7.08865e-05 -0.000348629 8.74431e-05 -0.00034017 0.000103282 -0.000326784 0.000118182 -0.000307558 0.00013204 -0.000286025 0.000144647 -0.000261071 0.000155869 -0.000233431 0.000165626 -0.000204787 0.00017387 -0.000172717 0.000180584 -0.000140368 0.000185612 -0.000105776 0.000189066 -7.14139e-05 0.000190782 -3.55263e-05 0.000190965 -2.13512e-06 0.000189465 3.25004e-05 0.000186418 6.73555e-05 0.000181553 0.000103554 0.000174941 0.00014094 0.000166497 0.000174133 0.000156596 0.000207913 0.000144992 0.000237402 0.000131943 0.000265565 0.000117673 0.000291487 0.000102587 0.000311313 8.62881e-05 0.000328604 6.96626e-05 0.000340048 5.28578e-05 0.000347551 3.55875e-05 0.000349254 1.89774e-05 0.000346821 2.33198e-06 0.000341223 -1.35503e-05 0.00033201 -2.87165e-05 0.000319361 -4.30732e-05 0.000304723 -5.65183e-05 0.000287818 -6.90058e-05 0.000269579 -8.05414e-05 0.00025095 -9.11076e-05 0.000231581 -0.000100729 0.000212177 -0.000109449 0.000193315 -0.000117274 0.000174454 -0.000124312 0.000156726 -0.000130538 0.000138608 -0.000135987 0.000120863 -0.000140728 0.000104951 -0.000144716 8.71699e-05 -0.000147925 6.96578e-05 -0.000150344 5.32976e-05 -0.000151945 3.50974e-05 -0.000152737 1.89994e-05 -0.000152725 6.86224e-07 -0.000151722 -1.81963e-05 -0.000150089 -3.43526e-05 -0.000147486 -5.11151e-05 -0.000144193 -6.71006e-05 -0.000140369 -8.12788e-05 -0.000135692 -9.64498e-05 -0.000130571 -0.000109011 -0.00012502 -0.000120332 -0.00011877 -0.000132524 -0.000112271 -0.000143046 -0.000105333 -0.000153503 -9.7776e-05 -0.000164295 -8.9842e-05 -0.000174382 -8.15708e-05 -0.000186081 -7.25876e-05 -0.000196141 -6.3368e-05 -0.000207223 -5.33498e-05 -0.00021883 -4.30422e-05 -0.000229716 -3.18969e-05 -0.000240893 -2.06038e-05 -0.000251414 -8.253e-06 -0.000262212 4.22654e-06 -0.000270976 1.73122e-05 -0.000278254 3.07916e-05 -0.000284403 4.43471e-05 -0.000287958 5.832e-05 -0.000289614 7.22184e-05 -0.000287699 8.59099e-05 -0.000283151 9.94602e-05 -0.000274449 0.000112461 -0.000261946 0.000124714 -0.00024519 0.000136005 -0.000224164 0.000146103 -0.000198894 0.000154828 -0.000169438 0.00016187 -0.000136138 0.000167067 -9.945e-05 0.000170291 -5.99541e-05 0.000171356 -1.85321e-05 0.000170281 2.35097e-05 0.000167058 6.55793e-05 0.000161783 0.000106593 0.000154495 0.000146209 0.000145352 0.000183173 0.000134532 0.000216925 0.000122155 0.000246799 0.000108566 0.000272494 9.39184e-05 0.000293326 7.85442e-05 0.000309161 6.26716e-05 0.000319998 4.66514e-05 0.000325462 3.06762e-05 0.000326422 1.50074e-05 0.000322773 -1.55615e-07 0.00031538 -1.47086e-05 0.000304947 -2.84612e-05 0.000291727 -4.1409e-05 0.00027723 -5.35016e-05 0.000261219 -6.47208e-05 0.000244401 -7.50983e-05 0.000227547 -8.46252e-05 0.000210533 -9.33016e-05 0.000193691 -0.000101268 0.000177488 -0.000108461 0.000161756 -0.000114959 0.000146684 -0.000120728 0.000131954 -0.000125966 0.000118862 -0.000130639 0.00010587 -0.000134755 9.34658e-05 -0.000138363 8.16974e-05 -0.000141546 7.05003e-05 -0.000144203 5.90057e-05 -0.000146366 4.74604e-05 -0.000148061 3.63233e-05 -0.000149369 2.48772e-05 -0.000150057 1.24199e-05 -0.000150248 -1.34788e-07 -0.000149886 -1.34331e-05 -0.00014876 -2.84617e-05 -0.000146996 -4.33729e-05 -0.000144567 -5.92709e-05 -0.00014131 -7.65249e-05 -0.000137177 -9.46545e-05 -0.00013215 -0.000113479 -0.000126233 -0.000132726 -0.00011928 -0.000152861 -0.000111367 -0.000172807 -0.000102516 -0.00019259 -9.26682e-05 -0.000212151 -8.18937e-05 -0.000230966 -7.01952e-05 -0.000249109 -5.76938e-05 -0.000265526 -4.43496e-05 -0.000280758 -3.03587e-05 -0.000293779 -1.57528e-05 -0.000304611 -6.73337e-07 -0.000312544 1.46711e-05 -0.00031722 3.01334e-05 -0.000318406 4.55153e-05 -0.000315905 6.06035e-05 -0.000309441 7.51763e-05 -0.000299076 8.90697e-05 -0.000285144 0.000102096 -0.000267641 0.000114097 -0.000246956 0.000124924 -0.000223328 0.000134443 -0.000197239 0.000142587 -0.000169156 0.000149283 -0.000139477 0.000154476 -0.000108492 0.000158115 -7.65374e-05 0.000160186 -4.4081e-05 0.000160672 -1.14194e-05 0.000159605 2.10686e-05 0.000157007 5.30173e-05 0.000152921 8.43161e-05 0.00014742 0.000114521 0.000140498 0.000143729 0.00013224 0.000171532 0.000122726 0.000197534 0.000112031 0.000221584 0.00010029 0.000243275 8.76036e-05 0.000262379 7.41516e-05 0.000278568 6.00754e-05 0.000291732 4.54839e-05 0.000301756 3.05895e-05 0.000308522 1.55514e-05 0.000311958 5.26689e-07 0.000312073 -1.42989e-05 0.000308984 -2.87731e-05 0.000302805 -4.27626e-05 0.000294054 -5.61574e-05 0.000282917 -6.89093e-05 0.00026973 -8.089e-05 0.00025485 -9.20446e-05 0.000238338 -0.000102303 0.000220705 -0.00011164 0.000202284 -0.000120054 0.000183241 -0.000127567 0.000164243 -0.000134155 0.000144925 -0.000139844 0.000125475 -0.000144568 0.000106147 -0.000148403 8.73497e-05 -0.000151421 6.90814e-05 -0.000153628 5.11717e-05 -0.000155044 3.38995e-05 -0.000155682 1.69888e-05 -0.000155561 6.25037e-07 -0.000154751 -1.51621e-05 -0.000153299 -3.05728e-05 -0.000151131 -4.57515e-05 -0.000148288 -6.05846e-05 -0.000144791 -7.51458e-05 -0.000140677 -8.93369e-05 -0.00013591 -0.00010341 -0.000130533 -0.000117268 -0.000124523 -0.000130984 -0.000117868 -0.000144516 -0.000110635 -0.00015784 -0.000102788 -0.000171047 -9.43348e-05 -0.000183914 -8.52875e-05 -0.00019639 -7.56647e-05 -0.000208547 -6.54799e-05 -0.00022018 -5.47552e-05 -0.000231202 -4.35165e-05 -0.000241522 -3.18053e-05 -0.000250858 -1.96494e-05 -0.000259148 -7.12741e-06 -0.000266149 5.70211e-06 -0.000271651 1.87628e-05 -0.00027529 3.19464e-05 -0.000276845 4.5147e-05 -0.000276176 5.82537e-05 -0.000273104 7.11316e-05 -0.000267473 8.36509e-05 -0.000259104 9.56924e-05 -0.000248053 0.000107105 -0.000234053 0.000117732 -0.000217129 0.000127405 -0.000197313 0.000136016 -0.000174837 0.000143451 -0.000149847 0.000149536 -0.000122545 0.000154151 -9.32336e-05 0.000157267 -6.24454e-05 0.000158811 -3.05816e-05 0.000158792 1.75017e-06 0.000157126 3.4272e-05 0.000153896 6.6457e-05 0.000149138 9.77245e-05 0.000142914 0.000127816 0.000135241 0.000156268 0.0001263 0.000182585 0.000116176 0.00020645 0.000105042 0.000227458 9.30349e-05 0.000245388 8.0323e-05 0.000260115 6.71016e-05 0.000271346 5.35203e-05 0.000279139 3.97773e-05 0.000283538 2.60481e-05 0.000284639 1.24402e-05 0.000282671 -8.55637e-07 0.00027787 -1.37111e-05 0.000270535 -2.6105e-05 0.000261035 -3.78646e-05 0.000249652 -4.89318e-05 0.000236696 -5.93382e-05 0.000222559 -6.89534e-05 0.000207428 -7.77846e-05 0.000191643 -8.58631e-05 0.000175467 -9.31143e-05 0.000158806 -9.9566e-05 0.000142307 -0.000105261 0.000125761 -0.000110159 0.00010908 -0.000114298 9.31451e-05 -0.000117733 7.73657e-05 -0.000120444 6.13427e-05 -0.000122445 4.64786e-05 -0.000123786 3.15068e-05 -0.000124455 1.71041e-05 -0.000124451 2.90167e-06 -0.000123906 -1.05353e-05 -0.000122755 -2.40159e-05 -0.000121001 -3.67783e-05 -0.000118645 -5.02331e-05 -0.000115753 -6.22245e-05 -0.000112238 -7.5427e-05 -0.000108193 -8.72856e-05 -0.000103585 -9.89262e-05 -9.84087e-05 -0.000110575 -9.27996e-05 -0.000122013 -8.66261e-05 -0.000132529 -8.00179e-05 -0.000142858 -7.29407e-05 -0.000152792 -6.54008e-05 -0.000161778 -5.74224e-05 -0.000170698 -4.91174e-05 -0.00017837 -4.04595e-05 -0.000185721 -3.14623e-05 -0.000192221 -2.22514e-05 -0.00019712 -1.27582e-05 -0.000201544 -3.06761e-06 -0.00020543 6.69973e-06 -0.000206344 1.65563e-05 -0.000207269 2.63467e-05 -0.000206366 3.60654e-05 -0.000203602 4.55692e-05 -0.000199029 5.47542e-05 -0.000192576 6.36315e-05 -0.000185332 7.20075e-05 -0.000176121 7.99224e-05 -0.000164889 8.72243e-05 -0.000152544 9.38329e-05 -0.000139011 9.97743e-05 -0.000124223 0.000104874 -0.000108091 0.000109188 -9.17336e-05 0.000112652 -7.41046e-05 0.000115309 -5.70251e-05 0.000117064 -3.86325e-05 0.000117968 -2.15453e-05 0.00011795 -3.00606e-06 0.000117104 1.48522e-05 0.000115449 3.16886e-05 0.000113018 4.7703e-05 0.000109865 6.22717e-05 0.000106065 7.58016e-05 0.000101729 8.81193e-05 9.68409e-05 9.86806e-05 9.15067e-05 0.000107883 8.5833e-05 0.000115817 7.9928e-05 0.000121992 7.37884e-05 0.000126215 6.75688e-05 0.000129004 6.12776e-05 0.000130492 5.49745e-05 0.000130927 4.87627e-05 0.00013 4.26494e-05 0.000127717 3.67806e-05 0.000124416 3.10758e-05 0.000120054 2.57011e-05 0.000114972 2.05571e-05 0.000109104 1.57145e-05 0.000102702 1.12941e-05 9.58193e-05 7.14657e-06 8.85076e-05 3.40459e-06 8.0871e-05 3.70543e-09 7.30681e-05 -2.95046e-06 6.58371e-05 -5.54988e-06 5.81331e-05 -7.77354e-06 5.06623e-05 -9.66238e-06 4.35769e-05 -1.12103e-05 3.67103e-05 -1.24927e-05 3.02751e-05 -1.34702e-05 2.40901e-05 1.81413e-05 -0.000120825 -0.000185562 -0.000111456 -0.000214271 -0.000100892 -0.000238249 -8.90105e-05 -0.000262574 -7.60833e-05 -0.000288104 -6.2032e-05 -0.000309995 -4.6474e-05 -0.000333256 -3.06954e-05 -0.00034724 -1.42434e-05 -0.000357272 2.59326e-06 -0.00036702 1.97841e-05 -0.000372875 3.70272e-05 -0.000371409 5.42414e-05 -0.000371192 7.12557e-05 -0.000365643 8.79981e-05 -0.000356913 0.000103971 -0.000342756 0.000119004 -0.000322591 0.000132966 -0.000299988 0.000145653 -0.000273758 0.000157007 -0.000244785 0.000166856 -0.000214637 0.000175142 -0.000181003 0.000181898 -0.000147125 0.000186956 -0.000110833 0.000190438 -7.48966e-05 0.000192173 -3.72613e-05 0.000192362 -2.32409e-06 0.000190877 3.39859e-05 0.00018783 7.04021e-05 0.000182949 0.000108434 0.000176314 0.000147575 0.000167799 0.000182648 0.000157827 0.000217885 0.000146228 0.000249001 0.000132934 0.000278859 0.000118486 0.000305935 0.000103256 0.000326543 8.67674e-05 0.000345093 6.99132e-05 0.000356902 5.29669e-05 0.000364497 3.55049e-05 0.000366716 1.87587e-05 0.000363567 1.95635e-06 0.000358025 -1.40512e-05 0.000348017 -2.93148e-05 0.000334625 -4.37447e-05 0.000319152 -5.72401e-05 0.000301313 -6.97561e-05 0.000282095 -8.13076e-05 0.000262502 -9.18764e-05 0.00024215 -0.00010149 0.000221791 -0.000110196 0.000202021 -0.000118 0.000182258 -0.000125021 0.000163746 -0.000131234 0.000144822 -0.000136676 0.000126304 -0.000141412 0.000109687 -0.000145408 9.11655e-05 -0.000148636 7.28855e-05 -0.000151051 5.57128e-05 -0.000152655 3.67019e-05 -0.000153439 1.97833e-05 -0.000153414 6.60789e-07 -0.000152398 -1.92119e-05 -0.000150743 -3.60075e-05 -0.000148133 -5.37251e-05 -0.000144769 -7.0465e-05 -0.000140926 -8.51219e-05 -0.000136201 -0.000101175 -0.000131065 -0.000114147 -0.000125482 -0.000125915 -0.000119219 -0.000138787 -0.000112656 -0.00014961 -0.000105762 -0.000160398 -9.8139e-05 -0.000171918 -9.02896e-05 -0.000182232 -8.20214e-05 -0.000194349 -7.30565e-05 -0.000205106 -6.38518e-05 -0.000216428 -5.38542e-05 -0.000228828 -4.35407e-05 -0.00024003 -3.24141e-05 -0.000252019 -2.09984e-05 -0.00026283 -8.75556e-06 -0.000274454 3.7766e-06 -0.000283508 1.69601e-05 -0.000291438 3.05007e-05 -0.000297944 4.41363e-05 -0.000301594 5.82166e-05 -0.000303694 7.22411e-05 -0.000301723 8.61532e-05 -0.000297064 9.97789e-05 -0.000288075 0.000112941 -0.000275108 0.000125372 -0.000257621 0.000136812 -0.000235604 0.00014707 -0.000209152 0.000155943 -0.000178311 0.00016313 -0.000143325 0.00016844 -0.00010476 0.000171739 -6.32532e-05 0.00017282 -1.96126e-05 0.000171753 2.4576e-05 0.000168508 6.88243e-05 0.00016318 0.000111922 0.000155804 0.000153585 0.000146488 0.000192489 0.000135481 0.000227932 0.00012301 0.00025927 0.000109214 0.00028629 9.43691e-05 0.000308171 7.88032e-05 0.000324727 6.27224e-05 0.000336079 4.65064e-05 0.000341678 3.0418e-05 0.000342511 1.45518e-05 0.000338639 -7.56473e-07 0.000330689 -1.53678e-05 0.000319558 -2.92158e-05 0.000305575 -4.22115e-05 0.000290226 -5.43643e-05 0.000273372 -6.55441e-05 0.000255581 -7.59486e-05 0.000237952 -8.54538e-05 0.000220038 -9.41324e-05 0.00020237 -0.000102074 0.00018543 -0.000109233 0.000168916 -0.000115688 0.000153138 -0.000121427 0.000137694 -0.000126646 0.000124081 -0.000131291 0.000110515 -0.000135403 9.75779e-05 -0.000138986 8.52808e-05 -0.00014216 7.36743e-05 -0.000144858 6.17039e-05 -0.000146988 4.95898e-05 -0.000148701 3.80366e-05 -0.000150023 2.61987e-05 -0.000150725 1.31222e-05 -0.000150945 8.46986e-08 -0.000150624 -1.3754e-05 -0.000149491 -2.95939e-05 -0.000147781 -4.50837e-05 -0.000145405 -6.16464e-05 -0.000142175 -7.97551e-05 -0.000138067 -9.87627e-05 -0.000133069 -0.000118477 -0.000127165 -0.000138631 -0.000120214 -0.000159811 -0.000112309 -0.000180712 -0.000103433 -0.000201466 -9.35415e-05 -0.000222043 -8.27509e-05 -0.000241757 -7.09824e-05 -0.000260877 -5.84272e-05 -0.000278081 -4.50049e-05 -0.00029418 -3.09087e-05 -0.000307875 -1.61891e-05 -0.000319331 -9.93625e-07 -0.00032774 1.44999e-05 -0.000332714 3.01144e-05 -0.000334021 4.56577e-05 -0.000331449 6.08954e-05 -0.000324679 7.56157e-05 -0.000313796 8.96495e-05 -0.000299178 0.000102816 -0.000280807 0.000114921 -0.000259061 0.000125843 -0.00023425 0.000135455 -0.000206851 0.000143681 -0.000177382 0.000150407 -0.000146203 0.000155638 -0.000113722 0.000159303 -8.02029e-05 0.000161391 -4.61683e-05 0.000161863 -1.18916e-05 0.000160769 2.21623e-05 0.000158143 5.56435e-05 0.000154025 8.84338e-05 0.000148483 0.000120063 0.000141507 0.000150705 0.000133181 0.000179858 0.000123585 0.000207129 0.000112803 0.000232366 0.000100978 0.0002551 8.81605e-05 0.000275197 7.45888e-05 0.00029214 6.03774e-05 0.000305943 4.56672e-05 0.000316467 3.06431e-05 0.000323546 1.54674e-05 0.000327133 3.42391e-07 0.000327198 -1.45991e-05 0.000323926 -2.91957e-05 0.000317402 -4.32722e-05 0.00030813 -5.67803e-05 0.000296425 -6.95811e-05 0.000282531 -8.16178e-05 0.000266887 -9.282e-05 0.00024954 -0.000103104 0.000230989 -0.000112457 0.000211636 -0.000120885 0.000191669 -0.000128402 0.000171759 -0.000135005 0.000151529 -0.000140683 0.000131152 -0.000145387 0.000110852 -0.000149213 9.11751e-05 -0.000152215 7.20839e-05 -0.000154391 5.33471e-05 -0.000155786 3.5295e-05 -0.00015639 1.75928e-05 -0.000156247 4.81432e-07 -0.000155458 -1.59511e-05 -0.000153969 -3.20612e-05 -0.00015179 -4.7931e-05 -0.000148913 -6.34614e-05 -0.00014543 -7.86286e-05 -0.000141302 -9.34656e-05 -0.000136525 -0.000108186 -0.00013114 -0.000122654 -0.000125119 -0.000137005 -0.00011847 -0.000151164 -0.000111242 -0.000165069 -0.000103368 -0.000178921 -9.48966e-05 -0.000192385 -8.58315e-05 -0.000205455 -7.61888e-05 -0.00021819 -6.59792e-05 -0.00023039 -5.52239e-05 -0.000241958 -4.39498e-05 -0.000252797 -3.21888e-05 -0.000262619 -1.99793e-05 -0.000271358 -7.4184e-06 -0.00027871 5.49343e-06 -0.000284562 1.86394e-05 -0.000288436 3.1915e-05 -0.000290121 4.52105e-05 -0.000289471 5.84461e-05 -0.00028634 7.14035e-05 -0.000280431 8.40387e-05 -0.000271739 9.61929e-05 -0.000260207 0.000107748 -0.000245608 0.000118457 -0.000227838 0.000128244 -0.0002071 0.000136956 -0.000183549 0.000144464 -0.000157355 0.000150625 -0.000128707 0.00015532 -9.79289e-05 0.000158482 -6.56066e-05 0.000160048 -3.21478e-05 0.00016001 1.78826e-06 0.000158352 3.59296e-05 0.000155119 6.96901e-05 0.000150278 0.000102566 0.000143969 0.000134124 0.00013627 0.000163967 0.000127209 0.000191647 0.000116972 0.000216688 0.000105742 0.000238687 9.35812e-05 0.000257549 8.07374e-05 0.000272959 6.74003e-05 0.000284683 5.36699e-05 0.000292869 3.97959e-05 0.000297412 2.59404e-05 0.000298495 1.22253e-05 0.000296386 -1.1658e-06 0.000291262 -1.41283e-05 0.000283497 -2.6578e-05 0.000273485 -3.83936e-05 0.000261468 -4.95284e-05 0.000247831 -5.99548e-05 0.000232985 -6.95939e-05 0.000217067 -7.84668e-05 0.000200516 -8.65358e-05 0.000183536 -9.37849e-05 0.000166055 -0.000100258 0.00014878 -0.000105927 0.00013143 -0.000110809 0.000113962 -0.000114951 9.72867e-05 -0.000118353 8.0768e-05 -0.000121055 6.4045e-05 -0.00012305 4.8473e-05 -0.000124371 3.28282e-05 -0.000125022 1.7755e-05 -0.000125024 2.9033e-06 -0.00012445 -1.11092e-05 -0.000123283 -2.51824e-05 -0.000121522 -3.85394e-05 -0.000119153 -5.26026e-05 -0.000116249 -6.51283e-05 -0.000112731 -7.89452e-05 -0.00010867 -9.13463e-05 -0.000104045 -0.000103552 -9.88636e-05 -0.000115756 -9.32347e-05 -0.000127642 -8.70627e-05 -0.000138701 -8.04247e-05 -0.000149496 -7.33178e-05 -0.000159899 -6.57257e-05 -0.00016937 -5.77413e-05 -0.000178682 -4.94138e-05 -0.000186698 -4.07191e-05 -0.000194416 -3.16758e-05 -0.000201264 -2.24297e-05 -0.000206367 -1.28973e-05 -0.000211076 -3.16274e-06 -0.000215165 6.6698e-06 -0.000216177 1.65878e-05 -0.000217187 2.64524e-05 -0.000216231 3.62373e-05 -0.000213387 4.58047e-05 -0.000208597 5.50447e-05 -0.000201816 6.3995e-05 -0.000194283 7.24385e-05 -0.000184564 8.04342e-05 -0.000172885 8.77691e-05 -0.000159879 9.44151e-05 -0.000145657 0.000100396 -0.000130204 0.000105516 -0.000113211 0.000109871 -9.60885e-05 0.000113371 -7.76044e-05 0.000116021 -5.96754e-05 0.000117762 -4.03727e-05 0.000118654 -2.24376e-05 0.000118641 -2.99371e-06 0.000117739 1.57547e-05 0.000116074 3.33533e-05 0.000113584 5.01933e-05 0.000110373 6.54825e-05 0.000106579 7.95957e-05 0.000102139 9.25595e-05 9.71794e-05 0.00010364 9.18186e-05 0.000113244 8.60722e-05 0.000121563 8.01064e-05 0.000127958 7.39245e-05 0.000132397 6.76449e-05 0.000135283 6.12833e-05 0.000136854 5.49117e-05 0.000137298 4.86726e-05 0.000136239 4.25323e-05 0.000133857 3.6615e-05 0.000130333 3.08907e-05 0.000125779 2.54723e-05 0.00012039 2.02872e-05 0.000114289 1.54926e-05 0.000107497 1.10015e-05 0.00010031 6.82656e-06 9.26826e-05 3.1677e-06 8.45299e-05 -3.04044e-07 7.65399e-05 -3.26239e-06 6.87954e-05 -5.85573e-06 6.07265e-05 -8.06565e-06 5.28722e-05 -9.93781e-06 4.54491e-05 -1.14709e-05 3.82435e-05 -1.27326e-05 3.15368e-05 -1.36936e-05 2.50512e-05 1.88646e-05 -0.000121794 -0.000193474 -0.000112423 -0.000223642 -0.000101818 -0.000248855 -8.98661e-05 -0.000274526 -7.69174e-05 -0.000301053 -6.27472e-05 -0.000324165 -4.70322e-05 -0.000348971 -3.11863e-05 -0.000363087 -1.45037e-05 -0.000373955 2.37101e-06 -0.000383894 1.96957e-05 -0.0003902 3.7105e-05 -0.000388819 5.44651e-05 -0.000388552 7.16409e-05 -0.000382819 8.85456e-05 -0.000373817 0.000104682 -0.000358892 0.000119865 -0.000337775 0.000133945 -0.000314068 0.000146738 -0.000286551 0.00015821 -0.000256257 0.00016816 -0.000224587 0.000176477 -0.00018932 0.000183281 -0.000153929 0.000188364 -0.000115916 0.000191882 -7.84142e-05 0.00019363 -3.90101e-05 0.000193834 -2.52756e-06 0.000192358 3.54611e-05 0.000189313 7.34468e-05 0.000184418 0.00011333 0.000177731 0.000154261 0.000169172 0.000191208 0.00015912 0.000227937 0.000147385 0.000260736 0.000133997 0.000292247 0.00011934 0.000320592 0.00010392 0.000341963 8.73089e-05 0.000361704 7.01907e-05 0.00037402 5.30686e-05 0.000381619 3.54167e-05 0.000384368 1.84831e-05 0.000380501 1.55452e-06 0.000374953 -1.45816e-05 0.000364153 -2.9947e-05 0.00034999 -4.44538e-05 0.000333659 -5.80009e-05 0.00031486 -7.05466e-05 0.000294641 -8.21127e-05 0.000274068 -9.26832e-05 0.000252721 -0.000102288 0.000231396 -0.000110977 0.00021071 -0.00011876 0.000190041 -0.000125762 0.000170748 -0.000131962 0.000151023 -0.000137395 0.000131736 -0.000142127 0.00011442 -0.000146128 9.51666e-05 -0.000149339 7.60966e-05 -0.000151791 5.81642e-05 -0.000153402 3.83126e-05 -0.000154176 2.05581e-05 -0.000154139 6.23243e-07 -0.000153105 -2.02454e-05 -0.000151375 -3.7738e-05 -0.000148833 -5.6267e-05 -0.000145375 -7.39235e-05 -0.00014151 -8.89866e-05 -0.00013675 -0.000105934 -0.000131583 -0.000119314 -0.00012597 -0.000131529 -0.00011969 -0.000145066 -0.000113088 -0.000156211 -0.000106209 -0.000167277 -9.85526e-05 -0.000179574 -9.07599e-05 -0.000190024 -8.24986e-05 -0.00020261 -7.35509e-05 -0.000214054 -6.43703e-05 -0.000225609 -5.43822e-05 -0.000238816 -4.40784e-05 -0.000250334 -3.29666e-05 -0.000263131 -2.14169e-05 -0.00027438 -9.32938e-06 -0.000286542 3.30937e-06 -0.000296147 1.65842e-05 -0.000304713 3.01705e-05 -0.00031153 4.39724e-05 -0.000315396 5.81119e-05 -0.000317834 7.22383e-05 -0.00031585 8.63187e-05 -0.000311144 0.000100097 -0.000301854 0.000113424 -0.000288435 0.000126015 -0.000270212 0.000137663 -0.000247253 0.000148089 -0.000219578 0.000157117 -0.000187339 0.000164463 -0.000150672 0.000169889 -0.000110186 0.000173252 -6.6616e-05 0.000174412 -2.07723e-05 0.000173305 2.56827e-05 0.000170016 7.2113e-05 0.000164631 0.000117307 0.000157158 0.000161058 0.000147733 0.000201914 0.000136527 0.000239138 0.000123867 0.000271931 0.000109882 0.000300275 9.48622e-05 0.00032319 7.90504e-05 0.000340539 6.2844e-05 0.000352285 4.63511e-05 0.000358171 3.00244e-05 0.000358838 1.4033e-05 0.00035463 -1.38251e-06 0.000346104 -1.61309e-05 0.000334307 -3.00097e-05 0.000319454 -4.30455e-05 0.000303262 -5.52504e-05 0.000285577 -6.64089e-05 0.00026674 -7.68433e-05 0.000248386 -8.63548e-05 0.00022955 -9.49907e-05 0.000211006 -0.000102911 0.00019335 -0.000110039 0.000176044 -0.000116423 0.000159522 -0.000122172 0.000143443 -0.000127357 0.000129266 -0.000131921 0.000115079 -0.000136048 0.000101705 -0.000139641 8.88741e-05 -0.000142777 7.68103e-05 -0.000145521 6.44474e-05 -0.000147619 5.16879e-05 -0.000149359 3.97772e-05 -0.000150706 2.75458e-05 -0.000151385 1.38013e-05 -0.000151674 3.73249e-07 -0.000151338 -1.40898e-05 -0.000150319 -3.06131e-05 -0.000148582 -4.68208e-05 -0.000146276 -6.39523e-05 -0.000143102 -8.29295e-05 -0.000139026 -0.000102838 -0.000134028 -0.000123475 -0.000128174 -0.000144485 -0.000121152 -0.000166833 -0.000113287 -0.000188577 -0.000104391 -0.000210361 -9.44794e-05 -0.000231955 -8.36418e-05 -0.000252594 -7.18224e-05 -0.000272697 -5.91985e-05 -0.000290705 -4.57139e-05 -0.000307665 -3.14957e-05 -0.000322093 -1.66514e-05 -0.000334176 -1.32405e-06 -0.000343067 1.43225e-05 -0.000348361 3.00892e-05 -0.000349788 4.57943e-05 -0.000347154 6.12008e-05 -0.000340086 7.6077e-05 -0.000328673 9.02473e-05 -0.000313348 0.000103556 -0.000294116 0.000115789 -0.000271294 0.000126816 -0.000245278 0.000136503 -0.000216539 0.000144794 -0.000185673 0.000151589 -0.000152998 0.000156862 -0.000118995 0.000160549 -8.38899e-05 0.000162652 -4.8271e-05 0.000163111 -1.23506e-05 0.000162013 2.32599e-05 0.000159344 5.83127e-05 0.000155184 9.25933e-05 0.00014959 0.000125657 0.00014257 0.000157724 0.000134181 0.000188247 0.000124486 0.000216824 0.000113613 0.00024324 0.000101664 0.000267049 8.87396e-05 0.000288121 7.50447e-05 0.000305835 6.06959e-05 0.000320292 4.58622e-05 0.0003313 3.07225e-05 0.000338686 1.5387e-05 0.000342469 1.10341e-07 0.000342474 -1.4961e-05 0.000338997 -2.96471e-05 0.000332088 -4.38142e-05 0.000322297 -5.74125e-05 0.000310024 -7.02826e-05 0.000295401 -8.23639e-05 0.000278968 -9.36275e-05 0.000260803 -0.000103948 0.000241309 -0.000113337 0.000221026 -0.000121759 0.000200092 -0.000129274 0.000179274 -0.0001359 0.000158154 -0.000141561 0.000136814 -0.000146248 0.000115538 -0.000150031 9.49582e-05 -0.000153035 7.50878e-05 -0.000155186 5.54983e-05 -0.00015656 3.66693e-05 -0.000157148 1.81806e-05 -0.000156993 3.26742e-07 -0.000156175 -1.67698e-05 -0.000154673 -3.35625e-05 -0.000152475 -5.01287e-05 -0.00014961 -6.63267e-05 -0.000146094 -8.21447e-05 -0.000141956 -9.76035e-05 -0.000137181 -0.000112962 -0.000131754 -0.00012808 -0.000125738 -0.000143022 -0.000119114 -0.000157788 -0.000111864 -0.000172319 -0.000103951 -0.000186834 -9.54646e-05 -0.000200872 -8.64016e-05 -0.000214518 -7.67393e-05 -0.000227852 -6.65026e-05 -0.000240627 -5.5715e-05 -0.000252745 -4.43923e-05 -0.000264119 -3.2586e-05 -0.000274426 -2.03548e-05 -0.000283589 -7.69376e-06 -0.000291371 5.27723e-06 -0.000297533 1.85087e-05 -0.000301667 3.18809e-05 -0.000303493 4.52839e-05 -0.000302875 5.85978e-05 -0.000299654 7.16865e-05 -0.00029352 8.44314e-05 -0.000284484 9.67222e-05 -0.000272498 0.000108371 -0.000257258 0.00011922 -0.000238687 0.000129123 -0.000217003 0.000137941 -0.000192367 0.000145551 -0.000164965 0.000151786 -0.000134941 0.000156554 -0.000102698 0.000159754 -6.88061e-05 0.000161371 -3.37649e-05 0.000161311 1.84768e-06 0.000159641 3.75997e-05 0.000156361 7.29702e-05 0.000151481 0.000107446 0.000145107 0.000140498 0.000137302 0.000171772 0.000128151 0.000200798 0.000117807 0.000227031 0.000106429 0.000250066 9.41551e-05 0.000269822 8.11743e-05 0.000285939 6.76673e-05 0.00029819 5.38381e-05 0.000306699 3.982e-05 0.00031143 2.58173e-05 0.000312497 1.19967e-05 0.000310207 -1.47951e-06 0.000304738 -1.4557e-05 0.000296575 -2.70751e-05 0.000286003 -3.892e-05 0.000273313 -5.01505e-05 0.000259061 -6.06019e-05 0.000243436 -7.02374e-05 0.000226703 -7.91619e-05 0.00020944 -8.72402e-05 0.000191614 -9.44655e-05 0.00017328 -0.000100964 0.000155279 -0.000106621 0.000137088 -0.000111477 0.000118817 -0.000115621 0.000101431 -0.000118995 8.41416e-05 -0.000121688 6.67383e-05 -0.000123677 5.04624e-05 -0.000124982 3.41329e-05 -0.000125619 1.83924e-05 -0.000125613 2.89704e-06 -0.000125014 -1.17084e-05 -0.000123833 -2.6363e-05 -0.000122064 -4.03085e-05 -0.000119682 -5.49849e-05 -0.000116765 -6.8045e-05 -0.000113247 -8.24638e-05 -0.000109168 -9.54249e-05 -0.000104526 -0.000108194 -9.93367e-05 -0.000120945 -9.36869e-05 -0.000133291 -8.75112e-05 -0.000144877 -8.08412e-05 -0.000156166 -7.37068e-05 -0.000167033 -6.60916e-05 -0.000176985 -5.80854e-05 -0.000186688 -4.97174e-05 -0.000195066 -4.09918e-05 -0.000203142 -3.19045e-05 -0.000210352 -2.26188e-05 -0.000215652 -1.30422e-05 -0.000220653 -3.27201e-06 -0.000224935 6.63505e-06 -0.000226084 1.66296e-05 -0.000227182 2.65737e-05 -0.000226175 3.64103e-05 -0.000223224 4.60411e-05 -0.000218228 5.53559e-05 -0.00021113 6.43855e-05 -0.000203312 7.29063e-05 -0.000193085 8.09459e-05 -0.000180924 8.83397e-05 -0.000167272 9.50199e-05 -0.000152337 0.00010104 -0.000136224 0.000106213 -0.000118384 0.000110614 -0.00010049 0.000114108 -8.10983e-05 0.000116752 -6.23201e-05 0.000118492 -4.21123e-05 0.000119356 -2.33014e-05 0.000119339 -2.97743e-06 0.00011843 1.66636e-05 0.000116709 3.50747e-05 0.000114159 5.2743e-05 0.000110939 6.87032e-05 0.00010707 8.34645e-05 0.00010257 9.7059e-05 9.75473e-05 0.000108663 9.21854e-05 0.000118606 8.63222e-05 0.000127427 8.02815e-05 0.000133999 7.4075e-05 0.000138603 6.77063e-05 0.000141652 6.12807e-05 0.000143279 5.48819e-05 0.000143697 4.85694e-05 0.000142551 4.2428e-05 0.000139998 3.64238e-05 0.000136337 3.07239e-05 0.000131479 2.52352e-05 0.000125879 2.00357e-05 0.000119489 1.52181e-05 0.000112314 1.06684e-05 0.00010486 6.58366e-06 9.67673e-05 2.83424e-06 8.82793e-05 -6.2687e-07 8.0001e-05 -3.58958e-06 7.17581e-05 -6.17514e-06 6.3312e-05 -8.37182e-06 5.50689e-05 -1.02261e-05 4.73034e-05 -1.17441e-05 3.97615e-05 -1.29835e-05 3.27761e-05 -1.39275e-05 2.59952e-05 1.95741e-05 -0.000122814 -0.000201347 -0.000113445 -0.000233011 -0.000102802 -0.000259497 -9.07618e-05 -0.000286566 -7.78064e-05 -0.000314008 -6.35056e-05 -0.000338466 -4.76165e-05 -0.00036486 -3.17184e-05 -0.000378985 -1.48126e-05 -0.000390861 2.13144e-06 -0.000400839 1.95973e-05 -0.000407666 3.71791e-05 -0.000406401 5.4697e-05 -0.000406071 7.2043e-05 -0.000400165 8.91214e-05 -0.000390896 0.00010541 -0.000375181 0.000120771 -0.000353136 0.000134978 -0.000328274 0.000147885 -0.000299458 0.000159459 -0.000267832 0.000169489 -0.000234616 0.000177874 -0.000197706 0.000184728 -0.000160783 0.000189841 -0.000121029 0.000193397 -8.19709e-05 0.000195156 -4.07687e-05 0.000195381 -2.75255e-06 0.00019391 3.69316e-05 0.00019087 7.6487e-05 0.000185965 0.000118235 0.000179162 0.000161065 0.000170629 0.00019974 0.000160426 0.00023814 0.000148613 0.000272549 0.000135206 0.000305653 0.00012024 0.000335557 0.000104522 0.000357681 8.80009e-05 0.000378226 7.04878e-05 0.000391533 5.31879e-05 0.000398919 3.53294e-05 0.000402226 1.80593e-05 0.000397771 1.12625e-06 0.000391886 -1.51427e-05 0.000380422 -3.0614e-05 0.000365461 -4.52009e-05 0.000348246 -5.88015e-05 0.000328461 -7.1377e-05 0.000307216 -8.29571e-05 0.000285648 -9.35283e-05 0.000263292 -0.000103123 0.000240991 -0.000111794 0.00021938 -0.000119553 0.0001978 -0.000126535 0.00017773 -0.000132722 0.00015721 -0.000138144 0.000137158 -0.000142871 0.000119147 -0.000146877 9.91725e-05 -0.000150087 7.9307e-05 -0.000152566 6.06433e-05 -0.000154186 3.99319e-05 -0.000154949 2.13212e-05 -0.0001549 5.74493e-07 -0.000153845 -2.13009e-05 -0.000152068 -3.95146e-05 -0.000149506 -5.88285e-05 -0.000146012 -7.74185e-05 -0.000142098 -9.29e-05 -0.000137348 -0.000110684 -0.000132131 -0.000124531 -0.00012648 -0.00013718 -0.000120188 -0.000151359 -0.000113553 -0.000162847 -0.000106679 -0.000174151 -9.9014e-05 -0.000187239 -9.12604e-05 -0.000197778 -8.30052e-05 -0.000210865 -7.40757e-05 -0.000222983 -6.49233e-05 -0.000234761 -5.49454e-05 -0.000248794 -4.44986e-05 -0.000260781 -3.35785e-05 -0.000274052 -2.19296e-05 -0.000286029 -1.00483e-05 -0.000298424 2.82389e-06 -0.000309019 1.61842e-05 -0.000318073 2.98117e-05 -0.000325158 4.37698e-05 -0.000329354 5.79871e-05 -0.000332052 7.21852e-05 -0.000330048 8.64749e-05 -0.000325434 0.000100424 -0.000315803 0.000113923 -0.000301935 0.00012671 -0.000282999 0.000138554 -0.000259096 0.000149208 -0.000230232 0.00015835 -0.000196481 0.00016584 -0.000158162 0.000171425 -0.000115771 0.000174842 -7.00329e-05 0.000176012 -2.19425e-05 0.00017496 2.67355e-05 0.000171671 7.54017e-05 0.000166139 0.000122838 0.000158554 0.000168643 0.000148974 0.000211494 0.000137625 0.000250486 0.000124795 0.000284762 0.000110578 0.000314492 9.53401e-05 0.000338428 7.93111e-05 0.000356568 6.28405e-05 0.000368756 4.6176e-05 0.000374836 2.96572e-05 0.000375357 1.35016e-05 0.000370786 -2.04348e-06 0.000361649 -1.69072e-05 0.00034917 -3.08738e-05 0.00033342 -4.38775e-05 0.000316266 -5.61812e-05 0.00029788 -6.73664e-05 0.000277925 -7.77792e-05 0.000258799 -8.72869e-05 0.000239057 -9.58915e-05 0.00021961 -0.000103789 0.000201248 -0.000110856 0.000183111 -0.00011732 0.000165986 -0.000122952 0.000149075 -0.000128113 0.000134426 -0.000132703 0.00011967 -0.000136787 0.000105788 -0.000140328 9.24149e-05 -0.000143482 7.99649e-05 -0.000146213 6.71784e-05 -0.000148295 5.377e-05 -0.000150037 4.15189e-05 -0.000151417 2.89262e-05 -0.000152144 1.4528e-05 -0.000152436 6.65105e-07 -0.000152227 -1.42991e-05 -0.000151159 -3.16803e-05 -0.000149472 -4.85078e-05 -0.000147206 -6.62186e-05 -0.000144064 -8.60717e-05 -0.000140025 -0.000106878 -0.000135015 -0.000128484 -0.000129217 -0.000150283 -0.000122236 -0.000173815 -0.000114306 -0.000196507 -0.000105404 -0.000219263 -9.5467e-05 -0.000241892 -8.45532e-05 -0.000263508 -7.26992e-05 -0.000284551 -6.00247e-05 -0.000303379 -4.64427e-05 -0.000321247 -3.21092e-05 -0.000336427 -1.71468e-05 -0.000349138 -1.67571e-06 -0.000358538 1.41289e-05 -0.000364165 3.00682e-05 -0.000365727 4.59364e-05 -0.000363022 6.15191e-05 -0.000355669 7.65565e-05 -0.00034371 9.09016e-05 -0.000327693 0.000104336 -0.000307551 0.000116691 -0.000283648 0.00012783 -0.000256417 0.000137622 -0.000226331 0.000145973 -0.000194024 0.000152818 -0.000159843 0.000158132 -0.000124309 0.000161862 -8.76199e-05 0.000163947 -5.03559e-05 0.000164412 -1.28162e-05 0.000163282 2.43906e-05 0.000160589 6.10054e-05 0.000156398 9.67837e-05 0.00015075 0.000131306 0.000143674 0.000164801 0.000135201 0.00019672 0.000125427 0.000226598 0.000114459 0.000254208 0.000102395 0.000279114 8.93479e-05 0.000301168 7.55279e-05 0.000319655 6.10387e-05 0.000334782 4.60613e-05 0.000346278 3.07581e-05 0.000353989 1.52968e-05 0.00035793 -1.12811e-07 0.000357884 -1.53198e-05 0.000354204 -3.01176e-05 0.000346886 -4.43902e-05 0.00033657 -5.80748e-05 0.000323708 -7.10215e-05 0.000308348 -8.31912e-05 0.000291138 -9.44908e-05 0.000272103 -0.000104825 0.000251643 -0.000114227 0.000230428 -0.000122669 0.000208534 -0.000130195 0.0001868 -0.000136829 0.000164788 -0.000142482 0.000142466 -0.000147142 0.000120199 -0.000150924 9.87404e-05 -0.00015389 7.80537e-05 -0.000156017 5.76256e-05 -0.00015737 3.80219e-05 -0.000157945 1.87552e-05 -0.000157755 1.3678e-07 -0.000156917 -1.76076e-05 -0.000155407 -3.50724e-05 -0.000153185 -5.2351e-05 -0.00015032 -6.9191e-05 -0.000146784 -8.56812e-05 -0.000142636 -0.000101752 -0.000137836 -0.000117762 -0.000132439 -0.000133477 -0.000126415 -0.000149046 -0.00011977 -0.000164433 -0.000112511 -0.000179578 -0.0001046 -0.000194745 -9.60976e-05 -0.000209375 -8.70006e-05 -0.000223615 -7.73127e-05 -0.00023754 -6.70493e-05 -0.00025089 -5.62097e-05 -0.000263585 -4.48726e-05 -0.000275456 -3.30303e-05 -0.000286268 -2.07349e-05 -0.000295884 -8.02398e-06 -0.000304082 5.0481e-06 -0.000310606 1.83701e-05 -0.00031499 3.18444e-05 -0.000316968 4.53558e-05 -0.000316386 5.87744e-05 -0.000313073 7.19831e-05 -0.000306728 8.48468e-05 -0.000297348 9.72739e-05 -0.000284925 0.000109044 -0.000269028 0.000120018 -0.000249661 0.000130065 -0.00022705 0.000138999 -0.0002013 0.000146671 -0.000172638 0.000153005 -0.000141275 0.000157842 -0.000107534 0.000161094 -7.2058e-05 0.000162704 -3.5375e-05 0.000162674 1.87734e-06 0.000160997 3.92765e-05 0.000157664 7.63035e-05 0.00015274 0.00011237 0.000146317 0.000146922 0.000138399 0.000179689 0.000129145 0.000210052 0.00011871 0.000237466 0.000107168 0.000261608 9.47564e-05 0.000282234 8.16542e-05 0.000299042 6.79689e-05 0.000311875 5.39743e-05 0.000320693 3.98365e-05 0.000325568 2.56968e-05 0.000326637 1.17568e-05 0.000324147 -1.83981e-06 0.000318334 -1.50009e-05 0.000309736 -2.75951e-05 0.000298597 -3.95431e-05 0.000285261 -5.07938e-05 0.000270312 -6.1278e-05 0.000253921 -7.09796e-05 0.000236405 -7.9887e-05 0.000218347 -8.79736e-05 0.000199701 -9.52375e-05 0.000180544 -0.000101698 0.000161739 -0.000107345 0.000142735 -0.000112219 0.000123691 -0.000116318 0.000105531 -0.000119665 8.74884e-05 -0.000122375 6.94485e-05 -0.000124332 5.24188e-05 -0.000125618 3.54199e-05 -0.00012624 1.90138e-05 -0.000126218 2.87551e-06 -0.0001256 -1.23267e-05 -0.000124411 -2.75518e-05 -0.000122627 -4.20923e-05 -0.000120229 -5.73833e-05 -0.000117287 -7.09868e-05 -0.000113783 -8.59681e-05 -0.000109686 -9.95221e-05 -0.000105036 -0.000112844 -9.98275e-05 -0.000126153 -9.41564e-05 -0.000138963 -8.7974e-05 -0.000151059 -8.12715e-05 -0.000162868 -7.411e-05 -0.000174195 -6.64807e-05 -0.000184614 -5.84412e-05 -0.000194728 -5.00302e-05 -0.000203477 -4.12792e-05 -0.000211893 -3.21473e-05 -0.000219484 -2.28185e-05 -0.000224981 -1.31914e-05 -0.00023028 -3.401e-06 -0.000234726 6.59465e-06 -0.00023608 1.66818e-05 -0.000237269 2.66818e-05 -0.000236175 3.65826e-05 -0.000233124 4.62973e-05 -0.000227943 5.5693e-05 -0.000220526 6.48054e-05 -0.000212425 7.33718e-05 -0.000201652 8.14816e-05 -0.000189034 8.89254e-05 -0.000174716 9.56576e-05 -0.000159069 0.000101734 -0.0001423 0.000106966 -0.000123616 0.000111359 -0.000104883 0.000114868 -8.4607e-05 0.000117508 -6.49599e-05 0.00011924 -4.38441e-05 0.000120128 -2.419e-05 0.000120055 -2.90423e-06 0.000119149 1.75699e-05 0.000117362 3.68613e-05 0.000114789 5.53159e-05 0.000111538 7.19542e-05 0.000107582 8.74209e-05 0.000102999 0.000101642 9.79826e-05 0.000113679 9.25078e-05 0.000124081 8.65819e-05 0.000133353 8.04892e-05 0.000140091 7.42007e-05 0.000144892 6.7772e-05 0.000148081 6.12851e-05 0.000149766 5.48616e-05 0.000150121 4.84619e-05 0.000148951 4.22837e-05 0.000146177 3.62666e-05 0.000142354 3.05024e-05 0.000137243 2.49664e-05 0.000131415 1.98121e-05 0.000124643 1.49183e-05 0.000117208 1.03647e-05 0.000109414 6.2531e-06 0.000100879 2.43476e-06 9.20976e-05 -9.66045e-07 8.34018e-05 -3.93102e-06 7.47231e-05 -6.50932e-06 6.58903e-05 -8.69367e-06 5.72533e-05 -1.05277e-05 4.91374e-05 -1.20301e-05 4.12639e-05 -1.32453e-05 3.39913e-05 -1.41721e-05 2.6922e-05 2.02682e-05 -0.000123886 -0.000209173 -0.000114522 -0.000242376 -0.000103848 -0.000270171 -9.16965e-05 -0.000298718 -7.87554e-05 -0.000326949 -6.43093e-05 -0.000352912 -4.82245e-05 -0.000380945 -3.2304e-05 -0.000394905 -1.51548e-05 -0.00040801 1.86973e-06 -0.000417863 1.9489e-05 -0.000425285 3.72596e-05 -0.000424171 5.49111e-05 -0.000423722 7.2464e-05 -0.000417718 8.97282e-05 -0.00040816 0.000106186 -0.000391639 0.000121734 -0.000368684 0.000136066 -0.000342607 0.000149083 -0.000312476 0.000160731 -0.000279479 0.000170883 -0.000244769 0.000179348 -0.000206171 0.000186196 -0.000167632 0.000191394 -0.000126227 0.000194942 -8.55196e-05 0.000196754 -4.25802e-05 0.000196967 -2.96651e-06 0.000195533 3.83664e-05 0.000192501 7.95187e-05 0.000187619 0.000123116 0.000180713 0.000167971 0.000172217 0.000208235 0.000161722 0.000248635 0.000149902 0.000284369 0.000136372 0.000319183 0.000121199 0.00035073 0.000105228 0.000373652 8.85431e-05 0.000394911 7.07976e-05 0.000409279 5.33241e-05 0.000416392 3.52631e-05 0.000420287 1.77132e-05 0.000415321 6.73765e-07 0.000408926 -1.57356e-05 0.000396832 -3.13164e-05 0.000381042 -4.59868e-05 0.000362917 -5.96425e-05 0.000342116 -7.22485e-05 0.000319822 -8.38418e-05 0.000297241 -9.44129e-05 0.000273863 -0.000103996 0.000250574 -0.000112645 0.00022803 -0.000120379 0.000205534 -0.000127339 0.000184689 -0.000133512 0.000163384 -0.000138923 0.000142568 -0.000143644 0.000123868 -0.000147655 0.000103184 -0.000150878 8.253e-05 -0.000153382 6.31468e-05 -0.000155007 4.15574e-05 -0.000155757 2.20709e-05 -0.000155698 5.15676e-07 -0.000154621 -2.2378e-05 -0.000152806 -4.13292e-05 -0.000150215 -6.14201e-05 -0.000146676 -8.09573e-05 -0.00014266 -9.6916e-05 -0.000137974 -0.00011537 -0.000132724 -0.000129781 -0.000127016 -0.000142888 -0.000120718 -0.000157656 -0.000114044 -0.00016952 -0.000107172 -0.000181023 -9.95124e-05 -0.000194898 -9.18111e-05 -0.000205479 -8.35447e-05 -0.000219132 -7.46328e-05 -0.000231895 -6.53641e-05 -0.00024403 -5.55578e-05 -0.0002586 -4.50222e-05 -0.000271316 -3.43432e-05 -0.000284731 -2.24932e-05 -0.000297879 -1.06094e-05 -0.000310307 2.35289e-06 -0.000321982 1.57582e-05 -0.000331479 2.93827e-05 -0.000338782 4.35228e-05 -0.000343495 5.78415e-05 -0.00034637 7.21011e-05 -0.000344308 8.66286e-05 -0.000339962 0.000100748 -0.000329922 0.000114428 -0.000315616 0.000127421 -0.000295992 0.000139461 -0.000271135 0.000150271 -0.000241042 0.000159646 -0.000205857 0.000167296 -0.000165812 0.000173012 -0.000121487 0.000176511 -7.35323e-05 0.000177722 -2.31533e-05 0.000176633 2.78241e-05 0.000173278 7.87566e-05 0.000167708 0.000128408 0.000160023 0.000176328 0.000150312 0.000221205 0.000138835 0.000261963 0.000125746 0.000297851 0.000111302 0.000328936 9.58515e-05 0.000353879 7.95908e-05 0.000372829 6.28529e-05 0.000385494 4.59768e-05 0.000391712 2.92722e-05 0.000392061 1.29464e-05 0.000387112 -2.75513e-06 0.000377351 -1.76558e-05 0.000364071 -3.17722e-05 0.000347537 -4.48881e-05 0.000329382 -5.7173e-05 0.000310165 -6.83465e-05 0.000289098 -7.87601e-05 0.000269212 -8.8268e-05 0.000248565 -9.68612e-05 0.000228204 -0.00010471 0.000209096 -0.000111802 0.000190204 -0.000118199 0.000172382 -0.000123766 0.000154642 -0.000128865 0.000139525 -0.000133492 0.000124298 -0.000137528 0.000109823 -0.000141044 9.59315e-05 -0.000144188 8.31088e-05 -0.000146935 6.99251e-05 -0.000149033 5.58679e-05 -0.000150761 4.32466e-05 -0.000152139 3.03046e-05 -0.000152949 1.53385e-05 -0.000153235 9.50598e-07 -0.000153095 -1.44389e-05 -0.000152032 -3.2743e-05 -0.00015038 -5.01606e-05 -0.000148168 -6.84304e-05 -0.000145074 -8.91658e-05 -0.00014107 -0.000110881 -0.000136093 -0.000133461 -0.000130313 -0.000156063 -0.000123325 -0.000180803 -0.000115378 -0.000204454 -0.000106478 -0.000228163 -9.64935e-05 -0.000251877 -8.55694e-05 -0.000274432 -7.36182e-05 -0.000296502 -6.08885e-05 -0.000316109 -4.72066e-05 -0.000334929 -3.27522e-05 -0.000350881 -1.76526e-05 -0.000364238 -2.04146e-06 -0.00037415 1.39311e-05 -0.000380138 3.0036e-05 -0.000381832 4.60856e-05 -0.000379072 6.18587e-05 -0.000371442 7.70656e-05 -0.000358917 9.15634e-05 -0.000342191 0.000105161 -0.000321149 0.00011765 -0.000296137 0.000128906 -0.000267673 0.000138771 -0.000236197 0.000147232 -0.000202485 0.000154127 -0.000166738 0.00015948 -0.000129662 0.00016322 -9.13599e-05 0.000165327 -5.24626e-05 0.00016579 -1.32798e-05 0.000164623 2.55578e-05 0.000161906 6.37223e-05 0.000157665 0.000101025 0.000151975 0.000136995 0.000144843 0.000171933 0.000136281 0.000205282 0.000126423 0.000236455 0.000115355 0.000265277 0.000103167 0.000291302 8.99853e-05 0.00031435 7.60161e-05 0.000333624 6.1398e-05 0.0003494 4.6292e-05 0.000361384 3.0818e-05 0.000369463 1.52041e-05 0.000373544 -3.52885e-07 0.000373441 -1.57e-05 0.000369551 -3.06137e-05 0.000361799 -4.50008e-05 0.000350957 -5.87712e-05 0.000337479 -7.17873e-05 0.000321364 -8.40316e-05 0.000303382 -9.53882e-05 0.00028346 -0.000105759 0.000262014 -0.000115202 0.000239871 -0.000123621 0.000216953 -0.000131165 0.000194344 -0.000137799 0.000171422 -0.000143447 0.000148115 -0.000148081 0.000124832 -0.000151836 0.000102495 -0.000154775 8.09929e-05 -0.000156882 5.97331e-05 -0.000158194 3.93332e-05 -0.000158773 1.93345e-05 -0.000158546 -9.06891e-08 -0.000157676 -1.84769e-05 -0.00015616 -3.65887e-05 -0.000153957 -5.45539e-05 -0.000151059 -7.2089e-05 -0.000147497 -8.92429e-05 -0.000143336 -0.000105913 -0.000138563 -0.000122535 -0.000133149 -0.000138892 -0.000127108 -0.000155087 -0.000120451 -0.00017109 -0.000113189 -0.00018684 -0.000105267 -0.000202667 -9.67389e-05 -0.000217903 -8.76245e-05 -0.000232729 -7.79027e-05 -0.000247262 -6.76061e-05 -0.000261187 -5.67702e-05 -0.000274421 -4.53789e-05 -0.000286848 -3.34861e-05 -0.000298161 -2.11329e-05 -0.000308238 -8.34926e-06 -0.000316865 4.80598e-06 -0.000323761 1.82214e-05 -0.000328405 3.1827e-05 -0.000330573 4.54111e-05 -0.00032997 5.89603e-05 -0.000326622 7.22876e-05 -0.000320056 8.53021e-05 -0.000310362 9.783e-05 -0.000297453 0.000109749 -0.000280947 0.000120851 -0.000260763 0.000131006 -0.000237205 0.000140048 -0.000210343 0.000147854 -0.000180444 0.000154282 -0.000147703 0.000159185 -0.000112437 0.000162503 -7.53766e-05 0.000164126 -3.69981e-05 0.000164101 1.90251e-06 0.000162424 4.09535e-05 0.000159046 7.9681e-05 0.00015406 0.000117356 0.000147555 0.000153426 0.000139553 0.000187692 0.000130188 0.000219417 0.000119634 0.000248019 0.000107943 0.000273299 9.53887e-05 0.000294789 8.21378e-05 0.000312293 6.82823e-05 0.000325731 5.41418e-05 0.000334834 3.98332e-05 0.000339877 2.55675e-05 0.000340903 1.15197e-05 0.000338194 -2.21654e-06 0.000332071 -1.54676e-05 0.000322987 -2.81126e-05 0.000311242 -4.01674e-05 0.000297316 -5.14657e-05 0.00028161 -6.19587e-05 0.000264414 -7.17238e-05 0.00024617 -8.06454e-05 0.000227269 -8.87205e-05 0.000207776 -9.60157e-05 0.000187839 -0.000102463 0.000168187 -0.0001081 0.000148371 -0.000112971 0.000128563 -0.000117043 0.000109602 -0.00012037 9.08154e-05 -0.000123076 7.21548e-05 -0.000125012 5.43547e-05 -0.000126279 3.66864e-05 -0.000126884 1.96189e-05 -0.00012685 2.84187e-06 -0.00012621 -1.29666e-05 -0.00012501 -2.8752e-05 -0.000123212 -4.38906e-05 -0.000120803 -5.97917e-05 -0.000117821 -7.39684e-05 -0.000114339 -8.94508e-05 -0.000110227 -0.000103634 -0.000105569 -0.000117502 -0.000100337 -0.000131385 -9.46584e-05 -0.000144642 -8.84523e-05 -0.000157265 -8.17086e-05 -0.000169612 -7.45363e-05 -0.000181367 -6.6888e-05 -0.000192263 -5.88076e-05 -0.000202808 -5.03509e-05 -0.000211934 -4.15517e-05 -0.000220692 -3.24028e-05 -0.000228633 -2.30274e-05 -0.000234356 -1.33494e-05 -0.000239958 -3.50814e-06 -0.000244567 6.56196e-06 -0.00024615 1.67357e-05 -0.000247443 2.6795e-05 -0.000246234 3.6769e-05 -0.000243098 4.65752e-05 -0.000237749 5.60559e-05 -0.000230007 6.52206e-05 -0.000221589 7.38587e-05 -0.00021029 8.20288e-05 -0.000197204 8.95432e-05 -0.000182231 9.63448e-05 -0.000165871 0.000102478 -0.000148433 0.00010772 -0.000128859 0.000112137 -0.0001093 0.000115651 -8.81211e-05 0.000118296 -6.76056e-05 0.000120055 -4.56032e-05 0.00012093 -2.50642e-05 0.000120819 -2.7936e-06 0.000119883 1.85062e-05 0.000118054 3.86894e-05 0.000115482 5.78881e-05 0.000112131 7.53054e-05 0.000108096 9.14563e-05 0.000103493 0.000106245 9.83934e-05 0.000118778 9.28472e-05 0.000129627 8.6866e-05 0.000139334 8.07121e-05 0.000146245 7.43332e-05 0.000151271 6.78275e-05 0.000154587 6.13512e-05 0.000156242 5.48069e-05 0.000156665 4.84003e-05 0.000155358 4.21126e-05 0.000152464 3.61002e-05 0.000148367 3.02641e-05 0.000143079 2.47421e-05 0.000136937 1.95202e-05 0.000129865 1.45783e-05 0.00012215 1.00958e-05 0.000113896 5.89948e-06 0.000105075 2.11101e-06 9.58861e-05 -1.32087e-06 8.68337e-05 -4.29021e-06 7.76925e-05 -6.85761e-06 6.84577e-05 -9.03094e-06 5.94266e-05 -1.08428e-05 5.09492e-05 -1.23297e-05 4.27509e-05 -1.35179e-05 3.51795e-05 -1.44288e-05 2.78329e-05 2.0944e-05 -0.000125007 -0.000216949 -0.000115658 -0.000251725 -0.000104959 -0.00028087 -9.26686e-05 -0.000311008 -7.9772e-05 -0.000339846 -6.51211e-05 -0.000367563 -4.88538e-05 -0.000397212 -3.2967e-05 -0.000410792 -1.55231e-05 -0.000425454 1.57575e-06 -0.000434962 1.93726e-05 -0.000443082 3.73496e-05 -0.000442148 5.514e-05 -0.000441513 7.29117e-05 -0.00043549 9.0367e-05 -0.000425615 0.000107002 -0.000408274 0.000122751 -0.000384433 0.00013721 -0.000357066 0.000150337 -0.000325604 0.000162088 -0.00029123 0.000172308 -0.00025499 0.000180898 -0.00021476 0.000187757 -0.000174491 0.00019303 -0.0001315 0.000196563 -8.90535e-05 0.000198453 -4.44699e-05 0.000198601 -3.1143e-06 0.000197231 3.97364e-05 0.000194213 8.2536e-05 0.000189383 0.000127947 0.000182352 0.000175001 0.000173852 0.000216736 0.000163142 0.000259345 0.000151175 0.000296336 0.000137552 0.000332806 0.000122245 0.000366037 0.000105991 0.000389906 8.91037e-05 0.000411798 7.11228e-05 0.00042726 5.33333e-05 0.000434182 3.52624e-05 0.000438358 1.7387e-05 0.000433196 1.97223e-07 0.000426116 -1.63614e-05 0.00041339 -3.2057e-05 0.000396738 -4.68129e-05 0.000377672 -6.05245e-05 0.000355828 -7.31617e-05 0.000332459 -8.47675e-05 0.000308847 -9.5337e-05 0.000284432 -0.000104906 0.000260142 -0.000113532 0.000236657 -0.000121239 0.000213241 -0.000128174 0.000191624 -0.000134333 0.000169542 -0.000139732 0.000147967 -0.000144444 0.000128581 -0.000148464 0.000107204 -0.000151706 8.57723e-05 -0.000154245 6.56858e-05 -0.000155869 4.31809e-05 -0.0001566 2.28023e-05 -0.000156533 4.48294e-07 -0.000155438 -2.34726e-05 -0.000153582 -4.31852e-05 -0.000150959 -6.40437e-05 -0.000147369 -8.45465e-05 -0.00014328 -0.000101005 -0.000138604 -0.000120046 -0.000133348 -0.000135037 -0.000127534 -0.000148702 -0.000121295 -0.000163895 -0.000114562 -0.000176253 -0.000107689 -0.000187896 -0.000100045 -0.000202543 -9.23977e-05 -0.000213126 -8.39819e-05 -0.000227548 -7.52341e-05 -0.000240643 -6.58935e-05 -0.000253371 -5.62914e-05 -0.000268203 -4.56205e-05 -0.000281987 -3.4964e-05 -0.000295387 -2.31027e-05 -0.00030974 -1.12132e-05 -0.000322197 1.83343e-06 -0.000335028 1.53023e-05 -0.000344948 2.89512e-05 -0.000352431 4.32595e-05 -0.000357803 5.76718e-05 -0.000360783 7.21372e-05 -0.000358773 8.67909e-05 -0.000354615 0.000101049 -0.00034418 0.000114956 -0.000329523 0.000128211 -0.000309247 0.0001404 -0.000283325 0.000151406 -0.000252048 0.000160983 -0.000215434 0.000168816 -0.000173645 0.000174657 -0.000127328 0.00017826 -7.71356e-05 0.000179517 -2.441e-05 0.00017841 2.89307e-05 0.000175031 8.21364e-05 0.000169369 0.00013407 0.000161577 0.000184121 0.000151696 0.000231086 0.000139978 0.000273682 0.000126754 0.000311074 0.000112087 0.000343603 9.64037e-05 0.000369562 7.98683e-05 0.000389365 6.28851e-05 0.000402477 4.57883e-05 0.000408809 2.88587e-05 0.000408991 1.24104e-05 0.00040356 -3.50069e-06 0.000393262 -1.85752e-05 0.000379146 -3.27239e-05 0.000361686 -4.58768e-05 0.000342535 -5.82084e-05 0.000322497 -6.94258e-05 0.000300316 -7.97714e-05 0.000279558 -8.92774e-05 0.000258071 -9.78582e-05 0.000236784 -0.000105676 0.000216914 -0.000112746 0.000197273 -0.00011911 0.000178747 -0.000124604 0.000160135 -0.000129713 0.000144634 -0.000134291 0.000128876 -0.000138286 0.000113818 -0.000141787 9.94328e-05 -0.000144938 8.62597e-05 -0.000147699 7.26866e-05 -0.000149781 5.79498e-05 -0.000151492 4.4957e-05 -0.000152954 3.17665e-05 -0.000153762 1.61474e-05 -0.000154065 1.25278e-06 -0.000153989 -1.45149e-05 -0.00015296 -3.37715e-05 -0.000151329 -5.17915e-05 -0.000149144 -7.06156e-05 -0.00014615 -9.21595e-05 -0.000142161 -0.000114871 -0.000137187 -0.000138435 -0.00013146 -0.000161789 -0.000124471 -0.000187792 -0.000116498 -0.000212428 -0.000107601 -0.00023706 -9.75768e-05 -0.000261901 -8.66214e-05 -0.000285388 -7.4584e-05 -0.00030854 -6.17898e-05 -0.000328903 -4.79991e-05 -0.00034872 -3.34409e-05 -0.00036544 -1.81975e-05 -0.000379481 -2.44734e-06 -0.0003899 1.37251e-05 -0.00039631 2.99878e-05 -0.000398095 4.62276e-05 -0.000395312 6.21974e-05 -0.000387412 7.75934e-05 -0.000374313 9.22408e-05 -0.000356839 0.000106008 -0.000334916 0.000118621 -0.00030875 0.000130018 -0.00027907 0.000139955 -0.000246134 0.000148485 -0.000211016 0.000155443 -0.000173696 0.000160859 -0.000135079 0.000164618 -9.51191e-05 0.000166738 -5.4583e-05 0.000167197 -1.37382e-05 0.000165994 2.67606e-05 0.000163246 6.64706e-05 0.000158955 0.000105316 0.000153226 0.000142724 0.00014604 0.000179119 0.000137388 0.000213934 0.000127439 0.000246405 0.000116268 0.000276447 0.000103958 0.000303611 9.06565e-05 0.000327652 7.65263e-05 0.000347754 6.17768e-05 0.000364149 4.64885e-05 0.000376672 3.0871e-05 0.000385081 1.50988e-05 0.000389316 -6.23218e-07 0.000389163 -1.60923e-05 0.000385021 -3.11265e-05 0.000376834 -4.56329e-05 0.000365463 -5.95e-05 0.000351346 -7.26099e-05 0.000334474 -8.48935e-05 0.000315666 -9.63291e-05 0.000294895 -0.000106739 0.000272424 -0.000116181 0.000249314 -0.000124599 0.000225371 -0.000132169 0.000201915 -0.00013881 0.000178062 -0.000144436 0.00015374 -0.000149078 0.000129474 -0.000152785 0.000106202 -0.000155683 8.38909e-05 -0.000157778 6.18286e-05 -0.00015911 4.06649e-05 -0.000159634 1.98589e-05 -0.000159366 -3.58574e-07 -0.000158498 -1.93453e-05 -0.000156974 -3.81128e-05 -0.000154746 -5.67812e-05 -0.000151825 -7.50108e-05 -0.000148252 -9.28157e-05 -0.000144079 -0.000110085 -0.000139304 -0.00012731 -0.000133877 -0.000144319 -0.000127826 -0.000161137 -0.000121159 -0.000177758 -0.000113895 -0.000194103 -0.000105957 -0.000210606 -9.74035e-05 -0.000226456 -8.8255e-05 -0.000241878 -7.85253e-05 -0.000256992 -6.82276e-05 -0.000271485 -5.734e-05 -0.000285309 -4.59047e-05 -0.000298283 -3.39623e-05 -0.000310103 -2.15505e-05 -0.000320649 -8.69736e-06 -0.000329719 4.55205e-06 -0.00033701 1.80708e-05 -0.000341924 3.17588e-05 -0.000344261 4.54721e-05 -0.000343683 5.91496e-05 -0.000340299 7.261e-05 -0.000333516 8.57226e-05 -0.000323475 9.84147e-05 -0.000310145 0.00011049 -0.000293022 0.000121723 -0.000271996 0.000132001 -0.000247483 0.000141164 -0.000219506 0.000149088 -0.000188368 0.000155614 -0.000154229 0.000160616 -0.000117439 0.000163944 -7.87043e-05 0.000165618 -3.86728e-05 0.000165594 1.92653e-06 0.000163884 4.26639e-05 0.000160476 8.30887e-05 0.000155458 0.000122374 0.000148854 0.000160031 0.000140759 0.000195787 0.000131302 0.000228873 0.000120552 0.000258769 0.000108752 0.000285099 9.60611e-05 0.00030748 8.25891e-05 0.000325765 6.86077e-05 0.000339712 5.4306e-05 0.000349135 3.98406e-05 0.000354342 2.54323e-05 0.000355311 1.12346e-05 0.000352392 -2.60549e-06 0.000345911 -1.59541e-05 0.000336335 -2.87227e-05 0.000324011 -4.08166e-05 0.000309409 -5.21646e-05 0.000292958 -6.27396e-05 0.000274989 -7.24966e-05 0.000255927 -8.14315e-05 0.000236204 -8.955e-05 0.000215894 -9.68257e-05 0.000195115 -0.000103249 0.00017461 -0.00010888 0.000154002 -0.000113749 0.000133432 -0.000117786 0.000113639 -0.000121114 9.41434e-05 -0.000123802 7.48432e-05 -0.000125713 5.62657e-05 -0.000126977 3.79506e-05 -0.000127552 2.01933e-05 -0.000127503 2.79272e-06 -0.000126841 -1.36277e-05 -0.00012563 -2.99631e-05 -0.000123821 -4.57003e-05 -0.000121408 -6.22045e-05 -0.000118421 -7.69557e-05 -0.000114911 -9.29602e-05 -0.000110796 -0.000107749 -0.000106121 -0.000122177 -0.000100867 -0.000136639 -9.51815e-05 -0.000150327 -8.89448e-05 -0.000163502 -8.21771e-05 -0.00017638 -7.49768e-05 -0.000188567 -6.73166e-05 -0.000199923 -5.91744e-05 -0.00021095 -5.06933e-05 -0.000220415 -4.18237e-05 -0.000229561 -3.26673e-05 -0.000237789 -2.32469e-05 -0.000243777 -1.35148e-05 -0.00024969 -3.60355e-06 -0.000254478 6.539e-06 -0.000256292 1.67802e-05 -0.000257684 2.69025e-05 -0.000256357 3.69765e-05 -0.000253172 4.68687e-05 -0.000247641 5.64147e-05 -0.000239553 6.56532e-05 -0.000230828 7.43536e-05 -0.00021899 8.26109e-05 -0.000205462 9.02059e-05 -0.000189826 9.7074e-05 -0.000172739 0.000103226 -0.000154585 0.000108507 -0.00013414 0.000112932 -0.000113724 0.000116477 -9.16665e-05 0.00011915 -7.02781e-05 0.000120934 -4.73869e-05 0.000121752 -2.58826e-05 0.000121653 -2.69428e-06 0.000120631 1.95272e-05 0.000118815 4.05058e-05 0.000116157 6.05466e-05 0.000112741 7.87207e-05 0.000108661 9.55362e-05 0.000104023 0.000110883 9.881e-05 0.000123991 9.31431e-05 0.000135294 8.71393e-05 0.000145338 8.09197e-05 0.000152465 7.44587e-05 0.000157732 6.79489e-05 0.000161096 6.1349e-05 0.000162842 5.47252e-05 0.000163289 4.82867e-05 0.000161796 4.1969e-05 0.000158782 3.58955e-05 0.00015444 3.00204e-05 0.000148954 2.44958e-05 0.000142461 1.91992e-05 0.000135161 1.43081e-05 0.000127041 9.74183e-06 0.000118462 5.49627e-06 0.000109321 1.86784e-06 9.95145e-05 -1.69344e-06 9.03949e-05 -4.66655e-06 8.06656e-05 -7.22196e-06 7.10131e-05 -9.38376e-06 6.15884e-05 -1.11713e-05 5.27367e-05 -1.26399e-05 4.42195e-05 -1.38008e-05 3.63404e-05 -1.46964e-05 2.87285e-05 2.15995e-05 -0.000126182 -0.000224666 -0.000116858 -0.000261049 -0.000106129 -0.000291599 -9.36755e-05 -0.000323462 -8.08697e-05 -0.000352652 -6.58692e-05 -0.000382564 -4.95005e-05 -0.000413581 -3.36357e-05 -0.000426657 -1.59144e-05 -0.000443175 1.25954e-06 -0.000452136 1.92576e-05 -0.000461081 3.74518e-05 -0.000460343 5.53783e-05 -0.000459439 7.33861e-05 -0.000453498 9.10386e-05 -0.000443268 0.00010785 -0.000425085 0.000123764 -0.000400348 0.000138366 -0.000371668 0.000151645 -0.000338882 0.000163513 -0.000303098 0.000173808 -0.000265285 0.000182465 -0.000223418 0.000189381 -0.000181407 0.00019468 -0.000136798 0.000198259 -9.26323e-05 0.000200182 -4.63934e-05 0.000200332 -3.26445e-06 0.00019902 4.10488e-05 0.000195983 8.55726e-05 0.000191136 0.000132794 0.000184064 0.000182073 0.000175479 0.000225321 0.000164646 0.000270178 0.000152464 0.000308518 0.000138801 0.000346469 0.000123462 0.000381375 0.0001068 0.000406569 8.97052e-05 0.000428892 7.14784e-05 0.000445487 5.33481e-05 0.000452312 3.53325e-05 0.000456374 1.70622e-05 0.000451466 -3.04084e-07 0.000443482 -1.70214e-05 0.000430107 -3.28361e-05 0.000412552 -4.76805e-05 0.000392517 -6.14505e-05 0.000369598 -7.4117e-05 0.000345126 -8.57355e-05 0.000320466 -9.63009e-05 0.000294998 -0.000105854 0.000269695 -0.000114454 0.000245257 -0.000122133 0.00022092 -0.000129041 0.000198531 -0.000135184 0.000175686 -0.00014057 0.000153353 -0.000145273 0.000133284 -0.000149305 0.000111235 -0.000152569 8.90361e-05 -0.000155107 6.82245e-05 -0.000156744 4.48177e-05 -0.000157478 2.35367e-05 -0.000157405 3.74686e-07 -0.000156302 -2.45749e-05 -0.000154396 -4.5092e-05 -0.000151738 -6.67015e-05 -0.000148097 -8.81879e-05 -0.000143939 -0.000105163 -0.000139259 -0.000124727 -0.000133944 -0.000140351 -0.000128042 -0.000154604 -0.000121899 -0.000170038 -0.000115108 -0.000183045 -0.000108116 -0.000194888 -0.000100607 -0.000210052 -9.29233e-05 -0.00022081 -8.4517e-05 -0.000235954 -7.59129e-05 -0.000249247 -6.64901e-05 -0.000262794 -5.69299e-05 -0.000277763 -4.62708e-05 -0.000292646 -3.56209e-05 -0.000306037 -2.37547e-05 -0.000321606 -1.16099e-05 -0.000334342 1.28267e-06 -0.000347921 1.48141e-05 -0.000358479 2.85258e-05 -0.000366143 4.29819e-05 -0.000372259 5.74707e-05 -0.000375272 7.21474e-05 -0.00037345 8.69504e-05 -0.000369418 0.00010142 -0.00035865 0.000115518 -0.00034362 0.00012895 -0.00032268 0.000141394 -0.000295769 0.000152643 -0.000263297 0.000162394 -0.000225185 0.000170438 -0.00018169 0.000176419 -0.000133309 0.000180117 -8.08342e-05 0.000181377 -2.56692e-05 0.000180285 3.00225e-05 0.000176856 8.55655e-05 0.000171119 0.000139807 0.000163206 0.000192034 0.000153157 0.000241135 0.000141235 0.000285604 0.000127817 0.000324493 0.00011288 0.000358539 9.68913e-05 0.000385551 8.01364e-05 0.00040612 6.28998e-05 0.000419714 4.55824e-05 0.000426127 2.83763e-05 0.000426197 1.1676e-05 0.000420261 -4.32567e-06 0.000409264 -1.94986e-05 0.000394319 -3.37349e-05 0.000375922 -4.69243e-05 0.000355724 -5.92948e-05 0.000334868 -7.05289e-05 0.00031155 -8.08387e-05 0.000289868 -9.03729e-05 0.000267605 -9.89029e-05 0.000245315 -0.000106633 0.000224644 -0.000113719 0.000204359 -0.000120073 0.000185102 -0.000125467 0.000165529 -0.000130572 0.000149739 -0.000135112 0.000133416 -0.000139017 0.000117722 -0.000142566 0.000102982 -0.000145714 8.94086e-05 -0.000148456 7.54277e-05 -0.000150549 6.00429e-05 -0.000152249 4.6657e-05 -0.000153756 3.32743e-05 -0.000154616 1.7007e-05 -0.00015492 1.55656e-06 -0.000154945 -1.44894e-05 -0.000153917 -3.47996e-05 -0.000152292 -5.34166e-05 -0.000150221 -7.26863e-05 -0.000147258 -9.51225e-05 -0.000143298 -0.000118831 -0.00013836 -0.000143373 -0.000132661 -0.000167488 -0.00012567 -0.000194783 -0.000117684 -0.000220414 -0.000108757 -0.000245987 -9.87131e-05 -0.000271945 -8.7705e-05 -0.000296396 -7.55886e-05 -0.000320656 -6.26842e-05 -0.000341808 -4.88468e-05 -0.000362557 -3.41503e-05 -0.000380136 -1.8797e-05 -0.000394835 -2.8459e-06 -0.000405851 1.34952e-05 -0.000412651 2.99562e-05 -0.000414556 4.6398e-05 -0.000411754 6.25849e-05 -0.000403599 7.81672e-05 -0.000389896 9.29827e-05 -0.000371654 0.00010693 -0.000348863 0.000119693 -0.000321513 0.000131197 -0.000290575 0.000141237 -0.000256173 0.00014986 -0.000219639 0.000156873 -0.000180709 0.000162325 -0.000140531 0.000166124 -9.89181e-05 0.000168252 -5.6711e-05 0.000168688 -1.41747e-05 0.00016746 2.79882e-05 0.000164699 6.92316e-05 0.000160357 0.000109658 0.000154564 0.000148517 0.000147313 0.000186371 0.000138589 0.000222658 0.000128549 0.000256445 0.000117238 0.000287758 0.00010481 0.00031604 9.1365e-05 0.000341096 7.70753e-05 0.000362044 6.21708e-05 0.000379054 4.67156e-05 0.000392127 3.09444e-05 0.000400852 1.50205e-05 0.00040524 -8.88298e-07 0.000405072 -1.65255e-05 0.000400658 -3.16999e-05 0.000392008 -4.62961e-05 0.000380059 -6.0251e-05 0.000365301 -7.34672e-05 0.00034769 -8.58359e-05 0.000328034 -9.72948e-05 0.000306354 -0.000107756 0.000282884 -0.000117236 0.000258794 -0.000125666 0.000233801 -0.000133214 0.000209463 -0.000139863 0.000184712 -0.000145508 0.000159385 -0.000150107 0.000134074 -0.000153769 0.000109863 -0.000156659 8.67809e-05 -0.000158722 6.38915e-05 -0.00016004 4.19829e-05 -0.000160525 2.03447e-05 -0.000160216 -6.68488e-07 -0.000159318 -2.02427e-05 -0.00015781 -3.96211e-05 -0.000155559 -5.90318e-05 -0.000152622 -7.79485e-05 -0.00014901 -9.64276e-05 -0.000144864 -0.000114231 -0.000140074 -0.0001321 -0.000134637 -0.000149756 -0.000128575 -0.0001672 -0.000121894 -0.000184438 -0.00011463 -0.000201367 -0.000106666 -0.00021857 -9.80859e-05 -0.000235036 -8.89571e-05 -0.000251007 -7.92054e-05 -0.000266743 -6.88612e-05 -0.000281829 -5.79223e-05 -0.000296247 -4.64535e-05 -0.000309752 -3.44602e-05 -0.000322097 -2.19874e-05 -0.000333122 -9.0588e-06 -0.000342647 4.29533e-06 -0.000350365 1.79138e-05 -0.000355542 3.17021e-05 -0.00035805 4.5536e-05 -0.000357517 5.93472e-05 -0.000354111 7.29598e-05 -0.000347129 8.61772e-05 -0.000336693 9.90273e-05 -0.000322996 0.000111248 -0.000305243 0.000122652 -0.000283401 0.000133036 -0.000257867 0.000142336 -0.000228807 0.00015038 -0.000196412 0.000157025 -0.000160874 0.000162063 -0.000122477 0.000165467 -8.21086e-05 0.000167158 -4.03632e-05 0.00016716 1.92398e-06 0.000165436 4.43883e-05 0.000161979 8.65453e-05 0.000156884 0.000127469 0.000150218 0.000166697 0.000142022 0.000203983 0.000132411 0.000238485 0.000121545 0.000269635 0.000109604 0.00029704 9.67191e-05 0.000320365 8.30975e-05 0.000339386 6.89563e-05 0.000353854 5.44636e-05 0.000363628 3.98458e-05 0.00036896 2.53187e-05 0.000369838 1.10001e-05 0.000366711 -3.0139e-06 0.000359925 -1.64342e-05 0.000349756 -2.93277e-05 0.000336905 -4.14945e-05 0.000321576 -5.28746e-05 0.000304338 -6.35204e-05 0.000285634 -7.33014e-05 0.000265708 -8.2251e-05 0.000245154 -9.03887e-05 0.000224032 -9.76656e-05 0.000202392 -0.000104083 0.000181027 -0.000109664 0.000159583 -0.000114552 0.000138319 -0.000118587 0.000117674 -0.000121891 9.74467e-05 -0.000124556 7.75083e-05 -0.000126459 5.81685e-05 -0.000127694 3.9186e-05 -0.000128248 2.07469e-05 -0.000128177 2.72248e-06 -0.000127499 -1.43061e-05 -0.000126272 -3.11902e-05 -0.000124442 -4.75301e-05 -0.000122034 -6.46125e-05 -0.000119039 -7.99512e-05 -0.000115513 -9.64863e-05 -0.000111387 -0.000111874 -0.000106692 -0.000126873 -0.000101416 -0.000141915 -9.57197e-05 -0.000156024 -8.9455e-05 -0.000169766 -8.26778e-05 -0.000183157 -7.54365e-05 -0.000195808 -6.77549e-05 -0.000207604 -5.95718e-05 -0.000219134 -5.10578e-05 -0.000228929 -4.21331e-05 -0.000238486 -3.29391e-05 -0.000246983 -2.34783e-05 -0.000253238 -1.36878e-05 -0.000259481 -3.7081e-06 -0.000264458 6.49941e-06 -0.0002665 1.6815e-05 -0.000268 2.70312e-05 -0.000266573 3.71917e-05 -0.000263333 4.71572e-05 -0.000257607 5.67822e-05 -0.000249178 6.60901e-05 -0.000240136 7.48881e-05 -0.000227788 8.32359e-05 -0.000213809 9.08989e-05 -0.000197489 9.78098e-05 -0.00017965 0.000104007 -0.000160782 0.000109311 -0.000139444 0.00011378 -0.000118193 0.00011737 -9.52565e-05 0.00012005 -7.29586e-05 0.000121807 -4.91441e-05 0.000122581 -2.66557e-05 0.000122482 -2.59534e-06 0.000121444 2.05648e-05 0.000119586 4.23636e-05 0.000116862 6.32704e-05 0.000113378 8.22047e-05 0.000109298 9.96169e-05 0.00010453 0.000115651 9.92176e-05 0.000129303 9.35042e-05 0.000141007 8.74347e-05 0.000151407 8.11229e-05 0.000158777 7.46443e-05 0.00016421 6.80162e-05 0.000167724 6.13499e-05 0.000169509 5.46895e-05 0.000169949 4.8151e-05 0.000168335 4.18328e-05 0.0001651 3.56613e-05 0.000160612 2.98261e-05 0.000154789 2.42095e-05 0.000148078 1.88917e-05 0.000140479 1.39854e-05 0.000131947 9.34172e-06 0.000123106 5.22017e-06 0.000113442 1.48334e-06 0.000103251 -2.08875e-06 9.3967e-05 -5.05988e-06 8.36367e-05 -7.6029e-06 7.35561e-05 -9.75239e-06 6.37379e-05 -1.15139e-05 5.44983e-05 -1.29633e-05 4.56689e-05 -1.40941e-05 3.74711e-05 -1.49739e-05 2.96084e-05 2.22337e-05 -0.000127413 -0.000232313 -0.000118122 -0.000270341 -0.000107367 -0.000302354 -9.47125e-05 -0.000336116 -8.20733e-05 -0.000365291 -6.67458e-05 -0.000397892 -5.01597e-05 -0.000430167 -3.43019e-05 -0.000442515 -1.63274e-05 -0.00046115 9.11714e-07 -0.000469375 1.90984e-05 -0.000479267 3.7567e-05 -0.000478811 5.56177e-05 -0.00047749 7.38346e-05 -0.000471715 9.17399e-05 -0.000461173 0.000108734 -0.000442079 0.000124828 -0.000416442 0.000139576 -0.000386416 0.000153014 -0.00035232 0.000165003 -0.000315087 0.000175383 -0.000275665 0.000184107 -0.000232142 0.000191071 -0.000188371 0.000196405 -0.000142133 0.000200022 -9.6249e-05 0.000201969 -4.83407e-05 0.000202145 -3.441e-06 0.00020094 4.22543e-05 0.000197829 8.86832e-05 0.000192972 0.00013765 0.000185855 0.000189191 0.000177194 0.000233982 0.000166235 0.000281137 0.000153876 0.000320877 0.000139984 0.000360361 0.000124523 0.000396837 0.000107644 0.000423448 9.03472e-05 0.000446189 7.18982e-05 0.000463936 5.34226e-05 0.000470788 3.52059e-05 0.00047459 1.67328e-05 0.000469939 -8.31816e-07 0.000461047 -1.77168e-05 0.000446992 -3.36547e-05 0.00042849 -4.85908e-05 0.000407453 -6.24204e-05 0.000383428 -7.51149e-05 0.00035782 -8.67396e-05 0.00033209 -9.73049e-05 0.000305563 -0.000106839 0.000279229 -0.000115412 0.00025383 -0.00012306 0.000228568 -0.000129938 0.000205409 -0.000136064 0.000181812 -0.000141438 0.000158727 -0.00014613 0.000137976 -0.000150176 0.000115281 -0.000153462 9.23225e-05 -0.000155993 7.07551e-05 -0.000157626 4.64512e-05 -0.000158389 2.42988e-05 -0.000158308 2.9404e-07 -0.000157221 -2.56619e-05 -0.000155248 -4.70653e-05 -0.000152551 -6.93982e-05 -0.000148862 -9.18764e-05 -0.00014463 -0.000109396 -0.000139937 -0.000129419 -0.000134567 -0.000145722 -0.000128613 -0.000160558 -0.000122462 -0.000176189 -0.000115679 -0.000189828 -0.00010862 -0.000201947 -0.000101196 -0.000217476 -9.3479e-05 -0.000228527 -8.51143e-05 -0.000244319 -7.6601e-05 -0.00025776 -6.71348e-05 -0.00027226 -5.75906e-05 -0.000287307 -4.69726e-05 -0.000303264 -3.62066e-05 -0.000316803 -2.4489e-05 -0.000333324 -1.22355e-05 -0.000346596 6.88372e-07 -0.000360845 1.42902e-05 -0.000372081 2.817e-05 -0.000380023 4.26643e-05 -0.000386754 5.72052e-05 -0.000389813 7.20846e-05 -0.00038833 8.70924e-05 -0.000384426 0.000101765 -0.000373323 0.000116051 -0.000357906 0.000129717 -0.000336346 0.000142388 -0.00030844 0.000153828 -0.000274737 0.000163842 -0.0002352 0.000172043 -0.00018989 0.000178192 -0.000139458 0.000182031 -8.46734e-05 0.000183343 -2.69807e-05 0.000182214 3.11514e-05 0.000178733 8.90466e-05 0.000172964 0.000145576 0.000164864 0.000200134 0.000154628 0.000251371 0.000142544 0.000297689 0.000128859 0.000338177 0.000113714 0.000373684 9.74136e-05 0.000401852 8.04392e-05 0.000423094 6.29037e-05 0.00043725 4.53572e-05 0.000443673 2.79097e-05 0.000443645 1.09973e-05 0.000437173 -5.16961e-06 0.000425431 -2.0455e-05 0.000409604 -3.47722e-05 0.000390239 -4.79759e-05 0.000368928 -6.03126e-05 0.000347204 -7.16543e-05 0.000322892 -8.19739e-05 0.000300187 -9.14683e-05 0.0002771 -9.9971e-05 0.000253817 -0.000107744 0.000232417 -0.000114719 0.000211334 -0.000121046 0.000191428 -0.000126421 0.000170904 -0.000131441 0.000154758 -0.000135966 0.000137942 -0.000139921 0.000121678 -0.00014335 0.00010641 -0.000146493 9.25521e-05 -0.000149281 7.82148e-05 -0.000151337 6.2099e-05 -0.000153007 4.83275e-05 -0.000154553 3.48201e-05 -0.00015548 1.79341e-05 -0.000155789 1.86506e-06 -0.000155902 -1.43765e-05 -0.000154887 -3.58147e-05 -0.000153299 -5.50046e-05 -0.000151293 -7.4692e-05 -0.00014833 -9.80857e-05 -0.000144468 -0.000122693 -0.000139562 -0.00014828 -0.00013391 -0.00017314 -0.000126915 -0.000201779 -0.000118904 -0.000228425 -0.000109995 -0.000254895 -9.9907e-05 -0.000282033 -8.88501e-05 -0.000307453 -7.66437e-05 -0.000332862 -6.36993e-05 -0.000354752 -4.97539e-05 -0.000376503 -3.49247e-05 -0.000394965 -1.94355e-05 -0.000410324 -3.29967e-06 -0.000421987 1.3235e-05 -0.000429186 2.98767e-05 -0.000431198 4.65239e-05 -0.000428401 6.29514e-05 -0.000420026 7.87069e-05 -0.000405651 9.36995e-05 -0.000386647 0.000107838 -0.000363001 0.000120743 -0.000334419 0.000132387 -0.000302218 0.00014252 -0.000266307 0.000151245 -0.000228364 0.00015831 -0.000187773 0.000163817 -0.000146038 0.000167661 -0.000102762 0.000169816 -5.88666e-05 0.000170223 -1.4581e-05 0.000168963 2.92481e-05 0.000166148 7.20467e-05 0.000161758 0.000114048 0.000155949 0.000154326 0.000148617 0.000193702 0.000139791 0.000231484 0.00012965 0.000266586 0.000118228 0.00029918 0.000105659 0.000328608 9.20451e-05 0.00035471 7.76151e-05 0.000376474 6.25575e-05 0.000394111 4.69241e-05 0.000407761 3.09804e-05 0.000416796 1.48875e-05 0.000421333 -1.19134e-06 0.000421151 -1.69703e-05 0.000416437 -3.22829e-05 0.000407321 -4.69983e-05 0.000394775 -6.10661e-05 0.000379368 -7.43678e-05 0.000360992 -8.68054e-05 0.000340472 -9.83539e-05 0.000317903 -0.000108825 0.000293356 -0.0001183 0.000268269 -0.000126751 0.000242251 -0.000134296 0.000217009 -0.000140953 0.000191368 -0.00014658 0.000165012 -0.000151173 0.000138667 -0.000154789 0.000113479 -0.000157644 8.96365e-05 -0.0001597 6.59471e-05 -0.000160997 4.32797e-05 -0.000161449 2.07974e-05 -0.000161068 -1.05017e-06 -0.000160206 -2.11049e-05 -0.000158673 -4.11535e-05 -0.000156414 -6.1291e-05 -0.000153412 -8.09501e-05 -0.000149839 -0.000100001 -0.000145667 -0.000118403 -0.000140873 -0.000136894 -0.00013542 -0.000155208 -0.000129349 -0.000173271 -0.000122667 -0.00019112 -0.000115376 -0.000208658 -0.000107419 -0.000226527 -9.88286e-05 -0.000243627 -8.96741e-05 -0.000260161 -7.98994e-05 -0.000276518 -6.95185e-05 -0.00029221 -5.85206e-05 -0.000307245 -4.70265e-05 -0.000321246 -3.49789e-05 -0.000334144 -2.24244e-05 -0.000345677 -9.41826e-06 -0.000355654 3.9981e-06 -0.000363781 1.77203e-05 -0.000369265 3.16406e-05 -0.00037197 4.55927e-05 -0.00037147 5.95714e-05 -0.000368089 7.32652e-05 -0.000360823 8.66438e-05 -0.000350071 9.96555e-05 -0.000336007 0.000112058 -0.000317645 0.000123558 -0.000294901 0.000134107 -0.000268417 0.000143561 -0.000238261 0.000151719 -0.00020457 0.000158459 -0.000167614 0.000163582 -0.0001276 0.000167049 -8.55762e-05 0.000168771 -4.20851e-05 0.000168756 1.93893e-06 0.000167046 4.60983e-05 0.000163566 9.00256e-05 0.000158414 0.000132621 0.000151634 0.000173477 0.000143359 0.000212258 0.000133593 0.000248251 0.000122574 0.000280653 0.000110516 0.000309099 9.74214e-05 0.000333459 8.36235e-05 0.000353184 6.92931e-05 0.000368184 5.46321e-05 0.000378289 3.98508e-05 0.000383741 2.51254e-05 0.000384564 1.0643e-05 0.000381193 -3.4419e-06 0.00037401 -1.70128e-05 0.000363327 -2.99431e-05 0.000349835 -4.21938e-05 0.000333827 -5.36764e-05 0.000315821 -6.43327e-05 0.000296291 -7.4122e-05 0.000275497 -8.31276e-05 0.000254159 -9.12568e-05 0.000232161 -9.85071e-05 0.000209642 -0.000104958 0.000187479 -0.000110526 0.000165151 -0.000115365 0.000143158 -0.000119419 0.000121729 -0.000122692 0.000100719 -0.000125329 8.01456e-05 -0.00012723 6.00694e-05 -0.000128434 4.03901e-05 -0.000128949 2.12619e-05 -0.000128871 2.64478e-06 -0.000128178 -1.49995e-05 -0.000126932 -3.24362e-05 -0.000125075 -4.93865e-05 -0.000122682 -6.70056e-05 -0.000119676 -8.29571e-05 -0.000116143 -0.000100019 -0.000112 -0.000116017 -0.000107281 -0.000131591 -0.000101985 -0.000147211 -9.62687e-05 -0.00016174 -8.99924e-05 -0.000176043 -8.31877e-05 -0.000189962 -7.59173e-05 -0.000203079 -6.82036e-05 -0.000215318 -6.00014e-05 -0.000227336 -5.14315e-05 -0.000237499 -4.24623e-05 -0.000247455 -3.32289e-05 -0.000256217 -2.37226e-05 -0.000262744 -1.3865e-05 -0.000269338 -3.82211e-06 -0.000274501 6.45241e-06 -0.000276774 1.68587e-05 -0.000278406 2.71794e-05 -0.000276894 3.7404e-05 -0.000273557 4.74437e-05 -0.000267646 5.71588e-05 -0.000258893 6.65666e-05 -0.000249544 7.54731e-05 -0.000236695 8.38748e-05 -0.000222211 9.16002e-05 -0.000205214 9.85684e-05 -0.000186618 0.000104804 -0.000167018 0.000110175 -0.000144814 0.0001147 -0.000122719 0.000118294 -9.88504e-05 0.000120953 -7.56169e-05 0.000122715 -5.09065e-05 0.000123485 -2.74256e-05 0.000123329 -2.43962e-06 0.00012231 2.15844e-05 0.000120374 4.42995e-05 0.000117575 6.60694e-05 0.000114103 8.5676e-05 0.000109899 0.000103821 0.000105038 0.000120512 9.96908e-05 0.000134651 9.39263e-05 0.000146772 8.77589e-05 0.000157574 8.13706e-05 0.000165165 7.47968e-05 0.000170784 6.8084e-05 0.000174437 6.13165e-05 0.000176276 5.46487e-05 0.000176617 4.80317e-05 0.000174952 4.16565e-05 0.000171475 3.54725e-05 0.000166796 2.95592e-05 0.000160703 2.38859e-05 0.000153751 1.86241e-05 0.000145741 1.36287e-05 0.000136943 8.99864e-06 0.000127736 4.80365e-06 0.000117637 9.54577e-07 0.0001071 -2.50718e-06 9.74288e-05 -5.47043e-06 8.65999e-05 -8.00087e-06 7.60866e-05 -1.01369e-05 6.58739e-05 -1.18718e-05 5.62332e-05 -1.33e-05 4.7097e-05 -1.43976e-05 3.85687e-05 -1.52614e-05 3.04722e-05 2.28454e-05 -0.000128702 -0.000239881 -0.000119411 -0.000279632 -0.00010868 -0.000313085 -9.57715e-05 -0.000349025 -8.3428e-05 -0.000377634 -6.77039e-05 -0.000413616 -5.08286e-05 -0.000447043 -3.50247e-05 -0.000458319 -1.6763e-05 -0.000479412 5.25241e-07 -0.000486664 1.89178e-05 -0.00049766 3.76949e-05 -0.000497589 5.58563e-05 -0.000495651 7.42961e-05 -0.000490155 9.24398e-05 -0.000479317 0.000109658 -0.000459298 0.000125945 -0.000432729 0.000140856 -0.000401327 0.000154461 -0.000365925 0.00016656 -0.000327186 0.000177027 -0.000286132 0.000185824 -0.000240939 0.000192828 -0.000195375 0.000198205 -0.00014751 0.000201854 -9.98977e-05 0.000203837 -5.0324e-05 0.000204029 -3.63378e-06 0.000202855 4.34284e-05 0.000199741 9.1797e-05 0.000194852 0.00014254 0.000187732 0.000196311 0.000179001 0.000242713 0.000167915 0.000292222 0.000155376 0.000333417 0.000141224 0.000374513 0.000125649 0.000412411 0.000108529 0.000440568 9.07939e-05 0.000463924 7.25034e-05 0.000482226 5.35203e-05 0.000489771 3.5091e-05 0.00049302 1.64054e-05 0.000488625 -1.38834e-06 0.00047884 -1.84495e-05 0.000464054 -3.45142e-05 0.000444555 -4.95456e-05 0.000422484 -6.34354e-05 0.000397317 -7.61561e-05 0.000370541 -8.77835e-05 0.000343718 -9.83495e-05 0.000316129 -0.000107864 0.000288744 -0.000116405 0.000262372 -0.000124022 0.000236184 -0.000130864 0.000212252 -0.000136973 0.000187921 -0.000142336 0.00016409 -0.000147015 0.000142654 -0.000151076 0.000119342 -0.000154387 9.56337e-05 -0.000156912 7.32794e-05 -0.000158572 4.8112e-05 -0.000159325 2.50511e-05 -0.000159161 1.30468e-07 -0.000158209 -2.66136e-05 -0.000156141 -4.91338e-05 -0.000153395 -7.2144e-05 -0.000149672 -9.55996e-05 -0.000145346 -0.000113721 -0.00014064 -0.000134126 -0.00013522 -0.000151141 -0.000129216 -0.000166563 -0.000123043 -0.000182362 -0.000116276 -0.000196595 -0.000109167 -0.000209056 -0.000101819 -0.000224824 -9.40593e-05 -0.000236287 -8.57358e-05 -0.000252642 -7.7243e-05 -0.000266253 -6.78093e-05 -0.000281694 -5.82924e-05 -0.000296824 -4.77213e-05 -0.000313836 -3.68255e-05 -0.000327699 -2.53934e-05 -0.000344756 -1.29606e-05 -0.000359028 1.48769e-08 -0.000373821 1.36699e-05 -0.000385736 2.77081e-05 -0.000394061 4.23028e-05 -0.000401348 5.68801e-05 -0.00040439 7.20033e-05 -0.000403453 8.72215e-05 -0.000399645 0.000102106 -0.000388208 0.000116661 -0.000372462 0.000130543 -0.000350228 0.000143499 -0.000321396 0.000155108 -0.000286346 0.000165326 -0.000245418 0.000173738 -0.000198303 0.00018002 -0.00014574 0.00018396 -8.86133e-05 0.000185257 -2.82779e-05 0.000184235 3.21739e-05 0.000180625 9.26561e-05 0.000174762 0.000151439 0.000166604 0.000208292 0.000156188 0.000261787 0.000143838 0.000310038 0.000129985 0.000352031 0.000114607 0.000389063 9.80088e-05 0.00041845 8.07745e-05 0.000440328 6.29302e-05 0.000455094 4.50773e-05 0.000461526 2.74166e-05 0.000461305 1.02797e-05 0.00045431 -6.06529e-06 0.000441776 -2.14663e-05 0.000425005 -3.58436e-05 0.000404617 -4.91582e-05 0.000382242 -6.16127e-05 0.000359659 -7.28794e-05 0.000334159 -8.31834e-05 0.000310491 -9.26494e-05 0.000286566 -0.00010111 0.000262278 -0.000108885 0.000240192 -0.000115771 0.00021822 -0.000122068 0.000197725 -0.000127365 0.000176201 -0.00013231 0.000159703 -0.000136823 0.000142455 -0.000140723 0.000125577 -0.00014409 0.000109778 -0.000147238 9.56999e-05 -0.000150051 8.10273e-05 -0.000152095 6.41431e-05 -0.000153704 4.9937e-05 -0.000155199 3.63145e-05 -0.000156277 1.9013e-05 -0.000156579 2.16675e-06 -0.000156792 -1.4164e-05 -0.000155762 -3.6844e-05 -0.000154214 -5.65529e-05 -0.000152298 -7.66084e-05 -0.000149481 -0.000100902 -0.000145607 -0.000126568 -0.000140727 -0.000153159 -0.000135126 -0.000178741 -0.000128147 -0.000208757 -0.00012012 -0.000236452 -0.000111222 -0.000263794 -0.000101098 -0.000292157 -8.99971e-05 -0.000318554 -7.77121e-05 -0.000345148 -6.47661e-05 -0.000367698 -5.06544e-05 -0.000390614 -3.56806e-05 -0.000409939 -2.00635e-05 -0.000425941 -3.74832e-06 -0.000438302 1.30075e-05 -0.000445942 2.98516e-05 -0.000448042 4.67163e-05 -0.000445266 6.33636e-05 -0.000436674 7.93259e-05 -0.000421614 9.44912e-05 -0.000401812 0.000108832 -0.000377342 0.000121877 -0.000347463 0.000133658 -0.000313999 0.000143874 -0.000276523 0.000152724 -0.000237215 0.000159808 -0.000194857 0.000165356 -0.000151587 0.000169242 -0.000106647 0.000171374 -6.09989e-05 0.000171775 -1.49816e-05 0.000170481 3.05418e-05 0.000167617 7.49113e-05 0.00016318 0.000118485 0.00015732 0.000160186 0.000149971 0.000201051 0.000141036 0.000240419 0.000130777 0.000276846 0.00011926 0.000310698 0.000106562 0.000341306 9.27927e-05 0.000368479 7.81936e-05 0.000391073 6.29754e-05 0.000409329 4.71747e-05 0.000423562 3.10744e-05 0.000432896 1.47648e-05 0.000437643 -1.48532e-06 0.000437401 -1.74485e-05 0.0004324 -3.28828e-05 0.000422755 -4.77037e-05 0.000409596 -6.189e-05 0.000393555 -7.52869e-05 0.000374389 -8.77701e-05 0.000352955 -9.93981e-05 0.000329531 -0.000109917 0.000303875 -0.000119434 0.000277785 -0.000127863 0.000250681 -0.000135401 0.000224547 -0.000142091 0.000198058 -0.000147725 0.000170646 -0.000152261 0.000143203 -0.000155814 0.000117032 -0.000158669 9.2492e-05 -0.000160688 6.79655e-05 -0.000161969 4.45605e-05 -0.00016238 2.12091e-05 -0.000161969 -1.46119e-06 -0.000161078 -2.19964e-05 -0.000159541 -4.26908e-05 -0.000157277 -6.35541e-05 -0.000154283 -8.39443e-05 -0.000150659 -0.000103625 -0.000146479 -0.000122583 -0.000141672 -0.000141701 -0.00013623 -0.00016065 -0.000130131 -0.00017937 -0.000123454 -0.000197797 -0.00011619 -0.000215922 -0.000108202 -0.000234515 -9.9583e-05 -0.000252245 -9.04142e-05 -0.00026933 -8.06206e-05 -0.000286312 -7.02044e-05 -0.000302626 -5.92e-05 -0.00031825 -4.76231e-05 -0.000332823 -3.55088e-05 -0.000346259 -2.29277e-05 -0.000358258 -9.84004e-06 -0.000368741 3.68883e-06 -0.00037731 1.75295e-05 -0.000383105 3.15766e-05 -0.000386017 4.56632e-05 -0.000385556 5.97569e-05 -0.000382183 7.36089e-05 -0.000374675 8.71381e-05 -0.000363601 0.000100329 -0.000349198 0.000112876 -0.000330192 0.000124534 -0.000306559 0.000135232 -0.000279114 0.000144819 -0.000247849 0.000153118 -0.000212869 0.000159971 -0.000174467 0.000165173 -0.000132802 0.000168706 -8.91091e-05 0.000170446 -4.38251e-05 0.000170442 1.94314e-06 0.000168711 4.78293e-05 0.000165162 9.35743e-05 0.000159938 0.000137845 0.000153121 0.000180294 0.000144703 0.000220676 0.000134822 0.000258132 0.000123673 0.000291802 0.000111397 0.000321374 9.81652e-05 0.000346691 8.42164e-05 0.000367133 6.96558e-05 0.000382745 5.48146e-05 0.00039313 3.99006e-05 0.000398655 2.49573e-05 0.000399507 1.03227e-05 0.000395828 -3.88092e-06 0.000388213 -1.75797e-05 0.000377025 -3.06228e-05 0.000362878 -4.29379e-05 0.000346142 -5.44799e-05 0.000327363 -6.51744e-05 0.000306985 -7.50145e-05 0.000285337 -8.40218e-05 0.000263166 -9.21499e-05 0.000240289 -9.94493e-05 0.000216942 -0.000105859 0.000193888 -0.000111417 0.000170709 -0.000116258 0.000147999 -0.000120274 0.000125745 -0.000123518 0.000103963 -0.000126156 8.27839e-05 -0.000128025 6.19375e-05 -0.000129199 4.15651e-05 -0.00012966 2.17228e-05 -0.000129584 2.56841e-06 -0.000128878 -1.57053e-05 -0.000127622 -3.36923e-05 -0.000125718 -5.12908e-05 -0.000123348 -6.93754e-05 -0.000120337 -8.59677e-05 -0.000116793 -0.000103564 -0.000112634 -0.000120176 -0.000107899 -0.000136326 -0.000102573 -0.000152538 -9.68478e-05 -0.000167465 -9.05487e-05 -0.000182342 -8.37161e-05 -0.000196794 -7.64036e-05 -0.000210391 -6.8668e-05 -0.000223054 -6.044e-05 -0.000235564 -5.18137e-05 -0.000246125 -4.28051e-05 -0.000256464 -3.35359e-05 -0.000265486 -2.39797e-05 -0.0002723 -1.40467e-05 -0.000279271 -3.9459e-06 -0.000284602 6.40375e-06 -0.000287124 1.69177e-05 -0.00028892 2.73121e-05 -0.000287288 3.76136e-05 -0.000283859 4.77463e-05 -0.000277779 5.7569e-05 -0.000268716 6.70805e-05 -0.000259055 7.60514e-05 -0.000245666 8.45239e-05 -0.000230684 9.2315e-05 -0.000213005 9.93566e-05 -0.00019366 0.000105665 -0.000173327 0.000111104 -0.000150253 0.00011562 -0.000127234 0.000119233 -0.000102464 0.00012187 -7.82536e-05 0.000123645 -5.26813e-05 0.000124423 -2.82038e-05 0.00012423 -2.24662e-06 0.000123172 2.26423e-05 0.000121169 4.63027e-05 0.000118372 6.88665e-05 0.000114805 8.92422e-05 0.000110518 0.000108109 0.000105592 0.000125438 0.000100212 0.00014003 9.4308e-05 0.000152676 8.80603e-05 0.000163822 8.16252e-05 0.0001716 7.49441e-05 0.000177465 6.81345e-05 0.000181247 6.13389e-05 0.000183072 5.45685e-05 0.000183387 4.7941e-05 0.000181579 4.14556e-05 0.000177961 3.52675e-05 0.000172984 2.92652e-05 0.000166705 2.36415e-05 0.000159375 1.82778e-05 0.000151105 1.32325e-05 0.000141988 8.65976e-06 0.000132309 4.34136e-06 0.000121956 4.60085e-07 0.000110982 -2.94436e-06 0.000100833 -5.89825e-06 8.95538e-05 -8.41687e-06 7.86052e-05 -1.05369e-05 6.7994e-05 -1.2247e-05 5.79433e-05 -1.36482e-05 4.84982e-05 -1.47113e-05 3.96319e-05 -1.55592e-05 3.13201e-05 2.34331e-05 -0.00013005 -0.000247358 -0.000120786 -0.000288896 -0.000110079 -0.000323791 -9.68393e-05 -0.000362265 -8.4933e-05 -0.000389541 -6.87316e-05 -0.000429817 -5.15038e-05 -0.00046427 -3.58094e-05 -0.000474013 -1.72235e-05 -0.000497998 9.20071e-08 -0.000503979 1.87105e-05 -0.000516279 3.78274e-05 -0.000516706 5.6096e-05 -0.00051392 7.47714e-05 -0.000508831 9.31967e-05 -0.000497743 0.000110644 -0.000476745 0.000127118 -0.000449203 0.0001422 -0.000416409 0.000156026 -0.000379751 0.000168189 -0.000339349 0.000178739 -0.000296681 0.000187602 -0.000249803 0.000194657 -0.000202431 0.000200081 -0.000152934 0.000203759 -0.000103576 0.000205786 -5.23515e-05 0.000205988 -3.83597e-06 0.000204837 4.45802e-05 0.000201723 9.49103e-05 0.000196762 0.000147501 0.000189717 0.000203355 0.000180899 0.000251532 0.00016972 0.000303401 0.00015696 0.000346177 0.000142581 0.000388892 0.000126846 0.000428146 0.000109492 0.000457922 9.13818e-05 0.000482034 7.28683e-05 0.00050074 5.36278e-05 0.000509011 3.49859e-05 0.000511662 1.61032e-05 0.000507508 -1.97377e-06 0.000496917 -1.92207e-05 0.000481301 -3.54176e-05 0.000460752 -5.05478e-05 0.000437615 -6.44963e-05 0.000411266 -7.72418e-05 0.000383286 -8.88689e-05 0.000355345 -9.94348e-05 0.000326695 -0.000108928 0.000298237 -0.000117426 0.00027087 -0.000125016 0.000243775 -0.00013182 0.000219055 -0.000137909 0.00019401 -0.000143261 0.000169442 -0.000147927 0.00014732 -0.000152004 0.00012342 -0.000155341 9.897e-05 -0.00015786 7.57989e-05 -0.000159562 4.98138e-05 -0.000160288 2.57775e-05 -0.000160083 -7.46896e-08 -0.000159169 -2.75279e-05 -0.000157063 -5.12396e-05 -0.000154211 -7.49965e-05 -0.000150538 -9.9272e-05 -0.000146077 -0.000118182 -0.000141281 -0.000138922 -0.000135825 -0.000156598 -0.000129828 -0.00017256 -0.000123634 -0.000188556 -0.000116897 -0.000203332 -0.000109735 -0.000216218 -0.00010251 -0.000232049 -9.45374e-05 -0.00024426 -8.6383e-05 -0.000260797 -7.79178e-05 -0.000274719 -6.85042e-05 -0.000291107 -5.88145e-05 -0.000306514 -4.8509e-05 -0.000324141 -3.75356e-05 -0.000338673 -2.62536e-05 -0.000356039 -1.36905e-05 -0.000371592 -6.87947e-07 -0.000386823 1.30055e-05 -0.00039943 2.71815e-05 -0.000408238 4.18529e-05 -0.00041602 5.66445e-05 -0.000419182 7.18285e-05 -0.000418637 8.72883e-05 -0.000415105 0.000102402 -0.000403321 0.000117214 -0.000387274 0.000131384 -0.000364397 0.000144557 -0.000334569 0.000156486 -0.000298275 0.00016698 -0.000255912 0.000175655 -0.000206978 0.000182166 -0.00015225 0.000186306 -9.27537e-05 0.000187585 -2.95565e-05 0.000186522 3.32365e-05 0.000182856 9.63216e-05 0.000176884 0.000157411 0.000168589 0.000216587 0.000157942 0.000272435 0.000145324 0.000322656 0.000131228 0.000366126 0.000115562 0.000404729 9.85978e-05 0.000435414 8.10827e-05 0.000457844 6.28939e-05 0.000473283 4.47103e-05 0.00047971 2.69042e-05 0.000479112 9.48742e-06 0.000471727 -7.02131e-06 0.000458285 -2.25796e-05 0.000440564 -3.71482e-05 0.000419185 -5.03859e-05 0.00039548 -6.28635e-05 0.000372136 -7.41156e-05 0.000345411 -8.43149e-05 0.000320691 -9.37165e-05 0.000295968 -0.000102145 0.000270706 -0.000109846 0.000247893 -0.000116608 0.000224982 -0.000122838 0.000203956 -0.000128035 0.000181398 -0.000132805 0.000164474 -0.000137317 0.000146967 -0.000141178 0.000129437 -0.000144485 0.000113086 -0.000147556 9.87713e-05 -0.000150364 8.38348e-05 -0.000152412 6.61915e-05 -0.000153974 5.14988e-05 -0.000155583 3.79233e-05 -0.000156667 2.00972e-05 -0.000157016 2.51497e-06 -0.000157242 -1.39373e-05 -0.000156345 -3.77407e-05 -0.000154804 -5.80948e-05 -0.000152978 -7.84341e-05 -0.00015033 -0.00010355 -0.000146518 -0.000130379 -0.000141713 -0.000157964 -0.000136125 -0.00018433 -0.000129287 -0.000215595 -0.000121288 -0.000244451 -0.000112426 -0.000272656 -0.000102306 -0.000302277 -9.12003e-05 -0.00032966 -7.88636e-05 -0.000357484 -6.58857e-05 -0.000380676 -5.16558e-05 -0.000404844 -3.65398e-05 -0.000425055 -2.07779e-05 -0.000441703 -4.26986e-06 -0.00045481 1.27077e-05 -0.00046292 2.97668e-05 -0.000465101 4.68549e-05 -0.000462354 6.37718e-05 -0.00045359 7.99317e-05 -0.000437773 9.52966e-05 -0.000417177 0.000109861 -0.000391906 0.000123057 -0.00036066 0.000135011 -0.000325953 0.000145334 -0.000286846 0.000154299 -0.000246179 0.000161458 -0.000202016 0.000167092 -0.000157221 0.000171036 -0.000110592 0.000173221 -6.31843e-05 0.000173595 -1.53555e-05 0.000172277 3.18598e-05 0.000169376 7.78123e-05 0.000164875 0.000122986 0.000158952 0.000166108 0.000151494 0.000208509 0.000142445 0.000249468 0.000132063 0.000287227 0.000120416 0.000322346 0.000107532 0.00035419 9.35824e-05 0.000382429 7.88227e-05 0.000405833 6.34302e-05 0.000424722 4.74394e-05 0.000439552 3.11319e-05 0.000449204 1.46437e-05 0.000454131 -1.78211e-06 0.000453827 -1.79363e-05 0.000448554 -3.35153e-05 0.000438334 -4.84532e-05 0.000424534 -6.27438e-05 0.000407845 -7.6259e-05 0.000387904 -8.88449e-05 0.000365541 -0.000100527 0.000341213 -0.000111054 0.000314401 -0.000120582 0.000287314 -0.000129001 0.000259099 -0.000136537 0.000232083 -0.000143221 0.000204743 -0.000148839 0.000176264 -0.000153324 0.000147688 -0.000156825 0.000120533 -0.000159625 9.52923e-05 -0.000161617 6.99574e-05 -0.000162895 4.58383e-05 -0.000163255 2.15692e-05 -0.000162785 -1.93093e-06 -0.000161886 -2.28956e-05 -0.000160322 -4.42546e-05 -0.000158065 -6.58109e-05 -0.000155081 -8.6929e-05 -0.00015143 -0.000107276 -0.000147252 -0.000126761 -0.000142476 -0.000146478 -0.000137 -0.000166126 -0.000130931 -0.00018544 -0.000124263 -0.000204465 -0.000116976 -0.000223209 -0.000108982 -0.000242509 -0.000100348 -0.00026088 -9.11728e-05 -0.000278505 -8.13646e-05 -0.00029612 -7.09148e-05 -0.000313076 -5.98693e-05 -0.000329295 -4.82342e-05 -0.000344458 -3.60822e-05 -0.000358411 -2.34539e-05 -0.000370886 -1.02685e-05 -0.000381927 3.35765e-06 -0.000390936 1.73388e-05 -0.000397086 3.14988e-05 -0.000400177 4.57037e-05 -0.000399761 5.99555e-05 -0.000396435 7.39503e-05 -0.00038867 8.76154e-05 -0.000377266 0.000100998 -0.000362581 0.000113715 -0.000342909 0.000125544 -0.000318387 0.000136402 -0.000289973 0.000146165 -0.000257612 0.000154574 -0.000221279 0.000161613 -0.000181505 0.000166855 -0.000138044 0.000170481 -9.27361e-05 0.000172216 -4.55595e-05 0.000172217 1.94147e-06 0.000170516 4.95302e-05 0.000166875 9.72153e-05 0.000161579 0.000143142 0.000154685 0.000187188 0.000146185 0.000229176 0.000136109 0.000268209 0.00012478 0.00030313 0.000112341 0.000333814 9.89244e-05 0.000360107 8.47424e-05 0.000381315 7.00221e-05 0.000397465 5.49857e-05 0.000408167 3.98331e-05 0.000413808 2.47617e-05 0.000414578 9.98613e-06 0.000410603 -4.38763e-06 0.000402587 -1.81826e-05 0.00039082 -3.12904e-05 0.000375986 -4.37297e-05 0.000358581 -5.53209e-05 0.000338954 -6.60257e-05 0.00031769 -7.59338e-05 0.000295245 -8.49493e-05 0.000272182 -9.30854e-05 0.000248425 -0.000100397 0.000224253 -0.000106791 0.000200282 -0.000112337 0.000176255 -0.00011716 0.000152822 -0.000121155 0.000129739 -0.000124395 0.000107203 -0.000126996 8.53848e-05 -0.000128842 6.37834e-05 -0.000129991 4.27146e-05 -0.000130443 2.21741e-05 -0.000130324 2.44971e-06 -0.000129602 -1.64273e-05 -0.00012833 -3.49647e-05 -0.000126431 -5.31895e-05 -0.000124045 -7.17617e-05 -0.000121019 -8.89935e-05 -0.000117463 -0.00010712 -0.000113293 -0.000124346 -0.000108539 -0.000141079 -0.000103231 -0.000157846 -9.74549e-05 -0.000173241 -9.1122e-05 -0.000188675 -8.42503e-05 -0.000203666 -7.6962e-05 -0.00021768 -6.91318e-05 -0.000230884 -6.08867e-05 -0.000243809 -5.22083e-05 -0.000254803 -4.31625e-05 -0.00026551 -3.38552e-05 -0.000274793 -2.42487e-05 -0.000281907 -1.42407e-05 -0.000289279 -4.07945e-06 -0.000294763 6.36499e-06 -0.000297568 1.69633e-05 -0.000299518 2.7437e-05 -0.000297762 3.78473e-05 -0.000294269 4.80765e-05 -0.000288008 5.80043e-05 -0.000278643 6.75881e-05 -0.000268639 7.66515e-05 -0.000254729 8.51816e-05 -0.000239214 9.30707e-05 -0.000220895 0.000100207 -0.000200796 0.000106577 -0.000179697 0.000112031 -0.000155707 0.000116571 -0.000131774 0.000120188 -0.000106081 0.000122838 -8.09033e-05 0.000124649 -5.44925e-05 0.000125374 -2.89295e-05 0.000125201 -2.0731e-06 0.000124048 2.37956e-05 0.00012204 4.83099e-05 0.000119191 7.17156e-05 0.000115529 9.29042e-05 0.000111151 0.000112487 0.000106226 0.000130362 0.000100698 0.000145558 9.4696e-05 0.000158678 8.83903e-05 0.000170128 8.18603e-05 0.00017813 7.50774e-05 0.000184248 6.82443e-05 0.00018808 6.13747e-05 0.000189941 5.44808e-05 0.000190281 4.78007e-05 0.000188259 4.13217e-05 0.00018444 3.50219e-05 0.000179284 2.89915e-05 0.000172735 2.3326e-05 0.00016504 1.78889e-05 0.000156542 1.29357e-05 0.000146941 8.24601e-06 0.000136999 3.922e-06 0.00012628 1.32572e-09 0.000114902 -3.39671e-06 0.000104231 -6.34487e-06 9.2502e-05 -8.85146e-06 8.11118e-05 -1.09501e-05 7.00926e-05 -1.264e-05 5.96332e-05 -1.4009e-05 4.98672e-05 -1.50382e-05 4.0661e-05 -1.5867e-05 3.21488e-05 2.39953e-05 -0.000131458 -0.000254731 -0.000122261 -0.000298093 -0.00011158 -0.000334473 -9.78979e-05 -0.000375947 -8.63808e-05 -0.000401058 -6.98274e-05 -0.000446371 -5.2181e-05 -0.000481917 -3.65785e-05 -0.000489616 -1.77125e-05 -0.000516864 -3.79379e-07 -0.000521312 1.84713e-05 -0.000535129 3.80076e-05 -0.000536242 5.6354e-05 -0.000532267 7.5259e-05 -0.000527736 9.39961e-05 -0.00051648 0.00011164 -0.000494389 0.000128346 -0.00046591 0.000143593 -0.000431656 0.000157564 -0.000393722 0.000169907 -0.000351693 0.000180521 -0.000307296 0.00018941 -0.000258692 0.000196586 -0.000209606 0.000201982 -0.00015833 0.000205751 -0.000107344 0.000207803 -5.44042e-05 0.000208031 -4.06426e-06 0.000206842 4.57697e-05 0.000203781 9.79713e-05 0.000198803 0.000152479 0.000191887 0.00021027 0.000182728 0.000260691 0.000171724 0.000314406 0.000158637 0.000359264 0.000144019 0.00040351 0.000127985 0.000444179 0.000110615 0.000475293 9.20307e-05 0.000500618 7.32631e-05 0.000519507 5.37441e-05 0.00052853 3.47381e-05 0.000530667 1.58959e-05 0.00052635 -2.59521e-06 0.000515408 -2.00329e-05 0.000498738 -3.63642e-05 0.000477083 -5.15896e-05 0.00045284 -6.56049e-05 0.000425281 -7.83716e-05 0.000396053 -8.99934e-05 0.000366967 -0.00010056 0.000337261 -0.000110028 0.000307706 -0.000118475 0.000279316 -0.000126041 0.000251341 -0.000132799 0.000225813 -0.000138865 0.000200077 -0.000144206 0.000174783 -0.000148851 0.000151965 -0.000152947 0.000127517 -0.000156308 0.000102331 -0.00015882 7.83106e-05 -0.000160572 5.15657e-05 -0.00016126 2.64661e-05 -0.000161019 -3.16192e-07 -0.000160118 -2.84281e-05 -0.000157968 -5.33902e-05 -0.000154981 -7.79831e-05 -0.00015134 -0.000102913 -0.000146775 -0.000122747 -0.0001419 -0.000143797 -0.000136401 -0.000162097 -0.000130394 -0.000178567 -0.000124151 -0.0001948 -0.000117516 -0.000209966 -0.000110268 -0.000223465 -0.000103039 -0.000239279 -9.50416e-05 -0.000252257 -8.69917e-05 -0.000268847 -7.8461e-05 -0.000283249 -6.92213e-05 -0.000300347 -5.94844e-05 -0.000316251 -4.94079e-05 -0.000334217 -3.82998e-05 -0.000349781 -2.70523e-05 -0.000367286 -1.44725e-05 -0.000384171 -1.41294e-06 -0.000399883 1.24024e-05 -0.000413245 2.6644e-05 -0.000422479 4.13963e-05 -0.000430772 5.63628e-05 -0.000434148 7.16506e-05 -0.000433925 8.72929e-05 -0.000430747 0.000102623 -0.000418652 0.000117692 -0.000402343 0.000132108 -0.000378813 0.00014549 -0.000347951 0.000157639 -0.000310425 0.000168326 -0.000266599 0.000177195 -0.000215846 0.000183861 -0.000158917 0.000188052 -9.69447e-05 0.000189344 -3.08483e-05 0.000188336 3.42444e-05 0.000184591 0.000100066 0.000178568 0.000163434 0.000170261 0.000224894 0.000159346 0.000283349 0.000146509 0.000335493 0.0001322 0.000380436 0.000116373 0.000420555 9.90238e-05 0.000452764 8.12563e-05 0.000475611 6.28679e-05 0.000491671 4.42982e-05 0.000498279 2.62249e-05 0.000497185 8.61759e-06 0.000489335 -8.08591e-06 0.000474988 -2.35594e-05 0.000456037 -3.82519e-05 0.000433878 -5.1442e-05 0.00040867 -6.38143e-05 0.000384509 -7.50072e-05 0.000356603 -8.51297e-05 0.000330813 -9.43683e-05 0.000305206 -0.000102593 0.00027893 -0.000110206 0.000255507 -0.000116834 0.00023161 -0.00012285 0.000209972 -0.000127954 0.000186502 -0.000132639 0.000169159 -0.000137017 0.000151345 -0.000140812 0.000133233 -0.000144053 0.000116326 -0.000147038 0.000101756 -0.000149814 8.66107e-05 -0.000151852 6.82299e-05 -0.000153317 5.29636e-05 -0.0001549 3.95062e-05 -0.000156112 2.13097e-05 -0.000156481 2.88368e-06 -0.00015676 -1.36586e-05 -0.000155948 -3.85524e-05 -0.000154445 -5.95976e-05 -0.000152766 -8.0113e-05 -0.000150259 -0.000106057 -0.000146637 -0.000134001 -0.000141907 -0.000162694 -0.000136575 -0.000189662 -0.000129817 -0.000222353 -0.000121921 -0.000252347 -0.000113109 -0.000281468 -0.000103204 -0.000312182 -9.21479e-05 -0.000340716 -7.98514e-05 -0.000369781 -6.68665e-05 -0.000393661 -5.26123e-05 -0.000419099 -3.7356e-05 -0.000440312 -2.14948e-05 -0.000457564 -4.81668e-06 -0.000471488 1.24133e-05 -0.00048015 2.96901e-05 -0.000482378 4.69857e-05 -0.00047965 6.41883e-05 -0.000470793 8.05458e-05 -0.000454131 9.60873e-05 -0.000432719 0.000110857 -0.000406677 0.000124148 -0.00037395 0.000136231 -0.000338036 0.000146611 -0.000297226 0.000155635 -0.000255203 0.0001628 -0.000209182 0.00016843 -0.00016285 0.000172364 -0.000114526 0.000174539 -6.53588e-05 0.000174856 -1.56727e-05 0.000173497 3.32194e-05 0.000170556 8.0753e-05 0.00016601 0.000127532 0.000160082 0.000172036 0.000152619 0.000215972 0.000143511 0.000258576 0.000133064 0.000297674 0.00012137 0.00033404 0.000108377 0.000367183 9.43e-05 0.000396506 7.93917e-05 0.000420741 6.39007e-05 0.000440213 4.77263e-05 0.000455727 3.12237e-05 0.000465706 1.45359e-05 0.000470819 -2.11224e-06 0.000470475 -1.84753e-05 0.000464917 -3.4188e-05 0.000454047 -4.92499e-05 0.000439596 -6.36435e-05 0.000422239 -7.72483e-05 0.000401509 -8.98925e-05 0.000378185 -0.000101598 0.000352919 -0.000112135 0.000324938 -0.000121595 0.000296773 -0.000129942 0.000267446 -0.000137433 0.000239574 -0.000144073 0.000211383 -0.000149647 0.000181838 -0.000154028 0.000152069 -0.000157458 0.000123962 -0.000160183 9.80177e-05 -0.000162158 7.19326e-05 -0.000163418 4.70975e-05 -0.000163755 2.19066e-05 -0.000163188 -2.49822e-06 -0.000162321 -2.37623e-05 -0.00016083 -4.57458e-05 -0.000158594 -6.80468e-05 -0.000155584 -8.99394e-05 -0.000151959 -0.000110901 -0.00014782 -0.0001309 -0.000143088 -0.000151209 -0.000137667 -0.000171547 -0.00013159 -0.000191517 -0.000124962 -0.000211093 -0.000117734 -0.000230438 -0.000109733 -0.00025051 -0.00010108 -0.000269532 -9.18984e-05 -0.000287687 -8.20964e-05 -0.000305922 -7.16066e-05 -0.000323566 -6.05533e-05 -0.000340349 -4.88854e-05 -0.000356126 -3.66923e-05 -0.000370604 -2.39799e-05 -0.000383599 -1.06476e-05 -0.000395259 3.03358e-06 -0.000404617 1.71039e-05 -0.000411157 3.14442e-05 -0.000414518 4.57443e-05 -0.000414061 6.01719e-05 -0.000410863 7.42946e-05 -0.000402792 8.81057e-05 -0.000391077 0.000101664 -0.000376139 0.000114553 -0.000355798 0.00012653 -0.000330364 0.000137567 -0.000301011 0.00014742 -0.000267464 0.000155985 -0.000229844 0.000163123 -0.000188644 0.000168471 -0.000143392 0.000172161 -9.64258e-05 0.000173906 -4.73042e-05 0.000173919 1.92858e-06 0.000172195 5.12538e-05 0.000168518 0.000100893 0.000163178 0.000148481 0.000156189 0.000194178 0.000147554 0.00023781 0.000137408 0.000278355 0.000125887 0.000314651 0.00011329 0.000346411 9.97174e-05 0.000373679 8.53128e-05 0.00039572 7.0425e-05 0.000412353 5.51688e-05 0.000423423 3.98231e-05 0.000429154 2.45815e-05 0.00042982 9.6358e-06 0.000425549 -4.86583e-06 0.000417089 -1.87782e-05 0.000404733 -3.20285e-05 0.000389236 -4.45208e-05 0.000371074 -5.61664e-05 0.0003506 -6.69542e-05 0.000328478 -7.68647e-05 0.000305156 -8.58821e-05 0.000281199 -9.40247e-05 0.000256568 -0.000101354 0.000231582 -0.000107718 0.000206646 -0.00011331 0.000181847 -0.000118074 0.000157587 -0.000122032 0.000133697 -0.000125303 0.000110474 -0.000127845 8.7927e-05 -0.000129664 6.5602e-05 -0.000130808 4.38588e-05 -0.000131233 2.25993e-05 -0.00013107 2.28633e-06 -0.000130317 -1.71803e-05 -0.000129052 -3.6229e-05 -0.00012716 -5.5082e-05 -0.000124764 -7.41571e-05 -0.000121717 -9.20412e-05 -0.000118151 -0.000110686 -0.000113975 -0.000128522 -0.000109193 -0.000145862 -0.000103896 -0.000163143 -9.80745e-05 -0.000179063 -9.17074e-05 -0.000195042 -8.48077e-05 -0.000210566 -7.7494e-05 -0.000224993 -6.95627e-05 -0.000238815 -6.13365e-05 -0.000252035 -5.26293e-05 -0.000263511 -4.35378e-05 -0.000274601 -3.4184e-05 -0.000284147 -2.45208e-05 -0.00029157 -1.44474e-05 -0.000299353 -4.22247e-06 -0.000304988 6.32717e-06 -0.000308118 1.70001e-05 -0.000310191 2.75722e-05 -0.000308334 3.81147e-05 -0.000304812 4.84163e-05 -0.00029831 5.84329e-05 -0.00028866 6.81055e-05 -0.000278311 7.72549e-05 -0.000263878 8.58872e-05 -0.000247846 9.38907e-05 -0.000228898 0.000101091 -0.000207997 0.000107493 -0.000186098 0.000112987 -0.000161201 0.000117535 -0.000136323 0.000121211 -0.000109756 0.000123898 -8.35911e-05 0.0001257 -5.62945e-05 0.000126354 -2.95829e-05 0.00012617 -1.88888e-06 0.00012499 2.49749e-05 0.000122967 5.03336e-05 0.000120012 7.46697e-05 0.000116252 9.66641e-05 0.000111899 0.000116841 0.000106814 0.000135447 0.00010117 0.000151203 9.51127e-05 0.000164736 8.87542e-05 0.000176486 8.20857e-05 0.000184799 7.52698e-05 0.000191064 6.83493e-05 0.000195 6.1368e-05 0.000196923 5.44535e-05 0.000197196 4.76287e-05 0.000195084 4.11136e-05 0.000190955 3.47427e-05 0.000185655 2.87489e-05 0.000178729 2.29764e-05 0.000170813 1.75749e-05 0.000161943 1.25309e-05 0.000151985 7.7823e-06 0.000141747 3.57157e-06 0.00013049 -4.59088e-07 0.000118933 -3.8659e-06 0.000107638 -6.80995e-06 9.5446e-05 -9.3025e-06 8.36043e-05 -1.13789e-05 7.2169e-05 -1.30501e-05 6.13043e-05 -1.43833e-05 5.12004e-05 -1.53819e-05 4.16596e-05 -1.61821e-05 3.2949e-05 2.45329e-05 -0.000132924 -0.000261992 -0.000123883 -0.000307133 -0.000113202 -0.000345153 -9.8925e-05 -0.000390224 -8.8237e-05 -0.000411746 -7.0985e-05 -0.000463623 -5.28545e-05 -0.000500048 -3.73952e-05 -0.000505075 -1.82336e-05 -0.000536025 -9.00841e-07 -0.000538645 1.8197e-05 -0.000554227 3.82341e-05 -0.000556279 5.65613e-05 -0.000550594 7.57559e-05 -0.00054693 9.48377e-05 -0.000535562 0.000112643 -0.000512194 0.000129567 -0.000482834 0.000145043 -0.000447132 0.000159171 -0.00040785 0.000171695 -0.000364217 0.000182401 -0.000318002 0.000191317 -0.000267607 0.000198539 -0.000216829 0.000203959 -0.000163749 0.000207823 -0.000111209 0.000209847 -5.64281e-05 0.000210195 -4.41207e-06 0.000208968 4.69963e-05 0.000205921 0.000101018 0.000200928 0.000157472 0.000193978 0.00021722 0.000184695 0.000269974 0.000173601 0.000325501 0.000160417 0.000372447 0.000145525 0.000418401 0.000129138 0.000460567 0.000111726 0.000492705 9.27191e-05 0.000519625 7.36945e-05 0.000538532 5.3906e-05 0.000548319 3.44484e-05 0.000550125 1.57397e-05 0.000545059 -3.24402e-06 0.000534392 -2.08781e-05 0.000516372 -3.73478e-05 0.000493553 -5.26745e-05 0.000468167 -6.67572e-05 0.000439364 -7.95451e-05 0.000408841 -9.11537e-05 0.000378575 -0.000101715 0.000347823 -0.000111158 0.000317149 -0.000119545 0.000287703 -0.000127083 0.000258878 -0.000133784 0.000232515 -0.000139816 0.000206108 -0.000145138 0.000180105 -0.00014972 0.000156547 -0.000153846 0.000131643 -0.000157215 0.0001057 -0.000159699 8.07942e-05 -0.000161493 5.33601e-05 -0.000162135 2.7108e-05 -0.000161838 -6.1289e-07 -0.000160959 -2.93072e-05 -0.000158758 -5.55914e-05 -0.000155632 -8.11091e-05 -0.000151957 -0.000106588 -0.000147309 -0.000127395 -0.000142357 -0.000148749 -0.000136827 -0.000167626 -0.000130776 -0.000184618 -0.00012442 -0.000201156 -0.000117932 -0.000216455 -0.00011063 -0.000230767 -0.000103399 -0.00024651 -9.54011e-05 -0.000260255 -8.74363e-05 -0.000276812 -7.8861e-05 -0.000291825 -6.98319e-05 -0.000309376 -6.00252e-05 -0.000326058 -5.00115e-05 -0.000344231 -3.89719e-05 -0.00036082 -2.75639e-05 -0.000378694 -1.52758e-05 -0.00039646 -2.14556e-06 -0.000413013 1.18812e-05 -0.000427272 2.61132e-05 -0.000436711 4.09088e-05 -0.000445568 5.60855e-05 -0.000449325 7.15625e-05 -0.000449402 8.75239e-05 -0.000446708 0.000103153 -0.00043428 0.000118539 -0.00041773 0.000133296 -0.00039357 0.000147033 -0.000361688 0.000159556 -0.000322948 0.000170531 -0.000277574 0.000179709 -0.000225024 0.000186612 -0.000165819 0.000190964 -0.000101297 0.000192187 -3.20713e-05 0.000191249 3.51827e-05 0.000187374 0.000103942 0.000181185 0.000169623 0.000172733 0.000233346 0.000161535 0.000294547 0.000148384 0.000348645 0.000133768 0.000395051 0.000117566 0.000436758 9.98205e-05 0.000470509 8.17213e-05 0.000493711 6.2909e-05 0.000510484 4.40685e-05 0.00051712 2.57289e-05 0.000515524 8.01314e-06 0.00050705 -8.80346e-06 0.000491805 -2.4213e-05 0.000471447 -3.88642e-05 0.000448529 -5.18676e-05 0.000421674 -6.40091e-05 0.00039665 -7.50786e-05 0.000367673 -8.49703e-05 0.000340705 -9.39551e-05 0.000314191 -0.000101961 0.000286936 -0.000109407 0.000262953 -0.00011581 0.000238013 -0.000121566 0.000215728 -0.000126557 0.000191492 -0.000130973 0.000173575 -0.000135099 0.000155471 -0.000138698 0.000136832 -0.000141796 0.000119424 -0.000144548 0.000104509 -0.000147164 8.92261e-05 -0.000149153 7.02189e-05 -0.000150451 5.42616e-05 -0.000151875 4.09307e-05 -0.000153256 2.26906e-05 -0.000153749 3.37636e-06 -0.000153946 -1.3461e-05 -0.000153304 -3.91945e-05 -0.000151958 -6.09441e-05 -0.000150436 -8.16352e-05 -0.000148191 -0.000108302 -0.000144858 -0.000137334 -0.000140363 -0.000167188 -0.000135312 -0.000194713 -0.000128904 -0.000228761 -0.000121258 -0.000259993 -0.000112836 -0.00028989 -0.000103164 -0.000321854 -9.23519e-05 -0.000351528 -8.02777e-05 -0.000381855 -6.75036e-05 -0.000406435 -5.32632e-05 -0.000433339 -3.80081e-05 -0.000455567 -2.21391e-05 -0.000473433 -5.36094e-06 -0.000488267 1.20708e-05 -0.000497581 2.9523e-05 -0.00049983 4.707e-05 -0.000497197 6.46424e-05 -0.000488365 8.13056e-05 -0.000470794 9.7114e-05 -0.000448527 0.000112232 -0.000421794 0.000125755 -0.000387473 0.000138089 -0.000350371 0.000148611 -0.000307748 0.000157828 -0.00026442 0.000165131 -0.000216484 0.000170888 -0.000168608 0.000174932 -0.00011857 0.00017719 -6.76161e-05 0.000177467 -1.59498e-05 0.000176072 3.46137e-05 0.000173122 8.37038e-05 0.000168478 0.000132175 0.000162516 0.000177999 0.000154928 0.000223561 0.000145658 0.000267846 0.000135032 0.0003083 0.000123143 0.000345928 0.000109905 0.000380421 9.55332e-05 0.000410878 8.03289e-05 0.000435945 6.45258e-05 0.000456016 4.80611e-05 0.000472191 3.12941e-05 0.000482473 1.43412e-05 0.000487772 -2.55144e-06 0.000487368 -1.91058e-05 0.000481471 -3.49276e-05 0.000469869 -5.00258e-05 0.000454694 -6.44242e-05 0.000436637 -7.80228e-05 0.000415108 -9.05833e-05 0.000390746 -0.000102175 0.00036451 -0.000112585 0.000335349 -0.000121849 0.000306037 -0.000130073 0.000275671 -0.000137451 0.000246951 -0.00014401 0.000217942 -0.000149464 0.000187292 -0.000153792 0.000156397 -0.000157149 0.000127319 -0.000159766 0.000100634 -0.000161667 7.38341e-05 -0.000162981 4.84114e-05 -0.000163248 2.21738e-05 -0.00016264 -3.10692e-06 -0.000161777 -2.46249e-05 -0.000160378 -4.71451e-05 -0.000158158 -7.0266e-05 -0.000155231 -9.28666e-05 -0.000151661 -0.000114471 -0.000147643 -0.000134918 -0.000143037 -0.000155816 -0.000137725 -0.000176859 -0.000131727 -0.000197516 -0.000125241 -0.000217578 -0.000118122 -0.000237556 -0.000110197 -0.000258435 -0.000101601 -0.000278128 -9.2466e-05 -0.000296822 -8.27418e-05 -0.000315646 -7.22938e-05 -0.000334014 -6.12138e-05 -0.000351429 -4.95233e-05 -0.000367817 -3.72953e-05 -0.000382832 -2.45295e-05 -0.000396364 -1.11678e-05 -0.000408621 2.69715e-06 -0.000418482 1.69153e-05 -0.000425375 3.13645e-05 -0.000428967 4.58336e-05 -0.000428531 6.04531e-05 -0.000425482 7.47569e-05 -0.000417096 8.86755e-05 -0.000404996 0.000102497 -0.00038996 0.000115583 -0.000368885 0.000127771 -0.000342552 0.000138942 -0.000312182 0.000149007 -0.000277529 0.000157743 -0.00023858 0.000165051 -0.000195952 0.000170468 -0.000148809 0.000174312 -0.000100271 0.000176033 -4.90251e-05 0.000176057 1.90482e-06 0.00017433 5.29806e-05 0.000170578 0.000104645 0.000165133 0.000153926 0.000158046 0.000201265 0.000149265 0.000246591 0.000138906 0.000288715 0.000127217 0.00032634 0.000114439 0.000359189 0.000100615 0.000387503 8.59923e-05 0.000410342 7.08771e-05 0.000427468 5.53878e-05 0.000438912 3.98488e-05 0.000444693 2.44387e-05 0.00044523 9.27695e-06 0.000440711 -5.37285e-06 0.000431739 -1.93958e-05 0.000418756 -3.27837e-05 0.000402624 -4.5367e-05 0.000383657 -5.70767e-05 0.000362309 -6.78985e-05 0.0003393 -7.78415e-05 0.000315099 -8.6881e-05 0.000290239 -9.50512e-05 0.000264738 -0.000102327 0.000238858 -0.000108718 0.000213038 -0.000114274 0.000187403 -0.000118972 0.000162285 -0.000122933 0.000137659 -0.000126162 0.000113703 -0.00012866 9.04244e-05 -0.000130481 6.7423e-05 -0.000131594 4.49718e-05 -0.000132 2.30058e-05 -0.000131786 2.07213e-06 -0.000131001 -1.79654e-05 -0.000129755 -3.74752e-05 -0.000127882 -5.6955e-05 -0.000125476 -7.65629e-05 -0.000122413 -9.51041e-05 -0.000118854 -0.000114245 -0.000114665 -0.00013271 -0.000109858 -0.000150669 -0.000104566 -0.000168435 -9.87023e-05 -0.000184926 -9.23152e-05 -0.000201429 -8.53893e-05 -0.000217492 -7.80408e-05 -0.000232342 -7.00852e-05 -0.000246771 -6.18285e-05 -0.000260292 -5.30762e-05 -0.000272263 -4.3926e-05 -0.000283751 -3.45261e-05 -0.000293547 -2.47448e-05 -0.000301351 -1.46599e-05 -0.000309437 -4.37531e-06 -0.000315272 6.27741e-06 -0.000318771 1.70288e-05 -0.000320943 2.7734e-05 -0.000319039 3.83685e-05 -0.000315446 4.87513e-05 -0.000308693 5.88603e-05 -0.000298769 6.8644e-05 -0.000288095 7.79107e-05 -0.000273145 8.66462e-05 -0.000256582 9.47085e-05 -0.00023696 0.000101986 -0.000215274 0.000108425 -0.000192538 0.000113974 -0.00016675 0.000118578 -0.000140927 0.000122314 -0.000113492 0.000124947 -8.62244e-05 0.000126756 -5.81027e-05 0.000127434 -3.02608e-05 0.000127153 -1.60853e-06 0.000126005 2.61234e-05 0.000123882 5.24562e-05 0.000120835 7.77172e-05 0.000117076 0.000100423 0.000112595 0.000121321 0.000107402 0.00014064 0.00010171 0.000156895 9.55529e-05 0.000170893 8.90897e-05 0.000182949 8.23753e-05 0.000191513 7.54623e-05 0.000197977 6.84192e-05 0.000202043 6.13254e-05 0.000204016 5.43668e-05 0.000204154 4.75314e-05 0.000201919 4.08684e-05 0.000197618 3.45558e-05 0.000191967 2.84347e-05 0.00018485 2.26143e-05 0.000176633 1.72206e-05 0.000167337 1.2071e-05 0.000157135 7.457e-06 0.000146361 3.09881e-06 0.000134849 -9.33345e-07 0.000122965 -4.35159e-06 0.000111056 -7.29348e-06 9.83879e-05 -9.77021e-06 8.6081e-05 -1.18237e-05 7.42225e-05 -1.34774e-05 6.2958e-05 -1.47721e-05 5.24951e-05 -1.57415e-05 4.2629e-05 -1.65024e-05 3.371e-05 2.50491e-05 -0.000134439 -0.000269138 -0.000125781 -0.000315792 -0.000114835 -0.0003561 -9.98373e-05 -0.000405222 -9.0141e-05 -0.000421442 -7.22004e-05 -0.000481563 -5.35177e-05 -0.00051873 -3.85385e-05 -0.000520054 -1.87927e-05 -0.000555771 -1.44482e-06 -0.000555993 1.78785e-05 -0.000573551 3.85209e-05 -0.000576922 5.67221e-05 -0.000568795 7.62129e-05 -0.000566421 9.57322e-05 -0.000555081 0.000113683 -0.000530145 0.000130874 -0.000500026 0.000146586 -0.000462843 0.000160846 -0.000422111 0.000173507 -0.000376878 0.000184345 -0.00032884 0.000193295 -0.000276557 0.000200541 -0.000224075 0.000206011 -0.000169219 0.000209906 -0.000115104 0.000211987 -5.85092e-05 0.000212392 -4.81741e-06 0.000211191 4.81974e-05 0.000208155 0.000104054 0.000203145 0.000162482 0.000196167 0.000224198 0.000186781 0.00027936 0.000175587 0.000336695 0.000162459 0.000385576 0.000147145 0.000433715 0.000130437 0.000477275 0.000112792 0.00051035 9.34552e-05 0.000538961 7.40483e-05 0.000557939 5.4183e-05 0.000568184 3.42096e-05 0.000570098 1.53237e-05 0.000563945 -3.96517e-06 0.000553681 -2.17742e-05 0.000534181 -3.83622e-05 0.000510141 -5.37625e-05 0.000483567 -6.78875e-05 0.000453489 -8.06723e-05 0.000421626 -9.22448e-05 0.000390148 -0.000102802 0.00035838 -0.000112216 0.000326562 -0.000120518 0.000296006 -0.000128008 0.000266368 -0.000134635 0.000239142 -0.000140591 0.000212064 -0.00014587 0.000185384 -0.000150348 0.000161025 -0.000154459 0.000135753 -0.000157814 0.000109055 -0.000160211 8.31913e-05 -0.000162033 5.51818e-05 -0.000162596 2.76713e-05 -0.000162173 -1.03558e-06 -0.000161283 -3.01972e-05 -0.000158993 -5.78821e-05 -0.000155735 -8.43667e-05 -0.000151992 -0.000110331 -0.000147231 -0.000132156 -0.000142203 -0.000153778 -0.000136613 -0.000173216 -0.000130496 -0.000190735 -0.000124099 -0.000207553 -0.000117606 -0.000222947 -0.000110323 -0.00023805 -0.000103037 -0.000253795 -9.50922e-05 -0.000268201 -8.72682e-05 -0.000284636 -7.86734e-05 -0.000300419 -6.97488e-05 -0.000318301 -5.99827e-05 -0.000335824 -4.99657e-05 -0.000354248 -3.91287e-05 -0.000371658 -2.77821e-05 -0.000390041 -1.58494e-05 -0.000408392 -2.59744e-06 -0.000426265 1.14166e-05 -0.000441286 2.55764e-05 -0.000450871 4.02885e-05 -0.00046028 5.54494e-05 -0.000464486 7.09218e-05 -0.000464875 8.70446e-05 -0.000462831 0.000102759 -0.000449995 0.000118391 -0.000433363 0.000133405 -0.000408583 0.000147429 -0.000375712 0.000160195 -0.000335714 0.000171538 -0.000288917 0.000180974 -0.000234461 0.000188154 -0.000173 0.000192701 -0.000105844 0.000193894 -3.32644e-05 0.000193081 3.59957e-05 0.000189022 0.000108001 0.000182721 0.000175924 0.000174191 0.000241876 0.000162664 0.000306074 0.000149264 0.000362046 0.000134449 0.000409866 0.000118111 0.000453096 0.000100029 0.000488591 8.17534e-05 0.000511986 6.28135e-05 0.000529424 4.38318e-05 0.000536102 2.55531e-05 0.000533803 7.94903e-06 0.000524654 -8.77153e-06 0.000508525 -2.3846e-05 0.000486521 -3.83294e-05 0.000463012 -5.10398e-05 0.000434384 -6.27438e-05 0.000408354 -7.36552e-05 0.000378584 -8.31524e-05 0.000350202 -9.17148e-05 0.000322753 -9.93571e-05 0.000294579 -0.000106365 0.000269961 -0.000112334 0.000243982 -0.000117345 0.000220738 -0.000122066 0.000196214 -0.000126023 0.000177532 -0.000129585 0.000159032 -0.000132893 0.000140139 -0.000135643 0.000122174 -0.000138009 0.000106875 -0.000140307 9.15238e-05 -0.00014219 7.21013e-05 -0.000143278 5.53496e-05 -0.000144429 4.2082e-05 -0.000146116 2.43781e-05 -0.000146782 4.04239e-06 -0.000146796 -1.34474e-05 -0.000146464 -3.95262e-05 -0.000145411 -6.19972e-05 -0.000144067 -8.29795e-05 -0.000142222 -0.000110147 -0.000139378 -0.000140178 -0.000135354 -0.000171212 -0.000130728 -0.000199339 -0.000124993 -0.000234495 -0.00011787 -0.000267116 -0.000110017 -0.000297743 -0.000100896 -0.000330975 -9.0638e-05 -0.000361786 -7.91121e-05 -0.000393381 -6.66217e-05 -0.000418926 -5.25921e-05 -0.000447369 -3.76073e-05 -0.000470552 -2.19657e-05 -0.000489075 -5.37505e-06 -0.000504857 1.19681e-05 -0.000514925 2.93985e-05 -0.000517261 4.69251e-05 -0.000514723 6.46156e-05 -0.000506056 8.13555e-05 -0.000487534 9.72627e-05 -0.000464435 0.0001126 -0.000437131 0.000126238 -0.000401112 0.000138751 -0.000362884 0.000149381 -0.000318378 0.000158741 -0.00027378 0.000166105 -0.000223849 0.000171928 -0.00017443 0.000176003 -0.000122645 0.000178326 -6.99392e-05 0.000178509 -1.61331e-05 0.000177069 3.60531e-05 0.000174051 8.67224e-05 0.000169276 0.00013695 0.000163224 0.000184051 0.000155564 0.00023122 0.000146075 0.000277335 0.000135354 0.000319021 0.000123344 0.000357937 0.000109957 0.000393808 9.53807e-05 0.000425455 8.00747e-05 0.000451251 6.4237e-05 0.000471854 4.76439e-05 0.000488785 3.08602e-05 0.000499257 1.39094e-05 0.000504722 -2.95336e-06 0.00050423 -1.94465e-05 0.000497965 -3.50846e-05 0.000485507 -4.99327e-05 0.000469542 -6.41323e-05 0.000450837 -7.75132e-05 0.000428489 -8.9892e-05 0.000403125 -0.000101282 0.0003759 -0.00011151 0.000345577 -0.000120544 0.000315071 -0.000128612 0.000283738 -0.000135785 0.000254125 -0.000142113 0.000224271 -0.000147282 0.000192461 -0.000151334 0.000160448 -0.000154469 0.000130455 -0.000156762 0.000102927 -0.000158533 7.56049e-05 -0.000159756 4.96342e-05 -0.000159963 2.23813e-05 -0.000159336 -3.73449e-06 -0.000158525 -2.54356e-05 -0.000157252 -4.84184e-05 -0.000155182 -7.23353e-05 -0.000152467 -9.5582e-05 -0.000149124 -0.000117813 -0.000145381 -0.000138661 -0.000141013 -0.000160184 -0.000136035 -0.000181836 -0.000130314 -0.000203237 -0.000124141 -0.000223751 -0.000117307 -0.00024439 -0.000109631 -0.000266112 -0.000101265 -0.000286494 -9.2404e-05 -0.000305683 -8.28686e-05 -0.000325182 -7.25675e-05 -0.000344315 -6.15949e-05 -0.000362401 -4.99778e-05 -0.000379434 -3.78172e-05 -0.000394993 -2.50647e-05 -0.000409117 -1.16554e-05 -0.00042203 2.29393e-06 -0.000432432 1.65819e-05 -0.000439663 3.11837e-05 -0.000443569 4.57726e-05 -0.00044312 6.05665e-05 -0.000440276 7.49628e-05 -0.000431492 8.90264e-05 -0.000419059 0.00010309 -0.000404024 0.000116307 -0.000382101 0.000128593 -0.000354838 0.000139918 -0.000323507 0.000150116 -0.000287727 0.000158988 -0.000247452 0.000166435 -0.000203398 0.000171896 -0.00015427 0.00017579 -0.000104165 0.000177546 -5.07808e-05 0.000177549 1.90161e-06 0.000175862 5.46681e-05 0.000172061 0.000108446 0.000166532 0.000159455 0.000159413 0.000208384 0.00015055 0.000255455 0.000140048 0.000299216 0.000128212 0.000338176 0.000115289 0.000372112 0.000101303 0.00040149 8.64959e-05 0.000425149 7.11668e-05 0.000442797 5.55028e-05 0.000454576 3.97719e-05 0.000460424 2.4138e-05 0.000460864 8.82392e-06 0.000456025 -5.9661e-06 0.000446529 -2.01473e-05 0.000432937 -3.35984e-05 0.000416075 -4.62174e-05 0.000396276 -5.80057e-05 0.000374098 -6.87875e-05 0.000350082 -7.86952e-05 0.000325006 -8.7745e-05 0.000299289 -9.58837e-05 0.000272877 -0.000103047 0.000246021 -0.000109431 0.000219422 -0.000114929 0.000192901 -0.000119557 0.000166913 -0.000123493 0.000141595 -0.000126686 0.000116896 -0.000129153 9.28914e-05 -0.000130988 6.92582e-05 -0.000132092 4.60754e-05 -0.000132497 2.34109e-05 -0.000132237 1.81231e-06 -0.000131491 -1.8711e-05 -0.000130259 -3.87071e-05 -0.000128448 -5.87665e-05 -0.000126067 -7.89434e-05 -0.00012303 -9.81413e-05 -0.000119497 -0.000117779 -0.000115312 -0.000136895 -0.000110496 -0.000155484 -0.000105214 -0.000173717 -9.93183e-05 -0.000190822 -9.29271e-05 -0.00020782 -8.59697e-05 -0.000224449 -7.85583e-05 -0.000239753 -7.06399e-05 -0.000254689 -6.236e-05 -0.000268572 -5.35293e-05 -0.000281094 -4.43226e-05 -0.000292958 -3.48892e-05 -0.00030298 -2.50105e-05 -0.00031123 -1.48746e-05 -0.000319573 -4.54003e-06 -0.000325607 6.21312e-06 -0.000329524 1.70741e-05 -0.000331804 2.78801e-05 -0.000329845 3.86247e-05 -0.000326191 4.90765e-05 -0.000319144 5.93179e-05 -0.00030901 6.92323e-05 -0.00029801 7.86038e-05 -0.000282517 8.73983e-05 -0.000265376 9.5552e-05 -0.000245114 0.000102892 -0.000222614 0.00010941 -0.000199056 0.000115048 -0.000172388 0.000119675 -0.000145554 0.000123405 -0.000117222 0.000126029 -8.88487e-05 0.000127813 -5.98864e-05 0.000128503 -3.09508e-05 0.000128226 -1.33184e-06 0.000127004 2.73462e-05 0.000124802 5.46581e-05 0.00012175 8.07691e-05 0.000117904 0.000104268 0.000113308 0.000125917 0.000108037 0.000145911 0.000102316 0.000162616 9.59994e-05 0.000177209 8.94411e-05 0.000189508 8.26609e-05 0.000198293 7.56213e-05 0.000205017 6.84612e-05 0.000209204 6.13822e-05 0.000211095 5.42432e-05 0.000211293 4.73645e-05 0.000208798 4.06773e-05 0.000204305 3.42737e-05 0.000198371 2.80764e-05 0.000191047 2.23306e-05 0.000182379 1.68082e-05 0.000172859 1.17167e-05 0.000162226 6.99435e-06 0.000151084 2.54466e-06 0.000139298 -1.42526e-06 0.000126935 -4.85562e-06 0.000114487 -7.79589e-06 0.000101328 -1.02546e-05 8.85398e-05 -1.22846e-05 7.62525e-05 -1.39188e-05 6.45922e-05 -1.51743e-05 5.37507e-05 -1.61149e-05 4.35696e-05 -1.68317e-05 3.44267e-05 2.55429e-05 -0.000135954 -0.000276222 -0.000128102 -0.000323644 -0.0001167 -0.000367502 -0.000100613 -0.000421309 -9.21672e-05 -0.000429888 -7.34555e-05 -0.000500275 -5.41574e-05 -0.000538029 -3.98637e-05 -0.000534348 -1.94034e-05 -0.000576231 -1.93987e-06 -0.000573457 1.74793e-05 -0.00059297 3.88976e-05 -0.00059834 5.68436e-05 -0.000586741 7.66785e-05 -0.000586256 9.67089e-05 -0.000575111 0.000114757 -0.000548193 0.000132238 -0.000517507 0.000148167 -0.000478771 0.000162463 -0.000436407 0.00017537 -0.000389785 0.000186325 -0.000339795 0.000195339 -0.000285571 0.000202618 -0.000231354 0.000208133 -0.000174735 0.000212068 -0.000119039 0.000214195 -6.06368e-05 0.000214623 -5.24495e-06 0.000213501 4.93194e-05 0.000210501 0.000107055 0.000205441 0.000167542 0.000198442 0.000231196 0.000188947 0.000288855 0.000177626 0.000348016 0.000164306 0.000398895 0.000148832 0.000449189 0.00013176 0.000494346 0.000113862 0.000528249 9.41842e-05 0.000558639 7.42579e-05 0.000577865 5.44792e-05 0.000587963 3.39925e-05 0.000590585 1.49506e-05 0.000582986 -4.55302e-06 0.000573185 -2.24518e-05 0.00055208 -3.91344e-05 0.000526823 -5.45906e-05 0.000499023 -6.87767e-05 0.000467675 -8.15925e-05 0.000434441 -9.31291e-05 0.000401685 -0.000103666 0.000368916 -0.000113016 0.000335913 -0.000121152 0.000304142 -0.000128522 0.000273738 -0.000134983 0.000245603 -0.000140761 0.000217842 -0.000145912 0.000190535 -0.000150218 0.000165331 -0.000154267 0.000139803 -0.000157551 0.000112338 -0.000159768 8.54082e-05 -0.000161571 5.69855e-05 -0.000161906 2.80055e-05 -0.000161175 -1.76614e-06 -0.000160208 -3.11637e-05 -0.000157734 -6.03569e-05 -0.00015428 -8.78204e-05 -0.00015044 -0.000114171 -0.000145567 -0.000137029 -0.000140429 -0.000158916 -0.000134779 -0.000178866 -0.000128613 -0.000196901 -0.000122171 -0.000213995 -0.000115614 -0.000229505 -0.000108342 -0.000245322 -0.000101003 -0.000261134 -9.30648e-05 -0.000276138 -8.52231e-05 -0.000292477 -7.67698e-05 -0.000308873 -6.77996e-05 -0.000327271 -5.80544e-05 -0.000345569 -4.82011e-05 -0.000364101 -3.73444e-05 -0.000382514 -2.64656e-05 -0.00040092 -1.40204e-05 -0.000420838 -1.08445e-06 -0.000439201 1.28481e-05 -0.000455219 2.69424e-05 -0.000464966 4.16779e-05 -0.000475016 5.65234e-05 -0.000479332 7.2093e-05 -0.000480444 8.84098e-05 -0.000479148 0.000103997 -0.000465582 0.000119726 -0.000449092 0.000134768 -0.000423626 0.000148871 -0.000389815 0.000161808 -0.000348652 0.000173249 -0.000300358 0.000182843 -0.000244054 0.000190229 -0.000180386 0.00019487 -0.000110485 0.000195902 -3.42961e-05 0.000195327 3.65698e-05 0.000191074 0.000112255 0.000184767 0.00018223 0.000176404 0.00025024 0.000164656 0.000317822 0.000151223 0.000375478 0.000136361 0.000424728 0.000120014 0.000469443 0.000101712 0.000506893 8.33809e-05 0.000530317 6.44987e-05 0.000548306 4.5394e-05 0.000555207 2.73013e-05 0.000551896 9.84766e-06 0.000542108 -6.72367e-06 0.000525097 -2.13331e-05 0.000501131 -3.55798e-05 0.000477259 -4.80079e-05 0.000446812 -5.89791e-05 0.000419326 -6.93468e-05 0.000388952 -7.81715e-05 0.000359027 -8.57019e-05 0.000330284 -9.2558e-05 0.000301435 -9.8542e-05 0.000275945 -0.000103769 0.000249209 -0.000107662 0.000224631 -0.000111598 0.000200151 -0.000114833 0.000180767 -0.00011755 0.00016175 -0.000120223 0.000142812 -0.00012242 0.000124371 -0.000124348 0.000108803 -0.000126032 9.3208e-05 -0.000127838 7.39074e-05 -0.000128694 5.6206e-05 -0.000129378 4.27654e-05 -0.00013142 2.642e-05 -0.000132566 5.18897e-06 -0.000132276 -1.37377e-05 -0.000132243 -3.95594e-05 -0.000131848 -6.23917e-05 -0.000130792 -8.40355e-05 -0.000129591 -0.000111348 -0.000127474 -0.000142296 -0.000124396 -0.00017429 -0.000120481 -0.000203254 -0.000116001 -0.000238976 -0.000109956 -0.000273161 -0.000103133 -0.000304566 -9.50564e-05 -0.000339051 -8.58175e-05 -0.000371025 -7.52324e-05 -0.000403966 -6.31629e-05 -0.000430995 -4.96675e-05 -0.000460864 -3.51498e-05 -0.000485069 -1.97966e-05 -0.000504428 -3.53292e-06 -0.000521121 1.36516e-05 -0.000532109 3.10176e-05 -0.000534627 4.84081e-05 -0.000532114 6.62197e-05 -0.000523868 8.29349e-05 -0.000504249 9.88573e-05 -0.000480357 0.000114336 -0.00045261 0.000127927 -0.000414703 0.00014057 -0.000375527 0.000151124 -0.000328931 0.000160624 -0.000283281 0.000167874 -0.000231099 0.000173746 -0.000180302 0.000177816 -0.000126716 0.000180221 -7.23438e-05 0.000180295 -1.62071e-05 0.000178812 3.75364e-05 0.000175871 8.96628e-05 0.000171015 0.000141806 0.000165074 0.000189992 0.000157407 0.000238887 0.000147922 0.00028682 0.000137142 0.0003298 0.000125137 0.000369943 0.000111655 0.000407291 9.70468e-05 0.000440062 8.16685e-05 0.00046663 6.58492e-05 0.000487673 4.92158e-05 0.000505418 3.23481e-05 0.000516125 1.55151e-05 0.000521555 -1.30382e-06 0.000521049 -1.77113e-05 0.000514372 -3.31758e-05 0.000500971 -4.78178e-05 0.000484184 -6.18559e-05 0.000464875 -7.50606e-05 0.000441693 -8.72227e-05 0.000415287 -9.81678e-05 0.000386845 -0.00010791 0.000355319 -0.000116304 0.000323465 -0.000123718 0.000291153 -0.000130256 0.000260663 -0.000135832 0.000229847 -0.000140189 0.000196818 -0.000143712 0.000163971 -0.000146393 0.000133136 -0.000148117 0.000104652 -0.000149566 7.70539e-05 -0.000150601 5.06688e-05 -0.000150842 2.26227e-05 -0.000150282 -4.2951e-06 -0.000149546 -2.61715e-05 -0.000148498 -4.94666e-05 -0.000146759 -7.40741e-05 -0.000144512 -9.78283e-05 -0.000141748 -0.000120577 -0.000138531 -0.000141879 -0.000134723 -0.000163992 -0.000130349 -0.00018621 -0.000125243 -0.000208344 -0.000119711 -0.000229283 -0.000113523 -0.000250578 -0.00010648 -0.000273154 -9.86686e-05 -0.000294306 -9.03407e-05 -0.000314011 -8.13391e-05 -0.000334183 -7.14904e-05 -0.000354164 -6.08483e-05 -0.000373043 -4.95583e-05 -0.000390724 -3.76603e-05 -0.000406891 -2.50678e-05 -0.00042171 -1.17635e-05 -0.000435334 2.16902e-06 -0.000446364 1.65037e-05 -0.000453998 3.1237e-05 -0.000458302 4.59829e-05 -0.000457865 6.09915e-05 -0.000455285 7.56001e-05 -0.000446101 8.98635e-05 -0.000433323 0.000104253 -0.000418414 0.000117749 -0.000395597 0.000130277 -0.000367366 0.000141825 -0.000335055 0.000152218 -0.00029812 0.000161279 -0.000256513 0.000168865 -0.000210985 0.000174377 -0.000159782 0.00017841 -0.000108198 0.000180131 -5.2502e-05 0.000180158 1.87442e-06 0.000178524 5.63016e-05 0.000174602 0.000112368 0.000169025 0.000165032 0.00016182 0.000215589 0.000152775 0.0002645 0.000142113 0.000309878 0.000130079 0.00035021 0.000116892 0.000385298 0.000102619 0.000415763 8.74972e-05 0.000440271 7.18239e-05 0.00045847 5.58338e-05 0.000470566 3.98136e-05 0.000476444 2.39634e-05 0.000476714 8.42262e-06 0.000471566 -6.50013e-06 0.000461451 -2.07439e-05 0.000447181 -3.41906e-05 0.000429522 -4.68206e-05 0.000408906 -5.84964e-05 0.000385773 -6.91799e-05 0.000360765 -7.89819e-05 0.000334808 -8.78667e-05 0.000308174 -9.58712e-05 0.000280881 -0.000102987 0.000253137 -0.000109247 0.000225682 -0.000114668 0.000198321 -0.000119279 0.000171525 -0.000123169 0.000145485 -0.000126348 0.000120075 -0.000128813 9.53561e-05 -0.000130694 7.1139e-05 -0.000131829 4.7211e-05 -0.000132275 2.38569e-05 -0.00013204 1.57663e-06 -0.000131384 -1.93663e-05 -0.000130193 -3.98989e-05 -0.00012847 -6.04889e-05 -0.000126161 -8.12523e-05 -0.000123207 -0.000101095 -0.00011978 -0.000121206 -0.000115684 -0.000140992 -0.000110919 -0.000160249 -0.000105703 -0.000178933 -9.98201e-05 -0.000196705 -9.34467e-05 -0.000214194 -8.64902e-05 -0.000231405 -7.90771e-05 -0.000247166 -7.11955e-05 -0.000262571 -6.28445e-05 -0.000276923 -5.39766e-05 -0.000289962 -4.47252e-05 -0.00030221 -3.52673e-05 -0.000312438 -2.52993e-05 -0.000321198 -1.51018e-05 -0.000329771 -4.71716e-06 -0.000335992 6.1671e-06 -0.000340408 1.71236e-05 -0.00034276 2.8019e-05 -0.00034074 3.88862e-05 -0.000337058 4.94354e-05 -0.000329694 5.9824e-05 -0.000319399 6.98332e-05 -0.000308019 7.92934e-05 -0.000291977 8.81612e-05 -0.000274244 9.64029e-05 -0.000253356 0.000103866 -0.000230077 0.000110478 -0.000205668 0.000116148 -0.000178058 0.00012077 -0.000150176 0.000124508 -0.00012096 0.000127128 -9.14692e-05 0.000128986 -6.17445e-05 0.000129583 -3.15473e-05 0.000129324 -1.073e-06 0.000128011 2.86594e-05 0.00012581 5.68589e-05 0.000122705 8.38741e-05 0.000118734 0.000108239 0.000114036 0.000130615 0.00010876 0.000151187 0.000102876 0.0001685 9.64714e-05 0.000183614 8.9851e-05 0.000196128 8.29253e-05 0.000205219 7.57524e-05 0.00021219 6.86024e-05 0.000216353 6.13673e-05 0.000218331 5.42155e-05 0.000218445 4.71576e-05 0.000215856 4.04864e-05 0.000210976 3.39497e-05 0.000204907 2.78388e-05 0.000197158 2.1946e-05 0.000188272 1.63789e-05 0.000178426 1.13072e-05 0.000167298 6.45936e-06 0.000155931 2.24095e-06 0.000143517 -1.93592e-06 0.000131112 -5.37888e-06 0.00011793 -8.31576e-06 0.000104265 -1.0758e-05 9.0982e-05 -1.27624e-05 7.82569e-05 -1.43733e-05 6.6203e-05 -1.55913e-05 5.49686e-05 -1.65036e-05 4.4482e-05 -1.71699e-05 3.5093e-05 2.60133e-05 -0.00013671 -0.000284051 -0.00013032 -0.000330034 -0.00011866 -0.000379162 -0.000101078 -0.000438891 -9.42871e-05 -0.000436678 -7.4717e-05 -0.000519845 -5.47499e-05 -0.000557996 -4.11577e-05 -0.00054794 -2.00969e-05 -0.000597292 -2.30772e-06 -0.000591246 1.70483e-05 -0.000612326 3.93538e-05 -0.000620645 5.69037e-05 -0.000604291 7.71501e-05 -0.000606503 9.77086e-05 -0.00059567 0.000115856 -0.000566341 0.000133654 -0.000535305 0.000149772 -0.000494889 0.00016423 -0.000450866 0.000177265 -0.00040282 0.000188392 -0.000350922 0.000197462 -0.000294641 0.000204771 -0.000238664 0.000210336 -0.0001803 0.000214313 -0.000123016 0.000216496 -6.28192e-05 0.000216947 -5.69671e-06 0.000215929 5.03378e-05 0.000213055 0.000109928 0.000207978 0.00017262 0.000200849 0.000238325 0.000191336 0.000298368 0.000179684 0.000359668 0.00016623 0.000412349 0.000150764 0.000464654 0.000133462 0.000511648 0.000115147 0.000546564 9.53437e-05 0.000578442 7.498e-05 0.000598229 5.45375e-05 0.000608405 3.4122e-05 0.000611001 1.46894e-05 0.000602419 -4.17696e-06 0.000592051 -2.20361e-05 0.000569939 -3.88046e-05 0.000543592 -5.42856e-05 0.000514504 -6.84151e-05 0.000481805 -8.11265e-05 0.000447153 -9.23808e-05 0.000412939 -0.000102483 0.000379019 -0.000111483 0.000344913 -0.000119189 0.000311847 -0.000126275 0.000280824 -0.000132427 0.000251755 -0.000137785 0.000223201 -0.000142653 0.000195402 -0.000146607 0.000169284 -0.000150244 0.00014344 -0.00015322 0.000115315 -0.000155223 8.74107e-05 -0.000156703 5.84662e-05 -0.000156545 2.78468e-05 -0.000155691 -2.62023e-06 -0.000154654 -3.22003e-05 -0.000152158 -6.28531e-05 -0.000148585 -9.13937e-05 -0.000144623 -0.000118133 -0.000139795 -0.000141856 -0.000134667 -0.000164044 -0.000129007 -0.000184527 -0.000122865 -0.000203043 -0.000116454 -0.000220405 -0.00010989 -0.000236068 -0.000102803 -0.000252409 -9.56526e-05 -0.000268285 -8.78461e-05 -0.000283945 -8.00599e-05 -0.000300264 -7.21437e-05 -0.000316789 -6.31631e-05 -0.000336251 -5.39114e-05 -0.000354821 -4.41379e-05 -0.000373875 -3.4005e-05 -0.000392647 -2.31053e-05 -0.000411819 -1.13416e-05 -0.000432601 1.40011e-06 -0.000451943 1.51879e-05 -0.000469006 2.90047e-05 -0.000478782 4.34694e-05 -0.00048948 5.83324e-05 -0.000494195 7.37176e-05 -0.00049583 9.02446e-05 -0.000495675 0.00010583 -0.000481167 0.000121809 -0.000465071 0.000136988 -0.000438805 0.000151308 -0.000404135 0.000164496 -0.00036184 0.000176145 -0.000312006 0.000185942 -0.000253852 0.000193591 -0.000188035 0.000198352 -0.000115246 0.000199061 -3.50044e-05 0.000198876 3.67542e-05 0.000194367 0.000116764 0.000188064 0.000188533 0.000179812 0.000258492 0.000167691 0.000329943 0.000154167 0.000389002 0.000139191 0.000439704 0.00012258 0.000486054 0.00010403 0.000525443 8.5468e-05 0.00054888 6.67407e-05 0.000567033 4.76626e-05 0.000574285 2.98817e-05 0.000569677 1.29831e-05 0.000559007 -3.06962e-06 0.00054115 -1.67519e-05 0.000514813 -3.00256e-05 0.000490533 -4.14908e-05 0.000458277 -5.05904e-05 0.000428425 -5.9742e-05 0.000398104 -6.68621e-05 0.000366147 -7.23032e-05 0.000335725 -7.75773e-05 0.000306709 -8.17579e-05 0.000280126 -8.56934e-05 0.000253145 -8.78504e-05 0.000226788 -9.05012e-05 0.000202801 -9.26005e-05 0.000182866 -9.42191e-05 0.000163368 -9.57439e-05 0.000144337 -9.73279e-05 0.000125955 -9.84812e-05 0.000109956 -9.93759e-05 9.41027e-05 -0.000100748 7.52798e-05 -0.000101264 5.67221e-05 -0.000101453 4.29539e-05 -0.000103644 2.86107e-05 -0.000105324 6.86913e-06 -0.000104838 -1.4223e-05 -0.000105257 -3.91408e-05 -0.000105889 -6.17599e-05 -0.000105329 -8.45955e-05 -0.000104955 -0.000111722 -0.000104105 -0.000143146 -0.00010253 -0.000175865 -9.99812e-05 -0.000205803 -9.7347e-05 -0.00024161 -9.33365e-05 -0.000277171 -8.85662e-05 -0.000309336 -8.26058e-05 -0.000345012 -7.53725e-05 -0.000378259 -6.67869e-05 -0.000412552 -5.58029e-05 -0.000441979 -4.33252e-05 -0.000473342 -3.01769e-05 -0.000498218 -1.5789e-05 -0.000518816 -4.08562e-07 -0.000536502 1.61223e-05 -0.00054864 3.30644e-05 -0.000551569 5.01131e-05 -0.000549163 6.78135e-05 -0.000541568 8.44914e-05 -0.000520927 0.000100445 -0.000496311 0.00011609 -0.000468255 0.000129719 -0.000428332 0.000142581 -0.000388389 0.000153151 -0.000339502 0.000162914 -0.000293043 0.000170133 -0.000238319 0.000176064 -0.000186233 0.000180205 -0.000130857 0.000182678 -7.48167e-05 0.000182637 -1.61659e-05 0.000181071 3.91026e-05 0.000178127 9.26067e-05 0.000173105 0.000146828 0.000167192 0.000195906 0.000159452 0.000246626 0.00014973 0.000296543 0.000138797 0.000340733 0.000126691 0.000382048 0.000113065 0.000420918 9.82309e-05 0.000454896 8.27356e-05 0.000482125 6.69746e-05 0.000503434 5.04092e-05 0.000521983 3.38273e-05 0.000532707 1.72588e-05 0.000538124 8.31731e-07 0.000537476 -1.50339e-05 0.000530238 -2.97519e-05 0.000515689 -4.34864e-05 0.000497918 -5.6502e-05 0.000477891 -6.84999e-05 0.000453691 -7.91499e-05 0.000425937 -8.82996e-05 0.000395995 -9.63505e-05 0.00036337 -0.000102954 0.000330068 -0.000108869 0.000297067 -0.000113905 0.000265699 -0.000118097 0.000234038 -0.000121281 0.000200002 -0.000124217 0.000166907 -0.000126633 0.000135551 -0.000127797 0.000105816 -0.000128919 7.81764e-05 -0.00012991 5.16596e-05 -0.000130044 2.27567e-05 -0.000129917 -4.42209e-06 -0.000129325 -2.67635e-05 -0.00012865 -5.01419e-05 -0.000127638 -7.50861e-05 -0.000126396 -9.90704e-05 -0.000124806 -0.000122167 -0.000122677 -0.000144008 -0.000120049 -0.00016662 -0.00011689 -0.000189369 -0.000112919 -0.000212314 -0.00010865 -0.000233553 -0.000103726 -0.000255502 -9.78952e-05 -0.000278984 -9.12524e-05 -0.000300949 -8.40323e-05 -0.000321231 -7.61604e-05 -0.000342055 -6.7318e-05 -0.000363006 -5.75075e-05 -0.000382854 -4.69838e-05 -0.000401248 -3.58498e-05 -0.000418025 -2.38858e-05 -0.000433674 -1.10338e-05 -0.000448187 2.50287e-06 -0.000459901 1.6557e-05 -0.000468052 3.10954e-05 -0.000472841 4.57244e-05 -0.000472494 6.07258e-05 -0.000470286 7.5342e-05 -0.000460717 8.96706e-05 -0.000447651 0.000104327 -0.000433071 0.00011806 -0.00040933 0.000130802 -0.000380108 0.000142647 -0.000346901 0.000153326 -0.000308799 0.000162679 -0.000265866 0.000170559 -0.000218865 0.000176209 -0.000165432 0.00018043 -0.000112419 0.000182104 -5.41759e-05 0.000182137 1.84055e-06 0.000180553 5.78856e-05 0.000176435 0.000116486 0.00017075 0.000170717 0.000163392 0.000222947 0.000154113 0.000273779 0.000143122 0.000320869 0.000130704 0.000362629 0.000117259 0.000398743 0.00010271 0.000430312 8.72872e-05 0.000455694 7.14647e-05 0.000474293 5.53778e-05 0.000486653 3.92934e-05 0.000492528 2.34981e-05 0.00049251 8.11585e-06 0.000486948 -6.63429e-06 0.000476201 -2.0657e-05 0.000461203 -3.38458e-05 0.000442711 -4.62511e-05 0.000421311 -5.76753e-05 0.000397197 -6.81025e-05 0.000371192 -7.763e-05 0.000344336 -8.62901e-05 0.000316834 -9.40847e-05 0.000288676 -0.000101016 0.000260068 -0.000107031 0.000231696 -0.000112252 0.000203543 -0.000116683 0.000175955 -0.000120402 0.000149204 -0.000123471 0.000123144 -0.000125922 9.78073e-05 -0.000127758 7.29752e-05 -0.000129035 4.8488e-05 -0.000129593 2.4415e-05 -0.000129507 1.4903e-06 -0.000129165 -1.97081e-05 -0.000128205 -4.08587e-05 -0.000126794 -6.19e-05 -0.000124775 -8.32715e-05 -0.000122097 -0.000103773 -0.000118899 -0.000124404 -0.000115055 -0.000144835 -0.000110499 -0.000164805 -0.000105524 -0.000183908 -9.97738e-05 -0.000202455 -9.35586e-05 -0.000220409 -8.67155e-05 -0.000238248 -7.93691e-05 -0.000254513 -7.15365e-05 -0.000270403 -6.3223e-05 -0.000285236 -5.43779e-05 -0.000298807 -4.5099e-05 -0.000311488 -3.5629e-05 -0.000321908 -2.55773e-05 -0.00033125 -1.53322e-05 -0.000340016 -4.86541e-06 -0.000346458 6.12603e-06 -0.0003514 1.71542e-05 -0.000353788 2.81552e-05 -0.000351741 3.91812e-05 -0.000348084 4.98173e-05 -0.00034033 6.03096e-05 -0.000329891 7.0439e-05 -0.000318148 7.99821e-05 -0.00030152 8.89605e-05 -0.000283222 9.73275e-05 -0.000261723 0.000104903 -0.000237652 0.000111535 -0.0002123 0.000117267 -0.000183791 0.000121875 -0.000154784 0.000125659 -0.000124744 0.000128346 -9.41554e-05 0.000130144 -6.35427e-05 0.000130749 -3.21527e-05 0.000130418 -7.41403e-07 0.000129097 2.99799e-05 0.000126885 5.90708e-05 0.000123648 8.71115e-05 0.000119554 0.000112333 0.000114897 0.000135272 0.000109432 0.000156652 0.000103395 0.000174537 9.69492e-05 0.00019006 9.02215e-05 0.000202856 8.31723e-05 0.000212268 7.59694e-05 0.000219392 6.87063e-05 0.000223617 6.13045e-05 0.000225732 5.41115e-05 0.000225638 4.70411e-05 0.000222927 4.02336e-05 0.000217784 3.36809e-05 0.00021146 2.7484e-05 0.000203355 2.14939e-05 0.000194262 1.60444e-05 0.000183876 1.08006e-05 0.000172542 6.10143e-06 0.000160631 1.73362e-06 0.000147885 -2.47365e-06 0.000135319 -5.9224e-06 0.000121378 -8.85363e-06 0.000107196 -1.12799e-05 9.34083e-05 -1.3258e-05 8.02349e-05 -1.48456e-05 6.77907e-05 -1.60244e-05 5.61474e-05 -1.69015e-05 4.53591e-05 -1.75174e-05 3.57089e-05 2.64583e-05 -0.000126241 -0.000303904 -0.000124914 -0.000331361 -0.000117102 -0.000386974 -9.98751e-05 -0.000456118 -9.49669e-05 -0.000441586 -7.54113e-05 -0.000539401 -5.50989e-05 -0.000578308 -4.22939e-05 -0.000560745 -2.09083e-05 -0.000618678 -2.47654e-06 -0.000609678 1.6632e-05 -0.000631434 4.00041e-05 -0.000644018 5.69103e-05 -0.000621198 7.7747e-05 -0.000627339 9.89234e-05 -0.000616846 0.000116993 -0.00058441 0.000135257 -0.000553569 0.000151515 -0.000511148 0.000166224 -0.000465575 0.000179379 -0.000415975 0.000190583 -0.000362126 0.000199824 -0.000303882 0.000207027 -0.000245867 0.000212781 -0.000186054 0.000216666 -0.000126901 0.000218995 -6.51484e-05 0.000219389 -6.09023e-06 0.000218409 5.13173e-05 0.000215454 0.000112883 0.000210582 0.000177492 0.000203404 0.000245503 0.00019399 0.000307781 0.000182088 0.000371571 0.000168406 0.000426031 0.000152793 0.000480268 0.000135342 0.000529099 0.000116504 0.000565402 9.64624e-05 0.000598484 7.58304e-05 0.000618861 5.49293e-05 0.000629306 3.42064e-05 0.000631723 1.40718e-05 0.000622554 -4.56586e-06 0.000610689 -2.23278e-05 0.000587701 -3.89141e-05 0.000560178 -5.4157e-05 0.000529747 -6.75993e-05 0.000495247 -7.95103e-05 0.000459064 -8.9981e-05 0.000423409 -9.89654e-05 0.000388003 -0.000106674 0.000352622 -0.000112998 0.000318172 -0.000118399 0.000286225 -0.000122949 0.000256305 -0.000126569 0.000226821 -0.000130088 0.000198921 -0.000133266 0.000172463 -0.000136205 0.000146378 -0.000139348 0.000118458 -0.00014214 9.02031e-05 -0.00014433 6.06564e-05 -0.000145688 2.92045e-05 -0.000145584 -2.72457e-06 -0.000145099 -3.26852e-05 -0.000143265 -6.46872e-05 -0.000139608 -9.50503e-05 -0.000135035 -0.000122707 -0.000129379 -0.000147513 -0.000123298 -0.000170124 -0.000117019 -0.000190806 -0.000110504 -0.000209558 -0.000104024 -0.000226886 -9.70803e-05 -0.000243012 -9.02835e-05 -0.000259206 -8.34434e-05 -0.000275125 -7.62147e-05 -0.000291174 -6.87525e-05 -0.000307726 -6.10211e-05 -0.00032452 -5.27261e-05 -0.000344546 -4.37176e-05 -0.000363829 -3.45279e-05 -0.000383065 -2.52226e-05 -0.000401953 -1.48073e-05 -0.000422235 -3.87559e-06 -0.000443533 8.51876e-06 -0.000464337 2.14284e-05 -0.000481916 3.45005e-05 -0.000491855 4.81923e-05 -0.000503172 6.22099e-05 -0.000508212 7.70071e-05 -0.000510627 9.30926e-05 -0.000511761 0.000108255 -0.000496329 0.00012423 -0.000481047 0.000139253 -0.000453828 0.000153629 -0.000418511 0.000167105 -0.000375316 0.000178944 -0.000323845 0.000188928 -0.000263836 0.000197058 -0.000196166 0.000201936 -0.000120124 0.000202125 -3.51929e-05 0.000202587 3.62917e-05 0.000197659 0.000121692 0.000191337 0.000194855 0.000183287 0.000266542 0.000170635 0.000342595 0.000157054 0.000402584 0.000142165 0.000454593 0.000125607 0.000502612 0.00010725 0.0005438 8.90577e-05 0.000567072 7.11403e-05 0.000584951 5.30818e-05 0.000592343 3.63864e-05 0.000586372 2.09809e-05 0.000574412 6.74536e-06 0.000555385 -5.39451e-06 0.000526953 -1.60004e-05 0.000501139 -2.57046e-05 0.000467982 -3.30415e-05 0.000435762 -3.95038e-05 0.000404566 -4.35993e-05 0.000370243 -4.55081e-05 0.000337634 -4.80726e-05 0.000309273 -5.00856e-05 0.000282139 -5.16379e-05 0.000254697 -5.20856e-05 0.000227236 -5.32003e-05 0.000203916 -5.36767e-05 0.000183343 -5.41006e-05 0.000163792 -5.4311e-05 0.000144547 -5.48755e-05 0.00012652 -5.50831e-05 0.000110164 -5.53687e-05 9.43883e-05 -5.61593e-05 7.60704e-05 -5.60848e-05 5.66476e-05 -5.61048e-05 4.2974e-05 -5.82911e-05 3.0797e-05 -6.08637e-05 9.44171e-06 -6.005e-05 -1.50366e-05 -6.07027e-05 -3.84881e-05 -6.23331e-05 -6.01295e-05 -6.24723e-05 -8.44564e-05 -6.27225e-05 -0.000111472 -6.32149e-05 -0.000142653 -6.338e-05 -0.0001757 -6.25467e-05 -0.000206636 -6.24102e-05 -0.000241746 -6.1173e-05 -0.000278408 -5.92224e-05 -0.000311287 -5.69336e-05 -0.000347301 -5.28159e-05 -0.000382376 -4.74134e-05 -0.000417954 -3.87582e-05 -0.000450634 -2.87607e-05 -0.000483339 -1.80098e-05 -0.000508968 -5.66935e-06 -0.000531156 7.83047e-06 -0.000550001 2.27185e-05 -0.000563528 3.85029e-05 -0.000567353 5.45534e-05 -0.000565213 7.1429e-05 -0.000558444 8.74939e-05 -0.000536992 0.000103032 -0.000511849 0.000118489 -0.000483712 0.000131711 -0.000441554 0.000144555 -0.000401233 0.000154796 -0.000349743 0.000164763 -0.000303011 0.000171824 -0.000245379 0.00017783 -0.00019224 0.000181929 -0.000134955 0.000184563 -7.74509e-05 0.000184167 -1.57701e-05 0.000182601 4.0669e-05 0.000179784 9.54239e-05 0.000174516 0.000152095 0.000168694 0.000201728 0.000161047 0.000254273 0.000151264 0.000306326 0.000140441 0.000351556 0.00012853 0.00039396 0.000115068 0.00043438 0.000100596 0.000469368 8.55743e-05 0.000497147 7.05835e-05 0.000518425 5.47524e-05 0.000537815 3.90701e-05 0.000548389 2.3609e-05 0.000553585 8.35656e-06 0.000552729 -6.15098e-06 0.000544745 -1.9133e-05 0.000528671 -3.10143e-05 0.0005098 -4.19887e-05 0.000488865 -5.22068e-05 0.000463909 -6.14851e-05 0.000435215 -6.91191e-05 0.000403629 -7.59332e-05 0.000370185 -8.19453e-05 0.00033608 -8.7837e-05 0.000302959 -9.32644e-05 0.000271127 -9.80372e-05 0.000238811 -0.000102023 0.000203988 -0.000105506 0.00017039 -0.000108127 0.000138173 -0.000109814 0.000107503 -0.000111106 7.94681e-05 -0.000112287 5.28411e-05 -0.000112745 2.32139e-05 -0.000112205 -4.96142e-06 -0.000111146 -2.78231e-05 -0.000110032 -5.12558e-05 -0.00010811 -7.70079e-05 -0.000105515 -0.000101666 -0.000102236 -0.000125446 -9.86778e-05 -0.000147565 -9.53391e-05 -0.000169959 -9.18751e-05 -0.000192833 -8.85369e-05 -0.000215652 -8.55834e-05 -0.000236506 -8.22986e-05 -0.000258787 -7.87507e-05 -0.000282532 -7.44441e-05 -0.000305255 -6.94473e-05 -0.000326228 -6.35523e-05 -0.00034795 -5.65414e-05 -0.000370017 -4.83936e-05 -0.000391002 -3.93752e-05 -0.000410266 -2.96445e-05 -0.000427755 -1.88087e-05 -0.000444509 -6.85529e-06 -0.00046014 5.83884e-06 -0.000472595 1.93216e-05 -0.000481535 3.33411e-05 -0.00048686 4.75378e-05 -0.000486691 6.22812e-05 -0.00048503 7.65707e-05 -0.000475007 9.06557e-05 -0.000461736 0.000105297 -0.000447713 0.000118904 -0.000422937 0.000131621 -0.000392825 0.000143447 -0.000358726 0.000154167 -0.000319519 0.00016362 -0.000275319 0.000171628 -0.000226872 0.00017726 -0.000171064 0.000181635 -0.000116794 0.000183233 -5.57739e-05 0.000183252 1.82164e-06 0.000181795 5.9342e-05 0.000177517 0.000120765 0.000171785 0.000176448 0.000164398 0.000230334 0.000155071 0.000283105 0.000144018 0.000331922 0.000131614 0.000375033 0.000118257 0.000412101 0.00010376 0.000444808 8.84905e-05 0.000470964 7.2852e-05 0.000489931 5.69881e-05 0.000502517 4.11949e-05 0.000508321 2.56888e-05 0.000508016 1.0639e-05 0.000501998 -3.72511e-06 0.000490566 -1.72124e-05 0.000474691 -2.9996e-05 0.000455494 -4.19451e-05 0.00043326 -5.29484e-05 0.000408201 -6.29002e-05 0.000381144 -7.18793e-05 0.000353315 -7.9865e-05 0.000324819 -8.70362e-05 0.000295847 -9.34451e-05 0.000266477 -9.89961e-05 0.000237247 -0.000103831 0.000208377 -0.000108011 0.000180135 -0.000111595 0.000152788 -0.000114645 0.000126194 -0.000117206 0.000100368 -0.000119204 7.49729e-05 -0.000120702 4.99861e-05 -0.0001215 2.52131e-05 -0.000121696 1.68561e-06 -0.0001218 -1.9604e-05 -0.000121329 -4.13296e-05 -0.000120377 -6.28521e-05 -0.000118886 -8.47625e-05 -0.000116841 -0.000105818 -0.000114236 -0.000127009 -0.000111121 -0.000147951 -0.000107228 -0.000168697 -0.000102866 -0.00018827 -9.76125e-05 -0.000207709 -9.19928e-05 -0.000226029 -8.57087e-05 -0.000244533 -7.86731e-05 -0.000261548 -7.10294e-05 -0.000278047 -6.30371e-05 -0.000293228 -5.43959e-05 -0.000307448 -4.52153e-05 -0.000320669 -3.58269e-05 -0.000331297 -2.57564e-05 -0.00034132 -1.54939e-05 -0.000350278 -4.99672e-06 -0.000356956 6.10705e-06 -0.000362503 1.72041e-05 -0.000364885 2.83466e-05 -0.000362884 3.95055e-05 -0.000359243 5.01953e-05 -0.00035102 6.08052e-05 -0.000340501 7.10486e-05 -0.000328392 8.07263e-05 -0.000311198 8.9842e-05 -0.000292338 9.82818e-05 -0.000270162 0.000105938 -0.000245309 0.000112609 -0.00021897 0.00011839 -0.000189573 0.000123064 -0.000159458 0.000126917 -0.000128597 0.000129593 -9.68305e-05 0.000131303 -6.52536e-05 0.000131961 -3.28102e-05 0.000131571 -3.51329e-07 0.000130258 3.12927e-05 0.000127941 6.13877e-05 0.000124576 9.0477e-05 0.000120519 0.00011639 0.000115697 0.000140094 0.000110083 0.000162266 0.000103978 0.000180642 9.74447e-05 0.000196593 9.0576e-05 0.000209724 8.35395e-05 0.000219305 7.61733e-05 0.000226759 6.87829e-05 0.000231007 6.13491e-05 0.000233166 5.39544e-05 0.000233033 4.68431e-05 0.000230038 3.99317e-05 0.000224695 3.34269e-05 0.000217965 2.7073e-05 0.000209709 2.11945e-05 0.000200141 1.55945e-05 0.000189476 1.03201e-05 0.000177816 5.60779e-06 0.000165343 1.03573e-06 0.000152457 -3.03919e-06 0.000139394 -6.48739e-06 0.000124827 -9.4097e-06 0.000110119 -1.182e-05 9.58187e-05 -1.37724e-05 8.21873e-05 -1.53324e-05 6.93507e-05 -1.64776e-05 5.72926e-05 -1.73194e-05 4.62009e-05 -1.78777e-05 3.62672e-05 2.68727e-05 -0.00018095 -0.000122955 -0.000133209 -0.000379102 -0.000109834 -0.000410349 -8.89639e-05 -0.000476988 -8.34295e-05 -0.000447121 -7.2016e-05 -0.000550814 -5.38711e-05 -0.000596453 -4.21909e-05 -0.000572425 -2.16027e-05 -0.000639266 -2.40453e-06 -0.000628876 1.61448e-05 -0.000649984 4.07682e-05 -0.000668641 5.67147e-05 -0.000637144 7.82993e-05 -0.000648924 0.000100183 -0.00063873 0.000118112 -0.00060234 0.00013689 -0.000572347 0.000153265 -0.000527522 0.000168125 -0.000480436 0.000181493 -0.000429342 0.000192824 -0.000373457 0.000202065 -0.000313123 0.000209347 -0.000253149 0.000215133 -0.000191839 0.000219075 -0.000130844 0.000221457 -6.75304e-05 0.000221792 -6.42512e-06 0.000220942 5.21678e-05 0.000217986 0.000115839 0.000213088 0.000182389 0.000205989 0.000252602 0.000196411 0.000317359 0.000184472 0.000383509 0.000170418 0.000440084 0.000154453 0.000496233 0.000137056 0.000546496 0.000117731 0.000584727 9.71711e-05 0.000619043 7.63684e-05 0.000639663 5.47024e-05 0.000650972 3.40935e-05 0.000652332 1.38619e-05 0.000642785 -5.14766e-06 0.000629698 -2.27457e-05 0.000605299 -3.91135e-05 0.000576546 -5.46161e-05 0.00054525 -6.82075e-05 0.000508838 -8.05504e-05 0.000471407 -9.21652e-05 0.000435024 -0.000102623 0.000398461 -0.000111966 0.000361965 -0.000120642 0.000326847 -0.000129316 0.000294899 -0.000137941 0.000264929 -0.000148099 0.00023698 -0.000160082 0.000210904 -0.000171867 0.000184248 -0.000183095 0.000157606 -0.000194568 0.000129931 -0.000203917 9.95512e-05 -0.00020711 6.38501e-05 -0.000204535 2.66292e-05 -0.000193171 -1.40883e-05 -0.000180426 -4.54303e-05 -0.000167183 -7.79304e-05 -0.000152693 -0.000109541 -0.000140945 -0.000134454 -0.000130953 -0.000157505 -0.000121713 -0.000179364 -0.00011309 -0.000199429 -0.000104284 -0.000218363 -9.55006e-05 -0.00023567 -8.6752e-05 -0.00025176 -7.73933e-05 -0.000268565 -6.75412e-05 -0.000284977 -5.76731e-05 -0.000301042 -4.88463e-05 -0.000316553 -4.09128e-05 -0.000332454 -3.3221e-05 -0.000352238 -2.54872e-05 -0.000371563 -1.76675e-05 -0.000390884 -9.22879e-06 -0.000410391 6.12742e-07 -0.000432076 1.09445e-05 -0.000453865 2.19352e-05 -0.000475328 3.37984e-05 -0.000493779 4.61904e-05 -0.000504247 5.86318e-05 -0.000515614 7.14999e-05 -0.00052108 8.53895e-05 -0.000524517 0.000100669 -0.00052704 0.000114674 -0.000510335 0.000129919 -0.000496291 0.000143925 -0.000467834 0.000157758 -0.000432344 0.000171175 -0.000388733 0.000182535 -0.000335205 0.000192471 -0.000273772 0.00020084 -0.000204534 0.000205685 -0.00012497 0.000205301 -3.48092e-05 0.000206527 3.5066e-05 0.000201031 0.000127188 0.000195156 0.000200729 0.000187646 0.000274053 0.000174658 0.000355583 0.000161872 0.00041537 0.000147763 0.000468702 0.000131946 0.000518429 0.000114746 0.000561 9.8067e-05 0.000583751 8.27764e-05 0.000600241 6.85534e-05 0.000606566 5.54804e-05 0.000599445 4.40955e-05 0.000585797 3.33701e-05 0.00056611 2.37818e-05 0.000536541 1.53433e-05 0.000509577 8.42051e-06 0.000474904 4.74872e-06 0.000439434 2.93963e-06 0.000406375 8.75245e-07 0.000372307 9.8372e-07 0.000337525 6.06714e-07 0.00030965 7.42182e-07 0.000282003 6.58174e-07 0.000254781 1.78481e-06 0.000226109 2.81306e-06 0.000202888 3.89765e-06 0.000182258 4.95793e-06 0.000162732 6.0047e-06 0.0001435 7.49435e-06 0.00012503 8.54201e-06 0.000109116 8.03791e-06 9.48924e-05 8.14021e-06 7.59681e-05 9.56967e-06 5.52181e-05 9.3277e-06 4.32159e-05 6.55547e-06 3.35692e-05 2.94161e-06 1.30556e-05 2.94322e-06 -1.50383e-05 2.54652e-06 -3.80914e-05 -5.99978e-07 -5.6983e-05 -2.19167e-06 -8.28647e-05 -3.4593e-06 -0.000110205 -4.76133e-06 -0.000141351 -6.96921e-06 -0.000173492 -7.83877e-06 -0.000205767 -9.31966e-06 -0.000240265 -1.09307e-05 -0.000276797 -1.20514e-05 -0.000310166 -1.33642e-05 -0.000345988 -1.26115e-05 -0.000383129 -1.15191e-05 -0.000419047 -7.32803e-06 -0.000454825 -1.60562e-06 -0.000489062 4.40626e-06 -0.00051498 1.3079e-05 -0.000539829 2.316e-05 -0.000560082 3.53981e-05 -0.000575766 4.90234e-05 -0.000580978 6.35126e-05 -0.000579702 7.89902e-05 -0.000573921 9.41285e-05 -0.000552131 0.000109173 -0.000526893 0.00012395 -0.000498489 0.000136453 -0.000454057 0.00014908 -0.000413859 0.000158534 -0.000359198 0.000168586 -0.000313063 0.000175134 -0.000251927 0.00018086 -0.000197966 0.00018506 -0.000139156 0.000187619 -8.00098e-05 0.000187139 -1.52904e-05 0.00018531 4.24988e-05 0.000182999 9.77341e-05 0.00017746 0.000157634 0.000172066 0.000207122 0.000164845 0.000261494 0.000155316 0.000315856 0.000144942 0.00036193 0.000133877 0.000405025 0.000120898 0.000447359 0.000107355 0.000482912 9.28506e-05 0.000511651 7.90475e-05 0.000532228 6.3542e-05 0.00055332 4.87171e-05 0.000563214 3.38994e-05 0.000568403 1.91109e-05 0.000567517 5.56876e-06 0.000558287 -6.84944e-06 0.000541089 -1.79703e-05 0.000520921 -2.82384e-05 0.000499133 -3.80712e-05 0.000473742 -4.69326e-05 0.000444076 -5.50206e-05 0.000411717 -6.16726e-05 0.000376836 -6.85425e-05 0.00034295 -7.52481e-05 0.000309665 -8.26141e-05 0.000278493 -9.04684e-05 0.000246665 -9.73516e-05 0.000210871 -0.000102727 0.000175766 -0.000107411 0.000142857 -0.000110937 0.000111028 -0.000113739 8.22698e-05 -0.000117377 5.64793e-05 -0.000118578 2.44151e-05 -0.000116788 -6.7511e-06 -0.000115038 -2.95735e-05 -0.00011297 -5.3324e-05 -0.000109353 -8.06249e-05 -0.000105052 -0.000105967 -9.94166e-05 -0.000131081 -9.34657e-05 -0.000153516 -8.78862e-05 -0.000175538 -8.19236e-05 -0.000198796 -7.59416e-05 -0.000221634 -7.00413e-05 -0.000242406 -6.34489e-05 -0.000265379 -5.66881e-05 -0.000289293 -4.9543e-05 -0.000312401 -4.36217e-05 -0.000332149 -3.89857e-05 -0.000352586 -3.45188e-05 -0.000374484 -2.96462e-05 -0.000395874 -2.38939e-05 -0.000416018 -1.70144e-05 -0.000434635 -8.53837e-06 -0.000452985 1.48272e-06 -0.000470161 1.24899e-05 -0.000483602 2.47359e-05 -0.000493781 3.77651e-05 -0.000499889 5.13504e-05 -0.000500276 6.56661e-05 -0.000499345 7.95718e-05 -0.000488913 9.33742e-05 -0.000475539 0.000108026 -0.000462364 0.00012151 -0.000436421 0.000134168 -0.000405484 0.000145898 -0.000370456 0.000156602 -0.000330223 0.000166086 -0.000284802 0.000174109 -0.000234895 0.000179563 -0.000176518 0.000184114 -0.000121346 0.000185546 -5.72051e-05 0.000185543 1.82423e-06 0.000184359 6.05263e-05 0.000179954 0.00012517 0.000174287 0.000182116 0.000167005 0.000237615 0.000157724 0.000292387 0.000146743 0.000342903 0.000134409 0.000387366 0.000121184 0.000425326 0.000106758 0.000459234 9.14997e-05 0.000486222 7.59355e-05 0.000505496 6.01181e-05 0.000518335 4.43774e-05 0.000524062 2.89575e-05 0.000523436 1.40126e-05 0.000516943 -1.95496e-07 0.000504774 -1.35295e-05 0.000488025 -2.603e-05 0.000467995 -3.75068e-05 0.000444737 -4.79341e-05 0.000418628 -5.74212e-05 0.000390631 -6.60951e-05 0.000361989 -7.40276e-05 0.000332752 -8.12092e-05 0.000303029 -8.75419e-05 0.00027281 -9.31297e-05 0.000242835 -9.82485e-05 0.000213496 -0.000103 0.000184886 -0.00010731 0.000157099 -0.000111073 0.000129956 -0.000114367 0.000103663 -0.000116845 7.74509e-05 -0.000118634 5.17749e-05 -0.000119713 2.62917e-05 -0.000119979 1.95212e-06 -0.000119819 -1.97641e-05 -0.000119042 -4.21071e-05 -0.000117373 -6.45205e-05 -0.000115341 -8.67948e-05 -0.000112838 -0.000108321 -0.00010949 -0.000130357 -0.000106058 -0.000151383 -0.000102039 -0.000172716 -9.76516e-05 -0.000192658 -9.24645e-05 -0.000212896 -8.6927e-05 -0.000231566 -8.10544e-05 -0.000250405 -7.4657e-05 -0.000267946 -6.79089e-05 -0.000284795 -6.09185e-05 -0.000300219 -5.27539e-05 -0.000315612 -4.42863e-05 -0.000329137 -3.51982e-05 -0.000340385 -2.53674e-05 -0.000351151 -1.52993e-05 -0.000360347 -5.00823e-06 -0.000367247 6.17931e-06 -0.000373691 1.73375e-05 -0.000376044 2.85407e-05 -0.000374087 3.98114e-05 -0.000370514 5.05477e-05 -0.000361756 6.13151e-05 -0.000351269 7.17209e-05 -0.000338798 8.15301e-05 -0.000321007 9.07123e-05 -0.00030152 9.92397e-05 -0.00027869 0.000106985 -0.000253054 0.000113727 -0.000225713 0.000119622 -0.000195468 0.000124356 -0.000164192 0.000128156 -0.000132397 0.000130865 -9.95391e-05 0.000132562 -6.69511e-05 0.000133166 -3.34141e-05 0.00013284 -2.54352e-08 0.000131409 3.27235e-05 0.000129 6.3797e-05 0.00012563 9.38467e-05 0.000121439 0.000120581 0.000116489 0.000145044 0.000110821 0.000167934 0.000104648 0.000186816 9.79808e-05 0.00020326 9.10342e-05 0.000216671 8.38366e-05 0.000226502 7.63373e-05 0.000234258 6.87838e-05 0.00023856 6.13434e-05 0.000240606 5.38846e-05 0.000240492 4.65899e-05 0.000237333 3.97586e-05 0.000231526 3.30918e-05 0.000224632 2.67271e-05 0.000216074 2.07643e-05 0.000206103 1.50438e-05 0.000195196 9.93238e-06 0.000182928 4.99814e-06 0.000170277 3.91832e-07 0.000157063 -3.62929e-06 0.000143415 -7.07443e-06 0.000128272 -9.98427e-06 0.000113028 -1.23768e-05 9.82112e-05 -1.43022e-05 8.41127e-05 -1.58342e-05 7.08828e-05 -1.69563e-05 5.84146e-05 -1.77539e-05 4.69985e-05 -1.82574e-05 3.67708e-05 2.72438e-05 2.83498e-05 -0.000151304 5.00327e-07 -0.000351252 -4.28836e-05 -0.000366965 -0.000178314 -0.000341559 -7.98027e-05 -0.000545632 -7.57618e-05 -0.000554855 -4.79477e-05 -0.000624267 -3.69714e-05 -0.000583402 -2.05113e-05 -0.000655726 -1.99396e-06 -0.000647393 1.61662e-05 -0.000668144 4.14367e-05 -0.000693911 5.61233e-05 -0.000651831 7.84981e-05 -0.000671299 0.0001014 -0.000661631 0.000119175 -0.000620115 0.000138364 -0.000591537 0.000154917 -0.000544075 0.000169952 -0.000495471 0.000183652 -0.000443042 0.000195175 -0.000384981 0.000204182 -0.00032213 0.000211505 -0.000260472 0.000217374 -0.000197708 0.000221413 -0.000134883 0.000223816 -6.9934e-05 0.000224181 -6.78973e-06 0.00022358 5.27686e-05 0.0002206 0.000118819 0.000215549 0.00018744 0.000208673 0.000259478 0.000198736 0.000327297 0.000186698 0.000395547 0.000172678 0.000454104 0.000156108 0.000512803 0.000138486 0.000564118 0.000119037 0.000604176 9.75979e-05 0.000640483 7.68918e-05 0.000660369 5.51284e-05 0.000672736 3.4138e-05 0.000673323 1.3995e-05 0.000662928 -5.77147e-06 0.000649465 -2.33448e-05 0.000622873 -3.99834e-05 0.000593185 -5.6051e-05 0.000561317 -6.87512e-05 0.000521538 -8.18884e-05 0.000484544 -9.58955e-05 0.000449031 -0.000107855 0.000410421 -0.000113299 0.000367409 -0.000117504 0.000331051 -0.000119746 0.000297141 -0.000121297 0.000266481 -0.000128447 0.00024413 -0.000161824 0.000244281 -0.000178876 0.000201299 -0.000190668 0.000169398 -0.000196686 0.000135949 -0.000201563 0.000104428 -0.000203932 6.6219e-05 -0.00020494 2.76377e-05 -0.000205184 -1.38447e-05 -0.000203323 -4.72905e-05 -0.000200218 -8.10354e-05 -0.000192706 -0.000117054 -0.000183464 -0.000143695 -0.000173902 -0.000167067 -0.000161424 -0.000191843 -0.00014845 -0.000212403 -0.000134357 -0.000232456 -0.000119284 -0.000250743 -0.000103085 -0.000267959 -8.48313e-05 -0.000286819 -6.81669e-05 -0.000301641 -5.33712e-05 -0.000315838 -4.01285e-05 -0.000329795 -2.76503e-05 -0.000344932 -1.53092e-05 -0.000364579 -2.71572e-06 -0.000384157 1.01425e-05 -0.000403743 2.01263e-05 -0.000420375 2.82923e-05 -0.000440242 3.57791e-05 -0.000461352 4.43154e-05 -0.000483864 5.39107e-05 -0.000503375 6.46519e-05 -0.000514988 7.53323e-05 -0.000526294 8.70655e-05 -0.000532814 9.99821e-05 -0.000537433 0.00011436 -0.000541418 0.000127718 -0.000523692 0.000142179 -0.000510752 0.000155098 -0.000480754 0.000168107 -0.000445353 0.000180771 -0.000401397 0.000191233 -0.000345667 0.000200641 -0.00028318 0.0002088 -0.000212693 0.000213031 -0.0001292 0.000211357 -3.31358e-05 0.000214163 3.22608e-05 0.000207898 0.000133453 0.000202881 0.000205746 0.000196859 0.000280075 0.00018445 0.000367992 0.000173643 0.000426177 0.000161431 0.000480914 0.000147536 0.000532324 0.000132366 0.00057617 0.000117413 0.000598703 0.000104289 0.000613366 9.11696e-05 0.000619686 7.91831e-05 0.000611432 6.93725e-05 0.000595608 6.19959e-05 0.000573487 5.57686e-05 0.000542768 5.49277e-05 0.000510418 5.40712e-05 0.000475761 5.11352e-05 0.00044237 5.2723e-05 0.000404787 6.06444e-05 0.000364386 6.436e-05 0.00033381 6.94467e-05 0.000304564 7.04312e-05 0.000281019 7.95339e-05 0.000245678 8.31028e-05 0.00022254 8.75094e-05 0.000198481 9.81416e-05 0.000171626 0.000107086 0.000153787 0.000115046 0.000135541 0.000125854 0.000114222 0.000139922 9.50477e-05 0.000147358 8.74566e-05 0.000151803 7.15231e-05 0.000160308 4.67131e-05 0.000162097 4.14272e-05 0.000157599 3.80671e-05 0.000160135 1.05192e-05 0.000153864 -8.76681e-06 0.000148559 -3.27865e-05 0.00014569 -5.41141e-05 0.000136683 -7.38584e-05 0.000125046 -9.85669e-05 0.000114573 -0.000130879 0.00010224 -0.000161158 8.89223e-05 -0.000192449 7.70851e-05 -0.000228428 6.556e-05 -0.000265272 5.67428e-05 -0.000301349 5.0044e-05 -0.000339289 4.75246e-05 -0.00038061 4.50103e-05 -0.000416532 4.38681e-05 -0.000453683 4.38387e-05 -0.000489033 4.4459e-05 -0.000515601 4.64094e-05 -0.00054178 5.07749e-05 -0.000564448 5.74807e-05 -0.000582472 6.6792e-05 -0.00059029 7.79115e-05 -0.000590822 9.1105e-05 -0.000587115 0.000104769 -0.000565794 0.000118691 -0.000540816 0.000132892 -0.000512691 0.000144825 -0.00046599 0.000157023 -0.000426057 0.00016602 -0.000368195 0.000176147 -0.00032319 0.000182143 -0.000257923 0.0001878 -0.000203623 0.000191715 -0.000143071 0.0001946 -8.28943e-05 0.000193509 -1.41998e-05 0.000191939 4.40694e-05 0.000189964 9.97086e-05 0.000184357 0.000163241 0.00017954 0.00021194 0.000172694 0.000268339 0.000163192 0.000325358 0.000153298 0.000371825 0.000142511 0.000415811 0.000129726 0.000460144 0.00011618 0.000496458 0.000102172 0.000525659 8.8819e-05 0.000545581 7.43469e-05 0.000567792 6.07099e-05 0.000576851 4.72614e-05 0.000581851 3.46572e-05 0.000580122 2.36482e-05 0.000569296 1.39967e-05 0.000550741 5.95334e-06 0.000528964 -3.73036e-07 0.00050546 -6.49217e-06 0.000479861 -1.64537e-05 0.000454038 -2.49503e-05 0.000420213 -3.07764e-05 0.000382663 -3.73816e-05 0.000349555 -4.85275e-05 0.00032081 -6.8969e-05 0.000298934 -9.55599e-05 0.000273256 -0.000126356 0.000241667 -0.000134243 0.000183653 -0.000133101 0.000141715 -0.000131404 0.000109332 -0.000129489 8.03544e-05 -0.000129885 5.68754e-05 -0.000130069 2.45996e-05 -0.000130526 -6.29439e-06 -0.000130893 -2.9207e-05 -0.000130628 -5.35889e-05 -0.000128085 -8.31673e-05 -0.000125238 -0.000108814 -0.000121139 -0.000135181 -0.000115907 -0.000158748 -0.000109482 -0.000181963 -0.000101296 -0.000206982 -9.21605e-05 -0.000230769 -8.2298e-05 -0.000252269 -7.00369e-05 -0.00027764 -5.7202e-05 -0.000302128 -4.44445e-05 -0.000325158 -3.29046e-05 -0.000343689 -2.30224e-05 -0.000362468 -1.31408e-05 -0.000384365 -3.85601e-06 -0.000405159 3.94809e-06 -0.000423823 9.70619e-06 -0.000440393 1.45045e-05 -0.000457784 1.99905e-05 -0.000475647 2.70372e-05 -0.000490649 3.625e-05 -0.000502993 4.6605e-05 -0.000510244 5.83469e-05 -0.000512018 7.13219e-05 -0.00051232 8.41064e-05 -0.000501697 9.73488e-05 -0.000488781 0.00011177 -0.000476785 0.000125009 -0.00044966 0.000137795 -0.000418271 0.000149337 -0.000381999 0.000160149 -0.000341035 0.000169815 -0.000294469 0.00017794 -0.00024302 0.000183266 -0.000181844 0.000188096 -0.000126175 0.00018936 -5.84695e-05 0.000189277 1.90754e-06 0.000188409 6.13937e-05 0.00018364 0.000129939 0.000178155 0.000187601 0.000171082 0.000244688 0.000161655 0.000301814 0.000150586 0.000353972 0.000138167 0.000399786 0.000124884 0.000438609 0.000110409 0.000473708 9.51672e-05 0.000501464 7.96591e-05 0.000521004 6.40736e-05 0.00053392 4.86225e-05 0.000539513 3.36067e-05 0.000538451 1.90629e-05 0.000531487 5.40521e-06 0.000518431 -7.4333e-06 0.000500863 -1.9504e-05 0.000480065 -3.0204e-05 0.000455437 -3.96022e-05 0.000428026 -4.85897e-05 0.000399619 -5.74365e-05 0.000370835 -6.6447e-05 0.000341762 -7.5613e-05 0.000312195 -8.36368e-05 0.000280834 -9.08488e-05 0.000250047 -9.81318e-05 0.000220779 -0.000105536 0.00019229 -0.000113681 0.000165245 -0.000122582 0.000138857 -0.000132314 0.000113395 -0.000142286 8.74227e-05 -0.000150846 6.03354e-05 -0.000156686 3.21311e-05 -0.000158854 4.11995e-06 -0.000159168 -1.94493e-05 -0.000159101 -4.21741e-05 -0.000156665 -6.69568e-05 -0.000153923 -8.95366e-05 -0.00015087 -0.000111375 -0.000144779 -0.000136447 -0.000138616 -0.000157546 -0.000128214 -0.000183118 -0.000114492 -0.00020638 -0.000101316 -0.000226071 -8.96715e-05 -0.000243211 -8.04201e-05 -0.000259657 -7.2233e-05 -0.000276133 -6.43465e-05 -0.000292682 -5.70599e-05 -0.000307505 -4.93652e-05 -0.000323307 -4.13599e-05 -0.000337142 -3.22354e-05 -0.000349509 -2.33512e-05 -0.000360035 -1.41094e-05 -0.000369588 -4.24757e-06 -0.000377109 6.8892e-06 -0.000384828 1.78168e-05 -0.000386971 2.88724e-05 -0.000385143 4.00839e-05 -0.000381725 5.09405e-05 -0.000372613 6.18695e-05 -0.000362198 7.24394e-05 -0.000349367 8.23403e-05 -0.000330908 9.16286e-05 -0.000310809 0.000100222 -0.000287284 0.000108123 -0.000260955 0.000114915 -0.000232505 0.00012086 -0.000201412 0.000125606 -0.000168938 0.000129346 -0.000136138 0.000132087 -0.00010228 0.000133835 -6.86989e-05 0.0001344 -3.39786e-05 0.000134038 3.36668e-07 0.000132503 3.42577e-05 0.000130118 6.61823e-05 0.000126659 9.73055e-05 0.000122302 0.000124938 0.000117306 0.000150041 0.000111565 0.000173674 0.000105234 0.000193148 9.84857e-05 0.000210008 9.14158e-05 0.000223741 8.41103e-05 0.000233808 7.6425e-05 0.000241943 6.88902e-05 0.000246095 6.12533e-05 0.000248243 5.37768e-05 0.000247968 4.6406e-05 0.000244703 3.94541e-05 0.000238478 3.26834e-05 0.000231402 2.64126e-05 0.000222345 2.02375e-05 0.000212278 1.46775e-05 0.000200756 9.3955e-06 0.00018821 4.47566e-06 0.000175197 -1.57628e-07 0.000161696 -4.13817e-06 0.000147396 -7.55295e-06 0.000131687 -1.04384e-05 0.000115914 -1.27847e-05 0.000100558 -1.4664e-05 8.5992e-05 -1.61527e-05 7.23714e-05 -1.7252e-05 5.95139e-05 -1.80028e-05 4.77493e-05 -1.8484e-05 3.7252e-05 2.77316e-05 2.44679e-05 -0.000175772 8.91278e-06 -0.000335697 4.52349e-06 -0.000362576 2.0504e-05 -0.000357539 -8.22729e-06 -0.0005169 -6.19083e-05 -0.000501174 -0.000160525 -0.00052565 -4.61397e-05 -0.000697788 -2.05583e-05 -0.000681307 1.8329e-08 -0.00066797 1.78267e-05 -0.000685952 4.21525e-05 -0.000718237 5.49829e-05 -0.000664661 7.95391e-05 -0.000695855 0.000102798 -0.00068489 0.000120114 -0.000637431 0.000140199 -0.000611622 0.000156769 -0.000560645 0.000172008 -0.00051071 0.000185982 -0.000457016 0.000197701 -0.0003967 0.000206816 -0.000331245 0.000214121 -0.000267778 0.000220059 -0.000203646 0.000224126 -0.00013895 0.000226468 -7.22767e-05 0.000226993 -7.31423e-06 0.00022662 5.31418e-05 0.000223566 0.000121872 0.000218684 0.000192323 0.000211749 0.000266414 0.000201645 0.000337401 0.00018965 0.000407541 0.000175355 0.0004684 0.000158822 0.000529336 0.000141006 0.000581934 0.000121206 0.000623976 9.9503e-05 0.000662186 7.82772e-05 0.000681595 5.65887e-05 0.000694424 3.54201e-05 0.000694491 1.62201e-05 0.000682128 1.87534e-07 0.000665497 -1.25172e-05 0.000635577 -2.61886e-05 0.000606856 -3.3313e-05 0.000568442 -3.4393e-05 0.000522619 -3.11438e-05 0.000481295 -4.1518e-05 0.000459406 -4.91506e-05 0.000418053 -4.19664e-05 0.000360225 -3.78232e-05 0.000326908 -3.65312e-05 0.00029585 -3.9016e-05 0.000268966 -4.39109e-05 0.000249025 -4.03189e-05 0.000240689 -3.73751e-05 0.000198356 -3.36101e-05 0.000165634 -3.00485e-05 0.000132387 -2.42193e-05 9.85993e-05 -2.21101e-05 6.41098e-05 -2.39736e-05 2.95012e-05 -2.94217e-05 -8.39659e-06 -3.64288e-05 -4.02834e-05 -4.37693e-05 -7.36949e-05 -5.57008e-05 -0.000105122 -6.92886e-05 -0.000130108 -8.14211e-05 -0.000154934 -9.39647e-05 -0.000179299 -0.000104129 -0.000202239 -0.000110766 -0.000225818 -0.000113254 -0.000248255 -0.000110728 -0.000270484 -0.000102931 -0.000294616 -9.08449e-05 -0.000313727 -7.68424e-05 -0.00032984 -6.03615e-05 -0.000346276 -4.23769e-05 -0.000362917 -2.31119e-05 -0.000383844 -1.71017e-06 -0.000405558 1.81566e-05 -0.000423609 3.59758e-05 -0.000438194 5.2242e-05 -0.000456508 6.75736e-05 -0.000476683 8.09717e-05 -0.000497262 8.99161e-05 -0.000512319 9.70293e-05 -0.000522101 0.000102978 -0.000532243 0.00011172 -0.000541555 0.000121523 -0.000547236 0.000133678 -0.000553574 0.000146505 -0.000536519 0.000159827 -0.000524074 0.000172511 -0.000493438 0.000185986 -0.000458827 0.000198483 -0.000413894 0.000208861 -0.000356045 0.000218365 -0.000292684 0.0002269 -0.000221228 0.000230559 -0.00013286 0.000228623 -3.11998e-05 0.000231983 2.8901e-05 0.000225476 0.00013996 0.000222767 0.000208456 0.000216995 0.000285847 0.000204844 0.000380143 0.000194333 0.000436687 0.000183408 0.00049184 0.000170432 0.000545301 0.000154113 0.000592488 0.00014223 0.000610587 0.000131294 0.000624302 0.000123301 0.000627678 0.000118542 0.000616191 0.000116109 0.000598041 0.000114172 0.000575425 0.000105321 0.000551619 0.000106502 0.000509237 0.000105288 0.000476976 0.000109911 0.000437746 0.000114019 0.00040068 0.000124812 0.000353592 0.000140815 0.000317807 0.000151653 0.000293726 0.00016877 0.000263902 0.000187109 0.000227339 0.000197086 0.000212564 0.000209181 0.000186386 0.000221721 0.000159086 0.000231176 0.000144332 0.00024172 0.000124997 0.000250599 0.000105344 0.000259285 8.6362e-05 0.000268348 7.83936e-05 0.000274859 6.50113e-05 0.000278764 4.28084e-05 0.000283317 3.68742e-05 0.000285918 3.54662e-05 0.000292167 4.26976e-06 0.000299395 -1.59939e-05 0.0003001 -3.34914e-05 0.000302836 -5.68505e-05 0.000307446 -7.84681e-05 0.000311562 -0.000102683 0.000308981 -0.000128298 0.000304874 -0.000157051 0.000296801 -0.000184377 0.000282829 -0.000214457 0.000260561 -0.000243004 0.000226085 -0.000266872 0.00018716 -0.000300364 0.000157764 -0.000351214 0.000135316 -0.000394084 0.000118361 -0.000436728 0.000111052 -0.000481724 0.000105914 -0.000510462 0.000101402 -0.000537268 9.88859e-05 -0.000561932 9.78797e-05 -0.000581466 9.9738e-05 -0.000592148 0.000104221 -0.000595305 0.000112256 -0.00059515 0.000121992 -0.00057553 0.000132926 -0.000551749 0.000145037 -0.000524802 0.000156433 -0.000477387 0.000167269 -0.000436893 0.000176059 -0.000376985 0.00018628 -0.000333411 0.000191988 -0.00026363 0.00019758 -0.000209215 0.000201617 -0.000147108 0.000204818 -8.60954e-05 0.000202993 -1.23742e-05 0.000202215 4.48468e-05 0.000199936 0.000101988 0.000193945 0.000169231 0.000189869 0.000216016 0.000183363 0.000274846 0.000173628 0.000335092 0.000164194 0.000381259 0.000153882 0.000426124 0.000142097 0.000471928 0.000129794 0.000508761 0.000117562 0.000537892 0.00010694 0.000556202 9.59253e-05 0.000578807 8.71343e-05 0.000585642 8.03886e-05 0.000588597 7.50804e-05 0.00058543 7.28794e-05 0.000571497 7.28414e-05 0.000550779 7.09471e-05 0.000530858 7.19749e-05 0.000504432 7.29202e-05 0.000478916 5.30403e-05 0.000473918 2.26694e-06 0.000470987 -2.29275e-05 0.000407857 -3.20305e-05 0.000358659 -3.70274e-05 0.000325807 -3.56183e-05 0.000297525 -2.50294e-05 0.000262667 -8.6868e-06 0.000225325 2.84372e-06 0.000172122 1.26887e-05 0.00013187 2.24737e-05 9.95469e-05 2.85131e-05 7.43151e-05 3.11101e-05 5.42784e-05 2.9211e-05 2.64987e-05 2.72378e-05 -4.32114e-06 2.37284e-05 -2.56977e-05 1.79891e-05 -4.78495e-05 1.00809e-05 -7.52592e-05 -1.3046e-06 -9.74283e-05 -1.3278e-05 -0.000123208 -2.58989e-05 -0.000146127 -3.94918e-05 -0.000168371 -5.29535e-05 -0.00019352 -6.41448e-05 -0.000219578 -7.21549e-05 -0.000244259 -7.4397e-05 -0.000275398 -7.01937e-05 -0.000306332 -6.20491e-05 -0.000333303 -5.03812e-05 -0.000355357 -3.64684e-05 -0.000376381 -1.96317e-05 -0.000401202 -2.70743e-06 -0.000422083 1.31608e-05 -0.000439691 2.76688e-05 -0.000454901 3.9757e-05 -0.000469872 5.0101e-05 -0.000485991 5.75419e-05 -0.00049809 6.26173e-05 -0.000508069 6.7166e-05 -0.000514793 7.46039e-05 -0.000519456 8.40796e-05 -0.000521796 9.41606e-05 -0.000511778 0.000105201 -0.000499822 0.000118336 -0.000489919 0.000130645 -0.000461969 0.000142857 -0.000430483 0.000154118 -0.00039326 0.00016476 -0.000351677 0.00017469 -0.000304398 0.000182736 -0.000251066 0.000188079 -0.000187186 0.000193252 -0.000131348 0.000194033 -5.92505e-05 0.000194127 1.81274e-06 0.000193689 6.18323e-05 0.000188543 0.000135085 0.00018313 0.000193014 0.000176072 0.000251746 0.000166672 0.000311214 0.000155573 0.000365071 0.000143162 0.000412197 0.000130244 0.000451527 0.000116097 0.000487855 0.000101348 0.000516214 8.67435e-05 0.000535608 7.20917e-05 0.000548572 5.80831e-05 0.000553522 4.51033e-05 0.000551431 3.33583e-05 0.000543232 2.38167e-05 0.000527973 1.58109e-05 0.000508869 8.16728e-06 0.000487709 -5.05861e-08 0.000463655 -5.97381e-06 0.000433949 -1.15054e-05 0.00040515 -1.98042e-05 0.000379134 -3.32357e-05 0.000355194 -7.59927e-05 0.000354952 -9.91354e-05 0.000303977 -0.000108051 0.000258963 -0.000114735 0.000227463 -0.000116134 0.000193689 -0.000115756 0.000164867 -0.000115967 0.000139068 -0.000115507 0.000112935 -0.000114983 8.68986e-05 -0.000114953 6.03056e-05 -0.000114716 3.18938e-05 -0.000116832 6.23568e-06 -0.000118977 -1.73046e-05 -0.000121431 -3.97196e-05 -0.000125823 -6.25651e-05 -0.000130035 -8.53241e-05 -0.000133988 -0.000107422 -0.000138288 -0.000132147 -0.000141078 -0.000154757 -0.000142394 -0.000181802 -0.000141076 -0.000207698 -0.000137383 -0.000229764 -0.000130729 -0.000249865 -0.00012175 -0.000268636 -0.000111776 -0.000286106 -9.80018e-05 -0.000306456 -8.17855e-05 -0.000323722 -6.2524e-05 -0.000342569 -4.43856e-05 -0.00035528 -3.14524e-05 -0.000362442 -2.08979e-05 -0.00037059 -1.19234e-05 -0.000378563 -1.57362e-06 -0.000387458 8.77809e-06 -0.000395179 1.91445e-05 -0.000397338 2.96956e-05 -0.000395694 4.02886e-05 -0.000392318 5.117e-05 -0.000383494 6.22755e-05 -0.000373303 7.29126e-05 -0.000360005 8.29096e-05 -0.000340905 9.23971e-05 -0.000320296 0.000101128 -0.000296015 0.000109229 -0.000269055 0.000116121 -0.000239397 0.000122134 -0.000207425 0.000126942 -0.000173746 0.000130645 -0.00013984 0.000133451 -0.000105086 0.000135137 -7.03857e-05 0.00013568 -3.45216e-05 0.000135299 7.17585e-07 0.000133706 3.58511e-05 0.000131269 6.86191e-05 0.000127693 0.000100882 0.00012323 0.0001294 0.000118179 0.000155092 0.000112338 0.000179515 0.000105993 0.000199493 9.90726e-05 0.000216928 9.18172e-05 0.000230996 8.43834e-05 0.000241242 7.66077e-05 0.000249719 6.8886e-05 0.000253817 6.11631e-05 0.000255966 5.35202e-05 0.000255611 4.59586e-05 0.000252265 3.89192e-05 0.000245518 3.21457e-05 0.000238176 2.56457e-05 0.000228845 1.95793e-05 0.000218345 1.3854e-05 0.000206482 8.63606e-06 0.000193428 3.8007e-06 0.000180032 -1.59986e-06 0.000167097 -5.87725e-06 0.000151673 -8.62324e-06 0.000134433 -1.08848e-05 0.000118175 -1.28289e-05 0.000102502 -1.44533e-05 8.76164e-05 -1.57444e-05 7.36625e-05 -1.67156e-05 6.04851e-05 -1.73855e-05 4.84192e-05 -1.78529e-05 3.77194e-05 2.91394e-05 1.95838e-05 -0.000195356 8.84706e-06 -0.000324961 5.97882e-06 -0.000359708 1.87473e-05 -0.000370308 2.29264e-06 -0.000500446 2.66097e-06 -0.000501543 6.28809e-06 -0.000529277 -3.94556e-05 -0.000652044 -8.39447e-05 -0.000636818 -7.97086e-05 -0.000672206 1.30149e-05 -0.000778676 4.06385e-05 -0.000745861 5.09552e-05 -0.000674978 8.00665e-05 -0.000724966 0.000103441 -0.000708265 0.000120435 -0.000654424 0.000141845 -0.000633032 0.000158606 -0.000577406 0.000174239 -0.000526343 0.000188678 -0.000471455 0.000200481 -0.000408503 0.000209512 -0.000340277 0.000216788 -0.000275053 0.000222697 -0.000209555 0.000226801 -0.000143053 0.000229117 -7.4593e-05 0.000229878 -8.07509e-06 0.000229984 5.3036e-05 0.000226807 0.000125048 0.000222044 0.000197086 0.000215092 0.000273366 0.000204985 0.000347507 0.000193388 0.000419138 0.000178998 0.00048279 0.00016193 0.000546405 0.000144008 0.000599855 0.000124298 0.000643687 0.000102728 0.000683755 8.32633e-05 0.00070106 6.63568e-05 0.000711331 5.42826e-05 0.000706566 4.43624e-05 0.000692049 3.94433e-05 0.000670416 4.5725e-05 0.000629296 3.31807e-05 0.0006194 2.55599e-05 0.000576062 2.36728e-05 0.000524506 2.00716e-05 0.000484896 2.07618e-05 0.000458715 2.12651e-05 0.00041755 1.85227e-05 0.000362968 1.61162e-05 0.000329315 1.30868e-05 0.000298879 1.0092e-05 0.000271961 8.11956e-06 0.000250997 1.17397e-05 0.000237069 1.21334e-05 0.000197962 1.25712e-05 0.000165196 1.26428e-05 0.000132316 1.32752e-05 9.79669e-05 1.37872e-05 6.35978e-05 1.38004e-05 2.9488e-05 1.34485e-05 -8.04463e-06 1.35664e-05 -4.04014e-05 1.37978e-05 -7.39263e-05 1.41609e-05 -0.000105485 1.50384e-05 -0.000130985 1.64784e-05 -0.000156374 1.76164e-05 -0.000180437 1.87884e-05 -0.000203411 1.97304e-05 -0.00022676 1.83618e-05 -0.000246887 1.46664e-05 -0.000266789 6.53647e-06 -0.000286486 -2.85136e-06 -0.000304339 -1.22971e-05 -0.000320394 -2.14051e-05 -0.000337168 -2.73191e-05 -0.000357003 -2.57098e-05 -0.000385454 -1.50127e-05 -0.000416255 4.64455e-07 -0.000439087 2.07503e-05 -0.00045848 4.35024e-05 -0.000479261 6.8892e-05 -0.000502073 9.43723e-05 -0.000522743 0.000116565 -0.000534512 0.000134801 -0.000540337 0.000145393 -0.000542835 0.000152557 -0.00054872 0.000155262 -0.000549941 0.000159198 -0.000557509 0.000167471 -0.000544792 0.000176919 -0.000533523 0.000185275 -0.000501794 0.000203132 -0.000476684 0.000212107 -0.00042287 0.000218839 -0.000362777 0.000228405 -0.000302249 0.000237546 -0.00023037 0.000240752 -0.000136065 0.000238664 -2.91117e-05 0.000244378 2.3187e-05 0.000235513 0.000148824 0.000241387 0.000202582 0.000227236 0.000299998 0.000212927 0.000394452 0.000204634 0.000444981 0.000195465 0.000501009 0.000185414 0.000555352 0.000179435 0.000598467 0.00017101 0.000619012 0.000165509 0.000629803 0.000167691 0.000625496 0.000171105 0.000612777 0.000177211 0.000591935 0.000173503 0.000579132 0.000189828 0.000535294 0.000205521 0.000493544 0.000206036 0.000476461 0.000211989 0.000431793 0.000207092 0.000405578 0.000210841 0.000349844 0.00021465 0.000313998 0.000225363 0.000283013 0.000230754 0.000258511 0.000236215 0.000221878 0.000242598 0.000206181 0.0002467 0.000182284 0.000250974 0.000154812 0.00025694 0.000138367 0.000267312 0.000114626 0.000273528 9.91272e-05 0.000278001 8.18891e-05 0.000286704 6.96909e-05 0.000292748 5.89676e-05 0.000293747 4.18088e-05 0.0002985 3.21214e-05 0.000302923 3.10433e-05 0.000307069 1.23558e-07 0.000316109 -2.50343e-05 0.000319375 -3.67569e-05 0.000320685 -5.81606e-05 0.00032737 -8.51535e-05 0.000337697 -0.00011301 0.000340621 -0.000131221 0.000341275 -0.000157705 0.000342527 -0.000185629 0.000340812 -0.000212742 0.000343056 -0.000245249 0.000346668 -0.000270484 0.0003468 -0.000300497 0.000339336 -0.00034375 0.000320373 -0.00037512 0.000292638 -0.000408994 0.000252443 -0.000441529 0.000210708 -0.000468727 0.000184148 -0.000510708 0.000168614 -0.000546398 0.000159149 -0.000572001 0.000152518 -0.000585516 0.000149129 -0.000591916 0.00014897 -0.000594991 0.000151173 -0.000577733 0.00015667 -0.000557246 0.000163201 -0.000531333 0.000169219 -0.000483405 0.000178978 -0.000446652 0.000184555 -0.000382561 0.000197466 -0.000346323 0.00020179 -0.000267955 0.00020638 -0.000213805 0.000207165 -0.000147893 0.000213799 -9.273e-05 0.000210618 -9.19313e-06 0.000209088 4.63767e-05 0.000208914 0.000102163 0.000202885 0.00017526 0.000201075 0.000217826 0.000195268 0.000280653 0.000180609 0.00034975 0.000176768 0.0003851 0.000167429 0.000435463 0.000162146 0.000477212 0.00015372 0.000517187 0.00014603 0.000545582 0.000138185 0.000564047 0.000141604 0.000575388 0.000142026 0.00058522 0.000141226 0.000589397 0.000140534 0.000586122 0.000144384 0.000567647 0.000145646 0.000549516 0.000101101 0.000575404 7.0527e-05 0.000535006 4.36263e-05 0.000505817 2.7206e-05 0.000490338 2.63707e-05 0.000471822 3.32211e-05 0.000401007 4.51107e-05 0.000346769 6.05824e-05 0.000310336 7.78372e-05 0.000280271 9.12306e-05 0.000249274 0.000102759 0.000213796 0.000105359 0.000169523 0.000105409 0.00013182 0.000106077 9.88789e-05 0.000106683 7.37088e-05 0.000108903 5.20584e-05 0.000107722 2.76798e-05 0.000105317 -1.91579e-06 0.000105853 -2.62336e-05 0.000105867 -4.78639e-05 0.000105431 -7.48235e-05 0.00010372 -9.57171e-05 0.000101956 -0.000121443 0.000102171 -0.000146342 0.000101673 -0.000167873 9.98156e-05 -0.000191663 9.54971e-05 -0.000215259 8.99222e-05 -0.000238684 7.8389e-05 -0.000263865 6.03445e-05 -0.000288287 3.88185e-05 -0.000311777 1.6058e-05 -0.000332596 -2.95565e-06 -0.000357368 -1.21824e-05 -0.000391975 -1.08384e-05 -0.000423427 -1.36289e-06 -0.000449166 1.52865e-05 -0.00047155 3.43601e-05 -0.000488946 5.45795e-05 -0.000506211 7.44577e-05 -0.000517968 9.12474e-05 -0.000524858 0.000101904 -0.00052545 0.000108012 -0.000525564 0.000112267 -0.000526052 0.000117154 -0.000516665 0.000123244 -0.000505912 0.000132647 -0.000499323 0.000142145 -0.000471467 0.000152228 -0.000440566 0.000161914 -0.000402946 0.000171554 -0.000361317 0.00018143 -0.000314274 0.000188929 -0.000258565 0.000194347 -0.000192605 0.000199695 -0.000136696 0.00019981 -5.93655e-05 0.000200288 1.3348e-06 0.000200381 6.17395e-05 0.000194929 0.000140537 0.000189887 0.000198056 0.000183223 0.00025841 0.000174328 0.000320108 0.000163789 0.000375611 0.000152364 0.000423621 0.000140906 0.000462985 0.000128875 0.000499886 0.000117076 0.000528013 0.000106877 0.000545807 9.80789e-05 0.00055737 9.22432e-05 0.000559358 8.86827e-05 0.000554992 8.51239e-05 0.00054679 8.36743e-05 0.000529423 8.43318e-05 0.000508212 7.59778e-05 0.000496063 2.6154e-05 0.000513479 -1.06635e-05 0.000470767 -2.63501e-05 0.000420837 -4.00274e-05 0.000392812 -5.20871e-05 0.000367253 -5.11609e-05 0.000354026 -4.54397e-05 0.000298255 -3.59146e-05 0.000249438 -2.52898e-05 0.000216838 -1.5285e-05 0.000183684 -6.12967e-06 0.000155712 2.2235e-06 0.000130715 9.18195e-06 0.000105976 1.42454e-05 8.18351e-05 1.68785e-05 5.76725e-05 1.77068e-05 3.10656e-05 1.67272e-05 7.21526e-06 1.58595e-05 -1.6437e-05 1.48988e-05 -3.87588e-05 1.35217e-05 -6.11881e-05 1.13102e-05 -8.31126e-05 9.0684e-06 -0.00010518 5.11828e-06 -0.000128197 8.03791e-08 -0.000149719 -7.44504e-06 -0.000174277 -1.81401e-05 -0.000197003 -3.12341e-05 -0.00021667 -4.7143e-05 -0.000233956 -6.25732e-05 -0.000253205 -7.57226e-05 -0.000272957 -8.66242e-05 -0.000295555 -9.13607e-05 -0.000318985 -9.12019e-05 -0.000342727 -8.42791e-05 -0.000362203 -7.02829e-05 -0.000376439 -5.51322e-05 -0.00038574 -3.53373e-05 -0.000398358 -1.17865e-05 -0.000411009 6.79082e-06 -0.000413757 2.02505e-05 -0.000410797 3.11759e-05 -0.000406619 4.0508e-05 -0.00040165 5.14919e-05 -0.000394478 6.29513e-05 -0.000384763 7.30828e-05 -0.000370136 8.27525e-05 -0.000350574 9.22113e-05 -0.000329755 0.000100934 -0.000304738 0.000109318 -0.000277439 0.000116356 -0.000246435 0.000122517 -0.000213587 0.000127451 -0.00017868 0.000131055 -0.000143444 0.000133919 -0.00010795 0.000135582 -7.20482e-05 0.000135914 -3.48544e-05 0.000135402 1.22959e-06 0.0001337 3.75536e-05 0.000131188 7.1131e-05 0.000127515 0.000104555 0.000122829 0.000134087 0.000117536 0.000160385 0.000111393 0.000185658 0.000104487 0.000206399 9.71239e-05 0.000224291 8.93209e-05 0.000238799 8.12339e-05 0.000249329 7.27461e-05 0.000258207 6.39783e-05 0.000262585 5.48407e-05 0.000265104 4.67415e-05 0.00026371 4.14883e-05 0.000257518 3.82123e-05 0.000248794 3.45142e-05 0.000241874 3.03766e-05 0.000232982 2.60624e-05 0.000222659 2.20033e-05 0.000210541 1.85689e-05 0.000196862 1.58979e-05 0.000182703 1.08485e-05 0.000172146 6.0722e-08 0.000162461 -4.52296e-06 0.000139016 -7.31083e-06 0.000120963 -9.49756e-06 0.000104688 -1.14206e-05 8.95395e-05 -1.22135e-05 7.44554e-05 -1.21202e-05 6.03918e-05 -1.139e-05 4.7689e-05 -1.02131e-05 3.65424e-05 1.89263e-05 1.57008e-05 -0.000211057 8.62389e-06 -0.000317884 6.49785e-06 -0.000357582 1.58772e-05 -0.000379687 3.54378e-06 -0.000488113 3.36788e-06 -0.000501367 8.79251e-06 -0.000534702 -5.36685e-06 -0.000637885 -7.99421e-06 -0.000634191 -1.99689e-05 -0.000660232 -4.89579e-05 -0.000749687 -9.48891e-05 -0.00069993 1.39812e-05 -0.000783848 8.12362e-05 -0.000792221 9.89262e-05 -0.000725955 0.000114716 -0.000670214 0.000141267 -0.000659584 0.000158509 -0.000594648 0.000175923 -0.000543758 0.000191202 -0.000486733 0.000203314 -0.000420614 0.000212234 -0.000349197 0.00021927 -0.00028209 0.000225163 -0.000215447 0.000229882 -0.000147773 0.000232517 -7.72285e-05 0.000233326 -8.88379e-06 0.000233492 5.28703e-05 0.000230373 0.000128167 0.000225396 0.000202062 0.000218453 0.00028031 0.000208612 0.000357348 0.000196847 0.000430903 0.000182125 0.000497512 0.000164957 0.000563573 0.000148943 0.00061587 0.000134758 0.000657871 0.000124002 0.000694511 0.000122715 0.000702347 0.000121808 0.000712238 0.000127936 0.000700438 0.000116988 0.000702996 9.6942e-05 0.000690463 7.67704e-05 0.000649467 6.09578e-05 0.000635213 5.14237e-05 0.000585596 4.33943e-05 0.000532535 3.81216e-05 0.000490169 3.70891e-05 0.000459748 3.60835e-05 0.000418556 3.12885e-05 0.000367763 2.72084e-05 0.000333395 2.34048e-05 0.000302683 1.99446e-05 0.000275421 1.74807e-05 0.000253461 1.88786e-05 0.000235671 1.77759e-05 0.000199065 1.70652e-05 0.000165907 1.64457e-05 0.000132935 1.62333e-05 9.81794e-05 1.6342e-05 6.34891e-05 1.63653e-05 2.94648e-05 1.63015e-05 -7.9808e-06 1.70433e-05 -4.11432e-05 1.78436e-05 -7.47266e-05 1.91266e-05 -0.000106768 2.14281e-05 -0.000133287 2.43882e-05 -0.000159334 2.78672e-05 -0.000183916 3.20814e-05 -0.000207625 3.74464e-05 -0.000232125 4.30486e-05 -0.000252489 4.90098e-05 -0.00027275 5.47107e-05 -0.000292187 6.16622e-05 -0.000311291 6.88741e-05 -0.000327606 7.69592e-05 -0.000345253 8.42932e-05 -0.000364337 8.62364e-05 -0.000387397 8.32511e-05 -0.00041327 7.38905e-05 -0.000429726 6.23315e-05 -0.000446921 5.62281e-05 -0.000473157 6.09964e-05 -0.000506841 7.99966e-05 -0.000541743 0.000106904 -0.000561419 0.000136094 -0.000569527 0.0001652 -0.000571941 0.000190763 -0.000574282 0.000206484 -0.000565663 0.000216573 -0.000567598 0.000225581 -0.0005538 0.000217877 -0.000525818 0.000218421 -0.000502338 0.000225269 -0.000483532 0.00023138 -0.000428981 0.000240509 -0.000371905 0.000244936 -0.000306676 0.000253744 -0.000239179 0.000258777 -0.000141099 0.000263369 -3.37036e-05 0.000258444 2.8112e-05 0.000248 0.000159268 0.000249849 0.000200734 0.000247154 0.000302693 0.000252622 0.000388984 0.000240522 0.00045708 0.000228793 0.000512739 0.000227525 0.00055662 0.000233534 0.000592458 0.000235878 0.000616667 0.000262963 0.000602718 0.000262211 0.000626249 0.000280808 0.00059418 0.000318192 0.00055455 0.000342211 0.000555114 0.00030559 0.000571915 0.000246261 0.000552873 0.000222538 0.000500184 0.000215178 0.000439154 0.00021786 0.000402896 0.000219491 0.000348213 0.0002217 0.000311789 0.000228344 0.00027637 0.000233518 0.000253337 0.000234965 0.000220431 0.000238109 0.000203037 0.000239618 0.000180775 0.000240573 0.000153857 0.000241252 0.000137689 0.000244641 0.000111236 0.000246083 9.76854e-05 0.00024801 7.9962e-05 0.000252159 6.55424e-05 0.000258165 5.29611e-05 0.000260945 3.90294e-05 0.000264546 2.85197e-05 0.000269913 2.56772e-05 0.000273932 -3.8957e-06 0.000280717 -3.18197e-05 0.000287649 -4.3689e-05 0.000291935 -6.24464e-05 0.000297696 -9.09148e-05 0.000311184 -0.000126498 0.000320928 -0.000140965 0.000327841 -0.000164618 0.000334402 -0.00019219 0.000338888 -0.000217228 0.000346288 -0.000252648 0.000355119 -0.000279315 0.000363721 -0.000309099 0.0003653 -0.000345329 0.000365905 -0.000375726 0.000367465 -0.000410554 0.000366046 -0.00044011 0.000356964 -0.000459645 0.000337204 -0.000490947 0.000305271 -0.000514466 0.000265071 -0.0005318 0.000234621 -0.000555066 0.000221313 -0.000578608 0.000213845 -0.000587523 0.000208563 -0.000572451 0.00020431 -0.000552993 0.000201601 -0.000528625 0.000209186 -0.00049099 0.000203783 -0.000441249 0.000205265 -0.000384043 0.000212876 -0.000353934 0.000213436 -0.000268514 0.00021673 -0.000217099 0.000220456 -0.000151619 0.00022292 -9.51941e-05 0.000218945 -5.21837e-06 0.000228393 3.69289e-05 0.000217039 0.000113516 0.000210379 0.00018192 0.000208692 0.000219514 0.000206166 0.000283178 0.00021155 0.000344367 0.000198527 0.000398122 0.000192901 0.000441089 0.000187427 0.000482686 0.000187095 0.000517519 0.00019742 0.000535256 0.000208148 0.00055332 0.000210615 0.00057292 0.000221929 0.000573906 0.00023522 0.000576106 0.000212349 0.000608993 0.000168085 0.000611911 0.000114993 0.000602609 8.50498e-05 0.000605347 6.53596e-05 0.000554696 5.98883e-05 0.000511288 7.01068e-05 0.00048012 8.86401e-05 0.000453289 9.70698e-05 0.000392577 0.000100779 0.00034306 0.000103365 0.00030775 0.000105824 0.000277811 0.00010758 0.000247518 0.000111261 0.000210116 0.000110718 0.000170066 0.000107407 0.000135131 0.000104876 0.00010141 0.000103365 7.52197e-05 0.000104704 5.07196e-05 0.000104056 2.83274e-05 0.000101451 6.89411e-07 0.000102007 -2.67897e-05 0.000103232 -4.90886e-05 0.000104779 -7.63702e-05 0.000105012 -9.59507e-05 0.000104879 -0.000121311 0.000107043 -0.000148505 0.000109576 -0.000170406 0.000112999 -0.000195086 0.00011531 -0.000217571 0.000118648 -0.000242021 0.000120734 -0.000265951 0.000121182 -0.000288735 0.000123078 -0.000313673 0.000124864 -0.000334382 0.000124267 -0.00035677 0.000120582 -0.000388291 0.000109418 -0.000412263 8.98862e-05 -0.000429634 6.78851e-05 -0.000449549 5.31499e-05 -0.00047421 5.20195e-05 -0.00050508 6.43803e-05 -0.000530329 8.66392e-05 -0.000547117 0.000108852 -0.000547663 0.000129316 -0.000546027 0.000145484 -0.000542219 0.000155032 -0.000526213 0.000157793 -0.000508673 0.000160803 -0.000502333 0.00016746 -0.000478124 0.00017298 -0.000446086 0.000177355 -0.00040732 0.000181298 -0.00036526 0.000191704 -0.00032468 0.000196751 -0.000263613 0.000201424 -0.000197277 0.000206731 -0.000142004 0.000206715 -5.93493e-05 0.000209518 -1.46746e-06 0.000209933 6.13237e-05 0.000200405 0.000150065 0.000196988 0.000201473 0.000192507 0.000262891 0.000187402 0.000325214 0.00017946 0.000383553 0.000171635 0.000431446 0.000162444 0.000472175 0.000156984 0.000505346 0.000154663 0.000530334 0.000150633 0.000549836 0.000149859 0.000558144 0.000149543 0.000559673 0.000152961 0.000551574 0.000120364 0.000579387 8.47984e-05 0.000564988 5.06217e-05 0.000542388 2.0075e-05 0.00052661 1.2306e-06 0.000532323 -8.36617e-06 0.000480364 -1.11494e-05 0.00042362 -5.81231e-06 0.000387475 3.95459e-06 0.000357487 2.02171e-05 0.000337763 2.92229e-05 0.00028925 3.26862e-05 0.000245974 3.52163e-05 0.000214308 3.64068e-05 0.000182494 3.71885e-05 0.00015493 3.75759e-05 0.000130327 3.80702e-05 0.000105482 3.8229e-05 8.16764e-05 3.76506e-05 5.82509e-05 3.68639e-05 3.18524e-05 3.54721e-05 8.60702e-06 3.4746e-05 -1.57108e-05 3.41629e-05 -3.81758e-05 3.36659e-05 -6.0691e-05 3.32836e-05 -8.27303e-05 3.29192e-05 -0.000104816 3.23582e-05 -0.000127636 3.2057e-05 -0.000149418 3.11616e-05 -0.000173382 2.98455e-05 -0.000195687 2.84236e-05 -0.000215248 2.72489e-05 -0.000232782 2.55e-05 -0.000251456 2.32267e-05 -0.000270683 1.97233e-05 -0.000292051 1.40394e-05 -0.000313301 5.21658e-06 -0.000333905 -8.8973e-06 -0.000348089 -2.30217e-05 -0.000362314 -3.66853e-05 -0.000372077 -4.42634e-05 -0.00039078 -4.15697e-05 -0.000413703 -3.53219e-05 -0.000420005 -1.85927e-05 -0.000427526 3.41018e-06 -0.000428622 2.43851e-05 -0.000422625 4.7793e-05 -0.000417886 6.38432e-05 -0.000400813 7.22932e-05 -0.000378586 8.11993e-05 -0.00035948 8.92789e-05 -0.000337835 9.71294e-05 -0.000312588 0.000106508 -0.000286818 0.000113831 -0.000253758 0.000120265 -0.00022002 0.000125344 -0.000183759 0.000129091 -0.000147191 0.000131834 -0.000110693 0.000133407 -7.36211e-05 0.00013338 -3.48269e-05 0.000132634 1.97569e-06 0.000130559 3.96289e-05 0.000127434 7.42553e-05 0.00012308 0.000108909 0.00011735 0.000139816 0.000110657 0.000167079 0.000103876 0.000192438 9.85369e-05 0.000211739 9.66121e-05 0.000226216 9.56066e-05 0.000239805 9.39104e-05 0.000251025 9.30003e-05 0.000259117 9.26685e-05 0.000262917 8.70992e-05 0.000270673 8.62686e-05 0.000264541 7.73733e-05 0.000266413 5.71602e-05 0.000269007 5.08203e-05 0.000248214 4.68588e-05 0.000236944 4.55055e-05 0.000224012 4.43317e-05 0.000211715 1.53388e-05 0.000225855 8.31404e-06 0.000189728 6.32487e-06 0.000174135 6.57358e-06 0.000162212 6.14227e-06 0.000139447 5.89938e-06 0.000121206 5.7067e-06 0.000104881 5.55126e-06 8.96949e-05 5.20699e-06 7.47997e-05 4.65145e-06 6.09473e-05 3.92221e-06 4.84183e-05 3.27673e-06 3.71879e-05 2.2203e-05 1.26928e-05 -0.00022375 8.26723e-06 -0.000313458 6.84636e-06 -0.000356161 1.35678e-05 -0.000386409 4.15493e-06 -0.0004787 3.44413e-06 -0.000500656 6.95943e-06 -0.000538217 -4.40435e-06 -0.000626521 -6.77331e-06 -0.000631822 -4.29823e-06 -0.000662707 -1.75661e-05 -0.000736419 -2.11616e-05 -0.000696334 -4.33548e-05 -0.000761655 5.67551e-06 -0.000841251 3.78474e-05 -0.000758127 9.26419e-05 -0.000725008 0.000131415 -0.000698357 0.000144136 -0.000607369 0.000169186 -0.000568807 0.000189679 -0.000507227 0.000203053 -0.000433987 0.000213313 -0.000359457 0.000221769 -0.000290546 0.000228308 -0.000221987 0.000232735 -0.000152199 0.00023507 -7.95635e-05 0.000235785 -9.59931e-06 0.000236333 5.23222e-05 0.000233264 0.000131236 0.000228661 0.000206665 0.00022124 0.000287732 0.000211313 0.000367274 0.000201502 0.000440715 0.000192975 0.000506038 0.000184841 0.000571707 0.00018783 0.000612881 0.000196709 0.000648992 0.000201937 0.000689284 0.000229306 0.000674978 0.000188588 0.000752955 0.000155432 0.000733594 0.000115334 0.000743094 8.54445e-05 0.000720352 6.33435e-05 0.000671568 5.41198e-05 0.000644437 4.99148e-05 0.000589802 4.46211e-05 0.000537829 3.99836e-05 0.000494807 3.83194e-05 0.000461413 3.66232e-05 0.000420252 3.20018e-05 0.000372384 2.78361e-05 0.000337561 2.40337e-05 0.000306486 2.05827e-05 0.000278872 1.81776e-05 0.000255866 1.86618e-05 0.000235187 1.743e-05 0.000200297 1.63919e-05 0.000166945 1.54291e-05 0.000133898 1.46762e-05 9.89323e-05 1.41892e-05 6.39762e-05 1.35942e-05 3.00598e-05 1.27674e-05 -7.154e-06 1.26364e-05 -4.10122e-05 1.2602e-05 -7.46922e-05 1.28048e-05 -0.000106971 1.40268e-05 -0.000134509 1.59974e-05 -0.000161305 1.88536e-05 -0.000186772 2.2609e-05 -0.00021138 2.76135e-05 -0.00023713 3.36441e-05 -0.00025852 4.11502e-05 -0.000280256 4.90123e-05 -0.00030005 5.86776e-05 -0.000320956 6.9062e-05 -0.000337991 8.08541e-05 -0.000357046 9.40049e-05 -0.000377488 0.00010579 -0.000399182 0.000118093 -0.000425573 0.000129566 -0.000441199 0.000142073 -0.000459428 0.000153619 -0.000484704 0.000156204 -0.000509426 0.000149656 -0.000535196 0.000143986 -0.000555749 0.000143882 -0.000569424 0.000158292 -0.000586351 0.000182818 -0.000598807 0.0002112 -0.000594045 0.000249262 -0.00060566 0.000277264 -0.000581802 0.000285695 -0.00053425 0.000291918 -0.000508561 0.000285541 -0.000477155 0.000281029 -0.000424469 0.00028195 -0.000372827 0.000294182 -0.000318908 0.00029139 -0.000236387 0.000284998 -0.000134706 0.000282818 -3.15239e-05 0.000292723 1.82071e-05 0.000300751 0.00015124 0.000290518 0.000210967 0.00029059 0.00030262 0.000290815 0.000388759 0.000298941 0.000448954 0.000314023 0.000497656 0.000332828 0.000537815 0.000336465 0.00058882 0.000352733 0.000600399 0.0003995 0.000555951 0.000432009 0.00059374 0.000437479 0.000588709 0.000366182 0.000625848 0.00028886 0.000632436 0.000240393 0.000620383 0.000219153 0.000574115 0.000211842 0.000507495 0.000206352 0.000444645 0.000203417 0.000405832 0.000197596 0.000354035 0.000191535 0.000317851 0.000190859 0.000277046 0.000193258 0.000250939 0.000189951 0.000223738 0.00018661 0.000206379 0.000180925 0.00018646 0.000173266 0.000161516 0.000161904 0.000149051 0.000154577 0.000118563 0.000151101 0.000101161 0.000148722 8.23414e-05 0.000148358 6.59066e-05 0.000155324 4.5995e-05 0.000160167 3.41867e-05 0.000162976 2.57101e-05 0.000167827 2.08262e-05 0.000170775 -6.84381e-06 0.000174308 -3.53518e-05 0.000182578 -5.19592e-05 0.000189342 -6.92103e-05 0.000191846 -9.34191e-05 0.000206398 -0.00014105 0.00022613 -0.000160697 0.000241909 -0.000180397 0.000256927 -0.000207208 0.00027148 -0.000231781 0.000288834 -0.000270003 0.000304212 -0.000294692 0.000326398 -0.000331285 0.000341941 -0.000360872 0.000356556 -0.00039034 0.000370394 -0.000424392 0.00037802 -0.000447737 0.000382045 -0.000463669 0.000375941 -0.000484844 0.000364491 -0.000503015 0.000349974 -0.000517284 0.000324506 -0.000529598 0.00030469 -0.000558792 0.000306758 -0.00058959 0.000297945 -0.000563639 0.000282455 -0.000537503 0.000273054 -0.000519223 0.000268951 -0.000486887 0.000259242 -0.00043154 0.000259621 -0.000384421 0.000256389 -0.000350703 0.000250016 -0.000262142 0.000257149 -0.000224232 0.000261046 -0.000155516 0.000252181 -8.63295e-05 0.000245876 1.08697e-06 0.000248594 3.42106e-05 0.000258156 0.000103955 0.000262218 0.000177858 0.000251866 0.000229866 0.000250622 0.000284422 0.000246667 0.000348322 0.000256771 0.000388019 0.000278228 0.000419632 0.000269538 0.000491376 0.000284854 0.000502203 0.000289198 0.000530912 0.000330595 0.000511923 0.000334137 0.000569378 0.000297432 0.000610611 0.000216728 0.00065681 0.000154738 0.000670984 0.000109252 0.000657397 8.48462e-05 0.000627015 8.34119e-05 0.000606781 8.4637e-05 0.000553471 8.64147e-05 0.000509511 9.12116e-05 0.000475323 9.83401e-05 0.000446161 9.82494e-05 0.000392668 9.58457e-05 0.000345464 9.11724e-05 0.000312423 8.51831e-05 0.000283801 7.81509e-05 0.00025455 7.44186e-05 0.000213848 6.96819e-05 0.000174802 6.24993e-05 0.000142313 5.63672e-05 0.000107542 5.23573e-05 7.92297e-05 5.14567e-05 5.16203e-05 5.06187e-05 2.91653e-05 4.87311e-05 2.57701e-06 4.92291e-05 -2.72876e-05 5.07608e-05 -5.06204e-05 5.29835e-05 -7.85928e-05 5.50021e-05 -9.79693e-05 5.64878e-05 -0.000122796 5.97023e-05 -0.00015172 6.48941e-05 -0.000175598 7.21139e-05 -0.000202306 7.87858e-05 -0.000224242 8.67591e-05 -0.000249995 9.48671e-05 -0.000274059 0.000102613 -0.000296482 0.000112443 -0.000323502 0.00012172 -0.00034366 0.000128667 -0.000363717 0.000135734 -0.000395358 0.000141232 -0.000417762 0.000145751 -0.000434153 0.000150335 -0.000454133 0.000154409 -0.000478284 0.00015321 -0.000503881 0.000142847 -0.000519966 0.00013191 -0.00053618 0.000126483 -0.000542236 0.000131322 -0.000550866 0.000149249 -0.000560147 0.00016902 -0.000545984 0.000186478 -0.00052613 0.000205129 -0.000520984 0.000210143 -0.000483138 0.000212538 -0.000448481 0.000212814 -0.000407596 0.000209895 -0.000362342 0.000213819 -0.000328604 0.000216193 -0.000265986 0.000225513 -0.000206597 0.000224882 -0.000141373 0.000216244 -5.07112e-05 0.000218287 -3.51052e-06 0.000219253 6.03571e-05 0.000227955 0.000141363 0.00021935 0.000210078 0.000212131 0.00027011 0.000206301 0.000331044 0.000205267 0.000384586 0.00020514 0.000431573 0.000214221 0.000463095 0.000213203 0.000506364 0.000223313 0.000520224 0.000235561 0.000537589 0.000214714 0.00057899 0.000177913 0.000596475 0.00012119 0.000608297 7.61605e-05 0.000624417 3.91288e-05 0.00060202 1.84424e-05 0.000563074 8.97569e-06 0.000536077 1.54583e-05 0.000525841 2.35079e-05 0.000472314 2.777e-05 0.000419358 3.14865e-05 0.000383758 3.45111e-05 0.000354462 3.9882e-05 0.000332392 4.08631e-05 0.000288268 3.97237e-05 0.000247114 3.8589e-05 0.000215443 3.70969e-05 0.000183986 3.58612e-05 0.000156166 3.47085e-05 0.00013148 3.39668e-05 0.000106224 3.34803e-05 8.2163e-05 3.28384e-05 5.88927e-05 3.22438e-05 3.24469e-05 3.14234e-05 9.42743e-06 3.11412e-05 -1.54286e-05 3.11093e-05 -3.81438e-05 3.11612e-05 -6.07429e-05 3.13869e-05 -8.2956e-05 3.16781e-05 -0.000105107 3.18427e-05 -0.0001278 3.22207e-05 -0.000149796 3.20462e-05 -0.000173207 3.16829e-05 -0.000195324 3.14911e-05 -0.000215056 3.15525e-05 -0.000232843 3.16405e-05 -0.000251545 3.16037e-05 -0.000270647 3.12602e-05 -0.000291708 3.04401e-05 -0.000312481 2.84752e-05 -0.00033194 2.70364e-05 -0.000346651 2.52536e-05 -0.000360531 2.41741e-05 -0.000370997 2.1777e-05 -0.000388383 1.61105e-05 -0.000408036 8.65736e-06 -0.000412551 1.83537e-06 -0.000420704 -3.89918e-06 -0.000422887 -6.89048e-06 -0.000419634 5.2655e-06 -0.000430042 1.96066e-05 -0.000415154 3.62259e-05 -0.000395205 7.70954e-05 -0.00040035 0.000101266 -0.000362005 0.000111727 -0.00032305 0.000122633 -0.000297723 0.000126714 -0.000257839 0.000131274 -0.000224581 0.00013498 -0.000187465 0.000138235 -0.000150446 0.000140614 -0.000113072 0.000142779 -7.5786e-05 0.000144696 -3.67439e-05 0.000146736 -6.42535e-08 0.000148823 3.75413e-05 0.00014975 7.33288e-05 0.000152215 0.000106444 0.000155959 0.000136072 0.000156813 0.000166224 0.000164585 0.000184666 0.000162625 0.000213699 0.000138903 0.000249938 0.000130366 0.000248342 0.000127234 0.000254157 0.000127275 0.000259075 0.000123665 0.000266527 6.41082e-05 0.00033023 2.99719e-05 0.000298677 1.69857e-05 0.0002794 1.05723e-05 0.00027542 7.61374e-06 0.000251172 6.32032e-06 0.000238237 5.52729e-06 0.000224805 2.35475e-06 0.000214887 5.7867e-06 0.000222423 4.55189e-06 0.000190963 4.32619e-06 0.000174361 5.8527e-06 0.000160686 5.90322e-06 0.000139397 5.77364e-06 0.000121336 5.61284e-06 0.000105042 5.43771e-06 8.98701e-05 5.06787e-06 7.51695e-05 4.49144e-06 6.15238e-05 3.7346e-06 4.91751e-05 2.88685e-06 3.80357e-05 2.50899e-05 1.03469e-05 -0.000234097 7.78086e-06 -0.000310892 6.9087e-06 -0.000355289 1.16475e-05 -0.000391148 4.46247e-06 -0.000471515 3.5304e-06 -0.000499724 5.67061e-06 -0.000540358 -3.82351e-06 -0.000617027 -5.93439e-06 -0.000629711 -5.14251e-06 -0.000663499 -1.62389e-05 -0.000725323 -1.08493e-05 -0.000701724 -1.6367e-05 -0.000756137 -3.55539e-05 -0.000822065 -4.68067e-05 -0.000746874 -3.41038e-05 -0.000737711 1.32416e-05 -0.000745702 0.00010732 -0.000701448 0.000173961 -0.000635448 0.000185956 -0.000519222 0.000188872 -0.000436904 0.000201015 -0.0003716 0.000217152 -0.000306682 0.00022857 -0.000233406 0.000235047 -0.000158676 0.000237421 -8.19371e-05 0.000237384 -9.56286e-06 0.000237998 5.17087e-05 0.000237103 0.000132131 0.000235801 0.000207968 0.000239849 0.000283683 0.000245721 0.000361402 0.000255233 0.000431203 0.00026582 0.000495451 0.0002652 0.000572326 0.000277161 0.000600921 0.000271684 0.000654469 0.000241327 0.000719641 0.000196299 0.000720006 0.000148923 0.000800331 0.000101812 0.000780705 7.2918e-05 0.000771989 6.04944e-05 0.000732776 5.18542e-05 0.000680209 4.95369e-05 0.000646754 4.74882e-05 0.000591851 4.33013e-05 0.000542016 3.93824e-05 0.000498726 3.74501e-05 0.000463345 3.53685e-05 0.000422334 3.10156e-05 0.000376737 2.69797e-05 0.000341597 2.32911e-05 0.000310174 1.996e-05 0.000282204 1.76525e-05 0.000258174 1.75236e-05 0.000235316 1.61922e-05 0.000201628 1.49763e-05 0.000168161 1.38757e-05 0.000134999 1.28918e-05 9.99163e-05 1.20711e-05 6.47969e-05 1.11809e-05 3.095e-05 1.00276e-05 -6.00066e-06 9.30027e-06 -4.02849e-05 8.53624e-06 -7.39282e-05 7.77552e-06 -0.00010621 7.58863e-06 -0.000134322 7.74177e-06 -0.000161458 8.29359e-06 -0.000187324 9.2456e-06 -0.000212332 1.0423e-05 -0.000238307 1.21786e-05 -0.000260275 1.50062e-05 -0.000283084 1.833e-05 -0.000303373 2.34607e-05 -0.000326087 3.01801e-05 -0.00034471 4.05323e-05 -0.000367398 5.329e-05 -0.000390245 6.78439e-05 -0.000413736 8.61548e-05 -0.000443884 0.000104601 -0.000459645 0.000127254 -0.000482082 0.000151044 -0.000508494 0.000169938 -0.000528319 0.000185278 -0.000550536 0.000201909 -0.00057238 0.000220044 -0.000587559 0.000233354 -0.000599661 0.000229083 -0.000594536 0.00022522 -0.000590182 0.000250194 -0.000630634 0.00027706 -0.000608668 0.000303598 -0.000560788 0.000341013 -0.000545976 0.000367478 -0.00050362 0.000372521 -0.000429513 0.000368471 -0.000368776 0.000364446 -0.000314883 0.000365581 -0.000237522 0.000374022 -0.000143147 0.000377697 -3.51993e-05 0.000364243 3.1661e-05 0.000371766 0.000143717 0.000370192 0.000212541 0.000411929 0.000260883 0.000403622 0.000397066 0.000393079 0.000459497 0.000419916 0.00047082 0.000452392 0.00050534 0.000500118 0.000541095 0.000537751 0.000562766 0.000514847 0.000578855 0.000426287 0.000682301 0.000327401 0.000687595 0.000258175 0.000695075 0.000220234 0.000670378 0.00020554 0.000635078 0.000197222 0.000582434 0.000180611 0.000524107 0.000157494 0.000467763 0.000137547 0.000425779 0.000120363 0.000371219 0.000109113 0.000329102 0.000103289 0.00028287 0.000101055 0.000253173 9.49705e-05 0.000229823 9.16449e-05 0.000209705 8.60349e-05 0.00019207 8.02372e-05 0.000167314 7.43547e-05 0.000154934 7.10803e-05 0.000121838 6.82134e-05 0.000104028 6.6389e-05 8.41658e-05 6.63767e-05 6.5919e-05 6.7996e-05 4.43757e-05 6.87094e-05 3.34733e-05 7.14664e-05 2.29531e-05 7.46609e-05 1.76317e-05 7.64395e-05 -8.6224e-06 7.92945e-05 -3.82068e-05 8.17596e-05 -5.44243e-05 8.66259e-05 -7.40766e-05 9.01242e-05 -9.69174e-05 9.68702e-05 -0.000147796 0.000106469 -0.000170296 0.000116598 -0.000190527 0.000132606 -0.000223216 0.000147688 -0.000246863 0.000163859 -0.000286174 0.000178207 -0.00030904 0.000205213 -0.000358291 0.000238321 -0.00039398 0.000272399 -0.000424419 0.000310381 -0.000462373 0.000341956 -0.000479312 0.000365873 -0.000487586 0.000374313 -0.000493285 0.000376766 -0.000505468 0.000375118 -0.000515636 0.000368465 -0.000522945 0.000355589 -0.000545917 0.000350407 -0.000584409 0.000339254 -0.000552485 0.000332113 -0.000530363 0.000347531 -0.000534642 0.000354541 -0.000493897 0.000345918 -0.000422916 0.000349592 -0.000388096 0.000339571 -0.000340682 0.000340292 -0.000262862 0.000324209 -0.000208149 0.000320752 -0.000152058 0.00032859 -9.41679e-05 0.000336974 -7.29642e-06 0.000325318 4.58659e-05 0.000321701 0.000107572 0.000316345 0.000183214 0.000333241 0.00021297 0.000362323 0.000255341 0.000336076 0.000374568 0.000347348 0.000376746 0.000359015 0.000407965 0.000390428 0.000459963 0.000412443 0.000480188 0.000390474 0.000552881 0.000318259 0.000584138 0.000242873 0.000644764 0.000170807 0.000682677 0.000120583 0.000707035 9.61822e-05 0.000695384 8.53184e-05 0.000668261 8.16318e-05 0.000630702 8.50934e-05 0.00060332 8.57158e-05 0.000552849 8.34042e-05 0.000511822 8.11544e-05 0.000477573 7.82506e-05 0.000449064 6.96043e-05 0.000401314 6.02467e-05 0.000354821 5.14449e-05 0.000321225 4.60372e-05 0.000289208 4.1777e-05 0.00025881 3.98554e-05 0.00021577 3.61896e-05 0.000178468 3.29292e-05 0.000145574 3.04158e-05 0.000110055 2.79911e-05 8.16544e-05 2.75468e-05 5.20646e-05 2.63643e-05 3.03478e-05 2.60559e-05 2.88546e-06 2.60051e-05 -2.72368e-05 2.54947e-05 -5.01101e-05 2.61054e-05 -7.92034e-05 2.60775e-05 -9.79415e-05 2.71679e-05 -0.000123887 2.78187e-05 -0.00015237 2.89213e-05 -0.000176701 3.07307e-05 -0.000204115 3.22427e-05 -0.000225755 3.56271e-05 -0.000253379 3.81002e-05 -0.000276532 4.24675e-05 -0.000300849 4.85734e-05 -0.000329608 5.67e-05 -0.000351787 6.69501e-05 -0.000373968 8.06961e-05 -0.000409104 9.59282e-05 -0.000432994 0.000110519 -0.000448744 0.000127556 -0.00047117 0.000146354 -0.000497083 0.000158751 -0.000516278 0.000168855 -0.00053007 0.000177293 -0.000544618 0.000184593 -0.000549536 0.000186692 -0.000552966 0.000188284 -0.000561739 0.00018786 -0.000545561 0.000199054 -0.000537324 0.000222135 -0.000544065 0.00023482 -0.000495823 0.000248342 -0.000462003 0.000259319 -0.000418573 0.000276965 -0.000379987 0.000274182 -0.000325821 0.000269506 -0.00026131 0.000268065 -0.000205157 0.000269791 -0.000143099 0.000281344 -6.22647e-05 0.000271016 6.81768e-06 0.000269649 6.17245e-05 0.000262042 0.000148969 0.000273003 0.000199118 0.000284377 0.000258736 0.000287419 0.000328003 0.000285573 0.000386433 0.000298411 0.000418735 0.000319076 0.00044243 0.000320188 0.000505251 0.000280516 0.000559896 0.00020329 0.000614815 0.000138923 0.000643358 8.32669e-05 0.00065213 4.42648e-05 0.000647299 2.99159e-05 0.000638766 2.45662e-05 0.00060737 2.24954e-05 0.000565145 2.41249e-05 0.000534447 3.26283e-05 0.000517337 3.62169e-05 0.000468726 3.53437e-05 0.000420231 3.45913e-05 0.000384511 3.41768e-05 0.000354877 3.57526e-05 0.000330817 3.41741e-05 0.000289847 3.12973e-05 0.000249991 2.88431e-05 0.000217897 2.63648e-05 0.000186464 2.44956e-05 0.000158035 2.32301e-05 0.000132746 2.24597e-05 0.000106994 2.22003e-05 8.24224e-05 2.21354e-05 5.89577e-05 2.19563e-05 3.2626e-05 2.16379e-05 9.7458e-06 2.17003e-05 -1.54909e-05 2.19242e-05 -3.83678e-05 2.22411e-05 -6.10598e-05 2.26519e-05 -8.33668e-05 2.3156e-05 -0.000105611 2.35757e-05 -0.00012822 2.4144e-05 -0.000150364 2.43336e-05 -0.000173397 2.43426e-05 -0.000195333 2.4584e-05 -0.000215297 2.51929e-05 -0.000233452 2.59221e-05 -0.000252274 2.67179e-05 -0.000271442 2.70521e-05 -0.000292042 2.71517e-05 -0.000312581 2.64131e-05 -0.000331201 2.6045e-05 -0.000346283 2.54145e-05 -0.000359901 2.55184e-05 -0.000371101 2.49e-05 -0.000387764 2.19797e-05 -0.000405116 2.03824e-05 -0.000410954 1.81723e-05 -0.000418494 1.61214e-05 -0.000420837 1.44797e-05 -0.000417992 9.90639e-06 -0.000425469 6.2532e-06 -0.000411501 6.19704e-06 -0.000395149 3.671e-06 -0.000397824 6.36342e-06 -0.000364697 1.55607e-05 -0.000332247 2.82129e-05 -0.000310375 4.77988e-05 -0.000277425 7.0151e-05 -0.000246933 9.14183e-05 -0.000208732 0.00011209 -0.000171118 0.000131588 -0.00013257 0.000148073 -9.22715e-05 0.000162678 -5.13485e-05 0.000174568 -1.19548e-05 0.000182478 2.96314e-05 0.000187098 6.87093e-05 0.000189809 0.000103733 0.000186913 0.000138968 0.000146873 0.000206264 7.17284e-05 0.000259811 4.39384e-05 0.000241489 3.09612e-05 0.000262916 2.39736e-05 0.000255329 1.88285e-05 0.000259302 1.34496e-05 0.000264454 1.63354e-06 0.000278343 1.83851e-06 0.000330025 -2.66553e-07 0.000300782 -1.3082e-06 0.000280441 6.60677e-07 0.000273451 2.40947e-07 0.000251592 1.44628e-07 0.000238333 1.74201e-08 0.000224933 -9.4979e-07 0.000215854 3.71007e-06 0.000217763 3.89339e-06 0.000190779 4.10597e-06 0.000174148 5.40001e-06 0.000159392 5.53158e-06 0.000139265 5.43614e-06 0.000121431 5.2834e-06 0.000105195 5.09577e-06 9.00577e-05 4.73228e-06 7.5533e-05 4.17553e-06 6.20805e-05 3.43242e-06 4.99183e-05 2.49561e-06 3.89725e-05 2.75855e-05 8.50434e-06 -0.000242601 7.23955e-06 -0.000309628 6.78439e-06 -0.000354834 1.01045e-05 -0.000394468 4.49774e-06 -0.000465908 3.72178e-06 -0.000498948 4.58297e-06 -0.000541219 -3.23199e-06 -0.000609212 -5.34896e-06 -0.000627594 -5.49362e-06 -0.000663354 -1.47809e-05 -0.000716036 -1.14307e-05 -0.000705074 -1.58667e-05 -0.000751702 -3.34516e-05 -0.00080448 -3.13218e-05 -0.000749004 -3.36538e-05 -0.000735379 -3.91563e-05 -0.0007402 -4.01301e-05 -0.000700474 -2.4725e-06 -0.000673105 6.30467e-05 -0.000584742 0.000129321 -0.000503178 0.000288375 -0.000530654 0.000368345 -0.000386651 0.000338091 -0.000203153 0.000335004 -0.000155589 0.000343027 -8.99596e-05 0.000346467 -1.30027e-05 0.000351665 4.651e-05 0.000356886 0.00012691 0.000357576 0.000207278 0.000341086 0.000300173 0.000309503 0.000392985 0.000319128 0.000421578 0.000325048 0.000489532 0.000282405 0.000614969 0.000247186 0.000636139 0.000199346 0.00070231 0.000150303 0.000768683 9.69436e-05 0.000773366 7.20305e-05 0.000825244 5.65752e-05 0.00079616 5.07174e-05 0.000777846 4.99292e-05 0.000733564 4.66605e-05 0.000683478 4.64001e-05 0.000647015 4.48613e-05 0.000593389 4.14437e-05 0.000545434 3.79411e-05 0.000502228 3.58327e-05 0.000465454 3.35107e-05 0.000424656 2.94622e-05 0.000380786 2.56523e-05 0.000345407 2.21495e-05 0.000313677 1.90269e-05 0.000285326 1.68747e-05 0.000260326 1.64239e-05 0.000235767 1.51955e-05 0.000202857 1.4021e-05 0.000169335 1.29718e-05 0.000136048 1.20291e-05 0.000100859 1.11739e-05 6.56522e-05 1.02733e-05 3.18506e-05 9.17543e-06 -4.90281e-06 8.3659e-06 -3.94753e-05 7.53291e-06 -7.30952e-05 6.67705e-06 -0.000105354 6.22321e-06 -0.000133868 6.00519e-06 -0.00016124 6.07696e-06 -0.000187396 6.38105e-06 -0.000212637 6.61674e-06 -0.000238543 7.15905e-06 -0.000260818 8.12356e-06 -0.000284049 9.32218e-06 -0.000304572 1.12156e-05 -0.00032798 1.38802e-05 -0.000347375 1.76358e-05 -0.000371154 2.18943e-05 -0.000394504 2.70157e-05 -0.000418858 3.33675e-05 -0.000450236 4.1134e-05 -0.000467411 5.40785e-05 -0.000495027 7.18328e-05 -0.000526248 9.7342e-05 -0.000553829 0.000126321 -0.000579515 0.000154647 -0.000600706 0.000195271 -0.000628184 0.000233126 -0.000637516 0.000262489 -0.0006239 0.000282352 -0.000610045 0.000297277 -0.000645559 0.000313673 -0.000625065 0.000325014 -0.000572128 0.000348885 -0.000569847 0.000381657 -0.000536393 0.000415764 -0.00046362 0.000429763 -0.000382775 0.000440148 -0.000325268 0.000452433 -0.000249807 0.000453163 -0.000143877 0.000457422 -3.94582e-05 0.000461783 2.72998e-05 0.000498533 0.000106967 0.000460355 0.00025072 0.000514576 0.000206662 0.000497737 0.000413906 0.000541148 0.000416086 0.000589835 0.000422133 0.000604779 0.000490396 0.000557603 0.000588271 0.000466708 0.000653661 0.000362169 0.000683395 0.000283511 0.000760959 0.000229826 0.000741282 0.000203694 0.000721208 0.000186247 0.000687825 0.0001691 0.000652226 0.000144732 0.000606803 0.000115282 0.000553558 9.32244e-05 0.000489821 7.97501e-05 0.000439253 6.89007e-05 0.000382069 6.23125e-05 0.000335691 5.70175e-05 0.000288166 5.31216e-05 0.000257069 4.83609e-05 0.000234584 4.67588e-05 0.000211307 4.33557e-05 0.000195473 4.11647e-05 0.000169505 3.95212e-05 0.000156577 3.82961e-05 0.000123063 3.6132e-05 0.000106192 3.59731e-05 8.43248e-05 3.5812e-05 6.60801e-05 3.51745e-05 4.50133e-05 3.55342e-05 3.31136e-05 3.79651e-05 2.05222e-05 4.01242e-05 1.54726e-05 4.27759e-05 -1.12741e-05 4.38138e-05 -3.92447e-05 4.39623e-05 -5.45728e-05 4.90878e-05 -7.92021e-05 5.2975e-05 -0.000100805 5.38354e-05 -0.000148657 5.56533e-05 -0.000172113 6.14368e-05 -0.00019631 6.85054e-05 -0.000230284 7.34142e-05 -0.000251772 8.16435e-05 -0.000294403 8.8389e-05 -0.000315786 9.93359e-05 -0.000369238 0.000119049 -0.000413693 0.000144913 -0.000450284 0.000186252 -0.000503712 0.000227607 -0.000520666 0.000270322 -0.000530302 0.000303481 -0.000526443 0.000330567 -0.000532554 0.000351883 -0.000536952 0.000369082 -0.000540144 0.000375586 -0.00055242 0.000375733 -0.000584556 0.000375636 -0.000552388 0.000370949 -0.000525675 0.00037629 -0.000539982 0.000382806 -0.000500414 0.000389713 -0.000429823 0.00039772 -0.000396104 0.000399185 -0.000342146 0.000402639 -0.000266316 0.000397773 -0.000203284 0.000416893 -0.000171178 0.000407847 -8.51216e-05 0.000412835 -1.22846e-05 0.000396842 6.18584e-05 0.000432486 7.19279e-05 0.000416044 0.000199656 0.00041065 0.000218364 0.000437543 0.000228448 0.000439016 0.000373095 0.000456155 0.000359607 0.000427624 0.000436496 0.000372647 0.00051494 0.000307484 0.000545352 0.000235176 0.000625189 0.000164808 0.000654506 0.000119182 0.00069039 9.31639e-05 0.000708695 8.39353e-05 0.000716264 8.01182e-05 0.000699201 7.80179e-05 0.000670361 7.62831e-05 0.000632437 7.49785e-05 0.000604625 6.85966e-05 0.000559231 5.8734e-05 0.000521685 5.12211e-05 0.000485086 4.69633e-05 0.000453322 4.19053e-05 0.000406373 3.64326e-05 0.000360294 3.18414e-05 0.000325817 3.00478e-05 0.000291002 2.84664e-05 0.000260392 2.7902e-05 0.000216334 2.53326e-05 0.000181038 2.37812e-05 0.000147125 2.2264e-05 0.000111572 2.04851e-05 8.34333e-05 2.01663e-05 5.23834e-05 1.91317e-05 3.13823e-05 1.92238e-05 2.79338e-06 1.89551e-05 -2.69681e-05 1.82956e-05 -4.94506e-05 1.86021e-05 -7.95099e-05 1.83061e-05 -9.76455e-05 1.93082e-05 -0.000124889 1.9342e-05 -0.000152404 1.98476e-05 -0.000177206 2.03895e-05 -0.000204657 2.07627e-05 -0.000226128 2.22783e-05 -0.000254895 2.26257e-05 -0.00027688 2.46011e-05 -0.000302824 2.59424e-05 -0.000330949 2.79344e-05 -0.000353779 3.11439e-05 -0.000377177 3.39294e-05 -0.000411889 3.70438e-05 -0.000436108 4.207e-05 -0.00045377 5.01177e-05 -0.000479218 6.34947e-05 -0.00051046 7.84891e-05 -0.000531273 0.000100144 -0.000551725 0.000123483 -0.000567957 0.000152469 -0.000578522 0.000177702 -0.0005782 0.000196085 -0.000580121 0.000213715 -0.000563191 0.000225718 -0.000549327 0.000235359 -0.000553706 0.000249015 -0.000509479 0.000259311 -0.0004723 0.000271642 -0.000430903 0.000292088 -0.000400434 0.000309525 -0.000343258 0.000323117 -0.000274902 0.000337927 -0.000219966 0.000345837 -0.000151009 0.000337813 -5.42406e-05 0.000340443 4.18794e-06 0.000365556 3.6611e-05 0.000360799 0.000153727 0.000354524 0.000205392 0.000365234 0.000248026 0.000379241 0.000313996 0.000366821 0.000398853 0.000320698 0.000464858 0.000256335 0.000506793 0.000196326 0.00056526 0.000130111 0.000626111 7.76315e-05 0.000667294 4.70285e-05 0.000673961 3.09481e-05 0.000668211 2.39859e-05 0.000654261 2.507e-05 0.000637681 2.75721e-05 0.000604868 2.82686e-05 0.000564449 2.86523e-05 0.000534063 3.31129e-05 0.000512876 3.40133e-05 0.000467825 3.12162e-05 0.000423028 2.83538e-05 0.000387373 2.6184e-05 0.000357046 2.66234e-05 0.000330377 2.55996e-05 0.000290871 2.37242e-05 0.000251866 2.22732e-05 0.000219348 2.08603e-05 0.000187877 1.98804e-05 0.000159015 1.93043e-05 0.000133322 1.89889e-05 0.00010731 1.90244e-05 8.23868e-05 1.92098e-05 5.87723e-05 1.92145e-05 3.26214e-05 1.90908e-05 9.86951e-06 1.92365e-05 -1.56366e-05 1.95073e-05 -3.86386e-05 1.98514e-05 -6.1404e-05 2.0268e-05 -8.37834e-05 2.07437e-05 -0.000106087 2.11205e-05 -0.000128597 2.15644e-05 -0.000150808 2.16942e-05 -0.000173526 2.16135e-05 -0.000195252 2.16179e-05 -0.000215302 2.18742e-05 -0.000233708 2.21823e-05 -0.000252582 2.25296e-05 -0.00027179 2.25107e-05 -0.000292023 2.21698e-05 -0.00031224 2.12609e-05 -0.000330292 2.04873e-05 -0.000345509 1.99687e-05 -0.000359382 1.99095e-05 -0.000371042 1.89672e-05 -0.000386822 1.68588e-05 -0.000403008 1.4978e-05 -0.000409073 1.2884e-05 -0.0004164 1.09195e-05 -0.000418872 9.18858e-06 -0.000416261 5.10432e-06 -0.000421384 2.47258e-06 -0.000408869 1.02672e-06 -0.000393703 -4.24023e-06 -0.000392557 -6.86948e-06 -0.000362068 -7.88216e-06 -0.000331234 -1.00109e-05 -0.000308247 -1.11918e-05 -0.000276244 -1.27578e-05 -0.000245367 -1.33246e-05 -0.000208165 -1.32114e-05 -0.000171231 -1.25386e-05 -0.000133243 -1.08972e-05 -9.39129e-05 -8.28426e-06 -5.39615e-05 -4.59219e-06 -1.56469e-05 -1.25824e-06 2.62975e-05 8.54695e-07 6.65963e-05 2.38826e-07 0.000104349 -4.24308e-06 0.00014345 -1.01641e-05 0.000212185 -7.5107e-06 0.000257157 -1.01725e-05 0.000244151 -8.48191e-06 0.000261225 -9.41188e-06 0.000256259 -1.08155e-05 0.000260705 -1.23328e-05 0.000265972 -1.48351e-05 0.000280845 -5.55854e-06 0.000320748 -3.05799e-06 0.000298282 -2.51882e-06 0.000279902 -1.27674e-07 0.00027106 -2.17557e-07 0.000251682 -9.22648e-08 0.000238208 -2.20996e-07 0.000225061 -6.22847e-07 0.000216256 3.16334e-06 0.000213977 3.574e-06 0.000190369 3.92377e-06 0.000173799 4.97951e-06 0.000158336 5.15373e-06 0.000139091 5.08801e-06 0.000121497 4.94628e-06 0.000105336 4.75356e-06 9.02504e-05 4.40079e-06 7.58858e-05 3.86642e-06 6.26149e-05 3.14217e-06 5.06425e-05 2.16856e-06 3.99461e-05 2.97541e-05 7.04545e-06 -0.000249647 6.67708e-06 -0.000309259 6.53364e-06 -0.000354691 8.84922e-06 -0.000396783 4.5048e-06 -0.000461564 3.76805e-06 -0.000498211 3.72765e-06 -0.000541178 -2.81961e-06 -0.000602665 -4.67625e-06 -0.000625738 -5.62391e-06 -0.000662407 -1.35108e-05 -0.000708149 -1.15489e-05 -0.000707036 -1.60247e-05 -0.000747226 -3.03309e-05 -0.000790174 -2.98587e-05 -0.000749476 -3.24433e-05 -0.000732795 -3.88791e-05 -0.000733764 -4.25379e-05 -0.000696815 -4.81333e-05 -0.00066751 -4.63576e-05 -0.000586517 -3.82152e-05 -0.000511321 -4.52873e-05 -0.000523582 -2.73915e-05 -0.000404547 4.07413e-05 -0.000271286 0.0001338 -0.000248647 0.000243374 -0.000199534 0.000325961 -9.55898e-05 0.000352068 2.04028e-05 0.00033956 0.000139418 0.000266327 0.000280511 0.000201424 0.000365077 0.000181 0.000413409 0.000179211 0.000423367 0.00017169 0.000497052 0.000146204 0.000640454 0.000104898 0.000677446 7.31083e-05 0.000734099 5.78757e-05 0.000783916 4.0869e-05 0.000790373 4.18305e-05 0.000824283 4.09751e-05 0.000797016 4.28239e-05 0.000775998 4.48357e-05 0.000731552 4.33617e-05 0.000684952 4.35211e-05 0.000646856 4.19874e-05 0.000594923 3.90874e-05 0.000548334 3.58739e-05 0.000505442 3.37202e-05 0.000467608 3.13737e-05 0.000427003 2.7695e-05 0.000384465 2.4164e-05 0.000348938 2.09008e-05 0.000316941 1.80311e-05 0.000288196 1.60591e-05 0.000262298 1.54224e-05 0.000236404 1.42978e-05 0.000203981 1.31864e-05 0.000170447 1.22167e-05 0.000137018 1.13391e-05 0.000101737 1.04934e-05 6.64979e-05 9.63498e-06 3.27091e-05 8.6275e-06 -3.89532e-06 7.83306e-06 -3.86809e-05 7.00337e-06 -7.22655e-05 6.19534e-06 -0.000104546 5.64985e-06 -0.000133322 5.33406e-06 -0.000160924 5.24207e-06 -0.000187304 5.28441e-06 -0.000212679 5.23769e-06 -0.000238496 5.44336e-06 -0.000261023 5.86654e-06 -0.000284472 6.52679e-06 -0.000305232 7.60296e-06 -0.000329056 9.22241e-06 -0.000348994 1.14411e-05 -0.000373372 1.37702e-05 -0.000396833 1.66037e-05 -0.000421691 1.93111e-05 -0.000452944 2.32124e-05 -0.000471313 2.88083e-05 -0.000500623 3.43715e-05 -0.000531812 4.16556e-05 -0.000561113 5.01603e-05 -0.00058802 6.1514e-05 -0.00061206 8.21806e-05 -0.000648851 0.000112857 -0.000668193 0.000157495 -0.000668538 0.000213318 -0.000665868 0.000252848 -0.000685088 0.00030743 -0.000679647 0.000355092 -0.00061979 0.000368098 -0.000582853 0.000403394 -0.000571689 0.000425517 -0.000485743 0.00043601 -0.000393268 0.000457054 -0.000346312 0.000491563 -0.000284316 0.000521384 -0.000173698 0.000518681 -3.67547e-05 0.00051124 3.47409e-05 0.00055377 6.44366e-05 0.000516958 0.000287531 0.000556472 0.000167148 0.000549262 0.000421116 0.000558067 0.00040728 0.000539845 0.000440355 0.000474162 0.000556079 0.00038037 0.000682064 0.000292221 0.000741811 0.000225471 0.000750145 0.000194696 0.000791735 0.000169318 0.000766661 0.000149056 0.000741471 0.000128395 0.000708486 0.000108242 0.000672381 8.88362e-05 0.000626209 7.14816e-05 0.000570913 5.95107e-05 0.000501792 5.2339e-05 0.000446426 4.57103e-05 0.000388698 4.11787e-05 0.000340223 3.63599e-05 0.000292985 3.25581e-05 0.000260871 2.90851e-05 0.000238058 2.79224e-05 0.00021247 2.61932e-05 0.000197203 2.53258e-05 0.000170373 2.50518e-05 0.000156852 2.4155e-05 0.00012396 2.3042e-05 0.000107305 2.28106e-05 8.45562e-05 2.20503e-05 6.68404e-05 2.15112e-05 4.55525e-05 2.17787e-05 3.2846e-05 2.31624e-05 1.91386e-05 2.54281e-05 1.32068e-05 2.7919e-05 -1.37649e-05 2.80691e-05 -3.93948e-05 2.85521e-05 -5.50559e-05 3.27292e-05 -8.33792e-05 3.56316e-05 -0.000103707 3.49794e-05 -0.000148004 3.51185e-05 -0.000172253 3.96163e-05 -0.000200808 4.23462e-05 -0.000233014 4.65862e-05 -0.000256012 5.18247e-05 -0.000299641 5.5442e-05 -0.000319403 6.25755e-05 -0.000376371 7.24515e-05 -0.000423569 9.21865e-05 -0.000470019 0.000114275 -0.000525801 0.000129005 -0.000535396 0.000148408 -0.000549705 0.000162944 -0.000540979 0.000193197 -0.000562807 0.000219427 -0.000563182 0.000262493 -0.00058321 0.000294931 -0.000584858 0.000325724 -0.000615349 0.000351085 -0.00057775 0.000376588 -0.000551178 0.000397487 -0.000560882 0.000403115 -0.000506042 0.000417806 -0.000444514 0.000425844 -0.000404141 0.000402092 -0.000318394 0.000436737 -0.000300961 0.000409698 -0.000176245 0.000425853 -0.000187333 0.000411603 -7.08709e-05 0.000429586 -3.02674e-05 0.000399841 9.16029e-05 0.000423972 4.77969e-05 0.000412404 0.000211224 0.000418265 0.000212503 0.000406186 0.000240527 0.000374606 0.000404676 0.000319952 0.000414261 0.000259805 0.000496643 0.00020186 0.000572885 0.000147864 0.000599347 0.000115993 0.00065706 8.9923e-05 0.000680576 7.559e-05 0.000704724 6.81955e-05 0.00071609 6.77105e-05 0.000716749 6.58355e-05 0.000701077 6.19093e-05 0.000674288 5.50607e-05 0.000639285 4.95198e-05 0.000610166 4.34208e-05 0.00056533 3.7281e-05 0.000527825 3.39326e-05 0.000488434 3.22909e-05 0.000454964 3.01796e-05 0.000408484 2.68848e-05 0.000363589 2.4397e-05 0.000328305 2.38407e-05 0.000291558 2.31399e-05 0.000261093 2.28691e-05 0.000216605 2.08584e-05 0.000183049 1.99534e-05 0.00014803 1.8524e-05 0.000113002 1.71973e-05 8.476e-05 1.68235e-05 5.27573e-05 1.59769e-05 3.22289e-05 1.61305e-05 2.63974e-06 1.53756e-05 -2.62132e-05 1.51573e-05 -4.92323e-05 1.5297e-05 -7.96496e-05 1.49213e-05 -9.72698e-05 1.58762e-05 -0.000125844 1.53204e-05 -0.000151848 1.5778e-05 -0.000177664 1.59406e-05 -0.00020482 1.5983e-05 -0.00022617 1.70814e-05 -0.000255993 1.67994e-05 -0.000276598 1.833e-05 -0.000304355 1.80265e-05 -0.000330646 1.9171e-05 -0.000354923 2.15302e-05 -0.000379536 2.16094e-05 -0.000411968 2.18391e-05 -0.000436338 2.47682e-05 -0.000456699 2.76939e-05 -0.000482144 2.9137e-05 -0.000511903 3.13462e-05 -0.000533482 3.69483e-05 -0.000557328 4.04326e-05 -0.000571441 5.14219e-05 -0.000589511 6.23408e-05 -0.000589119 8.61055e-05 -0.000603886 0.000113543 -0.000590628 0.000142881 -0.000578666 0.000178213 -0.000589037 0.000200655 -0.000531922 0.00023856 -0.000510205 0.000258528 -0.000450871 0.00028194 -0.000423846 0.00028508 -0.000346398 0.000309256 -0.000299078 0.000310632 -0.000221342 0.000308098 -0.000148475 0.000328287 -7.44287e-05 0.000309876 2.25983e-05 0.000316043 3.04446e-05 0.000308636 0.000161133 0.00031236 0.000201668 0.000292281 0.000268105 0.000251775 0.000354502 0.000200529 0.000450099 0.000145692 0.000519695 9.59149e-05 0.00055657 5.99885e-05 0.000601187 3.67902e-05 0.000649309 2.55013e-05 0.000678583 2.03464e-05 0.000679116 1.9661e-05 0.000668896 2.09824e-05 0.00065294 2.45819e-05 0.000634082 2.71432e-05 0.000602306 2.69537e-05 0.000564638 2.59618e-05 0.000535055 2.76506e-05 0.000511188 2.69544e-05 0.000468521 2.45144e-05 0.000425468 2.25337e-05 0.000389354 2.14371e-05 0.000358143 2.23595e-05 0.000329455 2.20402e-05 0.00029119 2.08328e-05 0.000253074 1.98346e-05 0.000220346 1.88119e-05 0.0001889 1.80945e-05 0.000159732 1.76886e-05 0.000133728 1.7476e-05 0.000107522 1.75501e-05 8.23128e-05 1.77721e-05 5.85503e-05 1.78269e-05 3.25666e-05 1.77931e-05 9.90332e-06 1.79536e-05 -1.5797e-05 1.82259e-05 -3.89109e-05 1.85693e-05 -6.17474e-05 1.89706e-05 -8.41847e-05 1.94159e-05 -0.000106532 1.97813e-05 -0.000128962 2.01775e-05 -0.000151204 2.03065e-05 -0.000173655 2.02764e-05 -0.000195222 2.03063e-05 -0.000215332 2.05497e-05 -0.000233952 2.08498e-05 -0.000252882 2.11462e-05 -0.000272086 2.11132e-05 -0.00029199 2.07692e-05 -0.000311896 2.00146e-05 -0.000329538 1.92978e-05 -0.000344792 1.87412e-05 -0.000358826 1.85606e-05 -0.000370861 1.75529e-05 -0.000385814 1.55384e-05 -0.000400993 1.37367e-05 -0.000407272 1.16197e-05 -0.000414283 9.56914e-06 -0.000416821 7.67796e-06 -0.00041437 4.20097e-06 -0.000417907 1.46199e-06 -0.00040613 -5.06434e-07 -0.000391735 -5.37509e-06 -0.000387688 -8.21948e-06 -0.000359224 -9.7456e-06 -0.000329708 -1.23279e-05 -0.000305664 -1.432e-05 -0.000274252 -1.67266e-05 -0.000242961 -1.84883e-05 -0.000206403 -2.00393e-05 -0.00016968 -2.14593e-05 -0.000131823 -2.26746e-05 -9.26975e-05 -2.37123e-05 -5.29239e-05 -2.4348e-05 -1.50113e-05 -2.48384e-05 2.67879e-05 -2.53692e-05 6.71271e-05 -2.62384e-05 0.000105218 -2.79905e-05 0.000145202 -2.45904e-05 0.000208785 -1.58662e-05 0.000248433 -1.49488e-05 0.000243233 -1.22573e-05 0.000258533 -1.21652e-05 0.000256167 -1.26127e-05 0.000261153 -1.33525e-05 0.000266711 -1.42448e-05 0.000281737 -6.15312e-06 0.000312657 -3.35962e-06 0.000295488 -2.4416e-06 0.000278984 -3.86767e-07 0.000269005 -3.23764e-07 0.000251619 -9.77705e-08 0.000237982 -1.92357e-07 0.000225156 -2.54328e-07 0.000216318 2.76334e-06 0.000210959 3.28744e-06 0.000189845 3.71609e-06 0.00017337 4.58422e-06 0.000157468 4.77978e-06 0.000138896 4.73981e-06 0.000121537 4.6105e-06 0.000105466 4.41822e-06 9.04427e-05 4.07812e-06 7.62259e-05 3.56706e-06 6.3126e-05 2.86617e-06 5.13434e-05 1.89268e-06 4.09196e-05 3.16468e-05 5.88053e-06 -0.000255527 6.1154e-06 -0.000309494 6.19971e-06 -0.000354775 7.81065e-06 -0.000398394 4.44842e-06 -0.000458202 3.68791e-06 -0.000497451 3.04631e-06 -0.000540537 -2.37947e-06 -0.000597239 -4.10333e-06 -0.000624014 -5.59544e-06 -0.000660914 -1.20176e-05 -0.000701727 -1.12384e-05 -0.000707816 -1.55119e-05 -0.000742952 -2.767e-05 -0.000778016 -2.86697e-05 -0.000748477 -3.09491e-05 -0.000730515 -3.63366e-05 -0.000728377 -4.01893e-05 -0.000692963 -4.58918e-05 -0.000661808 -4.52522e-05 -0.000587157 -4.00153e-05 -0.000516558 -5.13873e-05 -0.00051221 -5.21391e-05 -0.000403795 -3.71653e-05 -0.000286259 -3.25347e-05 -0.000253278 -2.75524e-05 -0.000204516 -1.05487e-05 -0.000112594 6.6214e-06 3.23266e-06 1.44541e-05 0.000131585 2.39382e-05 0.000271027 3.291e-05 0.000356105 4.31639e-05 0.000403155 4.22749e-05 0.000424256 3.32613e-05 0.000506066 3.50493e-05 0.000638666 2.88965e-05 0.000683598 2.37925e-05 0.000739203 2.5824e-05 0.000781884 2.37155e-05 0.000792481 3.16889e-05 0.00081631 3.5262e-05 0.000793443 3.90834e-05 0.000772176 4.13332e-05 0.000729303 4.05546e-05 0.00068573 4.07012e-05 0.000646709 3.91598e-05 0.000596465 3.65757e-05 0.000550918 3.36982e-05 0.00050832 3.15921e-05 0.000469714 2.92827e-05 0.000429312 2.5934e-05 0.000387814 2.26741e-05 0.000352198 1.96471e-05 0.000319968 1.7014e-05 0.000290829 1.51965e-05 0.000264116 1.44473e-05 0.000237153 1.34003e-05 0.000205028 1.23692e-05 0.000171478 1.14744e-05 0.000137913 1.06431e-05 0.000102568 9.84905e-06 6.72919e-05 9.08689e-06 3.34713e-05 8.14783e-06 -2.95624e-06 7.38337e-06 -3.79164e-05 6.59367e-06 -7.14758e-05 5.84439e-06 -0.000103797 5.26698e-06 -0.000132745 4.95407e-06 -0.000160611 4.8043e-06 -0.000187154 4.64882e-06 -0.000212523 4.50172e-06 -0.000238349 4.58728e-06 -0.000261109 4.75662e-06 -0.000284641 5.22725e-06 -0.000305703 5.93931e-06 -0.000329769 7.0618e-06 -0.000350117 8.57248e-06 -0.000374883 1.00037e-05 -0.000398265 1.19021e-05 -0.00042359 1.32926e-05 -0.000454334 1.57815e-05 -0.000473802 1.92655e-05 -0.000504107 2.14829e-05 -0.000534029 2.56501e-05 -0.00056528 2.88496e-05 -0.00059122 3.48503e-05 -0.00061806 4.24398e-05 -0.00065644 4.65733e-05 -0.000672326 6.63587e-05 -0.000688323 7.88894e-05 -0.000678399 0.000108019 -0.000714218 0.000133477 -0.000705105 0.000187838 -0.000674152 0.000260918 -0.000655933 0.000298069 -0.000608841 0.00036411 -0.000551784 0.000408955 -0.000438112 0.000426436 -0.000363793 0.000442167 -0.000300047 0.000467552 -0.000199083 0.000489932 -5.91349e-05 0.000484923 3.97501e-05 0.000494833 5.45266e-05 0.000489841 0.000292524 0.00047716 0.000179829 0.000468369 0.000429907 0.000409186 0.000466464 0.000331797 0.000517744 0.000261265 0.000626612 0.000213315 0.000730014 0.000176935 0.000778192 0.000145555 0.000781526 0.000130294 0.000806997 0.000112567 0.000784389 9.53739e-05 0.000758665 7.99712e-05 0.000723889 6.70898e-05 0.000685263 5.78031e-05 0.000635496 5.0087e-05 0.00057863 4.38101e-05 0.00050807 3.93351e-05 0.000450901 3.48083e-05 0.000393226 3.107e-05 0.000343962 2.68042e-05 0.000297251 2.33697e-05 0.000264306 2.05443e-05 0.000240883 1.96078e-05 0.000213407 1.81466e-05 0.000198664 1.79851e-05 0.000170534 1.74893e-05 0.000157348 1.73987e-05 0.000124051 1.60862e-05 0.000108618 1.60026e-05 8.46399e-05 1.51615e-05 6.76816e-05 1.49367e-05 4.57773e-05 1.46814e-05 3.31013e-05 1.54211e-05 1.83988e-05 1.72539e-05 1.1374e-05 1.93018e-05 -1.58127e-05 1.92263e-05 -3.93194e-05 2.06932e-05 -5.65228e-05 2.318e-05 -8.5866e-05 2.44432e-05 -0.00010497 2.55347e-05 -0.000149096 2.51387e-05 -0.000171857 2.86766e-05 -0.000204346 2.98013e-05 -0.000234139 3.29452e-05 -0.000259156 3.69398e-05 -0.000303636 3.97471e-05 -0.000322211 4.45312e-05 -0.000381156 5.32047e-05 -0.000432242 6.83993e-05 -0.000485213 8.4193e-05 -0.000541594 9.15417e-05 -0.000542745 9.91472e-05 -0.000557311 0.000104061 -0.000545892 0.000110923 -0.000569669 0.000119272 -0.000571532 0.000129643 -0.000593581 0.000142301 -0.000597517 0.000155007 -0.000628055 0.000181993 -0.000604735 0.000211738 -0.000580923 0.000240754 -0.000589898 0.000274425 -0.000539712 0.000305426 -0.000475515 0.00032643 -0.000425145 0.000337463 -0.000329427 0.000350845 -0.000314343 0.000360673 -0.000186072 0.00035831 -0.00018497 0.000355578 -6.81391e-05 0.000353273 -2.79621e-05 0.000345339 9.95377e-05 0.000320411 7.27249e-05 0.000309746 0.000221889 0.000270149 0.0002521 0.000220051 0.000290626 0.000193584 0.000431143 0.000151632 0.000456214 0.000121215 0.000527059 9.93734e-05 0.000594728 7.78095e-05 0.000620911 6.66747e-05 0.000668196 5.67894e-05 0.000690462 5.08861e-05 0.000710627 4.70742e-05 0.000719902 4.60943e-05 0.000717729 4.34463e-05 0.000703725 4.01562e-05 0.000677578 3.5673e-05 0.000643769 3.34479e-05 0.000612391 3.07409e-05 0.000568037 2.76727e-05 0.000530893 2.6343e-05 0.000489764 2.59188e-05 0.000455388 2.49303e-05 0.000409473 2.2709e-05 0.000365811 2.10035e-05 0.00033001 2.07014e-05 0.000291861 2.02663e-05 0.000261528 1.99427e-05 0.000216929 1.83372e-05 0.000184654 1.75796e-05 0.000148788 1.63099e-05 0.000114272 1.52246e-05 8.58453e-05 1.46599e-05 5.33219e-05 1.40576e-05 3.28313e-05 1.41124e-05 2.58492e-06 1.34735e-05 -2.55742e-05 1.33343e-05 -4.90931e-05 1.3234e-05 -7.95493e-05 1.30365e-05 -9.70723e-05 1.37229e-05 -0.00012653 1.33852e-05 -0.000151511 1.37453e-05 -0.000178024 1.34468e-05 -0.000204521 1.39634e-05 -0.000226687 1.40577e-05 -0.000256087 1.41492e-05 -0.00027669 1.5076e-05 -0.000305282 1.47529e-05 -0.000330323 1.54684e-05 -0.000355639 1.68138e-05 -0.000380882 1.64422e-05 -0.000411597 1.62851e-05 -0.000436181 1.7688e-05 -0.000458102 1.91478e-05 -0.000483604 1.92704e-05 -0.000512026 1.99316e-05 -0.000534144 2.08618e-05 -0.000558258 2.17544e-05 -0.000572334 2.29967e-05 -0.000590753 2.65909e-05 -0.000592713 2.92599e-05 -0.000606555 3.46612e-05 -0.00059603 4.26993e-05 -0.000586704 5.04382e-05 -0.000596776 6.27854e-05 -0.000544269 7.96271e-05 -0.000527047 9.87474e-05 -0.000469991 0.000119658 -0.000444757 0.000141856 -0.000368596 0.000159155 -0.000316378 0.000173025 -0.000235212 0.000178022 -0.000153473 0.000185258 -8.16641e-05 0.00018852 1.93356e-05 0.000168259 5.0706e-05 0.000159756 0.000169637 0.000137044 0.000224379 0.000109184 0.000295965 8.19361e-05 0.00038175 5.97248e-05 0.00047231 4.16603e-05 0.00053776 2.46838e-05 0.000573547 1.30422e-05 0.000612828 9.66651e-06 0.000652684 1.18747e-05 0.000676375 1.4446e-05 0.000676544 1.72258e-05 0.000666116 1.95729e-05 0.000650593 2.22982e-05 0.000631357 2.32808e-05 0.000601324 2.2064e-05 0.000565855 2.10617e-05 0.000536058 2.28198e-05 0.000509429 2.28008e-05 0.00046854 2.13409e-05 0.000426928 2.00361e-05 0.000390659 1.94115e-05 0.000358767 2.0256e-05 0.00032861 2.01366e-05 0.000291309 1.92074e-05 0.000254003 1.83572e-05 0.000221197 1.74826e-05 0.000189774 1.68408e-05 0.000160374 1.64774e-05 0.000134091 1.62987e-05 0.000107701 1.63314e-05 8.22801e-05 1.65087e-05 5.83729e-05 1.65584e-05 3.25169e-05 1.65405e-05 9.92124e-06 1.66815e-05 -1.5938e-05 1.69281e-05 -3.91576e-05 1.72353e-05 -6.20546e-05 1.75978e-05 -8.45472e-05 1.79969e-05 -0.000106931 1.83275e-05 -0.000129293 1.86599e-05 -0.000151537 1.87731e-05 -0.000173769 1.8756e-05 -0.000195205 1.88025e-05 -0.000215378 1.90001e-05 -0.000234149 1.92638e-05 -0.000253146 1.95329e-05 -0.000272355 1.94858e-05 -0.000291943 1.91204e-05 -0.00031153 1.84406e-05 -0.000328858 1.78622e-05 -0.000344214 1.73585e-05 -0.000358322 1.7073e-05 -0.000370576 1.62089e-05 -0.00038495 1.4326e-05 -0.00039911 1.26782e-05 -0.000405624 1.07093e-05 -0.000412315 8.71707e-06 -0.000414829 6.93136e-06 -0.000412584 3.78105e-06 -0.000414757 1.0994e-06 -0.000403448 -9.91059e-07 -0.000389645 -5.39155e-06 -0.000383288 -8.12653e-06 -0.000356489 -9.77167e-06 -0.000328063 -1.22121e-05 -0.000303224 -1.41811e-05 -0.000272283 -1.64333e-05 -0.000240708 -1.81563e-05 -0.00020468 -1.96915e-05 -0.000168145 -2.11207e-05 -0.000130394 -2.23987e-05 -9.14196e-05 -2.35871e-05 -5.17354e-05 -2.44065e-05 -1.41919e-05 -2.51223e-05 2.75037e-05 -2.56904e-05 6.76952e-05 -2.63391e-05 0.000105867 -2.74297e-05 0.000146293 -2.36085e-05 0.000204963 -1.59398e-05 0.000240764 -1.44798e-05 0.000241773 -1.2022e-05 0.000256076 -1.17847e-05 0.00025593 -1.20666e-05 0.000261435 -1.26282e-05 0.000267273 -1.27761e-05 0.000281885 -6.06211e-06 0.000305942 -3.33796e-06 0.000292764 -2.36308e-06 0.000278009 -5.22828e-07 0.000267165 -3.5316e-07 0.000251449 -1.06027e-07 0.000237735 -1.39763e-07 0.00022519 2.95091e-08 0.000216149 2.43781e-06 0.000208551 3.02153e-06 0.000189261 3.49086e-06 0.000172901 4.21429e-06 0.000156744 4.41646e-06 0.000138693 4.39554e-06 0.000121558 4.27789e-06 0.000105583 4.08927e-06 9.06313e-05 3.76375e-06 7.65514e-05 3.27745e-06 6.36123e-05 2.6048e-06 5.20161e-05 1.65714e-06 4.18673e-05 3.33039e-05 4.94183e-06 -0.000260469 5.56826e-06 -0.000310121 5.8138e-06 -0.000355021 6.93666e-06 -0.000399517 4.31396e-06 -0.000455579 3.51796e-06 -0.000496655 2.56933e-06 -0.000539588 -1.93827e-06 -0.000592732 -3.66129e-06 -0.000622291 -5.43025e-06 -0.000659146 -1.0744e-05 -0.000696413 -1.07768e-05 -0.000707783 -1.48706e-05 -0.000738859 -2.47901e-05 -0.000768096 -2.66342e-05 -0.000746633 -2.87939e-05 -0.000728356 -3.37179e-05 -0.000723453 -3.7556e-05 -0.000689125 -4.23041e-05 -0.00065706 -4.1995e-05 -0.000587466 -3.82882e-05 -0.000520265 -4.75083e-05 -0.00050299 -4.84568e-05 -0.000402847 -3.79549e-05 -0.000296761 -3.70872e-05 -0.000254146 -4.11778e-05 -0.000200426 -4.24115e-05 -0.00011136 -3.95242e-05 3.45201e-07 -3.39716e-05 0.000126032 -2.03931e-05 0.000257448 -8.38279e-06 0.000344094 -3.17156e-07 0.000395089 -2.32626e-06 0.000426265 -7.56385e-06 0.000511303 1.03015e-06 0.000630072 5.53117e-06 0.000679097 8.97644e-06 0.000735758 1.59995e-05 0.000774861 1.88946e-05 0.000789586 2.77177e-05 0.000807487 3.21666e-05 0.000788994 3.62015e-05 0.000768142 3.8197e-05 0.000727307 3.7801e-05 0.000686127 3.78957e-05 0.000646615 3.64081e-05 0.000597953 3.40858e-05 0.000553241 3.14966e-05 0.000510909 2.94583e-05 0.000471752 2.72242e-05 0.000431547 2.41737e-05 0.000390864 2.11745e-05 0.000355198 1.83826e-05 0.00032276 1.59724e-05 0.00029324 1.42975e-05 0.000265791 1.34822e-05 0.000237969 1.25173e-05 0.000205993 1.156e-05 0.000172435 1.07387e-05 0.000138734 9.96007e-06 0.000103347 9.19734e-06 6.80547e-05 8.50324e-06 3.41654e-05 7.6317e-06 -2.08469e-06 6.88871e-06 -3.71734e-05 6.19609e-06 -7.07832e-05 5.48029e-06 -0.000103081 4.94229e-06 -0.000132207 4.63297e-06 -0.000160302 4.38519e-06 -0.000186906 4.10228e-06 -0.000212241 3.98127e-06 -0.000238228 3.99779e-06 -0.000261126 4.02862e-06 -0.000284672 4.34466e-06 -0.000306019 4.87881e-06 -0.000330303 5.67209e-06 -0.00035091 6.73726e-06 -0.000375948 7.67328e-06 -0.000399201 9.11486e-06 -0.000425031 9.88005e-06 -0.000455099 1.17345e-05 -0.000475656 1.39801e-05 -0.000506352 1.5362e-05 -0.000535411 1.7329e-05 -0.000567247 1.91476e-05 -0.000593038 2.21047e-05 -0.000621018 2.48051e-05 -0.000659141 2.69388e-05 -0.00067446 3.4369e-05 -0.000695753 4.35301e-05 -0.00068756 5.28856e-05 -0.000723573 6.53645e-05 -0.000717584 8.49546e-05 -0.000693742 0.000115229 -0.000686208 0.000141703 -0.000635314 0.000180353 -0.000590435 0.000232706 -0.000490464 0.000267982 -0.000399069 0.000287689 -0.000319755 0.00030787 -0.000219264 0.00033326 -8.45245e-05 0.00033889 3.41202e-05 0.000326497 6.69201e-05 0.000334303 0.000284718 0.000281502 0.00023263 0.000266106 0.000445304 0.000222567 0.000510004 0.000175858 0.000564454 0.000140847 0.000661623 0.000121324 0.000749538 0.000106897 0.000792621 8.96882e-05 0.000798735 8.07422e-05 0.000815944 6.90937e-05 0.000796038 5.91173e-05 0.000768643 5.08305e-05 0.000732177 4.53964e-05 0.000690698 4.1917e-05 0.000638977 3.88337e-05 0.000581714 3.49835e-05 0.000511921 3.15992e-05 0.000454286 2.78735e-05 0.000396952 2.46209e-05 0.000347215 2.06968e-05 0.000301176 1.75305e-05 0.000267472 1.53486e-05 0.000243065 1.41369e-05 0.000214619 1.31845e-05 0.000199617 1.26616e-05 0.000171057 1.25082e-05 0.000157501 1.19485e-05 0.00012461 1.11671e-05 0.0001094 1.07984e-05 8.50086e-05 1.02188e-05 6.82612e-05 9.46525e-06 4.65309e-05 9.05822e-06 3.35084e-05 9.61332e-06 1.78438e-05 1.17765e-05 9.21081e-06 1.28342e-05 -1.68704e-05 1.30148e-05 -3.94999e-05 1.44219e-05 -5.79298e-05 1.55451e-05 -8.69893e-05 1.74617e-05 -0.000106887 1.79694e-05 -0.000149604 1.89026e-05 -0.00017279 1.97968e-05 -0.00020524 2.08769e-05 -0.000235219 2.36181e-05 -0.000261897 2.50717e-05 -0.00030509 2.88692e-05 -0.000326008 3.25021e-05 -0.000384789 3.94576e-05 -0.000439198 4.84936e-05 -0.000494249 5.88096e-05 -0.00055191 6.78417e-05 -0.000551777 7.22624e-05 -0.000561732 7.6763e-05 -0.000550393 7.83764e-05 -0.000571283 8.26673e-05 -0.000575823 8.39754e-05 -0.000594889 8.83947e-05 -0.000601936 8.90447e-05 -0.000628705 9.59368e-05 -0.000611627 0.00010555 -0.000590536 0.000111847 -0.000596195 0.000125472 -0.000553338 0.000139328 -0.00048937 0.000155175 -0.000440991 0.000171629 -0.000345882 0.000181605 -0.000324319 0.000198761 -0.000203228 0.000192934 -0.000179143 0.000192298 -6.75034e-05 0.000184829 -2.04932e-05 0.000186434 9.79337e-05 0.000157102 0.000102057 0.000153086 0.000225906 0.000130864 0.000274323 0.000101929 0.000319561 9.36662e-05 0.000439406 7.37736e-05 0.000476107 6.06296e-05 0.000540204 5.26871e-05 0.00060267 4.32956e-05 0.000630303 3.91635e-05 0.000672328 3.42667e-05 0.000695358 3.10127e-05 0.000713881 2.8913e-05 0.000722002 2.88118e-05 0.000717831 2.80002e-05 0.000704537 2.72519e-05 0.000678326 2.56055e-05 0.000645415 2.53652e-05 0.000612631 2.43435e-05 0.000569059 2.28746e-05 0.000532362 2.22152e-05 0.000490424 2.22161e-05 0.000455388 2.15081e-05 0.000410181 1.98141e-05 0.000367505 1.85032e-05 0.000331321 1.80773e-05 0.000292286 1.78837e-05 0.000261722 1.7376e-05 0.000217436 1.61191e-05 0.000185911 1.54147e-05 0.000149492 1.42503e-05 0.000115436 1.33772e-05 8.67184e-05 1.25745e-05 5.41247e-05 1.22258e-05 3.318e-05 1.22511e-05 2.55963e-06 1.1709e-05 -2.50322e-05 1.15793e-05 -4.89634e-05 1.12e-05 -7.917e-05 1.13078e-05 -9.71802e-05 1.16553e-05 -0.000126878 1.15274e-05 -0.000151383 1.16883e-05 -0.000178185 1.14773e-05 -0.00020431 1.18328e-05 -0.000227042 1.17999e-05 -0.000256054 1.21024e-05 -0.000276992 1.25571e-05 -0.000305737 1.25388e-05 -0.000330305 1.30475e-05 -0.000356147 1.38075e-05 -0.000381642 1.34497e-05 -0.000411239 1.33002e-05 -0.000436032 1.40009e-05 -0.000458803 1.46729e-05 -0.000484276 1.43932e-05 -0.000511746 1.42769e-05 -0.000534027 1.36821e-05 -0.000557663 1.35642e-05 -0.000572216 1.26863e-05 -0.000589876 1.35804e-05 -0.000593607 1.2507e-05 -0.000605482 1.39963e-05 -0.000597519 1.62223e-05 -0.00058893 1.55456e-05 -0.0005961 1.97071e-05 -0.000548431 2.33052e-05 -0.000530645 3.08909e-05 -0.000477577 3.47385e-05 -0.000448605 4.32294e-05 -0.000377087 4.72203e-05 -0.000320369 5.50329e-05 -0.000243024 5.80689e-05 -0.000156509 6.04397e-05 -8.40348e-05 6.42182e-05 1.55572e-05 4.92332e-05 6.56911e-05 4.73922e-05 0.000171478 3.6182e-05 0.00023559 2.34235e-05 0.000308723 1.24004e-05 0.000392773 6.89441e-06 0.000477816 4.50415e-06 0.00054015 1.88337e-06 0.000576167 3.7924e-07 0.000614332 2.54612e-06 0.000650517 7.47295e-06 0.000671448 1.12501e-05 0.000672767 1.39779e-05 0.000663388 1.58736e-05 0.000648697 1.8054e-05 0.000629176 1.90839e-05 0.000600294 1.86876e-05 0.000566251 1.8499e-05 0.000536246 2.02038e-05 0.000507725 2.04619e-05 0.000468282 1.94758e-05 0.000427914 1.84913e-05 0.000391643 1.80324e-05 0.000359226 1.86534e-05 0.00032799 1.85712e-05 0.000291392 1.77925e-05 0.000254782 1.70292e-05 0.00022196 1.62592e-05 0.000190544 1.56766e-05 0.000160957 1.53384e-05 0.000134429 1.51816e-05 0.000107858 1.51864e-05 8.22753e-05 1.53319e-05 5.82275e-05 1.53755e-05 3.24733e-05 1.53753e-05 9.92138e-06 1.55052e-05 -1.60678e-05 1.57232e-05 -3.93756e-05 1.60045e-05 -6.23359e-05 1.63315e-05 -8.48742e-05 1.66848e-05 -0.000107284 1.69909e-05 -0.000129599 1.72854e-05 -0.000151831 1.74013e-05 -0.000173885 1.74117e-05 -0.000195215 1.74493e-05 -0.000215416 1.76321e-05 -0.000234332 1.78567e-05 -0.00025337 1.80594e-05 -0.000272558 1.80185e-05 -0.000291902 1.76903e-05 -0.000311202 1.7111e-05 -0.000328279 1.65483e-05 -0.000343651 1.60778e-05 -0.000357852 1.57438e-05 -0.000370242 1.48843e-05 -0.000384091 1.32414e-05 -0.000397468 1.17075e-05 -0.00040409 9.89867e-06 -0.000410506 8.0454e-06 -0.000412976 6.34803e-06 -0.000410887 3.5683e-06 -0.000411977 9.87697e-07 -0.000400868 -1.02288e-06 -0.000387634 -4.88744e-06 -0.000379423 -7.41291e-06 -0.000353963 -9.07019e-06 -0.000326406 -1.13176e-05 -0.000300977 -1.32047e-05 -0.000270396 -1.52692e-05 -0.000238644 -1.6909e-05 -0.000203041 -1.83838e-05 -0.00016667 -1.97495e-05 -0.000129028 -2.09851e-05 -9.0184e-05 -2.21211e-05 -5.05994e-05 -2.29601e-05 -1.33529e-05 -2.36895e-05 2.8233e-05 -2.42202e-05 6.82259e-05 -2.47792e-05 0.000106426 -2.54785e-05 0.000146992 -2.17825e-05 0.000201267 -1.54092e-05 0.000234391 -1.38221e-05 0.000240186 -1.15348e-05 0.000253788 -1.12087e-05 0.000255604 -1.1306e-05 0.000261532 -1.16996e-05 0.000267666 -1.13907e-05 0.000281576 -5.82608e-06 0.000300378 -3.27006e-06 0.000290208 -2.22686e-06 0.000276966 -6.23362e-07 0.000265561 -3.17101e-07 0.000251143 -1.31764e-07 0.000237549 -9.68258e-08 0.000225155 2.27167e-07 0.000215825 2.16277e-06 0.000206615 2.76882e-06 0.000188655 3.25067e-06 0.000172419 3.86233e-06 0.000156133 4.06266e-06 0.000138493 4.05562e-06 0.000121565 3.94879e-06 0.00010569 3.76636e-06 9.08138e-05 3.45716e-06 7.68606e-05 2.99734e-06 6.40721e-05 2.35772e-06 5.26557e-05 1.45358e-06 4.27714e-05 3.47575e-05 4.17808e-06 -0.000264647 5.04371e-06 -0.000310986 5.39915e-06 -0.000355376 6.1865e-06 -0.000400305 4.12762e-06 -0.00045352 3.29906e-06 -0.000495827 2.2862e-06 -0.000538576 -1.5739e-06 -0.000588872 -3.26115e-06 -0.000620604 -5.15502e-06 -0.000657252 -9.57709e-06 -0.000691991 -1.01994e-05 -0.000707161 -1.40466e-05 -0.000735012 -2.22795e-05 -0.000759864 -2.47123e-05 -0.0007442 -2.66729e-05 -0.000726395 -3.10644e-05 -0.000719062 -3.45786e-05 -0.000685611 -3.8823e-05 -0.000652815 -3.87964e-05 -0.000587493 -3.60753e-05 -0.000522986 -4.33386e-05 -0.000495727 -4.40551e-05 -0.000402131 -3.59655e-05 -0.000304851 -3.53912e-05 -0.00025472 -3.94848e-05 -0.000196332 -4.25143e-05 -0.000108331 -4.19525e-05 -2.16658e-07 -3.83343e-05 0.000122414 -2.80129e-05 0.000247127 -1.80654e-05 0.000334147 -1.14249e-05 0.000388449 -1.45143e-05 0.000429355 -1.67486e-05 0.000513538 -6.4536e-06 0.000619777 -5.83567e-07 0.000673227 5.28639e-06 0.000729888 1.28355e-05 0.000767312 1.71896e-05 0.000785232 2.51412e-05 0.000799535 2.95835e-05 0.000784552 3.34773e-05 0.000764248 3.52283e-05 0.000725556 3.50769e-05 0.000686278 3.51086e-05 0.000646583 3.37025e-05 0.000599359 3.16093e-05 0.000555334 2.92734e-05 0.000513245 2.73217e-05 0.000473704 2.51895e-05 0.000433679 2.24122e-05 0.000393642 1.96642e-05 0.000357946 1.71028e-05 0.000325321 1.49066e-05 0.000295436 1.3366e-05 0.000267332 1.25249e-05 0.00023881 1.16313e-05 0.000206887 1.07483e-05 0.000173318 9.99305e-06 0.000139489 9.27217e-06 0.000104068 8.55174e-06 6.87751e-05 7.90869e-06 3.48085e-05 7.09785e-06 -1.27384e-06 6.36023e-06 -3.64358e-05 5.77337e-06 -7.01963e-05 5.06597e-06 -0.000102374 4.61974e-06 -0.000131761 4.262e-06 -0.000159944 4.04641e-06 -0.000186691 3.91981e-06 -0.000212114 3.81533e-06 -0.000238124 3.75045e-06 -0.000261061 3.70541e-06 -0.000284627 3.83464e-06 -0.000306148 4.25227e-06 -0.00033072 4.72281e-06 -0.000351381 5.51481e-06 -0.00037674 6.12444e-06 -0.00039981 7.23182e-06 -0.000426139 7.47078e-06 -0.000455338 8.93333e-06 -0.000477119 1.03663e-05 -0.000507785 1.12383e-05 -0.000536283 1.22826e-05 -0.000568292 1.32728e-05 -0.000594029 1.49199e-05 -0.000622665 1.52283e-05 -0.00065945 1.58687e-05 -0.0006751 1.81455e-05 -0.00069803 2.40185e-05 -0.000693434 2.68434e-05 -0.000726398 3.13936e-05 -0.000722134 4.14626e-05 -0.000703811 5.5164e-05 -0.00069991 6.68358e-05 -0.000646986 8.29667e-05 -0.000606565 0.000110086 -0.000517584 0.00013181 -0.000420793 0.000145159 -0.000333104 0.000158422 -0.000232526 0.000175267 -0.000101369 0.000182869 2.65178e-05 0.000170579 7.92106e-05 0.000180776 0.000274521 0.00014152 0.000271887 0.000136194 0.000450631 0.00011568 0.000530518 9.07785e-05 0.000589356 7.36938e-05 0.000678709 6.61723e-05 0.00075706 6.03701e-05 0.000798424 5.12752e-05 0.000807831 4.75666e-05 0.000819653 4.22387e-05 0.000801367 3.81829e-05 0.000772699 3.51151e-05 0.000735245 3.35849e-05 0.000692229 3.27366e-05 0.000639825 3.15815e-05 0.00058287 2.8964e-05 0.000514539 2.61868e-05 0.000457064 2.31052e-05 0.000400034 2.01382e-05 0.000350182 1.67294e-05 0.000304585 1.39011e-05 0.000270301 1.19743e-05 0.000244992 1.06801e-05 0.000215913 9.93553e-06 0.000200361 9.41308e-06 0.00017158 9.46577e-06 0.000157448 8.73757e-06 0.000125339 8.08562e-06 0.000110052 7.88072e-06 8.52136e-05 7.42081e-06 6.87211e-05 6.75429e-06 4.71974e-05 6.26764e-06 3.3995e-05 6.5689e-06 1.75425e-05 8.40225e-06 7.37747e-06 9.5693e-06 -1.80375e-05 9.72273e-06 -3.96533e-05 1.08523e-05 -5.90594e-05 1.19588e-05 -8.80958e-05 1.38803e-05 -0.000108808 1.40326e-05 -0.000149756 1.46193e-05 -0.000173377 1.52977e-05 -0.000205919 1.63739e-05 -0.000236295 1.85466e-05 -0.00026407 1.95277e-05 -0.000306071 2.27489e-05 -0.00032923 2.44222e-05 -0.000386462 2.62382e-05 -0.000441014 2.89229e-05 -0.000496934 3.21424e-05 -0.00055513 3.94892e-05 -0.000559124 4.56179e-05 -0.00056786 5.18169e-05 -0.000556592 5.45289e-05 -0.000573995 5.80582e-05 -0.000579352 5.84438e-05 -0.000595274 6.06162e-05 -0.000604108 5.7707e-05 -0.000625795 5.93994e-05 -0.00061332 6.44295e-05 -0.000595566 6.42773e-05 -0.000596043 6.70417e-05 -0.000556103 7.31573e-05 -0.000495486 7.90715e-05 -0.000446905 8.80346e-05 -0.000354845 8.95193e-05 -0.000325803 9.86402e-05 -0.000212349 9.30014e-05 -0.000173503 9.50698e-05 -6.95716e-05 8.90525e-05 -1.44756e-05 9.21121e-05 9.48743e-05 7.3894e-05 0.000120275 7.39869e-05 0.000225813 6.2937e-05 0.000285373 4.62276e-05 0.00033627 4.48074e-05 0.000440827 3.53732e-05 0.000485541 2.93236e-05 0.000546254 2.64738e-05 0.00060552 2.18463e-05 0.000634931 2.0134e-05 0.00067404 1.79911e-05 0.000697502 1.699e-05 0.000714883 1.69773e-05 0.000722015 1.84607e-05 0.000716347 1.93919e-05 0.000703606 2.04296e-05 0.000677289 2.03311e-05 0.000645514 2.09386e-05 0.000612024 2.06623e-05 0.000569335 1.98453e-05 0.000533179 1.94871e-05 0.000490782 1.95433e-05 0.000455331 1.90528e-05 0.000410671 1.77045e-05 0.000368853 1.66587e-05 0.000332367 1.62375e-05 0.000292708 1.60676e-05 0.000261891 1.55457e-05 0.000217958 1.45354e-05 0.000186921 1.39204e-05 0.000150108 1.29084e-05 0.000116448 1.21121e-05 8.75147e-05 1.13513e-05 5.48855e-05 1.10636e-05 3.34678e-05 1.10507e-05 2.5725e-06 1.06213e-05 -2.46027e-05 1.04471e-05 -4.87892e-05 1.00367e-05 -7.87596e-05 1.02133e-05 -9.73568e-05 1.0477e-05 -0.000127141 1.03854e-05 -0.000151291 1.04009e-05 -0.000178201 1.0226e-05 -0.000204135 1.04318e-05 -0.000227248 1.0392e-05 -0.000256015 1.05874e-05 -0.000277187 1.08377e-05 -0.000305987 1.08076e-05 -0.000330275 1.10812e-05 -0.000356421 1.15392e-05 -0.0003821 1.12363e-05 -0.000410936 1.09011e-05 -0.000435696 1.12333e-05 -0.000459135 1.15634e-05 -0.000484606 1.10861e-05 -0.000511269 1.05031e-05 -0.000533444 9.62528e-06 -0.000556785 8.80892e-06 -0.0005714 7.44529e-06 -0.000588512 6.84084e-06 -0.000593003 5.09026e-06 -0.000603731 4.54257e-06 -0.000596972 3.90696e-06 -0.000588294 1.33891e-06 -0.000593532 6.93571e-07 -0.000547786 8.454e-07 -0.000530797 1.7803e-06 -0.000478512 1.21082e-06 -0.000448035 2.47355e-06 -0.000378349 3.01155e-06 -0.000320907 3.86198e-06 -0.000243875 4.2925e-06 -0.000156939 5.58083e-06 -8.53231e-05 6.71513e-06 1.4423e-05 1.61994e-06 7.07864e-05 -1.51381e-07 0.00017325 -3.65469e-06 0.000239093 -8.68114e-06 0.00031375 -1.16995e-05 0.000395791 -1.00859e-05 0.000476203 -6.96404e-06 0.000537028 -5.72267e-06 0.000574926 -4.31932e-06 0.000612929 -4.11172e-07 0.000646609 4.52188e-06 0.000666515 8.28126e-06 0.000669008 1.09515e-05 0.000660718 1.30712e-05 0.000646577 1.53528e-05 0.000626895 1.66604e-05 0.000598986 1.67336e-05 0.000566178 1.69299e-05 0.00053605 1.83926e-05 0.000506262 1.87104e-05 0.000467964 1.79773e-05 0.000428647 1.71617e-05 0.000392459 1.67872e-05 0.000359601 1.72133e-05 0.000327563 1.71331e-05 0.000291472 1.64656e-05 0.000255449 1.57722e-05 0.000222653 1.50787e-05 0.000191238 1.4541e-05 0.000161494 1.42156e-05 0.000134755 1.40633e-05 0.00010801 1.40437e-05 8.22949e-05 1.41495e-05 5.81217e-05 1.41746e-05 3.24483e-05 1.41744e-05 9.92164e-06 1.42792e-05 -1.61726e-05 1.44721e-05 -3.95686e-05 1.47187e-05 -6.25825e-05 1.50067e-05 -8.51622e-05 1.53238e-05 -0.000107601 1.55966e-05 -0.000129872 1.58469e-05 -0.000152081 1.59532e-05 -0.000173991 1.59712e-05 -0.000195233 1.60185e-05 -0.000215463 1.6173e-05 -0.000234486 1.63723e-05 -0.00025357 1.65427e-05 -0.000272728 1.64946e-05 -0.000291854 1.61867e-05 -0.000310894 1.56979e-05 -0.00032779 1.522e-05 -0.000343173 1.47637e-05 -0.000357395 1.44187e-05 -0.000369897 1.36376e-05 -0.00038331 1.2143e-05 -0.000395973 1.07568e-05 -0.000402704 9.08947e-06 -0.000408838 7.36149e-06 -0.000411248 5.77556e-06 -0.000409301 3.23126e-06 -0.000409433 8.18275e-07 -0.000398455 -1.12184e-06 -0.000385694 -4.5121e-06 -0.000376033 -6.80807e-06 -0.000351667 -8.40758e-06 -0.000324806 -1.04411e-05 -0.000298943 -1.21979e-05 -0.000268639 -1.40591e-05 -0.000236783 -1.55742e-05 -0.000201526 -1.69321e-05 -0.000165312 -1.81876e-05 -0.000127773 -1.93188e-05 -8.90528e-05 -2.0344e-05 -4.95742e-05 -2.1124e-05 -1.25729e-05 -2.18167e-05 2.89256e-05 -2.23137e-05 6.87229e-05 -2.28093e-05 0.000106921 -2.32225e-05 0.000147405 -1.98243e-05 0.000197869 -1.4539e-05 0.000229106 -1.28825e-05 0.000238529 -1.08307e-05 0.000251736 -1.04631e-05 0.000255236 -1.04337e-05 0.000261503 -1.06818e-05 0.000267914 -1.0079e-05 0.000280973 -5.51458e-06 0.000295813 -3.16347e-06 0.000287857 -2.00587e-06 0.000275808 -6.94352e-07 0.00026425 -3.43583e-07 0.000250792 -1.31432e-07 0.000237337 -6.77694e-08 0.000225091 3.55618e-07 0.000215401 1.92652e-06 0.000205044 2.5279e-06 0.000188053 3.00254e-06 0.000171944 3.52482e-06 0.00015561 3.71745e-06 0.0001383 3.72012e-06 0.000121562 3.6233e-06 0.000105787 3.44915e-06 9.09879e-05 3.15789e-06 7.71518e-05 2.72635e-06 6.45037e-05 2.12416e-06 5.32579e-05 1.27552e-06 4.36201e-05 3.6033e-05 3.55037e-06 -0.000268198 4.54592e-06 -0.000311982 4.97127e-06 -0.000355801 5.53187e-06 -0.000400865 3.90627e-06 -0.000451895 3.03072e-06 -0.000494951 2.10056e-06 -0.000537645 -1.2707e-06 -0.0005855 -2.88792e-06 -0.000618987 -4.79219e-06 -0.000655348 -8.5193e-06 -0.000688264 -9.53286e-06 -0.000706147 -1.30827e-05 -0.000731462 -1.99689e-05 -0.000752978 -2.26604e-05 -0.000741508 -2.45436e-05 -0.000724512 -2.84707e-05 -0.000715134 -3.16103e-05 -0.000682471 -3.52906e-05 -0.000649135 -3.54736e-05 -0.00058731 -3.35658e-05 -0.000524894 -3.92906e-05 -0.000490003 -3.9718e-05 -0.000401703 -3.35138e-05 -0.000311055 -3.3046e-05 -0.000255188 -3.65137e-05 -0.000192864 -3.946e-05 -0.000105384 -3.93898e-05 -2.86963e-07 -3.62639e-05 0.000119288 -2.77436e-05 0.000238606 -1.93039e-05 0.000325707 -1.39665e-05 0.000383111 -1.62272e-05 0.000431615 -1.67848e-05 0.000514095 -7.94903e-06 0.000610942 -1.86688e-06 0.000667145 4.38109e-06 0.00072364 1.12441e-05 0.000760449 1.59812e-05 0.000780495 2.29749e-05 0.000792541 2.7198e-05 0.000780329 3.08136e-05 0.000760632 3.23573e-05 0.000724013 3.23692e-05 0.000686266 3.23413e-05 0.000646611 3.10313e-05 0.000600669 2.91415e-05 0.000557224 2.70333e-05 0.000515354 2.51829e-05 0.000475555 2.31709e-05 0.000435691 2.0648e-05 0.000396165 1.81432e-05 0.000360451 1.58087e-05 0.000327656 1.38152e-05 0.00029743 1.24002e-05 0.000268747 1.1571e-05 0.000239639 1.07351e-05 0.000207723 9.9289e-06 0.000174125 9.22833e-06 0.00014019 8.55806e-06 0.000104738 7.92847e-06 6.94048e-05 7.35112e-06 3.53858e-05 6.61684e-06 -5.39561e-07 5.99043e-06 -3.58094e-05 5.42676e-06 -6.96327e-05 4.77692e-06 -0.000101724 4.39668e-06 -0.000131381 4.03925e-06 -0.000159587 3.8915e-06 -0.000186543 3.81036e-06 -0.000212033 3.73793e-06 -0.000238052 3.58223e-06 -0.000260905 3.58931e-06 -0.000284634 3.67204e-06 -0.000306231 3.88497e-06 -0.000330933 4.23001e-06 -0.000351726 4.77753e-06 -0.000377288 5.2019e-06 -0.000400235 5.93381e-06 -0.000426871 5.9719e-06 -0.000455377 6.98513e-06 -0.000478132 7.7817e-06 -0.000508582 8.28712e-06 -0.000536789 8.64204e-06 -0.000568647 8.95959e-06 -0.000594346 9.7319e-06 -0.000623437 8.99749e-06 -0.000658715 8.59275e-06 -0.000674696 8.90821e-06 -0.000698346 1.17961e-05 -0.000696322 1.19066e-05 -0.000726509 1.18389e-05 -0.000722067 1.53438e-05 -0.000707316 2.04048e-05 -0.000704971 2.47146e-05 -0.000651296 3.23532e-05 -0.000614204 4.35335e-05 -0.000528764 5.59111e-05 -0.00043317 6.34595e-05 -0.000340652 7.01762e-05 -0.000239242 7.98562e-05 -0.000111049 8.66741e-05 1.97001e-05 7.72511e-05 8.86339e-05 8.77369e-05 0.000264036 6.37085e-05 0.000295916 6.34865e-05 0.000450853 5.4983e-05 0.000539022 4.16501e-05 0.00060269 3.34741e-05 0.000686885 3.17721e-05 0.000758763 3.09358e-05 0.000799261 2.7721e-05 0.000811046 2.80367e-05 0.000819338 2.71445e-05 0.00080226 2.66609e-05 0.000773184 2.63323e-05 0.000735575 2.66406e-05 0.000691921 2.69522e-05 0.000639514 2.67823e-05 0.00058304 2.49251e-05 0.000516396 2.25924e-05 0.000459397 2.0007e-05 0.00040262 1.73705e-05 0.000352819 1.43424e-05 0.000307613 1.1778e-05 0.000272866 1.00961e-05 0.000246674 8.84634e-06 0.000217163 8.22021e-06 0.000200988 7.73089e-06 0.000172069 7.83755e-06 0.000157342 7.18866e-06 0.000125988 6.59496e-06 0.000110645 6.35599e-06 8.54526e-05 5.90733e-06 6.91698e-05 5.20246e-06 4.79023e-05 4.82509e-06 3.43724e-05 5.1428e-06 1.72248e-05 6.53152e-06 5.98875e-06 7.524e-06 -1.903e-05 7.80236e-06 -3.99317e-05 8.76103e-06 -6.00181e-05 9.53636e-06 -8.88711e-05 1.12471e-05 -0.000110519 1.13561e-05 -0.000149865 1.16603e-05 -0.000173681 1.22633e-05 -0.000206522 1.30235e-05 -0.000237056 1.4695e-05 -0.000265741 1.56881e-05 -0.000307064 1.848e-05 -0.000332022 1.95342e-05 -0.000387516 1.95249e-05 -0.000441004 1.97116e-05 -0.000497121 1.7439e-05 -0.000552857 1.90622e-05 -0.000560747 2.16269e-05 -0.000570425 2.63335e-05 -0.000561299 2.94451e-05 -0.000577106 3.28354e-05 -0.000582742 3.4568e-05 -0.000597007 3.67479e-05 -0.000606288 3.38133e-05 -0.000622861 3.39928e-05 -0.000613499 3.71327e-05 -0.000598706 3.49368e-05 -0.000593847 3.36503e-05 -0.000554816 3.59349e-05 -0.00049777 3.84267e-05 -0.000449397 4.32652e-05 -0.000359683 4.15979e-05 -0.000324136 4.61756e-05 -0.000216926 4.20238e-05 -0.000169352 4.42768e-05 -7.18243e-05 3.9912e-05 -1.01106e-05 4.25564e-05 9.22301e-05 3.21442e-05 0.000130687 3.28616e-05 0.000225096 2.72206e-05 0.000291015 1.73288e-05 0.000346162 1.78963e-05 0.00044026 1.3107e-05 0.000490331 1.04543e-05 0.000548907 9.96816e-06 0.000606007 8.01452e-06 0.000636885 7.91914e-06 0.000674136 7.97205e-06 0.000697449 8.89071e-06 0.000713964 1.04828e-05 0.000720423 1.29812e-05 0.000713849 1.48596e-05 0.000701727 1.66789e-05 0.000675469 1.72937e-05 0.000644899 1.8191e-05 0.000611127 1.81599e-05 0.000569366 1.76922e-05 0.000533647 1.74371e-05 0.000491037 1.75165e-05 0.000455252 1.71004e-05 0.000411088 1.59711e-05 0.000369982 1.51485e-05 0.00033319 1.46821e-05 0.000293174 1.45596e-05 0.000262014 1.39703e-05 0.000218548 1.31673e-05 0.000187724 1.26163e-05 0.000150659 1.16803e-05 0.000117384 1.09978e-05 8.81972e-05 1.02336e-05 5.56498e-05 1.00619e-05 3.36395e-05 1.00097e-05 2.6247e-06 9.56486e-06 -2.41579e-05 9.45779e-06 -4.86822e-05 9.02519e-06 -7.8327e-05 9.21936e-06 -9.7551e-05 9.36647e-06 -0.000127289 9.33043e-06 -0.000151255 9.27375e-06 -0.000178144 9.12224e-06 -0.000203984 9.2795e-06 -0.000227406 9.1687e-06 -0.000255904 9.35482e-06 -0.000277374 9.46965e-06 -0.000306102 9.46344e-06 -0.000330268 9.60884e-06 -0.000356566 9.86969e-06 -0.000382361 9.5638e-06 -0.00041063 9.22546e-06 -0.000435358 9.32751e-06 -0.000459237 9.41241e-06 -0.000484691 8.83741e-06 -0.000510694 8.07709e-06 -0.000532684 6.94697e-06 -0.000555655 5.90464e-06 -0.000570358 4.42719e-06 -0.000587035 3.2459e-06 -0.000591822 1.35202e-06 -0.000601837 1.13817e-07 -0.000595733 -1.16426e-06 -0.000587016 -5.13131e-06 -0.000589565 -6.28367e-06 -0.000546633 -8.1733e-06 -0.000528907 -8.97182e-06 -0.000477714 -1.21843e-05 -0.000444823 -1.29207e-05 -0.000377613 -1.48302e-05 -0.000318997 -1.59243e-05 -0.000242781 -1.55618e-05 -0.000157302 -1.6403e-05 -8.44819e-05 -1.40955e-05 1.21155e-05 -1.82108e-05 7.49018e-05 -1.60139e-05 0.000171053 -1.76671e-05 0.000240746 -1.93547e-05 0.000315438 -1.90725e-05 0.000395509 -1.54035e-05 0.000472534 -1.0972e-05 0.000532597 -8.68094e-06 0.000572635 -6.22803e-06 0.000610476 -2.19839e-06 0.00064258 2.60412e-06 0.000661712 6.37941e-06 0.000665232 9.17331e-06 0.000657924 1.14753e-05 0.000644275 1.37247e-05 0.000624645 1.51082e-05 0.000597602 1.53959e-05 0.00056589 1.57549e-05 0.000535691 1.69458e-05 0.000505071 1.72196e-05 0.000467691 1.66331e-05 0.000429234 1.59286e-05 0.000393163 1.55996e-05 0.00035993 1.58482e-05 0.000327315 1.57407e-05 0.000291579 1.51391e-05 0.000256051 1.44934e-05 0.000223299 1.38482e-05 0.000191883 1.33363e-05 0.000162006 1.30131e-05 0.000135078 1.28512e-05 0.000108172 1.28036e-05 8.23426e-05 1.28744e-05 5.80508e-05 1.28906e-05 3.24321e-05 1.2896e-05 9.91623e-06 1.29837e-05 -1.62604e-05 1.31428e-05 -3.97277e-05 1.33518e-05 -6.27915e-05 1.36045e-05 -8.54149e-05 1.38784e-05 -0.000107875 1.41182e-05 -0.000130112 1.43391e-05 -0.000152302 1.44407e-05 -0.000174092 1.44681e-05 -0.000195261 1.45162e-05 -0.000215511 1.46646e-05 -0.000234635 1.48425e-05 -0.000253747 1.49858e-05 -0.000272872 1.49462e-05 -0.000291815 1.46699e-05 -0.000310618 1.42423e-05 -0.000327362 1.38077e-05 -0.000342739 1.34017e-05 -0.000356989 1.30375e-05 -0.000369533 1.23133e-05 -0.000382586 1.10019e-05 -0.000394661 9.7346e-06 -0.000401437 8.22365e-06 -0.000407327 6.65683e-06 -0.000409681 5.19902e-06 -0.000407843 2.91897e-06 -0.000407153 6.85337e-07 -0.000396221 -1.16302e-06 -0.000383846 -4.12553e-06 -0.000373071 -6.20622e-06 -0.000349587 -7.73141e-06 -0.000323281 -9.56804e-06 -0.000297106 -1.11894e-05 -0.000267018 -1.28607e-05 -0.000235112 -1.42481e-05 -0.000200138 -1.54916e-05 -0.000164069 -1.66401e-05 -0.000126624 -1.76721e-05 -8.80208e-05 -1.8588e-05 -4.86583e-05 -1.93186e-05 -1.18424e-05 -1.99448e-05 2.95517e-05 -2.03786e-05 6.91568e-05 -2.0796e-05 0.000107339 -2.09881e-05 0.000147597 -1.79267e-05 0.000194808 -1.35417e-05 0.000224721 -1.18657e-05 0.000236853 -1.00491e-05 0.00024992 -9.63335e-06 0.00025482 -9.53923e-06 0.000261409 -9.69115e-06 0.000268066 -8.91315e-06 0.000280195 -5.14223e-06 0.000292042 -3.00378e-06 0.000285718 -1.80696e-06 0.000274611 -7.13881e-07 0.000263157 -3.81746e-07 0.00025046 -1.24103e-07 0.00023708 -3.2012e-08 0.000224999 4.33625e-07 0.000214936 1.71842e-06 0.00020376 2.29622e-06 0.000187476 2.75001e-06 0.00017149 3.19895e-06 0.000155161 3.37995e-06 0.000138119 3.38897e-06 0.000121553 3.30144e-06 0.000105874 3.13724e-06 9.11521e-05 2.86541e-06 7.74237e-05 2.46398e-06 6.49051e-05 1.9031e-06 5.38188e-05 1.11788e-06 4.44053e-05 3.71509e-05 3.02906e-06 -0.000271227 4.07637e-06 -0.000313029 4.53959e-06 -0.000356265 4.95045e-06 -0.000401276 3.6575e-06 -0.000450602 2.75687e-06 -0.00049405 2.0345e-06 -0.000536923 -9.99846e-07 -0.000582466 -2.53773e-06 -0.000617449 -4.36132e-06 -0.000653524 -7.53886e-06 -0.000685086 -8.79171e-06 -0.000704895 -1.20242e-05 -0.000728229 -1.78288e-05 -0.000747173 -2.05762e-05 -0.000738761 -2.23792e-05 -0.000722709 -2.58923e-05 -0.000711621 -2.86835e-05 -0.00067968 -3.18971e-05 -0.000645921 -3.22103e-05 -0.000586997 -3.08817e-05 -0.000526223 -3.5398e-05 -0.000485486 -3.5603e-05 -0.000401498 -3.07891e-05 -0.000315869 -3.03442e-05 -0.000255633 -3.31391e-05 -0.00019007 -3.56509e-05 -0.000102873 -3.58027e-05 -1.3521e-07 -3.30727e-05 0.000116558 -2.56761e-05 0.00023121 -1.82558e-05 0.000318287 -1.38649e-05 0.000378721 -1.54012e-05 0.000433152 -1.49298e-05 0.000513624 -8.18049e-06 0.000604192 -2.34418e-06 0.000661309 4.10744e-06 0.000717188 1.01501e-05 0.000754407 1.48677e-05 0.000775777 2.09603e-05 0.000786449 2.48929e-05 0.000776396 2.81895e-05 0.000757336 2.95586e-05 0.000722644 2.96733e-05 0.000686152 2.95942e-05 0.00064669 2.83859e-05 0.000601877 2.66806e-05 0.00055893 2.47795e-05 0.000517255 2.3043e-05 0.000477291 2.11654e-05 0.000437569 1.88823e-05 0.000398448 1.66105e-05 0.000362722 1.44982e-05 0.000329768 1.27011e-05 0.000299227 1.1406e-05 0.000270042 1.06013e-05 0.000240444 9.84837e-06 0.000208476 9.11945e-06 0.000174854 8.4974e-06 0.000140812 7.89971e-06 0.000105336 7.29035e-06 7.00141e-05 6.77889e-06 3.58973e-05 6.11803e-06 1.21307e-07 5.57765e-06 -3.5269e-05 5.09522e-06 -6.91503e-05 4.50807e-06 -0.000101137 4.14054e-06 -0.000131013 3.84477e-06 -0.000159291 3.7614e-06 -0.00018646 3.62333e-06 -0.000211895 3.55238e-06 -0.000237981 3.4141e-06 -0.000260767 3.40183e-06 -0.000284622 3.59315e-06 -0.000306422 3.68463e-06 -0.000331025 4.14176e-06 -0.000352183 4.62102e-06 -0.000377767 5.00487e-06 -0.000400619 5.56269e-06 -0.000427429 5.48187e-06 -0.000455296 6.15038e-06 -0.000478801 6.49975e-06 -0.000508932 6.6645e-06 -0.000536954 6.50304e-06 -0.000568485 6.44493e-06 -0.000594288 6.50129e-06 -0.000623494 5.19433e-06 -0.000657408 4.37677e-06 -0.000673878 3.76351e-06 -0.000697733 4.8801e-06 -0.000697438 3.4631e-06 -0.000725092 2.44758e-06 -0.000721051 2.17647e-06 -0.000707045 1.77418e-06 -0.000704569 1.94132e-06 -0.000651463 4.12922e-06 -0.000616392 7.21452e-06 -0.000531849 1.41182e-05 -0.000440074 1.8047e-05 -0.000344581 2.10602e-05 -0.000242255 2.61585e-05 -0.000116147 3.11241e-05 1.47348e-05 2.6045e-05 9.37132e-05 3.35648e-05 0.000256516 2.10798e-05 0.000308401 2.20975e-05 0.000449836 1.95324e-05 0.000541588 1.30564e-05 0.000609166 1.01241e-05 0.000689818 1.19411e-05 0.000756947 1.42306e-05 0.000796972 1.4823e-05 0.000810455 1.74888e-05 0.000816673 1.90238e-05 0.000800725 2.03026e-05 0.000771906 2.12303e-05 0.000734647 2.23612e-05 0.000690791 2.31501e-05 0.000638726 2.34359e-05 0.000582755 2.20322e-05 0.000517801 2.00781e-05 0.000461351 1.78567e-05 0.000404841 1.54751e-05 0.000355201 1.27415e-05 0.000310347 1.04145e-05 0.000275193 8.92335e-06 0.000248166 7.74383e-06 0.000218343 7.25953e-06 0.000201472 6.73647e-06 0.000172593 6.87196e-06 0.000157206 6.23694e-06 0.000126623 5.75388e-06 0.000111128 5.4508e-06 8.57557e-05 5.01686e-06 6.96037e-05 4.39332e-06 4.85259e-05 4.08348e-06 3.46823e-05 4.35739e-06 1.69509e-05 5.51739e-06 4.82876e-06 6.29475e-06 -1.98073e-05 6.59462e-06 -4.02316e-05 7.49483e-06 -6.09183e-05 8.03822e-06 -8.94145e-05 9.44911e-06 -0.00011193 9.49686e-06 -0.000149913 9.74807e-06 -0.000173932 1.01864e-05 -0.00020696 1.07284e-05 -0.000237598 1.2099e-05 -0.000267112 1.29205e-05 -0.000307885 1.52835e-05 -0.000334385 1.63921e-05 -0.000388625 1.55897e-05 -0.000440202 1.42375e-05 -0.000495769 1.05126e-05 -0.000549132 1.02372e-05 -0.000560472 1.08924e-05 -0.00057108 1.39965e-05 -0.000564403 1.62385e-05 -0.000579348 1.76001e-05 -0.000584104 1.84743e-05 -0.000597881 1.90592e-05 -0.000606873 1.6894e-05 -0.000620696 1.60696e-05 -0.000612675 1.71718e-05 -0.000599808 1.4756e-05 -0.000591431 1.25528e-05 -0.000552613 1.30572e-05 -0.000498275 1.40225e-05 -0.000450362 1.59833e-05 -0.000361644 1.42438e-05 -0.000322396 1.64983e-05 -0.000219181 1.41532e-05 -0.000167006 1.5532e-05 -7.32029e-05 1.29298e-05 -7.50818e-06 1.464e-05 9.05202e-05 9.01503e-06 0.000136313 9.21902e-06 0.000224892 6.66991e-06 0.000293564 1.42647e-06 0.000351406 1.54843e-06 0.000440138 -1.36018e-07 0.000492015 -8.493e-07 0.00054962 2.15354e-07 0.000604942 1.39978e-07 0.00063696 1.21507e-06 0.000673061 2.7213e-06 0.000695943 4.77455e-06 0.000711911 7.21889e-06 0.000717979 1.00383e-05 0.00071103 1.22956e-05 0.00069947 1.4299e-05 0.000673466 1.51925e-05 0.000644006 1.61817e-05 0.000610138 1.62089e-05 0.000569339 1.59978e-05 0.000533858 1.57414e-05 0.000491294 1.57978e-05 0.000455196 1.54098e-05 0.000411476 1.4474e-05 0.000370918 1.3836e-05 0.000333828 1.3299e-05 0.000293711 1.32438e-05 0.000262069 1.26077e-05 0.000219184 1.19552e-05 0.000188377 1.14667e-05 0.000151147 1.06195e-05 0.000118231 1.00658e-05 8.8751e-05 9.3111e-06 5.64045e-05 9.18355e-06 3.37671e-05 9.10458e-06 2.70368e-06 8.6879e-06 -2.37413e-05 8.6482e-06 -4.86425e-05 8.19259e-06 -7.78714e-05 8.42128e-06 -9.77797e-05 8.49226e-06 -0.00012736 8.48373e-06 -0.000151247 8.39855e-06 -0.000178059 8.23338e-06 -0.000203819 8.38327e-06 -0.000227556 8.19137e-06 -0.000255712 8.39676e-06 -0.000277579 8.43396e-06 -0.000306139 8.42552e-06 -0.00033026 8.4905e-06 -0.000356631 8.66062e-06 -0.000382531 8.35358e-06 -0.000410323 8.0089e-06 -0.000435013 8.03933e-06 -0.000459268 7.94981e-06 -0.000484601 7.3126e-06 -0.000510057 6.5386e-06 -0.00053191 5.29257e-06 -0.000554409 4.19219e-06 -0.000569257 2.58305e-06 -0.000585426 1.2871e-06 -0.000590526 -8.03887e-07 -0.000599747 -2.31743e-06 -0.00059422 -3.47415e-06 -0.00058586 -7.76295e-06 -0.000585276 -8.96393e-06 -0.000545432 -1.16032e-05 -0.000526268 -1.28495e-05 -0.000476467 -1.64775e-05 -0.000441195 -1.80664e-05 -0.000376024 -2.06321e-05 -0.000316431 -2.22721e-05 -0.000241141 -2.22094e-05 -0.000157364 -2.33273e-05 -8.3364e-05 -2.126e-05 1.00483e-05 -2.38664e-05 7.75083e-05 -2.13611e-05 0.000168548 -2.1643e-05 0.000241028 -2.1852e-05 0.000315647 -2.05842e-05 0.000394242 -1.67084e-05 0.000468658 -1.223e-05 0.000528118 -9.41199e-06 0.000569817 -6.63484e-06 0.000607699 -2.5304e-06 0.000638475 1.90224e-06 0.00065728 5.57877e-06 0.000661556 8.33661e-06 0.000655166 1.06036e-05 0.000642008 1.26552e-05 0.000622593 1.39407e-05 0.000596317 1.42694e-05 0.000565561 1.46264e-05 0.000535334 1.55359e-05 0.000504162 1.5711e-05 0.000467516 1.51903e-05 0.000429754 1.45381e-05 0.000393815 1.42227e-05 0.000360245 1.43316e-05 0.000327206 1.41722e-05 0.000291739 1.36162e-05 0.000256607 1.30137e-05 0.000223902 1.24157e-05 0.000192481 1.19388e-05 0.000162483 1.16291e-05 0.000135388 1.14725e-05 0.000108329 1.14183e-05 8.23967e-05 1.14675e-05 5.80017e-05 1.14756e-05 3.2424e-05 1.14885e-05 9.90327e-06 1.1567e-05 -1.63388e-05 1.17156e-05 -3.98763e-05 1.19095e-05 -6.29854e-05 1.21363e-05 -8.56418e-05 1.23831e-05 -0.000108122 1.26002e-05 -0.000130329 1.27915e-05 -0.000152494 1.28883e-05 -0.000174189 1.29243e-05 -0.000195297 1.29758e-05 -0.000215563 1.31099e-05 -0.000234769 1.32758e-05 -0.000253913 1.34069e-05 -0.000273003 1.33817e-05 -0.000291789 1.31463e-05 -0.000310383 1.27978e-05 -0.000327014 1.24325e-05 -0.000342373 1.20594e-05 -0.000356616 1.17097e-05 -0.000369183 1.10544e-05 -0.00038193 9.8923e-06 -0.000393499 8.75456e-06 -0.000400299 7.37724e-06 -0.00040595 5.9472e-06 -0.000408251 4.60393e-06 -0.0004065 2.60832e-06 -0.000405157 5.0001e-07 -0.000394113 -1.19161e-06 -0.000382154 -3.7672e-06 -0.000370495 -5.6262e-06 -0.000347728 -7.05243e-06 -0.000321855 -8.69955e-06 -0.000295459 -1.01783e-05 -0.000265539 -1.16709e-05 -0.000233619 -1.29296e-05 -0.00019888 -1.40545e-05 -0.000162944 -1.50961e-05 -0.000125583 -1.60279e-05 -8.7089e-05 -1.68357e-05 -4.78505e-05 -1.75246e-05 -1.11535e-05 -1.80844e-05 3.01115e-05 -1.84646e-05 6.9537e-05 -1.88129e-05 0.000107687 -1.88373e-05 0.000147622 -1.61154e-05 0.000192086 -1.24635e-05 0.000221069 -1.08384e-05 0.000235228 -9.23421e-06 0.000248316 -8.79574e-06 0.000254382 -8.65324e-06 0.000261266 -8.71633e-06 0.000268129 -7.85628e-06 0.000279335 -4.73437e-06 0.00028892 -2.80989e-06 0.000283794 -1.66785e-06 0.000273469 -6.69733e-07 0.000262159 -3.39601e-07 0.00025013 -1.65876e-07 0.000236906 3.28094e-08 0.0002248 4.74663e-07 0.000214494 1.53102e-06 0.000202703 2.07211e-06 0.000186935 2.49562e-06 0.000171067 2.8826e-06 0.000154774 3.04931e-06 0.000137953 3.06203e-06 0.00012154 2.98312e-06 0.000105953 2.83025e-06 9.1305e-05 2.57921e-06 7.76747e-05 2.20964e-06 6.52747e-05 1.69339e-06 5.4335e-05 9.76679e-07 4.5122e-05 3.81276e-05 2.5915e-06 -0.000273818 3.63482e-06 -0.000314073 4.11125e-06 -0.000356741 4.42786e-06 -0.000401593 3.39044e-06 -0.000449564 2.57753e-06 -0.000493238 1.7641e-06 -0.00053611 -6.82835e-07 -0.000580019 -2.08804e-06 -0.000616044 -3.88791e-06 -0.000651724 -6.61779e-06 -0.000682356 -7.98524e-06 -0.000703527 -1.08953e-05 -0.000725319 -1.58216e-05 -0.000742247 -1.84864e-05 -0.000736096 -2.02102e-05 -0.000720986 -2.33152e-05 -0.000708517 -2.57767e-05 -0.000677219 -2.85584e-05 -0.00064314 -2.89574e-05 -0.000586598 -2.80532e-05 -0.000527127 -3.16099e-05 -0.00048193 -3.16773e-05 -0.000401431 -2.7957e-05 -0.00031959 -2.75497e-05 -0.00025604 -2.97858e-05 -0.000187834 -3.18621e-05 -0.000100796 -3.20312e-05 3.3805e-08 -2.95653e-05 0.000114092 -2.33836e-05 0.000225028 -1.70662e-05 0.000311969 -1.35262e-05 0.00037518 -1.43781e-05 0.000434004 -1.35946e-05 0.00051284 -7.86883e-06 0.000598467 -2.7169e-06 0.000656157 3.96366e-06 0.000710508 9.21519e-06 0.000749155 1.37339e-05 0.000771259 1.90339e-05 0.000781149 2.26439e-05 0.000772786 2.56082e-05 0.000754371 2.68226e-05 0.000721429 2.6994e-05 0.00068598 2.68717e-05 0.000646813 2.57654e-05 0.000602984 2.4229e-05 0.000560466 2.25181e-05 0.000518966 2.09048e-05 0.000478905 1.91705e-05 0.000439303 1.71159e-05 0.000400503 1.50721e-05 0.000364766 1.31726e-05 0.000331668 1.15608e-05 0.000300839 1.03908e-05 0.000271212 9.63317e-06 0.000241201 8.95272e-06 0.000209156 8.29332e-06 0.000175513 7.73537e-06 0.00014137 7.19761e-06 0.000105873 6.67948e-06 7.05323e-05 6.23254e-06 3.63443e-05 5.66558e-06 6.88276e-07 5.18096e-06 -3.47844e-05 4.74136e-06 -6.87107e-05 4.18218e-06 -0.000100578 3.86196e-06 -0.000130693 3.64629e-06 -0.000159076 3.53304e-06 -0.000186347 3.40653e-06 -0.000211768 3.34636e-06 -0.00023792 3.20596e-06 -0.000260626 3.17511e-06 -0.000284591 3.37183e-06 -0.000306619 3.42457e-06 -0.000331078 3.89968e-06 -0.000352658 4.33278e-06 -0.0003782 4.60908e-06 -0.000400895 5.10744e-06 -0.000427927 4.99617e-06 -0.000455185 5.49117e-06 -0.000479296 5.68852e-06 -0.000509129 5.61204e-06 -0.000536877 5.21175e-06 -0.000568085 4.95913e-06 -0.000594036 4.56318e-06 -0.000623098 2.99229e-06 -0.000655838 1.85976e-06 -0.000672746 7.87552e-07 -0.000696661 8.1795e-07 -0.000697469 -8.85431e-07 -0.000723389 -3.25185e-06 -0.000718685 -3.71579e-06 -0.000706581 -6.58572e-06 -0.000701699 -8.81316e-06 -0.000649236 -9.981e-06 -0.000615224 -1.09195e-05 -0.000530911 -8.31475e-06 -0.000442679 -7.01094e-06 -0.000345885 -5.92465e-06 -0.000243342 -2.56949e-06 -0.000119502 -4.64838e-07 1.26303e-05 -1.11125e-06 9.43599e-05 1.97061e-06 0.000253435 -2.09499e-06 0.000312467 -1.2735e-06 0.000449015 -3.80643e-07 0.000540695 -2.24175e-06 0.000611028 -1.99301e-06 0.00068957 1.50565e-06 0.000753449 5.49429e-06 0.000792984 8.14235e-06 0.000807807 1.18321e-05 0.000812984 1.44708e-05 0.000798087 1.64936e-05 0.000769883 1.79842e-05 0.000733158 1.94844e-05 0.000689291 2.0478e-05 0.000637733 2.09879e-05 0.000582246 1.98241e-05 0.000518965 1.81627e-05 0.000463013 1.62076e-05 0.000406797 1.40426e-05 0.000357366 1.1624e-05 0.000312766 9.54652e-06 0.000277271 8.24292e-06 0.00024947 7.12079e-06 0.000219465 6.74726e-06 0.000201846 6.23757e-06 0.000173102 6.36034e-06 0.000157084 5.77282e-06 0.00012721 5.4076e-06 0.000111494 5.06326e-06 8.61001e-05 4.67869e-06 6.99883e-05 4.11011e-06 4.90945e-05 3.8932e-06 3.48992e-05 4.0813e-06 1.67628e-05 5.06625e-06 3.84381e-06 5.70887e-06 -2.045e-05 5.98904e-06 -4.05118e-05 6.81531e-06 -6.17446e-05 7.21888e-06 -8.98181e-05 8.4025e-06 -0.000113114 8.383e-06 -0.000149893 8.59921e-06 -0.000174148 8.92945e-06 -0.00020729 9.35725e-06 -0.000238025 1.04479e-05 -0.000268203 1.1207e-05 -0.000308644 1.28705e-05 -0.000336048 1.32428e-05 -0.000388997 1.18148e-05 -0.000438774 9.90159e-06 -0.000493855 6.25257e-06 -0.000545483 5.19246e-06 -0.000559412 5.47715e-06 -0.000571365 7.76204e-06 -0.000566688 9.69076e-06 -0.000581277 1.05078e-05 -0.000584921 1.09855e-05 -0.000598359 1.06336e-05 -0.000606521 8.26708e-06 -0.000618329 6.51825e-06 -0.000610926 5.72865e-06 -0.000599019 2.60605e-06 -0.000588308 3.60813e-07 -0.000550368 -1.50151e-06 -0.000496412 -9.40345e-07 -0.000450923 -8.59255e-07 -0.000361725 -1.52132e-06 -0.000321734 -1.10612e-06 -0.000219596 -1.51874e-06 -0.000166593 -1.63678e-06 -7.30846e-05 -2.61517e-06 -6.52959e-06 -1.48264e-06 8.93879e-05 -4.62015e-06 0.00013945 -4.16244e-06 0.000224435 -5.28284e-06 0.000294685 -8.99262e-06 0.000355116 -6.88834e-06 0.000438034 -7.51198e-06 0.000492639 -6.8228e-06 0.000548931 -4.78381e-06 0.000602903 -3.82606e-06 0.000636003 -1.74565e-06 0.000670981 4.13304e-07 0.000693784 2.93635e-06 0.000709388 5.67381e-06 0.000715241 8.43069e-06 0.000708273 1.07535e-05 0.000697147 1.26874e-05 0.000671532 1.36736e-05 0.00064302 1.46261e-05 0.000609185 1.46252e-05 0.00056934 1.45685e-05 0.000533915 1.43047e-05 0.000491557 1.43668e-05 0.000455134 1.39708e-05 0.000411872 1.31801e-05 0.000371709 1.26668e-05 0.000334341 1.20654e-05 0.000294313 1.20397e-05 0.000262095 1.13857e-05 0.000219838 1.08926e-05 0.00018887 1.04336e-05 0.000151606 9.62804e-06 0.000119037 9.18641e-06 8.91926e-05 8.4719e-06 5.7119e-05 8.40709e-06 3.38319e-05 8.2851e-06 2.82568e-06 7.90716e-06 -2.33633e-05 7.90763e-06 -4.86429e-05 7.4584e-06 -7.74222e-05 7.73683e-06 -9.80581e-05 7.70839e-06 -0.000127331 7.73184e-06 -0.00015127 7.65493e-06 -0.000177982 7.47911e-06 -0.000203643 7.62486e-06 -0.000227701 7.39837e-06 -0.000255485 7.62044e-06 -0.000277801 7.55776e-06 -0.000306076 7.57379e-06 -0.000330276 7.59531e-06 -0.000356653 7.70027e-06 -0.000382636 7.33582e-06 -0.000409959 7.05564e-06 -0.000434733 7.0237e-06 -0.000459236 6.84443e-06 -0.000484422 6.19173e-06 -0.000509404 5.45155e-06 -0.00053117 4.22818e-06 -0.000553186 3.1373e-06 -0.000568166 1.51431e-06 -0.000583803 2.95792e-07 -0.000589307 -1.81286e-06 -0.000597638 -3.36442e-06 -0.000592668 -4.74187e-06 -0.000584482 -8.80758e-06 -0.00058121 -1.00105e-05 -0.000544229 -1.27843e-05 -0.000523494 -1.41116e-05 -0.00047514 -1.75247e-05 -0.000437782 -1.92203e-05 -0.000374328 -2.16834e-05 -0.000313968 -2.33047e-05 -0.000239519 -2.33622e-05 -0.000157307 -2.42505e-05 -8.24757e-05 -2.26972e-05 8.49504e-06 -2.4139e-05 7.89502e-05 -2.21384e-05 0.000166547 -2.19012e-05 0.000240791 -2.16413e-05 0.000315387 -2.00449e-05 0.000392645 -1.62974e-05 0.000464911 -1.20625e-05 0.000523884 -9.08886e-06 0.000566843 -6.10498e-06 0.000604715 -2.25582e-06 0.000634626 1.781e-06 0.000653243 5.1578e-06 0.000658179 7.70536e-06 0.000652619 9.76798e-06 0.000639945 1.15339e-05 0.000620827 1.26552e-05 0.000595196 1.29524e-05 0.000565264 1.3283e-05 0.000535003 1.39507e-05 0.000503494 1.4072e-05 0.000467394 1.36109e-05 0.000430216 1.30353e-05 0.000394391 1.27591e-05 0.000360521 1.27832e-05 0.000327182 1.2635e-05 0.000291887 1.21551e-05 0.000257087 1.16319e-05 0.000224425 1.11177e-05 0.000192995 1.06991e-05 0.000162902 1.04313e-05 0.000135656 1.02942e-05 0.000108466 1.02318e-05 8.24591e-05 1.02731e-05 5.79604e-05 1.02827e-05 3.24144e-05 1.03027e-05 9.88321e-06 1.03777e-05 -1.64137e-05 1.05058e-05 -4.00044e-05 1.06727e-05 -6.31524e-05 1.08673e-05 -8.58363e-05 1.10785e-05 -0.000108333 1.12673e-05 -0.000130518 1.14281e-05 -0.000152654 1.15093e-05 -0.000174271 1.15436e-05 -0.000195331 1.15859e-05 -0.000215605 1.16975e-05 -0.00023488 1.18298e-05 -0.000254046 1.19255e-05 -0.000273099 1.1894e-05 -0.000291758 1.16803e-05 -0.000310169 1.13766e-05 -0.00032671 1.10547e-05 -0.000342051 1.07261e-05 -0.000356288 1.03894e-05 -0.000368846 9.80429e-06 -0.000381345 8.79754e-06 -0.000392493 7.7789e-06 -0.00039928 6.54281e-06 -0.000404714 5.2506e-06 -0.000406959 4.03175e-06 -0.000405281 2.27043e-06 -0.000403396 3.68917e-07 -0.000392211 -1.18567e-06 -0.000380599 -3.41946e-06 -0.000368261 -5.05744e-06 -0.00034609 -6.36994e-06 -0.000320542 -7.83441e-06 -0.000293995 -9.16595e-06 -0.000264208 -1.04877e-05 -0.000232297 -1.16162e-05 -0.000197751 -1.2622e-05 -0.000161938 -1.35552e-05 -0.000124649 -1.43872e-05 -8.62571e-05 -1.50909e-05 -4.71468e-05 -1.57401e-05 -1.05042e-05 -1.62325e-05 3.06038e-05 -1.65639e-05 6.98684e-05 -1.68512e-05 0.000107974 -1.67567e-05 0.000147527 -1.43704e-05 0.000189699 -1.13239e-05 0.000218022 -9.79554e-06 0.0002337 -8.38643e-06 0.000246906 -7.94386e-06 0.000253939 -7.77029e-06 0.000261092 -7.75991e-06 0.000268119 -6.88475e-06 0.00027846 -4.28719e-06 0.000286323 -2.54265e-06 0.000282049 -1.55423e-06 0.000272481 -6.34597e-07 0.000261239 -2.91437e-07 0.000249786 -1.85831e-07 0.0002368 7.93615e-08 0.000224535 4.87598e-07 0.000214085 1.35867e-06 0.000201832 1.85426e-06 0.000186439 2.24098e-06 0.00017068 2.57409e-06 0.000154441 2.72475e-06 0.000137802 2.73903e-06 0.000121526 2.66818e-06 0.000106024 2.52776e-06 9.14454e-05 2.29876e-06 7.79037e-05 1.96268e-06 6.56108e-05 1.49382e-06 5.48039e-05 8.48763e-07 4.57671e-05 3.89763e-05 2.22036e-06 -0.000276039 3.21992e-06 -0.000315072 3.69007e-06 -0.000357211 3.95181e-06 -0.000401855 3.11814e-06 -0.000448731 2.49431e-06 -0.000492614 1.34987e-06 -0.000534965 -4.0741e-07 -0.000578262 -1.57365e-06 -0.000614878 -3.38942e-06 -0.000649908 -5.73042e-06 -0.000680015 -7.12753e-06 -0.00070213 -9.71634e-06 -0.000722731 -1.39045e-05 -0.000738059 -1.63963e-05 -0.000733604 -1.8027e-05 -0.000719355 -2.07506e-05 -0.000705793 -2.2898e-05 -0.000675071 -2.52936e-05 -0.000640744 -2.57246e-05 -0.000586167 -2.51214e-05 -0.00052773 -2.79118e-05 -0.000479139 -2.78881e-05 -0.000401455 -2.50149e-05 -0.000322463 -2.46512e-05 -0.000256404 -2.64328e-05 -0.000186052 -2.81364e-05 -9.90928e-05 -2.82905e-05 1.87867e-07 -2.60913e-05 0.000111893 -2.09062e-05 0.000219843 -1.55297e-05 0.000306593 -1.25231e-05 0.000372174 -1.2785e-05 0.000434266 -1.18955e-05 0.000511951 -6.88784e-06 0.000593459 -2.67065e-06 0.00065194 3.81543e-06 0.000704022 8.34917e-06 0.000744621 1.25671e-05 0.000767041 1.71677e-05 0.000776548 2.0436e-05 0.000769518 2.30651e-05 0.000751742 2.41335e-05 0.000720361 2.43252e-05 0.000685789 2.41668e-05 0.000646971 2.31585e-05 0.000603992 2.17785e-05 0.000561846 2.02448e-05 0.0005205 1.87623e-05 0.000480387 1.71787e-05 0.000440887 1.53459e-05 0.000402336 1.35246e-05 0.000366588 1.18333e-05 0.000333359 1.04026e-05 0.000302269 9.35865e-06 0.000272256 8.66626e-06 0.000241894 8.04374e-06 0.000209779 7.46405e-06 0.000176093 6.96693e-06 0.000141867 6.48633e-06 0.000106354 6.06718e-06 7.09515e-05 5.68279e-06 3.67287e-05 5.19464e-06 1.17644e-06 4.75243e-06 -3.43422e-05 4.32567e-06 -6.82839e-05 3.95296e-06 -0.000100205 3.72102e-06 -0.000130461 3.46348e-06 -0.000158818 3.34094e-06 -0.000186224 3.27795e-06 -0.000211705 3.18439e-06 -0.000237827 3.09954e-06 -0.000260542 3.15094e-06 -0.000284642 3.30534e-06 -0.000306774 3.38707e-06 -0.000331159 3.85632e-06 -0.000353127 4.24736e-06 -0.000378591 4.55587e-06 -0.000401204 4.95828e-06 -0.000428329 4.86316e-06 -0.00045509 5.26414e-06 -0.000479697 5.36134e-06 -0.000509226 5.22866e-06 -0.000536745 4.78258e-06 -0.000567639 4.3389e-06 -0.000593592 3.69472e-06 -0.000622454 1.93212e-06 -0.000654075 6.2136e-07 -0.000671435 -9.95227e-07 -0.000695044 -1.0142e-06 -0.00069745 -3.38434e-06 -0.000721019 -5.91561e-06 -0.000716154 -6.94482e-06 -0.000705552 -1.08908e-05 -0.000697753 -1.30585e-05 -0.000647068 -1.63391e-05 -0.000611943 -1.85723e-05 -0.000528678 -1.84549e-05 -0.000442796 -1.9063e-05 -0.000345277 -1.92967e-05 -0.000243108 -1.8404e-05 -0.000120395 -1.45286e-05 8.75513e-06 -1.75543e-05 9.73858e-05 -1.15798e-05 0.000247461 -1.5935e-05 0.000316823 -1.24403e-05 0.000445521 -1.01271e-05 0.000538383 -1.00504e-05 0.000610951 -7.90029e-06 0.00068742 -3.22945e-06 0.000748778 1.49861e-06 0.000788256 5.02037e-06 0.000804286 8.98599e-06 0.000809019 1.19902e-05 0.000795083 1.4249e-05 0.000767625 1.59214e-05 0.000731486 1.74709e-05 0.000687742 1.8418e-05 0.000636786 1.88942e-05 0.00058177 1.79057e-05 0.000519954 1.65493e-05 0.00046437 1.48182e-05 0.000408528 1.28801e-05 0.000359304 1.07529e-05 0.000314893 8.92904e-06 0.000279095 7.78668e-06 0.000250612 6.7446e-06 0.000220507 6.47413e-06 0.000202116 5.98662e-06 0.00017359 6.09616e-06 0.000156974 5.53179e-06 0.000127775 5.29673e-06 0.000111729 4.90499e-06 8.64919e-05 4.57585e-06 7.03175e-05 4.07366e-06 4.95967e-05 3.95058e-06 3.50223e-05 4.08332e-06 1.66301e-05 4.95941e-06 2.96773e-06 5.48576e-06 -2.09763e-05 5.69031e-06 -4.07163e-05 6.47222e-06 -6.25265e-05 6.86266e-06 -9.02086e-05 7.80844e-06 -0.000114059 7.65177e-06 -0.000149737 7.88905e-06 -0.000174386 8.17041e-06 -0.000207572 8.53699e-06 -0.000238392 9.47079e-06 -0.000269137 1.004e-05 -0.000309214 1.14972e-05 -0.000337505 1.13813e-05 -0.000388881 9.93523e-06 -0.000437328 7.68275e-06 -0.000491603 3.8564e-06 -0.000541657 2.16178e-06 -0.000557717 2.23129e-06 -0.000571434 3.74846e-06 -0.000568205 4.95377e-06 -0.000582483 5.68289e-06 -0.00058565 6.18915e-06 -0.000598865 5.58633e-06 -0.000605918 3.50811e-06 -0.000616251 1.89154e-06 -0.000609309 6.4601e-08 -0.000597192 -3.02846e-06 -0.000585215 -6.32839e-06 -0.000547068 -7.66834e-06 -0.000495072 -9.49142e-06 -0.0004491 -9.08742e-06 -0.000362129 -1.0815e-05 -0.000320006 -9.79276e-06 -0.000220618 -1.1292e-05 -0.000165094 -1.02623e-05 -7.41142e-05 -1.18306e-05 -4.96105e-06 -9.49743e-06 8.70549e-05 -1.23723e-05 0.000142325 -1.12052e-05 0.000223268 -1.15694e-05 0.000295049 -1.35817e-05 0.000357129 -1.10902e-05 0.000435543 -1.05855e-05 0.000492135 -9.15209e-06 0.000547498 -6.64211e-06 0.000600394 -5.01183e-06 0.000634373 -2.74652e-06 0.000668716 -3.13733e-07 0.000691351 2.2683e-06 0.000706806 4.96893e-06 0.000712541 7.47263e-06 0.000705769 9.69849e-06 0.000694922 1.14292e-05 0.000669802 1.23926e-05 0.000642056 1.32539e-05 0.000608324 1.32241e-05 0.00056937 1.32326e-05 0.000533907 1.29286e-05 0.000491862 1.29515e-05 0.000455111 1.25364e-05 0.000412287 1.18742e-05 0.000372371 1.14478e-05 0.000334768 1.08638e-05 0.000294897 1.08566e-05 0.000262102 1.02051e-05 0.000220489 9.77162e-06 0.000189304 9.32992e-06 0.000152048 8.65159e-06 0.000119715 8.28114e-06 8.95631e-05 7.61919e-06 5.77809e-05 7.56687e-06 3.38842e-05 7.41737e-06 2.97518e-06 7.11481e-06 -2.30608e-05 7.13035e-06 -4.86585e-05 6.70471e-06 -7.69965e-05 6.96078e-06 -9.83142e-05 6.90555e-06 -0.000127276 6.94712e-06 -0.000151312 6.87167e-06 -0.000177906 6.70657e-06 -0.000203478 6.84743e-06 -0.000227842 6.62308e-06 -0.000255261 6.81603e-06 -0.000277994 6.74675e-06 -0.000306007 6.77262e-06 -0.000330302 6.76362e-06 -0.000356644 6.83189e-06 -0.000382704 6.51071e-06 -0.000409638 6.28267e-06 -0.000434505 6.19195e-06 -0.000459145 6.01055e-06 -0.000484241 5.39159e-06 -0.000508785 4.72552e-06 -0.000530504 3.57219e-06 -0.000552033 2.56523e-06 -0.00056716 1.05138e-06 -0.000582289 -6.35602e-08 -0.000588193 -2.18584e-06 -0.000595516 -3.69045e-06 -0.000591164 -5.07315e-06 -0.0005831 -9.04578e-06 -0.000577238 -1.0155e-05 -0.00054312 -1.3106e-05 -0.000520543 -1.43294e-05 -0.000473917 -1.75642e-05 -0.000434547 -1.90754e-05 -0.000372817 -2.13187e-05 -0.000311725 -2.27626e-05 -0.000238075 -2.28226e-05 -0.000157247 -2.366e-05 -8.16382e-05 -2.22977e-05 7.13273e-06 -2.3178e-05 7.98306e-05 -2.15661e-05 0.000164935 -2.09715e-05 0.000240197 -2.02459e-05 0.000314661 -1.83322e-05 0.000390732 -1.47934e-05 0.000461372 -1.08864e-05 0.000519977 -8.00054e-06 0.000563957 -5.10696e-06 0.000601821 -1.68441e-06 0.000631203 1.88652e-06 0.000649672 4.87836e-06 0.000655187 7.15756e-06 0.000650339 8.98949e-06 0.000638113 1.05086e-05 0.000619308 1.14853e-05 0.000594219 1.17794e-05 0.00056497 1.20815e-05 0.000534701 1.26048e-05 0.000502971 1.26812e-05 0.000467318 1.23036e-05 0.000430593 1.18035e-05 0.000394891 1.15474e-05 0.000360778 1.15145e-05 0.000327215 1.13488e-05 0.000292053 1.0914e-05 0.000257521 1.04355e-05 0.000224903 9.95956e-06 0.000193471 9.56576e-06 0.000163296 9.29987e-06 0.000135921 9.14972e-06 0.000108616 9.06495e-06 8.25439e-05 9.06988e-06 5.79554e-05 9.05322e-06 3.24311e-05 9.06047e-06 9.87596e-06 9.10584e-06 -1.64591e-05 9.19973e-06 -4.00983e-05 9.32632e-06 -6.3279e-05 9.48082e-06 -8.59908e-05 9.65157e-06 -0.000108504 9.80472e-06 -0.000130671 9.93609e-06 -0.000152786 1.00061e-05 -0.000174341 1.00355e-05 -0.00019536 1.00756e-05 -0.000215645 1.01772e-05 -0.000234982 1.03006e-05 -0.000254169 1.03907e-05 -0.000273189 1.03744e-05 -0.000291741 1.01971e-05 -0.000309992 9.9457e-06 -0.000326459 9.67712e-06 -0.000341783 9.38918e-06 -0.000356 9.08364e-06 -0.000368541 8.56671e-06 -0.000380828 7.70371e-06 -0.00039163 6.79575e-06 -0.000398372 5.70168e-06 -0.00040362 4.54811e-06 -0.000405805 3.48037e-06 -0.000404213 1.84316e-06 -0.000401759 2.98509e-07 -0.000390667 -1.16848e-06 -0.000379132 -3.08124e-06 -0.000366349 -4.4969e-06 -0.000344674 -5.68354e-06 -0.000319356 -6.9708e-06 -0.000292708 -8.15205e-06 -0.000263026 -9.30892e-06 -0.00023114 -1.03059e-05 -0.000196754 -1.11918e-05 -0.000161052 -1.20136e-05 -0.000123828 -1.27461e-05 -8.55245e-05 -1.33623e-05 -4.65306e-05 -1.39585e-05 -9.90812e-06 -1.43884e-05 3.10337e-05 -1.4676e-05 7.0156e-05 -1.49096e-05 0.000108208 -1.47376e-05 0.000147355 -1.26751e-05 0.000187637 -1.01382e-05 0.000215485 -8.73854e-06 0.0002323 -7.51143e-06 0.000245679 -7.07952e-06 0.000253507 -6.88972e-06 0.000260903 -6.82516e-06 0.000268054 -5.97897e-06 0.000277613 -3.81185e-06 0.000284156 -2.24669e-06 0.000280484 -1.40496e-06 0.000271639 -6.5274e-07 0.000260487 -2.63184e-07 0.000249397 -1.49364e-07 0.000236686 9.81394e-08 0.000224287 4.79158e-07 0.000213704 1.19723e-06 0.000201114 1.64159e-06 0.000185995 1.98706e-06 0.000170335 2.2721e-06 0.000154156 2.40553e-06 0.000137669 2.41967e-06 0.000121512 2.35641e-06 0.000106087 2.22937e-06 9.15724e-05 2.02351e-06 7.81096e-05 1.72238e-06 6.59119e-05 1.30319e-06 5.52231e-05 7.31605e-07 4.63387e-05 3.97079e-05 1.90236e-06 -0.000277941 2.82956e-06 -0.000316 3.27818e-06 -0.00035766 3.51541e-06 -0.000402092 2.82974e-06 -0.000448045 2.3405e-06 -0.000492125 1.04548e-06 -0.00053367 -4.41735e-08 -0.000577172 -1.13509e-06 -0.000613787 -2.88636e-06 -0.000648157 -4.87137e-06 -0.00067803 -6.22866e-06 -0.000700773 -8.49521e-06 -0.000720464 -1.20571e-05 -0.000734497 -1.43144e-05 -0.000731347 -1.58373e-05 -0.000717832 -1.81887e-05 -0.000703442 -2.00427e-05 -0.000673217 -2.20803e-05 -0.000638707 -2.25057e-05 -0.000585742 -2.21114e-05 -0.000528124 -2.42862e-05 -0.000476964 -2.42074e-05 -0.000401534 -2.19951e-05 -0.000324675 -2.16744e-05 -0.000256725 -2.30803e-05 -0.000184646 -2.44592e-05 -9.77139e-05 -2.4598e-05 3.26638e-07 -2.26911e-05 0.000109986 -1.83589e-05 0.000215511 -1.38257e-05 0.00030206 -1.12296e-05 0.000369578 -1.12172e-05 0.000434253 -1.01658e-05 0.0005109 -5.96342e-06 0.000589257 -2.25433e-06 0.000648231 3.44702e-06 0.00069832 7.54714e-06 0.000740521 1.13944e-05 0.000763194 1.53636e-05 0.000772579 1.82739e-05 0.000766608 2.05675e-05 0.000749449 2.14916e-05 0.000719437 2.16756e-05 0.000685605 2.14874e-05 0.00064716 2.0573e-05 0.000604907 1.93398e-05 0.00056308 1.79736e-05 0.000521866 1.66271e-05 0.000481734 1.51977e-05 0.000442317 1.35774e-05 0.000403956 1.19716e-05 0.000368194 1.04889e-05 0.000334842 9.23877e-06 0.00030352 8.31237e-06 0.000273183 7.67998e-06 0.000242526 7.147e-06 0.000210312 6.64347e-06 0.000176596 6.23184e-06 0.000142279 5.83496e-06 0.000106751 5.44726e-06 7.13392e-05 5.12522e-06 3.70507e-05 4.69945e-06 1.60221e-06 4.38666e-06 -3.40294e-05 4.00327e-06 -6.79005e-05 3.70993e-06 -9.99117e-05 3.47598e-06 -0.000130227 3.26853e-06 -0.000158611 3.09812e-06 -0.000186054 3.0632e-06 -0.00021167 3.00283e-06 -0.000237767 2.99859e-06 -0.000260537 3.04041e-06 -0.000284684 3.22088e-06 -0.000306954 3.3411e-06 -0.00033128 3.77541e-06 -0.000353562 4.12994e-06 -0.000378946 4.48334e-06 -0.000401557 4.83633e-06 -0.000428682 4.79904e-06 -0.000455052 5.16612e-06 -0.000480064 5.16645e-06 -0.000509227 4.96038e-06 -0.000536538 4.50645e-06 -0.000567185 4.02315e-06 -0.000593109 3.32792e-06 -0.000621758 1.52195e-06 -0.000652269 1.99434e-07 -0.000670113 -1.63514e-06 -0.00069321 -1.91698e-06 -0.000697168 -4.63511e-06 -0.0007183 -7.04176e-06 -0.000713747 -8.68255e-06 -0.000703911 -1.27438e-05 -0.000693692 -1.49389e-05 -0.000644873 -1.8586e-05 -0.000608296 -2.10228e-05 -0.000526241 -2.18558e-05 -0.000441963 -2.30472e-05 -0.000344085 -2.41261e-05 -0.000242029 -2.42338e-05 -0.000120287 -2.0804e-05 5.32547e-06 -2.35469e-05 0.000100129 -1.78349e-05 0.000241749 -2.07712e-05 0.000319759 -1.69383e-05 0.000441688 -1.39914e-05 0.000535436 -1.24905e-05 0.000609451 -9.50635e-06 0.000684437 -4.69805e-06 0.00074397 3.27161e-08 0.000783526 3.76832e-06 0.000800551 7.60215e-06 0.000805186 1.05655e-05 0.000792121 1.27501e-05 0.000765441 1.43975e-05 0.000729839 1.58307e-05 0.00068631 1.66788e-05 0.000635939 1.71315e-05 0.000581318 1.62583e-05 0.000520827 1.51086e-05 0.00046552 1.35524e-05 0.000410085 1.17581e-05 0.000361099 9.84705e-06 0.000316805 8.24673e-06 0.000280695 7.25236e-06 0.000251607 6.27741e-06 0.000221482 6.08039e-06 0.000202313 5.62009e-06 0.00017405 5.73906e-06 0.000156855 5.21247e-06 0.000128301 5.06401e-06 0.000111877 4.64642e-06 8.69095e-05 4.3823e-06 7.05816e-05 3.9572e-06 5.00218e-05 3.92206e-06 3.50574e-05 3.96715e-06 1.6585e-05 4.7433e-06 2.19158e-06 5.16796e-06 -2.1401e-05 5.23637e-06 -4.07847e-05 5.94769e-06 -6.32379e-05 6.46514e-06 -9.0726e-05 7.28736e-06 -0.000114882 6.99769e-06 -0.000149447 7.21676e-06 -0.000174605 7.45258e-06 -0.000207807 7.71138e-06 -0.000238651 8.52083e-06 -0.000269946 8.95753e-06 -0.00030965 1.04294e-05 -0.000338977 1.03735e-05 -0.000388825 9.07704e-06 -0.000436032 6.66749e-06 -0.000489193 2.78009e-06 -0.00053777 8.86853e-07 -0.000555824 7.70565e-07 -0.000571318 1.87067e-06 -0.000569305 2.50979e-06 -0.000583122 3.12154e-06 -0.000586262 3.32131e-06 -0.000599065 2.67372e-06 -0.000605271 6.94876e-07 -0.000614272 -1.02012e-06 -0.000607594 -2.44736e-06 -0.000595764 -5.77109e-06 -0.000581891 -8.76807e-06 -0.000544071 -1.0225e-05 -0.000493615 -1.25645e-05 -0.000446761 -1.21791e-05 -0.000362514 -1.43338e-05 -0.000317851 -1.33968e-05 -0.000221555 -1.5008e-05 -0.000163483 -1.40642e-05 -7.50578e-05 -1.51464e-05 -3.87868e-06 -1.28205e-05 8.47291e-05 -1.46329e-05 0.000144138 -1.35062e-05 0.000222141 -1.32293e-05 0.000294773 -1.40202e-05 0.00035792 -1.1786e-05 0.000433309 -1.07531e-05 0.000491102 -9.1534e-06 0.000545898 -6.67235e-06 0.000597913 -4.86803e-06 0.000632569 -2.64445e-06 0.000666492 -2.62603e-07 0.00068897 2.15711e-06 0.000704387 4.67984e-06 0.000710018 6.88012e-06 0.000703569 8.90542e-06 0.000692896 1.04125e-05 0.000668295 1.12814e-05 0.000641187 1.20176e-05 0.000607588 1.19418e-05 0.000569446 1.19885e-05 0.00053386 1.16681e-05 0.000492182 1.1652e-05 0.000455127 1.1272e-05 0.000412667 1.06763e-05 0.000372967 1.02729e-05 0.000335171 9.72078e-06 0.000295449 9.70357e-06 0.00026212 9.10532e-06 0.000221088 8.79236e-06 0.000189616 8.30186e-06 0.000152538 7.74155e-06 0.000120276 7.41918e-06 8.98855e-05 6.84117e-06 5.8359e-05 6.82868e-06 3.38967e-05 6.61193e-06 3.19192e-06 6.40034e-06 -2.28492e-05 6.43173e-06 -4.86899e-05 6.07868e-06 -7.66435e-05 6.33905e-06 -9.85746e-05 6.20064e-06 -0.000127138 6.26765e-06 -0.000151379 6.21476e-06 -0.000177854 6.08518e-06 -0.000203348 6.1987e-06 -0.000227956 5.9746e-06 -0.000255037 6.17163e-06 -0.000278191 6.03513e-06 -0.000305871 6.07292e-06 -0.00033034 6.06547e-06 -0.000356637 6.06527e-06 -0.000382704 5.75365e-06 -0.000409326 5.56741e-06 -0.000434319 5.46682e-06 -0.000459045 5.26438e-06 -0.000484038 4.69506e-06 -0.000508216 4.14517e-06 -0.000529954 3.15897e-06 -0.000551046 2.32014e-06 -0.000566321 9.75485e-07 -0.000580944 -3.65492e-08 -0.000587181 -1.93957e-06 -0.000593613 -3.32137e-06 -0.000589782 -4.47691e-06 -0.000581944 -7.97564e-06 -0.000573739 -8.9479e-06 -0.000542148 -1.18438e-05 -0.000517647 -1.30003e-05 -0.00047276 -1.60051e-05 -0.000431542 -1.74113e-05 -0.000371411 -1.94836e-05 -0.000309653 -2.07643e-05 -0.000236795 -2.08365e-05 -0.000157174 -2.15863e-05 -8.08883e-05 -2.03038e-05 5.85027e-06 -2.08966e-05 8.04235e-05 -1.94621e-05 0.000163501 -1.87123e-05 0.000239447 -1.79055e-05 0.000313854 -1.60393e-05 0.000388865 -1.291e-05 0.000458243 -9.44697e-06 0.000516514 -6.77616e-06 0.000561287 -4.12104e-06 0.000599166 -1.09357e-06 0.000628176 2.02686e-06 0.000646551 4.6586e-06 0.000652555 6.66697e-06 0.000648331 8.26496e-06 0.000636515 9.55679e-06 0.000618016 1.03646e-05 0.000593411 1.0627e-05 0.000564708 1.08575e-05 0.00053447 1.12292e-05 0.000502599 1.12396e-05 0.000467308 1.08798e-05 0.000430953 1.04168e-05 0.000395354 1.01577e-05 0.000361037 1.00687e-05 0.000327304 9.87579e-06 0.000292246 9.47776e-06 0.00025792 9.04719e-06 0.000225334 8.62542e-06 0.000193893 8.26982e-06 0.000163651 8.03054e-06 0.000136161 7.88982e-06 0.000108757 7.79856e-06 8.26352e-05 7.78961e-06 5.79644e-05 7.76976e-06 3.24509e-05 7.7799e-06 9.86582e-06 7.81537e-06 -1.64946e-05 7.88908e-06 -4.0172e-05 7.99287e-06 -6.33827e-05 8.11843e-06 -8.61164e-05 8.25656e-06 -0.000108642 8.38204e-06 -0.000130796 8.48641e-06 -0.00015289 8.54145e-06 -0.000174396 8.56939e-06 -0.000195388 8.60534e-06 -0.000215681 8.69024e-06 -0.000235067 8.79205e-06 -0.000254271 8.86497e-06 -0.000273262 8.85637e-06 -0.000291733 8.70897e-06 -0.000309844 8.50623e-06 -0.000326256 8.28896e-06 -0.000341566 8.04333e-06 -0.000355754 7.7746e-06 -0.000368272 7.33658e-06 -0.00038039 6.61787e-06 -0.000390911 5.83021e-06 -0.000397585 4.86594e-06 -0.000402656 3.83965e-06 -0.000404779 2.89313e-06 -0.000403267 1.38804e-06 -0.000400254 2.35298e-07 -0.000389514 -1.06056e-06 -0.000377837 -2.74857e-06 -0.00036466 -3.94357e-06 -0.000343479 -4.99575e-06 -0.000318304 -6.10997e-06 -0.000291593 -7.13883e-06 -0.000261997 -8.13551e-06 -0.000230144 -9.00093e-06 -0.000195889 -9.76631e-06 -0.000160287 -1.04759e-05 -0.000123118 -1.111e-05 -8.48905e-05 -1.16419e-05 -4.59987e-05 -1.21748e-05 -9.37517e-06 -1.25503e-05 3.14092e-05 -1.27989e-05 7.04046e-05 -1.29863e-05 0.000108395 -1.27716e-05 0.00014714 -1.1017e-05 0.000185882 -8.91742e-06 0.000213386 -7.66809e-06 0.000231051 -6.61241e-06 0.000244624 -6.2047e-06 0.000253099 -6.01107e-06 0.000260709 -5.91044e-06 0.000267954 -5.12667e-06 0.00027683 -3.33341e-06 0.000282362 -1.9672e-06 0.000279118 -1.19933e-06 0.000270871 -6.49885e-07 0.000259937 -2.23097e-07 0.00024897 -8.91483e-08 0.000236552 7.88948e-08 0.000224119 4.54807e-07 0.000213329 1.04371e-06 0.000200525 1.43326e-06 0.000185605 1.73439e-06 0.000170033 1.97553e-06 0.000153915 2.09096e-06 0.000137553 2.10362e-06 0.000121499 2.04754e-06 0.000106144 1.93462e-06 9.16854e-05 1.75289e-06 7.82913e-05 1.48801e-06 6.61768e-05 1.12033e-06 5.55908e-05 6.23168e-07 4.68359e-05 4.03311e-05 1.62733e-06 -0.000279569 2.46112e-06 -0.000316833 2.87524e-06 -0.000358074 3.11819e-06 -0.000402335 2.5433e-06 -0.00044747 2.01116e-06 -0.000491592 9.18157e-07 -0.000532577 2.59076e-07 -0.000576513 -6.62712e-07 -0.000612865 -2.26165e-06 -0.000646558 -3.92855e-06 -0.000676364 -5.21979e-06 -0.000699482 -7.19888e-06 -0.000718485 -1.0268e-05 -0.000731428 -1.22394e-05 -0.000729376 -1.36489e-05 -0.000716423 -1.56281e-05 -0.000701462 -1.72108e-05 -0.000671635 -1.89131e-05 -0.000637004 -1.9299e-05 -0.000585356 -1.90434e-05 -0.00052838 -2.07177e-05 -0.00047529 -2.06069e-05 -0.000401644 -1.89129e-05 -0.000326369 -1.86335e-05 -0.000257005 -1.97264e-05 -0.000183553 -2.08262e-05 -9.66141e-05 -2.09633e-05 4.63657e-07 -1.93638e-05 0.000108387 -1.58102e-05 0.000211957 -1.20663e-05 0.000298316 -9.91999e-06 0.000367431 -9.84423e-06 0.000434177 -8.71955e-06 0.000509775 -5.17968e-06 0.000585717 -1.73074e-06 0.000644782 2.85406e-06 0.000693736 6.71093e-06 0.000736664 1.01681e-05 0.000759737 1.35671e-05 0.00076918 1.61208e-05 0.000764054 1.80926e-05 0.000747477 1.8877e-05 0.000718653 1.90354e-05 0.000685447 1.88225e-05 0.000647372 1.79953e-05 0.000605734 1.68982e-05 0.000564177 1.56897e-05 0.000523074 1.44828e-05 0.000482941 1.32117e-05 0.000443588 1.18007e-05 0.000405367 1.04061e-05 0.000369588 9.12851e-06 0.00033612 8.05736e-06 0.000304591 7.25361e-06 0.000273986 6.69225e-06 0.000243088 6.23443e-06 0.00021077 5.80224e-06 0.000177029 5.44902e-06 0.000142632 5.1223e-06 0.000107078 4.81326e-06 7.16482e-05 4.54864e-06 3.73153e-05 4.18991e-06 1.96095e-06 3.97374e-06 -3.38132e-05 3.6454e-06 -6.75722e-05 3.42068e-06 -9.9687e-05 3.21856e-06 -0.000130025 2.99433e-06 -0.000158386 2.88759e-06 -0.000185947 2.91293e-06 -0.000211696 2.80415e-06 -0.000237658 2.81757e-06 -0.000260551 2.91626e-06 -0.000284783 3.04919e-06 -0.000307087 3.10767e-06 -0.000331338 3.50911e-06 -0.000353963 3.8012e-06 -0.000379238 4.16547e-06 -0.000401921 4.50518e-06 -0.000429022 4.54837e-06 -0.000455095 4.97236e-06 -0.000480488 4.9918e-06 -0.000509246 4.94638e-06 -0.000536493 4.54548e-06 -0.000566784 4.13816e-06 -0.000592702 3.62047e-06 -0.000621241 1.94226e-06 -0.000650591 5.24993e-07 -0.000668696 -1.50982e-06 -0.000691175 -1.95641e-06 -0.000696721 -4.9491e-06 -0.000715308 -7.25295e-06 -0.000711443 -9.07435e-06 -0.00070209 -1.33109e-05 -0.000689455 -1.53695e-05 -0.000642814 -1.92641e-05 -0.000604402 -2.14716e-05 -0.000524033 -2.23602e-05 -0.000441074 -2.34004e-05 -0.000343045 -2.43806e-05 -0.000241049 -2.44094e-05 -0.000120258 -2.17327e-05 2.64888e-06 -2.35792e-05 0.000101976 -1.90634e-05 0.000237233 -2.05861e-05 0.000321282 -1.73622e-05 0.000438464 -1.42354e-05 0.00053231 -1.21897e-05 0.000607406 -8.94232e-06 0.00068119 -4.31831e-06 0.000739347 1.28109e-07 0.00077908 3.64217e-06 0.000797037 7.09294e-06 0.000801736 9.80622e-06 0.000789408 1.17936e-05 0.000763454 1.32665e-05 0.000728366 1.44711e-05 0.000685105 1.51093e-05 0.000635301 1.54171e-05 0.00058101 1.4586e-05 0.000521659 1.35528e-05 0.000466553 1.21539e-05 0.000411484 1.05321e-05 0.000362721 8.83362e-06 0.000318503 7.44139e-06 0.000282088 6.54743e-06 0.000252501 5.64669e-06 0.000222383 5.48985e-06 0.00020247 5.05755e-06 0.000174483 5.16529e-06 0.000156748 4.6797e-06 0.000128787 4.61892e-06 0.000111938 4.17499e-06 8.73534e-05 3.98901e-06 7.07676e-05 3.62174e-06 5.03891e-05 3.66221e-06 3.5017e-05 3.69012e-06 1.65571e-05 4.35263e-06 1.52907e-06 4.68391e-06 -2.17323e-05 4.78487e-06 -4.08857e-05 5.42755e-06 -6.38805e-05 5.82544e-06 -9.11239e-05 6.45649e-06 -0.000115513 6.2501e-06 -0.000149241 6.58319e-06 -0.000174938 6.75714e-06 -0.000207981 7.02642e-06 -0.00023892 7.75257e-06 -0.000270672 7.90668e-06 -0.000309804 9.23177e-06 -0.000340302 9.42384e-06 -0.000389017 8.52681e-06 -0.000435135 6.32171e-06 -0.000486988 2.60931e-06 -0.000534057 5.48153e-07 -0.000553763 3.23818e-08 -0.000570802 9.18887e-07 -0.000570191 1.30442e-06 -0.000583507 1.65911e-06 -0.000586617 1.67857e-06 -0.000599085 9.89907e-07 -0.000604582 -7.92269e-07 -0.00061249 -2.36819e-06 -0.000606018 -3.92582e-06 -0.000594207 -7.01443e-06 -0.000578803 -9.60522e-06 -0.00054148 -1.09054e-05 -0.000492315 -1.32872e-05 -0.000444379 -1.27198e-05 -0.000363082 -1.48546e-05 -0.000315717 -1.38842e-05 -0.000222525 -1.51955e-05 -0.000162171 -1.44636e-05 -7.57895e-05 -1.51569e-05 -3.18519e-06 -1.32518e-05 8.28241e-05 -1.44158e-05 0.000145302 -1.35945e-05 0.00022132 -1.30855e-05 0.000294264 -1.33952e-05 0.000358229 -1.13483e-05 0.000431262 -1.0084e-05 0.000489838 -8.40483e-06 0.000544219 -5.9126e-06 0.000595421 -3.96563e-06 0.000630622 -1.83323e-06 0.00066436 3.4302e-07 0.000686793 2.50757e-06 0.000702222 4.70915e-06 0.000707817 6.53446e-06 0.000701744 8.27318e-06 0.000691158 9.4944e-06 0.000667074 1.02407e-05 0.000640441 1.08005e-05 0.000607028 1.06956e-05 0.000569551 1.07416e-05 0.000533814 1.03985e-05 0.000492525 1.0349e-05 0.000455177 9.9648e-06 0.000413051 9.43116e-06 0.000373501 9.07493e-06 0.000335527 8.56033e-06 0.000295963 8.50754e-06 0.000262172 7.92763e-06 0.000221668 7.66871e-06 0.000189875 7.18563e-06 0.000153021 6.72487e-06 0.000120736 6.44145e-06 9.01689e-05 5.92063e-06 5.88798e-05 5.96163e-06 3.38557e-05 5.74915e-06 3.40441e-06 5.58838e-06 -2.26884e-05 5.59797e-06 -4.86995e-05 5.30531e-06 -7.63508e-05 5.56816e-06 -9.88374e-05 5.46711e-06 -0.000127036 5.54355e-06 -0.000151455 5.4802e-06 -0.00017779 5.39981e-06 -0.000203268 5.51094e-06 -0.000228067 5.32748e-06 -0.000254854 5.49749e-06 -0.000278361 5.36686e-06 -0.00030574 5.412e-06 -0.000330385 5.37381e-06 -0.000356598 5.33825e-06 -0.000382668 5.09262e-06 -0.000409081 4.90001e-06 -0.000434126 4.76442e-06 -0.000458909 4.50433e-06 -0.000483778 4.01517e-06 -0.000507727 3.44388e-06 -0.000529383 2.56063e-06 -0.000550163 1.78097e-06 -0.000565541 6.27912e-07 -0.000579791 -1.86229e-07 -0.000586366 -1.76091e-06 -0.000592038 -2.85698e-06 -0.000588686 -3.9382e-06 -0.000580863 -6.86217e-06 -0.000570815 -7.68771e-06 -0.000541322 -1.01038e-05 -0.000515231 -1.1122e-05 -0.000471742 -1.36237e-05 -0.000429041 -1.48987e-05 -0.000370136 -1.66217e-05 -0.00030793 -1.76909e-05 -0.000235725 -1.77778e-05 -0.000157088 -1.84114e-05 -8.02547e-05 -1.73952e-05 4.83415e-06 -1.77129e-05 8.07412e-05 -1.65547e-05 0.000162342 -1.57976e-05 0.00023869 -1.49778e-05 0.000313035 -1.32552e-05 0.000387143 -1.05387e-05 0.000455526 -7.54408e-06 0.000513519 -5.15197e-06 0.000558895 -2.80273e-06 0.000596817 -2.00964e-07 0.000625574 2.4143e-06 0.000643936 4.64764e-06 0.000650322 6.31603e-06 0.000646663 7.6253e-06 0.000635206 8.67063e-06 0.000616971 9.27526e-06 0.000592806 9.49393e-06 0.000564489 9.6296e-06 0.000534335 9.88853e-06 0.00050234 9.84679e-06 0.000467349 9.52105e-06 0.000431279 9.11299e-06 0.000395762 8.85714e-06 0.000361293 8.73678e-06 0.000327424 8.53798e-06 0.000292444 8.18256e-06 0.000258275 7.79858e-06 0.000225718 7.42457e-06 0.000194267 7.10063e-06 0.000163975 6.88212e-06 0.000136379 6.74469e-06 0.000108894 6.63807e-06 8.27418e-05 6.60732e-06 5.79951e-05 6.56139e-06 3.24969e-05 6.55169e-06 9.87552e-06 6.55135e-06 -1.64943e-05 6.59024e-06 -4.02109e-05 6.65692e-06 -6.34494e-05 6.74252e-06 -8.6202e-05 6.8403e-06 -0.00010874 6.92992e-06 -0.000130886 7.00345e-06 -0.000152964 7.04329e-06 -0.000174435 7.06443e-06 -0.000195409 7.09084e-06 -0.000215708 7.16113e-06 -0.000235137 7.24765e-06 -0.000254358 7.31096e-06 -0.000273325 7.31348e-06 -0.000291735 7.20069e-06 -0.000309731 7.04716e-06 -0.000326103 6.88397e-06 -0.000341402 6.69134e-06 -0.000355561 6.45286e-06 -0.000368033 6.09002e-06 -0.000380027 5.49662e-06 -0.000390318 4.84809e-06 -0.000396936 4.04645e-06 -0.000401854 3.17354e-06 -0.000403906 2.32903e-06 -0.000402422 1.03263e-06 -0.000398957 1.55278e-07 -0.000388637 -9.05918e-07 -0.000376775 -2.42677e-06 -0.00036314 -3.39298e-06 -0.000342513 -4.30443e-06 -0.000317392 -5.24914e-06 -0.000290649 -6.12404e-06 -0.000261123 -6.96386e-06 -0.000229304 -7.69749e-06 -0.000195155 -8.34147e-06 -0.000159643 -8.93903e-06 -0.00012252 -9.47539e-06 -8.43541e-05 -9.92372e-06 -4.55504e-05 -1.03973e-05 -8.90156e-06 -1.07196e-05 3.17314e-05 -1.09324e-05 7.06174e-05 -1.10804e-05 0.000108543 -1.08506e-05 0.00014691 -9.38706e-06 0.000184419 -7.67065e-06 0.000211669 -6.58628e-06 0.000229966 -5.69388e-06 0.000243731 -5.32218e-06 0.000252728 -5.13508e-06 0.000260522 -5.01391e-06 0.000267833 -4.3148e-06 0.000276131 -2.85038e-06 0.000280898 -1.69556e-06 0.000277963 -9.90606e-07 0.000270166 -5.65729e-07 0.000259512 -1.97336e-07 0.000248602 -3.7457e-08 0.000236392 7.15771e-08 0.00022401 4.15958e-07 0.000212984 8.95469e-07 0.000200046 1.22839e-06 0.000185272 1.48317e-06 0.000169779 1.68344e-06 0.000153715 1.78037e-06 0.000137456 1.79049e-06 0.000121489 1.74124e-06 0.000106193 1.64306e-06 9.17835e-05 1.48631e-06 7.84481e-05 1.2588e-06 6.64043e-05 9.44093e-07 5.59055e-05 5.21793e-07 4.72582e-05 4.08529e-05 1.38763e-06 -0.000280956 2.11202e-06 -0.000317558 2.47403e-06 -0.000358436 2.68505e-06 -0.000402546 2.21674e-06 -0.000447002 1.62566e-06 -0.000491001 1.04622e-06 -0.000531998 2.69408e-07 -0.000575736 -3.8277e-07 -0.000612213 -1.6388e-06 -0.000645302 -2.92256e-06 -0.00067508 -4.01224e-06 -0.000698392 -5.61142e-06 -0.000716886 -8.10577e-06 -0.000728933 -9.89149e-06 -0.00072759 -1.12409e-05 -0.000715074 -1.30654e-05 -0.000699638 -1.4408e-05 -0.000670292 -1.57844e-05 -0.000635628 -1.61006e-05 -0.00058504 -1.59332e-05 -0.000528547 -1.71964e-05 -0.000474027 -1.70705e-05 -0.00040177 -1.57886e-05 -0.000327651 -1.55511e-05 -0.000257242 -1.63834e-05 -0.000182721 -1.72407e-05 -9.57569e-05 -1.73806e-05 6.03527e-07 -1.6114e-05 0.00010712 -1.32967e-05 0.00020914 -1.03011e-05 0.00029532 -8.54569e-06 0.000365676 -8.31157e-06 0.000433943 -7.15555e-06 0.000508619 -4.22141e-06 0.000582783 -1.05311e-06 0.000641613 2.41389e-06 0.000690269 5.95306e-06 0.000733125 9.04394e-06 0.000756646 1.19148e-05 0.000766309 1.40771e-05 0.000761892 1.5702e-05 0.000745852 1.63192e-05 0.000718036 1.64177e-05 0.000685348 1.61719e-05 0.000647618 1.54222e-05 0.000606484 1.44548e-05 0.000565144 1.34009e-05 0.000524128 1.23396e-05 0.000484002 1.12326e-05 0.000444695 1.00281e-05 0.000406572 8.84165e-06 0.000370775 7.75833e-06 0.000337203 6.84684e-06 0.000305502 6.15301e-06 0.00027468 5.67233e-06 0.000243568 5.27844e-06 0.000211164 4.92423e-06 0.000177383 4.63346e-06 0.000142923 4.34146e-06 0.00010737 4.08769e-06 7.1902e-05 3.92081e-06 3.74822e-05 3.68841e-06 2.19335e-06 3.46298e-06 -3.35878e-05 3.20456e-06 -6.73137e-05 3.02221e-06 -9.95046e-05 2.80994e-06 -0.000129813 2.73975e-06 -0.000158316 2.69796e-06 -0.000185905 2.72174e-06 -0.00021172 2.61692e-06 -0.000237553 2.58071e-06 -0.000260515 2.67639e-06 -0.000284879 2.72098e-06 -0.000307132 2.78499e-06 -0.000331402 3.2486e-06 -0.000354427 3.49022e-06 -0.00037948 3.82243e-06 -0.000402253 4.06129e-06 -0.000429261 4.10401e-06 -0.000455138 4.46749e-06 -0.000480852 4.45929e-06 -0.000509238 4.5245e-06 -0.000536558 4.28349e-06 -0.000566543 4.01681e-06 -0.000592435 3.66275e-06 -0.000620887 2.31564e-06 -0.000649244 1.46048e-06 -0.00066784 -2.6085e-07 -0.000689453 -7.45081e-07 -0.000696237 -3.52304e-06 -0.00071253 -5.68465e-06 -0.000709282 -7.6278e-06 -0.000700147 -1.19285e-05 -0.000685154 -1.38534e-05 -0.000640889 -1.80044e-05 -0.000600251 -2.00181e-05 -0.00052202 -2.12343e-05 -0.000439858 -2.23189e-05 -0.00034196 -2.3247e-05 -0.00024012 -2.32685e-05 -0.000120237 -2.10416e-05 4.22021e-07 -2.23619e-05 0.000103296 -1.84941e-05 0.000233366 -1.93554e-05 0.000322144 -1.63996e-05 0.000435509 -1.31496e-05 0.00052906 -1.07948e-05 0.000605051 -7.4428e-06 0.000677838 -3.2443e-06 0.000735149 7.49375e-07 0.000775087 3.914e-06 0.000793873 6.9323e-06 0.000798718 9.29014e-06 0.00078705 1.10113e-05 0.000761733 1.21849e-05 0.000727193 1.30801e-05 0.00068421 1.34403e-05 0.000634941 1.34695e-05 0.000580981 1.26073e-05 0.000522521 1.15821e-05 0.000467579 1.02915e-05 0.000412774 8.84787e-06 0.000364164 7.30775e-06 0.000320044 6.07205e-06 0.000283323 5.28116e-06 0.000253292 4.47058e-06 0.000223194 4.31482e-06 0.000202626 3.97191e-06 0.000174826 4.04633e-06 0.000156673 3.62163e-06 0.000129212 3.63568e-06 0.000111924 3.21486e-06 8.77743e-05 3.13218e-06 7.08503e-05 2.8436e-06 5.06777e-05 2.94209e-06 3.49185e-05 2.87747e-06 1.66217e-05 3.40063e-06 1.00591e-06 3.64019e-06 -2.19718e-05 3.82342e-06 -4.10689e-05 4.37426e-06 -6.44314e-05 4.7259e-06 -9.14755e-05 5.32545e-06 -0.000116112 5.10202e-06 -0.000149017 5.50483e-06 -0.000175341 5.67805e-06 -0.000208155 5.91852e-06 -0.00023916 6.5211e-06 -0.000271275 6.67406e-06 -0.000309957 7.90378e-06 -0.000341532 8.17173e-06 -0.000389285 7.91708e-06 -0.00043488 6.38663e-06 -0.000485458 3.23231e-06 -0.000530903 1.04252e-06 -0.000551573 1.78095e-08 -0.000569778 6.2123e-07 -0.000570795 8.79337e-07 -0.000583765 1.09725e-06 -0.000586835 1.00262e-06 -0.00059899 3.17356e-07 -0.000603897 -1.35296e-06 -0.00061082 -2.80204e-06 -0.000604569 -4.38385e-06 -0.000592625 -7.36225e-06 -0.000575824 -9.6771e-06 -0.000539165 -1.06717e-05 -0.00049132 -1.30238e-05 -0.000442027 -1.2254e-05 -0.000363851 -1.42957e-05 -0.000313675 -1.33245e-05 -0.000223496 -1.4413e-05 -0.000161083 -1.38973e-05 -7.63051e-05 -1.44032e-05 -2.67924e-06 -1.27137e-05 8.11348e-05 -1.34956e-05 0.000146084 -1.27329e-05 0.000220558 -1.20256e-05 0.000293557 -1.17934e-05 0.000357997 -9.88727e-06 0.000429356 -8.49777e-06 0.000488448 -6.84523e-06 0.000542567 -4.62349e-06 0.000593199 -2.88951e-06 0.000628888 -1.08138e-06 0.000662552 8.54716e-07 0.000684857 2.70947e-06 0.000700367 4.59501e-06 0.000705931 6.1018e-06 0.000700237 7.60527e-06 0.000689654 8.5805e-06 0.000666098 9.24334e-06 0.000639778 9.65756e-06 0.000606614 9.53644e-06 0.000569672 9.51964e-06 0.000533831 9.15456e-06 0.00049289 9.054e-06 0.000455277 8.60379e-06 0.000413501 8.06991e-06 0.000374035 7.70962e-06 0.000335888 7.21553e-06 0.000296458 7.12914e-06 0.000262259 6.57251e-06 0.000222224 6.35259e-06 0.000190095 5.90753e-06 0.000153466 5.50027e-06 0.000121144 5.2527e-06 9.04165e-05 4.80197e-06 5.93305e-05 4.84622e-06 3.38114e-05 4.63132e-06 3.6193e-06 4.5278e-06 -2.25849e-05 4.56227e-06 -4.87339e-05 4.33901e-06 -7.61276e-05 4.59709e-06 -9.90955e-05 4.50709e-06 -0.000126946 4.60927e-06 -0.000151557 4.58741e-06 -0.000177768 4.54144e-06 -0.000203222 4.67733e-06 -0.000228203 4.54596e-06 -0.000254722 4.73683e-06 -0.000278552 4.66698e-06 -0.00030567 4.73574e-06 -0.000330454 4.73966e-06 -0.000356602 4.74431e-06 -0.000382673 4.58687e-06 -0.000408923 4.43034e-06 -0.00043397 4.31508e-06 -0.000458794 4.08558e-06 -0.000483549 3.64702e-06 -0.000507288 3.15948e-06 -0.000528895 2.33174e-06 -0.000549336 1.57746e-06 -0.000564787 5.21523e-07 -0.000578735 -3.03517e-07 -0.000585541 -1.7045e-06 -0.000590637 -2.69333e-06 -0.000587697 -3.64587e-06 -0.00057991 -5.97999e-06 -0.000568481 -6.70673e-06 -0.000540596 -8.68947e-06 -0.000513248 -9.5585e-06 -0.000470873 -1.15519e-05 -0.000427047 -1.26012e-05 -0.000369087 -1.39534e-05 -0.000306578 -1.47786e-05 -0.0002349 -1.48594e-05 -0.000157007 -1.53223e-05 -7.97918e-05 -1.45387e-05 4.05053e-06 -1.46676e-05 8.08702e-05 -1.37253e-05 0.0001614 -1.30375e-05 0.000238002 -1.22393e-05 0.000312236 -1.07228e-05 0.000385626 -8.41774e-06 0.000453221 -5.91916e-06 0.00051102 -3.85513e-06 0.00055683 -1.81834e-06 0.00059478 3.37913e-07 0.000623418 2.49749e-06 0.000641776 4.33464e-06 0.000648485 5.71485e-06 0.000645282 6.7966e-06 0.000634124 7.65209e-06 0.000616116 8.13879e-06 0.000592319 8.32495e-06 0.000564303 8.41158e-06 0.000534248 8.56954e-06 0.000502182 8.48494e-06 0.000467434 8.1702e-06 0.000431593 7.78906e-06 0.000396143 7.52259e-06 0.000361559 7.3676e-06 0.000327579 7.14705e-06 0.000292665 6.81787e-06 0.000258604 6.4685e-06 0.000226067 6.13159e-06 0.000194604 5.83007e-06 0.000164277 5.62878e-06 0.000136581 5.49756e-06 0.000109025 5.39443e-06 8.2845e-05 5.3476e-06 5.8042e-05 5.27761e-06 3.25669e-05 5.27536e-06 9.87777e-06 5.26369e-06 -1.64826e-05 5.28457e-06 -4.02318e-05 5.33045e-06 -6.34953e-05 5.39047e-06 -8.6262e-05 5.46184e-06 -0.000108811 5.52925e-06 -0.000130953 5.58186e-06 -0.000153016 5.60619e-06 -0.00017446 5.60917e-06 -0.000195412 5.61872e-06 -0.000215717 5.66731e-06 -0.000235186 5.72941e-06 -0.00025442 5.77673e-06 -0.000273372 5.77538e-06 -0.000291734 5.6856e-06 -0.000309642 5.56625e-06 -0.000325983 5.42967e-06 -0.000341266 5.25655e-06 -0.000355388 5.04543e-06 -0.000367822 4.74795e-06 -0.00037973 4.24226e-06 -0.000389812 3.71554e-06 -0.000396409 3.08111e-06 -0.00040122 2.40975e-06 -0.000403235 1.7455e-06 -0.000401758 7.52299e-07 -0.000397964 6.74966e-08 -0.000387952 -7.69788e-07 -0.000375938 -2.05835e-06 -0.000361851 -2.84113e-06 -0.00034173 -3.61043e-06 -0.000316623 -4.39107e-06 -0.000289868 -5.11252e-06 -0.000260401 -5.79927e-06 -0.000228617 -6.40256e-06 -0.000194552 -6.92524e-06 -0.00015912 -7.4106e-06 -0.000122035 -7.84951e-06 -8.39152e-05 -8.22118e-06 -4.51787e-05 -8.61575e-06 -8.507e-06 -8.89384e-06 3.20095e-05 -9.07526e-06 7.07988e-05 -9.19165e-06 0.00010866 -8.97086e-06 0.00014669 -7.78421e-06 0.000183232 -6.41022e-06 0.000210295 -5.49911e-06 0.000229055 -4.76236e-06 0.000242994 -4.43559e-06 0.000252401 -4.26329e-06 0.000260349 -4.13695e-06 0.000267706 -3.53627e-06 0.00027553 -2.35879e-06 0.00027972 -1.4055e-06 0.000277009 -7.79403e-07 0.00026954 -4.60267e-07 0.000259193 -1.89347e-07 0.000248331 -2.26676e-08 0.000236226 7.49236e-08 0.000223913 3.64659e-07 0.000212694 7.52819e-07 0.000199657 1.02744e-06 0.000184997 1.23349e-06 0.000169573 1.39502e-06 0.000153553 1.47316e-06 0.000137378 1.47991e-06 0.000121482 1.43718e-06 0.000106236 1.35425e-06 9.18665e-05 1.22317e-06 7.85792e-05 1.03397e-06 6.65935e-05 7.73396e-07 5.61661e-05 4.26118e-07 4.76054e-05 4.1279e-05 1.17745e-06 -0.000282134 1.77972e-06 -0.00031816 2.0697e-06 -0.000358726 2.17762e-06 -0.000402654 1.88735e-06 -0.000446712 1.38687e-06 -0.000490501 1.19041e-06 -0.000531802 2.82198e-07 -0.000574828 -3.47775e-07 -0.000611583 -1.1748e-06 -0.000644475 -2.2001e-06 -0.000674055 -3.13115e-06 -0.000697461 -4.40078e-06 -0.000715616 -6.14634e-06 -0.000727188 -7.55254e-06 -0.000726184 -8.47099e-06 -0.000714155 -1.00186e-05 -0.00069809 -1.12763e-05 -0.000669035 -1.25463e-05 -0.000634358 -1.28942e-05 -0.000584692 -1.27862e-05 -0.000528655 -1.37054e-05 -0.000473108 -1.35715e-05 -0.000401904 -1.26173e-05 -0.000328605 -1.24096e-05 -0.00025745 -1.30112e-05 -0.000182119 -1.36498e-05 -9.51183e-05 -1.38222e-05 7.75919e-07 -1.28405e-05 0.000106138 -1.06021e-05 0.000206901 -8.23945e-06 0.000292957 -6.88796e-06 0.000364325 -6.60368e-06 0.000433659 -5.52545e-06 0.000507541 -3.10132e-06 0.000580358 -5.38772e-07 0.000639051 1.84009e-06 0.00068789 4.86412e-06 0.000730101 7.46127e-06 0.000754049 9.84037e-06 0.00076393 1.1656e-05 0.000760076 1.30116e-05 0.000744497 1.35457e-05 0.000717502 1.36462e-05 0.000685248 1.34335e-05 0.000647831 1.28036e-05 0.000607114 1.19921e-05 0.000565956 1.11109e-05 0.00052501 1.02098e-05 0.000484903 9.26982e-06 0.000445635 8.26007e-06 0.000407581 7.2651e-06 0.00037177 6.36075e-06 0.000338107 5.60923e-06 0.000306254 5.03555e-06 0.000275254 4.63456e-06 0.000243969 4.32795e-06 0.00021147 4.04138e-06 0.000177669 3.81822e-06 0.000143146 3.62345e-06 0.000107564 3.44355e-06 7.20819e-05 3.29987e-06 3.76259e-05 3.1262e-06 2.36704e-06 3.00987e-06 -3.34715e-05 2.78799e-06 -6.70919e-05 2.64119e-06 -9.93578e-05 2.51557e-06 -0.000129687 2.39534e-06 -0.000158196 2.2398e-06 -0.00018575 2.22498e-06 -0.000211705 2.15298e-06 -0.000237481 2.22244e-06 -0.000260584 2.19412e-06 -0.00028485 2.26811e-06 -0.000307206 2.2552e-06 -0.000331389 2.63037e-06 -0.000354802 2.82089e-06 -0.00037967 3.18689e-06 -0.000402619 3.41335e-06 -0.000429488 3.50848e-06 -0.000455233 3.85479e-06 -0.000481198 3.88684e-06 -0.00050927 4.00177e-06 -0.000536673 3.78258e-06 -0.000566324 3.6018e-06 -0.000592254 3.44706e-06 -0.000620732 2.37579e-06 -0.000648173 1.71865e-06 -0.000667183 4.91337e-07 -0.000688226 -1.89137e-07 -0.000695557 -2.46087e-06 -0.000710258 -4.05287e-06 -0.00070769 -5.79067e-06 -0.000698409 -9.4121e-06 -0.000681533 -1.10645e-05 -0.000639237 -1.4683e-05 -0.000596632 -1.6453e-05 -0.00052025 -1.79317e-05 -0.000438379 -1.89731e-05 -0.000340919 -1.98737e-05 -0.00023922 -2.00265e-05 -0.000120084 -1.81846e-05 -1.41985e-06 -1.92508e-05 0.000104362 -1.57978e-05 0.000229913 -1.62285e-05 0.000322575 -1.31624e-05 0.000432443 -1.01455e-05 0.000526043 -7.73713e-06 0.000602643 -4.69252e-06 0.000674794 -1.12623e-06 0.000731583 2.23149e-06 0.000771729 4.83988e-06 0.000791265 7.26017e-06 0.000796298 9.0994e-06 0.000785211 1.03561e-05 0.000760477 1.10027e-05 0.000726547 1.13271e-05 0.000683886 1.12734e-05 0.000634995 1.09672e-05 0.000581288 1.00729e-05 0.000523416 9.12421e-06 0.000468528 7.99416e-06 0.000413905 6.7792e-06 0.00036538 5.49131e-06 0.000321332 4.48414e-06 0.000284331 3.83515e-06 0.000253941 3.18274e-06 0.000223846 3.04238e-06 0.000202767 2.72747e-06 0.000175141 2.78877e-06 0.000156612 2.45243e-06 0.000129548 2.44106e-06 0.000111935 2.10882e-06 8.81065e-05 2.06215e-06 7.0897e-05 1.8043e-06 5.09356e-05 1.86447e-06 3.48583e-05 1.7942e-06 1.6692e-05 2.23998e-06 5.6013e-07 2.36043e-06 -2.20923e-05 2.58359e-06 -4.12921e-05 3.03175e-06 -6.48795e-05 3.24678e-06 -9.16906e-05 3.75715e-06 -0.000116623 3.60897e-06 -0.000148869 4.0213e-06 -0.000175753 4.15453e-06 -0.000208288 4.37199e-06 -0.000239378 4.91232e-06 -0.000271815 5.01633e-06 -0.000310061 6.13554e-06 -0.000342651 6.56972e-06 -0.000389719 6.78654e-06 -0.000435097 5.92054e-06 -0.000484592 3.64795e-06 -0.00052863 2.10316e-06 -0.000550028 9.25013e-07 -0.0005686 8.72109e-07 -0.000570742 7.98372e-07 -0.000583692 9.27224e-07 -0.000586963 8.16881e-07 -0.00059888 2.33173e-07 -0.000603313 -1.20633e-06 -0.00060938 -2.4714e-06 -0.000603304 -3.7337e-06 -0.000591363 -6.22076e-06 -0.000573337 -8.17337e-06 -0.000537212 -9.1492e-06 -0.000490345 -1.12397e-05 -0.000439936 -1.05621e-05 -0.000364529 -1.23014e-05 -0.000311936 -1.1465e-05 -0.000224333 -1.24492e-05 -0.000160098 -1.19746e-05 -7.67795e-05 -1.22514e-05 -2.40239e-06 -1.07791e-05 7.96626e-05 -1.12133e-05 0.000146518 -1.03805e-05 0.000219725 -9.64746e-06 0.000292824 -9.20699e-06 0.000357557 -7.56839e-06 0.000427718 -6.22972e-06 0.00048711 -4.76377e-06 0.000541101 -2.8873e-06 0.000591323 -1.39564e-06 0.000627396 1.81617e-07 0.000660975 1.83841e-06 0.000683201 3.41373e-06 0.000698792 4.95105e-06 0.000704394 6.1138e-06 0.000699074 7.35055e-06 0.000688418 8.01427e-06 0.000665435 8.47915e-06 0.000639314 8.55494e-06 0.000606538 8.28075e-06 0.000569946 8.09092e-06 0.000534021 7.63528e-06 0.000493346 7.42042e-06 0.000455492 6.88663e-06 0.000414035 6.40751e-06 0.000374514 6.05019e-06 0.000336245 5.57106e-06 0.000296937 5.4385e-06 0.000262391 4.95413e-06 0.000222709 4.77055e-06 0.000190279 4.375e-06 0.000153862 4.01855e-06 0.0001215 3.81466e-06 9.06204e-05 3.49491e-06 5.96503e-05 3.48852e-06 3.38178e-05 3.284e-06 3.82382e-06 3.25048e-06 -2.25514e-05 3.29232e-06 -4.87758e-05 3.11445e-06 -7.59497e-05 3.33488e-06 -9.9316e-05 3.23029e-06 -0.000126842 3.3369e-06 -0.000151664 3.31168e-06 -0.000177743 3.30644e-06 -0.000203216 3.44507e-06 -0.000228341 3.35324e-06 -0.00025463 3.55925e-06 -0.000278758 3.50913e-06 -0.00030562 3.63727e-06 -0.000330582 3.69238e-06 -0.000356657 3.75229e-06 -0.000382733 3.67697e-06 -0.000408848 3.62836e-06 -0.000433921 3.59578e-06 -0.000458761 3.45631e-06 -0.000483409 3.15356e-06 -0.000506985 2.79734e-06 -0.000528539 2.15644e-06 -0.000548695 1.61773e-06 -0.000564248 7.77389e-07 -0.000577895 8.7886e-08 -0.000584852 -1.07882e-06 -0.00058947 -1.95749e-06 -0.000586819 -2.85627e-06 -0.000579012 -4.75421e-06 -0.000566583 -5.40645e-06 -0.000539943 -6.99538e-06 -0.00051166 -7.7124e-06 -0.000470156 -9.27344e-06 -0.000425486 -1.01076e-05 -0.000368252 -1.11338e-05 -0.000305551 -1.17269e-05 -0.000234307 -1.18133e-05 -0.00015692 -1.21186e-05 -7.94865e-05 -1.15098e-05 3.44179e-06 -1.15058e-05 8.08662e-05 -1.07445e-05 0.000160639 -1.00828e-05 0.000237341 -9.32481e-06 0.000311478 -7.97207e-06 0.000384274 -6.06971e-06 0.000451319 -3.94947e-06 0.0005089 -2.22233e-06 0.000555103 -5.04634e-07 0.000593062 1.23927e-06 0.000621674 3.02819e-06 0.000639988 4.48547e-06 0.000647028 5.60597e-06 0.000644162 6.47987e-06 0.00063325 7.06445e-06 0.000615531 7.39062e-06 0.000591993 7.38446e-06 0.000564309 7.33505e-06 0.000534298 7.2977e-06 0.000502219 7.1119e-06 0.00046762 6.76291e-06 0.000431942 6.39224e-06 0.000396514 6.10513e-06 0.000361846 5.91528e-06 0.000327769 5.67377e-06 0.000292906 5.37078e-06 0.000258907 5.05706e-06 0.000226381 4.76219e-06 0.000194899 4.4958e-06 0.000164543 4.32299e-06 0.000136753 4.19884e-06 0.000109149 4.11889e-06 8.29249e-05 4.10378e-06 5.80571e-05 4.04956e-06 3.26211e-05 4.05682e-06 9.87052e-06 4.04653e-06 -1.64723e-05 4.06782e-06 -4.02531e-05 4.11058e-06 -6.35381e-05 4.16769e-06 -8.63191e-05 4.23007e-06 -0.000108874 4.28782e-06 -0.000131011 4.32814e-06 -0.000153057 4.34218e-06 -0.000174474 4.34303e-06 -0.000195413 4.34854e-06 -0.000215723 4.38309e-06 -0.00023522 4.42148e-06 -0.000254458 4.44169e-06 -0.000273393 4.41974e-06 -0.000291712 4.32938e-06 -0.000309551 4.2183e-06 -0.000325872 4.10099e-06 -0.000341149 3.96748e-06 -0.000355255 3.84068e-06 -0.000367696 3.61159e-06 -0.000379501 3.22504e-06 -0.000389425 2.87212e-06 -0.000396057 2.42312e-06 -0.000400771 1.88061e-06 -0.000402692 1.3359e-06 -0.000401213 5.64784e-07 -0.000397193 2.9327e-08 -0.000387416 -5.7649e-07 -0.000375332 -1.52986e-06 -0.000360898 -2.21529e-06 -0.000341045 -2.89275e-06 -0.000315945 -3.51598e-06 -0.000289245 -4.08446e-06 -0.000259833 -4.62117e-06 -0.00022808 -5.09324e-06 -0.00019408 -5.49156e-06 -0.000158722 -5.8635e-06 -0.000121663 -6.20666e-06 -8.35721e-05 -6.49081e-06 -4.48946e-05 -6.84689e-06 -8.15092e-06 -7.07215e-06 3.22347e-05 -7.22111e-06 7.09478e-05 -7.30532e-06 0.000108744 -7.09845e-06 0.000146483 -6.15027e-06 0.000182284 -5.07227e-06 0.000209217 -4.33674e-06 0.00022832 -3.75667e-06 0.000242414 -3.49045e-06 0.000252135 -3.3477e-06 0.000260207 -3.22765e-06 0.000267586 -2.73336e-06 0.000275036 -1.82783e-06 0.000278815 -1.0872e-06 0.000276269 -5.74596e-07 0.000269027 -3.48716e-07 0.000258967 -1.38399e-07 0.00024812 -2.0264e-08 0.000236108 5.61982e-08 0.000223836 2.99325e-07 0.000212451 6.0176e-07 0.000199355 8.20337e-07 0.000184779 9.84478e-07 0.000169408 1.10986e-06 0.000153428 1.16885e-06 0.000137319 1.17132e-06 0.00012148 1.13478e-06 0.000106272 1.0676e-06 9.19336e-05 9.6283e-07 7.86839e-05 8.1272e-07 6.67436e-05 6.07182e-07 5.63716e-05 3.35008e-07 4.78776e-05 4.1614e-05 9.76253e-07 -0.00028311 1.43821e-06 -0.000318622 1.66581e-06 -0.000358954 1.70877e-06 -0.000402697 1.59722e-06 -0.0004466 1.24288e-06 -0.000490147 1.14558e-06 -0.000531704 4.1819e-07 -0.000574101 -1.98225e-07 -0.000610966 -7.60061e-07 -0.000643913 -1.57167e-06 -0.000673243 -2.33101e-06 -0.000696702 -3.35102e-06 -0.000714596 -4.71297e-06 -0.000725826 -5.91964e-06 -0.000724977 -6.6328e-06 -0.000713442 -7.68789e-06 -0.000697035 -8.43412e-06 -0.000668288 -9.34036e-06 -0.000633452 -9.6462e-06 -0.000584386 -9.57978e-06 -0.000528722 -1.0218e-05 -0.00047247 -1.01013e-05 -0.000402021 -9.43671e-06 -0.00032927 -9.27292e-06 -0.000257614 -9.65599e-06 -0.000181736 -1.00338e-05 -9.47405e-05 -1.00764e-05 8.18556e-07 -9.34289e-06 0.000105405 -7.78569e-06 0.000205344 -6.15105e-06 0.000291323 -5.19145e-06 0.000363365 -4.88764e-06 0.000433355 -3.99986e-06 0.000506653 -2.18362e-06 0.000578542 -1.84315e-07 0.000637051 1.41857e-06 0.000686287 3.79084e-06 0.000727729 5.73366e-06 0.000752106 7.45553e-06 0.000762208 8.74416e-06 0.000758788 9.66162e-06 0.000743579 9.99818e-06 0.000717165 1.00156e-05 0.00068523 9.79892e-06 0.000648048 9.30297e-06 0.00060761 8.68284e-06 0.000566576 8.02245e-06 0.00052567 7.36499e-06 0.000485561 6.70343e-06 0.000446296 6.02413e-06 0.000408261 5.39161e-06 0.000372402 4.82601e-06 0.000338673 4.33734e-06 0.000306743 3.9205e-06 0.000275671 3.58513e-06 0.000244305 3.30391e-06 0.000211752 3.04597e-06 0.000177927 2.84588e-06 0.000143346 2.6751e-06 0.000107735 2.53236e-06 7.22247e-05 2.44201e-06 3.77163e-05 2.32296e-06 2.48609e-06 2.26706e-06 -3.34156e-05 2.16939e-06 -6.69942e-05 2.12526e-06 -9.93137e-05 2.05897e-06 -0.000129621 2.03174e-06 -0.000158169 1.96935e-06 -0.000185687 1.97393e-06 -0.000211709 1.85466e-06 -0.000237362 1.95379e-06 -0.000260683 1.83882e-06 -0.000284735 1.93703e-06 -0.000307304 1.87079e-06 -0.000331323 1.88785e-06 -0.000354819 1.86727e-06 -0.00037965 2.12535e-06 -0.000402878 2.19948e-06 -0.000429562 2.23482e-06 -0.000455269 2.49369e-06 -0.000481457 2.57761e-06 -0.000509354 2.86124e-06 -0.000536957 2.83631e-06 -0.000566299 2.91775e-06 -0.000592336 2.9165e-06 -0.000620731 2.21755e-06 -0.000647474 1.86316e-06 -0.000666829 8.97047e-07 -0.00068726 4.2895e-07 -0.000695089 -1.02791e-06 -0.000708801 -2.41932e-06 -0.000706298 -4.11739e-06 -0.000696711 -7.10061e-06 -0.00067855 -8.37398e-06 -0.000637964 -1.11297e-05 -0.000593876 -1.2346e-05 -0.000519033 -1.33388e-05 -0.000437386 -1.39757e-05 -0.000340282 -1.46504e-05 -0.000238545 -1.46398e-05 -0.000120094 -1.32709e-05 -2.78871e-06 -1.3974e-05 0.000105066 -1.13423e-05 0.000227281 -1.1452e-05 0.000322685 -9.03563e-06 0.000430027 -6.5773e-06 0.000523585 -4.55012e-06 0.000600616 -2.06336e-06 0.000672307 6.6473e-07 0.000728855 3.23846e-06 0.000769156 5.17288e-06 0.000789331 6.83252e-06 0.000794638 7.93763e-06 0.000784106 8.50609e-06 0.000759909 8.75883e-06 0.000726294 8.80848e-06 0.000683837 8.64767e-06 0.000635156 8.32291e-06 0.000581612 7.6076e-06 0.000524131 6.89219e-06 0.000469243 6.00728e-06 0.00041479 5.0779e-06 0.000366309 4.10763e-06 0.000322302 3.33959e-06 0.000285099 2.85978e-06 0.000254421 2.37094e-06 0.000224335 2.25237e-06 0.000202885 1.98195e-06 0.000175411 1.99699e-06 0.000156597 1.73523e-06 0.00012981 1.7216e-06 0.000111949 1.48228e-06 8.83458e-05 1.43656e-06 7.09427e-05 1.23915e-06 5.1133e-05 1.24598e-06 3.48515e-05 1.15492e-06 1.6783e-05 1.45117e-06 2.63887e-07 1.54292e-06 -2.2184e-05 1.70292e-06 -4.14521e-05 1.97018e-06 -6.51468e-05 2.05907e-06 -9.17795e-05 2.41175e-06 -0.000116975 2.34833e-06 -0.000148806 2.59428e-06 -0.000175999 2.63121e-06 -0.000208325 2.77563e-06 -0.000239522 3.13947e-06 -0.000272179 3.22557e-06 -0.000310147 4.03849e-06 -0.000343464 4.35577e-06 -0.000390037 4.72839e-06 -0.000435469 4.34581e-06 -0.000484209 2.90408e-06 -0.000527189 1.98442e-06 -0.000549109 1.08588e-06 -0.000567701 1.0687e-06 -0.000570725 9.36672e-07 -0.00058356 1.08928e-06 -0.000587116 9.22087e-07 -0.000598712 6.19583e-07 -0.000603011 -3.12544e-07 -0.000608448 -1.13473e-06 -0.000602482 -2.29557e-06 -0.000590202 -4.38638e-06 -0.000571246 -5.90401e-06 -0.000535695 -6.7858e-06 -0.000489463 -8.41437e-06 -0.000438308 -7.84464e-06 -0.000365099 -9.15354e-06 -0.000310627 -8.45157e-06 -0.000225034 -9.15729e-06 -0.000159393 -8.78641e-06 -7.71503e-05 -8.93864e-06 -2.25009e-06 -7.85864e-06 7.85827e-05 -8.0648e-06 0.000146725 -7.48975e-06 0.00021915 -6.79863e-06 0.000292133 -6.35748e-06 0.000357116 -5.07191e-06 0.000426432 -3.94086e-06 0.000485979 -2.67471e-06 0.000539835 -1.16722e-06 0.000589815 2.8501e-08 0.000626201 1.33149e-06 0.000659672 2.61389e-06 0.000681918 3.8155e-06 0.000697591 4.89138e-06 0.000703318 5.61619e-06 0.00069835 6.31263e-06 0.000687721 6.57741e-06 0.00066517 6.70439e-06 0.000639187 6.63297e-06 0.00060661 6.33034e-06 0.000570249 6.13217e-06 0.000534219 5.72957e-06 0.000493749 5.51063e-06 0.000455711 5.08536e-06 0.00041446 4.68263e-06 0.000374917 4.38434e-06 0.000336543 4.00451e-06 0.000297317 3.89182e-06 0.000262504 3.52472e-06 0.000223076 3.36594e-06 0.000190438 3.09023e-06 0.000154138 2.82852e-06 0.000121762 2.68034e-06 9.07685e-05 2.46152e-06 5.98691e-05 2.41018e-06 3.38692e-05 2.26865e-06 3.96534e-06 2.25992e-06 -2.25426e-05 2.29038e-06 -4.88062e-05 2.14633e-06 -7.58056e-05 2.27879e-06 -9.94484e-05 2.20742e-06 -0.000126771 2.26549e-06 -0.000151722 2.24219e-06 -0.00017772 2.22181e-06 -0.000203196 2.29101e-06 -0.000228411 2.22071e-06 -0.00025456 2.34794e-06 -0.000278885 2.31555e-06 -0.000305588 2.39863e-06 -0.000330665 2.46136e-06 -0.00035672 2.52051e-06 -0.000382792 2.50075e-06 -0.000408828 2.52635e-06 -0.000433947 2.57654e-06 -0.000458811 2.55782e-06 -0.00048339 2.41406e-06 -0.000506842 2.23844e-06 -0.000528364 1.80533e-06 -0.000548262 1.41344e-06 -0.000563856 7.67178e-07 -0.000577249 2.48372e-07 -0.000584333 -4.85825e-07 -0.000588736 -1.13922e-06 -0.000586165 -1.92451e-06 -0.000578226 -3.42897e-06 -0.000565079 -4.05272e-06 -0.00053932 -5.30312e-06 -0.000510409 -5.86748e-06 -0.000469592 -6.97681e-06 -0.000424377 -7.53661e-06 -0.000367693 -8.22031e-06 -0.000304868 -8.59559e-06 -0.000233932 -8.57921e-06 -0.000156937 -8.72894e-06 -7.93368e-05 -8.2915e-06 3.00436e-06 -8.22055e-06 8.07953e-05 -7.62027e-06 0.000160039 -7.07261e-06 0.000236793 -6.4034e-06 0.000310809 -5.30784e-06 0.000383178 -3.80801e-06 0.000449819 -2.16082e-06 0.000507253 -7.50318e-07 0.000553693 5.94148e-07 0.000591718 1.94168e-06 0.000620326 3.25759e-06 0.000638672 4.26639e-06 0.000646019 4.99175e-06 0.000643436 5.47438e-06 0.000632768 5.74911e-06 0.000615256 5.85471e-06 0.000591888 5.76709e-06 0.000564397 5.65758e-06 0.000534407 5.5739e-06 0.000502303 5.39685e-06 0.000467797 5.12125e-06 0.000432218 4.83157e-06 0.000396804 4.58603e-06 0.000362092 4.39383e-06 0.000327961 4.13312e-06 0.000293167 3.84364e-06 0.000259197 3.57348e-06 0.000226651 3.32463e-06 0.000195148 3.09777e-06 0.00016477 2.95637e-06 0.000136895 2.83605e-06 0.00010927 2.76653e-06 8.29944e-05 2.79463e-06 5.8029e-05 2.76808e-06 3.26476e-05 2.79109e-06 9.8475e-06 2.79832e-06 -1.64795e-05 2.82529e-06 -4.028e-05 2.86262e-06 -6.35754e-05 2.9079e-06 -8.63644e-05 2.95437e-06 -0.00010892 2.99477e-06 -0.000131051 3.02412e-06 -0.000153086 3.04234e-06 -0.000174492 3.058e-06 -0.000195429 3.07764e-06 -0.000215742 3.12084e-06 -0.000235264 3.16906e-06 -0.000254506 3.20881e-06 -0.000273432 3.22148e-06 -0.000291725 3.18355e-06 -0.000309513 3.12393e-06 -0.000325813 3.04808e-06 -0.000341073 2.94509e-06 -0.000355152 2.85646e-06 -0.000367607 2.66237e-06 -0.000379307 2.3434e-06 -0.000389106 2.05555e-06 -0.000395769 1.72739e-06 -0.000400442 1.31622e-06 -0.000402281 9.04792e-07 -0.000400802 3.38663e-07 -0.000396627 -6.25442e-08 -0.000387015 -4.78495e-07 -0.000374916 -1.06264e-06 -0.000360314 -1.56743e-06 -0.00034054 -2.05717e-06 -0.000315456 -2.5108e-06 -0.000288791 -2.9396e-06 -0.000259404 -3.35505e-06 -0.000227665 -3.73694e-06 -0.000193698 -4.05266e-06 -0.000158406 -4.31764e-06 -0.000121398 -4.55221e-06 -8.33375e-05 -4.75266e-06 -4.46941e-05 -4.9658e-06 -7.93778e-06 -5.12326e-06 3.23922e-05 -5.21924e-06 7.10438e-05 -5.26979e-06 0.000108794 -5.11163e-06 0.000146324 -4.44577e-06 0.000181618 -3.69706e-06 0.000208468 -3.16864e-06 0.000227791 -2.75272e-06 0.000241998 -2.55079e-06 0.000251933 -2.4361e-06 0.000260092 -2.32949e-06 0.000267479 -1.95738e-06 0.000274663 -1.3151e-06 0.000278173 -7.82846e-07 0.000275736 -4.09433e-07 0.000268654 -2.35951e-07 0.000258794 -7.13286e-08 0.000247956 9.97626e-09 0.000236026 4.69713e-08 0.000223799 2.34931e-07 0.000212263 4.4662e-07 0.000199143 6.02285e-07 0.000184623 7.25828e-07 0.000169285 8.16599e-07 0.000153337 8.6066e-07 0.000137275 8.62961e-07 0.000121478 8.34832e-07 0.0001063 7.83403e-07 9.19851e-05 7.05075e-07 7.87623e-05 5.94443e-07 6.68542e-05 4.44502e-07 5.65216e-05 2.47532e-07 4.80746e-05 4.18616e-05 8.17905e-07 -0.000283928 1.16046e-06 -0.000318965 1.35728e-06 -0.000359151 1.38582e-06 -0.000402725 1.32601e-06 -0.00044654 1.12338e-06 -0.000489944 1.0698e-06 -0.000531651 6.51199e-07 -0.000573682 2.83467e-07 -0.000610599 -5.95403e-08 -0.00064357 -5.54773e-07 -0.000672748 -1.03059e-06 -0.000696226 -1.65644e-06 -0.00071397 -2.52459e-06 -0.000724958 -3.29962e-06 -0.000724202 -3.78306e-06 -0.000712959 -4.5204e-06 -0.000696298 -5.08563e-06 -0.000667723 -5.81301e-06 -0.000632724 -6.11148e-06 -0.000584088 -6.10005e-06 -0.000528733 -6.5212e-06 -0.000472049 -6.46274e-06 -0.00040208 -6.09159e-06 -0.000329641 -5.96739e-06 -0.000257738 -6.17488e-06 -0.000181529 -6.32396e-06 -9.45914e-05 -6.56376e-06 1.05835e-06 -6.19728e-06 0.000105038 -5.26039e-06 0.000204407 -4.24607e-06 0.000290309 -3.6684e-06 0.000362787 -3.3929e-06 0.00043308 -2.658e-06 0.000505918 -1.31435e-06 0.000577199 1.33476e-07 0.000635604 1.37348e-06 0.000685047 3.13406e-06 0.000725968 4.58598e-06 0.000750654 5.82844e-06 0.000760966 6.74597e-06 0.00075787 7.36312e-06 0.000742962 7.56696e-06 0.000716961 7.52899e-06 0.000685268 7.30794e-06 0.000648269 6.8935e-06 0.000608024 6.39345e-06 0.000567076 5.85554e-06 0.000526208 5.31671e-06 0.0004861 4.7724e-06 0.000446841 4.20588e-06 0.000408827 3.66455e-06 0.000372944 3.17592e-06 0.000339162 2.77585e-06 0.000307143 2.49562e-06 0.000275951 2.31246e-06 0.000244488 2.17757e-06 0.000211887 2.05337e-06 0.000178052 1.94087e-06 0.000143459 1.82273e-06 0.000107853 1.71758e-06 7.23298e-05 1.67642e-06 3.77574e-05 1.6804e-06 2.48211e-06 1.60048e-06 -3.33356e-05 1.47515e-06 -6.68689e-05 1.37419e-06 -9.92127e-05 1.25348e-06 -0.0001295 1.15612e-06 -0.000158071 1.08883e-06 -0.00018562 1.05598e-06 -0.000211676 9.2841e-07 -0.000237234 9.30188e-07 -0.000260685 8.60675e-07 -0.000284666 9.62146e-07 -0.000307405 1.01289e-06 -0.000331374 1.05309e-06 -0.000354859 1.00409e-06 -0.000379601 1.14264e-06 -0.000403016 1.16835e-06 -0.000429587 1.17993e-06 -0.00045528 1.28852e-06 -0.000481565 1.32397e-06 -0.000509389 1.47817e-06 -0.000537111 1.45038e-06 -0.000566271 1.63586e-06 -0.000592521 1.73127e-06 -0.000620826 1.41113e-06 -0.000647154 1.40729e-06 -0.000666825 8.20286e-07 -0.000686673 7.26562e-07 -0.000694995 -1.87546e-08 -0.000708056 -7.3375e-07 -0.000705583 -1.67728e-06 -0.000695767 -3.79073e-06 -0.000676436 -5.08333e-06 -0.000636671 -7.57306e-06 -0.000591387 -8.78087e-06 -0.000517825 -9.73516e-06 -0.000436432 -1.01981e-05 -0.000339819 -1.06928e-05 -0.00023805 -1.06169e-05 -0.00012017 -9.71618e-06 -3.68943e-06 -9.96706e-06 0.000105317 -8.00718e-06 0.000225321 -7.4876e-06 0.000322165 -5.50137e-06 0.00042804 -3.31502e-06 0.000521399 -1.34276e-06 0.000598644 6.23724e-07 0.000670341 2.66362e-06 0.000726815 4.46535e-06 0.000767354 5.73354e-06 0.000788063 6.74659e-06 0.000793625 7.42171e-06 0.000783431 7.67619e-06 0.000759654 7.71067e-06 0.00072626 7.52792e-06 0.00068402 7.18353e-06 0.0006355 6.73735e-06 0.000582059 6.0419e-06 0.000524827 5.37525e-06 0.00046991 4.58414e-06 0.000415581 3.84138e-06 0.000367052 3.0888e-06 0.000323054 2.48711e-06 0.0002857 2.10217e-06 0.000254806 1.71747e-06 0.00022472 1.59065e-06 0.000203012 1.40515e-06 0.000175597 1.42787e-06 0.000156574 1.2637e-06 0.000129974 1.24747e-06 0.000111965 1.1116e-06 8.84817e-05 1.10816e-06 7.09462e-05 9.94843e-07 5.12463e-05 1.0304e-06 3.48159e-05 1.0009e-06 1.68125e-05 1.20343e-06 6.13568e-08 1.23697e-06 -2.22175e-05 1.39016e-06 -4.16053e-05 1.5646e-06 -6.53212e-05 1.60879e-06 -9.18237e-05 1.89541e-06 -0.000117262 1.82132e-06 -0.000148731 1.97482e-06 -0.000176152 1.9642e-06 -0.000208314 2.06527e-06 -0.000239623 2.3439e-06 -0.000272458 2.29092e-06 -0.000310094 2.79537e-06 -0.000343969 2.79165e-06 -0.000390033 2.92362e-06 -0.000435601 2.70268e-06 -0.000483988 1.84667e-06 -0.000526333 1.38779e-06 -0.00054865 7.58399e-07 -0.000567072 7.9061e-07 -0.000570757 5.74189e-07 -0.000583343 6.20813e-07 -0.000587163 4.45196e-07 -0.000598537 2.99795e-07 -0.000602865 -2.4791e-07 -0.0006079 -7.41444e-07 -0.000601989 -1.32557e-06 -0.000589618 -2.49513e-06 -0.000570077 -3.56895e-06 -0.000534621 -4.45243e-06 -0.000488579 -5.8251e-06 -0.000436935 -5.51129e-06 -0.000365412 -6.52509e-06 -0.000309613 -6.08266e-06 -0.000225477 -6.64868e-06 -0.000158827 -6.38519e-06 -7.74138e-05 -6.47557e-06 -2.15966e-06 -5.72125e-06 7.78284e-05 -5.70596e-06 0.000146709 -5.27405e-06 0.000218718 -4.4953e-06 0.000291354 -3.89903e-06 0.00035652 -2.76981e-06 0.000425303 -1.7297e-06 0.000484939 -6.62107e-07 0.000538767 6.14504e-07 0.000588539 1.58414e-06 0.000625231 2.6057e-06 0.00065865 3.48873e-06 0.000681035 4.30684e-06 0.000696772 4.96188e-06 0.000702663 5.41094e-06 0.000697901 5.76986e-06 0.000687362 5.88952e-06 0.00066505 5.83934e-06 0.000639237 5.70354e-06 0.000606745 5.33055e-06 0.000570622 5.09513e-06 0.000534454 4.67023e-06 0.000494174 4.36409e-06 0.000456017 3.93735e-06 0.000414887 3.54203e-06 0.000375312 3.25134e-06 0.000336834 2.89746e-06 0.00029767 2.74984e-06 0.000262652 2.43473e-06 0.000223391 2.31649e-06 0.000190556 2.08054e-06 0.000154374 1.89584e-06 0.000121946 1.80143e-06 9.0863e-05 1.62309e-06 6.00475e-05 1.65354e-06 3.38387e-05 1.54374e-06 4.07513e-06 1.53885e-06 -2.25377e-05 1.58966e-06 -4.8857e-05 1.50129e-06 -7.57173e-05 1.62849e-06 -9.95756e-05 1.57811e-06 -0.00012672 1.64087e-06 -0.000151785 1.64503e-06 -0.000177724 1.64545e-06 -0.000203197 1.70324e-06 -0.000228468 1.64253e-06 -0.000254499 1.74405e-06 -0.000278987 1.6931e-06 -0.000305537 1.743e-06 -0.000330715 1.74833e-06 -0.000356726 1.74948e-06 -0.000382793 1.69262e-06 -0.000408771 1.67117e-06 -0.000433926 1.6522e-06 -0.000458792 1.58551e-06 -0.000483324 1.46095e-06 -0.000506717 1.35887e-06 -0.000528261 1.11518e-06 -0.000548018 9.69697e-07 -0.000563711 6.01514e-07 -0.000576881 3.69194e-07 -0.000584101 -8.27661e-08 -0.000588284 -5.09143e-07 -0.000585739 -9.48614e-07 -0.000577787 -1.82112e-06 -0.000564206 -2.28354e-06 -0.000538857 -3.24989e-06 -0.000509443 -3.85067e-06 -0.000468991 -4.76535e-06 -0.000423462 -5.27352e-06 -0.000367185 -5.77049e-06 -0.000304371 -6.06342e-06 -0.000233639 -6.05832e-06 -0.000156942 -6.11512e-06 -7.928e-05 -5.81085e-06 2.7001e-06 -5.66535e-06 8.06498e-05 -5.14925e-06 0.000159523 -4.57124e-06 0.000236215 -3.8548e-06 0.000310093 -2.8594e-06 0.000382183 -1.62078e-06 0.00044858 -2.98005e-07 0.00050593 8.30382e-07 0.000552564 1.85272e-06 0.000590696 2.83903e-06 0.00061934 3.66106e-06 0.00063785 4.33185e-06 0.000645348 4.79756e-06 0.000642971 5.03156e-06 0.000632534 5.19482e-06 0.000615093 5.13633e-06 0.000591946 5.01821e-06 0.000564515 4.8025e-06 0.000534623 4.62096e-06 0.000502484 4.30628e-06 0.000468111 3.92174e-06 0.000432603 3.49167e-06 0.000397234 3.13223e-06 0.000362451 2.88532e-06 0.000328208 2.63669e-06 0.000293416 2.39811e-06 0.000259435 2.19113e-06 0.000226858 2.00061e-06 0.000195338 1.80976e-06 0.000164961 1.67733e-06 0.000137027 1.56738e-06 0.00010938 1.45881e-06 8.3103e-05 1.39893e-06 5.80889e-05 1.33186e-06 3.27147e-05 1.40401e-06 9.77534e-06 1.35899e-06 -1.64345e-05 1.3438e-06 -4.02648e-05 1.33612e-06 -6.35677e-05 1.33745e-06 -8.63657e-05 1.34565e-06 -0.000108928 1.35817e-06 -0.000131064 1.36306e-06 -0.000153091 1.35941e-06 -0.000174488 1.35164e-06 -0.000195421 1.34448e-06 -0.000215735 1.35066e-06 -0.00023527 1.36117e-06 -0.000254517 1.36727e-06 -0.000273438 1.35928e-06 -0.000291717 1.32492e-06 -0.000309479 1.28625e-06 -0.000325774 1.24664e-06 -0.000341033 1.20153e-06 -0.000355107 1.17729e-06 -0.000367583 1.0959e-06 -0.000379225 9.51356e-07 -0.000388962 8.23212e-07 -0.000395641 6.73293e-07 -0.000400293 4.78397e-07 -0.000402086 2.8002e-07 -0.000400604 -1.99602e-08 -0.000396327 -2.61795e-07 -0.000386773 -5.3799e-07 -0.00037464 -9.07384e-07 -0.000359944 -1.29471e-06 -0.000340153 -1.54114e-06 -0.000315209 -1.78289e-06 -0.000288549 -2.00641e-06 -0.00025918 -2.21438e-06 -0.000227457 -2.39469e-06 -0.000193517 -2.57339e-06 -0.000158227 -2.73315e-06 -0.000121238 -2.8815e-06 -8.31892e-05 -2.96779e-06 -4.46078e-05 -3.20857e-06 -7.697e-06 -3.32935e-06 3.2513e-05 -3.41628e-06 7.11307e-05 -3.45893e-06 0.000108837 -3.34425e-06 0.00014621 -2.90612e-06 0.00018118 -2.42415e-06 0.000207986 -2.07882e-06 0.000227446 -1.81143e-06 0.000241731 -1.67689e-06 0.000251798 -1.59638e-06 0.000260011 -1.50992e-06 0.000267393 -1.2523e-06 0.000274406 -8.41636e-07 0.000277762 -5.0271e-07 0.000275398 -2.66278e-07 0.000268417 -1.48599e-07 0.000258676 -4.48931e-08 0.000247852 1.45775e-08 0.000235967 3.22131e-08 0.000223781 1.53775e-07 0.000212142 2.84752e-07 0.000199012 3.83627e-07 0.000184524 4.64032e-07 0.000169204 5.16442e-07 0.000153285 5.40758e-07 0.000137251 5.4117e-07 0.000121477 5.2436e-07 0.000106317 4.92289e-07 9.20171e-05 4.4349e-07 7.88111e-05 3.74978e-07 6.69227e-05 2.82772e-07 5.66138e-05 1.62407e-07 4.8195e-05 4.2024e-05 4.94065e-07 6.21088e-07 7.08747e-07 7.54236e-07 7.56477e-07 7.12783e-07 6.90168e-07 5.42828e-07 4.09296e-07 2.66086e-07 6.15162e-08 -1.52226e-07 -4.11126e-07 -7.91438e-07 -1.14538e-06 -1.39299e-06 -1.74055e-06 -2.00964e-06 -2.39464e-06 -2.59401e-06 -2.62851e-06 -2.83855e-06 -2.87268e-06 -2.83971e-06 -2.94131e-06 -3.24207e-06 -3.46203e-06 -3.6505e-06 -3.4486e-06 -2.99801e-06 -2.54164e-06 -2.25949e-06 -1.96884e-06 -1.37052e-06 -4.53726e-07 5.6427e-07 1.56501e-06 2.71998e-06 3.70415e-06 4.49209e-06 5.04373e-06 5.36112e-06 5.40747e-06 5.29228e-06 5.04579e-06 4.68699e-06 4.28694e-06 3.87089e-06 3.4587e-06 3.05657e-06 2.66764e-06 2.31784e-06 2.02409e-06 1.79272e-06 1.61848e-06 1.47595e-06 1.34753e-06 1.2303e-06 1.14156e-06 1.06858e-06 9.98234e-07 9.99084e-07 9.81833e-07 9.3655e-07 9.04895e-07 8.6443e-07 8.2459e-07 8.02857e-07 7.74086e-07 7.58966e-07 7.23443e-07 7.38588e-07 7.36434e-07 7.57778e-07 7.59743e-07 7.76778e-07 7.70019e-07 8.13399e-07 8.03574e-07 8.04e-07 8.09105e-07 7.7254e-07 7.33121e-07 6.1806e-07 5.80037e-07 5.02417e-07 3.74939e-07 3.6614e-07 2.19495e-07 2.27943e-07 -2.38051e-08 -2.04141e-07 -3.82953e-07 -7.17787e-07 -8.85134e-07 -1.45152e-06 -1.87173e-06 -2.30187e-06 -2.51324e-06 -2.71955e-06 -2.54121e-06 -2.18848e-06 -1.99489e-06 -1.17401e-06 -4.90137e-07 5.07592e-07 1.67128e-06 2.70461e-06 3.62111e-06 4.47085e-06 5.14464e-06 5.5643e-06 5.75382e-06 5.65208e-06 5.31866e-06 4.87109e-06 4.3583e-06 3.8582e-06 3.38957e-06 2.91761e-06 2.47631e-06 2.03057e-06 1.62988e-06 1.28349e-06 1.01013e-06 8.1641e-07 6.68287e-07 6.00026e-07 5.16852e-07 4.97767e-07 4.20481e-07 3.94384e-07 3.31469e-07 3.07561e-07 2.6159e-07 2.63658e-07 2.73079e-07 3.1757e-07 3.11377e-07 3.61362e-07 4.13133e-07 4.19739e-07 4.90219e-07 4.62094e-07 5.32137e-07 5.37018e-07 5.64025e-07 6.29026e-07 6.08195e-07 7.7478e-07 7.87645e-07 8.19817e-07 7.05023e-07 4.16997e-07 3.20171e-07 1.47243e-07 1.83295e-07 1.24248e-07 1.92594e-07 1.2468e-07 5.68371e-08 -1.10897e-07 -2.46737e-07 -3.60883e-07 -5.88118e-07 -7.50787e-07 -8.61647e-07 -1.1594e-06 -1.0283e-06 -1.32527e-06 -1.21817e-06 -1.4476e-06 -1.28878e-06 -1.27633e-06 -9.41629e-07 -7.70098e-07 -5.34454e-07 1.8654e-08 4.36996e-07 1.05333e-06 1.59095e-06 2.15259e-06 2.75169e-06 3.17913e-06 3.63925e-06 3.98476e-06 4.29579e-06 4.4161e-06 4.36182e-06 4.2474e-06 4.03203e-06 3.74944e-06 3.43143e-06 3.03947e-06 2.7012e-06 2.33598e-06 2.03511e-06 1.75689e-06 1.5064e-06 1.30754e-06 1.1173e-06 9.96616e-07 8.40948e-07 7.58594e-07 6.3291e-07 5.69648e-07 5.10729e-07 4.28547e-07 4.62128e-07 4.20743e-07 4.17505e-07 4.26483e-07 4.02139e-07 4.39883e-07 4.22403e-07 4.35335e-07 4.29438e-07 4.2818e-07 4.40874e-07 4.23954e-07 4.51128e-07 4.34109e-07 4.4511e-07 4.46373e-07 4.43749e-07 4.28565e-07 4.22595e-07 4.16766e-07 4.01179e-07 3.81239e-07 3.58405e-07 2.98122e-07 2.57809e-07 1.59522e-07 8.25234e-08 -5.41619e-08 -1.63746e-07 -2.66041e-07 -4.43256e-07 -5.04016e-07 -6.58393e-07 -7.35423e-07 -9.1819e-07 -1.02671e-06 -1.14704e-06 -1.20628e-06 -1.15418e-06 -1.07977e-06 -9.23637e-07 -7.55566e-07 -4.72941e-07 -1.09656e-07 3.34114e-07 8.68324e-07 1.47968e-06 2.10593e-06 2.62478e-06 3.0625e-06 3.43931e-06 3.71239e-06 3.87417e-06 3.87179e-06 3.74573e-06 3.57199e-06 3.30415e-06 3.01862e-06 2.69235e-06 2.40027e-06 2.10962e-06 1.85684e-06 1.62121e-06 1.43613e-06 1.31131e-06 1.19091e-06 1.08027e-06 1.00875e-06 9.46948e-07 8.65958e-07 8.49972e-07 8.18501e-07 7.86974e-07 8.10999e-07 7.81307e-07 8.57509e-07 8.38323e-07 8.48795e-07 8.60755e-07 8.72024e-07 8.80502e-07 8.88772e-07 8.89128e-07 8.86872e-07 8.79621e-07 8.68961e-07 8.64201e-07 8.56554e-07 8.41157e-07 8.2009e-07 7.82828e-07 7.45268e-07 7.01074e-07 6.45773e-07 5.95628e-07 5.20473e-07 4.17924e-07 3.23649e-07 2.13939e-07 8.85233e-08 -3.94101e-08 -2.08563e-07 -3.36582e-07 -4.68794e-07 -6.3788e-07 -8.10383e-07 -9.00196e-07 -1.00754e-06 -1.10763e-06 -1.20083e-06 -1.28078e-06 -1.37075e-06 -1.45972e-06 -1.55332e-06 -1.62093e-06 -1.77596e-06 -1.81553e-06 -1.83514e-06 -1.81368e-06 -1.70288e-06 -1.46106e-06 -1.21973e-06 -1.0423e-06 -9.06847e-07 -8.27588e-07 -7.65408e-07 -6.86409e-07 -5.28649e-07 -3.20789e-07 -1.52944e-07 -4.35401e-08 9.84881e-09 5.38324e-08 8.22759e-08 9.8452e-08 1.52971e-07 2.059e-07 2.43317e-07 2.70105e-07 2.82749e-07 2.83735e-07 2.74824e-07 2.58584e-07 2.35906e-07 2.07476e-07 1.72933e-07 1.31861e-07 8.33555e-08 ) ; boundaryField { inlet { type calculated; value nonuniform List<scalar> 60 ( 0.000118688 0.000118727 0.000118805 0.000118923 0.000119079 0.000119275 0.00011951 0.000119784 0.000120098 0.000120452 0.000120846 0.00012128 0.000121754 0.000122269 0.000122824 0.00012342 0.000124058 0.000124737 0.000125459 0.000126222 0.000127028 0.000127878 0.00012877 0.000129706 0.000130687 0.000131712 0.000132783 0.000133899 0.000135061 0.00013627 0.000137527 0.000138831 0.000140184 0.000141586 0.000143038 0.00014454 0.000146094 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ) ; } bottom { type calculated; value uniform 0; } outlet { type calculated; value nonuniform List<scalar> 60 ( -1.19748e-05 -1.19845e-05 -1.20039e-05 -1.2033e-05 -1.20719e-05 -1.21204e-05 -1.21787e-05 -1.22466e-05 -1.23242e-05 -1.24115e-05 -1.25084e-05 -1.2615e-05 -1.27312e-05 -1.2857e-05 -1.29924e-05 -1.31374e-05 -1.32918e-05 -1.34558e-05 -1.36293e-05 -1.38121e-05 -1.40044e-05 -1.4206e-05 -1.44169e-05 -1.4637e-05 -1.48662e-05 -1.51046e-05 -1.53519e-05 -1.56081e-05 -1.58732e-05 -1.61469e-05 -1.64291e-05 -1.67198e-05 -1.70186e-05 -1.73255e-05 -1.76402e-05 -1.79625e-05 -1.82921e-05 -1.86286e-05 -1.89717e-05 -1.92607e-05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ) ; } atmosphere { type calculated; value nonuniform List<scalar> 357 ( -0.000284422 -0.000319092 -0.000359238 -0.000402771 -0.000446543 -0.0004899 -0.000531628 -0.000573535 -0.000610465 -0.000643427 -0.000672543 -0.000696012 -0.000713711 -0.000724578 -0.000723848 -0.000712711 -0.00069595 -0.000667454 -0.000632339 -0.000583888 -0.000528699 -0.000471839 -0.000402045 -0.000329674 -0.000257636 -0.000181228 -9.43715e-05 1.24682e-06 0.000104836 0.000203957 0.000289852 0.000362505 0.000432789 0.00050532 0.000576282 0.000634586 0.000684046 0.000724813 0.00074967 0.000760178 0.000757318 0.000742645 0.000716915 0.000685383 0.000648515 0.000608383 0.000567476 0.000526624 0.000486512 0.000447243 0.000409216 0.000373294 0.000339455 0.000307374 0.000276125 0.000244631 0.000212015 0.000178169 0.000143547 0.000107926 7.24002e-05 3.77566e-05 2.49936e-06 -3.32904e-05 -6.68372e-05 -9.91723e-05 -0.00012946 -0.00015805 -0.000185591 -0.000211661 -0.000237199 -0.0002607 -0.000284664 -0.000307427 -0.000331376 -0.000354876 -0.000379594 -0.000403059 -0.000429578 -0.000455281 -0.00048157 -0.000509353 -0.000537072 -0.000566156 -0.000592483 -0.000620749 -0.000647026 -0.000666816 -0.000686526 -0.000695003 -0.000707804 -0.000705403 -0.000695588 -0.000676101 -0.000636504 -0.00059082 -0.000517405 -0.000436002 -0.000339608 -0.000237844 -0.000120348 -4.04214e-06 0.000105123 0.0002245 0.000321481 0.000427043 0.000520235 0.00059761 0.000669424 0.000725965 0.00076668 0.000787643 0.000793436 0.000783533 0.000759988 0.000726707 0.000684532 0.000636 0.000582527 0.000525299 0.000470351 0.000416027 0.000367453 0.000323401 0.000285974 0.000254999 0.000224868 0.00020308 0.00017568 0.000156593 0.000130051 0.000111991 8.85446e-05 7.09701e-05 5.12923e-05 3.48139e-05 1.68031e-05 1.68652e-08 -2.22113e-05 -4.16553e-05 -6.5373e-05 -9.18303e-05 -0.000117332 -0.000148703 -0.000176222 -0.000208319 -0.00023965 -0.000272523 -0.000310074 -0.000344135 -0.000390046 -0.000435633 -0.000483874 -0.000526045 -0.000548553 -0.000566899 -0.000570793 -0.000583284 -0.000587231 -0.000598469 -0.000602797 -0.000607733 -0.000601853 -0.000589504 -0.00056985 -0.000534458 -0.000488468 -0.000436637 -0.000365543 -0.000309316 -0.000225584 -0.000158597 -7.75726e-05 -2.17209e-06 7.74937e-05 0.000146538 0.000218483 0.000290801 0.000356101 0.000424687 0.000484401 0.000538206 0.000587939 0.000624804 0.00065819 0.00068069 0.000696461 0.000702543 0.000697955 0.000687477 0.000665266 0.000639519 0.000607064 0.000571014 0.000534793 0.000494539 0.000456318 0.000415165 0.000375562 0.000337033 0.000297861 0.000262772 0.000223547 0.000190638 0.000154499 0.00012201 9.09219e-05 6.01296e-05 3.38051e-05 4.11652e-06 -2.25345e-05 -4.8866e-05 -7.56929e-05 -9.96134e-05 -0.000126703 -0.000151798 -0.000177718 -0.000203195 -0.000228481 -0.000254482 -0.000279014 -0.00030552 -0.000330726 -0.000356727 -0.000382791 -0.000408756 -0.00043392 -0.000458787 -0.000483308 -0.000506697 -0.000528239 -0.000547958 -0.000563671 -0.000576782 -0.000584024 -0.000588148 -0.000585629 -0.000577685 -0.000564029 -0.000538797 -0.000509288 -0.000468914 -0.000423279 -0.000367076 -0.00030425 -0.00023358 -0.000156994 -7.93544e-05 2.54397e-06 8.04817e-05 0.00015924 0.000235852 0.000309649 0.000381648 0.000447969 0.000505304 0.000552046 0.000590258 0.000618963 0.000637577 0.000645186 0.000642973 0.00063266 0.000615267 0.000592214 0.0005648 0.000534949 0.000502777 0.000468402 0.000432855 0.000397469 0.000362636 0.000328333 0.000293536 0.000259546 0.00022693 0.0001954 0.000165042 0.000137043 0.000109411 8.31345e-05 5.80648e-05 3.27444e-05 9.69914e-06 -1.64153e-05 -4.02753e-05 -6.35797e-05 -8.6377e-05 -0.000108937 -0.000131072 -0.000153091 -0.000174486 -0.000195414 -0.000215724 -0.000235265 -0.000254509 -0.000273423 -0.000291696 -0.000309442 -0.000325736 -0.000340989 -0.000355051 -0.000367533 -0.00037915 -0.000388859 -0.000395546 -0.000400183 -0.000401961 -0.000400476 -0.000396158 -0.000386645 -0.000374508 -0.000359775 -0.00033998 -0.000315119 -0.000288442 -0.00025908 -0.000227364 -0.000193438 -0.000158137 -0.000121149 -8.30956e-05 -4.45402e-05 -7.54197e-06 3.25525e-05 7.11503e-05 0.000108816 0.000146099 0.000180938 0.000207745 0.000227268 0.000241595 0.000251719 0.000259949 0.000267314 0.000274248 0.000277554 0.00027523 0.000268308 0.000258623 0.000247808 0.000235938 0.000223765 0.000212087 0.000198959 0.000184487 0.000169178 0.000153272 0.00013725 0.000121486 0.000106333 9.20398e-05 7.88395e-05 6.69573e-05 5.66548e-05 4.82435e-05 4.21073e-05 ) ; } frontBack { type empty; value nonuniform 0(); } } // ************************************************************************* //
9e5d841b8d110a1c05e77c06cb528f632f4bf762
53bea944a71aa50fea6a1980b82a7572ecb9d885
/Timber/timber.cpp
0b635a7cceb33add0f8f4ca62539aab068a839cb
[]
no_license
alleboudy/practicingcpp
6e5b59ddfa701eaa78f0fe749326601801fef6de
1df16cc2cd0f3da94f896c7dd80cb5b9d356b835
refs/heads/master
2021-04-18T19:18:34.483734
2018-03-28T14:53:15
2018-03-28T14:53:15
126,491,229
0
0
null
null
null
null
UTF-8
C++
false
false
10,575
cpp
timber.cpp
// hellosfml.cpp : Defines the entry point for the console application. #include "stdafx.h" #include <SFML/Graphics.hpp> #include <sstream> #include<SFML/Audio.hpp> using namespace sf; void updateBranches(int seed); const int NUM_BRANCHES=6; Sprite branches[NUM_BRANCHES]; enum class Side {LEFT,RIGHT,NONE}; Side branchPositions[NUM_BRANCHES]; int main() { //Create a video mode object VideoMode vm(1920,1080); int score =0; Text messageText; Text scoreText; Font font; font.loadFromFile("fonts/KOMIKAP_.ttf"); messageText.setFont(font); scoreText.setFont(font); messageText.setString("Press enter to start!"); scoreText.setString("Score = 0 "); messageText.setCharacterSize(75); scoreText.setCharacterSize(100); messageText.setFillColor(Color::White); scoreText.setFillColor(Color::White); FloatRect textRect = messageText.getLocalBounds(); messageText.setOrigin(textRect.left+textRect.width/2.,textRect.top+textRect.height/2.); messageText.setPosition(1920/2.,1080/2.); scoreText.setPosition(20,20); //Create and open a window for the game RenderWindow window(vm,"Timberyastaaa:D",Style::Fullscreen); Texture textureBackground; textureBackground.loadFromFile("graphics/background.png"); Sprite spriteBackground ; spriteBackground.setTexture(textureBackground); spriteBackground.setPosition(0,0); Texture textureTree; textureTree.loadFromFile("graphics/tree.png"); Sprite spriteTree; spriteTree.setPosition(810,0); spriteTree.setTexture(textureTree); bool beeActive=false; float beeSpeed = 0.0f; Texture textureBee; textureBee.loadFromFile("graphics/bee.png"); Sprite spriteBee; spriteBee.setTexture(textureBee); spriteBee.setPosition(700,700); Texture textureCloud; textureCloud.loadFromFile("graphics/cloud.png"); Sprite spriteCloud1; Sprite spriteCloud2; Sprite spriteCloud3; spriteCloud1.setTexture(textureCloud); spriteCloud2.setTexture(textureCloud); spriteCloud3.setTexture(textureCloud); spriteCloud1.setPosition(0,0); spriteCloud2.setPosition(0,300); spriteCloud3.setPosition(0,450); bool cloud1Active = false; bool cloud2Active = false; bool cloud3Active = false; float cloud1Speed = 0.0f; float cloud2Speed = 0.0f; float cloud3Speed = 0.0f; bool paused = true; Clock clock; RectangleShape timeBar; float timeBarStartWidth =400; float timeBarHeight =80; timeBar.setSize(Vector2f(timeBarStartWidth,timeBarHeight)); timeBar.setFillColor(Color::Blue); timeBar.setPosition(1920/2-timeBarStartWidth/2,880); Time gameTimeTotal; float timeRemaining = 6.0f; float timeBarWidthPerSecond = timeBarStartWidth/timeRemaining; Texture textureBranch; textureBranch.loadFromFile("graphics/branch.png"); for (int i = 0; i < NUM_BRANCHES; i++) { branches[i].setTexture(textureBranch); branches[i].setPosition(-2000,-2000); branches[i].setOrigin(220,20); } Texture texturePlayer; texturePlayer.loadFromFile("graphics/player.png"); Sprite spritePlayer; spritePlayer.setTexture(texturePlayer); spritePlayer.setPosition(580,720); Side playerSide = Side::LEFT; Texture textureRIP; textureRIP.loadFromFile("graphics/rip.png"); Sprite spriteRIP; spriteRIP.setTexture(textureRIP); spriteRIP.setPosition(600,860); Texture textureAxe; textureAxe.loadFromFile("graphics/axe.png"); Sprite spriteAxe; spriteAxe.setTexture(textureAxe); spriteAxe.setPosition(700,830); const float AXE_POSITION_LEFT =700; const float AXE_POSITION_RIGHT =1075; Texture textureLog; textureLog.loadFromFile("graphics/log.png"); Sprite spriteLog; spriteLog.setTexture(textureLog); spriteLog.setPosition(810,720); bool logActive = false; float logSpeedX = 1000; float logspeedY = -1500; bool acceptInput = false; SoundBuffer chopBuffer; chopBuffer.loadFromFile("sound/chop.wav"); Sound chop; chop.setBuffer(chopBuffer); SoundBuffer deathBuffer; deathBuffer.loadFromFile("sound/death.wav"); Sound death; death.setBuffer(deathBuffer); SoundBuffer ootBuffer; ootBuffer.loadFromFile("sound/out_of_time.wav"); Sound oot; oot.setBuffer(ootBuffer); while (window.isOpen()) { Event event; while (window.pollEvent(event)) { if (event.type == Event::KeyReleased&&!paused) { acceptInput = true; spriteAxe.setPosition(2000,spriteAxe.getPosition().y); } } /* Handle player inputs here */ if (Keyboard::isKeyPressed(Keyboard::Escape)) { window.close(); } if (Keyboard::isKeyPressed(Keyboard::Return)) { paused=false; timeRemaining=5; score = 0; for (int i = 0; i < NUM_BRANCHES; i++) { branchPositions[i] = Side::NONE; } spriteRIP.setPosition(675,2000); spritePlayer.setPosition(580,720); acceptInput=true; } if (acceptInput) { if (Keyboard::isKeyPressed(Keyboard::Right)) { playerSide = Side::RIGHT; score++; timeRemaining+=2/score + .15; spriteAxe.setPosition(AXE_POSITION_RIGHT,spriteAxe.getPosition().y); spritePlayer.setPosition(1200,720); updateBranches(score); spriteLog.setPosition(810,720); logSpeedX =-5000; logActive = true; acceptInput = false; chop.play(); } if (Keyboard::isKeyPressed(Keyboard::Left)) { playerSide = Side::LEFT; score++; timeRemaining+=2/score + .15; spriteAxe.setPosition(AXE_POSITION_LEFT,spriteAxe.getPosition().y); spritePlayer.setPosition(580,720); updateBranches(score); spriteLog.setPosition(810,720); logSpeedX =5000; logActive = true; acceptInput = false; chop.play(); } } /* update the scene */ if (!paused) { Time dt =clock.restart(); timeRemaining-=dt.asSeconds(); timeBar.setSize(Vector2f(timeBarWidthPerSecond*timeRemaining,timeBarHeight)); if (timeRemaining<=0.0f) { paused=true; messageText.setString("time out!"); FloatRect textRect = messageText.getLocalBounds(); messageText.setOrigin(textRect.left+textRect.width/2.,textRect.top+textRect.height/2.); messageText.setPosition(1920/2.0f,1080/2.f); oot.play(); } if (!beeActive) { srand((int)time(0)*10); beeSpeed = (rand()%200)+200; srand((int)time(0)*10); float height =(rand()%500)+500; spriteBee.setPosition(2000,height); beeActive=true; }else { spriteBee.setPosition( spriteBee.getPosition().x-(beeSpeed*dt.asSeconds()), spriteBee.getPosition().y); if (spriteBee.getPosition().x<-100) { beeActive=false; } } if (!cloud1Active) { srand((int)time(0)*10); cloud1Speed = (rand()%200); srand((int)time(0)*10); float height = (rand()%150)-150; spriteCloud1.setPosition(-200,height); cloud1Active = true; } else { spriteCloud1.setPosition( spriteCloud1.getPosition().x+(cloud1Speed*dt.asSeconds()), spriteCloud1.getPosition().y); if (spriteCloud1.getPosition().x>1920) { cloud1Active=false; } } if (!cloud2Active) { srand((int)time(0)*20); cloud2Speed = (rand()%200); srand((int)time(0)*20); float height = (rand()%300)-150; spriteCloud2.setPosition(-200,height); cloud2Active = true; } else { spriteCloud2.setPosition( spriteCloud2.getPosition().x+(cloud2Speed*dt.asSeconds()), spriteCloud2.getPosition().y); if (spriteCloud2.getPosition().x>1920) { cloud2Active=false; } } if (!cloud3Active) { srand((int)time(0)*30); cloud3Speed = (rand()%200); srand((int)time(0)*30); float height = (rand()%450)-150; spriteCloud3.setPosition(-200,height); cloud3Active = true; } else { spriteCloud3.setPosition( spriteCloud3.getPosition().x+(cloud3Speed*dt.asSeconds()), spriteCloud3.getPosition().y); if (spriteCloud3.getPosition().x>1920) { cloud3Active=false; } } std::stringstream ss; ss<<"Score "<<score; scoreText.setString(ss.str()); for (int i = 0; i < NUM_BRANCHES; i++) { float height = i*150; if (branchPositions[i]==Side::LEFT) { branches[i].setPosition(610,height); branches[i].setRotation(180); }else if (branchPositions[i]==Side::RIGHT) { branches[i].setPosition(1330,height); branches[i].setRotation(0); }else { branches[i].setPosition(3000,height); } } if (logActive) { spriteLog.setPosition(spriteLog.getPosition().x+(logSpeedX*dt.asSeconds()),spriteLog.getPosition().y+logspeedY*dt.asSeconds()); if (spriteLog.getPosition().x<-100||spriteLog.getPosition().x>2000) { logActive=false; spriteLog.setPosition(810,720); } } if (branchPositions[5]==playerSide) { paused=true; acceptInput=false; spriteRIP.setPosition(525,760); spritePlayer.setPosition(2000,660); messageText.setString("Wasted!"); FloatRect textrect = messageText.getLocalBounds(); messageText.setOrigin(textrect.left+textrect.width/2.,textrect.top+textRect.height/2.); messageText.setPosition(1920/2.,1080/2.); death.play(); } } /* draw the scene */ //clear everything from the previous frame window.clear(); window.draw(spriteBackground); window.draw(spriteCloud1); window.draw(spriteCloud2); window.draw(spriteCloud3); for (int i = 0; i < NUM_BRANCHES; i++) { window.draw(branches[i]); } window.draw(spriteTree); window.draw(spritePlayer); window.draw(spriteAxe); window.draw(spriteRIP); window.draw(spriteBee); //draw the new scene here //show what has been drawn window.draw(scoreText); window.draw(timeBar); if (paused) { window.draw(messageText); } window.display(); } return 0; } void updateBranches(int seed){ for (int i = NUM_BRANCHES-1; i > 0; i--) { branchPositions[i]=branchPositions[i-1]; } srand((int)time(0)+seed); int r = (rand()%5); switch (r) { case 0: branchPositions[0] = Side::LEFT; break; case 1: branchPositions[0] = Side::RIGHT; break; default: branchPositions[0] = Side::NONE; break; } }
8066611907599c3bb37a42acab36a09865d248b4
299b377022f52b20e3c9696950da9007e9b078a4
/src/blas_like/level3/Trsm/RLT.hpp
1166cc030e980336075b1c2f449f247a130991ad
[ "BSD-3-Clause", "Apache-2.0" ]
permissive
sg0/Elemental
43cba65d001de299167363c349127cf8c23f7403
614f02509690449b553451e36bc78e7e132ea517
refs/heads/master
2021-01-15T09:33:56.394836
2016-02-29T18:25:53
2016-02-29T18:25:53
19,929,637
1
0
null
null
null
null
UTF-8
C++
false
false
2,461
hpp
RLT.hpp
/* Copyright (c) 2009-2015, Jack Poulson All rights reserved. This file is part of Elemental and is under the BSD 2-Clause License, which can be found in the LICENSE file in the root directory, or at http://opensource.org/licenses/BSD-2-Clause */ namespace El { namespace trsm { // Right Lower (Conjugate)Transpose (Non)Unit Trsm // X := X tril(L)^-T, // X := X tril(L)^-H, // X := X trilu(L)^-T, or // X := X trilu(L)^-H template<typename F> inline void RLT ( Orientation orientation, UnitOrNonUnit diag, const AbstractDistMatrix<F>& LPre, AbstractDistMatrix<F>& XPre, bool checkIfSingular ) { DEBUG_ONLY( CallStackEntry cse("trsm::RLT"); if( orientation == NORMAL ) LogicError("Expected (Conjugate)Transpose option"); ) const Int m = XPre.Height(); const Int n = XPre.Width(); const Int bsize = Blocksize(); const Grid& g = LPre.Grid(); auto LPtr = ReadProxy<F,MC,MR>( &LPre ); auto& L = *LPtr; auto XPtr = ReadWriteProxy<F,MC,MR>( &XPre ); auto& X = *XPtr; DistMatrix<F,STAR,STAR> L11_STAR_STAR(g); DistMatrix<F,VR, STAR> L21_VR_STAR(g); DistMatrix<F,STAR,MR > L21Trans_STAR_MR(g); DistMatrix<F,VC, STAR> X1_VC_STAR(g); DistMatrix<F,STAR,MC > X1Trans_STAR_MC(g); const Range<Int> outerInd( 0, m ); for( Int k=0; k<n; k+=bsize ) { const Int nb = Min(bsize,n-k); const Range<Int> ind1( k, k+nb ), ind2( k+nb, n ); auto L11 = L( ind1, ind1 ); auto L21 = L( ind2, ind1 ); auto X1 = X( outerInd, ind1 ); auto X2 = X( outerInd, ind2 ); L11_STAR_STAR = L11; X1_VC_STAR.AlignWith( X2 ); X1_VC_STAR = X1; LocalTrsm ( RIGHT, LOWER, orientation, diag, F(1), L11_STAR_STAR, X1_VC_STAR, checkIfSingular ); X1Trans_STAR_MC.AlignWith( X2 ); Transpose( X1_VC_STAR, X1Trans_STAR_MC ); Transpose( X1Trans_STAR_MC, X1 ); L21_VR_STAR.AlignWith( X2 ); L21_VR_STAR = L21; L21Trans_STAR_MR.AlignWith( X2 ); Transpose( L21_VR_STAR, L21Trans_STAR_MR, (orientation==ADJOINT) ); // X2[MC,MR] -= X1[MC,*] (L21[MR,*])^(T/H) // = X1^T[* ,MC] (L21^(T/H))[*,MR] LocalGemm ( TRANSPOSE, NORMAL, F(-1), X1Trans_STAR_MC, L21Trans_STAR_MR, F(1), X2 ); } } } // namespace trsm } // namespace El
825b14e7de6e9402d12292a42126cbd41c69774a
20a5975e1ffe7d03a84b404af87bda6638ba7c18
/allCodes/3.Takrorlanuvchi jarayonlar(41-79)/example-46/index.cpp
31dbb6a31ddb03920a4a03c7f43c723f0b09ef13
[]
no_license
qobulovasror/c-da-oddiy-dasturlar
8442c6d0ae175048ea17d444ee01632dffef4951
d7a413e18cdea0973dd36ef1d7a5b8aedea0a802
refs/heads/main
2023-02-18T19:56:20.513970
2023-02-08T11:39:25
2023-02-08T11:39:25
324,215,466
2
0
null
null
null
null
UTF-8
C++
false
false
230
cpp
index.cpp
// 46. 10 dan 40 gacha bo’lgan barcha butun sonlarning kvadratlarini chop etuvchi dastur tuzing #include <iostream> using namespace std; int main() { float i,s=0; for(i=10;i<40;i++) {s=i*i;cout<<s<<endl; }return 0;}
3a4e9b0f74a71d7bd2c2d57714777def0a96673b
b269392cc4727b226e15b3f08e9efb41a7f4b048
/CodeForces/CodeForces 2A.cpp
9271c46fc77ef7ad9f35a5a7f7b95beebc676e20
[]
no_license
ThoseBygones/ACM_Code
edbc31b95077e75d3b17277d843cc24b6223cc0c
2e8afd599b8065ae52b925653f6ea79c51a1818f
refs/heads/master
2022-11-12T08:23:55.232349
2022-10-30T14:17:23
2022-10-30T14:17:23
91,112,483
1
0
null
null
null
null
UTF-8
C++
false
false
1,053
cpp
CodeForces 2A.cpp
#include<iostream> #include<algorithm> #include<cstring> using namespace std; struct player { string name; int score; } sum[1005],temp[1005],fin[1005]; int main() { int i,j,k,n,cnt=0; cin >> n; for(i=0,k=0; i<n; i++,k++) { sum[k].score=0; cin >> temp[i].name >> temp[i].score; for(j=0;j<k;j++) { if(temp[i].name==sum[j].name) { k--; break; } } sum[j].name=temp[i].name; sum[j].score+=temp[i].score; } for(i=0;i<k;i++) cnt=max(cnt,sum[i].score); for(i=0,k=0;i<n;i++,k++) { fin[i].score=0; for(j=0;j<k;j++) { if(temp[i].name==fin[j].name) { k--; break; } } fin[j].name=temp[i].name; fin[j].score+=temp[i].score; if(fin[j].score>=cnt && sum[j].score==cnt) { cout << fin[j].name << endl; break; } } return 0; }
798ff179a170e974a8accb9e1d272b4c5aab93cf
71ff6e960a3acbfe4cfa2c275a727e6456161b59
/LetterCounter.cpp
600bf83428ac4500c5aad63a0a8d8edc062e8bb2
[]
no_license
rodgerthat/CSCI_3080_LetterCounter
244be9f88c246209afbef7109ff38533cfd49bd0
88af12162e792f46831595b3ba4143b66f7b6b2e
refs/heads/master
2021-01-22T19:40:51.634864
2017-03-20T00:30:40
2017-03-20T00:30:40
85,223,550
0
0
null
null
null
null
UTF-8
C++
false
false
667
cpp
LetterCounter.cpp
// LetterCounter.cpp : Count the frequency of a letter in an array of chars #include <iostream> using namespace::std; int main() { int x[26] = { 0 }; int i; char c; cout << "start typing. hit enter to get results" << endl; while ((c = cin.get()) != '\n') { ++x[c - 'a']; } for (i = 0; i < 26; i++) { char currentLetter = 'a' + i; cout << currentLetter << " : " << x[i] << endl; } cout << "Wouldst thou likest to sorteth thine characters? y / n : " << endl; c = cin.get(); if (c == 'y') { } cout << "Note to self, add sorting algorithm" << endl; cout << "peace out. " << endl; return 0; }
1dea8c869a62b7bd4f9db256a1377e1c5e823fae
f96f9244a9e1e4711c27c6d969e513999c4e84a5
/middleware/buffer/sample/client/source/octet.cpp
c7ec49bd10f7566d2919b7f2371bcfb0ffd36d86
[ "MIT" ]
permissive
casualcore/casual
88965684f908a46dcc998238aa78726e0143bb05
7311cc481f3b823d0c86fc09171fbd17e3c39fc1
refs/heads/feature/1.7/main
2023-09-04T01:22:09.633159
2023-07-07T15:33:29
2023-07-18T08:48:49
477,282,028
14
4
MIT
2023-09-14T07:52:38
2022-04-03T08:34:20
C++
UTF-8
C++
false
false
925
cpp
octet.cpp
//! //! Copyright (c) 2015, The casual project //! //! This software is licensed under the MIT license, https://opensource.org/licenses/MIT //! /* * Disclaimer: This might not be a valid C-function * * Disclaimer: A lot of error handling is missing */ #include "xatmi.h" #include "casual/buffer/octet.h" #include <cstddef> #include <cstdio> #include <cstring> int call_with_octet() { char* buffer; long length; const char* json; int result; json = "{ 'id': 25}"; length = strlen( json); buffer = tpalloc( CASUAL_OCTET, CASUAL_OCTET_JSON, 0); result = casual_octet_set( &buffer, json, length); if( result) { /* something went wrong */ } tpcall( "some_service", buffer, length, &buffer, &length, TPSIGRSTRT); result = casual_octet_get( buffer, &json, &length); if( result) { /* something went wrong */ } tpfree( buffer); return 0; }
0111e87745d5dba117d11a8e1754525bd8f4b1a3
877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a
/app/src/main/cpp/dir7941/dir7942/dir8062/dir8063/dir8254/dir8444/dir8720/dir11459/file11520.cpp
e760fc322ab6ed9d4e151304f83a21f6ee8aa2d8
[]
no_license
tgeng/HugeProject
829c3bdfb7cbaf57727c41263212d4a67e3eb93d
4488d3b765e8827636ce5e878baacdf388710ef2
refs/heads/master
2022-08-21T16:58:54.161627
2020-05-28T01:54:03
2020-05-28T01:54:03
267,468,475
0
0
null
null
null
null
UTF-8
C++
false
false
115
cpp
file11520.cpp
#ifndef file11520 #error "macro file11520 must be defined" #endif static const char* file11520String = "file11520";
0dff2a9ac7abd4d9e2ec963f6ecfba27c5ad75c8
c20714631fd345f86ab4babcbd98fd0fd7082e5f
/GLRender/GLRender/src/Model.h
931b2849a755b9d8a1429fade3f2c6bfee100b25
[]
no_license
kvanderlaag/OpenGLRenderer
b25e62881af6e52304ee16e860324f5bd6e76806
8ed883d975241d0e5bd96452ec8e8ae2c5159bb0
refs/heads/master
2023-07-07T14:05:34.948634
2023-06-29T20:10:53
2023-06-29T20:10:53
59,981,332
0
0
null
null
null
null
UTF-8
C++
false
false
1,517
h
Model.h
#pragma once #include <Windows.h> #include <GL/glew.h> #include <GL/GL.h> #include <GL/GLU.h> #include "glm/glm.hpp" #include "glm/gtc/matrix_transform.hpp" #include "glm/gtc/type_ptr.hpp" #include "SOIL.h" #include "tiny_obj_loader.h" #include <string> #include <vector> #include <fstream> #include <iostream> struct vertexData { glm::vec3 position; glm::vec2 uv; glm::vec3 normal; }; struct material { glm::vec3 ka; glm::vec3 kd; glm::vec3 ks; GLfloat ns; GLfloat d; GLuint texture; }; class Model { public: Model(const std::string& filename, GLint modelTransform, GLint shaderProgram, GLint shadowShaderProgram, GLuint shadowMap, bool flipNormals); ~Model(); void Draw(glm::mat4& viewProj); void DrawShadows(glm::mat4& viewProj); void rotate(glm::vec3 degrees); void translate(glm::vec3 movement); void scale(glm::vec3 scale); private: GLuint *mVbo, *mEbo, *mVao; GLuint *mShadowVbo, *mShadowEbo, *mShadowVao; GLuint mShadowMap; GLuint mTextureID; GLuint* mTextures; GLuint** mMaterialIDs; struct material* mMaterialStructs; std::vector<tinyobj::shape_t> mShapes; std::vector<tinyobj::material_t> mMaterials; glm::vec3 mPosition; glm::vec3 mRotation; glm::vec3 mScale; std::vector<struct vertexData*> mVertexData; std::vector<GLuint*> mIndexData; void calculateTransform(); int mTextureWidth, mTextureHeight; unsigned char* mTexture; GLint mModelTransform; GLint mShaderProgram; GLint mShadowShaderProgram; glm::mat4 matTransform; glm::mat4 mNormalMat; };
9bc33b06bca16e612f465b83ad94f734a46f9d5b
76cc7f092b553aa01ca5db30107a6bb38a6f5f4e
/C++Project/LoanControl.cpp
2e8b73dba3d91bb554384abb4a5fd5cad2510f3b
[]
no_license
AlexcityU/C-Project
c8c846b06ea59aaa17b89be4bec8884e5e2532d5
b7ac20aae9d05813c627cb0c46aa96d28f30b5d7
refs/heads/master
2020-05-04T00:21:28.396402
2019-04-16T14:19:58
2019-04-16T14:19:58
178,882,714
1
1
null
2019-04-16T09:14:47
2019-04-01T14:36:59
C++
UTF-8
C++
false
false
4,642
cpp
LoanControl.cpp
#include "LoanControl.h" User ** LoanControl::retrieveUsers() { string str = readFile("user.txt"); if (str.empty()) return false; stringstream ss(str); string token; // count the number of line inside the user.txt int u = 0; while (getline(ss, token)) { if (!token.empty()) u++; } // reset the default counter of stringstream ss ss.clear(); ss.seekg(0, ios::beg); // define the size of the records array User **users = (u) ? new User*[u] : nullptr; int i = 0; while (getline(ss, token)) { if (!token.empty()) { string id, name, section, date, address; stringstream line(token); getline(line, id, '|'); getline(line, name, '|'); getline(line, section, '|'); getline(line, date, '|'); getline(line, address, '|'); if (id[0] == 'S') { string rank; getline(line, rank, '|'); if (id[2] == 'T') { users[i++] = new Scout(id, name, section, date, address, rank); } else if (id[2] == 'M') { users[i++] = new Scouter(id, name, section, date, address, rank); } } else if (id[0] == 'V') { users[i++] = new Venture(id, name, section, date, address); } else if (id[0] == 'R') { users[i++] = new Rover(id, name, section, date, address); } } } return users; } void LoanControl::setUser() { int count = getRecord(0)->getCount(); for (int i = 0; i < count; i++) { LoanRecord *r = getRecord(i); if (!r->getSid().compare(user->getId())) { if (!r->getStatus().compare("out for loan")) { for (int j = i + 1; j < count; i++) { LoanRecord *r2 = getRecord(j); user->borrowEquip(); if (!r2->getEid().compare(r->getEid())) { if (!r2->getSid().compare(r->getSid())) { if (!r2->getStatus().compare("returned")) { user->returnEquip(); break; } } } } } } } } void LoanControl::addRecord(LoanRecord * r) { int count = getRecord(0)->getCount() - 1; LoanRecord **shift_r = new LoanRecord*[count + 1]; for (int i = 0; i < count; i++) { shift_r[i] = getRecord(i); } shift_r[count] = r; delete[] records; records = shift_r; } void LoanControl::displayLoanAvailableEquipments() { for (int i = 0; i < getEquipment(0)->getCount(); i++) { CampEquipment *e = getEquipment(i); if (e->canLoan()) cout << e->getAllInfo() << endl; } } void LoanControl::displayUserRecords() { // current records? string userId=user->getId(); int rCount = getRecord(0)->getCount(); for (int i = 0; i < rCount ; i++) { LoanRecord *record = getRecord(i); if (!record->getSid().compare(userId)) { string itemId=equipments[i]->getItemId(); bool isReturned = false; for (int q = 0; !isReturned && q < rCount ; q++) { if (!userId.compare(records[q]->getSid()) && !itemId.compare(records[q]->getEid()) && !records[q]->getStatus().compare("returned")) { isReturned = true; } } if (!isReturned) cout << records[i]->getRecord(); } } } bool LoanControl::borrowEquipment(string eid) { for (int i = 0; i < getEquipment(0)->getCount(); i++) { CampEquipment *e = getEquipment(i); if (!e->getItemId().compare(eid)) { if (e->canLoan() && user->borrowEquip()) { // update Equipments e->setStatus("out"); updateEquipments(); // update Records LoanRecord *new_r = new LoanRecord(e->getItemName(), e->getItemId(), user->getId(), "out"); addRecord(new_r); updateRecords(); return true; } else { return false; } } } return false; } bool LoanControl::returnEquipment(string eid) { { for (int i = 0; i < getEquipment(0)->getCount(); i++) { CampEquipment *e = getEquipment(i); if (!e->getItemId().compare(eid)) { if (e->canLoan()) { if (user->borrowEquip()) { // update Equipments e->setStatus("in"); updateEquipments(); // update Records LoanRecord *new_r = new LoanRecord(e->getItemName(), e->getItemId(), user->getId(), "out"); addRecord(new_r); updateRecords(); return true; } } } } } return true; } LoanControl::LoanControl(string username, string password, bool &isUser) : Admin::Admin() { isUser = false; User **users = retrieveUsers(); int i; for (i = 0; i < users[0]->getCount(); i++) { if (!username.compare(users[i]->getId()) && !password.compare(users[i]->getDob())) { for (int j = 0; j < i; j++) { delete users[j]; } for (int j = i + 1; j < users[0]->getCount(); j++) { delete users[j]; } this->user = users[i]; setUser(); delete[] users; isUser = true; break; } } } LoanControl::~LoanControl() { delete user; }
9a14e0fd002794c99c7cf6e460fbf912889d2c56
1b80722ec75e2b5f62104daacc6a8234f937b283
/SuperMyrio_src/Reward.cpp
471236aafb80b4132c3d5eb024d898f2a7defd43
[]
no_license
YaJinK/Super-Myrio
a4e0bfccc95bc1f5379cb2d327f50a799f8c2a40
8266e840cc0d8a114d8912d3ae06c94da7e82b40
refs/heads/master
2020-06-21T04:19:03.249685
2016-11-26T09:47:27
2016-11-26T09:47:27
74,805,899
2
0
null
null
null
null
UTF-8
C++
false
false
1,649
cpp
Reward.cpp
#include "Reward.h" Reward::Reward(LPDIRECT3DDEVICE9 pD3DDevice, char * fileName, float srcWidth, float srcHeight, float x, float y, short currentFrame) : GameResource(pD3DDevice, fileName, srcWidth, srcHeight, x, y) { m_CurrentFrame = currentFrame; m_Status = REWARD_HIDE; short vector = rand() % 2; if (vector == 0) m_Vector = VECTOR_RIGHT; else m_Vector = VECTOR_LEFT; m_OldY = m_Y; m_SpeedY = 0; m_SpeedX = 1.5; } RECT * Reward::GetPosRect(RECT * rect) const { rect->left = (LONG)m_X - 1; rect->top = (LONG)m_Y + 20; rect->right = LONG(m_X + m_SrcWidth + 1); rect->bottom = LONG(m_Y + m_SrcHeight - 1); return rect; } void Reward::UpdateData(char* pKey, float frictionFactor, float gravite, float dragX, float dragY) { if (m_CurrentFrame >= 0 && m_CurrentFrame <= 3) { m_Y -= 2; if (m_Y <= m_OldY - 105) m_Status = REWARD_DESTORY; } else { m_X += m_SpeedX * m_Vector; m_SpeedY = gravite - dragY; m_Y += m_SpeedY; } if (m_Y > 600) m_Status = REWARD_DESTORY; } void Reward::UpdateFrame(char * pKey) { if (m_CurrentFrame >= 0 && m_CurrentFrame < 4) { m_CurrentFrame++; if (m_CurrentFrame == 4) m_CurrentFrame = 0; } m_Src.left = LONG((m_CurrentFrame % 4) * m_SrcWidth); m_Src.top = LONG((m_CurrentFrame / 4) * m_SrcHeight); m_Src.right = LONG(m_Src.left + m_SrcWidth); m_Src.bottom = LONG(m_Src.top + m_SrcHeight); } VECTOR_DIRECTION Reward::GetVector() const { return m_Vector; } void Reward::SetVector(VECTOR_DIRECTION vector) { m_Vector = vector; } REWARD_STATUS Reward::GetStatus() const { return m_Status; } void Reward::SetStatus(REWARD_STATUS status) { m_Status = status; }
edf41ed1d1bdf03e770a0e314d6c030ad780e975
d5e082cd714abd15be80bdfe69163d47246aa32c
/sequential/clp/tsp_clp_old.cpp
77efb3c610684bf43dcd63eb51c977c6a5d7a15d
[]
no_license
xwang182/CS598Parallel
679c4244e0d7927d263e3d5ec62d2457181012fc
50f0f534bf73ca437c11cda66372f7a95922d87b
refs/heads/master
2021-05-03T10:51:09.936529
2016-12-18T07:20:55
2016-12-18T07:20:55
69,373,775
0
1
null
null
null
null
UTF-8
C++
false
false
12,408
cpp
tsp_clp_old.cpp
// Example of using COIN-OR OSI, building the instance internally // with sparse matrix object #include <iostream> #include "OsiClpSolverInterface.hpp" #include "CoinPackedMatrix.hpp" #include "CoinPackedVector.hpp" #include <vector> #include <queue> #include <set> #include <cassert> #include <cstdlib> #include <cmath> #include <sstream> #include <fstream> using namespace std; typedef vector< pair<double, double> > map_t; typedef vector< vector<double> > distance_t; typedef vector< vector<int> > path_map_t; typedef path_map_t idx_map_t; typedef vector<int> path_t; static double best_cost = -1; string itos(int i) {stringstream s; s << i; return s.str(); } map_t readTspFile(string file_path) { map_t output_vector; ifstream infile(file_path); string line; int count = 0; bool foundEntry = false; while (getline(infile, line)) { if (line[0] >= '0' && line[0] <= '9') { foundEntry = true; } if (foundEntry) { // begin to read data std::istringstream iss(line); int index; double x, y; if (!(iss >> index >> x >> y)) { break; } // error output_vector.push_back(make_pair(x, y)); } count++; } return output_vector; } double calcDistance(const pair<double, double> &a, const pair<double, double> &b) { double dx = a.first - b.first; double dy = a.second - b.second; return sqrt(dx * dx + dy * dy); } distance_t calcDistanceMap(const map_t &problem) { distance_t dist; for (size_t i = 0; i < problem.size(); ++i) { vector<double> tmp; const pair<double, double> &a = problem[i]; for (size_t j = 0; j < problem.size(); ++j) { if (i == j) { tmp.push_back(numeric_limits<double>::infinity()); continue; } const pair<double, double> &b = problem[j]; tmp.push_back(calcDistance(a, b)); } dist.push_back(tmp); } return dist; } double calculateCost(double* objective, const double* solution, int num_sols) { double cost = 0; for (int i = 0; i < num_sols; i++) { cost += objective[i] * solution[i]; } return cost; } static int COUNTER = 0; class Constraint { public: Constraint(); Constraint(double p); Constraint(const Constraint &obj, double parent_cost); bool operator< (const Constraint &right) const; double* getRowLowerBound(); double* getRowUpperBound(); double getParentCost(); void addConstraint(double lb, double ub, CoinPackedVector vec); vector<CoinPackedVector> getPackedVectors(); private: vector<double> row_lb; vector<double> row_ub; vector<CoinPackedVector> vecs; double parent_cost; int counter; }; Constraint::Constraint() { parent_cost = 0; this->counter = COUNTER; COUNTER++; } Constraint::Constraint(double p) { parent_cost = p; this->counter = COUNTER; COUNTER++; } Constraint::Constraint(const Constraint &obj, double cost) { row_lb = obj.row_lb; row_ub = obj.row_ub; vecs = obj.vecs; parent_cost = cost; this->counter = COUNTER; COUNTER++; } bool Constraint::operator< (const Constraint &right) const { if (parent_cost == right.parent_cost){ return counter < right.counter; } return parent_cost < right.parent_cost; } double* Constraint::getRowLowerBound() { return (double*)(&row_lb[0]); } double* Constraint::getRowUpperBound() { return (double*)(&row_ub[0]); } vector<CoinPackedVector> Constraint::getPackedVectors() { return vecs; } void Constraint::addConstraint(double lb, double ub, CoinPackedVector vec) { row_lb.push_back(lb); row_ub.push_back(ub); vecs.push_back(vec); } double Constraint::getParentCost() { return parent_cost; } bool sortFunc(pair<double, int> v1, pair<double, int> v2) { return abs(v1.first - 0.5) < abs(v2.first - 0.5); } void printPath(vector<size_t> path) { cout << "Path: "; for (size_t i = 0; i < path.size(); i++) { cout << path[i] << " "; } cout << "" <<endl; } vector<size_t> findShortestPath(path_map_t graph) { vector<size_t> visited; visited.resize(graph.size()); vector<size_t> path; while(true) { bool all_visited = true; size_t source = 0; for (size_t i = 0; i < visited.size(); i++) { if (!visited[i]) { all_visited = false; source = i; break; } } if (all_visited) break; vector<size_t> temp_path; size_t original_source = source; temp_path.push_back(source); visited[source] = 1; while (true) { for (size_t i = 0; i < graph.size(); i++) { if ((i != temp_path[temp_path.size() - 2]/*|| temp_path.size() == 1*/) && graph[source][i]) { temp_path.push_back(i); visited[i] = 1; source = i; break; } } if (source == original_source) { temp_path.pop_back(); // remove 0 break; } } if (path.empty() || temp_path.size() <= path.size()) { path = temp_path; } } return path; } int main(int argc, char* argv[]) { if (argc < 2) { cout << "Usage: tsp_clp .tsp_file_path" << endl; return 1; } string file_path(argv[1]); map_t coords = readTspFile(file_path); distance_t dist = calcDistanceMap(coords); // solveLP(dist, -1, -1); size_t n_cols = dist.size() * (dist.size() - 1) / 2; double *objective = new double[n_cols]; double *col_lb = new double[n_cols]; double *col_ub = new double[n_cols]; // define the objective coefficients // minimize Sum: d_ij x_ij int count = 0; idx_map_t variable_map; for (size_t i = 0; i < dist.size(); i++) { vector<int> row; /*for (size_t j = 0; j < dist.size(); j++) { row.push_back(-1); }*/ row.resize(dist.size()); variable_map.push_back(row); } for (size_t i = 0; i < dist.size() - 1; i++) { for (size_t j = i + 1; j < dist.size(); j++) { objective[count] = dist[i][j]; // set variable map variable_map[i][j] = count; variable_map[j][i] = count; count++; } } // define the variable lower/upper bounds // 0 <= x_ij <= 1 for (size_t i = 0; i < n_cols; i++) { col_lb[i] = 0; col_ub[i] = 1; } // initial constraints Constraint initial_constraint; size_t n_rows = dist.size(); for (size_t i = 0; i < n_rows; i++) { CoinPackedVector vec; for (size_t j = 0; j < n_rows; j++) { if (i == j) continue; vec.insert(variable_map[i][j], 1.0); } initial_constraint.addConstraint(2.0, 2.0, vec); } // DFS set<Constraint> constraints; constraints.insert(initial_constraint); //vector<Constraint> constraints; //constraints.push_back(initial_constraint); const double* final_solution = NULL; int final_num_sols = -1; vector<size_t> final_path; int iter = 0; while (!constraints.empty()) { // cout << "Iteration: " << (iter) << " " << constraints.size() << endl; iter++; Constraint constraint = *(constraints.begin()); constraints.erase(constraints.begin()); //Constraint constraint = constraints.back(); //constraints.pop_back(); double *row_lb = constraint.getRowLowerBound(); double *row_ub = constraint.getRowUpperBound(); vector<CoinPackedVector> vecs = constraint.getPackedVectors(); // define the constraint matrix CoinPackedMatrix *matrix = new CoinPackedMatrix(false, 0, 0); matrix->setDimensions(0, (int)n_cols); for (size_t i = 0; i < vecs.size(); i++) { matrix->appendRow(vecs[i]); } // cout << "row_constraint: " << vecs.size() << endl; // cout << "n_cols: " << n_cols << endl; // Create a problem pointer. We use the base class here. // When we instantiate the object, we need a specific derived class. OsiSolverInterface *si = new OsiClpSolverInterface; // remove message level CoinMessageHandler *msg = si->messageHandler(); msg->setLogLevel(0); si->loadProblem(*matrix, col_lb, col_ub, objective, row_lb, row_ub); si->initialSolve(); if (si->isProvenOptimal()) { int n = si->getNumCols(); // cout << "n: " << n << endl; const double* solution = si->getColSolution(); int all_integers = true; for (int i = 0; i < n; i++) { if (!(solution[i] == 1 || solution[i] == 0)) { all_integers = false; break; } // std::cout << si->getColName(i) << " = " << solution[i] << std::endl; } double cost = si->getObjValue(); // calculateCost(objective, solution, n) if (best_cost != -1 && cost > best_cost) continue; // prune if (all_integers) { // subtour // 1 component // compare to best_cost // > 1 component // add subtour constraint path_map_t graph; // adjacency matrix for (size_t i = 0; i < dist.size(); i++) { vector<int> row; row.resize(dist.size()); graph.push_back(row); } // set up graph for (size_t i = 0; i < dist.size() - 1; i++) { for (size_t j = i + 1; j < dist.size(); j++) { graph[i][j] = (int)(solution[variable_map[i][j]]); graph[j][i] = (int)(solution[variable_map[j][i]]); } } vector<size_t> path = findShortestPath(graph); // find subtour if (path.size() == dist.size()) { // no subtour // cout << "no subtour " << vecs.size() << " " << cost << " " << constraint.getParentCost() << endl; // printPath(path); //if (best_cost == -1 || cost <= best_cost) { best_cost = cost; final_solution = solution; final_num_sols = n; final_path = path; //} } else { // cout << "subtour " << vecs.size() << " " << cost << " " << constraint.getParentCost() << endl; // printPath(path); /* // cout << graph[0][26] << " " << graph[26][0] << endl; for (size_t i = 0; i < dist.size(); i++) { cout << i << ": "; for (size_t j = 0; j < dist.size(); j++) { cout << graph[i][j] << " "; } cout << "" << endl; }*/ Constraint new_constraint(constraint, cost); // new constraint CoinPackedVector vec; size_t path_size = path.size(); for (size_t i = 0; i < path_size; i++) { size_t row = path[i]; size_t col = path[(i+1) % path_size]; vec.insert(variable_map[row][col], 1.0); } new_constraint.addConstraint(-si->getInfinity(), (double)(path_size - 1), vec); constraints.insert(new_constraint); // constraints.push_back(new_constraint); } } else { vector<pair<double, int>> non_integer_sols; for (int i = 0; i < n; i++) { if (solution[i] == 1 || solution[i] == 0) continue; non_integer_sols.push_back(make_pair(solution[i], i)); } // sort non_integer_sols so that by the order of i ~ 0.5 std::sort(non_integer_sols.begin(), non_integer_sols.end(), sortFunc); for (size_t i = 0; i < non_integer_sols.size(); i++) { // cout << non_integer_sols[i].first << " " << non_integer_sols[i].second << endl; // int offset = i; int offset = non_integer_sols[i].second; // branch and bound // LEFT: 0 Constraint new_constraint_1(constraint, cost); // new constraint CoinPackedVector vec_1; vec_1.insert(offset, 1.0); new_constraint_1.addConstraint(0.0, 0.0, vec_1); // RIGHT: 1 Constraint new_constraint_2(constraint, cost); // new constraint CoinPackedVector vec_2; vec_2.insert(offset, 1.0); new_constraint_2.addConstraint(1.0, 1.0, vec_2); // cout << new_constraint_1.getPackedVectors().size() << endl; // cout << new_constraint_2.getPackedVectors().size() << endl; constraints.insert(new_constraint_1); constraints.insert(new_constraint_2); // cout << constraints.size() << endl; // constraints.push_back(new_constraint_1); // constraints.push_back(new_constraint_2); } // cout << constraints.size() << endl; } } else { // no optimal solution found... } } cout << "Iterations: " << iter << endl; cout << "Best Cost: " << best_cost << endl; // cout << "n_cols: " << n_cols << endl; cout << "Path Size: " << final_path.size() << endl; cout << "final_num_sols: " << final_num_sols << endl; if (final_solution) { printPath(final_path); } return 0; }
a2010ecbb40b07144b23288e2b81b7c6cf97ff25
678ab5259f2f17a3b7577c4681b081127608ca6a
/Activity 14 One-dimensional arrays.cpp
76226e06b91b47f097a1762c3fc8eee2bf8cc531
[]
no_license
estultz22/CISP-360
87557ed824db32a3afc6338baaeed7a9e2e27745
d5e1f6b8823d09d69cc3607c575beaafb447faff
refs/heads/master
2020-08-16T05:59:02.953996
2019-12-22T01:18:36
2019-12-22T01:18:36
215,464,957
0
0
null
null
null
null
UTF-8
C++
false
false
1,228
cpp
Activity 14 One-dimensional arrays.cpp
#include <iostream> using std::cout; using std::cin; using std::endl; void getInput(int [], int); void mode(int [], int, int&); int main() { int arraySize, modeNum = 0; cout << "Enter how many numbers you want tested: "; cin >> arraySize; cout << endl; int numArray[arraySize] = {0}; getInput(numArray, arraySize); mode(numArray, arraySize, modeNum); cout << "The most common number is: " << modeNum; return 0; } void getInput(int arrayToInput[], int arrSize) { for (int index = 0; index < arrSize; index++) { cout << "Input number " << index + 1 << ": "; cin >> arrayToInput[index]; } } void mode(int arrayToParse[], int arrSize, int& numMode) { int numOccurs, numMostOccurs = 0, numToReturn = 0; for (int index = 0; index < arrSize; index++) { numOccurs = 0; for (int jindex = 0; jindex < arrSize; jindex++) { if (arrayToParse[index] == arrayToParse[jindex]) numOccurs++; if (numOccurs > numMostOccurs) { numMostOccurs = numOccurs; numToReturn = arrayToParse[index]; } } } numMode = numToReturn; }
0690b845b38037f4b88b663ce51068390cc01910
0a60f0778f9f64430278ccdb599eb169d4ca4154
/include/DBoW2/FCNN.h
e3761f68d3c5ad61dc754350057344a9079278d3
[ "BSD-2-Clause" ]
permissive
ahmorsi/DBoW2
0597c579c1db3f37eccb33b65fab476f2935f19d
41023240d8f6e120d50a32dc2f8d7f493d0e9ee1
refs/heads/master
2021-01-01T04:47:08.752529
2018-01-10T16:27:40
2018-01-10T16:27:40
97,243,809
0
0
null
2017-07-14T14:43:06
2017-07-14T14:43:06
null
UTF-8
C++
false
false
1,600
h
FCNN.h
#ifndef FCNN_H #define FCNN_H #include "FClass.h" namespace DBoW2 { class FCNN : protected FClass { public: /// Descriptor type typedef std::vector<double> TDescriptor; /// Pointer to a single descriptor typedef const TDescriptor *pDescriptor; /// Descriptor length static const int L = 256;//512;//2048; /** * Returns the number of dimensions of the descriptor space * @return dimensions */ inline static int dimensions() { return L; } /** * Calculates the mean value of a set of descriptors * @param descriptors vector of pointers to descriptors * @param mean mean descriptor */ static void meanValue(const std::vector<pDescriptor> &descriptors, TDescriptor &mean); /** * Calculates the (cosine) distance between two descriptors * @param a * @param b * @return (cosine) distance */ static double distance(const TDescriptor &a, const TDescriptor &b); /** * Returns a string version of the descriptor * @param a descriptor * @return string version */ static std::string toString(const TDescriptor &a); /** * Returns a descriptor from a string * @param a descriptor * @param s string version */ static void fromString(TDescriptor &a, const std::string &s); /** * Returns a mat with the descriptors in float format * @param descriptors * @param mat (out) NxL 32F matrix */ static void toMat32F(const std::vector<TDescriptor> &descriptors, cv::Mat &mat); }; } #endif // FCNN_H
68ea65d2a859150c28cec6be7825ff14b9943a6f
03b5b626962b6c62fc3215154b44bbc663a44cf6
/src/instruction/FDIVP.h
0624d894b8bce50b913f55c221864137fec6cc48
[]
no_license
haochenprophet/iwant
8b1f9df8ee428148549253ce1c5d821ece0a4b4c
1c9bd95280216ee8cd7892a10a7355f03d77d340
refs/heads/master
2023-06-09T11:10:27.232304
2023-05-31T02:41:18
2023-05-31T02:41:18
67,756,957
17
5
null
2018-08-11T16:37:37
2016-09-09T02:08:46
C++
UTF-8
C++
false
false
215
h
FDIVP.h
#ifndef FDIVP_H #define FDIVP_H #include "../object.h" namespace n_FDIVP { class CFDIVP :public Object { public: CFDIVP(); ~CFDIVP(); int my_init(void *p=nullptr); }; } using namespace n_FDIVP; #endif
c17ec203b7fdf955add75abc8000c657fbcc6266
d32f5552b7fd679f4d3fd3ccf6f8b4fb0247bb9f
/viewer/Saba/Viewer/ModelDrawer.h
461dc9354cdeadf3c7b1102ce9746fa86b91739e
[ "MIT" ]
permissive
benikabocha/saba
62f442e0f3ea8c47dfc3c5180367e69f077c3978
fa2ea89b1e2108271591c8bcdfcff8fb32e7f528
refs/heads/master
2023-05-14T06:28:56.784898
2023-05-08T13:51:55
2023-05-08T13:51:55
78,288,889
406
77
MIT
2023-05-07T22:38:41
2017-01-07T16:08:14
C++
UTF-8
C++
false
false
1,861
h
ModelDrawer.h
// // Copyright(c) 2016-2017 benikabocha. // Distributed under the MIT License (http://opensource.org/licenses/MIT) // #ifndef SABA_VIEWER_MODELDRAWER_H_ #define SABA_VIEWER_MODELDRAWER_H_ #include "ViewerContext.h" namespace saba { enum class ModelDrawerType { OBJModelDrawer, MMDModelDrawer, XFileModelDrawer, }; class ModelDrawer { public: ModelDrawer(); virtual ~ModelDrawer() {}; ModelDrawer(const ModelDrawer&) = delete; ModelDrawer& operator =(const ModelDrawer&) = delete; virtual ModelDrawerType GetType() const = 0; virtual void Play() = 0; virtual void Stop() = 0; virtual void ResetAnimation(ViewerContext* ctxt) = 0; virtual void DrawUI(ViewerContext* ctxt) = 0; virtual void Update(ViewerContext* ctxt) = 0; virtual void DrawShadowMap(ViewerContext* ctxt, size_t csmIdx) = 0; virtual void Draw(ViewerContext* ctxt) = 0; void SetName(const std::string& name) { m_name = name; } const std::string& GetName() const { return m_name; } void SetBBox(const glm::vec3& bboxMin, const glm::vec3& bboxMax) { m_bboxMin = bboxMin; m_bboxMax = bboxMax; } const glm::vec3& GetBBoxMin() const { return m_bboxMin; } const glm::vec3& GetBBoxMax() const { return m_bboxMax; } const glm::vec3& GetTranslate() const { return m_translate; } const glm::vec3& GetRotate() const { return m_rotate; } const glm::vec3& GetScale() const { return m_scale; } void SetTranslate(const glm::vec3& t); void SetRotate(const glm::vec3& r); void SetScale(const glm::vec3& s); const glm::mat4& GetTransform() const { return m_transform; } protected: void UpdateTransform(); private: std::string m_name; glm::vec3 m_bboxMin; glm::vec3 m_bboxMax; glm::vec3 m_translate; glm::vec3 m_rotate; glm::vec3 m_scale; glm::mat4 m_transform; }; } #endif // !SABA_VIEWER_MODELDRAWER_H_
4dcc21d45c6c928a5e00ef7845ba9da971aeb743
d9ee600433df4bd055cb824168f3914ff01034d4
/6.2.cpp
f13b657b24db05adb18bc27c33862d79ad9aeab8
[]
no_license
mhcoderwl/leetcode
6f756aea274ef385b23b5fe5725e5cac45ba45c9
6b4d89b1b989ac0328a6b709edd3a9e583282509
refs/heads/master
2021-01-19T22:04:36.070696
2017-05-18T11:30:24
2017-05-18T11:30:24
88,744,875
0
0
null
null
null
null
UTF-8
C++
false
false
775
cpp
6.2.cpp
//给两个有序链表,归并// #include<iostream> using namespace std; struct ListNode{ int val; ListNode* next; ListNode(int x):val(x),next(NULL){} }; class Solution{ public: ListNode* mergeTwoList(ListNode* head1,ListNode* head2){ ListNode dummy(-1); ListNode* cur; ListNode* l1=head1; ListNode* l2=head2; for(cur=&dummy;l1!=NULL&&l2!=NULL;cur=cur->next){ if(l1->val>l2->val){ cur->next=l2; l2=l2->next; }else{ cur->next=l1; l1=l1->next; } }if(l1!=NULL)cur->next=l1; else cur->next=l2; return dummy.next; } }; int main(){ Solution s; ListNode a1(1); ListNode b1(2); ListNode a2(3); ListNode b2(4); a1.next=&a2; b1.next=&b2; auto p=s.mergeTwoList(&a1,&b1); while(p!=NULL){ cout<<p->val<<endl; p=p->next; } }
b7c4a382a10b67060e29cd476b2436f1d0c229aa
025e62fa2ffae19aaf415a3288f2dcd20de288a3
/array/28.cpp
b7614829fa8cdaddfeaa14287ae08aab75a74578
[]
no_license
kjy-robin/leetcode
6acf202e3301670dec794cfcbeca272ace655d25
d95e611efafa0a896148bec0e8feecfc76863899
refs/heads/main
2023-04-16T13:37:02.557722
2021-04-29T12:52:16
2021-04-29T12:52:16
355,017,455
0
0
null
null
null
null
UTF-8
C++
false
false
1,701
cpp
28.cpp
// *** 两数相除 *** #include <iostream> #include <vector> #include <string> using namespace std; // Definition for a binary tree node. struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode() : val(0), left(nullptr), right(nullptr) {} TreeNode(int x) : val(x), left(nullptr), right(nullptr) {} TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {} }; // Definition for singly-linked list. struct ListNode { int val; ListNode *next; ListNode() : val(0), next(nullptr) {} ListNode(int x) : val(x), next(nullptr) {} ListNode(int x, ListNode *next) : val(x), next(next) {} }; class Solution { public: static int divide(int dividend, int divisor) { if (dividend == 0) { return 0; } bool negative = false; if (dividend < 0) { negative = !negative; dividend *= (-1); } if(divisor<0) { negative = !negative; divisor *= (-1); } int l = 0, r = dividend; int ans = 0; while (l <= r) { int mid = l + (r - l) / 2; if (mid * divisor <= dividend) { ans = mid; l = mid + 1; } else { r = mid - 1; } } return negative ? ans * (-1) : ans; } }; void print(const vector<int> &mv) { for (size_t i = 0; i != mv.size(); i++) { cout << mv[i] << " | "; } cout << endl; } void Test1() { cout<<Solution::divide(-5,2)<<endl; } int main() { Test1(); return 0; }
ab51a0b2d9755af734b759c746bb98a79394e447
607829232b9ec8d6733fb67be85e8555d19e1ee0
/libs/core/include/fcppt/algorithm/array_init_move.hpp
4d321329886dd7ce90b3b5c2a12828dcde16598d
[ "BSL-1.0" ]
permissive
cnsuhao/fcppt
3b917196d5faf477d769b8f04e0001361a857776
104c035118a04011c5fd9574cc78b2889550ea65
refs/heads/master
2021-01-13T06:30:29.527419
2016-11-05T13:33:41
2016-11-05T13:33:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,231
hpp
array_init_move.hpp
// Copyright Carl Philipp Reh 2009 - 2016. // 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) #ifndef FCPPT_ALGORITHM_ARRAY_INIT_MOVE_HPP_INCLUDED #define FCPPT_ALGORITHM_ARRAY_INIT_MOVE_HPP_INCLUDED #include <fcppt/algorithm/array_init.hpp> #include <fcppt/cast/to_void.hpp> #include <fcppt/type_traits/is_std_array.hpp> namespace fcppt { namespace algorithm { /** \brief Constructs an array by calling a function for every element. \ingroup fcpptalgorithm Constructs an array of type \a Array by initializing every element with <code>_function()</code>. \tparam Array Must be a std::array \tparam Function A function callable as <code>Array::value_type ()</code>. */ template< typename Array, typename Function > inline Array array_init_move( Function const &_function ) { static_assert( fcppt::type_traits::is_std_array< Array >::value, "Array must be an array" ); return fcppt::algorithm::array_init< Array >( [ &_function ]( auto const _index ) { fcppt::cast::to_void( _index ); return _function(); } ); } } } #endif
52ee092ff82ba1294dbd5b6986b8dad719c4a90b
5a1876836b8014111363eaf52120fc5e05dd40d2
/2012 ACM-ICPC World Finals/I.cpp
4b3bdd560c61f6f022397175e96a15576855feef
[]
no_license
wcysai/Continued-Story
afb197ef8393882595a7a0579e3a11026dd8ecca
e7845f9c65e8eb837ab6f923676851e06453681d
refs/heads/main
2023-06-18T00:58:25.364645
2021-07-14T07:35:27
2021-07-14T07:35:27
301,825,686
7
0
null
null
null
null
UTF-8
C++
false
false
5,905
cpp
I.cpp
#include<bits/stdc++.h> #define maxn 1000005 using namespace std; int r,c,m,n,cas; set<int> R[maxn],C[maxn]; map<pair<int,int>,int> tp; struct Line { int x,y,xx,yy; Line(int x=0,int y=0,int xx=0,int yy=0):x(x),y(y),xx(xx),yy(yy){} }; vector<Line> g; //dir:0 right,1:down,2:left,3:up bool go1() { int x=1,y=0,dir=0; while(1) { if(dir==0) { set<int>::iterator it; it=R[x].lower_bound(y+1); int nxt=*it; g.push_back(Line(x,y+1,x,nxt-1)); y=nxt; if(tp[make_pair(x,y)]==0)dir=3; else dir=1; } else if(dir==1) { set<int>::iterator it; it=C[y].lower_bound(x+1); int nxt=*it; g.push_back(Line(x+1,y,nxt-1,y)); x=nxt; if(tp[make_pair(x,y)]==0)dir=2; else dir=0; } else if(dir==2) { set<int>::iterator it; it=R[x].lower_bound(y); --it; int nxt=*it; g.push_back(Line(x,nxt+1,x,y-1)); y=nxt; if(tp[make_pair(x,y)]==0)dir=1; else dir=3; } else { set<int>::iterator it; it=C[y].lower_bound(x); --it; int nxt=*it; g.push_back(Line(nxt+1,y,x-1,y)); x=nxt; if(tp[make_pair(x,y)]==0)dir=0; else dir=2; } //cerr<<"pos::"<<x<<" "<<y<<" "<<dir<<endl; if(x==r&&y==c+1)return 1; if(x==r+1||y==c+1||x==0||y==0)return 0; } } bool go2() { int x=r,y=c+1,dir=2; while(1) { if(dir==0) { set<int>::iterator it; it=R[x].lower_bound(y+1); int nxt=*it; g.push_back(Line(x,y+1,x,nxt-1)); y=nxt; if(tp[make_pair(x,y)]==0)dir=3; else dir=1; } else if(dir==1) { set<int>::iterator it; it=C[y].lower_bound(x+1); int nxt=*it; g.push_back(Line(x+1,y,nxt-1,y)); x=nxt; if(tp[make_pair(x,y)]==0)dir=2; else dir=0; } else if(dir==2) { set<int>::iterator it; it=R[x].lower_bound(y); --it; int nxt=*it; g.push_back(Line(x,nxt+1,x,y-1)); y=nxt; if(tp[make_pair(x,y)]==0)dir=1; else dir=3; } else { set<int>::iterator it; it=C[y].lower_bound(x); --it; int nxt=*it; g.push_back(Line(nxt+1,y,x-1,y)); x=nxt; if(tp[make_pair(x,y)]==0)dir=0; else dir=2; } //cerr<<"pos::"<<x<<" "<<y<<" "<<dir<<endl; if(x==1&&y==0)return 1; if(x==r+1||y==c+1||x==0||y==0)return 0; } } typedef long long ll; vector< pair<int,int> > rline[maxn],cline[maxn]; int sumv[maxn<<2]; void build(int rt,int l,int r) { sumv[rt]=0; if(l==r)return; int mid=(l+r)>>1; build(rt<<1,l,mid);build(rt<<1|1,mid+1,r); } void update(int rt,int l,int r,int pos,int v) { if(l==r) { sumv[rt]+=v; return; } int mid=(l+r)>>1; if(pos<=mid)update(rt<<1,l,mid,pos,v); else update(rt<<1|1,mid+1,r,pos,v); sumv[rt]=sumv[rt<<1]+sumv[rt<<1|1]; } int query(int rt,int l,int r,int ql,int qr) { int ans=0; if(ql<=l&&r<=qr)return sumv[rt]; int mid=(l+r)>>1; if(ql<=mid)ans+=query(rt<<1,l,mid,ql,qr); if(qr>mid)ans+=query(rt<<1|1,mid+1,r,ql,qr); return ans; } ll ans; int ansx,ansy; int main() { while(~scanf("%d%d%d%d",&r,&c,&m,&n)) { for(int i=1;i<=r+1;++i)R[i].clear(),rline[i].clear(); for(int i=1;i<=c+1;++i)C[i].clear(),cline[i].clear(); for(int i=1;i<=r;++i)R[i].insert(c+1),R[i].insert(0); for(int i=1;i<=c;++i)C[i].insert(r+1),C[i].insert(0); g.clear();tp.clear(); ans=0;ansx=0;ansy=0; for(int i=1;i<=m;++i) { int x,y; scanf("%d%d",&x,&y); R[x].insert(y); C[y].insert(x); tp[make_pair(x,y)]=0; } for(int i=1;i<=n;++i) { int x,y; scanf("%d%d",&x,&y); R[x].insert(y); C[y].insert(x); tp[make_pair(x,y)]=1; } printf("Case %d: ",++cas); if(go1()) { printf("0\n"); continue; } go2(); build(1,1,c); for(Line L:g) { //cerr<<L.x<<" "<<L.y<<" "<<L.xx<<" "<<L.yy<<endl; if(L.x==L.xx) { rline[L.x].push_back(make_pair(L.y,L.yy)); } else { cline[L.x].push_back(make_pair(L.y,1)); cline[L.xx].push_back(make_pair(L.y,-1)); } } for(int i=1;i<=r;++i) { for(auto p:cline[i]) { int pos=p.first,tp=p.second; if(tp==1) { update(1,1,c,pos,1); } } for(auto p:rline[i]) { int l=p.first,r=p.second; ans+=query(1,1,c,l,r); } if(ansx==0&&ans>0) { for(int j=1;j<=c;++j)if(query(1,1,c,j,j)) { ansx=i;ansy=j; break; } } for(auto p:cline[i]) { int pos=p.first,tp=p.second; if(tp==-1) { update(1,1,c,pos,-1); } } } if(!ans)puts("impossible"); else { printf("%lld %d %d\n",ans,ansx,ansy); } } }