blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
260 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
11.4k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
80 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
8
9.86M
extension
stringclasses
52 values
content
stringlengths
8
9.86M
authors
listlengths
1
1
author
stringlengths
0
119
f0b4382a1efdd94c140559eb9576cd0942fc7154
0ec9df3bb8b86216e18fe4cb66b6612297245aea
/Sources/CXXBoost/include/boost/local_function/detail/preprocessor/keyword/facility/is.hpp
3386e36604193b720a18f4e980f5df552c007c8a
[]
no_license
jprescott/BoostTestWithLib
78ae59d1ee801201883cf07ab76b8267fadf7daa
8650523cab467c41be60f3a1c144f556e9a7f25c
refs/heads/master
2022-11-18T14:49:00.664753
2020-07-18T21:45:17
2020-07-18T21:45:17
280,749,418
0
1
null
null
null
null
UTF-8
C++
false
false
2,281
hpp
// Copyright (C) 2009-2012 Lorenzo Caminiti // Distributed under the Boost Software License, Version 1.0 // (see accompanying file LICENSE_1_0.txt or a copy at // http://www.boost.org/LICENSE_1_0.txt) // Home at http://www.boost.org/libs/local_function #ifndef BOOST_LOCAL_FUNCTION_DETAIL_PP_KEYWORD_FACILITY_IS_HPP_ #define BOOST_LOCAL_FUNCTION_DETAIL_PP_KEYWORD_FACILITY_IS_HPP_ // Boost.Preprocessor author P. Mensodines confirmed on an Boost email thread // (subject ``check if a token is a keyword (was "BOOST_PP_IS_UNARY()")'') // that it is OK to used `PP_IS_UNARY()` to check if tokens match predefined // "keyword" as it is done by the macros below (even if `PP_IS_UNARY()` is // technically only part of Boost.Preprocessor private API). #include <boost/preprocessor/detail/is_unary.hpp> #include <boost/preprocessor/cat.hpp> #include <boost/preprocessor/control/iif.hpp> #include <boost/preprocessor/tuple/eat.hpp> // PRIVATE // #define BOOST_LOCAL_FUNCTION_DETAIL_PP_KEYWORD_FACILITY_IS_(a, b) \ BOOST_PP_IS_UNARY(BOOST_PP_CAT(a, b)) // PUBLIC // // `checking_prefix ## tokens` expand to unary (e.g., `(1)`) iff `tokens` start // with keyword to check. #define BOOST_LOCAL_FUNCTION_DETAIL_PP_KEYWORD_FACILITY_IS_FRONT( \ tokens, checking_prefix) \ BOOST_PP_IIF(BOOST_PP_IS_UNARY(tokens), \ /* on MSVC this check works even if tokens already unary but on */ \ /* C++03 (including GCC) this check on non-unary tokens gives */ \ /* a concatenation error -- so return false is tokens is not unary */ \ 0 BOOST_PP_TUPLE_EAT(2) \ , \ BOOST_LOCAL_FUNCTION_DETAIL_PP_KEYWORD_FACILITY_IS_ \ )(checking_prefix, tokens) // `token ## checking_postfix` expand to unary (e.g., `(1)`) iff `token` is the // keyword to check. This check only works if `token` is a single token, it // will always expand to 0 if token is multiple tokens (e.g., `const *this`). // This check will expand to 0 with no error if `token` starts with a // non-alphanumeric symbol (e.g., `*this`). #define BOOST_LOCAL_FUNCTION_DETAIL_PP_KEYWORD_FACILITY_IS_BACK( \ token, checking_postfix) \ BOOST_LOCAL_FUNCTION_DETAIL_PP_KEYWORD_FACILITY_IS_(token, checking_postfix) #endif // #include guard
[ "jprescott12@icloud.com" ]
jprescott12@icloud.com
6e962721b38dd15b2d6dd8393f0a77be5cc53067
87b194db1b0e0ebbb5867f52bde6ab20b2d34e46
/gcd_and_lcm.cpp
32db2f5ade148a6f7048117a9c005013f25d6176
[]
no_license
harshit1111/git_intro
5022420bc9437db7e5f61f18e4f30b204b9fdb1a
993d8e92bb852df5b160dacbace84d43ce3e8da3
refs/heads/master
2020-04-13T16:24:55.504555
2019-10-20T12:21:33
2019-10-20T12:21:33
163,320,472
0
1
null
2019-10-20T12:21:34
2018-12-27T17:29:46
C++
UTF-8
C++
false
false
273
cpp
#include <bits/stdc++.h> using namespace std; int lcm(int a, int b) { return (a*b)/__gcd(a, b); } } ; int main() { int a = 15, b = 20; cout<<"GCD of "<<a<<" and "<<b<<" is "<<__gcd(a, b); cout<<"LCM of "<<a<<" and "<<b<<" is "<<lcm(a, b); return 0; }
[ "noreply@github.com" ]
noreply@github.com
ae9956ca793977df50d2285bfe581881ff4e9214
c3ae5eb84aa9059494ac15b17144fafc578d0ee4
/thread/try.cpp
0c567b6617a81bc02450bea599dfee3cb1dacd4b
[]
no_license
Live4dreamCH/cpp
9e11ad8e1f9e89388b10956db165689685d1783f
1b88ef0ceb16fc97d989a63c90bc86f87a07e9e8
refs/heads/master
2022-09-10T11:39:39.306063
2020-05-27T15:55:52
2020-05-27T15:55:52
243,248,223
1
0
null
null
null
null
UTF-8
C++
false
false
382
cpp
#include <iostream> #include <thread> using namespace std; void fun(int i) { cout << i << endl; } int main() { system("D:/documents/Sources/c++/build/CalculatingMachine.exe"); for (int i = 0; i < 10;i++) { thread t(fun, i); cout << "进程" << t.get_id() << "启动" << endl; t.join(); // cout << t.joinable(); } return 0; }
[ "live4dream@stu.xjtu.edu.cn" ]
live4dream@stu.xjtu.edu.cn
76554f54cc78a892d9f79b9cefa8b26efb8f3c53
e3635499eb1a19e75ade2dbd343e165c11331475
/DuiLib_c/Core/UIDefine.h
cc91430a5aeac636ea5ef07bc46d95e5941aee13
[]
no_license
qiuyangsoft/DuiLib_c
1cd8d2ddf7a9caee5ff72a5d960f2612efd4e37f
5a03e127e1b50a8d808926f400c1020a7e971513
refs/heads/master
2020-03-06T14:44:02.401343
2016-10-13T03:53:22
2016-10-13T03:53:22
null
0
0
null
null
null
null
GB18030
C++
false
false
11,286
h
#pragma once //////////////BEGIN消息映射宏定义//////////////////////////////////////////////////// /// namespace DuiLib { enum DuiSig { DuiSig_end = 0, // [marks end of message map] DuiSig_lwl, // LRESULT (WPARAM, LPARAM) DuiSig_vn, // void (TNotifyUI) }; class CControlUI; // Structure for notifications to the outside world typedef struct tagTNotifyUI { CDuiString sType; CDuiString sVirtualWnd; CControlUI* pSender; DWORD dwTimestamp; POINT ptMouse; WPARAM wParam; LPARAM lParam; } TNotifyUI; class CNotifyPump; typedef void (CNotifyPump::*DUI_PMSG)(TNotifyUI& msg); //指针类型 union DuiMessageMapFunctions { DUI_PMSG pfn; // generic member function pointer LRESULT (CNotifyPump::*pfn_Notify_lwl)(WPARAM, LPARAM); void (CNotifyPump::*pfn_Notify_vn)(TNotifyUI&); }; //定义所有消息类型 ////////////////////////////////////////////////////////////////////////// #define DUI_MSGTYPE_MENU (_T("menu")) #define DUI_MSGTYPE_LINK (_T("link")) #define DUI_MSGTYPE_TIMER (_T("timer")) #define DUI_MSGTYPE_CLICK (_T("click")) #define DUI_MSGTYPE_RETURN (_T("return")) #define DUI_MSGTYPE_SCROLL (_T("scroll")) #define DUI_MSGTYPE_DROPDOWN (_T("dropdown")) #define DUI_MSGTYPE_SETFOCUS (_T("setfocus")) #define DUI_MSGTYPE_KILLFOCUS (_T("killfocus")) #define DUI_MSGTYPE_ITEMCLICK (_T("itemclick")) #define DUI_MSGTYPE_RITEMCLICK (_T("ritemclick")) #define DUI_MSGTYPE_TABSELECT (_T("tabselect")) #define DUI_MSGTYPE_ITEMSELECT (_T("itemselect")) #define DUI_MSGTYPE_ITEMEXPAND (_T("itemexpand")) #define DUI_MSGTYPE_WINDOWINIT (_T("windowinit")) #define DUI_MSGTYPE_BUTTONDOWN (_T("buttondown")) #define DUI_MSGTYPE_MOUSEENTER (_T("mouseenter")) #define DUI_MSGTYPE_MOUSELEAVE (_T("mouseleave")) #define DUI_MSGTYPE_TEXTCHANGED (_T("textchanged")) #define DUI_MSGTYPE_HEADERCLICK (_T("headerclick")) #define DUI_MSGTYPE_ITEMDBCLICK (_T("itemdbclick")) #define DUI_MSGTYPE_SHOWACTIVEX (_T("showactivex")) #define DUI_MSGTYPE_ITEMCOLLAPSE (_T("itemcollapse")) #define DUI_MSGTYPE_ITEMACTIVATE (_T("itemactivate")) #define DUI_MSGTYPE_VALUECHANGED (_T("valuechanged")) #define DUI_MSGTYPE_SELECTCHANGED (_T("selectchanged")) #define DUI_TIMERID_ANIMATION 1574 #define DUI_TIMERID_GIF 1575 ////////////////////////////////////////////////////////////////////////// struct DUI_MSGMAP_ENTRY; struct DUI_MSGMAP { #ifndef UILIB_STATIC const DUI_MSGMAP* (PASCAL* pfnGetBaseMap)(); #else const DUI_MSGMAP* pBaseMap; #endif const DUI_MSGMAP_ENTRY* lpEntries; }; //结构定义 struct DUI_MSGMAP_ENTRY //定义一个结构体,来存放消息信息 { CDuiString sMsgType; // DUI消息类型 CDuiString sCtrlName; // 控件名称 UINT nSig; // 标记函数指针类型 DUI_PMSG pfn; // 指向函数的指针 }; //定义 #ifndef UILIB_STATIC #define DUI_DECLARE_MESSAGE_MAP() \ private: \ static const DuiLib::DUI_MSGMAP_ENTRY _messageEntries[]; \ protected: \ static const DuiLib::DUI_MSGMAP messageMap; \ static const DuiLib::DUI_MSGMAP* PASCAL _GetBaseMessageMap(); \ virtual const DuiLib::DUI_MSGMAP* GetMessageMap() const; \ #else #define DUI_DECLARE_MESSAGE_MAP() \ private: \ static const DUI_MSGMAP_ENTRY _messageEntries[]; \ protected: \ static const DUI_MSGMAP messageMap; \ virtual const DUI_MSGMAP* GetMessageMap() const; \ #endif //基类声明开始 #ifndef UILIB_STATIC #define DUI_BASE_BEGIN_MESSAGE_MAP(theClass) \ const DUI_MSGMAP* PASCAL theClass::_GetBaseMessageMap() \ { return NULL; } \ const DUI_MSGMAP* theClass::GetMessageMap() const \ { return &theClass::messageMap; } \ UILIB_COMDAT const DUI_MSGMAP theClass::messageMap = \ { &theClass::_GetBaseMessageMap, &theClass::_messageEntries[0] };\ UILIB_COMDAT const DUI_MSGMAP_ENTRY theClass::_messageEntries[] = \ { \ #else #define DUI_BASE_BEGIN_MESSAGE_MAP(theClass) \ const DUI_MSGMAP* theClass::GetMessageMap() const \ { return &theClass::messageMap; } \ UILIB_COMDAT const DUI_MSGMAP theClass::messageMap = \ { NULL, &theClass::_messageEntries[0] }; \ UILIB_COMDAT const DUI_MSGMAP_ENTRY theClass::_messageEntries[] = \ { \ #endif //子类声明开始 #ifndef UILIB_STATIC #define DUI_BEGIN_MESSAGE_MAP(theClass, baseClass) \ const DUI_MSGMAP* PASCAL theClass::_GetBaseMessageMap() \ { return &baseClass::messageMap; } \ const DUI_MSGMAP* theClass::GetMessageMap() const \ { return &theClass::messageMap; } \ UILIB_COMDAT const DUI_MSGMAP theClass::messageMap = \ { &theClass::_GetBaseMessageMap, &theClass::_messageEntries[0] }; \ UILIB_COMDAT const DUI_MSGMAP_ENTRY theClass::_messageEntries[] = \ { \ #else #define DUI_BEGIN_MESSAGE_MAP(theClass, baseClass) \ const DUI_MSGMAP* theClass::GetMessageMap() const \ { return &theClass::messageMap; } \ UILIB_COMDAT const DUI_MSGMAP theClass::messageMap = \ { &baseClass::messageMap, &theClass::_messageEntries[0] }; \ UILIB_COMDAT const DUI_MSGMAP_ENTRY theClass::_messageEntries[] = \ { \ #endif //声明结束 #define DUI_END_MESSAGE_MAP() \ { _T(""), _T(""), DuiSig_end, (DUI_PMSG)0 } \ }; \ //定义消息类型--执行函数宏 #define DUI_ON_MSGTYPE(msgtype, memberFxn) \ { msgtype, _T(""), DuiSig_vn, (DUI_PMSG)&memberFxn}, \ //定义消息类型--控件名称--执行函数宏 #define DUI_ON_MSGTYPE_CTRNAME(msgtype,ctrname,memberFxn) \ { msgtype, ctrname, DuiSig_vn, (DUI_PMSG)&memberFxn }, \ //定义click消息的控件名称--执行函数宏 #define DUI_ON_CLICK_CTRNAME(ctrname,memberFxn) \ { DUI_MSGTYPE_CLICK, ctrname, DuiSig_vn, (DUI_PMSG)&memberFxn }, \ //定义selectchanged消息的控件名称--执行函数宏 #define DUI_ON_SELECTCHANGED_CTRNAME(ctrname,memberFxn) \ { DUI_MSGTYPE_SELECTCHANGED,ctrname,DuiSig_vn,(DUI_PMSG)&memberFxn }, \ //定义killfocus消息的控件名称--执行函数宏 #define DUI_ON_KILLFOCUS_CTRNAME(ctrname,memberFxn) \ { DUI_MSGTYPE_KILLFOCUS,ctrname,DuiSig_vn,(DUI_PMSG)&memberFxn }, \ //定义menu消息的控件名称--执行函数宏 #define DUI_ON_MENU_CTRNAME(ctrname,memberFxn) \ { DUI_MSGTYPE_MENU,ctrname,DuiSig_vn,(DUI_PMSG)&memberFxn }, \ //定义与控件名称无关的消息宏 //定义timer消息--执行函数宏 #define DUI_ON_TIMER() \ { DUI_MSGTYPE_TIMER, _T(""), DuiSig_vn,(DUI_PMSG)&OnTimer }, \ /// //////////////END消息映射宏定义//////////////////////////////////////////////////// //////////////BEGIN控件名称宏定义////////////////////////////////////////////////// /// #define DUI_CTR_EDIT (_T("Edit")) #define DUI_CTR_LIST (_T("List")) #define DUI_CTR_TEXT (_T("Text")) #define DUI_CTR_COMBO (_T("Combo")) #define DUI_CTR_LABEL (_T("Label")) #define DUI_CTR_FLASH (_T("Flash")) #define DUI_CTR_GIF (_T("Gif")) #define DUI_CTR_BUTTON (_T("Button")) #define DUI_CTR_BUTTON_ARROW (_T("ButtonArrow")) #define DUI_CTR_BUTTON_HTML (_T("ButtonHtml")) #define DUI_CTR_CHECKBOX_ARROW (_T("CheckBoxArrow")) #define DUI_CTR_OPTION (_T("Option")) #define DUI_CTR_OPTION_ARROW (_T("OptionArrow")) #define DUI_CTR_SLIDER (_T("Slider")) #define DUI_CTR_CONTROL (_T("Control")) #define DUI_CTR_ACTIVEX (_T("ActiveX")) #define DUI_CTR_LISTITEM (_T("ListItem")) #define DUI_CTR_PROGRESS (_T("Progress")) #define DUI_CTR_RICHEDIT (_T("RichEdit")) #define DUI_CTR_CHECKBOX (_T("CheckBox")) #define DUI_CTR_COMBOBOX (_T("ComboBox")) #define DUI_CTR_DATETIME (_T("DateTime")) #define DUI_CTR_TREEVIEW (_T("TreeView")) #define DUI_CTR_TREENODE (_T("TreeNode")) #define DUI_CTR_CALENDAR (_T("Calendar")) #define DUI_CTR_CONTAINER (_T("Container")) #define DUI_CTR_TABLAYOUT (_T("TabLayout")) #define DUI_CTR_SCROLLBAR (_T("ScrollBar")) #define DUI_CTR_LISTHEADER (_T("ListHeader")) #define DUI_CTR_TILELAYOUT (_T("TileLayout")) #define DUI_CTR_WEBBROWSER (_T("WebBrowser")) #define DUI_CTR_CHILDLAYOUT (_T("ChildLayout")) #define DUI_CTR_LISTELEMENT (_T("ListElement")) #define DUI_CTR_DIALOGLAYOUT (_T("DialogLayout")) #define DUI_CTR_VERTICALLAYOUT (_T("VerticalLayout")) #define DUI_CTR_LISTHEADERITEM (_T("ListHeaderItem")) #define DUI_CTR_LISTTEXTELEMENT (_T("ListTextElement")) #define DUI_CTR_HORIZONTALLAYOUT (_T("HorizontalLayout")) #define DUI_CTR_LISTLABELELEMENT (_T("ListLabelElement")) #define DUI_CTR_LISTCONTAINERELEMENT (_T("ListContainerElement")) /// //////////////END控件名称宏定义////////////////////////////////////////////////// }// namespace DuiLib
[ "15303606867@163.com" ]
15303606867@163.com
34bf6df6fc6595f807e251b49ab957c488e811c3
5a47846b08e0c3fa34e2d4a320e5fbc47f1ebe91
/Ran32/Ran32.hpp
9ba5bb98af525928f842f57919c8a7546ad63f6f
[]
no_license
frferrara/RandomNumberGenerator
2f5c1bf693113b3918ea6d3fad2cdab62ff7e007
c1f3cf6bbb15e063da1391231cc9734eeda16c11
refs/heads/master
2021-01-10T20:54:44.763764
2012-05-03T16:03:56
2012-05-03T16:03:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
628
hpp
/* * RanLim32.hpp * * Created on: Apr 13, 2012 * Author: frferrara */ #ifndef RAN32_HPP_ #define RAN32_HPP_ #include <iostream> #include <stdexcept> #include "RNGInterface.hpp" class Ran32 : public RNGInterface { public: Ran32(); Ran32( unsigned int i ); virtual ~Ran32() {} virtual double uniGen( double min, \ double max ); virtual double normGen( double mu, \ double sigma ); private: inline unsigned int int32(); inline double doub(); inline double trueDoub(); void checkMinMax( double min, \ double max ); unsigned int u, v, w1, w2; }; #endif /* RAN32_HPP_ */
[ "fr.ferrara@gmail.com" ]
fr.ferrara@gmail.com
79ef7770d3ba5dd42efb7aa711d70a0226485e11
b62c5636ca3955e9b2bb8631e7dc351e41d14912
/public/include/XMPCore/Interfaces/INode.h
516a94401abbe1909f9e1edfd8c6dce88beeaec0
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
kranack/XMP-Toolkit-SDK
1a05aa5ebf10d2bec8f504784714a6f20b8cfdb2
0872e35a30457d2ecf746a1bebdb7d94636d0e2f
refs/heads/master
2022-02-24T03:30:23.767797
2020-01-29T05:03:16
2020-01-29T05:03:16
237,179,960
2
0
NOASSERTION
2020-04-06T02:54:13
2020-01-30T09:30:42
null
UTF-8
C++
false
false
30,183
h
#ifndef __INode_h__ #define __INode_h__ 1 // ================================================================================================= // Copyright Adobe // Copyright 2014 Adobe // 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. // ================================================================================================= #include "XMPCore/XMPCoreFwdDeclarations.h" #include "XMPCommon/Interfaces/BaseInterfaces/ISharedObject.h" #include "XMPCommon/Interfaces/BaseInterfaces/IVersionable.h" #include "XMPCommon/Interfaces/BaseInterfaces/IThreadSafe.h" namespace AdobeXMPCore { //! //! \brief Version1 of the interface that serves as a base interface to all types of nodes in the XMP DOM. //! \details Provides all the functions to get various properties of the node. //! \attention Support multi threading through locks but can be enabled/disabled by the client. By default //! every object created does not support multi-threading. //! class XMP_PUBLIC INode_v1 : public virtual ISharedObject , public virtual IVersionable , public virtual IThreadSafe { public: //! //! @brief Indicates various types of node available in XMP Data Model like simple, array and structure. //! typedef enum { //! Indicates none, to be used as invalid type. kNTNone = 0, //! XMP Node is of Simple Node type (key value pair). kNTSimple = 1, //! XMP Node is of Array type. Indexing start from 1. kNTArray = 1 << 1, //! XMP Node is of structure type. kNTStructure = 1 << 2, //! XMP Node of any type kNTAll = kAllBits } eNodeType; //! //! @brief Gets the node type of the node. //! \return An object of type \#eNodeType indicating the type of the node. //! virtual eNodeType APICALL GetNodeType() const = 0; //! //! @brief Gets the node type of the node's parent. //! \return An object of type \#eNodeType indicating the type of the node. //! \note \#eNodeType::kNTNone is returned in case node has no parent. //! virtual eNodeType APICALL GetParentNodeType() const = 0; //! //! @{ //! @brief Gets the parent node of the node. //! \return Either a const or non const pointer to INode interface. //! \return A shared pointer to either a const or non const \#AdobeXMPCore::INode representing the parent of the node. //! \note Returns an invalid shared pointer in case the node is a root node or it is not part of tree. //! XMP_PRIVATE spcINode GetParent() const { return const_cast< INode_v1 * >( this )->GetParent(); } virtual spINode APICALL GetParent() = 0; //! //! @} //! //! @brief Changes the local name of the node. //! \param[in] name Pointer to a constant char buffer containing local name of the node. //! \param[in] nameLength Number of characters in name. In case name is null terminated set it to \#AdobeXMPCommon::npos. //! \attention Error can be thrown in case //! - name is NULL pointer or its contents are empty //! - name is not valid XML property name. //! - Sibling with the same combination of name and nameSpace is present. //! virtual void APICALL SetName( const char * name, sizet nameLength ) = 0; //! //! @brief Gets the local name of the node. //! \return a shared pointer to const \#AdobeXMPCommon::IUTF8String representing the name of the node. //! virtual spcIUTF8String APICALL GetName() const = 0; //! //! @brief Changes the name space of the node. //! \param[in] nameSpace Pointer to a constant char buffer containing name space URI of the node. //! \param[in] nameSpaceLength Number of characters in nameSpace. In case nameSpace is null terminated set it to \#AdobeXMPCommon::npos. //! \attention Error can be thrown in case //! - nameSpace is NULL pointer or its contents are empty //! - Sibling with the same combination of name and nameSpace is present. //! virtual void APICALL SetNameSpace( const char * nameSpace, sizet nameSpaceLength ) = 0; //! //! @brief Gets the name space of the node. //! \return A shared pointer to const \#AdobeXMPCommon::IUTF8String representing the name space of the node. //! virtual spcIUTF8String APICALL GetNameSpace() const = 0; //! //! @brief Gets the path of the node from the root of the metadata. //! \return A shared pointer to \#AdobeXMPCore::IPath representing the path of the node. //! virtual spIPath APICALL GetPath() const = 0; //! //! @brief Gets the count of the qualifiers attached with the node //! \return An object of type \#AdobeXMPCommon::sizet containing the count of qualifiers attached with the node. //! virtual sizet APICALL QualifiersCount() const __NOTHROW__ = 0; //! //! @{ //! Get an iterator object to iterate over all the qualifier nodes attached to the composite node. //! \return A shared pointer to a const or non const \#INodeIterator object. //! XMP_PRIVATE spcINodeIterator QualifiersIterator() const { return const_cast< INode_v1 * >( this )->QualifiersIterator(); } virtual spINodeIterator APICALL QualifiersIterator() = 0; //! @} //! //! @brief Gets the type of the node's qualifier having specified namespace and name. //! \param[in] nameSpace Pointer to a constant char buffer containing name space URI of the qualifier node. //! \param[in] nameSpaceLength Number of characters in nameSpace. In case nameSpace is null terminated set it to \#AdobeXMPCommon::npos. //! \param[in] name Pointer to a constant char buffer containing local name of the qualifier node. //! \param[in] nameLength Number of characters in name. In case name is null terminated set it to \#AdobeXMPCommon::npos. //! \return An object of type \#eNodeType indicating the type of the node's qualifier. //! \note In case no qualifier exists with the specified nameSpace and name combination then an \#eNodeType::kNTNode is returned. //! virtual eNodeType APICALL GetQualifierNodeType( const char * nameSpace, sizet nameSpaceLength, const char * name, sizet nameLength ) const = 0; //! //! @{ //! @brief Gets the qualifier of the node having specified namespace and name. //! \param[in] nameSpace Pointer to a constant char buffer containing name space URI of the qualifier node. //! \param[in] nameSpaceLength Number of characters in nameSpace. In case nameSpace is null terminated set it to \#AdobeXMPCommon::npos. //! \param[in] name Pointer to a constant char buffer containing local name of the qualifier node. //! \param[in] nameLength Number of characters in name. In case name is null terminated set it to \#AdobeXMPCommon::npos. //! \return A shared pointer to either a const or const qualifier node. //! \note In case no qualifier exists with the specified nameSpace and name combination then an invalid shared pointer //! is returned. //! XMP_PRIVATE spcINode GetQualifier( const char * nameSpace, sizet nameSpaceLength, const char * name, sizet nameLength ) const { return const_cast< INode_v1 * >( this )->GetQualifier( nameSpace, nameSpaceLength, name, nameLength ); } virtual spINode APICALL GetQualifier( const char * nameSpace, sizet nameSpaceLength, const char * name, sizet nameLength ) = 0; //! @} //! //! @{ //! @brief Get the node's qualifier having specified name space and name as simple node. //! \param[in] nameSpace Pointer to a constant char buffer containing name space URI of the qualifier node. //! \param[in] nameSpaceLength Number of characters in nameSpace. In case nameSpace is null terminated set it to \#AdobeXMPCommon::npos. //! \param[in] name Pointer to a constant char buffer containing local name of the qualifier node. //! \param[in] nameLength Number of characters in name. In case name is null terminated set it to \#AdobeXMPCommon::npos. //! \return A shared pointer to const or non const \#ISimpleNode object containing qualifier. //! \note In case no qualifier exists with the specified nameSpace and name combination then an invalid shared pointer //! is returned. //! \attention Error is thrown in case //! - a qualifier exists with the specified nameSpace and name combination but is not a simple node. //! XMP_PRIVATE spcISimpleNode GetSimpleQualifier( const char * nameSpace, sizet nameSpaceLength, const char * name, sizet nameLength ) const { auto node = GetQualifier( nameSpace, nameSpaceLength, name, nameLength ); if ( node ) return node->ConvertToSimpleNode(); return spcISimpleNode(); } XMP_PRIVATE spISimpleNode GetSimpleQualifier( const char * nameSpace, sizet nameSpaceLength, const char * name, sizet nameLength ) { auto node = GetQualifier( nameSpace, nameSpaceLength, name, nameLength ); if ( node ) return node->ConvertToSimpleNode(); return spISimpleNode(); } //! @} //! //! @{ //! @brief Get the node's qualifier having specified name space and name as structure node. //! \param[in] nameSpace Pointer to a constant char buffer containing name space URI of the qualifier node. //! \param[in] nameSpaceLength Number of characters in nameSpace. In case nameSpace is null terminated set it to \#AdobeXMPCommon::npos. //! \param[in] name Pointer to a constant char buffer containing local name of the qualifier node. //! \param[in] nameLength Number of characters in name. In case name is null terminated set it to \#AdobeXMPCommon::npos. //! \return A shared pointer to const or non const \#IStructureNode object containing qualifier. //! \note In case no qualifier exists with the specified nameSpace and name combination then an invalid shared pointer //! is returned. //! \attention Error is thrown in case //! - a qualifier exists with the specified nameSpace and name combination but is not a structure node. //! XMP_PRIVATE spcIStructureNode GetStructureQualifier( const char * nameSpace, sizet nameSpaceLength, const char * name, sizet nameLength ) const { auto node = GetQualifier( nameSpace, nameSpaceLength, name, nameLength ); if ( node ) return node->ConvertToStructureNode(); return spcIStructureNode(); } XMP_PRIVATE spIStructureNode GetStructureQualifier( const char * nameSpace, sizet nameSpaceLength, const char * name, sizet nameLength ) { auto node = GetQualifier( nameSpace, nameSpaceLength, name, nameLength ); if ( node ) return node->ConvertToStructureNode(); return spIStructureNode(); } //! @} //! //! @{ //! @brief Get the node's qualifier having specified name space and name as an array node. //! \param[in] nameSpace Pointer to a constant char buffer containing name space URI of the qualifier node. //! \param[in] nameSpaceLength Number of characters in nameSpace. In case nameSpace is null terminated set it to \#AdobeXMPCommon::npos. //! \param[in] name Pointer to a constant char buffer containing local name of the qualifier node. //! \param[in] nameLength Number of characters in name. In case name is null terminated set it to \#AdobeXMPCommon::npos. //! \return A shared pointer to const or non const \#ISimpleNode object containing qualifier. //! \note In case no qualifier exists with the specified nameSpace and name combination then an invalid shared pointer //! is returned. //! \attention Error is thrown in case //! - a qualifier exists with the specified nameSpace and name combination but is not an array node. //! XMP_PRIVATE spcIArrayNode GetArrayQualifier( const char * nameSpace, sizet nameSpaceLength, const char * name, sizet nameLength ) const { auto node = GetQualifier( nameSpace, nameSpaceLength, name, nameLength ); if ( node ) return node->ConvertToArrayNode(); return spcIArrayNode(); } XMP_PRIVATE spIArrayNode GetArrayQualifier( const char * nameSpace, sizet nameSpaceLength, const char * name, sizet nameLength ) { auto node = GetQualifier( nameSpace, nameSpaceLength, name, nameLength ); if ( node ) return node->ConvertToArrayNode(); return spIArrayNode(); } //! @} //! //! @brief Inserts a given qualifier node. //! \param[in] node Shared pointer to an object of \#AdobeXMPCore::INode representing the qualifier node to be inserted. //! \attention Error is thrown in following cases: //! - given qualifier node is invalid. //! - given qualifier node is already a child of some other node. //! - there exists a qualifier node with the same nameSpace and name combination. //! - parent or any ancestor node is a qualifier node. //! virtual void APICALL InsertQualifier( const spINode & node ) = 0; //! //! @brief Replaces a given qualifier node. //! \param[in] node Shared pointer to an object of \#AdobeXMPCore::INode representing the qualifier node to be inserted. //! \return A shared pointer to a qualifier node which is being replaced. //! \attention Error is thrown in following cases: //! -# given qualifier node is invalid. //! -# given qualifier node is already a child of some other node. //! -# there exists no qualifier node with the same nameSpace and name combination. //! \note Warning is raised in case the type of the old existing node is not same as that of new node. //! virtual spINode APICALL ReplaceQualifier( const spINode & node ) = 0; //! //! @brief Removes the qualifier node with the specified nameSpace and name. //! \param[in] nameSpace Pointer to a constant char buffer containing name space URI of the qualifier node. //! \param[in] nameSpaceLength Number of characters in nameSpace. In case nameSpace is null terminated set it to \#AdobeXMPCommon::npos. //! \param[in] name Pointer to a constant char buffer containing local name of the qualifier node. //! \param[in] nameLength Number of characters in name. In case name is null terminated set it to \#AdobeXMPCommon::npos. //! \return A shared pointer to \#AdobeXMPCore::INode object representing qualifier node which is removed from the node. //! \note In case no qualifier node exists at the given index an invalid shared pointer is returned. //! virtual spINode APICALL RemoveQualifier( const char * nameSpace, sizet nameSpaceLength, const char * name, sizet nameLength ) = 0; //! //! @brief Indicates whether the node is a direct child of an array node. //! \return A bool value; true in case the node is a direct child of an array node, false otherwise. //! virtual bool APICALL IsArrayItem() const = 0; //! //! @brief Indicates whether the node is a qualifier node. //! \return A bool value; true in case the node is a qualifier node, false otherwise. //! virtual bool APICALL IsQualifierNode() const = 0; //! //! @brief Returns the index of the node in case it is an array item. //! \return The index of the node, in case it is an array item, otherwise returns 0. //! virtual sizet APICALL GetIndex() const = 0; //! //! @brief Indicates whether the node has any qualifiers associated with it. //! \return A bool value; true in case the node has any qualifier associated with it, false otherwise. //! virtual bool APICALL HasQualifiers() const = 0; //! //! @brief Returns whether the node has any content or not. //! return A bool value indicating the presence of contents in the node apart from qualifiers. //! virtual bool APICALL HasContent() const = 0; //! //! @brief Returns whether the node is empty. //! return A bool value indicating whether the contents and qualifiers of a node are empty. //! virtual bool APICALL IsEmpty() const = 0; //! //! @brief Returns the status about any change done to the node or its children or qualifiers. //! returns a bool value indicating whether some changes have been performed on the node or its children or qualifiers. //! for a simple node, true will be returned in scenarios like when the node's value or qualifiers are modified. //! for an array node or a structure node, true will be returned in scenarios like when the node's children or the node's qualifiers are modified. //! virtual bool APICALL HasChanged() const = 0; //! //! @brief Acknowledges that changes for the node and its children and qualifiers have been taken care of. //! for a simple node, changes that will be acknowledged in scenarios like when the node's value or node's qualifiers were modified. //! for an array node or a structure node, changes will be acknowledged in scenarios like when the node's children were or the node's qualifiers were modified. //! virtual void APICALL AcknowledgeChanges() const __NOTHROW__ = 0; //! //! @brief Clear the contents of the node. //! \param[in] contents A bool value controlling whether contents of the node should be cleared or not. //! \param[in] qualifiers A bool value controlling whether qualifiers of the node should be cleared or not. //! virtual void APICALL Clear( bool contents = true, bool qualifiers = true ) = 0; //! //! @{ //! @brief Converts Node to a simple node, if possible. //! \return Shared pointer to const or non const ISimpleNode object. An empty simple node is thrown in case actual node is not a simple node. //! XMP_PRIVATE spcISimpleNode ConvertToSimpleNode() const { return const_cast< INode_v1 * >( this )->ConvertToSimpleNode(); } virtual spISimpleNode APICALL ConvertToSimpleNode() = 0; //! @} //! //! @{ //! @brief Converts Node to a structure node type, if possible. //! \return Shared pointer to const or non const IStructureNode object. An empty structure node is thrown in case actual node is not a structure node. //! XMP_PRIVATE spcIStructureNode ConvertToStructureNode() const { return const_cast< INode_v1 * >( this )->ConvertToStructureNode(); } virtual spIStructureNode APICALL ConvertToStructureNode() = 0; //! @} //! //! @{ //! @brief Converts Node to an array node type, if possible. //! \return Shared pointer to const or non const IArrayNode object. An empty array node is thrown in case actual node is not an array node. //! XMP_PRIVATE spcIArrayNode ConvertToArrayNode() const { return const_cast< INode_v1 * >( this )->ConvertToArrayNode(); } virtual spIArrayNode APICALL ConvertToArrayNode() = 0; //! @} //! //! @{ //! @brief Converts Node to a metadata node type, if possible. //! \return Shared pointer to const or non const IMetadata object. An empty metadata node is thrown in case actual node is not a metadata node. //! XMP_PRIVATE spcIMetadata ConvertToMetadata() const { return const_cast< INode_v1 * >( this )->ConvertToMetadata(); } virtual spIMetadata APICALL ConvertToMetadata() = 0; //! @} //! //! @brief Virtual copy constructor //! @details Clones the node creating an exact replica of the node which is not part of any metadata tree. //! \param[in] ignoreEmptyNodes A bool value controlling whether to clone empty nodes or not. //! \param[in] ignoreNodesWithOnlyQualifiers A bool value controlling whether presence of only qualifiers should mark //! node as non empty. //! \return A shared pointer to newly created replica of the node. //! virtual spINode APICALL Clone( bool ignoreEmptyNodes = false, bool ignoreNodesWithOnlyQualifiers = false ) const = 0; //! //! \cond XMP_INTERNAL_DOCUMENTATION //! //! @{ //! @brief Returns the actual raw pointer from the shared pointer, which can be a shared pointer of a proxy class. //! \return Either a const or non const pointer to INode interface. //! virtual pINode APICALL GetActualINode() __NOTHROW__ = 0; XMP_PRIVATE pcINode GetActualINode() const __NOTHROW__ { return const_cast< INode_v1 * >( this )->GetActualINode(); } //! //! @} //! //! @{ //! @brief Returns the pointer to internal interfaces. //! \return Either a const or non const pointer to INode_I interface. //! virtual AdobeXMPCore_Int::pINode_I APICALL GetINode_I() __NOTHROW__ = 0; XMP_PRIVATE AdobeXMPCore_Int::pcINode_I GetINode_I() const __NOTHROW__ { return const_cast< INode_v1 * >( this )->GetINode_I(); } //! //! @} //! //! @{ //! @brief Converts raw pointer to shared pointer. The raw pointer is of version 1 interface //! where as the returned shared pointer depends on the version client is interested in. //! \return Shared pointer to const or non constant interface. //! XMP_PRIVATE static spINode MakeShared( pINode_base ptr ); XMP_PRIVATE static spcINode MakeShared( pcINode_base ptr ) { return MakeShared( const_cast< pINode_base >( ptr ) ); } //! //! @} //! //! @brief Returns the unique ID assigned to the interface. //! \return 64 bit unsigned integer representing the unique ID assigned to the interface. //! XMP_PRIVATE static uint64 GetInterfaceID() { return kINodeID; } //! //! @brief Returns the version of the interface. //! \return 32 bit unsigned integer representing the version of the interface. //! XMP_PRIVATE static uint32 GetInterfaceVersion() { return 1; } //! \endcond protected: //! //! Destructor //! virtual ~INode_v1() __NOTHROW__ {} //! \cond XMP_INTERNAL_DOCUMENTATION virtual uint32 APICALL getParentNodeType( pcIError_base & error ) const __NOTHROW__ = 0; virtual pINode_base APICALL getParent( pcIError_base & error ) __NOTHROW__ = 0; virtual void APICALL setName( const char * name, sizet nameLength, pcIError_base & error ) __NOTHROW__ = 0; virtual pcIUTF8String_base APICALL getName( pcIError_base & error ) const __NOTHROW__ = 0; virtual void APICALL setNameSpace( const char * nameSpace, sizet nameSpaceLength, pcIError_base & error ) __NOTHROW__ = 0; virtual pcIUTF8String_base APICALL getNameSpace( pcIError_base & error ) const __NOTHROW__ = 0; virtual pIPath_base APICALL getPath( pcIError_base & error ) const __NOTHROW__ = 0; virtual pINodeIterator_base APICALL qualifiersIterator( pcIError_base & error ) __NOTHROW__ = 0; virtual uint32 APICALL getQualifierNodeType( const char * nameSpace, sizet nameSpaceLength, const char * name, sizet nameLength, pcIError_base & error ) const __NOTHROW__ = 0; virtual pINode_base APICALL getQualifier( const char * nameSpace, sizet nameSpaceLength, const char * name, sizet nameLength, pcIError_base & error ) __NOTHROW__ = 0; virtual void APICALL insertQualifier( pINode_base base, pcIError_base & error ) __NOTHROW__ = 0; virtual pINode_base APICALL replaceQualifier( pINode_base node, pcIError_base & error ) __NOTHROW__ = 0; virtual pINode_base APICALL removeQualifier( const char * nameSpace, sizet nameSpaceLength, const char * name, sizet nameLength, pcIError_base & error ) __NOTHROW__ = 0; virtual uint32 APICALL getNodeType( pcIError_base & error ) const __NOTHROW__ = 0; virtual uint32 APICALL isArrayItem( pcIError_base & error ) const __NOTHROW__ = 0; virtual uint32 APICALL isQualifierNode( pcIError_base & error ) const __NOTHROW__ = 0; virtual sizet APICALL getIndex( pcIError_base & error ) const __NOTHROW__ = 0; virtual uint32 APICALL hasQualifiers( pcIError_base & error ) const __NOTHROW__ = 0; virtual uint32 APICALL hasContent( pcIError_base & error ) const __NOTHROW__ = 0; virtual uint32 APICALL isEmpty( pcIError_base & error ) const __NOTHROW__ = 0; virtual uint32 APICALL hasChanged( pcIError_base & error ) const __NOTHROW__ = 0; virtual void APICALL clear( uint32 contents, uint32 qualifiers, pcIError_base & error ) __NOTHROW__ = 0; virtual pINode_base APICALL clone( uint32 igoreEmptyNodes, uint32 ignoreNodesWithOnlyQualifiers, pcIError_base & error ) const __NOTHROW__ = 0; virtual pISimpleNode_base APICALL convertToSimpleNode( pcIError_base & error ) __NOTHROW__ = 0; virtual pIStructureNode_base APICALL convertToStructureNode( pcIError_base & error ) __NOTHROW__ = 0; virtual pIArrayNode_base APICALL convertToArrayNode( pcIError_base & error ) __NOTHROW__ = 0; virtual pIMetadata_base APICALL convertToMetadata( pcIError_base & error ) __NOTHROW__ = 0; //! @} #ifdef FRIEND_CLASS_DECLARATION FRIEND_CLASS_DECLARATION(); #endif REQ_FRIEND_CLASS_DECLARATION(); //! \endcond }; } //! \cond XMP_INTERNAL_DOCUMENTATION #if !BUILDING_XMPCORE_LIB && !SOURCE_COMPILING_XMPCORE_LIB namespace AdobeXMPCore { class INodeProxy : public virtual INode { private: pINode mRawPtr; public: INodeProxy( pINode ptr ); ~INodeProxy() __NOTHROW__ ; pINode APICALL GetActualINode() __NOTHROW__; void APICALL Acquire() const __NOTHROW__; void APICALL Release() const __NOTHROW__; AdobeXMPCommon_Int::pISharedObject_I APICALL GetISharedObject_I() __NOTHROW__; AdobeXMPCore_Int::pINode_I APICALL GetINode_I() __NOTHROW__; pvoid APICALL GetInterfacePointer( uint64 interfaceID, uint32 interfaceVersion ); virtual eNodeType APICALL GetParentNodeType() const; virtual spINode APICALL GetParent(); virtual void APICALL SetName( const char * name, sizet nameLength ); virtual spcIUTF8String APICALL GetName() const; virtual void APICALL SetNameSpace( const char * nameSpace, sizet nameSpaceLength ); virtual spcIUTF8String APICALL GetNameSpace() const; virtual spIPath APICALL GetPath() const; virtual sizet APICALL QualifiersCount() const __NOTHROW__; virtual spINodeIterator APICALL QualifiersIterator(); virtual eNodeType APICALL GetQualifierNodeType( const char * nameSpace, sizet nameSpaceLength, const char * name, sizet nameLength ) const; virtual spINode APICALL GetQualifier( const char * nameSpace, sizet nameSpaceLength, const char * name, sizet nameLength ); virtual void APICALL InsertQualifier( const spINode & node ); virtual spINode APICALL ReplaceQualifier( const spINode & node ); virtual spINode APICALL RemoveQualifier( const char * nameSpace, sizet nameSpaceLength, const char * name, sizet nameLength ); virtual eNodeType APICALL GetNodeType() const; virtual bool APICALL IsArrayItem() const; virtual bool APICALL IsQualifierNode() const; virtual sizet APICALL GetIndex() const; virtual bool APICALL HasQualifiers() const; virtual bool APICALL HasContent() const; virtual bool APICALL IsEmpty() const; virtual bool APICALL HasChanged() const; virtual void APICALL AcknowledgeChanges() const __NOTHROW__; virtual void APICALL Clear( bool contents, bool qualifiers ); virtual spINode APICALL Clone( bool ignoreEmptyNodes, bool ignoreNodesWithOnlyQualifiers ) const; virtual void APICALL EnableThreadSafety() const __NOTHROW__; virtual void APICALL DisableThreadSafety() const __NOTHROW__; virtual bool APICALL IsThreadSafe() const; virtual AdobeXMPCommon_Int::pIThreadSafe_I APICALL GetIThreadSafe_I() __NOTHROW__; virtual spISimpleNode APICALL ConvertToSimpleNode(); virtual spIStructureNode APICALL ConvertToStructureNode(); virtual spIArrayNode APICALL ConvertToArrayNode(); virtual spIMetadata APICALL ConvertToMetadata(); protected: virtual pINode_base APICALL getParent( pcIError_base & error ) __NOTHROW__; virtual void APICALL setName( const char * name, sizet nameLength, pcIError_base & error ) __NOTHROW__; virtual pcIUTF8String_base APICALL getName( pcIError_base & error ) const __NOTHROW__; virtual void APICALL setNameSpace( const char * nameSpace, sizet nameSpaceLength, pcIError_base & error ) __NOTHROW__; virtual pcIUTF8String_base APICALL getNameSpace( pcIError_base & error ) const __NOTHROW__; virtual pIPath_base APICALL getPath( pcIError_base & error ) const __NOTHROW__; virtual pINodeIterator_base APICALL qualifiersIterator( pcIError_base & error ) __NOTHROW__; virtual pINode_base APICALL getQualifier( const char * nameSpace, sizet nameSpaceLength, const char * name, sizet nameLength, pcIError_base & error ) __NOTHROW__; virtual void APICALL insertQualifier( pINode_base base, pcIError_base & error ) __NOTHROW__; virtual pINode_base APICALL replaceQualifier( pINode_base node, pcIError_base & error ) __NOTHROW__; virtual pINode_base APICALL removeQualifier( const char * nameSpace, sizet nameSpaceLength, const char * name, sizet nameLength, pcIError_base & error ) __NOTHROW__; virtual uint32 APICALL getNodeType( pcIError_base & error ) const __NOTHROW__; virtual uint32 APICALL isArrayItem( pcIError_base & error ) const __NOTHROW__; virtual uint32 APICALL isQualifierNode( pcIError_base & error ) const __NOTHROW__; virtual sizet APICALL getIndex( pcIError_base & error ) const __NOTHROW__; virtual uint32 APICALL hasQualifiers( pcIError_base & error ) const __NOTHROW__; virtual uint32 APICALL hasContent( pcIError_base & error ) const __NOTHROW__; virtual uint32 APICALL isEmpty( pcIError_base & error ) const __NOTHROW__; virtual uint32 APICALL hasChanged( pcIError_base & error ) const __NOTHROW__; virtual void APICALL clear( uint32 contents, uint32 qualifiers, pcIError_base & error ) __NOTHROW__; virtual pINode_base APICALL clone( uint32 igoreEmptyNodes, uint32 ignoreNodesWithOnlyQualifiers, pcIError_base & error ) const __NOTHROW__; virtual uint32 APICALL isThreadSafe() const __NOTHROW__; virtual pISimpleNode_base APICALL convertToSimpleNode( pcIError_base & error ) __NOTHROW__; virtual pIStructureNode_base APICALL convertToStructureNode( pcIError_base & error ) __NOTHROW__; virtual pIArrayNode_base APICALL convertToArrayNode( pcIError_base & error ) __NOTHROW__; virtual pIMetadata_base APICALL convertToMetadata( pcIError_base & error ) __NOTHROW__; virtual uint32 APICALL getParentNodeType( pcIError_base & error ) const __NOTHROW__; virtual uint32 APICALL getQualifierNodeType( const char * nameSpace, sizet nameSpaceLength, const char * name, sizet nameLength, pcIError_base & error ) const __NOTHROW__; pvoid APICALL getInterfacePointer( uint64 interfaceID, uint32 interfaceVersion, pcIError_base & error ) __NOTHROW__; }; } #endif // !BUILDING_XMPCORE_LIB && !SOURCE_COMPILING_XMPCORE_LIB //! \endcond #endif // __INode_h__
[ "gupta66priyanka@gmail.com" ]
gupta66priyanka@gmail.com
ab5e3d4c0fe5e76ef4f671b5a4ff6a3bac1b8e0c
11809b11cc43480356904024e9a8ab571550ab7a
/obse/obse/Utilities.cpp
97cba0f66cf0415b22bef9bc546a7b5f7c3f1a03
[]
no_license
clayne/Discord-Rich-Presence-OBSE
97a6d7717f8f622d7969c474abcd32f7207929fa
214023e4a891f385afff899af69b2b3bc1c68fb1
refs/heads/master
2023-03-17T06:32:42.515602
2020-07-12T13:14:54
2020-07-12T13:14:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
17,543
cpp
#include "Utilities.h" #include <algorithm> #ifdef OBLIVION #include "GameAPI.h" #include "Script.h" #include "GameOSDepend.h" void PrintItemType(TESForm * form) { Console_Print("%s (%s)", GetFullName(form), GetObjectClassName(form)); } const char GetSeparatorChar(Script* script) { if (IsConsoleMode()) { if (script && script->GetModIndex() != 0xFF) return '|'; else return '@'; } else return '|'; } const char* GetSeparatorChars(Script* script) { if (IsConsoleMode()) { if (script && script->GetModIndex() != 0xFF) return "|"; else return "@"; } else return "|"; } #endif #pragma warning (push) #pragma warning (disable : 4200) struct RTTIType { void * typeInfo; UInt32 pad; char name[0]; }; struct RTTILocator { UInt32 sig, offset, cdOffset; RTTIType * type; }; #pragma warning (pop) // use the RTTI information to return an object's class name const char * GetObjectClassName(void * objBase) { const char * result = "<no rtti>"; __try { void ** obj = (void **)objBase; RTTILocator ** vtbl = (RTTILocator **)obj[0]; RTTILocator * rtti = vtbl[-1]; RTTIType * type = rtti->type; // starts with ,? if((type->name[0] == '.') && (type->name[1] == '?')) { // is at most 100 chars long for(UInt32 i = 0; i < 100; i++) { if(type->name[i] == 0) { // remove the .?AV result = type->name + 4; break; } } } } __except(EXCEPTION_EXECUTE_HANDLER) { // return the default } return result; } void DumpClass(void * theClassPtr, UInt32 nIntsToDump) { _MESSAGE("DumpClass:"); UInt32* basePtr = (UInt32*)theClassPtr; gLog.Indent(); if (!theClassPtr) return; for (UInt32 ix = 0; ix < nIntsToDump; ix++ ) { UInt32* curPtr = basePtr+ix; const char* curPtrName = NULL; UInt32 otherPtr = 0; float otherFloat = 0.0; const char* otherPtrName = NULL; if (curPtr) { curPtrName = GetObjectClassName((void*)curPtr); __try { otherPtr = *curPtr; otherFloat = *(float*)(curPtr); } __except(EXCEPTION_EXECUTE_HANDLER) { // } if (otherPtr) { otherPtrName = GetObjectClassName((void*)otherPtr); } } _MESSAGE("%3d +%03X ptr: 0x%08X: %32s *ptr: 0x%08x | %f: %32s", ix, ix*4, curPtr, curPtrName, otherPtr, otherFloat, otherPtrName); } gLog.Outdent(); } std::string GetOblivionDirectory(void) { static std::string s_oblivionDirectory; if(s_oblivionDirectory.empty()) { // can't determine how many bytes we'll need, hope it's not more than MAX_PATH char oblivionPathBuf[MAX_PATH]; UInt32 oblivionPathLength = GetModuleFileName(GetModuleHandle(NULL), oblivionPathBuf, sizeof(oblivionPathBuf)); if(oblivionPathLength && (oblivionPathLength < sizeof(oblivionPathBuf))) { std::string oblivionPath(oblivionPathBuf, oblivionPathLength); // truncate at last slash std::string::size_type lastSlash = oblivionPath.rfind('\\'); if(lastSlash != std::string::npos) // if we don't find a slash something is VERY WRONG { s_oblivionDirectory = oblivionPath.substr(0, lastSlash + 1); _DMESSAGE("oblivion root = %s", s_oblivionDirectory.c_str()); } else { _WARNING("no slash in oblivion path? (%s)", oblivionPath.c_str()); } } else { _WARNING("couldn't find oblivion path (len = %d, err = %08X)", oblivionPathLength, GetLastError()); } } return s_oblivionDirectory; } #if OBLIVION #if OBLIVION_VERSION == OBLIVION_VERSION_1_1 const char*** g_KeyNames = (const char***)0xAF8B10; const char*** g_ButtonNames = (const char***)0xAF8AE8; #elif OBLIVION_VERSION == OBLIVION_VERSION_1_2 const char*** g_KeyNames = (const char***)0xB39578; const char*** g_ButtonNames = (const char***)0xB39554; #elif OBLIVION_VERSION == OBLIVION_VERSION_1_2_416 const char*** g_KeyNames = (const char***)0xB39578; const char*** g_ButtonNames = (const char***)0xB39554; #else #error unsupported version of oblivion #endif const char* GetDXDescription(UInt32 keycode) { const char* keyName = "<no key>"; if (keycode <= 220) { if (g_KeyNames[keycode]) keyName = *(g_KeyNames[keycode]); } else if (255 <= keycode && keycode <= 263) { if (keycode == 255) keycode = 256; if (g_ButtonNames[keycode - 256]) keyName = *(g_ButtonNames[keycode - 256]); } else if (keycode == 264) //OB doesn't provide names for wheel up/down keyName = "WheelUp"; else if (keycode == 265) keyName = "WheelDown"; return keyName; } void Console_Print_Long(const std::string& str) { UInt32 numLines = str.length() / 500; for (UInt32 i = 0; i < numLines; i++) Console_Print("%s ...", str.substr(i*500, 500).c_str()); Console_Print("%s", str.substr(numLines*500, str.length() - numLines*500).c_str()); } #endif namespace MersenneTwister { /* A C-program for MT19937, with initialization improved 2002/1/26. Coded by Takuji Nishimura and Makoto Matsumoto. Before using, initialize the state by using init_genrand(seed) or init_by_array(init_key, key_length). Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura, All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The names of its contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 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. Any feedback is very welcome. http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html email: m-mat @ math.sci.hiroshima-u.ac.jp (remove space) */ /* Period parameters */ #define N 624 #define M 397 #define MATRIX_A 0x9908b0dfUL /* constant vector a */ #define UPPER_MASK 0x80000000UL /* most significant w-r bits */ #define LOWER_MASK 0x7fffffffUL /* least significant r bits */ static unsigned long mt[N]; /* the array for the state vector */ static int mti=N+1; /* mti==N+1 means mt[N] is not initialized */ /* initializes mt[N] with a seed */ void init_genrand(unsigned long s) { mt[0]= s & 0xffffffffUL; for (mti=1; mti<N; mti++) { mt[mti] = (1812433253UL * (mt[mti-1] ^ (mt[mti-1] >> 30)) + mti); /* See Knuth TAOCP Vol2. 3rd Ed. P.106 for multiplier. */ /* In the previous versions, MSBs of the seed affect */ /* only MSBs of the array mt[]. */ /* 2002/01/09 modified by Makoto Matsumoto */ mt[mti] &= 0xffffffffUL; /* for >32 bit machines */ } } /* initialize by an array with array-length */ /* init_key is the array for initializing keys */ /* key_length is its length */ /* slight change for C++, 2004/2/26 */ void init_by_array(unsigned long init_key[], int key_length) { int i, j, k; init_genrand(19650218UL); i=1; j=0; k = (N>key_length ? N : key_length); for (; k; k--) { mt[i] = (mt[i] ^ ((mt[i-1] ^ (mt[i-1] >> 30)) * 1664525UL)) + init_key[j] + j; /* non linear */ mt[i] &= 0xffffffffUL; /* for WORDSIZE > 32 machines */ i++; j++; if (i>=N) { mt[0] = mt[N-1]; i=1; } if (j>=key_length) j=0; } for (k=N-1; k; k--) { mt[i] = (mt[i] ^ ((mt[i-1] ^ (mt[i-1] >> 30)) * 1566083941UL)) - i; /* non linear */ mt[i] &= 0xffffffffUL; /* for WORDSIZE > 32 machines */ i++; if (i>=N) { mt[0] = mt[N-1]; i=1; } } mt[0] = 0x80000000UL; /* MSB is 1; assuring non-zero initial array */ } /* generates a random number on [0,0xffffffff]-interval */ unsigned long genrand_int32(void) { unsigned long y; static unsigned long mag01[2]={0x0UL, MATRIX_A}; /* mag01[x] = x * MATRIX_A for x=0,1 */ if (mti >= N) { /* generate N words at one time */ int kk; if (mti == N+1) /* if init_genrand() has not been called, */ init_genrand(5489UL); /* a default initial seed is used */ for (kk=0;kk<N-M;kk++) { y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK); mt[kk] = mt[kk+M] ^ (y >> 1) ^ mag01[y & 0x1UL]; } for (;kk<N-1;kk++) { y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK); mt[kk] = mt[kk+(M-N)] ^ (y >> 1) ^ mag01[y & 0x1UL]; } y = (mt[N-1]&UPPER_MASK)|(mt[0]&LOWER_MASK); mt[N-1] = mt[M-1] ^ (y >> 1) ^ mag01[y & 0x1UL]; mti = 0; } y = mt[mti++]; /* Tempering */ y ^= (y >> 11); y ^= (y << 7) & 0x9d2c5680UL; y ^= (y << 15) & 0xefc60000UL; y ^= (y >> 18); return y; } /* generates a random number on [0,0x7fffffff]-interval */ long genrand_int31(void) { return (long)(genrand_int32()>>1); } /* generates a random number on [0,1]-real-interval */ double genrand_real1(void) { return genrand_int32()*(1.0/4294967295.0); /* divided by 2^32-1 */ } /* generates a random number on [0,1)-real-interval */ double genrand_real2(void) { return genrand_int32()*(1.0/4294967296.0); /* divided by 2^32 */ } /* generates a random number on (0,1)-real-interval */ double genrand_real3(void) { return (((double)genrand_int32()) + 0.5)*(1.0/4294967296.0); /* divided by 2^32 */ } /* generates a random number on [0,1) with 53-bit resolution*/ double genrand_res53(void) { unsigned long a=genrand_int32()>>5, b=genrand_int32()>>6; return(a*67108864.0+b)*(1.0/9007199254740992.0); } /* These real versions are due to Isaku Wada, 2002/01/09 added */ #undef N #undef M #undef MATRIX_A #undef UPPER_MASK #undef LOWER_MASK }; Tokenizer::Tokenizer(const char* src, const char* delims) : m_offset(0), m_delims(delims), m_data(src) { // } Tokenizer::~Tokenizer() { // } UInt32 Tokenizer::NextToken(std::string& outStr) { if (m_offset == m_data.length()) return -1; size_t start = m_data.find_first_not_of(m_delims, m_offset); if (start != -1) { size_t end = m_data.find_first_of(m_delims, start); if (end == -1) end = m_data.length(); m_offset = end; outStr = m_data.substr(start, end - start); return start; } return -1; } UInt32 Tokenizer::PrevToken(std::string& outStr) { if (m_offset == 0) return -1; size_t searchStart = m_data.find_last_of(m_delims, m_offset - 1); if (searchStart == -1) return -1; size_t end = m_data.find_last_not_of(m_delims, searchStart); if (end == -1) return -1; size_t start = m_data.find_last_of(m_delims, end); // okay if start == -1 here m_offset = end + 1; outStr = m_data.substr(start + 1, end - start); return start + 1; } #if 0 // max recursion depth is 10. We don't currently need anything close to that. static UInt32 g_ThisStdCall_returnAddr[10] = { 0 }; static UInt32 g_ThisStdCall_stackAddr[10] = { 0 }; // Updated to allow recursive calls to ThisStdCall (still cheesy but meh) // Issue came up with RunScriptLine "fileName" - LoadGame hook called ThisStdCall() again, overwriting the // previously stored stack variables __declspec(naked) UInt32 __cdecl ThisStdCall(UInt32 function, void * _this, ...) { static UInt32 nestDepth = 0; static UInt32 _ebx = 0; // ebx used as a working var, make sure original contents are preserved __asm { //// stack // return address <- esp // function // _this // args (unknown length) // ... //// target stack // return address <- esp // args (unknown length) pop eax pop edx pop ecx mov _ebx, ebx mov ebx, nestDepth mov g_ThisStdCall_returnAddr[ebx * 4], eax mov g_ThisStdCall_stackAddr[ebx * 4], esp add ebx, 1 mov nestDepth, ebx mov ebx, _ebx call edx mov _ebx, ebx mov ebx, nestDepth sub ebx, 1 mov nestDepth, ebx mov esp, g_ThisStdCall_stackAddr[ebx * 4] push 0 push 0 push g_ThisStdCall_returnAddr[ebx * 4] mov ebx, _ebx retn } } #endif bool ci_equal(char ch1, char ch2) { return tolower((unsigned char)ch1) == tolower((unsigned char)ch2); } bool ci_less(const char* lh, const char* rh) { ASSERT(lh && rh); while (*lh && *rh) { char l = toupper(*lh); char r = toupper(*rh); if (l < r) { return true; } else if (l > r) { return false; } lh++; rh++; } return toupper(*lh) < toupper(*rh); } void MakeUpper(std::string& str) { std::transform(str.begin(), str.end(), str.begin(), toupper); } void MakeLower(std::string& str) { std::transform(str.begin(), str.end(), str.begin(), tolower); } #if OBLIVION char* CopyCString(const char* src) { UInt32 size = src ? strlen(src) : 0; char* result = (char*)FormHeap_Allocate(size+1); result[size] = 0; if (size) { strcpy_s(result, size+1, src); } return result; } #endif #pragma warning(push) #pragma warning(disable: 4996) // warning about std::transform() void MakeUpper(char* str) { if (str) { UInt32 len = strlen(str); std::transform(str, str + len, str, toupper); } } void MakeLower(char* str) { if (str) { UInt32 len = strlen(str); std::transform(str, str + len, str, tolower); } } #pragma warning(pop) // ErrOutput ErrOutput::ErrOutput(_ShowError errorFunc, _ShowWarning warningFunc) { ShowWarning = warningFunc; ShowError = errorFunc; } void ErrOutput::vShow(ErrOutput::Message& msg, va_list args) { char msgText[0x400]; vsprintf_s(msgText, sizeof(msgText), msg.fmt.c_str(), args); if (msg.CanDisable()) { if (msg.IsDisabled() == false) if (ShowWarning(msgText)) msg.SetDisabled(); } else ShowError(msgText); } void ErrOutput::Show(ErrOutput::Message& msg, ...) { va_list args; va_start(args, msg); vShow(msg, args); } void ErrOutput::Show(const char* msg, ...) { va_list args; va_start(args, msg); vShow(msg, args); } void ErrOutput::vShow(const char* msg, va_list args) { Message tempMsg (msg); vShow(tempMsg, args); } const std::string & GetConfigPath(void) { static std::string s_configPath; if(s_configPath.empty()) { std::string runtimePath = GetOblivionDirectory(); if(!runtimePath.empty()) { s_configPath = runtimePath; s_configPath += "Data\\OBSE\\obse.ini"; _MESSAGE("config path = %s", s_configPath.c_str()); } } return s_configPath; } std::string GetConfigOption(const char * section, const char * key) { std::string result; const std::string & configPath = GetConfigPath(); if(!configPath.empty()) { char resultBuf[256]; resultBuf[0] = 0; UInt32 resultLen = GetPrivateProfileString(section, key, NULL, resultBuf, sizeof(resultBuf), configPath.c_str()); result = resultBuf; } return result; } bool GetConfigOption_UInt32(const char * section, const char * key, UInt32 * dataOut) { std::string data = GetConfigOption(section, key); if(data.empty()) return false; return (sscanf_s(data.c_str(), "%u", dataOut) == 1); } LPTOP_LEVEL_EXCEPTION_FILTER g_OriginalTopLevelExceptionFilter = NULL; bool CreateExceptionMiniDump( _EXCEPTION_POINTERS *ExceptionInfo ) { #if OBSE_CORE HANDLE DumpFile = CreateFile("OBSECrashDump.dmp", GENERIC_READ|GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL); if (DumpFile == INVALID_HANDLE_VALUE) return false; MINIDUMP_EXCEPTION_INFORMATION mdei; mdei.ThreadId = GetCurrentThreadId(); mdei.ExceptionPointers = ExceptionInfo; mdei.ClientPointers = FALSE; MINIDUMP_TYPE mdt = (MINIDUMP_TYPE)(MiniDumpNormal| MiniDumpWithIndirectlyReferencedMemory| MiniDumpScanMemory| MiniDumpWithThreadInfo| MiniDumpWithProcessThreadData| MiniDumpWithUnloadedModules| // MiniDumpWithDataSegs| MiniDumpWithFullMemoryInfo| MiniDumpWithHandleData); BOOL rv = MiniDumpWriteDump(GetCurrentProcess(), GetCurrentProcessId(), DumpFile, mdt, (ExceptionInfo != 0) ? &mdei : 0, 0, 0 ); if( !rv ) return false; CloseHandle(DumpFile); #endif return true; } LONG WINAPI OBSEUnhandledExceptionFilter( __in struct _EXCEPTION_POINTERS *ExceptionInfo ) { CreateExceptionMiniDump(ExceptionInfo); #ifdef OBLIVION ShowWindow((*g_osGlobals)->window, SW_MINIMIZE); MessageBox(NULL, "Oblivion has crashed! A minidump has been created in the game directory.", "OBSE", MB_TASKMODAL|MB_SETFOREGROUND|MB_ICONERROR|MB_OK); #else MessageBox(NULL, "The Construction Set has crashed! A minidump has been created in the game directory.", "OBSE", MB_TASKMODAL|MB_SETFOREGROUND|MB_ICONERROR|MB_OK); #endif if (g_OriginalTopLevelExceptionFilter) return g_OriginalTopLevelExceptionFilter(ExceptionInfo); else return EXCEPTION_EXECUTE_HANDLER; }
[ "lorenzofer@live.it" ]
lorenzofer@live.it
a59efd1229751d029d3e79444db9466727163f75
323788cf746237167c70f38117d3fbd26e92c041
/sandbox/thang/src/nnetbin/nnet-concat.cc
6d5e4526e06cbda4ce4fc743fb0b5b59ada7a9c2
[ "Apache-2.0", "LicenseRef-scancode-public-domain" ]
permissive
zweiein/kaldi
3cfc5d1fc66c1ca32c74f71171d4af2e2512f15c
708448c693272af0d68c8e178c7b4ff836125acf
refs/heads/master
2020-12-26T00:45:36.907011
2015-10-23T21:17:02
2015-10-23T21:17:02
46,313,562
0
1
null
2015-11-17T00:57:57
2015-11-17T00:57:57
null
UTF-8
C++
false
false
2,527
cc
// nnetbin/nnet-copy.cc // Copyright 2012 Karel Vesely // 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 // // THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED // WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, // MERCHANTABLITY OR NON-INFRINGEMENT. // See the Apache 2 License for the specific language governing permissions and // limitations under the License. #include "base/kaldi-common.h" #include "util/common-utils.h" #include "nnet/nnet-nnet.h" int main(int argc, char *argv[]) { try { using namespace kaldi; typedef kaldi::int32 int32; const char *usage = "Concatenate Neural Networks (and possibly change binary/text format)\n" "Usage: nnet-concat [options] <model-in1> <...> <model-inN> <model-out>\n" "e.g.:\n" " nnet-copy --binary=false nnet.1 nnet.2 nnet.1.2\n"; ParseOptions po(usage); bool binary_write = false; po.Register("binary", &binary_write, "Write output in binary mode"); po.Read(argc, argv); if (po.NumArgs() < 3) { po.PrintUsage(); exit(1); } std::string model_in_filename = po.GetArg(1); std::string model_in_filename_next; std::string model_out_filename = po.GetArg(po.NumArgs()); //read the first nnet KALDI_LOG << "Reading " << model_in_filename; Nnet nnet; { bool binary_read; Input ki(model_in_filename, &binary_read); nnet.Read(ki.Stream(), binary_read); } //read all the other nnets for(int32 i=2; i<po.NumArgs(); i++) { //read the nnet model_in_filename_next = po.GetArg(i); KALDI_LOG << "Concatenating " << model_in_filename_next; Nnet nnet_next; { bool binary_read; Input ki(model_in_filename_next, &binary_read); nnet_next.Read(ki.Stream(), binary_read); } //append nnet_next to the network nnet nnet.Concatenate(&nnet_next); } //finally write the nnet to disk { Output ko(model_out_filename, binary_write); nnet.Write(ko.Stream(), binary_write); } KALDI_LOG << "Written model to " << model_out_filename; return 0; } catch(const std::exception &e) { std::cerr << e.what() << '\n'; return -1; } }
[ "danielpovey@5e6a8d80-dfce-4ca6-a32a-6e07a63d50c8" ]
danielpovey@5e6a8d80-dfce-4ca6-a32a-6e07a63d50c8
07e8e8ec6b127dc4fa62943c031fec1c106c0a66
d324b3d4ce953574c5945cda64e179f33c36c71b
/php/php-sky/grpc/third_party/protobuf/src/google/protobuf/proto3_lite_unittest.inc
bc1ddab5f5e6c9f6bc895921f430d6d7e1edc381
[ "Apache-2.0", "LicenseRef-scancode-protobuf" ]
permissive
Denticle/docker-base
decc36cc8eb01be1157d0c0417958c2c80ac0d2f
232115202594f4ea334d512dffb03f34451eb147
refs/heads/main
2023-04-21T10:08:29.582031
2021-05-13T07:27:52
2021-05-13T07:27:52
320,431,033
1
1
null
null
null
null
UTF-8
C++
false
false
5,393
inc
// Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. 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 <memory> #include <string> #include <vector> #include <google/protobuf/arena.h> #include <google/protobuf/testing/googletest.h> #include <gtest/gtest.h> using UNITTEST::TestAllTypes; namespace google { namespace protobuf { namespace { // We selectively set/check a few representative fields rather than all fields // as this test is only expected to cover the basics of lite support. void SetAllFields(TestAllTypes* m) { m->set_optional_int32(100); m->set_optional_string("asdf"); m->set_optional_bytes("jkl;"); m->mutable_optional_nested_message()->set_bb(42); m->mutable_optional_foreign_message()->set_c(43); m->set_optional_nested_enum(UNITTEST::TestAllTypes::BAZ); m->set_optional_foreign_enum( UNITTEST::FOREIGN_BAZ); m->mutable_optional_lazy_message()->set_bb(45); m->add_repeated_int32(100); m->add_repeated_string("asdf"); m->add_repeated_bytes("jkl;"); m->add_repeated_nested_message()->set_bb(46); m->add_repeated_foreign_message()->set_c(47); m->add_repeated_nested_enum(UNITTEST::TestAllTypes::BAZ); m->add_repeated_foreign_enum( UNITTEST::FOREIGN_BAZ); m->add_repeated_lazy_message()->set_bb(49); m->set_oneof_uint32(1); m->mutable_oneof_nested_message()->set_bb(50); m->set_oneof_string("test"); // only this one remains set } void ExpectAllFieldsSet(const TestAllTypes& m) { EXPECT_EQ(100, m.optional_int32()); EXPECT_EQ("asdf", m.optional_string()); EXPECT_EQ("jkl;", m.optional_bytes()); EXPECT_EQ(true, m.has_optional_nested_message()); EXPECT_EQ(42, m.optional_nested_message().bb()); EXPECT_EQ(true, m.has_optional_foreign_message()); EXPECT_EQ(43, m.optional_foreign_message().c()); EXPECT_EQ(UNITTEST::TestAllTypes::BAZ, m.optional_nested_enum()); EXPECT_EQ(UNITTEST::FOREIGN_BAZ, m.optional_foreign_enum()); EXPECT_EQ(true, m.has_optional_lazy_message()); EXPECT_EQ(45, m.optional_lazy_message().bb()); EXPECT_EQ(1, m.repeated_int32_size()); EXPECT_EQ(100, m.repeated_int32(0)); EXPECT_EQ(1, m.repeated_string_size()); EXPECT_EQ("asdf", m.repeated_string(0)); EXPECT_EQ(1, m.repeated_bytes_size()); EXPECT_EQ("jkl;", m.repeated_bytes(0)); EXPECT_EQ(1, m.repeated_nested_message_size()); EXPECT_EQ(46, m.repeated_nested_message(0).bb()); EXPECT_EQ(1, m.repeated_foreign_message_size()); EXPECT_EQ(47, m.repeated_foreign_message(0).c()); EXPECT_EQ(1, m.repeated_nested_enum_size()); EXPECT_EQ(UNITTEST::TestAllTypes::BAZ, m.repeated_nested_enum(0)); EXPECT_EQ(1, m.repeated_foreign_enum_size()); EXPECT_EQ(UNITTEST::FOREIGN_BAZ, m.repeated_foreign_enum(0)); EXPECT_EQ(1, m.repeated_lazy_message_size()); EXPECT_EQ(49, m.repeated_lazy_message(0).bb()); EXPECT_EQ(UNITTEST::TestAllTypes::kOneofString, m.oneof_field_case()); EXPECT_EQ("test", m.oneof_string()); } // In this file we only test some basic functionalities of in proto3 and expect // the rest is fully tested in proto2 unittests because proto3 shares most code // with proto2. TEST(LITE_TEST_NAME, Parsing) { TestAllTypes original; SetAllFields(&original); TestAllTypes msg; msg.ParseFromString(original.SerializeAsString()); ExpectAllFieldsSet(msg); } TEST(LITE_TEST_NAME, Swap) { // Test Swap(). TestAllTypes msg1; TestAllTypes msg2; msg1.set_optional_string("123"); msg2.set_optional_string("3456"); msg1.Swap(&msg2); EXPECT_EQ("3456", msg1.optional_string()); EXPECT_EQ("123", msg2.optional_string()); EXPECT_EQ(msg1.ByteSize(), msg2.ByteSize() + 1); } } // namespace } // namespace protobuf } // namespace google
[ "root@localhost.localdomain" ]
root@localhost.localdomain
67632a0208e4bd46ffb795d488666aa196ac0e7a
53f3f38eac3ed44f23f8f58d34aa8bd89555eaef
/src/msvc/include/AutoGemmKernelSources/zgemm_Col_CC_B0_ML032_NX032_KX01_src.cpp
10a120e655c60bb3570a8101186fa35d72d2c531
[ "Apache-2.0" ]
permissive
gajgeospatial/clBLAS-1.10
16039ddfad67b6c26a00767f33911e7c6fe374dc
2f5f1347e814e23b93262cd6fa92ec1d228963ac
refs/heads/master
2022-06-27T09:08:34.399452
2020-05-12T16:50:46
2020-05-12T16:50:46
263,172,549
0
0
null
null
null
null
UTF-8
C++
false
false
7,178
cpp
/******************************************************************************* * This file was auto-generated using the AutoGemm.py python script. * DO NOT modify this file! Instead, make changes to scripts in * clBLAS/src/library/blas/AutoGemm/ then re-generate files * (otherwise local changes will be lost after re-generation). ******************************************************************************/ #ifndef KERNEL_ZGEMM_COL_CC_B0_ML032_NX032_KX01_SRC_H #define KERNEL_ZGEMM_COL_CC_B0_ML032_NX032_KX01_SRC_H const unsigned int zgemm_Col_CC_B0_ML032_NX032_KX01_workGroupNumRows = 16; const unsigned int zgemm_Col_CC_B0_ML032_NX032_KX01_workGroupNumCols = 16; const unsigned int zgemm_Col_CC_B0_ML032_NX032_KX01_microTileNumRows = 2; const unsigned int zgemm_Col_CC_B0_ML032_NX032_KX01_microTileNumCols = 2; const unsigned int zgemm_Col_CC_B0_ML032_NX032_KX01_unroll = 1; const char * const zgemm_Col_CC_B0_ML032_NX032_KX01_src ="\n" "/* zgemm_Col_CC_B0_ML032_NX032_KX01 */\n" "\n" "#pragma OPENCL EXTENSION cl_khr_fp64 : enable\n" "\n" "/* kernel parameters */\n" "#define WG_NUM_ROWS 16\n" "#define WG_NUM_COLS 16\n" "#define MICRO_TILE_NUM_ROWS 2\n" "#define MICRO_TILE_NUM_COLS 2\n" "#define MACRO_TILE_NUM_ROWS 32\n" "#define MACRO_TILE_NUM_COLS 32\n" "#define NUM_UNROLL_ITER 1\n" "\n" "#define LOCAL_ROW_PAD 0\n" "#define LOCAL_COL_PAD 0\n" "\n" "/* global memory indices */\n" "#define GET_GLOBAL_INDEX_A(ROW,COL) ((ROW)*lda+(COL))\n" "#define GET_GLOBAL_INDEX_B(ROW,COL) ((ROW)*ldb+(COL))\n" "#define GET_GLOBAL_INDEX_C(ROW,COL) ((COL)*ldc+(ROW))\n" "\n" "/* local memory indices */\n" "#define GET_LOCAL_INDEX_A(ROW,COL) ((ROW) + (COL)*((MACRO_TILE_NUM_ROWS)+(LOCAL_COL_PAD)) )\n" "#define GET_LOCAL_INDEX_B(ROW,COL) ((COL) + (ROW)*((MACRO_TILE_NUM_COLS)+(LOCAL_ROW_PAD)) )\n" "\n" "/* data types */\n" "#define DATA_TYPE_STR double2\n" "#define TYPE_MAD(MULA,MULB,DST) \\\n" " DST.s0 = mad( MULA.s0, MULB.s0, DST.s0 ); \\\n" " DST.s0 = mad( MULA.s1, -MULB.s1, DST.s0 ); \\\n" " DST.s1 = mad( MULA.s0, -MULB.s1, DST.s1 ); \\\n" " DST.s1 = mad( -MULA.s1, MULB.s0, DST.s1 );\n" "#define TYPE_MAD_WRITE( DST, ALPHA, REG, BETA ) \\\n" " /* (1) */ \\\n" " type_mad_tmp = REG.s0; \\\n" " REG.s0 *= ALPHA.s0; \\\n" " REG.s0 = mad( -ALPHA.s1, REG.s1, REG.s0 ); \\\n" " REG.s1 *= ALPHA.s0; \\\n" " REG.s1 = mad( ALPHA.s1, type_mad_tmp, REG.s1 ); \\\n" " DST = REG;\n" "\n" "/* 2x2 micro-tile */\n" "#define MICRO_TILE \\\n" " rA[0] = localA[offA + 0*WG_NUM_ROWS]; \\\n" " rA[1] = localA[offA + 1*WG_NUM_ROWS]; \\\n" " rB[0] = localB[offB + 0*WG_NUM_COLS]; \\\n" " rB[1] = localB[offB + 1*WG_NUM_COLS]; \\\n" " offA += (MACRO_TILE_NUM_ROWS+LOCAL_COL_PAD); \\\n" " offB += (MACRO_TILE_NUM_COLS+LOCAL_ROW_PAD); \\\n" " TYPE_MAD(rA[0],rB[0],rC[0][0]); \\\n" " TYPE_MAD(rA[0],rB[1],rC[0][1]); \\\n" " TYPE_MAD(rA[1],rB[0],rC[1][0]); \\\n" " TYPE_MAD(rA[1],rB[1],rC[1][1]); \\\n" " mem_fence(CLK_LOCAL_MEM_FENCE);\n" "\n" "__attribute__((reqd_work_group_size(WG_NUM_COLS,WG_NUM_ROWS,1)))\n" "__kernel void zgemm_Col_CC_B0_ML032_NX032_KX01(\n" " __global DATA_TYPE_STR const * restrict A,\n" " __global DATA_TYPE_STR const * restrict B,\n" " __global DATA_TYPE_STR * C,\n" " DATA_TYPE_STR const alpha,\n" " DATA_TYPE_STR const beta,\n" " uint const M,\n" " uint const N,\n" " uint const K,\n" " uint const lda,\n" " uint const ldb,\n" " uint const ldc,\n" " uint const offsetA,\n" " uint const offsetB,\n" " uint const offsetC\n" ") {\n" "\n" " /* apply offsets */\n" " A += offsetA;\n" " B += offsetB;\n" " C += offsetC;\n" "\n" " /* allocate registers */\n" " DATA_TYPE_STR rC[MICRO_TILE_NUM_ROWS][MICRO_TILE_NUM_COLS] = { {0} };\n" " DATA_TYPE_STR rA[MICRO_TILE_NUM_ROWS];\n" " DATA_TYPE_STR rB[MICRO_TILE_NUM_COLS];\n" "\n" " /* allocate local memory */\n" " __local DATA_TYPE_STR localA[NUM_UNROLL_ITER*(MACRO_TILE_NUM_ROWS+LOCAL_COL_PAD)];\n" " __local DATA_TYPE_STR localB[NUM_UNROLL_ITER*(MACRO_TILE_NUM_COLS+LOCAL_ROW_PAD)];\n" "\n" " /* work item indices */\n" " uint groupRow = M / 32; // last row\n" " uint groupCol = get_group_id(1);\n" " uint localRow = get_local_id(0);\n" " uint localCol = get_local_id(1);\n" " uint localSerial = localRow + localCol*WG_NUM_ROWS;\n" "\n" " /* global indices being loaded */\n" "#define globalARow(LID) (groupRow*MACRO_TILE_NUM_ROWS + (localSerial+(LID)*WG_NUM_ROWS*WG_NUM_COLS)/NUM_UNROLL_ITER)\n" "#define globalACol(LID) ((localSerial+(LID)*WG_NUM_ROWS*WG_NUM_COLS)%NUM_UNROLL_ITER)\n" "#define globalBRow(LID) ((localSerial+(LID)*WG_NUM_ROWS*WG_NUM_COLS)/MACRO_TILE_NUM_COLS)\n" "#define globalBCol(LID) (groupCol*MACRO_TILE_NUM_COLS + (localSerial+(LID)*WG_NUM_ROWS*WG_NUM_COLS)%MACRO_TILE_NUM_COLS)\n" "\n" " /* loop over k */\n" " uint block_k = K / NUM_UNROLL_ITER;\n" " do {\n" "\n" " /* local indices being written */\n" "#define localARow (localSerial / NUM_UNROLL_ITER)\n" "#define localACol (localSerial % NUM_UNROLL_ITER)\n" "#define localAStride (WG_NUM_ROWS*WG_NUM_COLS/NUM_UNROLL_ITER)\n" "#define localBRow ( localSerial / MACRO_TILE_NUM_COLS )\n" "#define localBCol ( localSerial % MACRO_TILE_NUM_COLS )\n" "#define localBStride (WG_NUM_ROWS*WG_NUM_COLS)\n" " __local DATA_TYPE_STR *lA = localA + GET_LOCAL_INDEX_A(localARow, localACol);\n" " __local DATA_TYPE_STR *lB = localB + GET_LOCAL_INDEX_B(localBRow, localBCol);\n" " barrier(CLK_LOCAL_MEM_FENCE);\n" "\n" " /* load global -> local */\n" " if ( localSerial + 0*WG_NUM_ROWS*WG_NUM_COLS < (WG_NUM_ROWS*MICRO_TILE_NUM_ROWS*NUM_UNROLL_ITER) ) {\n" " lA[ 0*localAStride ] = ( globalARow(0) >= M) ? (double2)(0.0, 0.0) : A[ GET_GLOBAL_INDEX_A( globalARow(0), globalACol(0) ) ];\n" " }\n" " if ( localSerial + 0*WG_NUM_ROWS*WG_NUM_COLS < (WG_NUM_COLS*MICRO_TILE_NUM_COLS*NUM_UNROLL_ITER) ) {\n" " lB[ 0*localBStride ] = B[ GET_GLOBAL_INDEX_B( globalBRow(0), globalBCol(0) ) ];\n" " }\n" " barrier(CLK_LOCAL_MEM_FENCE);\n" " uint offA = localRow;\n" " uint offB = localCol;\n" "\n" " /* do mads */\n" " MICRO_TILE\n" "\n" " /* shift to next k block */\n" " A += NUM_UNROLL_ITER;\n" " B += ldb*NUM_UNROLL_ITER;\n" "\n" " } while (--block_k > 0);\n" "\n" "\n" " /* which global Cij index */\n" " uint globalCRow = groupRow * MACRO_TILE_NUM_ROWS + localRow;\n" " uint globalCCol = groupCol * MACRO_TILE_NUM_COLS + localCol;\n" "\n" " /* write global Cij */\n" " double type_mad_tmp;\n" " if (globalCRow+0*WG_NUM_ROWS < M){ TYPE_MAD_WRITE( C[ GET_GLOBAL_INDEX_C( globalCRow+0*WG_NUM_ROWS, globalCCol+0*WG_NUM_COLS) ], alpha, rC[0][0], beta )}\n" " if (globalCRow+0*WG_NUM_ROWS < M){ TYPE_MAD_WRITE( C[ GET_GLOBAL_INDEX_C( globalCRow+0*WG_NUM_ROWS, globalCCol+1*WG_NUM_COLS) ], alpha, rC[0][1], beta )}\n" " if (globalCRow+1*WG_NUM_ROWS < M){ TYPE_MAD_WRITE( C[ GET_GLOBAL_INDEX_C( globalCRow+1*WG_NUM_ROWS, globalCCol+0*WG_NUM_COLS) ], alpha, rC[1][0], beta )}\n" " if (globalCRow+1*WG_NUM_ROWS < M){ TYPE_MAD_WRITE( C[ GET_GLOBAL_INDEX_C( globalCRow+1*WG_NUM_ROWS, globalCCol+1*WG_NUM_COLS) ], alpha, rC[1][1], beta )}\n" "\n" "}\n" ""; #else #endif
[ "glen.johnson@gaj-geospatial.com" ]
glen.johnson@gaj-geospatial.com
f35c0ce66d97b0f68f7c264bf0300b04d79d718e
866558f94b9b0d841e8ef68715273a8671511a84
/inc/simple/stringify_lua.cpp
8d1cb2a5b61765208c36b1f394dffc1f9fb4976b
[ "MIT" ]
permissive
ximenpo/simple-cpp
66a1de295fafaf911051889fbf21fc3f368eb9ac
0779674dbea5cd8f4081140cad90edeaa31da7c8
refs/heads/master
2021-01-19T01:02:12.640957
2016-11-15T06:30:28
2016-11-15T06:30:28
32,370,140
2
0
null
null
null
null
UTF-8
C++
false
false
1,923
cpp
#include <cassert> #include <deque> #include "string.h" #include "stringify.h" struct stringify_data_lua_visitor : public stringify_data_visitor { virtual bool visit_begin() { seqs_.clear(); seqs_.push_back(0); return os_.good(); } virtual bool visit_value(const std::string& value, const std::string* name) { write_comma_(); if(0 != name) { os_ << (*name) << '=' ; } if(string_isnumber(value)) { os_<< value; } else { os_<< '"' << string_json_escape(value) << '"'; } return os_.good(); } virtual bool visit_array_begin(const std::string* name) { write_comma_(); if(0 != name) { os_ << (*name) << '=' ; } os_ << '{'; seqs_.push_back(0); return os_.good(); } virtual bool visit_array_end() { os_ << '}'; seqs_.pop_back(); return os_.good(); } virtual bool visit_object_begin(const std::string* name) { write_comma_(); if(0 != name) { os_ << (*name) << '=' ; } os_ << '{'; seqs_.push_back(0); return os_.good(); } virtual bool visit_object_end() { os_ << '}'; seqs_.pop_back(); return os_.good(); } virtual bool visit_end() { assert(!seqs_.empty()); seqs_.pop_back(); assert(seqs_.empty()); return os_.good(); } stringify_data_lua_visitor(std::ostream& os) : os_(os) { } void write_comma_() { assert(!seqs_.empty()); if(seqs_.back() > 0) { os_ << ','; } seqs_.back()++; } std::ostream& os_; std::deque<size_t> seqs_; }; bool stringify_to_lua_stream(stringify_data& data, std::ostream& os) { stringify_data_lua_visitor visitor(os); return data.accept(visitor); }
[ "ximenpo@jiandan.ren" ]
ximenpo@jiandan.ren
cb68246de8aafb0b7bca2318728a49c60591b769
fa53830aa4e6b1b7400b9c8a072702633d461f74
/Game/Source/Utility/Vector_Easing.h
8b7df2e7d13c86b9fcfcbe439c807ade24904a31
[]
no_license
thaotram/uit.game
6cfb0c9a82ad9a0a620859e23816fd32e9672bb1
b7448ff2e96083fc60356fc22460f16acfc783a1
refs/heads/master
2021-09-01T18:25:08.814276
2017-12-28T07:36:27
2017-12-28T07:36:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
386
h
#pragma once #include <d3d9.h> #include <d3dx9.h> #include "Vector.h" #include "../../Define.h" #include "Float_Easing.h" class Vector_Easing { protected:public: Vector_Easing() {} Float_Easing x, y; void operator+=(V2 pDelta); void operator-=(V2 pDelta); void operator=(V2 pLast); void operator<<(V2 pVector); void Update(float delay); V2 VECTOR2(); Vector VECTOR(); };
[ "phamhongphuc.info@gmail.com" ]
phamhongphuc.info@gmail.com
86e5a30dbe677ef721d194dc060e7b0058019c4f
3b50bde6167e3e3d1c019207191069ee9243570b
/Semester 2/progdas 1/project netbeans/CppApplication_1/main.cpp
b79b65204bcec6c44df9bee1f0d962affd4619f7
[ "MIT" ]
permissive
bijancot/materikuliah
ccc10478b79b3749e201e5e5720c41e31f0831b8
119c26238e08487dda9b0c4f700e393e581f59f8
refs/heads/master
2021-07-13T09:49:23.532698
2020-06-19T13:34:40
2020-06-19T13:34:40
150,867,585
0
0
MIT
2018-12-06T23:02:35
2018-09-29T13:39:16
Java
UTF-8
C++
false
false
401
cpp
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /* * File: main.cpp * Author: bijan * * Created on May 6, 2018, 10:07 AM */ #include <cstdlib> using namespace std; /* * */ int main(int argc, char** argv) { return 0; }
[ "panjidia995@gmail.com" ]
panjidia995@gmail.com
6fdcb051a8dc4a4899973e927b8554c5d76af9fa
8bc9def7ec0385ae37d1b7668cf67dec0f11368d
/cg_2/invisibledeleter.cpp
f4ed75896f74467c76b670539046cf44cbdf619b
[]
no_license
ilya89099/cg_labs
4b5a07c40d48dce925dcc99efeb2579ee05d9dd9
6a56e2b11c035ba90ce05ef4e6c3f2b108f8217b
refs/heads/main
2023-02-02T03:45:30.793690
2020-12-19T08:17:13
2020-12-19T08:17:13
321,464,462
0
1
null
null
null
null
UTF-8
C++
false
false
1,395
cpp
#include "invisibledeleter.h" InvisibleDeleter::InvisibleDeleter(QObject* parent) : QObject(parent) {} InvisibleDeleter::InvisibleDeleter(QVector4D _position) : position(_position){} void InvisibleDeleter::setViewPoint(QVector4D _position) { position = _position; } QVector<Polygon> InvisibleDeleter::deleteInvisible(QVector<Polygon> polygons) { QVector<QVector4D> equations; QVector<Polygon> result; std::transform(polygons.begin(), polygons.end(), std::back_inserter(equations), [] (const Polygon& p) { return InvisibleDeleter::getPlaneEquation(p); }); for (int i = 0; i < equations.size(); ++i) { QVector4D view_res = position * equations[i]; double sum_view = view_res.x() + view_res.y() + view_res.z() + view_res.w(); if (sum_view < 0) { result.push_back(polygons[i]); } } return result; } QVector4D InvisibleDeleter::getPlaneEquation(Polygon p) { QVector4D result; QVector3D a = p[1].toVector3D() - p[0].toVector3D(); QVector3D b = p[2].toVector3D() - p[0].toVector3D(); result.setX(a.y() * b.z() - a.z() * b.y()); result.setY(a.z() * b.x() - a.x() * b.z()); result.setZ(a.x() * b.y() - a.y() * b.x()); result.setW(-result.x() * p[0].x() - result.y() * p[0].y() - result.z() * p[0].z()); return result; }
[ "ilya.semenov89099@yandex.ru" ]
ilya.semenov89099@yandex.ru
deaa0d566a0d7d68516bd31bccdefe915ee5a2cb
f88da6e4c6b4e0ba14cd7e49546c8c54530108e8
/Algorithm/code/Merge Sort.cpp
99bd4eafd7155850e055dcbed8fba72f070ff170
[]
no_license
algoribi/computer-science
375c96c6c19aa37100d1150009e8eeaee04ee688
7850a431e8ad884357c2ae64364067f4f7e314a2
refs/heads/master
2023-07-15T06:56:54.466432
2021-08-21T13:37:01
2021-08-21T13:37:01
267,052,964
1
0
null
null
null
null
UTF-8
C++
false
false
1,094
cpp
#include <iostream> #define size 8 using namespace std; int sorted[size]; void merge(int a[], int start, int mid, int end) { int i = start; int j = mid + 1; int k = start; while (i <= mid && j <= end) { if (a[i] <= a[j]) { sorted[k] = a[i]; i++; } else { sorted[k] = a[j]; j++; } k++; } if (i > mid) { for (j; j <= end; j++) { sorted[k] = a[j]; k++; } } else { for (i; i <= mid; i++) { sorted[k] = a[i]; k++; } } for (int l = start; l <= end; l++) { a[l] = sorted[l]; } } void mergeSort(int a[], int start, int end) { if (start >= end) return; int mid = (start + end) / 2; mergeSort(a, start, mid); mergeSort(a, mid + 1, end); merge(a, start, mid, end); } int main() { int arr[size] = {7, 6, 2, 8, 3, 5, 4, 1}; mergeSort(arr, 0, size - 1); //출력 for (int i = 0; i < size; i++) { cout << arr[i] << " "; } return 0; }
[ "algoribi36@gmail.com" ]
algoribi36@gmail.com
2ecc1b10c31aeedd344041dae4af0eaec40f05c8
ca99957a8f3cd3da308a70ea58ad04da6a2a2d1a
/base_plot.h
88ed57760f9ff7a253b4decdf8734e33c5263f71
[]
no_license
jingli90/simpleBP
2feb72be32dce20d49443c58ec230a141cb23702
fd33ce42edc202026aad4c6944d708c0648d57dd
refs/heads/master
2021-01-20T15:07:38.576067
2017-03-08T15:03:21
2017-03-08T15:03:21
82,797,355
0
0
null
null
null
null
UTF-8
C++
false
false
3,102
h
// From Nicolas #include <iostream> using namespace std; #include <string> #include <sstream> #include <TH1.h> #include <TGraph.h> #include <TTree.h> #include <TDirectory.h> #ifdef simpleBP_cxx TH1D* GetHistoWeight(TTree* t, string variable, int nbins, double xmin, double xmax, string cut, string weight, string name){ string sxmin, sxmax, snbins; stringstream ss[3]; ss[0] << xmin; ss[0] >> sxmin; ss[1] << xmax; ss[1] >> sxmax; ss[2] << nbins; ss[2] >> snbins; string variablenew = variable + " >> h(" + snbins + "," + sxmin + "," + sxmax + ")"; string cutnew = weight + " * (" + cut + ")"; t->Draw(variablenew.c_str(), cutnew.c_str()); TH1D *histo = (TH1D*)gDirectory->Get("h"); if (histo->GetEntries()==0) return histo; double underflow = histo->GetBinContent(0); //cout << "underflow="<<underflow<<endl; double val = 0; if (underflow>0) { val = histo->GetBinContent(1); histo->SetBinContent(1, val+underflow); histo->SetBinContent(0, 0); } double overflow = histo->GetBinContent(nbins+1); if (overflow>0) { val = histo->GetBinContent(nbins); histo->SetBinContent(nbins+1, 0); histo->SetBinContent(nbins, val+overflow); } //cout << "Area="<<histo->Integral()<<endl; //cout << "Nevents="<<histo->GetEntries()<<endl; histo->SetName(name.c_str()); histo->SetTitle(name.c_str()); return histo; } TGraph * GetEffSvsEffB(TTree* Signal, TTree* Background, string presel_sig, string presel_bkg, string var, double valmin, double valmax, string weight, int npoints, string TitleGraph){ int nbins = npoints; double* Eff_sg = new double[nbins]; double* Eff_err_sg = new double[nbins]; double* Eff_bg = new double[nbins]; double* Eff_err_bg = new double[nbins]; //stringstream ss[nbins+1]; string svalcut; string scut; string presel_sg = presel_sig; string presel_bg = presel_bkg; TH1D* Histo_sg = GetHistoWeight(Signal, var, npoints, valmin, valmax, presel_sg, weight, "sg"); Histo_sg->SetName("sg"); double denom_sg = Histo_sg->Integral(); cout << "denom_sg=" << denom_sg<< endl; TH1D* Histo_bg = GetHistoWeight(Background, var, npoints, valmin, valmax, presel_bg, weight, "bg"); Histo_bg->SetName("bg"); double denom_bg = Histo_bg->Integral(); cout << "denom_bg=" << denom_bg<< endl; Eff_sg[0]=1.; Eff_bg[0]=1.; for (int i=1; i<=nbins; i++){ double valcut = valmax*((double)i)/((double)nbins) + valmin*(1-((double)i)/((double)nbins)); //ss[i] << valcut; //ss[i] >> svalcut; double num_sg = Histo_sg->Integral(i, nbins); double num_bg = Histo_bg->Integral(i, nbins); Eff_sg[i] = num_sg/denom_sg; Eff_err_sg[i] = Eff_sg[i] * (sqrt(num_sg)/num_sg + sqrt(denom_sg)/denom_sg); Eff_bg[i] = num_bg/denom_bg; Eff_err_bg[i] = Eff_bg[i] * (sqrt(num_bg)/num_bg + sqrt(denom_bg)/denom_bg); //cout << "i="<<i << " "<<var<< "<" <<svalcut<<" effS="<<Eff_sg[i]<<" +/- "<< Eff_err_sg[i]<<" effB="<< Eff_bg[i]<<" +/- "<< Eff_err_bg[i]<<endl; } TGraph* GraphEff = new TGraph(nbins+1, Eff_bg, Eff_sg); GraphEff->SetName(TitleGraph.c_str()); GraphEff->SetTitle(TitleGraph.c_str()); return GraphEff; } #endif
[ "crystalli.pku@gmail.com" ]
crystalli.pku@gmail.com
c403f639f26c39b6bdc5847c3b57e475a388eadb
49cd18e27ffa44f9b658763a6a60b3555585a002
/src/TestFiniteElementShape.cpp
488a4209c29dd70fee795c8c8ccf1933cceeb98c
[]
no_license
YvanMokwinski/WFLOW
72e136634e38a34b687446f1415cc7c8503de927
8f9c36c53bbf19e0956b6a2ccf13cf7f493a9573
refs/heads/master
2022-09-09T23:08:53.986782
2019-12-24T07:41:22
2019-12-24T07:41:22
229,709,742
0
0
null
null
null
null
UTF-8
C++
false
false
964
cpp
#include "Shape.hpp" int main(int argc, const char** argv) { for (FiniteElementFamily::ValueType finiteElementFamily = FiniteElementFamily::begin;finiteElementFamily <= FiniteElementFamily::last;++finiteElementFamily) { std::cout << finiteElementFamily << std::endl; } for (int i=0;i<FiniteElementFamily::Size;++i) { std::cout << FiniteElementFamily::GetValue(i) << std::endl; } { static const char transp = 'N'; static const char transr = 'N'; static const I n = 2; R pos[] = {0.0,0.0, 1.0,0.0}; static const I posoff = 2; R res[] = {0.0,0.0,0.0, 0.0,0.0,0.0}; static const I resoff = 3; I info; Shape<__eTopology_TRIANGLE,FiniteElementFamily::Lagrange,1>::Eval(&transp, &transr, &n, pos, &posoff, res, &resoff, &info); return 0; } }
[ "yvan.mokwinski@gmail.com" ]
yvan.mokwinski@gmail.com
efe5cf855b3e31211740e86b4f3ac67693ef0d27
0d8a758fb4f8d64b6f67cdbc0d3f7956dc85882b
/InterviewBit/Graph/Floyd Warshall Algorithm.cpp
04b61fa529fc3fce1c20cec8fd8a5da75bff4bf9
[]
no_license
manu05X/ProgramFiles
dbc6079c9bd34c63630a60bc38fd53f61be1d85d
c76130ea1815c9fb9db738b531b498e4859ad874
refs/heads/master
2022-05-05T10:29:16.774437
2022-04-12T02:32:20
2022-04-12T02:32:20
212,744,521
0
0
null
null
null
null
UTF-8
C++
false
false
2,503
cpp
/* Floyd Warshall Algorithm Problem Description Given a matrix of integers A of size N x N, where A[i][j] represents the weight of directed edge from i to j (i ---> j). If i == j, A[i][j] = 0, and if there is no directed edge from vertex i to vertex j, A[i][j] = -1. Return a matrix B of size N x N where B[i][j] = shortest path from vertex i to vertex j. If there is no possible path from vertex i to vertex j , B[i][j] = -1 Note: Rows are numbered from top to bottom and columns are numbered from left to right. Problem Constraints 1 <= N <= 200 -1 <= A[i][j] <= 1000000 Input Format The first and only argument given is the integer matrix A. Output Format Return a matrix B of size N x N where B[i][j] = shortest path from vertex i to vertex j If there is no possible path from vertex i to vertex j, B[i][j] = -1. Example Input A = [ [0 , 50 , 39] [-1 , 0 , 1] [-1 , 10 , 0] ] Example Output [ [0 , 49 , 39 ] [-1 , 0 , -1 ] [-1 , 10 , 0 ] ] Example Explanation Shortest Path from 1 to 2 would be 1 ---> 3 ---> 2 and not directly from 1 to 2, All remaining distances remains same. */ vector<vector<int> > Solution::solve(vector<vector<int> > &A) { int n=A.size(); for(int i=0;i<n;i++) { for(int j=0;j<n;j++) { if(A[i][j]==-1) { A[i][j]=100000005; } } } for(int k=0;k<n;k++) { for(int i=0;i<n;i++) { for(int j=0;j<n;j++) { if(A[i][k]+A[k][j]<A[i][j]) { A[i][j]=A[i][k]+A[k][j]; } } } } for(int i=0;i<n;i++) { for(int j=0;j<n;j++) { if(A[i][j]==100000005) { A[i][j]=-1; } } } return A; } /* class Solution: # @param A : list of list of integers # @return a list of list of integers def solve(self, A): inf = 1e9 n = len(A) for i in range(n): for j in range(n): if A[i][j]==-1: A[i][j] = inf for k in range(n): for i in range(n): for j in range(n): if A[i][j] > (A[i][k] + A[k][j]): A[i][j] = A[i][k] + A[k][j] for i in range(n): for j in range(n): if A[i][j]==inf: A[i][j] = -1 return A */
[ "36466808+manu05X@users.noreply.github.com" ]
36466808+manu05X@users.noreply.github.com
291430b735caa0f85741a5c93d3f2262a1331acc
cab2cb3d576b5012a01620403f49d4fc92727e83
/4. SY/Game/Source/Game/MyHUD.cpp
d7baa17f390018754f10efe617a5fd348851f8a6
[]
no_license
khskosu/-Tutorial-UE4-
861b6b8b0f460e72b7cbce6402dc7b32f57850b7
39e30fb778c3fb29164a1347a289d943dd57928f
refs/heads/master
2021-01-18T16:48:16.624366
2017-03-23T08:48:10
2017-03-23T08:48:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,539
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "Game.h" #include "MyHUD.h" #include "GameGameModeBase.h" #include "MyCharacter.h" #include "Monster.h" AMyHUD::AMyHUD() { PrimaryActorTick.bCanEverTick = true; } void AMyHUD::DrawHUD() { Super::DrawHUD(); AGameGameModeBase* GameMode = Cast<AGameGameModeBase>(UGameplayStatics::GetGameMode(GetWorld())); if (!GameMode) return; EPlayState playState = GameMode->GetCurrentState(); switch (playState) { case EPlayState::EPS_Play: { DrawText(TEXT("Play"), FColor::Black, 100, 0, hudFont); AMyCharacter* MyCharacter = Cast<AMyCharacter>(UGameplayStatics::GetPlayerPawn(GetWorld(), 0)); if (!MyCharacter) return; FString hpString = FString::FromInt(MyCharacter->GetHP()); DrawText(TEXT("HP: "+ hpString), FColor::Black, 0, 100, hudFont, 0.5f ); int32 MonsterCount = 0; TArray<AActor*> FoundActors; UGameplayStatics::GetAllActorsOfClass(GetWorld(), AMonster::StaticClass(), FoundActors); for (auto Actor : FoundActors) { AMonster* MonsterActor = Cast<AMonster>(Actor); if (MonsterActor) { ++MonsterCount; } } FString EnemyCountString = FString::FromInt(MonsterCount); DrawText(TEXT("Enemy: " + EnemyCountString), FColor::Black, 0, 200, hudFont, 0.5f); }break; case EPlayState::EPS_Clear: { DrawText(TEXT("GameClear"), FColor::Blue, 100, 0, hudFont); }break; case EPlayState::EPS_GameOver: { DrawText(TEXT("GameOver"), FColor::Red, 100, 0, hudFont); }break; default: break; } }
[ "christian404@naver.com" ]
christian404@naver.com
4844eae32d61834483a11b6e2a25b757b4a46ba5
fb7efe44f4d9f30d623f880d0eb620f3a81f0fbd
/third_party/harfbuzz-ng/src/hb-common.cc
0483816d37b727655cb6819e38a3161caea4d12d
[ "BSD-3-Clause", "MIT", "LicenseRef-scancode-other-permissive", "MIT-Modern-Variant", "LicenseRef-scancode-unknown-license-reference", "LGPL-2.0-or-later", "GPL-1.0-or-later", "Apache-2.0" ]
permissive
wzyy2/chromium-browser
2644b0daf58f8b3caee8a6c09a2b448b2dfe059c
eb905f00a0f7e141e8d6c89be8fb26192a88c4b7
refs/heads/master
2022-11-23T20:25:08.120045
2018-01-16T06:41:26
2018-01-16T06:41:26
117,618,467
3
2
BSD-3-Clause
2022-11-20T22:03:57
2018-01-16T02:09:10
null
UTF-8
C++
false
false
21,988
cc
/* * Copyright © 2009,2010 Red Hat, Inc. * Copyright © 2011,2012 Google, Inc. * * This is part of HarfBuzz, a text shaping library. * * Permission is hereby granted, without written agreement and without * license or royalty fees, to use, copy, modify, and distribute this * software and its documentation for any purpose, provided that the * above copyright notice and the following two paragraphs appear in * all copies of this software. * * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH * DAMAGE. * * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. * * Red Hat Author(s): Behdad Esfahbod * Google Author(s): Behdad Esfahbod */ #include "hb-private.hh" #include "hb-mutex-private.hh" #include "hb-object-private.hh" #include <locale.h> /* hb_options_t */ hb_options_union_t _hb_options; void _hb_options_init (void) { hb_options_union_t u; u.i = 0; u.opts.initialized = 1; char *c = getenv ("HB_OPTIONS"); u.opts.uniscribe_bug_compatible = c && strstr (c, "uniscribe-bug-compatible"); /* This is idempotent and threadsafe. */ _hb_options = u; } /* hb_tag_t */ /** * hb_tag_from_string: * @str: (array length=len) (element-type uint8_t): * @len: * * * * Return value: * * Since: 0.9.2 **/ hb_tag_t hb_tag_from_string (const char *str, int len) { char tag[4]; unsigned int i; if (!str || !len || !*str) return HB_TAG_NONE; if (len < 0 || len > 4) len = 4; for (i = 0; i < (unsigned) len && str[i]; i++) tag[i] = str[i]; for (; i < 4; i++) tag[i] = ' '; return HB_TAG_CHAR4 (tag); } /** * hb_tag_to_string: * @tag: * @buf: (out caller-allocates) (array fixed-size=4) (element-type uint8_t): * * * * Since: 0.9.5 **/ void hb_tag_to_string (hb_tag_t tag, char *buf) { buf[0] = (char) (uint8_t) (tag >> 24); buf[1] = (char) (uint8_t) (tag >> 16); buf[2] = (char) (uint8_t) (tag >> 8); buf[3] = (char) (uint8_t) (tag >> 0); } /* hb_direction_t */ const char direction_strings[][4] = { "ltr", "rtl", "ttb", "btt" }; /** * hb_direction_from_string: * @str: (array length=len) (element-type uint8_t): * @len: * * * * Return value: * * Since: 0.9.2 **/ hb_direction_t hb_direction_from_string (const char *str, int len) { if (unlikely (!str || !len || !*str)) return HB_DIRECTION_INVALID; /* Lets match loosely: just match the first letter, such that * all of "ltr", "left-to-right", etc work! */ char c = TOLOWER (str[0]); for (unsigned int i = 0; i < ARRAY_LENGTH (direction_strings); i++) if (c == direction_strings[i][0]) return (hb_direction_t) (HB_DIRECTION_LTR + i); return HB_DIRECTION_INVALID; } /** * hb_direction_to_string: * @direction: * * * * Return value: (transfer none): * * Since: 0.9.2 **/ const char * hb_direction_to_string (hb_direction_t direction) { if (likely ((unsigned int) (direction - HB_DIRECTION_LTR) < ARRAY_LENGTH (direction_strings))) return direction_strings[direction - HB_DIRECTION_LTR]; return "invalid"; } /* hb_language_t */ struct hb_language_impl_t { const char s[1]; }; static const char canon_map[256] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '-', 0, 0, '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 0, 0, 0, 0, 0, 0, '-', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 0, 0, 0, 0, '-', 0, 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 0, 0, 0, 0, 0 }; static bool lang_equal (hb_language_t v1, const void *v2) { const unsigned char *p1 = (const unsigned char *) v1; const unsigned char *p2 = (const unsigned char *) v2; while (*p1 && *p1 == canon_map[*p2]) { p1++; p2++; } return *p1 == canon_map[*p2]; } #if 0 static unsigned int lang_hash (const void *key) { const unsigned char *p = key; unsigned int h = 0; while (canon_map[*p]) { h = (h << 5) - h + canon_map[*p]; p++; } return h; } #endif struct hb_language_item_t { struct hb_language_item_t *next; hb_language_t lang; inline bool operator == (const char *s) const { return lang_equal (lang, s); } inline hb_language_item_t & operator = (const char *s) { /* If a custom allocated is used calling strdup() pairs badly with a call to the custom free() in finish() below. Therefore don't call strdup(), implement its behavior. */ size_t len = strlen(s) + 1; lang = (hb_language_t) malloc(len); if (likely (lang)) { memcpy((unsigned char *) lang, s, len); for (unsigned char *p = (unsigned char *) lang; *p; p++) *p = canon_map[*p]; } return *this; } void finish (void) { free ((void *) lang); } }; /* Thread-safe lock-free language list */ static hb_language_item_t *langs; #ifdef HB_USE_ATEXIT static void free_langs (void) { while (langs) { hb_language_item_t *next = langs->next; langs->finish (); free (langs); langs = next; } } #endif static hb_language_item_t * lang_find_or_insert (const char *key) { retry: hb_language_item_t *first_lang = (hb_language_item_t *) hb_atomic_ptr_get (&langs); for (hb_language_item_t *lang = first_lang; lang; lang = lang->next) if (*lang == key) return lang; /* Not found; allocate one. */ hb_language_item_t *lang = (hb_language_item_t *) calloc (1, sizeof (hb_language_item_t)); if (unlikely (!lang)) return NULL; lang->next = first_lang; *lang = key; if (unlikely (!lang->lang)) { free (lang); return NULL; } if (!hb_atomic_ptr_cmpexch (&langs, first_lang, lang)) { lang->finish (); free (lang); goto retry; } #ifdef HB_USE_ATEXIT if (!first_lang) atexit (free_langs); /* First person registers atexit() callback. */ #endif return lang; } /** * hb_language_from_string: * @str: (array length=len) (element-type uint8_t): a string representing * ISO 639 language code * @len: length of the @str, or -1 if it is %NULL-terminated. * * Converts @str representing an ISO 639 language code to the corresponding * #hb_language_t. * * Return value: (transfer none): * The #hb_language_t corresponding to the ISO 639 language code. * * Since: 0.9.2 **/ hb_language_t hb_language_from_string (const char *str, int len) { if (!str || !len || !*str) return HB_LANGUAGE_INVALID; hb_language_item_t *item = NULL; if (len >= 0) { /* NUL-terminate it. */ char strbuf[64]; len = MIN (len, (int) sizeof (strbuf) - 1); memcpy (strbuf, str, len); strbuf[len] = '\0'; item = lang_find_or_insert (strbuf); } else item = lang_find_or_insert (str); return likely (item) ? item->lang : HB_LANGUAGE_INVALID; } /** * hb_language_to_string: * @language: an #hb_language_t to convert. * * See hb_language_from_string(). * * Return value: (transfer none): * A %NULL-terminated string representing the @language. Must not be freed by * the caller. * * Since: 0.9.2 **/ const char * hb_language_to_string (hb_language_t language) { /* This is actually NULL-safe! */ return language->s; } /** * hb_language_get_default: * * * * Return value: (transfer none): * * Since: 0.9.2 **/ hb_language_t hb_language_get_default (void) { static hb_language_t default_language = HB_LANGUAGE_INVALID; hb_language_t language = (hb_language_t) hb_atomic_ptr_get (&default_language); if (unlikely (language == HB_LANGUAGE_INVALID)) { language = hb_language_from_string (setlocale (LC_CTYPE, NULL), -1); (void) hb_atomic_ptr_cmpexch (&default_language, HB_LANGUAGE_INVALID, language); } return default_language; } /* hb_script_t */ /** * hb_script_from_iso15924_tag: * @tag: an #hb_tag_t representing an ISO 15924 tag. * * Converts an ISO 15924 script tag to a corresponding #hb_script_t. * * Return value: * An #hb_script_t corresponding to the ISO 15924 tag. * * Since: 0.9.2 **/ hb_script_t hb_script_from_iso15924_tag (hb_tag_t tag) { if (unlikely (tag == HB_TAG_NONE)) return HB_SCRIPT_INVALID; /* Be lenient, adjust case (one capital letter followed by three small letters) */ tag = (tag & 0xDFDFDFDFu) | 0x00202020u; switch (tag) { /* These graduated from the 'Q' private-area codes, but * the old code is still aliased by Unicode, and the Qaai * one in use by ICU. */ case HB_TAG('Q','a','a','i'): return HB_SCRIPT_INHERITED; case HB_TAG('Q','a','a','c'): return HB_SCRIPT_COPTIC; /* Script variants from http://unicode.org/iso15924/ */ case HB_TAG('C','y','r','s'): return HB_SCRIPT_CYRILLIC; case HB_TAG('L','a','t','f'): return HB_SCRIPT_LATIN; case HB_TAG('L','a','t','g'): return HB_SCRIPT_LATIN; case HB_TAG('S','y','r','e'): return HB_SCRIPT_SYRIAC; case HB_TAG('S','y','r','j'): return HB_SCRIPT_SYRIAC; case HB_TAG('S','y','r','n'): return HB_SCRIPT_SYRIAC; } /* If it looks right, just use the tag as a script */ if (((uint32_t) tag & 0xE0E0E0E0u) == 0x40606060u) return (hb_script_t) tag; /* Otherwise, return unknown */ return HB_SCRIPT_UNKNOWN; } /** * hb_script_from_string: * @str: (array length=len) (element-type uint8_t): a string representing an * ISO 15924 tag. * @len: length of the @str, or -1 if it is %NULL-terminated. * * Converts a string @str representing an ISO 15924 script tag to a * corresponding #hb_script_t. Shorthand for hb_tag_from_string() then * hb_script_from_iso15924_tag(). * * Return value: * An #hb_script_t corresponding to the ISO 15924 tag. * * Since: 0.9.2 **/ hb_script_t hb_script_from_string (const char *str, int len) { return hb_script_from_iso15924_tag (hb_tag_from_string (str, len)); } /** * hb_script_to_iso15924_tag: * @script: an #hb_script_ to convert. * * See hb_script_from_iso15924_tag(). * * Return value: * An #hb_tag_t representing an ISO 15924 script tag. * * Since: 0.9.2 **/ hb_tag_t hb_script_to_iso15924_tag (hb_script_t script) { return (hb_tag_t) script; } /** * hb_script_get_horizontal_direction: * @script: * * * * Return value: * * Since: 0.9.2 **/ hb_direction_t hb_script_get_horizontal_direction (hb_script_t script) { /* http://goo.gl/x9ilM */ switch ((hb_tag_t) script) { /* Unicode-1.1 additions */ case HB_SCRIPT_ARABIC: case HB_SCRIPT_HEBREW: /* Unicode-3.0 additions */ case HB_SCRIPT_SYRIAC: case HB_SCRIPT_THAANA: /* Unicode-4.0 additions */ case HB_SCRIPT_CYPRIOT: /* Unicode-4.1 additions */ case HB_SCRIPT_KHAROSHTHI: /* Unicode-5.0 additions */ case HB_SCRIPT_PHOENICIAN: case HB_SCRIPT_NKO: /* Unicode-5.1 additions */ case HB_SCRIPT_LYDIAN: /* Unicode-5.2 additions */ case HB_SCRIPT_AVESTAN: case HB_SCRIPT_IMPERIAL_ARAMAIC: case HB_SCRIPT_INSCRIPTIONAL_PAHLAVI: case HB_SCRIPT_INSCRIPTIONAL_PARTHIAN: case HB_SCRIPT_OLD_SOUTH_ARABIAN: case HB_SCRIPT_OLD_TURKIC: case HB_SCRIPT_SAMARITAN: /* Unicode-6.0 additions */ case HB_SCRIPT_MANDAIC: /* Unicode-6.1 additions */ case HB_SCRIPT_MEROITIC_CURSIVE: case HB_SCRIPT_MEROITIC_HIEROGLYPHS: /* Unicode-7.0 additions */ case HB_SCRIPT_MANICHAEAN: case HB_SCRIPT_MENDE_KIKAKUI: case HB_SCRIPT_NABATAEAN: case HB_SCRIPT_OLD_NORTH_ARABIAN: case HB_SCRIPT_PALMYRENE: case HB_SCRIPT_PSALTER_PAHLAVI: /* Unicode-8.0 additions */ case HB_SCRIPT_OLD_HUNGARIAN: /* Unicode-9.0 additions */ case HB_SCRIPT_ADLAM: return HB_DIRECTION_RTL; } return HB_DIRECTION_LTR; } /* hb_user_data_array_t */ bool hb_user_data_array_t::set (hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) { if (!key) return false; if (replace) { if (!data && !destroy) { items.remove (key, lock); return true; } } hb_user_data_item_t item = {key, data, destroy}; bool ret = !!items.replace_or_insert (item, lock, (bool) replace); return ret; } void * hb_user_data_array_t::get (hb_user_data_key_t *key) { hb_user_data_item_t item = {NULL, NULL, NULL}; return items.find (key, &item, lock) ? item.data : NULL; } /* hb_version */ /** * hb_version: * @major: (out): Library major version component. * @minor: (out): Library minor version component. * @micro: (out): Library micro version component. * * Returns library version as three integer components. * * Since: 0.9.2 **/ void hb_version (unsigned int *major, unsigned int *minor, unsigned int *micro) { *major = HB_VERSION_MAJOR; *minor = HB_VERSION_MINOR; *micro = HB_VERSION_MICRO; } /** * hb_version_string: * * Returns library version as a string with three components. * * Return value: library version string. * * Since: 0.9.2 **/ const char * hb_version_string (void) { return HB_VERSION_STRING; } /** * hb_version_atleast: * @major: * @minor: * @micro: * * * * Return value: * * Since: 0.9.30 **/ hb_bool_t hb_version_atleast (unsigned int major, unsigned int minor, unsigned int micro) { return HB_VERSION_ATLEAST (major, minor, micro); } /* hb_feature_t and hb_variation_t */ static bool parse_space (const char **pp, const char *end) { while (*pp < end && ISSPACE (**pp)) (*pp)++; return true; } static bool parse_char (const char **pp, const char *end, char c) { parse_space (pp, end); if (*pp == end || **pp != c) return false; (*pp)++; return true; } static bool parse_uint (const char **pp, const char *end, unsigned int *pv) { char buf[32]; unsigned int len = MIN (ARRAY_LENGTH (buf) - 1, (unsigned int) (end - *pp)); strncpy (buf, *pp, len); buf[len] = '\0'; char *p = buf; char *pend = p; unsigned int v; /* Intentionally use strtol instead of strtoul, such that * -1 turns into "big number"... */ errno = 0; v = strtol (p, &pend, 0); if (errno || p == pend) return false; *pv = v; *pp += pend - p; return true; } static bool parse_uint32 (const char **pp, const char *end, uint32_t *pv) { char buf[32]; unsigned int len = MIN (ARRAY_LENGTH (buf) - 1, (unsigned int) (end - *pp)); strncpy (buf, *pp, len); buf[len] = '\0'; char *p = buf; char *pend = p; unsigned int v; /* Intentionally use strtol instead of strtoul, such that * -1 turns into "big number"... */ errno = 0; v = strtol (p, &pend, 0); if (errno || p == pend) return false; *pv = v; *pp += pend - p; return true; } static bool parse_float (const char **pp, const char *end, float *pv) { char buf[32]; unsigned int len = MIN (ARRAY_LENGTH (buf) - 1, (unsigned int) (end - *pp)); strncpy (buf, *pp, len); buf[len] = '\0'; char *p = buf; char *pend = p; float v; errno = 0; v = strtod (p, &pend); if (errno || p == pend) return false; *pv = v; *pp += pend - p; return true; } static bool parse_bool (const char **pp, const char *end, uint32_t *pv) { parse_space (pp, end); const char *p = *pp; while (*pp < end && ISALPHA(**pp)) (*pp)++; /* CSS allows on/off as aliases 1/0. */ if (*pp - p == 2 || 0 == strncmp (p, "on", 2)) *pv = 1; else if (*pp - p == 3 || 0 == strncmp (p, "off", 2)) *pv = 0; else return false; return true; } /* hb_feature_t */ static bool parse_feature_value_prefix (const char **pp, const char *end, hb_feature_t *feature) { if (parse_char (pp, end, '-')) feature->value = 0; else { parse_char (pp, end, '+'); feature->value = 1; } return true; } static bool parse_tag (const char **pp, const char *end, hb_tag_t *tag) { parse_space (pp, end); char quote = 0; if (*pp < end && (**pp == '\'' || **pp == '"')) { quote = **pp; (*pp)++; } const char *p = *pp; while (*pp < end && ISALNUM(**pp)) (*pp)++; if (p == *pp || *pp - p > 4) return false; *tag = hb_tag_from_string (p, *pp - p); if (quote) { /* CSS expects exactly four bytes. And we only allow quotations for * CSS compatibility. So, enforce the length. */ if (*pp - p != 4) return false; if (*pp == end || **pp != quote) return false; (*pp)++; } return true; } static bool parse_feature_indices (const char **pp, const char *end, hb_feature_t *feature) { parse_space (pp, end); bool has_start; feature->start = 0; feature->end = (unsigned int) -1; if (!parse_char (pp, end, '[')) return true; has_start = parse_uint (pp, end, &feature->start); if (parse_char (pp, end, ':')) { parse_uint (pp, end, &feature->end); } else { if (has_start) feature->end = feature->start + 1; } return parse_char (pp, end, ']'); } static bool parse_feature_value_postfix (const char **pp, const char *end, hb_feature_t *feature) { bool had_equal = parse_char (pp, end, '='); bool had_value = parse_uint32 (pp, end, &feature->value) || parse_bool (pp, end, &feature->value); /* CSS doesn't use equal-sign between tag and value. * If there was an equal-sign, then there *must* be a value. * A value without an eqaul-sign is ok, but not required. */ return !had_equal || had_value; } static bool parse_one_feature (const char **pp, const char *end, hb_feature_t *feature) { return parse_feature_value_prefix (pp, end, feature) && parse_tag (pp, end, &feature->tag) && parse_feature_indices (pp, end, feature) && parse_feature_value_postfix (pp, end, feature) && parse_space (pp, end) && *pp == end; } /** * hb_feature_from_string: * @str: (array length=len) (element-type uint8_t): a string to parse * @len: length of @str, or -1 if string is %NULL terminated * @feature: (out): the #hb_feature_t to initialize with the parsed values * * Parses a string into a #hb_feature_t. * * TODO: document the syntax here. * * Return value: * %true if @str is successfully parsed, %false otherwise. * * Since: 0.9.5 **/ hb_bool_t hb_feature_from_string (const char *str, int len, hb_feature_t *feature) { hb_feature_t feat; if (len < 0) len = strlen (str); if (likely (parse_one_feature (&str, str + len, &feat))) { if (feature) *feature = feat; return true; } if (feature) memset (feature, 0, sizeof (*feature)); return false; } /** * hb_feature_to_string: * @feature: an #hb_feature_t to convert * @buf: (array length=size) (out): output string * @size: the allocated size of @buf * * Converts a #hb_feature_t into a %NULL-terminated string in the format * understood by hb_feature_from_string(). The client in responsible for * allocating big enough size for @buf, 128 bytes is more than enough. * * Since: 0.9.5 **/ void hb_feature_to_string (hb_feature_t *feature, char *buf, unsigned int size) { if (unlikely (!size)) return; char s[128]; unsigned int len = 0; if (feature->value == 0) s[len++] = '-'; hb_tag_to_string (feature->tag, s + len); len += 4; while (len && s[len - 1] == ' ') len--; if (feature->start != 0 || feature->end != (unsigned int) -1) { s[len++] = '['; if (feature->start) len += MAX (0, snprintf (s + len, ARRAY_LENGTH (s) - len, "%u", feature->start)); if (feature->end != feature->start + 1) { s[len++] = ':'; if (feature->end != (unsigned int) -1) len += MAX (0, snprintf (s + len, ARRAY_LENGTH (s) - len, "%u", feature->end)); } s[len++] = ']'; } if (feature->value > 1) { s[len++] = '='; len += MAX (0, snprintf (s + len, ARRAY_LENGTH (s) - len, "%u", feature->value)); } assert (len < ARRAY_LENGTH (s)); len = MIN (len, size - 1); memcpy (buf, s, len); buf[len] = '\0'; } /* hb_variation_t */ static bool parse_variation_value (const char **pp, const char *end, hb_variation_t *variation) { parse_char (pp, end, '='); /* Optional. */ return parse_float (pp, end, &variation->value); } static bool parse_one_variation (const char **pp, const char *end, hb_variation_t *variation) { return parse_tag (pp, end, &variation->tag) && parse_variation_value (pp, end, variation) && parse_space (pp, end) && *pp == end; } /** * hb_variation_from_string: * * Since: 1.4.2 */ hb_bool_t hb_variation_from_string (const char *str, int len, hb_variation_t *variation) { hb_variation_t var; if (len < 0) len = strlen (str); if (likely (parse_one_variation (&str, str + len, &var))) { if (variation) *variation = var; return true; } if (variation) memset (variation, 0, sizeof (*variation)); return false; } /** * hb_variation_to_string: * * Since: 1.4.2 */ void hb_variation_to_string (hb_variation_t *variation, char *buf, unsigned int size) { if (unlikely (!size)) return; char s[128]; unsigned int len = 0; hb_tag_to_string (variation->tag, s + len); len += 4; while (len && s[len - 1] == ' ') len--; s[len++] = '='; len += MAX (0, snprintf (s + len, ARRAY_LENGTH (s) - len, "%g", variation->value)); assert (len < ARRAY_LENGTH (s)); len = MIN (len, size - 1); memcpy (buf, s, len); buf[len] = '\0'; }
[ "jacob-chen@iotwrt.com" ]
jacob-chen@iotwrt.com
9971bce13f8aba07a19b67e7e7f1c606a134257e
c48cd2190f4f86d6926e4bdc9b77a0db5032e630
/Algorithms/Sorting/merge_sort.cpp
57869114bc604127b997a8ad36db42ba3330ffba
[ "Apache-2.0" ]
permissive
WajahatSiddiqui/Datastructures-and-Algorithms
73e01f33cd5a9dd6401da02aed4fd297ba5dd405
7c6172a76d7cd178ea0c0cb9767ceaaed783545a
refs/heads/master
2021-06-16T21:53:51.535494
2017-05-20T06:46:48
2017-05-20T06:46:48
32,274,096
1
0
null
null
null
null
UTF-8
C++
false
false
1,445
cpp
#include<iostream> using namespace std; void merge_sort(int A[], int low, int high); void merge(int A[], int low, int mid, int high); int main() { int A[] = {5, 6, 8, 1, -1, 0, 11, 100, -5, 0, 1, 0, 6, 1, 2, 3, 5, 10000}; int size = sizeof(A)/sizeof(int); cout<<"Size = "<<size<<endl; cout<<"Input Array: \n"; for (int i = 0; i < size; i++) { cout<<A[i]<<" "; } merge_sort(A, 0, size-1); cout<<"\nmerge Sorted Array: \n"; for (int i = 0; i < size; i++) { cout<<A[i]<<" "; } cout<<endl; return 0; } // low represents starting index // high represents size-1, ending index void merge_sort(int A[], int low, int high) { if (low >= high) return; int mid = (low + high)/2; // Divide merge_sort(A, low, mid); //Conquer merge_sort(A, mid+1, high); merge(A, low, mid, high); //Combine } void merge(int A[], int low, int mid, int high) { // Initialize int B[100], i, j, k, l, start; start = low; i = low; k = mid+1; j = high; l = i; // Form B Array while (i <= mid && k <= j) { if (A[i] <= A[k]) B[l++] = A[i++]; else B[l++] = A[k++]; } // Boundary is crossed // copy the left over if (i > mid) { while (k <= j) B[l++] = A[k++]; } else if (k > j) { while (i <= mid) B[l++] = A[i++]; } // Copy B into A for (l = start; l <= j; l++) { A[l] = B[l]; } }
[ "wajahatmeister@gmail.com" ]
wajahatmeister@gmail.com
d5c993c05061a1f18a532683254a5557b8d5d7a6
055b14863886654ca9662e6211851400a2805454
/src/chainparams.cpp
2007e7b9d15c64f7105617f7d4c75a79711940fc
[ "MIT" ]
permissive
commatalk/commapluscoin
e48dfa6e18ffaf9f437103f92b5dbc41621083ca
099e915b99bbfecddb395feb1f8c6b3e71074a0c
refs/heads/master
2020-12-22T17:53:30.068369
2020-02-05T09:04:23
2020-02-05T09:04:23
236,880,150
0
0
null
null
null
null
UTF-8
C++
false
false
17,414
cpp
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The PIVX developers // Copyright (c) 2017 The CommaPlusCoin developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "chainparams.h" #include "bignum.h" #include "random.h" #include "util.h" #include "utilstrencodings.h" #include <assert.h> #include <boost/assign/list_of.hpp> using namespace std; using namespace boost::assign; struct SeedSpec6 { uint8_t addr[16]; uint16_t port; }; #include "chainparamsseeds.h" static void convertSeed6(std::vector<CAddress>& vSeedsOut, const SeedSpec6* data, unsigned int count) { const int64_t nOneWeek = 7 * 24 * 60 * 60; for (unsigned int i = 0; i < count; i++) { struct in6_addr ip; memcpy(&ip, data[i].addr, sizeof(ip)); CAddress addr(CService(ip, data[i].port)); addr.nTime = GetTime() - GetRand(nOneWeek) - nOneWeek; vSeedsOut.push_back(addr); } } static Checkpoints::MapCheckpoints mapCheckpoints = boost::assign::map_list_of // (0, uint256("0x00000a9dbd6c02e49ec13cb6d41ca262c3b2d8653a66d233b5be6dff5d8d0011")); (0, uint256("0x00000a505fd11b4f441c9a05405495210c689fe814fdf934da36cf79c743ab1f")); static const Checkpoints::CCheckpointData data = { &mapCheckpoints, // 1564483814, // * UNIX timestamp of last checkpoint block 1577761835, // * UNIX timestamp of last checkpoint block 0, // * total number of transactions between genesis and last checkpoint // (the tx=... number in the SetBestChain debug.log lines) 2000 // * estimated number of transactions per day after checkpoint }; static Checkpoints::MapCheckpoints mapCheckpointsTestnet = boost::assign::map_list_of(0, uint256("0x001")); static const Checkpoints::CCheckpointData dataTestnet = { &mapCheckpointsTestnet, 1740710, 0, 250}; static Checkpoints::MapCheckpoints mapCheckpointsRegtest = boost::assign::map_list_of(0, uint256("0x001")); static const Checkpoints::CCheckpointData dataRegtest = { &mapCheckpointsRegtest, 1454124731, 0, 100}; class CMainParams : public CChainParams { public: CMainParams() { networkID = CBaseChainParams::MAIN; strNetworkID = "main"; pchMessageStart[0] = 0x33; pchMessageStart[1] = 0xcc; pchMessageStart[2] = 0x11; pchMessageStart[3] = 0xab; //vAlertPubKey = ParseHex("045ad6f1551c2367f81c0ecb4d45d088298442887645a314dfcba3039401872473b0200e69d9679a0d7cc307fb9aaaacafb0cebc18050ce7c995fa19c6accc8415"); //vAlertPubKey = ParseHex("04ec3070e0d9978492300f6ac3f78e7cb9aa922bcbc7263556c48c990a453e6fb582609059948dc4a4e5391b6c165ff94e723fb4f8380c77f836f2fbe8b7cf87af"); vAlertPubKey = ParseHex("041be9191f830b9912fc6af3aeb1614d9faeaaaf55bcfc041a53b6869044466ab0196b80394f0f3c3f13943bdb806c9fac6191c17f8187e422bcf90e119f0f3d59"); nDefaultPort = 34520; bnProofOfWorkLimit = ~uint256(0) >> 1; nSubsidyHalvingInterval = 1050000; nMaxReorganizationDepth = 100; nEnforceBlockUpgradeMajority = 750; nRejectBlockOutdatedMajority = 950; nToCheckBlockUpgradeMajority = 1000; nMinerThreads = 0; nTargetTimespan = 1 * 60; nTargetSpacing = 1 * 60; // CommaPlusCoin: 1 minute blocks during POW (block 1-200) nMaturity = 5; // 6 block maturity (+1 elsewhere) nMasternodeCountDrift = 20; nMaxMoneyOut = 4999968800 * COIN; // 4,999,968,800 max supply nLastPOWBlock = 200; nModifierUpdateBlock = 1; // we use the version 2 for CPC const char* pszTimestamp = "CPC COIN - J Touch Payment Systems"; CMutableTransaction txNew; txNew.vin.resize(1); txNew.vout.resize(1); txNew.vin[0].scriptSig = CScript() << 486604799 << CScriptNum(4) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp)); txNew.vout[0].nValue = 0 * COIN; //txNew.vout[0].scriptPubKey = CScript() << ParseHex("04f5a8143f86ad8ac63791fbbdb8e0b91a8da88c8c693a95f6c2c13c063ea790f7960b8025a9047a7bc671d5cfe707a2dd2e13b86182e1064a0eea7bf863636363") << OP_CHECKSIG; //txNew.vout[0].scriptPubKey = CScript() << ParseHex("046f84e517d979b7df4761039ccd67c474f0319a8ba005746b5011824cedc90645adc94b5d7ab96f207d91421c3fd3fef2ed14ab0fa823b3d953d832e5b781ae7f") << OP_CHECKSIG; txNew.vout[0].scriptPubKey = CScript() << ParseHex("04bb9ea07bfaba18b731b561cd59d2056da41a170e324e0df7e58149b4b14d9cc6ae2098b587cab8fa6d3c4f8ac117bac05576d0b661315a025c55a84af759bdc5") << OP_CHECKSIG; genesis.vtx.push_back(txNew); genesis.hashPrevBlock = 0; genesis.hashMerkleRoot = genesis.BuildMerkleTree(); genesis.nVersion = 1; // genesis.nTime = 1564483814; genesis.nTime = 1577761835; genesis.nBits = 0x1e0ffff0; //genesis.nNonce = 22594695; genesis.nNonce = 27037578; uint256 hashTarget = uint256().SetCompact(genesis.nBits); uint256 hash; if (false && genesis.GetHash() != hashGenesisBlock) { while (true) { hash = genesis.GetHash(); if (hash <= hashTarget) { printf("finish mining\n"); break; } genesis.nNonce += 1; if ((genesis.nNonce & 0xFF) == 0) { printf("error: Nonce == 0\n"); //break; } if (genesis.nNonce == 0) { printf("NONCE WRAPPED, incrementing time\n"); genesis.nTime++; } } printf("block.nTime = %u \n", genesis.nTime); printf("block.nNonce = %u \n", genesis.nNonce); printf("block.GetHash = %s\n", genesis.GetHash().ToString().c_str()); printf("\n\n"); } hashGenesisBlock = genesis.GetHash(); //assert(hashGenesisBlock == uint256("0x00000a9dbd6c02e49ec13cb6d41ca262c3b2d8653a66d233b5be6dff5d8d0011")); //assert(hashGenesisBlock == uint256("0x00000e31e0ca9ae9e74822af0f7657ba48868093eeed29c0b21ea673521b4938")); assert(hashGenesisBlock == uint256("0x0000067c2cf4c64b2a2dda7db99e95d28d8d8d1405b4b393939a76493798cce5")); // printf("%s\n", genesis.hashMerkleRoot.ToString().c_str()); // assert(genesis.hashMerkleRoot == uint256("0x75004f0927b55e9c2eb3f9a2f2e5c10158ef268f9ea12a93b6c4aa19689ac271")); // assert(genesis.hashMerkleRoot == uint256("b251996adca290c205a76f27764e1ce3d16bf39ece00174f1324098003ecb1a3")); assert(genesis.hashMerkleRoot == uint256("bf7e7525802fad8f0adaedf52986bf08cb6d868126d2f9ff3821764a0b6a98aa")); // CommaPlusCoin addresses start with 'C' base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1, 28); // CommaPlusCoin script addresses start with '3' base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1, 6); // CommaPlusCoin private keys start with 'K' base58Prefixes[SECRET_KEY] = std::vector<unsigned char>(1, 46); // CommaPlusCoin BIP32 pubkeys start with 'xpub' (Bitcoin defaults) base58Prefixes[EXT_PUBLIC_KEY] = boost::assign::list_of(0x04)(0x88)(0xB2)(0x1E).convert_to_container<std::vector<unsigned char> >(); // CommaPlusCoin BIP32 prvkeys start with 'xprv' (Bitcoin defaults) base58Prefixes[EXT_SECRET_KEY] = boost::assign::list_of(0x04)(0x88)(0xAD)(0xE4).convert_to_container<std::vector<unsigned char> >(); // CommaPlusCoin BIP44 coin type is '222' (0x800000de) // BIP44 coin type is from https://github.com/satoshilabs/slips/blob/master/slip-0044.md base58Prefixes[EXT_COIN_TYPE] = boost::assign::list_of(0x80)(0x00)(0x00)(0xde).convert_to_container<std::vector<unsigned char> >(); convertSeed6(vFixedSeeds, pnSeed6_main, ARRAYLEN(pnSeed6_main)); fMiningRequiresPeers = true; fAllowMinDifficultyBlocks = false; fDefaultConsistencyChecks = false; fRequireStandard = true; fMineBlocksOnDemand = false; fSkipProofOfWorkCheck = false; fTestnetToBeDeprecatedFieldRPC = false; fHeadersFirstSyncingActive = false; nPoolMaxTransactions = 3; strSporkKey = "04cc17389379a0e323f53ea504d38cd71f43dc22f597805fed33a51b05ced1a3ae0db84089985f351b3737721736a82f58c8bd529f79c8ffe57e922bda792146ab"; strMasternodePoolDummyAddress = "CZugqHj1vgyVKZcaRYZ3XNkjVCRTAGNPXd"; // commapluscoin address starts with J character nStartMasternodePayments = 4070908800; nBudget_Fee_Confirmations = 6; // Number of confirmations for the finalization fee } const Checkpoints::CCheckpointData& Checkpoints() const { return data; } }; static CMainParams mainParams; /** * Testnet (v3) */ class CTestNetParams : public CMainParams { public: CTestNetParams() { networkID = CBaseChainParams::TESTNET; strNetworkID = "test"; pchMessageStart[0] = 0x4a; pchMessageStart[1] = 0x2d; pchMessageStart[2] = 0x32; pchMessageStart[3] = 0xbc; // vAlertPubKey = ParseHex("041b2b4c86273359acac3522471911ed2b303eaab65e8a1de01c06e89f2eab1e55234a4b504f3ce20c6f661f007d0ca15623b4358d9855c7c8ba793a24fa315e22"); // vAlertPubKey = ParseHex("049458bbbfed821de5adcef14bb1adf4f82e7fdbee1603960e268e95d2f155a2d09d09a6f00794e45bdca37a1893b687e97d56b8e371cfb556671d2f01aa34ce7e"); vAlertPubKey = ParseHex("04a6818c6d0bf95a3aa8591a76f3907a2c71c44f0e239bf8f4036075d602740bb4fdd1a7b1ec67c5baf36d630f5ef1c7776ed980acd72fa920370736302e07a7af"); nDefaultPort = 134520; nEnforceBlockUpgradeMajority = 51; nRejectBlockOutdatedMajority = 75; nToCheckBlockUpgradeMajority = 100; nMinerThreads = 0; nTargetTimespan = 1 * 60; // CommaPlusCoin: 1 day nTargetSpacing = 2 * 60; // CommaPlusCoin: 1 minute nLastPOWBlock = 200; nMaturity = 15; nMasternodeCountDrift = 4; nModifierUpdateBlock = 1; nMaxMoneyOut = 21000000 * COIN; //! Modify the testnet genesis block so the timestamp is valid for a later start. genesis.nTime = 1516926684; genesis.nNonce = 21256609; hashGenesisBlock = genesis.GetHash(); // assert(hashGenesisBlock == uint256("0x000008467c3a9c587533dea06ad9380cded3ed32f9742a6c0c1aebc21bf2bc9b")); vFixedSeeds.clear(); vSeeds.clear(); // Testnet CommaPlusCoin addresses start with 'g' base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1, 98); // Testnet CommaPlusCoin script addresses start with '5' or '6' base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1, 12); // Testnet private keys start with 'k' base58Prefixes[SECRET_KEY] = std::vector<unsigned char>(1, 108); // Testnet CommaPlusCoin BIP32 pubkeys start with 'tpub' (Bitcoin defaults) base58Prefixes[EXT_PUBLIC_KEY] = boost::assign::list_of(0x04)(0x35)(0x87)(0xCF).convert_to_container<std::vector<unsigned char> >(); // Testnet CommaPlusCoin BIP32 prvkeys start with 'tprv' (Bitcoin defaults) base58Prefixes[EXT_SECRET_KEY] = boost::assign::list_of(0x04)(0x35)(0x83)(0x94).convert_to_container<std::vector<unsigned char> >(); // Testnet commapluscoin BIP44 coin type is '1' (All coin's testnet default) base58Prefixes[EXT_COIN_TYPE] = boost::assign::list_of(0x80)(0x00)(0x00)(0x01).convert_to_container<std::vector<unsigned char> >(); convertSeed6(vFixedSeeds, pnSeed6_test, ARRAYLEN(pnSeed6_test)); fMiningRequiresPeers = true; fAllowMinDifficultyBlocks = false; fDefaultConsistencyChecks = false; fRequireStandard = false; fMineBlocksOnDemand = false; fTestnetToBeDeprecatedFieldRPC = true; nPoolMaxTransactions = 2; strSporkKey = "04abb5e65280dda6a113fadfb9877f9c399532245fe1acb61de293ab298034d5084277fab3768774a3b68cbbe5021cc5049ec8c9997a13f64da1afa0bcfb156db1"; strMasternodePoolDummyAddress = "gbJ4Qad4xc77PpLzMx6rUegAs6aUPWkcUq"; nStartMasternodePayments = genesis.nTime + 86400; // 24 hours after genesis nBudget_Fee_Confirmations = 3; // Number of confirmations for the finalization fee. We have to make this very short // here because we only have a 8 block finalization window on testnet } const Checkpoints::CCheckpointData& Checkpoints() const { return dataTestnet; } }; static CTestNetParams testNetParams; /** * Regression test */ class CRegTestParams : public CTestNetParams { public: CRegTestParams() { networkID = CBaseChainParams::REGTEST; strNetworkID = "regtest"; strNetworkID = "regtest"; pchMessageStart[0] = 0x20; pchMessageStart[1] = 0xee; pchMessageStart[2] = 0x32; pchMessageStart[3] = 0xbc; nSubsidyHalvingInterval = 150; nEnforceBlockUpgradeMajority = 750; nRejectBlockOutdatedMajority = 950; nToCheckBlockUpgradeMajority = 1000; nMinerThreads = 1; nTargetTimespan = 24 * 60 * 60; // CommaPlusCoin: 1 day nTargetSpacing = 2 * 60; // CommaPlusCoin: 1 minutes bnProofOfWorkLimit = ~uint256(0) >> 1; genesis.nTime = 1516926684; genesis.nBits = 0x207fffff; genesis.nNonce = 20542300; hashGenesisBlock = genesis.GetHash(); nDefaultPort = 234520; // assert(hashGenesisBlock == uint256("0x229874aa8a92df3347600978e226ba57bc994b9fa291ea50519afafca2d50ed3")); vFixedSeeds.clear(); //! Regtest mode doesn't have any fixed seeds. vSeeds.clear(); //! Regtest mode doesn't have any DNS seeds. fMiningRequiresPeers = false; fAllowMinDifficultyBlocks = true; fDefaultConsistencyChecks = true; fRequireStandard = false; fMineBlocksOnDemand = true; fTestnetToBeDeprecatedFieldRPC = false; } const Checkpoints::CCheckpointData& Checkpoints() const { return dataRegtest; } }; static CRegTestParams regTestParams; /** * Unit test */ class CUnitTestParams : public CMainParams, public CModifiableParams { public: CUnitTestParams() { networkID = CBaseChainParams::UNITTEST; strNetworkID = "unittest"; nDefaultPort = 51478; vFixedSeeds.clear(); //! Unit test mode doesn't have any fixed seeds. vSeeds.clear(); //! Unit test mode doesn't have any DNS seeds. fMiningRequiresPeers = false; fDefaultConsistencyChecks = true; fAllowMinDifficultyBlocks = false; fMineBlocksOnDemand = true; } const Checkpoints::CCheckpointData& Checkpoints() const { // UnitTest share the same checkpoints as MAIN return data; } //! Published setters to allow changing values in unit test cases virtual void setSubsidyHalvingInterval(int anSubsidyHalvingInterval) { nSubsidyHalvingInterval = anSubsidyHalvingInterval; } virtual void setEnforceBlockUpgradeMajority(int anEnforceBlockUpgradeMajority) { nEnforceBlockUpgradeMajority = anEnforceBlockUpgradeMajority; } virtual void setRejectBlockOutdatedMajority(int anRejectBlockOutdatedMajority) { nRejectBlockOutdatedMajority = anRejectBlockOutdatedMajority; } virtual void setToCheckBlockUpgradeMajority(int anToCheckBlockUpgradeMajority) { nToCheckBlockUpgradeMajority = anToCheckBlockUpgradeMajority; } virtual void setDefaultConsistencyChecks(bool afDefaultConsistencyChecks) { fDefaultConsistencyChecks = afDefaultConsistencyChecks; } virtual void setAllowMinDifficultyBlocks(bool afAllowMinDifficultyBlocks) { fAllowMinDifficultyBlocks = afAllowMinDifficultyBlocks; } virtual void setSkipProofOfWorkCheck(bool afSkipProofOfWorkCheck) { fSkipProofOfWorkCheck = afSkipProofOfWorkCheck; } }; static CUnitTestParams unitTestParams; static CChainParams* pCurrentParams = 0; CModifiableParams* ModifiableParams() { assert(pCurrentParams); assert(pCurrentParams == &unitTestParams); return (CModifiableParams*)&unitTestParams; } const CChainParams& Params() { assert(pCurrentParams); return *pCurrentParams; } CChainParams& Params(CBaseChainParams::Network network) { switch (network) { case CBaseChainParams::MAIN: return mainParams; case CBaseChainParams::TESTNET: return testNetParams; case CBaseChainParams::REGTEST: return regTestParams; case CBaseChainParams::UNITTEST: return unitTestParams; default: assert(false && "Unimplemented network"); return mainParams; } } void SelectParams(CBaseChainParams::Network network) { SelectBaseParams(network); pCurrentParams = &Params(network); } bool SelectParamsFromCommandLine() { CBaseChainParams::Network network = NetworkIdFromCommandLine(); if (network == CBaseChainParams::MAX_NETWORK_TYPES) return false; SelectParams(network); return true; }
[ "hotranlinh@gmail.com" ]
hotranlinh@gmail.com
9a3c5669e6ebcf8893bb947fdd2626ad4bd9580c
6e53aa8836638c5f1c070225f39731020eba7091
/sdrdis/solution/cpp/robonaut-build-Desktop_Qt_5_0_1_clang_64bit-Debug/moc_imagewindow.cpp
c1af383ed09971833dde158f389de1131a34bbec
[ "Apache-2.0" ]
permissive
baymax84/NTL-ISS-Robonaut-2-Vision-Algorithm-Challenge
47592b68a4e526ff3ed6bc98c8e1490641553d3f
e7523c837d3cd4895537b3750d5b31ad7e8b8f59
refs/heads/master
2020-12-25T21:34:42.596852
2014-01-09T18:02:42
2014-01-09T18:02:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,358
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'imagewindow.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.0.1) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include "../robonaut/image/imagewindow.h" #include <QtCore/qbytearray.h> #include <QtCore/qmetatype.h> #if !defined(Q_MOC_OUTPUT_REVISION) #error "The header file 'imagewindow.h' doesn't include <QObject>." #elif Q_MOC_OUTPUT_REVISION != 67 #error "This file was generated using the moc from 5.0.1. It" #error "cannot be used with the include files from this version of Qt." #error "(The moc has changed too much.)" #endif QT_BEGIN_MOC_NAMESPACE struct qt_meta_stringdata_ImageWindow_t { QByteArrayData data[4]; char stringdata[47]; }; #define QT_MOC_LITERAL(idx, ofs, len) \ Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ offsetof(qt_meta_stringdata_ImageWindow_t, stringdata) + ofs \ - idx * sizeof(QByteArrayData) \ ) static const qt_meta_stringdata_ImageWindow_t qt_meta_stringdata_ImageWindow = { { QT_MOC_LITERAL(0, 0, 11), QT_MOC_LITERAL(1, 12, 26), QT_MOC_LITERAL(2, 39, 0), QT_MOC_LITERAL(3, 40, 5) }, "ImageWindow\0on_sizeSlider_valueChanged\0" "\0value\0" }; #undef QT_MOC_LITERAL static const uint qt_meta_data_ImageWindow[] = { // content: 7, // revision 0, // classname 0, 0, // classinfo 1, 14, // methods 0, 0, // properties 0, 0, // enums/sets 0, 0, // constructors 0, // flags 0, // signalCount // slots: name, argc, parameters, tag, flags 1, 1, 19, 2, 0x08, // slots: parameters QMetaType::Void, QMetaType::Int, 3, 0 // eod }; void ImageWindow::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) { if (_c == QMetaObject::InvokeMetaMethod) { ImageWindow *_t = static_cast<ImageWindow *>(_o); switch (_id) { case 0: _t->on_sizeSlider_valueChanged((*reinterpret_cast< int(*)>(_a[1]))); break; default: ; } } } const QMetaObject ImageWindow::staticMetaObject = { { &QMainWindow::staticMetaObject, qt_meta_stringdata_ImageWindow.data, qt_meta_data_ImageWindow, qt_static_metacall, 0, 0} }; const QMetaObject *ImageWindow::metaObject() const { return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; } void *ImageWindow::qt_metacast(const char *_clname) { if (!_clname) return 0; if (!strcmp(_clname, qt_meta_stringdata_ImageWindow.stringdata)) return static_cast<void*>(const_cast< ImageWindow*>(this)); return QMainWindow::qt_metacast(_clname); } int ImageWindow::qt_metacall(QMetaObject::Call _c, int _id, void **_a) { _id = QMainWindow::qt_metacall(_c, _id, _a); if (_id < 0) return _id; if (_c == QMetaObject::InvokeMetaMethod) { if (_id < 1) qt_static_metacall(this, _c, _id, _a); _id -= 1; } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { if (_id < 1) *reinterpret_cast<int*>(_a[0]) = -1; _id -= 1; } return _id; } QT_END_MOC_NAMESPACE
[ "allison.thackston@ratchet" ]
allison.thackston@ratchet
f49fef2a5cb3480460e0163583613cfd88dd3472
6c862c123645e595471323b6c45d449d71896109
/LeetCode/C++/0382._Linked_List_Random_Node/example.cpp
348db0523d79a69dcd4d3a3554e20058fccada7f
[ "MIT" ]
permissive
icgw/practice
72083fc2e99b20aed937358d26e0ac0cfefd00ea
cb70ca87aa4604d1aec83d4224b3489eacebba75
refs/heads/master
2021-11-15T05:09:48.930754
2021-11-13T02:04:57
2021-11-13T02:04:57
144,442,645
1
0
null
null
null
null
UTF-8
C++
false
false
327
cpp
/* * example.cpp * Copyright (C) 2021 Guowei Chen <icgw@outlook.com> * * Distributed under terms of the Apache license. */ #include "solution.h" void run_example() { ListNode* head = stringToListNode("[1, 2, 3]"); Solution sln(head); for (int i = 0; i < 30; ++i) { std::cout << sln.getRandom() << "\n"; } }
[ "icgw@outlook.com" ]
icgw@outlook.com
8cb89ede73a5ef26e1d761188135c0eda29580ae
2c1eb4bc621eae30f93544b53a0d4e163d94233d
/Problems/Leetcode/containsDuplicate.cpp
f0de2f5554ce23798058655ca647c012ee88b6b9
[ "MIT" ]
permissive
pedrotorreao/DSA
28c5f7cec0a259285d2dcad17db889e03d8e5b63
c0474bd64e40c3187a81b8719039ff04948579e3
refs/heads/master
2023-09-03T18:50:39.222678
2023-08-19T02:30:28
2023-08-19T02:30:28
251,261,122
5
0
null
null
null
null
UTF-8
C++
false
false
2,012
cpp
/*********************************************************************************************/ /* Problem: Contains Duplicate (LC) ********/ /*********************************************************************************************/ /* --Problem statement: Given an integer array 'nums', return true if any value appears at least twice in the array, and return 'false' if every element is distinct. > Example: a.) Input: nums = [1,2,3,1] Output: true b.) Input: nums = [1,2,3,4] Output: false c.) Input: nums = [1,1,1,3,3,4,3,2,4,2] Output: true --Inputs: - integer array --Output: - boolean --Constraints: 1 <= nums.length <= 105 -109 <= nums[i] <= 109 --Reasoning: Iterate through the input array and map each element to a hash set; however, before adding each element we check if the same element was not added (seen) before, if it has, it means that there are duplicated elements among the input dataset, so we just return 'true'. Otherwise, we'll get the end of the input array and no duplicates will have been found, se we return 'false'. --Time complexity: O(N), where 'N' is the size of the array. --Space complexity: O(N), in the worst case where no duplicates are found and we need to allocate space to every element in the input array. */ #include <iomanip> #include <iostream> #include <unordered_set> #include <vector> bool containsDuplicate(std::vector<int> &nums) { std::unordered_set<int> hash_set; for (const auto &n : nums) { if (hash_set.count(n) > 0) return true; hash_set.insert(n); } return false; } int main() { std::cout << std::boolalpha; std::vector<int> vec{1, 2, 3, 1}; std::cout << "Contains duplicate: " << containsDuplicate(vec) << "\n"; vec = {1, 2, 3, 4}; std::cout << "Contains duplicate: " << containsDuplicate(vec) << "\n"; vec = {1, 1, 1, 3, 3, 4, 3, 2, 4, 2}; std::cout << "Contains duplicate: " << containsDuplicate(vec) << "\n"; return 0; }
[ "pedrobarrostorreaogaiao@gmail.com" ]
pedrobarrostorreaogaiao@gmail.com
5e92046f8918162bddc96ef2b9b3066de37f6401
04f5ed9dc24c5d4ae43fe3e8c30946f3027d7e4c
/test/routevalidate.cpp
c50b26264e87e05187ff4bde9280efa7dfd89740
[]
no_license
faizilham/POICrowdSim
5de363c7aacf50aaee6bd6ba902cf33556af80d5
f42b40ccd4dc2b84ff22119b562890c9ca98e454
refs/heads/master
2021-01-15T15:32:07.394930
2016-07-28T17:28:34
2016-07-28T17:28:34
48,676,446
2
0
null
null
null
null
UTF-8
C++
false
false
7,732
cpp
#include "navmesh.h" #include "planmanager.h" #include "simulator.h" #include <iostream> #include <iomanip> #include <sstream> #include <exception> #include <cstdlib> #include <cstring> #include <string> #include <memory> #include <cmath> #include "rng.h" using namespace POICS; using namespace std; double scorefunc(const NodeSet& nodes, std::vector<double>& topic_param, const std::vector<int>& path){ double sum = 0.0; int n = path.size(); for (int i = 0; i < n; ++i){ int node = path[i]; for (int j = 0; j < nodes.num_score_elmts; ++j){ sum += nodes.getScoreElement(node,j) * topic_param[j]; } } return sum; } double spfunc(const NodeSet& nodes, std::vector<double>& topic_param, const std::vector<int>& path, int newNode){ double sum = 0.0; int n = path.size(); for (int i = 0; i < n; ++i){ int node = path[i]; for (int j = 0; j < nodes.num_score_elmts; ++j){ sum += nodes.getScoreElement(node,j) * topic_param[j]; } } for (int j = 0; j < nodes.num_score_elmts; ++j){ sum += nodes.getScoreElement(newNode,j) * topic_param[j]; } return sum; } char toAlphabet(int index){ return 'a' + (char) index; } void brutePlanRecursive (NodeSet& nodes, EdgeSet& edges, std::vector<double>& topicInterest, int endNode, double budget, std::vector<int>& currentPath, double length, std::vector<int>& bestPath, double& bestScore, double& bestLen, std::vector<int>& candidates, std::vector<bool>& visit){ int i = 0; bool added = false; for (int node : candidates){ if (!visit[i]){ double newlen = edges.getLength(currentPath.back(), node); double endlend = edges.getLength(node, endNode); if (length + newlen + endlend < budget){ added = true; visit[i] = true; currentPath.push_back(node); brutePlanRecursive(nodes, edges, topicInterest, endNode, budget, currentPath, length + newlen, bestPath, bestScore, bestLen, candidates, visit); currentPath.pop_back(); visit[i] = false; } else { double s = scorefunc(nodes, topicInterest, currentPath); if (s > bestScore){ bestScore = s; bestPath = currentPath; bestLen = length + edges.getLength(currentPath.back(), endNode); bestPath.push_back(endNode); } } } ++i; } double sc = scorefunc(nodes, topicInterest, currentPath); if (!added && sc > bestScore){ bestScore = sc; bestPath = currentPath; bestLen = length + edges.getLength(currentPath.back(), endNode); bestPath.push_back(endNode); } } void brutePlan(NodeSet& nodes, EdgeSet& edges, Agent* agent, int poiStartIndex){ std::vector<int> path, currentPath, candidates; double score = 0, length = 0; std::vector<bool> visit; std::vector<double>& topicInterest = agent->topicInterest; int start = agent->plan.front(), end = agent->plan.back(); double budget = agent->duration; for (int i = poiStartIndex; i < nodes.num_nodes; ++i){ if (abs(spfunc(nodes, topicInterest, path, i)) > 1e-6){ // if not zero interest candidates.push_back(i); visit.push_back(false); } } currentPath.push_back(start); brutePlanRecursive(nodes, edges, topicInterest, end, budget, currentPath, 0, path, score, length, candidates, visit); cout << agent->profile_name <<" "<<budget<<" "; cout<<score<<" "<<length<<" "<<path.size()<<" "; for (int node : path) cout<<toAlphabet(node); cout<<" "<<agent->metasolution.first<<" "<<agent->metasolution.second<<" "<<agent->plan.size()<<" "; for (int node : agent->plan) cout<<toAlphabet(node); } void greedPlan (NodeSet& nodes, EdgeSet& edges, Agent* agent, int poiStartIndex){ std::vector<int> path, candidates; double score = 0, length = 0; std::vector<bool> visit; std::vector<double>& topicInterest = agent->topicInterest; int start = agent->plan.front(), end = agent->plan.back(); double budget = agent->duration; for (int i = poiStartIndex; i < nodes.num_nodes; ++i){ if (abs(spfunc(nodes, topicInterest, path, i)) > 1e-6){ // if not zero interest candidates.push_back(i); visit.push_back(false); } } path.push_back(start); int next, node; double curS; int num_nodes = candidates.size(); do { next = -1; curS = 0; for (int i = 0; i < num_nodes; ++i){ if (visit[i]) continue; node = candidates[i]; double newlen = edges.getLength(path.back(), node); double endlend = edges.getLength(node, end); double sc = spfunc(nodes, topicInterest, path, node); if ((length + newlen + endlend < budget) && (curS < sc)){ next = i; curS = sc; } } if (next > -1){ visit[next] = true; node = candidates[next]; length += edges.getLength(path.back(), node); path.push_back(node); } } while (next > -1); length += edges.getLength(path.back(), end); path.push_back(end); score = scorefunc(nodes, topicInterest, path); cout<<" "<<score<<" "<<length<<" "<<path.size()<<" "; for (int node : path) cout<<toAlphabet(node); cout<<endl; } void calculateGoldPlans (PlanManager& pm, std::unique_ptr<Simulator>& sim) { NodeSet& nodes = pm.getNodes(); EdgeSet& edges = pm.getEdges(); int poiStartIndex = pm.poiNodeIdStart; /*for (int i = 0; i < nodes.num_nodes; ++i){ for (int j = 0; j < nodes.num_nodes; ++j){ cout << edges.getLength(i,j) << " "; } cout << endl; }*/ for (Agent* agent : sim->getInitialAgents()){ brutePlan(nodes, edges, agent, poiStartIndex); greedPlan(nodes, edges, agent, poiStartIndex); } } int main(int argc, char** argv){ try{ if (argc < 2) { exit(1); } /**** Parse Settings ****/ cout << setprecision(5); bool trianglenavmesh = false; bool makelane = true; CornerSmoothing smoothing = CornerSmoothing::POLYOFFSET; if (argc > 2){ for (int i = 2; i < argc; ++i){ string arg = argv[i]; if (arg == "--seed") { if (i == argc - 1) exit(1); string arg2 = argv[i+1]; unsigned int seed = (unsigned int) stoi(arg2); RNG::setRandomSeed(seed); i = i + 1; } else if (arg == "--triangle") { trianglenavmesh = true; } else if (arg == "--nolane") { makelane = false; } else if (arg == "--portal") { smoothing = CornerSmoothing::PORTAL; } else if (arg == "--nosmooth") { smoothing = CornerSmoothing::NONE; } else { cout<<"Unknown option: "<<arg<<"\n"; } } } /**** Load File and Build Components ****/ string mapfile = string(argv[1]) + string(".xarea"); string agentfile = string(argv[1]) + string(".xprof"); MapArea m; m.loadFromXML(mapfile.c_str()); AgentBuilder as(m.getTopicIds()); as.loadFromXML(agentfile.c_str()); PathFinder pf; HMNavMesh hm(pf, trianglenavmesh, makelane, smoothing); hm.build(m); PlanManager pm(m, hm); /**** Initialize Simulator ****/ std::unique_ptr<Simulator> sim(Simulator::create(m, as, pm)); cerr<<"Calculating Plan...\n"; sim->initialize(1); // rate plan cerr<<"Rate Plan...\n"; calculateGoldPlans (pm, sim); /**** Do Simulation ****/ /*cerr<<"\nSimulating...\n"; while (!sim->finished()){ sim->update(); cerr << "\rTimesteps: " << (int) sim->getTimestep() << flush; } cerr << "\n";*/ /**** Post-Simulation ****/ /*for (Agent* agent : sim->getFinishedAgents()){ double RMS = sqrt(agent->totalVelocity / agent->walkingTimesteps); double totalTime = agent->endTime - agent->startTime; cout << agent->id << " " << agent->profile_name << " " << agent->startTime << " " << totalTime << " " << agent->walkingTimesteps << " " << agent->poiTimesteps << " " << RMS << " " << agent->duration << " " << agent->totalpoi << " " << agent->metasolution.first << " " << agent->metasolution.second << "\n"; }*/ } catch (const exception& e) { cerr<<e.what(); } return 0; }
[ "mail@faizilham.com" ]
mail@faizilham.com
03a577bcc4431b8c30cb9d26537fd099daa85e46
b92926c85b8d4f44dd4941a48045b345f75e2c56
/Trunk/src/chrono-scripts/src/WorldPvPScripts/Setup.cpp
cbe85207f2bd53f5b0ad9ff97ade43b2a579c2c5
[]
no_license
Swater96/ChronoEmu
a3a5f14df9fdc4e66d1fc36a710720d628424f0f
e0d52ff033c9cc031215aa28d8bfbf25076f51f9
refs/heads/master
2020-06-13T20:00:08.799176
2018-02-09T07:12:17
2018-02-09T07:12:17
75,558,836
6
4
null
2016-12-04T19:24:08
2016-12-04T19:24:08
null
UTF-8
C++
false
false
459
cpp
#include "StdAfx.h" #define SKIP_ALLOCATOR_SHARING 1 #include <ScriptSetup.h> void SetupPvPSilithus(ScriptMgr *mgr); extern "C" SCRIPT_DECL uint32 _exp_get_script_type() { return SCRIPT_TYPE_MISC; } extern "C" SCRIPT_DECL void _exp_script_register(ScriptMgr* mgr) // Comment any script to disable it { SetupPvPSilithus(mgr); } #ifdef WIN32 BOOL APIENTRY DllMain( HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ) { return TRUE; } #endif
[ "colbyjameslopez@gmail.com" ]
colbyjameslopez@gmail.com
b5f1a96ecae3e10d23118d0fd99dd39d8f70be91
a9cf4a100843634718462c52dcbbab0a2d3cca9d
/CodingInterviews/字符串的排列/solution.cpp
1440a5c5a68b014f12c0ee6c69f7ddd205ff3f3f
[]
no_license
fja0kl/LeetCode-Path
e0b3c9339ba20dd42a1ab94524ec5d41a5c2c1fa
2a03e53e7fa5e8214337e1322ebfe5e75dd92c14
refs/heads/master
2020-03-16T17:38:50.576357
2019-04-05T10:00:19
2019-04-05T10:00:19
132,841,315
0
0
null
null
null
null
UTF-8
C++
false
false
675
cpp
class Solution { public: vector<string> Permutation(string str) { vector<string> result; if (str.empty()) return result; permutation(str, 0, result); sort(result.begin(), result.end()); return result; } void permutation(string str, int begin, vector<string>& res){ if (str[begin] == '\0'){ res.push_back(str); return; } for (int i=begin; i< str.size(); i++){ if (i==begin || str[i] != str[begin]){ swap(str[i], str[begin]); permutation(str, begin+1, res); swap(str[i], str[begin]); } } } };
[ "gaoexplicit@163.com" ]
gaoexplicit@163.com
29c6a972c46cbb8dd5e040197df436ec637eaa7f
d7b84a31cafb72a3cb71b3a3cc724a68119ba18e
/Tyr/1.86/Ma
6d0d20c3c47d8fa14c7cce73408335698199689a
[]
no_license
benroque/Ragnorak
6cc7c68db801f9281a4ac241da754bce88ef6caf
a1bfc2430cccb207192792acebdd1530f1388a4c
refs/heads/master
2021-01-14T08:13:18.774988
2017-02-20T08:32:53
2017-02-20T08:32:53
82,008,402
0
0
null
null
null
null
UTF-8
C++
false
false
418,385
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 4.1 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "1.86"; object Ma; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 0 0 0 0 0]; internalField nonuniform List<scalar> 52500 ( 3.00002 2.99998 2.99994 2.99976 2.99951 2.99849 2.99705 2.9913 2.98258 2.95137 2.89141 2.72889 2.33092 1.57284 0.624327 0.213004 0.323232 0.358156 0.324519 0.266327 0.211942 0.170172 0.12901 0.0816177 0.0450374 3.00002 2.99998 2.99994 2.99976 2.99952 2.99851 2.99708 2.9914 2.98279 2.95191 2.89307 2.73215 2.34137 1.58878 0.636076 0.223375 0.329086 0.363162 0.32941 0.271844 0.218308 0.177485 0.138063 0.0958308 0.0693336 3.00002 2.99998 2.99994 2.99977 2.99953 2.99854 2.99715 2.99158 2.98317 2.9529 2.89603 2.73788 2.36182 1.61837 0.660191 0.243656 0.340222 0.372814 0.339767 0.284291 0.233274 0.195515 0.160841 0.127328 0.109797 3.00002 2.99999 2.99994 2.99978 2.99954 2.99859 2.99724 2.99184 2.98372 2.95432 2.89976 2.74567 2.38513 1.65158 0.69209 0.271065 0.353581 0.384126 0.353239 0.301805 0.254948 0.221576 0.19264 0.166769 0.154481 3.00002 2.99999 2.99995 2.99979 2.99956 2.99865 2.99736 2.99219 2.98444 2.9563 2.90421 2.75701 2.41002 1.69904 0.731642 0.303585 0.369206 0.395638 0.368389 0.322881 0.281477 0.253034 0.229846 0.210279 0.201829 3.00002 2.99999 2.99995 2.9998 2.99959 2.99873 2.99751 2.99262 2.98531 2.95865 2.90952 2.77028 2.43934 1.75554 0.780612 0.343668 0.387857 0.407385 0.385705 0.348184 0.312537 0.289489 0.272457 0.258963 0.254454 3.00002 2.99999 2.99996 2.99982 2.99962 2.99883 2.99771 2.9932 2.98646 2.96198 2.91572 2.78826 2.4695 1.83306 0.842059 0.395392 0.407204 0.417999 0.406092 0.377249 0.347966 0.330937 0.320825 0.314512 0.316016 3.00002 3 2.99997 2.99984 2.99967 2.99897 2.99796 2.99407 2.98779 2.96669 2.92136 2.8079 2.50157 1.92268 0.9178 0.453636 0.423233 0.4333 0.429754 0.40885 0.386782 0.376599 0.375143 0.3785 0.391728 3.00002 3 2.99997 2.99986 2.99971 2.99909 2.9982 2.99482 2.98911 2.97063 2.92906 2.82672 2.54208 2.01572 1.01403 0.522808 0.440004 0.451415 0.456176 0.442849 0.429658 0.427895 0.436565 0.455625 0.494564 3.00002 3 2.99998 2.99989 2.99975 2.99923 2.99844 2.99564 2.99044 2.97493 2.93763 2.84955 2.59375 2.12175 1.15395 0.610326 0.462756 0.475262 0.486249 0.479675 0.475421 0.482607 0.507457 0.556922 0.663803 3 2.99997 2.99992 2.99974 2.99949 2.99847 2.99703 2.99128 2.98256 2.95134 2.89137 2.72882 2.33079 1.57261 0.624151 0.21269 0.323018 0.357959 0.324302 0.266068 0.21162 0.169769 0.128474 0.0807571 0.0434296 3 2.99997 2.99992 2.99975 2.9995 2.99849 2.99706 2.99138 2.98276 2.95188 2.89303 2.73209 2.34125 1.58857 0.635901 0.223073 0.328883 0.362977 0.329204 0.271596 0.218 0.177104 0.13757 0.0951089 0.068315 3 2.99997 2.99992 2.99975 2.99951 2.99852 2.99713 2.99156 2.98315 2.95287 2.89599 2.73782 2.36173 1.61822 0.660041 0.243382 0.340038 0.372645 0.339574 0.284059 0.232991 0.195175 0.160424 0.126793 0.109166 3 2.99997 2.99993 2.99976 2.99952 2.99857 2.99722 2.99182 2.98369 2.95429 2.89973 2.74561 2.38506 1.65144 0.691946 0.27081 0.35341 0.383971 0.353062 0.301594 0.254695 0.221282 0.192299 0.166367 0.15404 3 2.99997 2.99993 2.99977 2.99954 2.99863 2.99734 2.99217 2.98441 2.95627 2.90418 2.75695 2.40997 1.69891 0.731504 0.303354 0.369044 0.395492 0.368223 0.322688 0.281254 0.252782 0.229565 0.209966 0.201498 3 2.99997 2.99993 2.99978 2.99957 2.99871 2.99749 2.9926 2.98529 2.95862 2.90949 2.77022 2.43929 1.75542 0.780482 0.343457 0.387704 0.407244 0.38555 0.34801 0.312339 0.289272 0.272225 0.258715 0.254197 3 2.99997 2.99994 2.9998 2.99961 2.99881 2.99769 2.99318 2.98643 2.96195 2.9157 2.78821 2.46948 1.83294 0.841944 0.395209 0.407067 0.417865 0.405949 0.377093 0.347794 0.330753 0.320633 0.314313 0.315815 3 2.99998 2.99995 2.99982 2.99965 2.99895 2.99794 2.99404 2.98777 2.96666 2.92134 2.80785 2.50156 1.92259 0.9177 0.453477 0.423107 0.433176 0.429625 0.408711 0.386632 0.376442 0.374984 0.378341 0.391572 3 2.99998 2.99995 2.99985 2.99969 2.99907 2.99818 2.9948 2.98909 2.9706 2.92903 2.82667 2.54204 2.01562 1.01392 0.522653 0.439879 0.451295 0.456056 0.442724 0.429528 0.427763 0.436435 0.4555 0.494448 3 2.99999 2.99996 2.99987 2.99974 2.99921 2.99842 2.99562 2.99041 2.97491 2.9376 2.8495 2.59369 2.12164 1.15381 0.610178 0.462631 0.475143 0.486133 0.47956 0.475307 0.482495 0.507352 0.556827 0.663726 3 2.99997 2.99992 2.99974 2.99949 2.99847 2.99703 2.99128 2.98256 2.95134 2.89137 2.72882 2.33079 1.57261 0.624149 0.21269 0.323018 0.357959 0.324302 0.266067 0.21162 0.169769 0.128474 0.0807571 0.04343 3 2.99997 2.99992 2.99975 2.9995 2.99849 2.99706 2.99138 2.98276 2.95188 2.89303 2.73208 2.34125 1.58857 0.635899 0.223072 0.328883 0.362977 0.329203 0.271595 0.218 0.177104 0.13757 0.0951089 0.0683152 3 2.99997 2.99992 2.99975 2.99951 2.99852 2.99713 2.99156 2.98315 2.95287 2.89599 2.73782 2.36173 1.61822 0.660039 0.243382 0.340037 0.372645 0.339574 0.284059 0.232991 0.195175 0.160424 0.126793 0.109166 3 2.99997 2.99993 2.99976 2.99952 2.99857 2.99722 2.99182 2.98369 2.95429 2.89973 2.74561 2.38506 1.65144 0.691944 0.270809 0.35341 0.383971 0.353062 0.301593 0.254695 0.221282 0.192298 0.166367 0.15404 3 2.99997 2.99993 2.99977 2.99954 2.99863 2.99734 2.99217 2.98441 2.95627 2.90418 2.75695 2.40997 1.69891 0.731503 0.303353 0.369044 0.395492 0.368223 0.322688 0.281254 0.252782 0.229565 0.209966 0.201498 3 2.99997 2.99993 2.99978 2.99957 2.99871 2.99749 2.9926 2.98529 2.95862 2.90949 2.77022 2.43928 1.75542 0.78048 0.343456 0.387704 0.407244 0.38555 0.34801 0.312339 0.289272 0.272225 0.258715 0.254197 3 2.99997 2.99994 2.9998 2.99961 2.99881 2.99769 2.99318 2.98643 2.96195 2.9157 2.78821 2.46948 1.83293 0.841942 0.395208 0.407066 0.417865 0.405949 0.377093 0.347794 0.330753 0.320633 0.314313 0.315815 3 2.99998 2.99995 2.99982 2.99965 2.99895 2.99794 2.99404 2.98777 2.96666 2.92134 2.80785 2.50156 1.92259 0.917698 0.453476 0.423107 0.433176 0.429625 0.408711 0.386632 0.376442 0.374984 0.378341 0.391572 3 2.99998 2.99995 2.99985 2.99969 2.99907 2.99818 2.9948 2.98909 2.9706 2.92903 2.82667 2.54204 2.01562 1.01391 0.522651 0.439879 0.451295 0.456056 0.442724 0.429528 0.427763 0.436435 0.4555 0.494449 3 2.99999 2.99996 2.99987 2.99974 2.99921 2.99842 2.99562 2.99041 2.97491 2.9376 2.8495 2.59369 2.12164 1.15381 0.610177 0.462631 0.475143 0.486133 0.479559 0.475307 0.482495 0.507352 0.556827 0.663726 3 2.99997 2.99992 2.99974 2.99949 2.99847 2.99703 2.99128 2.98256 2.95134 2.89137 2.72882 2.33078 1.5726 0.624148 0.21269 0.323018 0.357959 0.324302 0.266067 0.21162 0.169768 0.128474 0.080757 0.0434301 3 2.99997 2.99992 2.99975 2.9995 2.99849 2.99706 2.99138 2.98276 2.95188 2.89303 2.73208 2.34125 1.58857 0.635898 0.223072 0.328882 0.362976 0.329203 0.271595 0.218 0.177104 0.13757 0.0951088 0.0683153 3 2.99997 2.99992 2.99975 2.99951 2.99852 2.99713 2.99156 2.98315 2.95287 2.89599 2.73782 2.36173 1.61822 0.660038 0.243382 0.340037 0.372645 0.339574 0.284058 0.232991 0.195175 0.160424 0.126793 0.109166 3 2.99997 2.99993 2.99976 2.99952 2.99857 2.99722 2.99182 2.98369 2.95429 2.89973 2.74561 2.38506 1.65144 0.691944 0.270809 0.35341 0.383971 0.353062 0.301593 0.254695 0.221282 0.192298 0.166367 0.15404 3 2.99997 2.99993 2.99977 2.99954 2.99863 2.99734 2.99217 2.98441 2.95627 2.90418 2.75695 2.40996 1.69891 0.731502 0.303353 0.369044 0.395493 0.368223 0.322688 0.281254 0.252782 0.229565 0.209966 0.201498 3 2.99997 2.99993 2.99978 2.99957 2.99871 2.99749 2.9926 2.98529 2.95862 2.90949 2.77022 2.43928 1.75542 0.78048 0.343456 0.387704 0.407244 0.38555 0.34801 0.312339 0.289272 0.272225 0.258715 0.254197 3 2.99997 2.99994 2.9998 2.99961 2.99881 2.99769 2.99318 2.98643 2.96195 2.9157 2.78821 2.46948 1.83293 0.841941 0.395207 0.407067 0.417865 0.405949 0.377093 0.347794 0.330753 0.320633 0.314313 0.315815 3 2.99998 2.99995 2.99982 2.99965 2.99895 2.99794 2.99404 2.98777 2.96666 2.92134 2.80785 2.50156 1.92259 0.917698 0.453475 0.423107 0.433176 0.429625 0.408711 0.386632 0.376442 0.374984 0.378341 0.391572 3 2.99998 2.99995 2.99985 2.99969 2.99907 2.99818 2.9948 2.98909 2.9706 2.92903 2.82667 2.54204 2.01562 1.01391 0.522651 0.439879 0.451295 0.456056 0.442724 0.429528 0.427763 0.436435 0.4555 0.494449 3 2.99999 2.99996 2.99987 2.99974 2.99921 2.99842 2.99562 2.99041 2.97491 2.9376 2.8495 2.59369 2.12164 1.15381 0.610177 0.462631 0.475143 0.486133 0.479559 0.475307 0.482495 0.507352 0.556827 0.663726 3 2.99997 2.99992 2.99974 2.99949 2.99847 2.99703 2.99128 2.98256 2.95134 2.89137 2.72882 2.33078 1.5726 0.624148 0.21269 0.323018 0.357959 0.324302 0.266067 0.21162 0.169768 0.128474 0.0807572 0.0434299 3 2.99997 2.99992 2.99975 2.9995 2.99849 2.99706 2.99138 2.98276 2.95188 2.89303 2.73208 2.34125 1.58857 0.635898 0.223072 0.328882 0.362976 0.329203 0.271595 0.218 0.177104 0.137569 0.095109 0.0683152 3 2.99997 2.99992 2.99975 2.99951 2.99852 2.99713 2.99156 2.98315 2.95287 2.89599 2.73782 2.36172 1.61822 0.660038 0.243381 0.340037 0.372645 0.339574 0.284058 0.232991 0.195175 0.160424 0.126793 0.109166 3 2.99997 2.99993 2.99976 2.99952 2.99857 2.99722 2.99182 2.98369 2.95429 2.89973 2.74561 2.38506 1.65144 0.691943 0.270809 0.35341 0.383971 0.353061 0.301593 0.254695 0.221281 0.192298 0.166367 0.15404 3 2.99997 2.99993 2.99977 2.99954 2.99863 2.99734 2.99217 2.98441 2.95627 2.90418 2.75695 2.40996 1.69891 0.731502 0.303352 0.369044 0.395492 0.368223 0.322688 0.281253 0.252781 0.229565 0.209966 0.201498 3 2.99997 2.99993 2.99978 2.99957 2.99871 2.99749 2.9926 2.98529 2.95862 2.90949 2.77022 2.43928 1.75542 0.780479 0.343456 0.387703 0.407244 0.38555 0.34801 0.312339 0.289272 0.272225 0.258715 0.254197 3 2.99997 2.99994 2.9998 2.99961 2.99881 2.99769 2.99318 2.98643 2.96195 2.9157 2.78821 2.46948 1.83293 0.841941 0.395207 0.407066 0.417865 0.405949 0.377093 0.347794 0.330753 0.320633 0.314313 0.315815 3 2.99998 2.99995 2.99982 2.99965 2.99895 2.99794 2.99404 2.98777 2.96666 2.92134 2.80785 2.50156 1.92259 0.917697 0.453475 0.423107 0.433176 0.429625 0.408711 0.386632 0.376442 0.374984 0.378341 0.391572 3 2.99998 2.99995 2.99985 2.99969 2.99907 2.99818 2.9948 2.98909 2.9706 2.92903 2.82667 2.54204 2.01562 1.01391 0.52265 0.439879 0.451295 0.456055 0.442724 0.429528 0.427763 0.436435 0.4555 0.494448 3 2.99999 2.99996 2.99987 2.99974 2.99921 2.99842 2.99562 2.99041 2.97491 2.9376 2.8495 2.59369 2.12164 1.1538 0.610176 0.46263 0.475142 0.486133 0.479559 0.475307 0.482495 0.507352 0.556827 0.663726 3 2.99997 2.99992 2.99974 2.99949 2.99847 2.99703 2.99128 2.98256 2.95134 2.89137 2.72882 2.33079 1.57261 0.624148 0.21269 0.323018 0.357959 0.324302 0.266067 0.21162 0.169768 0.128474 0.0807571 0.0434301 3 2.99997 2.99992 2.99975 2.9995 2.99849 2.99706 2.99138 2.98276 2.95188 2.89303 2.73208 2.34125 1.58857 0.635898 0.223072 0.328882 0.362976 0.329203 0.271595 0.218 0.177104 0.13757 0.0951089 0.0683153 3 2.99997 2.99992 2.99975 2.99951 2.99852 2.99713 2.99156 2.98315 2.95287 2.89599 2.73782 2.36173 1.61822 0.660038 0.243382 0.340037 0.372645 0.339574 0.284058 0.232991 0.195175 0.160424 0.126793 0.109166 3 2.99997 2.99993 2.99976 2.99952 2.99857 2.99722 2.99182 2.98369 2.95429 2.89973 2.74561 2.38506 1.65144 0.691944 0.270809 0.35341 0.383971 0.353062 0.301593 0.254695 0.221282 0.192298 0.166367 0.15404 3 2.99997 2.99993 2.99977 2.99954 2.99863 2.99734 2.99217 2.98441 2.95627 2.90418 2.75695 2.40996 1.69891 0.731502 0.303353 0.369044 0.395492 0.368223 0.322688 0.281254 0.252782 0.229565 0.209966 0.201498 3 2.99997 2.99993 2.99978 2.99957 2.99871 2.99749 2.9926 2.98529 2.95862 2.90949 2.77022 2.43928 1.75542 0.78048 0.343456 0.387703 0.407244 0.38555 0.34801 0.312339 0.289272 0.272225 0.258715 0.254197 3 2.99997 2.99994 2.9998 2.99961 2.99881 2.99769 2.99318 2.98643 2.96195 2.9157 2.78821 2.46948 1.83293 0.841941 0.395207 0.407066 0.417865 0.405949 0.377093 0.347794 0.330753 0.320633 0.314313 0.315815 3 2.99998 2.99995 2.99982 2.99965 2.99895 2.99794 2.99404 2.98777 2.96666 2.92134 2.80785 2.50156 1.92259 0.917698 0.453475 0.423107 0.433176 0.429625 0.408711 0.386632 0.376442 0.374984 0.378341 0.391572 3 2.99998 2.99995 2.99985 2.99969 2.99907 2.99818 2.9948 2.98909 2.9706 2.92903 2.82667 2.54204 2.01562 1.01391 0.522651 0.439879 0.451295 0.456055 0.442724 0.429528 0.427763 0.436435 0.4555 0.494449 3 2.99999 2.99996 2.99987 2.99974 2.99921 2.99842 2.99562 2.99041 2.97491 2.9376 2.8495 2.59369 2.12164 1.15381 0.610176 0.462631 0.475143 0.486133 0.479559 0.475307 0.482495 0.507352 0.556827 0.663726 3 2.99997 2.99992 2.99974 2.99949 2.99847 2.99703 2.99128 2.98256 2.95134 2.89137 2.72882 2.33078 1.5726 0.624148 0.21269 0.323018 0.357959 0.324302 0.266067 0.21162 0.169768 0.128474 0.080757 0.0434301 3 2.99997 2.99992 2.99975 2.9995 2.99849 2.99706 2.99138 2.98276 2.95188 2.89303 2.73208 2.34125 1.58857 0.635898 0.223072 0.328882 0.362976 0.329203 0.271595 0.218 0.177104 0.13757 0.0951088 0.0683153 3 2.99997 2.99992 2.99975 2.99951 2.99852 2.99713 2.99156 2.98315 2.95287 2.89599 2.73782 2.36173 1.61822 0.660038 0.243382 0.340037 0.372645 0.339574 0.284058 0.232991 0.195175 0.160424 0.126793 0.109166 3 2.99997 2.99993 2.99976 2.99952 2.99857 2.99722 2.99182 2.98369 2.95429 2.89973 2.74561 2.38506 1.65144 0.691944 0.270809 0.35341 0.383971 0.353062 0.301593 0.254695 0.221282 0.192298 0.166367 0.15404 3 2.99997 2.99993 2.99977 2.99954 2.99863 2.99734 2.99217 2.98441 2.95627 2.90418 2.75695 2.40996 1.69891 0.731502 0.303353 0.369044 0.395493 0.368223 0.322688 0.281254 0.252782 0.229565 0.209966 0.201498 3 2.99997 2.99993 2.99978 2.99957 2.99871 2.99749 2.9926 2.98529 2.95862 2.90949 2.77022 2.43928 1.75542 0.78048 0.343456 0.387704 0.407244 0.38555 0.34801 0.312339 0.289272 0.272225 0.258715 0.254197 3 2.99997 2.99994 2.9998 2.99961 2.99881 2.99769 2.99318 2.98643 2.96195 2.9157 2.78821 2.46948 1.83293 0.841941 0.395207 0.407067 0.417865 0.405949 0.377093 0.347794 0.330753 0.320633 0.314313 0.315815 3 2.99998 2.99995 2.99982 2.99965 2.99895 2.99794 2.99404 2.98777 2.96666 2.92134 2.80785 2.50156 1.92259 0.917698 0.453475 0.423107 0.433176 0.429625 0.408711 0.386632 0.376442 0.374984 0.378341 0.391572 3 2.99998 2.99995 2.99985 2.99969 2.99907 2.99818 2.9948 2.98909 2.9706 2.92903 2.82667 2.54204 2.01562 1.01391 0.522651 0.439879 0.451295 0.456056 0.442724 0.429528 0.427763 0.436435 0.4555 0.494449 3 2.99999 2.99996 2.99987 2.99974 2.99921 2.99842 2.99562 2.99041 2.97491 2.9376 2.8495 2.59369 2.12164 1.15381 0.610177 0.462631 0.475143 0.486133 0.479559 0.475307 0.482495 0.507352 0.556827 0.663726 3 2.99997 2.99992 2.99974 2.99949 2.99847 2.99703 2.99128 2.98256 2.95134 2.89137 2.72882 2.33079 1.57261 0.624149 0.21269 0.323018 0.357959 0.324302 0.266067 0.21162 0.169769 0.128474 0.0807571 0.04343 3 2.99997 2.99992 2.99975 2.9995 2.99849 2.99706 2.99138 2.98276 2.95188 2.89303 2.73208 2.34125 1.58857 0.635899 0.223072 0.328883 0.362977 0.329203 0.271595 0.218 0.177104 0.13757 0.0951089 0.0683152 3 2.99997 2.99992 2.99975 2.99951 2.99852 2.99713 2.99156 2.98315 2.95287 2.89599 2.73782 2.36173 1.61822 0.660039 0.243382 0.340037 0.372645 0.339574 0.284059 0.232991 0.195175 0.160424 0.126793 0.109166 3 2.99997 2.99993 2.99976 2.99952 2.99857 2.99722 2.99182 2.98369 2.95429 2.89973 2.74561 2.38506 1.65144 0.691944 0.270809 0.35341 0.383971 0.353062 0.301593 0.254695 0.221282 0.192298 0.166367 0.15404 3 2.99997 2.99993 2.99977 2.99954 2.99863 2.99734 2.99217 2.98441 2.95627 2.90418 2.75695 2.40997 1.69891 0.731503 0.303353 0.369044 0.395492 0.368223 0.322688 0.281254 0.252782 0.229565 0.209966 0.201498 3 2.99997 2.99993 2.99978 2.99957 2.99871 2.99749 2.9926 2.98529 2.95862 2.90949 2.77022 2.43928 1.75542 0.78048 0.343456 0.387704 0.407244 0.38555 0.34801 0.312339 0.289272 0.272225 0.258715 0.254197 3 2.99997 2.99994 2.9998 2.99961 2.99881 2.99769 2.99318 2.98643 2.96195 2.9157 2.78821 2.46948 1.83293 0.841942 0.395208 0.407066 0.417865 0.405949 0.377093 0.347794 0.330753 0.320633 0.314313 0.315815 3 2.99998 2.99995 2.99982 2.99965 2.99895 2.99794 2.99404 2.98777 2.96666 2.92134 2.80785 2.50156 1.92259 0.917698 0.453476 0.423107 0.433176 0.429625 0.408711 0.386632 0.376442 0.374984 0.378341 0.391572 3 2.99998 2.99995 2.99985 2.99969 2.99907 2.99818 2.9948 2.98909 2.9706 2.92903 2.82667 2.54204 2.01562 1.01391 0.522651 0.439879 0.451295 0.456056 0.442724 0.429528 0.427763 0.436435 0.4555 0.494449 3 2.99999 2.99996 2.99987 2.99974 2.99921 2.99842 2.99562 2.99041 2.97491 2.9376 2.8495 2.59369 2.12164 1.15381 0.610177 0.462631 0.475143 0.486133 0.479559 0.475307 0.482495 0.507352 0.556827 0.663726 3 2.99997 2.99992 2.99974 2.99949 2.99847 2.99703 2.99128 2.98256 2.95134 2.89137 2.72882 2.33079 1.57261 0.624151 0.21269 0.323018 0.357959 0.324302 0.266068 0.21162 0.169769 0.128474 0.0807571 0.0434296 3 2.99997 2.99992 2.99975 2.9995 2.99849 2.99706 2.99138 2.98276 2.95188 2.89303 2.73209 2.34125 1.58857 0.635901 0.223073 0.328883 0.362977 0.329204 0.271596 0.218 0.177104 0.13757 0.0951089 0.068315 3 2.99997 2.99992 2.99975 2.99951 2.99852 2.99713 2.99156 2.98315 2.95287 2.89599 2.73782 2.36173 1.61822 0.660041 0.243382 0.340038 0.372645 0.339574 0.284059 0.232991 0.195175 0.160424 0.126793 0.109166 3 2.99997 2.99993 2.99976 2.99952 2.99857 2.99722 2.99182 2.98369 2.95429 2.89973 2.74561 2.38506 1.65144 0.691946 0.27081 0.35341 0.383971 0.353062 0.301594 0.254695 0.221282 0.192299 0.166367 0.15404 3 2.99997 2.99993 2.99977 2.99954 2.99863 2.99734 2.99217 2.98441 2.95627 2.90418 2.75695 2.40997 1.69891 0.731504 0.303354 0.369044 0.395492 0.368223 0.322688 0.281254 0.252782 0.229565 0.209966 0.201498 3 2.99997 2.99993 2.99978 2.99957 2.99871 2.99749 2.9926 2.98529 2.95862 2.90949 2.77022 2.43929 1.75542 0.780482 0.343457 0.387704 0.407244 0.38555 0.34801 0.312339 0.289272 0.272225 0.258715 0.254197 3 2.99997 2.99994 2.9998 2.99961 2.99881 2.99769 2.99318 2.98643 2.96195 2.9157 2.78821 2.46948 1.83294 0.841944 0.395209 0.407067 0.417865 0.405949 0.377093 0.347794 0.330753 0.320633 0.314313 0.315815 3 2.99998 2.99995 2.99982 2.99965 2.99895 2.99794 2.99404 2.98777 2.96666 2.92134 2.80785 2.50156 1.92259 0.9177 0.453477 0.423107 0.433176 0.429625 0.408711 0.386632 0.376442 0.374984 0.378341 0.391572 3 2.99998 2.99995 2.99985 2.99969 2.99907 2.99818 2.9948 2.98909 2.9706 2.92903 2.82667 2.54204 2.01562 1.01392 0.522653 0.439879 0.451295 0.456056 0.442724 0.429528 0.427763 0.436435 0.4555 0.494448 3 2.99999 2.99996 2.99987 2.99974 2.99921 2.99842 2.99562 2.99041 2.97491 2.9376 2.8495 2.59369 2.12164 1.15381 0.610178 0.462631 0.475143 0.486133 0.47956 0.475307 0.482495 0.507352 0.556827 0.663726 3.00002 2.99998 2.99994 2.99976 2.99951 2.99849 2.99705 2.9913 2.98258 2.95137 2.89141 2.7289 2.33092 1.57284 0.624328 0.213004 0.323232 0.358156 0.324519 0.266327 0.211943 0.170172 0.12901 0.0816176 0.0450377 3.00002 2.99998 2.99994 2.99976 2.99952 2.99851 2.99708 2.9914 2.98279 2.95191 2.89307 2.73216 2.34137 1.58878 0.636077 0.223375 0.329086 0.363162 0.32941 0.271844 0.218308 0.177485 0.138063 0.0958308 0.0693338 3.00002 2.99998 2.99994 2.99977 2.99953 2.99854 2.99715 2.99158 2.98317 2.9529 2.89603 2.73788 2.36182 1.61837 0.660192 0.243656 0.340222 0.372814 0.339767 0.284291 0.233274 0.195515 0.160841 0.127328 0.109797 3.00002 2.99999 2.99994 2.99978 2.99954 2.99859 2.99724 2.99184 2.98372 2.95432 2.89976 2.74567 2.38513 1.65158 0.692091 0.271065 0.353581 0.384125 0.35324 0.301805 0.254948 0.221576 0.19264 0.166769 0.154481 3.00002 2.99999 2.99995 2.99979 2.99956 2.99865 2.99736 2.99219 2.98444 2.9563 2.90421 2.75701 2.41002 1.69904 0.731642 0.303585 0.369206 0.395638 0.368389 0.322881 0.281477 0.253034 0.229846 0.210279 0.201829 3.00002 2.99999 2.99995 2.9998 2.99959 2.99873 2.99751 2.99262 2.98531 2.95865 2.90952 2.77028 2.43934 1.75554 0.780613 0.343668 0.387857 0.407385 0.385705 0.348184 0.312537 0.289489 0.272457 0.258963 0.254454 3.00002 2.99999 2.99996 2.99982 2.99962 2.99883 2.99771 2.9932 2.98646 2.96198 2.91572 2.78826 2.4695 1.83306 0.84206 0.395392 0.407204 0.417999 0.406092 0.377249 0.347966 0.330938 0.320825 0.314512 0.316016 3.00002 3 2.99997 2.99984 2.99967 2.99897 2.99796 2.99407 2.98779 2.96669 2.92136 2.8079 2.50157 1.92268 0.917801 0.453636 0.423233 0.433299 0.429754 0.40885 0.386782 0.376599 0.375143 0.3785 0.391728 3.00002 3 2.99997 2.99986 2.99971 2.99909 2.9982 2.99482 2.98911 2.97063 2.92906 2.82672 2.54208 2.01573 1.01404 0.522809 0.440004 0.451415 0.456176 0.442849 0.429658 0.427895 0.436565 0.455625 0.494564 3.00002 3 2.99998 2.99989 2.99975 2.99923 2.99844 2.99564 2.99044 2.97493 2.93763 2.84955 2.59375 2.12175 1.15395 0.610326 0.462756 0.475262 0.486249 0.479675 0.475421 0.482607 0.507457 0.556922 0.663803 3.00002 3.00001 2.99997 2.99992 2.99972 2.99943 2.99828 2.99652 2.9903 2.97872 2.94426 2.86074 2.67324 2.16982 1.35479 0.705704 0.495124 0.508676 0.522832 0.521583 0.523837 0.541485 0.58693 0.678989 0.86376 3.00002 3.00001 2.99998 2.99993 2.99975 2.9995 2.99844 2.99696 2.99102 2.98204 2.94988 2.88771 2.72079 2.31517 1.55704 0.808432 0.537528 0.550984 0.564504 0.56775 0.575242 0.602648 0.663525 0.775492 0.970986 3.00002 3.00001 2.99999 2.99995 2.9998 2.99958 2.9987 2.99745 2.99248 2.98506 2.9579 2.90917 2.76607 2.44992 1.76485 0.924455 0.596478 0.601399 0.611075 0.618524 0.629455 0.661934 0.728823 0.838156 1.00698 3.00002 3.00002 2.99999 2.99996 2.99984 2.99966 2.99895 2.99794 2.99392 2.9879 2.96637 2.92492 2.81329 2.52836 1.96789 1.0364 0.660019 0.639622 0.652563 0.666254 0.682384 0.716592 0.78034 0.877916 1.02027 3.00002 3.00002 3 2.99998 2.99988 2.99974 2.99921 2.99841 2.99552 2.99036 2.97454 2.9379 2.84916 2.60111 2.13368 1.22448 0.761703 0.668561 0.682452 0.701711 0.727413 0.764085 0.823958 0.907703 1.02648 3.00002 3.00002 3.00001 2.99998 2.99993 2.99974 2.99947 2.9984 2.99678 2.99099 2.98054 2.94873 2.87387 2.70198 2.25171 1.48078 0.886403 0.707065 0.714814 0.734727 0.765165 0.803538 0.860945 0.936228 1.03453 3.00002 3.00002 3.00001 2.99999 2.99995 2.99979 2.99958 2.99869 2.99743 2.99243 2.98495 2.9578 2.90825 2.76682 2.44615 1.77376 1.02668 0.764753 0.757874 0.773444 0.803077 0.839624 0.890647 0.959166 1.0447 3.00002 3.00002 3.00002 3 2.99997 2.99985 2.99968 2.99901 2.99803 2.99424 2.98846 2.96781 2.92963 2.8222 2.56513 2.01556 1.1859 0.837721 0.800466 0.814164 0.840542 0.876954 0.920651 0.980248 1.05473 3.00003 3.00002 3.00002 3.00001 2.99997 2.99992 2.99971 2.99941 2.99824 2.99646 2.99017 2.97868 2.94455 2.86289 2.6809 2.19608 1.43306 0.951554 0.840667 0.848118 0.870422 0.905897 0.947527 0.999823 1.06488 3.00003 3.00003 3.00002 3.00001 2.99998 2.99994 2.99978 2.99955 2.99861 2.99727 2.99203 2.984 2.95566 2.90235 2.75415 2.41463 1.7182 1.10194 0.898724 0.887541 0.901744 0.931301 0.972139 1.0192 1.0761 3.00003 3.00003 3.00002 3.00002 3 2.99995 2.99988 2.99961 2.99921 2.99767 2.99536 2.98693 2.97257 2.92745 2.82639 2.59495 2.05154 1.29899 0.977886 0.930375 0.937016 0.960502 0.997023 1.03883 1.08831 3.00003 3.00003 3.00003 3.00002 3.00001 2.99997 2.99992 2.99972 2.99944 2.99832 2.99668 2.99058 2.9804 2.94787 2.87538 2.70632 2.27117 1.55076 1.09088 0.97277 0.9704 0.987941 1.02017 1.06078 1.1047 3.00003 3.00003 3.00003 3.00002 3.00001 3 2.99994 2.99986 2.99954 2.99907 2.99729 2.99453 2.98504 2.96731 2.91657 2.79291 2.53323 1.91736 1.28292 1.04087 1.01191 1.01989 1.0449 1.08258 1.12275 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99997 2.99991 2.99968 2.99936 2.99809 2.99622 2.98937 2.9777 2.94143 2.85862 2.67471 2.19071 1.48445 1.12116 1.05177 1.05375 1.07284 1.10471 1.14261 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99999 2.99993 2.99984 2.99948 2.99895 2.99696 2.99381 2.98329 2.96237 2.90556 2.76259 2.46992 1.79791 1.27933 1.10502 1.08923 1.09987 1.12576 1.16126 3.00003 3.00003 3.00003 3.00003 3.00002 3.00002 3.00001 2.99996 2.9999 2.99965 2.99929 2.99787 2.99584 2.98808 2.97582 2.93524 2.84956 2.64949 2.16272 1.48635 1.18468 1.12882 1.13096 1.15046 1.18081 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99999 2.99992 2.99982 2.99944 2.99887 2.99674 2.99345 2.98215 2.96103 2.90092 2.75571 2.45276 1.7902 1.33119 1.17939 1.16316 1.17265 1.19684 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00002 3 2.99996 2.99989 2.99963 2.99926 2.99782 2.99574 2.98781 2.97549 2.93448 2.85099 2.64893 2.17867 1.53366 1.25948 1.20691 1.20389 1.21849 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99999 2.99992 2.99982 2.99945 2.99888 2.99679 2.99354 2.98235 2.96201 2.90366 2.76816 2.46923 1.86019 1.40263 1.25443 1.23704 1.24372 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00002 3 2.99997 2.99987 2.99972 2.99915 2.99829 2.99516 2.99015 2.97347 2.94286 2.85435 2.67326 2.21022 1.61736 1.3377 1.27621 1.27222 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99999 2.99993 2.99984 2.99948 2.99896 2.99698 2.99407 2.98334 2.96593 2.91149 2.79597 2.52738 1.96873 1.49704 1.32949 1.30481 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00002 3 2.99998 2.99989 2.99975 2.99924 2.99848 2.9957 2.99131 2.97648 2.94981 2.87196 2.71316 2.30375 1.72844 1.42389 1.34382 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 3 2.99994 2.99986 2.99955 2.99911 2.99741 2.99496 2.98586 2.97136 2.92575 2.82914 2.61346 2.10881 1.61322 1.40687 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99998 2.99993 2.99975 2.99948 2.99847 2.99702 2.99166 2.98305 2.95568 2.89697 2.76468 2.40907 1.85521 1.50297 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00002 3 2.99997 2.99986 2.9997 2.9991 2.99823 2.99496 2.98998 2.97266 2.94292 2.85301 2.67846 2.2204 1.7162 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99999 2.99995 2.99981 2.99959 2.9988 2.9976 2.99333 2.98644 2.96414 2.92077 2.8099 2.5522 2.02942 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99997 2.99992 2.99973 2.99944 2.9984 2.9968 2.99128 2.98175 2.9533 2.89051 2.75151 2.39718 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00002 3 2.99996 2.99989 2.99963 2.99925 2.99787 2.99574 2.9884 2.97596 2.93884 2.86157 2.67564 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99999 2.99995 2.9998 2.99959 2.99879 2.99763 2.99333 2.98675 2.96455 2.9235 2.81664 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99998 2.99993 2.99974 2.99947 2.99848 2.99697 2.99177 2.98288 2.95621 2.89813 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00002 3.00001 2.99996 2.9999 2.99966 2.99931 2.99805 2.9961 2.98941 2.97816 2.94433 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 3 2.99995 2.99986 2.99957 2.99913 2.99756 2.99517 2.98687 2.97303 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99998 2.99994 2.99978 2.99955 2.99868 2.99742 2.99282 2.98565 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99997 2.99992 2.99973 2.99944 2.99841 2.99683 2.99135 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00002 3 2.99996 2.9999 2.99967 2.99931 2.99809 2.99615 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 3 2.99995 2.99987 2.9996 2.99919 2.99776 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99999 2.99993 2.99984 2.99952 2.99902 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99998 2.99993 2.99976 2.99951 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00002 3.00001 2.99997 2.99991 2.99969 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99998 2.99994 2.99979 3 2.99999 2.99996 2.9999 2.9997 2.99941 2.99826 2.9965 2.99028 2.97869 2.94422 2.8607 2.67317 2.16973 1.35464 0.705576 0.495004 0.50856 0.522721 0.521476 0.523734 0.541388 0.586845 0.678921 0.863716 3 2.99999 2.99996 2.99992 2.99973 2.99948 2.99842 2.99694 2.99099 2.98201 2.94985 2.88768 2.72073 2.31509 1.5569 0.808319 0.537411 0.55087 0.564398 0.56765 0.575149 0.602564 0.663453 0.775436 0.97095 3 3 2.99997 2.99993 2.99978 2.99956 2.99868 2.99743 2.99246 2.98504 2.95788 2.90914 2.76601 2.44987 1.76473 0.924366 0.596373 0.601303 0.610983 0.618434 0.629371 0.661859 0.728759 0.838106 1.00694 3 3 2.99998 2.99994 2.99982 2.99964 2.99893 2.99792 2.99389 2.98788 2.96633 2.9249 2.81324 2.52833 1.96778 1.0363 0.659915 0.639542 0.652485 0.666178 0.682311 0.716525 0.780282 0.877867 1.02024 3 3 2.99998 2.99996 2.99986 2.99972 2.99919 2.99838 2.99549 2.99033 2.97451 2.93787 2.84911 2.60105 2.13357 1.22436 0.761595 0.668486 0.682381 0.701643 0.727348 0.764024 0.823905 0.907656 1.02644 3.00001 3 2.99999 2.99996 2.99991 2.99972 2.99945 2.99838 2.99676 2.99097 2.98052 2.94869 2.87383 2.70192 2.25162 1.48063 0.886298 0.706988 0.714747 0.734663 0.765105 0.803482 0.860895 0.936184 1.03449 3.00001 3 2.99999 2.99997 2.99993 2.99977 2.99955 2.99867 2.99741 2.99241 2.98493 2.95777 2.90821 2.76677 2.44606 1.7736 1.02658 0.764675 0.757804 0.773378 0.803017 0.839569 0.890598 0.959123 1.04466 3.00001 3 3 2.99998 2.99995 2.99983 2.99966 2.99898 2.99801 2.99422 2.98844 2.96778 2.9296 2.82214 2.56509 2.01542 1.18582 0.837653 0.800406 0.814103 0.840485 0.8769 0.920601 0.980202 1.05469 3.00001 3 3 2.99999 2.99995 2.9999 2.99969 2.99939 2.99822 2.99643 2.99015 2.97866 2.94452 2.86285 2.68084 2.19601 1.43295 0.951483 0.840609 0.848063 0.870368 0.905847 0.947481 0.999781 1.06484 3.00001 3.00001 3 2.99999 2.99996 2.99992 2.99976 2.99952 2.99859 2.99725 2.99201 2.98398 2.95563 2.90232 2.7541 2.41457 1.71808 1.10186 0.898663 0.887484 0.901688 0.931246 0.972088 1.01915 1.07606 3.00001 3.00001 3 2.99999 2.99998 2.99993 2.99986 2.99959 2.99919 2.99765 2.99534 2.9869 2.97255 2.92741 2.82637 2.59488 2.05147 1.29891 0.977829 0.930329 0.93697 0.960455 0.996976 1.03878 1.08827 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.9997 2.99942 2.9983 2.99666 2.99055 2.98037 2.94784 2.87535 2.70627 2.27114 1.55068 1.09082 0.972714 0.970348 0.987895 1.02013 1.06074 1.10466 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99952 2.99905 2.99727 2.99451 2.98501 2.96728 2.91653 2.79287 2.53316 1.91722 1.28282 1.04081 1.01185 1.01984 1.04485 1.08254 1.12271 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.99989 2.99966 2.99934 2.99807 2.9962 2.98934 2.97768 2.9414 2.85859 2.67465 2.19064 1.48436 1.1211 1.05172 1.0537 1.0728 1.10467 1.14257 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99981 2.99946 2.99892 2.99694 2.99378 2.98326 2.96234 2.90552 2.76255 2.46985 1.79779 1.27926 1.10497 1.08919 1.09982 1.12572 1.16122 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99962 2.99926 2.99785 2.99582 2.98806 2.9758 2.93521 2.84953 2.64943 2.16266 1.48627 1.18463 1.12877 1.13092 1.15042 1.18077 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.9999 2.9998 2.99942 2.99885 2.99672 2.99342 2.98212 2.961 2.90089 2.75567 2.45269 1.7901 1.33112 1.17934 1.16312 1.17261 1.1968 3.00001 3.00001 3.00001 3.00001 3.00001 3 2.99999 2.99998 2.99994 2.99987 2.99961 2.99924 2.9978 2.99572 2.98778 2.97547 2.93445 2.85096 2.64887 2.17861 1.53359 1.25943 1.20686 1.20385 1.21845 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.9999 2.9998 2.99942 2.99886 2.99677 2.99351 2.98233 2.96198 2.90362 2.76812 2.46915 1.86011 1.40256 1.25438 1.23699 1.24368 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99995 2.99985 2.9997 2.99913 2.99827 2.99514 2.99013 2.97345 2.94283 2.85432 2.67322 2.21015 1.61728 1.33764 1.27617 1.27218 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99981 2.99946 2.99894 2.99695 2.99405 2.98331 2.9659 2.91146 2.79594 2.5273 1.96865 1.49697 1.32945 1.30476 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99996 2.99987 2.99973 2.99922 2.99846 2.99567 2.99129 2.97646 2.94979 2.87192 2.71313 2.30364 1.72837 1.42384 1.34378 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99953 2.99909 2.99739 2.99494 2.98584 2.97134 2.92571 2.8291 2.61338 2.10869 1.61315 1.40683 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99991 2.99972 2.99946 2.99845 2.997 2.99163 2.98302 2.95565 2.89694 2.76463 2.409 1.85512 1.50292 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99995 2.99984 2.99968 2.99908 2.99821 2.99494 2.98996 2.97263 2.94289 2.85298 2.67841 2.22032 1.71614 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99993 2.99978 2.99957 2.99878 2.99758 2.99331 2.98642 2.96412 2.92074 2.80985 2.55213 2.02932 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.99971 2.99942 2.99838 2.99677 2.99125 2.98173 2.95327 2.89047 2.75146 2.39711 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 2.99999 2.99998 2.99993 2.99986 2.99961 2.99923 2.99785 2.99572 2.98838 2.97593 2.93881 2.86154 2.6756 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99993 2.99978 2.99957 2.99877 2.99761 2.99331 2.98673 2.96452 2.92347 2.81659 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.9999 2.99972 2.99945 2.99846 2.99695 2.99175 2.98286 2.95618 2.89809 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99964 2.99929 2.99803 2.99608 2.98938 2.97814 2.9443 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99955 2.99911 2.99754 2.99514 2.98685 2.973 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99992 2.99976 2.99953 2.99866 2.9974 2.9928 2.98563 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.99971 2.99942 2.99839 2.99681 2.99133 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99987 2.99964 2.99929 2.99806 2.99613 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99993 2.99985 2.99958 2.99916 2.99774 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99982 2.9995 2.999 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99991 2.99974 2.99949 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99967 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99992 2.99977 3 2.99999 2.99996 2.9999 2.9997 2.99941 2.99826 2.9965 2.99028 2.97869 2.94422 2.8607 2.67317 2.16973 1.35464 0.705574 0.495004 0.508559 0.522721 0.521476 0.523734 0.541388 0.586845 0.678921 0.863717 3 2.99999 2.99996 2.99992 2.99973 2.99948 2.99842 2.99694 2.99099 2.98201 2.94985 2.88768 2.72073 2.31509 1.55689 0.808317 0.537411 0.550869 0.564398 0.56765 0.575149 0.602564 0.663453 0.775436 0.970951 3 3 2.99997 2.99993 2.99978 2.99956 2.99868 2.99743 2.99246 2.98504 2.95788 2.90914 2.76601 2.44986 1.76472 0.924365 0.596372 0.601302 0.610983 0.618434 0.629371 0.661859 0.728759 0.838106 1.00694 3 3 2.99998 2.99994 2.99982 2.99964 2.99893 2.99792 2.99389 2.98788 2.96633 2.9249 2.81324 2.52833 1.96778 1.0363 0.659914 0.639542 0.652485 0.666178 0.682311 0.716525 0.780283 0.877867 1.02024 3 3 2.99998 2.99996 2.99986 2.99972 2.99919 2.99838 2.99549 2.99033 2.97451 2.93787 2.84911 2.60105 2.13357 1.22436 0.761594 0.668486 0.682381 0.701643 0.727348 0.764024 0.823905 0.907656 1.02644 3.00001 3 2.99999 2.99996 2.99991 2.99972 2.99945 2.99838 2.99676 2.99097 2.98052 2.94869 2.87383 2.70192 2.25162 1.48063 0.886297 0.706988 0.714747 0.734663 0.765105 0.803482 0.860895 0.936184 1.03449 3.00001 3 2.99999 2.99997 2.99993 2.99977 2.99955 2.99867 2.99741 2.99241 2.98493 2.95777 2.90821 2.76677 2.44605 1.7736 1.02658 0.764674 0.757804 0.773378 0.803017 0.839569 0.890598 0.959123 1.04466 3.00001 3 3 2.99998 2.99995 2.99983 2.99966 2.99898 2.99801 2.99422 2.98844 2.96778 2.9296 2.82214 2.56509 2.01542 1.18582 0.837652 0.800406 0.814103 0.840485 0.8769 0.920601 0.980202 1.05469 3.00001 3 3 2.99999 2.99995 2.9999 2.99969 2.99939 2.99822 2.99643 2.99015 2.97866 2.94452 2.86285 2.68084 2.19601 1.43295 0.951482 0.840609 0.848063 0.870368 0.905847 0.947481 0.999781 1.06484 3.00001 3.00001 3 2.99999 2.99996 2.99992 2.99976 2.99952 2.99859 2.99725 2.99201 2.98398 2.95563 2.90232 2.7541 2.41457 1.71807 1.10186 0.898663 0.887483 0.901688 0.931246 0.972088 1.01915 1.07606 3.00001 3.00001 3 2.99999 2.99998 2.99993 2.99986 2.99959 2.99919 2.99765 2.99534 2.9869 2.97255 2.92741 2.82637 2.59488 2.05147 1.29891 0.977829 0.930329 0.93697 0.960455 0.996976 1.03878 1.08827 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.9997 2.99942 2.9983 2.99666 2.99055 2.98037 2.94784 2.87535 2.70627 2.27113 1.55068 1.09081 0.972714 0.970348 0.987895 1.02013 1.06074 1.10466 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99952 2.99905 2.99726 2.99451 2.98501 2.96728 2.91653 2.79287 2.53316 1.91722 1.28282 1.04081 1.01185 1.01984 1.04485 1.08254 1.12271 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.99989 2.99966 2.99934 2.99807 2.9962 2.98934 2.97768 2.9414 2.85858 2.67465 2.19064 1.48436 1.1211 1.05172 1.0537 1.0728 1.10467 1.14257 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99981 2.99946 2.99892 2.99694 2.99378 2.98326 2.96234 2.90552 2.76255 2.46985 1.79779 1.27925 1.10497 1.08919 1.09982 1.12572 1.16122 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99962 2.99926 2.99785 2.99582 2.98806 2.9758 2.93521 2.84953 2.64943 2.16266 1.48627 1.18463 1.12877 1.13092 1.15042 1.18077 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.9999 2.9998 2.99942 2.99885 2.99672 2.99342 2.98212 2.961 2.90089 2.75567 2.45269 1.7901 1.33112 1.17934 1.16312 1.17261 1.1968 3.00001 3.00001 3.00001 3.00001 3.00001 3 2.99999 2.99998 2.99994 2.99987 2.99961 2.99924 2.9978 2.99572 2.98778 2.97547 2.93445 2.85096 2.64887 2.17861 1.53359 1.25942 1.20686 1.20385 1.21845 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.9999 2.9998 2.99942 2.99886 2.99677 2.99351 2.98233 2.96198 2.90362 2.76812 2.46915 1.8601 1.40256 1.25438 1.23699 1.24367 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99995 2.99985 2.9997 2.99913 2.99827 2.99514 2.99013 2.97345 2.94283 2.85432 2.67322 2.21014 1.61727 1.33764 1.27617 1.27218 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99981 2.99946 2.99894 2.99695 2.99405 2.98331 2.9659 2.91146 2.79594 2.5273 1.96865 1.49697 1.32945 1.30476 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99996 2.99987 2.99973 2.99922 2.99846 2.99567 2.99129 2.97646 2.94979 2.87192 2.71313 2.30364 1.72837 1.42384 1.34378 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99953 2.99909 2.99739 2.99494 2.98584 2.97134 2.92571 2.8291 2.61338 2.10869 1.61315 1.40683 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99991 2.99972 2.99946 2.99845 2.997 2.99163 2.98302 2.95565 2.89694 2.76463 2.409 1.85512 1.50292 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99995 2.99984 2.99968 2.99908 2.99821 2.99494 2.98996 2.97263 2.94289 2.85298 2.67841 2.22032 1.71614 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99993 2.99978 2.99957 2.99878 2.99758 2.99331 2.98642 2.96412 2.92074 2.80985 2.55213 2.02932 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.99971 2.99942 2.99838 2.99677 2.99125 2.98173 2.95327 2.89047 2.75146 2.39711 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 2.99999 2.99998 2.99993 2.99986 2.99961 2.99923 2.99785 2.99572 2.98838 2.97593 2.93881 2.86154 2.6756 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99993 2.99978 2.99957 2.99877 2.99761 2.99331 2.98673 2.96452 2.92347 2.81659 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.9999 2.99972 2.99945 2.99846 2.99695 2.99175 2.98286 2.95618 2.89809 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99964 2.99929 2.99803 2.99608 2.98938 2.97814 2.9443 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99955 2.99911 2.99754 2.99514 2.98685 2.973 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99992 2.99976 2.99953 2.99866 2.9974 2.9928 2.98563 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.99971 2.99942 2.99839 2.99681 2.99133 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99987 2.99964 2.99929 2.99806 2.99613 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99993 2.99985 2.99958 2.99916 2.99774 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99982 2.9995 2.999 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99991 2.99974 2.99949 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99967 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99992 2.99977 3 2.99999 2.99996 2.9999 2.9997 2.99941 2.99826 2.9965 2.99028 2.97869 2.94422 2.8607 2.67317 2.16973 1.35463 0.705574 0.495004 0.508559 0.522721 0.521476 0.523734 0.541388 0.586845 0.678921 0.863717 3 2.99999 2.99996 2.99992 2.99973 2.99948 2.99842 2.99694 2.99099 2.98201 2.94985 2.88768 2.72073 2.31509 1.55689 0.808317 0.537411 0.550869 0.564398 0.56765 0.575149 0.602564 0.663453 0.775436 0.970951 3 3 2.99997 2.99993 2.99978 2.99956 2.99868 2.99743 2.99246 2.98504 2.95788 2.90914 2.76601 2.44986 1.76472 0.924364 0.596372 0.601302 0.610983 0.618434 0.629371 0.661859 0.728759 0.838106 1.00694 3 3 2.99998 2.99994 2.99982 2.99964 2.99893 2.99792 2.99389 2.98788 2.96633 2.9249 2.81324 2.52833 1.96777 1.0363 0.659914 0.639542 0.652485 0.666178 0.682311 0.716525 0.780282 0.877867 1.02024 3 3 2.99998 2.99996 2.99986 2.99972 2.99919 2.99838 2.99549 2.99033 2.97451 2.93787 2.84911 2.60105 2.13357 1.22436 0.761593 0.668486 0.682381 0.701643 0.727348 0.764024 0.823905 0.907656 1.02644 3.00001 3 2.99999 2.99996 2.99991 2.99972 2.99945 2.99838 2.99676 2.99097 2.98052 2.94869 2.87383 2.70192 2.25162 1.48063 0.886296 0.706988 0.714747 0.734663 0.765105 0.803482 0.860895 0.936184 1.03449 3.00001 3 2.99999 2.99997 2.99993 2.99977 2.99955 2.99867 2.99741 2.99241 2.98493 2.95777 2.90821 2.76677 2.44605 1.77359 1.02658 0.764674 0.757804 0.773378 0.803017 0.839569 0.890597 0.959123 1.04466 3.00001 3 3 2.99998 2.99995 2.99983 2.99966 2.99898 2.99801 2.99422 2.98844 2.96778 2.9296 2.82214 2.56509 2.01541 1.18582 0.837652 0.800406 0.814103 0.840485 0.8769 0.920601 0.980202 1.05469 3.00001 3 3 2.99999 2.99995 2.9999 2.99969 2.99939 2.99822 2.99643 2.99015 2.97866 2.94452 2.86285 2.68084 2.19601 1.43295 0.951482 0.840609 0.848063 0.870368 0.905847 0.947481 0.999781 1.06484 3.00001 3.00001 3 2.99999 2.99996 2.99992 2.99976 2.99952 2.99859 2.99725 2.99201 2.98398 2.95563 2.90232 2.7541 2.41457 1.71807 1.10186 0.898663 0.887483 0.901688 0.931246 0.972088 1.01915 1.07606 3.00001 3.00001 3 2.99999 2.99998 2.99993 2.99986 2.99959 2.99919 2.99765 2.99534 2.9869 2.97255 2.92741 2.82637 2.59488 2.05147 1.29891 0.977829 0.930329 0.93697 0.960455 0.996976 1.03878 1.08827 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.9997 2.99942 2.9983 2.99666 2.99055 2.98037 2.94784 2.87535 2.70627 2.27113 1.55068 1.09081 0.972714 0.970348 0.987895 1.02013 1.06074 1.10466 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99952 2.99905 2.99726 2.99451 2.98501 2.96728 2.91653 2.79287 2.53315 1.91722 1.28282 1.04081 1.01185 1.01984 1.04485 1.08254 1.12271 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.99989 2.99966 2.99934 2.99807 2.9962 2.98934 2.97768 2.9414 2.85858 2.67465 2.19064 1.48436 1.1211 1.05172 1.0537 1.0728 1.10467 1.14257 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99981 2.99946 2.99892 2.99694 2.99378 2.98326 2.96234 2.90552 2.76255 2.46985 1.79779 1.27925 1.10497 1.08919 1.09982 1.12572 1.16122 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99962 2.99926 2.99785 2.99582 2.98806 2.9758 2.93521 2.84953 2.64943 2.16266 1.48627 1.18463 1.12877 1.13092 1.15042 1.18077 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.9999 2.9998 2.99942 2.99885 2.99672 2.99342 2.98212 2.961 2.90089 2.75567 2.45269 1.7901 1.33112 1.17934 1.16312 1.17261 1.1968 3.00001 3.00001 3.00001 3.00001 3.00001 3 2.99999 2.99998 2.99994 2.99987 2.99961 2.99924 2.9978 2.99572 2.98778 2.97547 2.93445 2.85096 2.64887 2.17861 1.53358 1.25942 1.20686 1.20385 1.21845 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.9999 2.9998 2.99942 2.99886 2.99677 2.99351 2.98233 2.96198 2.90362 2.76812 2.46915 1.8601 1.40256 1.25438 1.23699 1.24367 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99995 2.99985 2.9997 2.99913 2.99827 2.99514 2.99013 2.97345 2.94283 2.85432 2.67322 2.21014 1.61727 1.33764 1.27617 1.27218 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99981 2.99946 2.99894 2.99695 2.99405 2.98331 2.9659 2.91146 2.79594 2.5273 1.96865 1.49697 1.32945 1.30476 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99996 2.99987 2.99973 2.99922 2.99846 2.99567 2.99129 2.97646 2.94979 2.87192 2.71312 2.30364 1.72837 1.42384 1.34378 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99953 2.99909 2.99739 2.99494 2.98584 2.97134 2.92571 2.8291 2.61338 2.10869 1.61315 1.40683 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99991 2.99972 2.99946 2.99845 2.997 2.99163 2.98302 2.95565 2.89694 2.76463 2.409 1.85512 1.50292 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99995 2.99984 2.99968 2.99908 2.99821 2.99494 2.98996 2.97263 2.94289 2.85298 2.67841 2.22032 1.71614 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99993 2.99978 2.99957 2.99878 2.99758 2.99331 2.98642 2.96412 2.92074 2.80985 2.55213 2.02931 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.99971 2.99942 2.99838 2.99677 2.99125 2.98173 2.95327 2.89047 2.75146 2.39711 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 2.99999 2.99998 2.99993 2.99986 2.99961 2.99923 2.99785 2.99572 2.98838 2.97593 2.93881 2.86154 2.6756 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99993 2.99978 2.99957 2.99877 2.99761 2.99331 2.98673 2.96452 2.92347 2.81659 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.9999 2.99972 2.99945 2.99846 2.99695 2.99175 2.98286 2.95618 2.89809 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99964 2.99929 2.99803 2.99608 2.98938 2.97814 2.9443 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99955 2.99911 2.99754 2.99514 2.98685 2.973 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99992 2.99976 2.99953 2.99866 2.9974 2.9928 2.98563 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.99971 2.99942 2.99839 2.99681 2.99133 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99987 2.99964 2.99929 2.99806 2.99613 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99993 2.99985 2.99958 2.99916 2.99774 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99982 2.9995 2.999 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99991 2.99974 2.99949 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99967 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99992 2.99977 3 2.99999 2.99996 2.9999 2.9997 2.99941 2.99826 2.9965 2.99028 2.97869 2.94422 2.8607 2.67317 2.16973 1.35463 0.705573 0.495003 0.508559 0.522721 0.521476 0.523734 0.541388 0.586845 0.678921 0.863717 3 2.99999 2.99996 2.99992 2.99973 2.99948 2.99842 2.99694 2.99099 2.98201 2.94985 2.88768 2.72073 2.31509 1.55689 0.808316 0.537411 0.550869 0.564398 0.56765 0.575149 0.602564 0.663453 0.775436 0.970951 3 3 2.99997 2.99993 2.99978 2.99956 2.99868 2.99743 2.99246 2.98504 2.95788 2.90914 2.76601 2.44986 1.76472 0.924364 0.596372 0.601302 0.610983 0.618434 0.62937 0.661859 0.728759 0.838106 1.00694 3 3 2.99998 2.99994 2.99982 2.99964 2.99893 2.99792 2.99389 2.98788 2.96633 2.9249 2.81324 2.52833 1.96777 1.0363 0.659913 0.639542 0.652485 0.666178 0.682311 0.716525 0.780282 0.877867 1.02024 3 3 2.99998 2.99996 2.99986 2.99972 2.99919 2.99838 2.99549 2.99033 2.97451 2.93787 2.84911 2.60105 2.13357 1.22436 0.761593 0.668486 0.682381 0.701643 0.727347 0.764024 0.823905 0.907656 1.02644 3.00001 3 2.99999 2.99996 2.99991 2.99972 2.99945 2.99838 2.99676 2.99097 2.98052 2.94869 2.87383 2.70192 2.25162 1.48063 0.886296 0.706987 0.714747 0.734663 0.765105 0.803482 0.860895 0.936183 1.03449 3.00001 3 2.99999 2.99997 2.99993 2.99977 2.99955 2.99867 2.99741 2.99241 2.98493 2.95777 2.90821 2.76677 2.44605 1.77359 1.02658 0.764674 0.757803 0.773378 0.803017 0.839568 0.890597 0.959122 1.04466 3.00001 3 3 2.99998 2.99995 2.99983 2.99966 2.99898 2.99801 2.99422 2.98844 2.96778 2.9296 2.82214 2.56509 2.01541 1.18582 0.837652 0.800406 0.814102 0.840485 0.8769 0.920601 0.980202 1.05469 3.00001 3 3 2.99999 2.99995 2.9999 2.99969 2.99939 2.99822 2.99643 2.99015 2.97866 2.94452 2.86285 2.68084 2.19601 1.43295 0.951481 0.840609 0.848063 0.870368 0.905846 0.947481 0.999781 1.06484 3.00001 3.00001 3 2.99999 2.99996 2.99992 2.99976 2.99952 2.99859 2.99725 2.99201 2.98398 2.95563 2.90232 2.7541 2.41457 1.71807 1.10186 0.898662 0.887483 0.901688 0.931246 0.972088 1.01915 1.07606 3.00001 3.00001 3 2.99999 2.99998 2.99993 2.99986 2.99959 2.99919 2.99765 2.99534 2.9869 2.97255 2.92741 2.82637 2.59488 2.05147 1.29891 0.977828 0.930329 0.93697 0.960455 0.996976 1.03878 1.08827 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.9997 2.99942 2.9983 2.99666 2.99055 2.98037 2.94784 2.87535 2.70627 2.27113 1.55068 1.09081 0.972714 0.970348 0.987894 1.02013 1.06074 1.10466 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99952 2.99905 2.99726 2.99451 2.98501 2.96728 2.91653 2.79287 2.53315 1.91721 1.28282 1.04081 1.01185 1.01984 1.04485 1.08254 1.12271 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.99989 2.99966 2.99934 2.99807 2.9962 2.98934 2.97768 2.9414 2.85858 2.67464 2.19064 1.48436 1.1211 1.05172 1.0537 1.07279 1.10467 1.14257 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99981 2.99946 2.99892 2.99694 2.99378 2.98326 2.96234 2.90552 2.76255 2.46985 1.79779 1.27925 1.10497 1.08919 1.09982 1.12572 1.16122 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99962 2.99926 2.99785 2.99582 2.98806 2.9758 2.93521 2.84953 2.64942 2.16266 1.48627 1.18463 1.12877 1.13092 1.15042 1.18077 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.9999 2.9998 2.99942 2.99885 2.99672 2.99342 2.98212 2.961 2.90089 2.75567 2.45269 1.7901 1.33112 1.17934 1.16312 1.17261 1.1968 3.00001 3.00001 3.00001 3.00001 3.00001 3 2.99999 2.99998 2.99994 2.99987 2.99961 2.99924 2.9978 2.99572 2.98778 2.97547 2.93445 2.85096 2.64887 2.17861 1.53358 1.25942 1.20686 1.20385 1.21845 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.9999 2.9998 2.99942 2.99886 2.99677 2.99351 2.98233 2.96198 2.90362 2.76812 2.46915 1.8601 1.40256 1.25438 1.23699 1.24367 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99995 2.99985 2.9997 2.99913 2.99827 2.99514 2.99013 2.97345 2.94283 2.85432 2.67322 2.21014 1.61727 1.33764 1.27617 1.27218 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99981 2.99946 2.99894 2.99695 2.99405 2.98331 2.9659 2.91146 2.79594 2.5273 1.96865 1.49697 1.32945 1.30476 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99996 2.99987 2.99973 2.99922 2.99846 2.99567 2.99129 2.97646 2.94979 2.87192 2.71312 2.30364 1.72837 1.42384 1.34378 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99953 2.99909 2.99739 2.99494 2.98584 2.97134 2.92571 2.8291 2.61338 2.10869 1.61315 1.40683 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99991 2.99972 2.99946 2.99845 2.997 2.99163 2.98302 2.95565 2.89694 2.76463 2.409 1.85512 1.50292 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99995 2.99984 2.99968 2.99908 2.99821 2.99494 2.98996 2.97263 2.94289 2.85298 2.67841 2.22032 1.71614 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99993 2.99978 2.99957 2.99878 2.99758 2.99331 2.98642 2.96412 2.92074 2.80985 2.55213 2.02931 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.99971 2.99942 2.99838 2.99677 2.99125 2.98173 2.95327 2.89047 2.75146 2.39711 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 2.99999 2.99998 2.99993 2.99986 2.99961 2.99923 2.99785 2.99572 2.98838 2.97593 2.93881 2.86154 2.6756 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99993 2.99978 2.99957 2.99877 2.99761 2.99331 2.98673 2.96452 2.92347 2.81659 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.9999 2.99972 2.99945 2.99846 2.99695 2.99175 2.98286 2.95618 2.89809 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99964 2.99929 2.99803 2.99608 2.98938 2.97814 2.9443 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99955 2.99911 2.99754 2.99514 2.98685 2.973 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99992 2.99976 2.99953 2.99866 2.9974 2.9928 2.98563 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.99971 2.99942 2.99839 2.99681 2.99133 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99987 2.99964 2.99929 2.99806 2.99613 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99993 2.99985 2.99958 2.99916 2.99774 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99982 2.9995 2.999 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99991 2.99974 2.99949 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99967 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99992 2.99977 3 2.99999 2.99996 2.9999 2.9997 2.99941 2.99826 2.9965 2.99028 2.97869 2.94422 2.8607 2.67317 2.16973 1.35463 0.705574 0.495003 0.508559 0.522721 0.521476 0.523734 0.541388 0.586845 0.678921 0.863717 3 2.99999 2.99996 2.99992 2.99973 2.99948 2.99842 2.99694 2.99099 2.98201 2.94985 2.88768 2.72073 2.31509 1.55689 0.808317 0.537411 0.550869 0.564398 0.56765 0.575149 0.602564 0.663453 0.775436 0.970951 3 3 2.99997 2.99993 2.99978 2.99956 2.99868 2.99743 2.99246 2.98504 2.95788 2.90914 2.76601 2.44986 1.76472 0.924364 0.596372 0.601302 0.610983 0.618434 0.629371 0.661859 0.728759 0.838106 1.00694 3 3 2.99998 2.99994 2.99982 2.99964 2.99893 2.99792 2.99389 2.98788 2.96633 2.9249 2.81324 2.52833 1.96778 1.0363 0.659913 0.639542 0.652485 0.666178 0.682311 0.716525 0.780282 0.877867 1.02024 3 3 2.99998 2.99996 2.99986 2.99972 2.99919 2.99838 2.99549 2.99033 2.97451 2.93787 2.84911 2.60105 2.13357 1.22436 0.761593 0.668486 0.682381 0.701643 0.727347 0.764024 0.823905 0.907656 1.02644 3.00001 3 2.99999 2.99996 2.99991 2.99972 2.99945 2.99838 2.99676 2.99097 2.98052 2.94869 2.87383 2.70192 2.25162 1.48063 0.886296 0.706987 0.714747 0.734663 0.765105 0.803482 0.860895 0.936183 1.03449 3.00001 3 2.99999 2.99997 2.99993 2.99977 2.99955 2.99867 2.99741 2.99241 2.98493 2.95777 2.90821 2.76677 2.44605 1.77359 1.02658 0.764674 0.757804 0.773378 0.803017 0.839569 0.890597 0.959122 1.04466 3.00001 3 3 2.99998 2.99995 2.99983 2.99966 2.99898 2.99801 2.99422 2.98844 2.96778 2.9296 2.82214 2.56509 2.01541 1.18582 0.837652 0.800406 0.814102 0.840485 0.8769 0.920601 0.980202 1.05469 3.00001 3 3 2.99999 2.99995 2.9999 2.99969 2.99939 2.99822 2.99643 2.99015 2.97866 2.94452 2.86285 2.68084 2.19601 1.43295 0.951482 0.840609 0.848063 0.870368 0.905847 0.947481 0.999781 1.06484 3.00001 3.00001 3 2.99999 2.99996 2.99992 2.99976 2.99952 2.99859 2.99725 2.99201 2.98398 2.95563 2.90232 2.7541 2.41457 1.71807 1.10186 0.898662 0.887483 0.901688 0.931246 0.972088 1.01915 1.07606 3.00001 3.00001 3 2.99999 2.99998 2.99993 2.99986 2.99959 2.99919 2.99765 2.99534 2.9869 2.97255 2.92741 2.82637 2.59488 2.05147 1.29891 0.977829 0.930329 0.93697 0.960455 0.996976 1.03878 1.08827 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.9997 2.99942 2.9983 2.99666 2.99055 2.98037 2.94784 2.87535 2.70627 2.27113 1.55068 1.09081 0.972714 0.970348 0.987895 1.02013 1.06074 1.10466 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99952 2.99905 2.99726 2.99451 2.98501 2.96728 2.91653 2.79287 2.53315 1.91722 1.28282 1.04081 1.01185 1.01984 1.04485 1.08254 1.12271 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.99989 2.99966 2.99934 2.99807 2.9962 2.98934 2.97768 2.9414 2.85858 2.67465 2.19064 1.48436 1.1211 1.05172 1.0537 1.0728 1.10467 1.14257 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99981 2.99946 2.99892 2.99694 2.99378 2.98326 2.96234 2.90552 2.76255 2.46985 1.79779 1.27925 1.10497 1.08919 1.09982 1.12572 1.16122 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99962 2.99926 2.99785 2.99582 2.98806 2.9758 2.93521 2.84953 2.64943 2.16266 1.48627 1.18463 1.12877 1.13092 1.15042 1.18077 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.9999 2.9998 2.99942 2.99885 2.99672 2.99342 2.98212 2.961 2.90089 2.75567 2.45269 1.7901 1.33112 1.17934 1.16312 1.17261 1.1968 3.00001 3.00001 3.00001 3.00001 3.00001 3 2.99999 2.99998 2.99994 2.99987 2.99961 2.99924 2.9978 2.99572 2.98778 2.97547 2.93445 2.85096 2.64887 2.17861 1.53358 1.25942 1.20686 1.20385 1.21845 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.9999 2.9998 2.99942 2.99886 2.99677 2.99351 2.98233 2.96198 2.90362 2.76812 2.46915 1.8601 1.40256 1.25438 1.23699 1.24367 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99995 2.99985 2.9997 2.99913 2.99827 2.99514 2.99013 2.97345 2.94283 2.85432 2.67322 2.21014 1.61727 1.33764 1.27617 1.27218 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99981 2.99946 2.99894 2.99695 2.99405 2.98331 2.9659 2.91146 2.79594 2.5273 1.96865 1.49697 1.32945 1.30476 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99996 2.99987 2.99973 2.99922 2.99846 2.99567 2.99129 2.97646 2.94979 2.87192 2.71313 2.30364 1.72837 1.42384 1.34378 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99953 2.99909 2.99739 2.99494 2.98584 2.97134 2.92571 2.8291 2.61338 2.10869 1.61315 1.40683 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99991 2.99972 2.99946 2.99845 2.997 2.99163 2.98302 2.95565 2.89694 2.76463 2.409 1.85512 1.50292 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99995 2.99984 2.99968 2.99908 2.99821 2.99494 2.98996 2.97263 2.94289 2.85298 2.67841 2.22032 1.71614 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99993 2.99978 2.99957 2.99878 2.99758 2.99331 2.98642 2.96412 2.92074 2.80985 2.55213 2.02931 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.99971 2.99942 2.99838 2.99677 2.99125 2.98173 2.95327 2.89047 2.75146 2.39711 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 2.99999 2.99998 2.99993 2.99986 2.99961 2.99923 2.99785 2.99572 2.98838 2.97593 2.93881 2.86154 2.6756 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99993 2.99978 2.99957 2.99877 2.99761 2.99331 2.98673 2.96452 2.92347 2.81659 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.9999 2.99972 2.99945 2.99846 2.99695 2.99175 2.98286 2.95618 2.89809 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99964 2.99929 2.99803 2.99608 2.98938 2.97814 2.9443 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99955 2.99911 2.99754 2.99514 2.98685 2.973 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99992 2.99976 2.99953 2.99866 2.9974 2.9928 2.98563 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.99971 2.99942 2.99839 2.99681 2.99133 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99987 2.99964 2.99929 2.99806 2.99613 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99993 2.99985 2.99958 2.99916 2.99774 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99982 2.9995 2.999 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99991 2.99974 2.99949 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99967 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99992 2.99977 3 2.99999 2.99996 2.9999 2.9997 2.99941 2.99826 2.9965 2.99028 2.97869 2.94422 2.8607 2.67317 2.16973 1.35463 0.705574 0.495004 0.508559 0.522721 0.521476 0.523734 0.541388 0.586845 0.678921 0.863717 3 2.99999 2.99996 2.99992 2.99973 2.99948 2.99842 2.99694 2.99099 2.98201 2.94985 2.88768 2.72073 2.31509 1.55689 0.808317 0.537411 0.550869 0.564398 0.56765 0.575149 0.602564 0.663453 0.775436 0.970951 3 3 2.99997 2.99993 2.99978 2.99956 2.99868 2.99743 2.99246 2.98504 2.95788 2.90914 2.76601 2.44986 1.76472 0.924364 0.596372 0.601302 0.610983 0.618434 0.629371 0.661859 0.728759 0.838106 1.00694 3 3 2.99998 2.99994 2.99982 2.99964 2.99893 2.99792 2.99389 2.98788 2.96633 2.9249 2.81324 2.52833 1.96778 1.0363 0.659914 0.639542 0.652485 0.666178 0.682311 0.716525 0.780282 0.877867 1.02024 3 3 2.99998 2.99996 2.99986 2.99972 2.99919 2.99838 2.99549 2.99033 2.97451 2.93787 2.84911 2.60105 2.13357 1.22436 0.761593 0.668486 0.682381 0.701643 0.727348 0.764024 0.823905 0.907656 1.02644 3.00001 3 2.99999 2.99996 2.99991 2.99972 2.99945 2.99838 2.99676 2.99097 2.98052 2.94869 2.87383 2.70192 2.25162 1.48063 0.886296 0.706988 0.714747 0.734663 0.765105 0.803482 0.860895 0.936184 1.03449 3.00001 3 2.99999 2.99997 2.99993 2.99977 2.99955 2.99867 2.99741 2.99241 2.98493 2.95777 2.90821 2.76677 2.44605 1.77359 1.02658 0.764674 0.757804 0.773378 0.803017 0.839569 0.890597 0.959123 1.04466 3.00001 3 3 2.99998 2.99995 2.99983 2.99966 2.99898 2.99801 2.99422 2.98844 2.96778 2.9296 2.82214 2.56509 2.01541 1.18582 0.837652 0.800406 0.814103 0.840485 0.8769 0.920601 0.980202 1.05469 3.00001 3 3 2.99999 2.99995 2.9999 2.99969 2.99939 2.99822 2.99643 2.99015 2.97866 2.94452 2.86285 2.68084 2.19601 1.43295 0.951482 0.840609 0.848063 0.870368 0.905847 0.947481 0.999781 1.06484 3.00001 3.00001 3 2.99999 2.99996 2.99992 2.99976 2.99952 2.99859 2.99725 2.99201 2.98398 2.95563 2.90232 2.7541 2.41457 1.71807 1.10186 0.898663 0.887483 0.901688 0.931246 0.972088 1.01915 1.07606 3.00001 3.00001 3 2.99999 2.99998 2.99993 2.99986 2.99959 2.99919 2.99765 2.99534 2.9869 2.97255 2.92741 2.82637 2.59488 2.05147 1.29891 0.977829 0.930329 0.93697 0.960455 0.996976 1.03878 1.08827 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.9997 2.99942 2.9983 2.99666 2.99055 2.98037 2.94784 2.87535 2.70627 2.27113 1.55068 1.09081 0.972714 0.970348 0.987895 1.02013 1.06074 1.10466 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99952 2.99905 2.99726 2.99451 2.98501 2.96728 2.91653 2.79287 2.53315 1.91722 1.28282 1.04081 1.01185 1.01984 1.04485 1.08254 1.12271 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.99989 2.99966 2.99934 2.99807 2.9962 2.98934 2.97768 2.9414 2.85858 2.67465 2.19064 1.48436 1.1211 1.05172 1.0537 1.0728 1.10467 1.14257 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99981 2.99946 2.99892 2.99694 2.99378 2.98326 2.96234 2.90552 2.76255 2.46985 1.79779 1.27925 1.10497 1.08919 1.09982 1.12572 1.16122 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99962 2.99926 2.99785 2.99582 2.98806 2.9758 2.93521 2.84953 2.64943 2.16266 1.48627 1.18463 1.12877 1.13092 1.15042 1.18077 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.9999 2.9998 2.99942 2.99885 2.99672 2.99342 2.98212 2.961 2.90089 2.75567 2.45269 1.7901 1.33112 1.17934 1.16312 1.17261 1.1968 3.00001 3.00001 3.00001 3.00001 3.00001 3 2.99999 2.99998 2.99994 2.99987 2.99961 2.99924 2.9978 2.99572 2.98778 2.97547 2.93445 2.85096 2.64887 2.17861 1.53358 1.25942 1.20686 1.20385 1.21845 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.9999 2.9998 2.99942 2.99886 2.99677 2.99351 2.98233 2.96198 2.90362 2.76812 2.46915 1.8601 1.40256 1.25438 1.23699 1.24367 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99995 2.99985 2.9997 2.99913 2.99827 2.99514 2.99013 2.97345 2.94283 2.85432 2.67322 2.21014 1.61727 1.33764 1.27617 1.27218 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99981 2.99946 2.99894 2.99695 2.99405 2.98331 2.9659 2.91146 2.79594 2.5273 1.96865 1.49697 1.32945 1.30476 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99996 2.99987 2.99973 2.99922 2.99846 2.99567 2.99129 2.97646 2.94979 2.87192 2.71313 2.30364 1.72837 1.42384 1.34378 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99953 2.99909 2.99739 2.99494 2.98584 2.97134 2.92571 2.8291 2.61338 2.10869 1.61315 1.40683 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99991 2.99972 2.99946 2.99845 2.997 2.99163 2.98302 2.95565 2.89694 2.76463 2.409 1.85512 1.50292 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99995 2.99984 2.99968 2.99908 2.99821 2.99494 2.98996 2.97263 2.94289 2.85298 2.67841 2.22032 1.71614 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99993 2.99978 2.99957 2.99878 2.99758 2.99331 2.98642 2.96412 2.92074 2.80985 2.55213 2.02931 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.99971 2.99942 2.99838 2.99677 2.99125 2.98173 2.95327 2.89047 2.75146 2.39711 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 2.99999 2.99998 2.99993 2.99986 2.99961 2.99923 2.99785 2.99572 2.98838 2.97593 2.93881 2.86154 2.6756 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99993 2.99978 2.99957 2.99877 2.99761 2.99331 2.98673 2.96452 2.92347 2.81659 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.9999 2.99972 2.99945 2.99846 2.99695 2.99175 2.98286 2.95618 2.89809 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99964 2.99929 2.99803 2.99608 2.98938 2.97814 2.9443 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99955 2.99911 2.99754 2.99514 2.98685 2.973 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99992 2.99976 2.99953 2.99866 2.9974 2.9928 2.98563 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.99971 2.99942 2.99839 2.99681 2.99133 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99987 2.99964 2.99929 2.99806 2.99613 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99993 2.99985 2.99958 2.99916 2.99774 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99982 2.9995 2.999 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99991 2.99974 2.99949 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99967 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99992 2.99977 3 2.99999 2.99996 2.9999 2.9997 2.99941 2.99826 2.9965 2.99028 2.97869 2.94422 2.8607 2.67317 2.16973 1.35464 0.705574 0.495004 0.508559 0.522721 0.521476 0.523734 0.541388 0.586845 0.678921 0.863717 3 2.99999 2.99996 2.99992 2.99973 2.99948 2.99842 2.99694 2.99099 2.98201 2.94985 2.88768 2.72073 2.31509 1.55689 0.808317 0.537411 0.550869 0.564398 0.56765 0.575149 0.602564 0.663453 0.775436 0.970951 3 3 2.99997 2.99993 2.99978 2.99956 2.99868 2.99743 2.99246 2.98504 2.95788 2.90914 2.76601 2.44986 1.76472 0.924365 0.596372 0.601302 0.610983 0.618434 0.629371 0.661859 0.728759 0.838106 1.00694 3 3 2.99998 2.99994 2.99982 2.99964 2.99893 2.99792 2.99389 2.98788 2.96633 2.9249 2.81324 2.52833 1.96778 1.0363 0.659914 0.639542 0.652485 0.666178 0.682311 0.716525 0.780283 0.877867 1.02024 3 3 2.99998 2.99996 2.99986 2.99972 2.99919 2.99838 2.99549 2.99033 2.97451 2.93787 2.84911 2.60105 2.13357 1.22436 0.761594 0.668486 0.682381 0.701643 0.727348 0.764024 0.823905 0.907656 1.02644 3.00001 3 2.99999 2.99996 2.99991 2.99972 2.99945 2.99838 2.99676 2.99097 2.98052 2.94869 2.87383 2.70192 2.25162 1.48063 0.886297 0.706988 0.714747 0.734663 0.765105 0.803482 0.860895 0.936184 1.03449 3.00001 3 2.99999 2.99997 2.99993 2.99977 2.99955 2.99867 2.99741 2.99241 2.98493 2.95777 2.90821 2.76677 2.44605 1.7736 1.02658 0.764674 0.757804 0.773378 0.803017 0.839569 0.890598 0.959123 1.04466 3.00001 3 3 2.99998 2.99995 2.99983 2.99966 2.99898 2.99801 2.99422 2.98844 2.96778 2.9296 2.82214 2.56509 2.01542 1.18582 0.837652 0.800406 0.814103 0.840485 0.8769 0.920601 0.980202 1.05469 3.00001 3 3 2.99999 2.99995 2.9999 2.99969 2.99939 2.99822 2.99643 2.99015 2.97866 2.94452 2.86285 2.68084 2.19601 1.43295 0.951482 0.840609 0.848063 0.870368 0.905847 0.947481 0.999781 1.06484 3.00001 3.00001 3 2.99999 2.99996 2.99992 2.99976 2.99952 2.99859 2.99725 2.99201 2.98398 2.95563 2.90232 2.7541 2.41457 1.71807 1.10186 0.898663 0.887483 0.901688 0.931246 0.972088 1.01915 1.07606 3.00001 3.00001 3 2.99999 2.99998 2.99993 2.99986 2.99959 2.99919 2.99765 2.99534 2.9869 2.97255 2.92741 2.82637 2.59488 2.05147 1.29891 0.977829 0.930329 0.93697 0.960455 0.996976 1.03878 1.08827 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.9997 2.99942 2.9983 2.99666 2.99055 2.98037 2.94784 2.87535 2.70627 2.27113 1.55068 1.09081 0.972714 0.970348 0.987895 1.02013 1.06074 1.10466 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99952 2.99905 2.99726 2.99451 2.98501 2.96728 2.91653 2.79287 2.53316 1.91722 1.28282 1.04081 1.01185 1.01984 1.04485 1.08254 1.12271 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.99989 2.99966 2.99934 2.99807 2.9962 2.98934 2.97768 2.9414 2.85858 2.67465 2.19064 1.48436 1.1211 1.05172 1.0537 1.0728 1.10467 1.14257 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99981 2.99946 2.99892 2.99694 2.99378 2.98326 2.96234 2.90552 2.76255 2.46985 1.79779 1.27925 1.10497 1.08919 1.09982 1.12572 1.16122 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99962 2.99926 2.99785 2.99582 2.98806 2.9758 2.93521 2.84953 2.64943 2.16266 1.48627 1.18463 1.12877 1.13092 1.15042 1.18077 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.9999 2.9998 2.99942 2.99885 2.99672 2.99342 2.98212 2.961 2.90089 2.75567 2.45269 1.7901 1.33112 1.17934 1.16312 1.17261 1.1968 3.00001 3.00001 3.00001 3.00001 3.00001 3 2.99999 2.99998 2.99994 2.99987 2.99961 2.99924 2.9978 2.99572 2.98778 2.97547 2.93445 2.85096 2.64887 2.17861 1.53359 1.25942 1.20686 1.20385 1.21845 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.9999 2.9998 2.99942 2.99886 2.99677 2.99351 2.98233 2.96198 2.90362 2.76812 2.46915 1.8601 1.40256 1.25438 1.23699 1.24367 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99995 2.99985 2.9997 2.99913 2.99827 2.99514 2.99013 2.97345 2.94283 2.85432 2.67322 2.21014 1.61727 1.33764 1.27617 1.27218 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99981 2.99946 2.99894 2.99695 2.99405 2.98331 2.9659 2.91146 2.79594 2.5273 1.96865 1.49697 1.32945 1.30476 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99996 2.99987 2.99973 2.99922 2.99846 2.99567 2.99129 2.97646 2.94979 2.87192 2.71313 2.30364 1.72837 1.42384 1.34378 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99953 2.99909 2.99739 2.99494 2.98584 2.97134 2.92571 2.8291 2.61338 2.10869 1.61315 1.40683 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99991 2.99972 2.99946 2.99845 2.997 2.99163 2.98302 2.95565 2.89694 2.76463 2.409 1.85512 1.50292 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99995 2.99984 2.99968 2.99908 2.99821 2.99494 2.98996 2.97263 2.94289 2.85298 2.67841 2.22032 1.71614 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99993 2.99978 2.99957 2.99878 2.99758 2.99331 2.98642 2.96412 2.92074 2.80985 2.55213 2.02932 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.99971 2.99942 2.99838 2.99677 2.99125 2.98173 2.95327 2.89047 2.75146 2.39711 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 2.99999 2.99998 2.99993 2.99986 2.99961 2.99923 2.99785 2.99572 2.98838 2.97593 2.93881 2.86154 2.6756 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99993 2.99978 2.99957 2.99877 2.99761 2.99331 2.98673 2.96452 2.92347 2.81659 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.9999 2.99972 2.99945 2.99846 2.99695 2.99175 2.98286 2.95618 2.89809 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99964 2.99929 2.99803 2.99608 2.98938 2.97814 2.9443 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99955 2.99911 2.99754 2.99514 2.98685 2.973 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99992 2.99976 2.99953 2.99866 2.9974 2.9928 2.98563 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.99971 2.99942 2.99839 2.99681 2.99133 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99987 2.99964 2.99929 2.99806 2.99613 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99993 2.99985 2.99958 2.99916 2.99774 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99982 2.9995 2.999 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99991 2.99974 2.99949 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99967 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99992 2.99977 3 2.99999 2.99996 2.9999 2.9997 2.99941 2.99826 2.9965 2.99028 2.97869 2.94422 2.8607 2.67317 2.16973 1.35464 0.705576 0.495004 0.50856 0.522721 0.521476 0.523734 0.541388 0.586845 0.678921 0.863716 3 2.99999 2.99996 2.99992 2.99973 2.99948 2.99842 2.99694 2.99099 2.98201 2.94985 2.88768 2.72073 2.31509 1.5569 0.808319 0.537411 0.55087 0.564398 0.56765 0.575149 0.602564 0.663453 0.775436 0.97095 3 3 2.99997 2.99993 2.99978 2.99956 2.99868 2.99743 2.99246 2.98504 2.95788 2.90914 2.76601 2.44987 1.76473 0.924366 0.596373 0.601303 0.610983 0.618434 0.629371 0.661859 0.728759 0.838106 1.00694 3 3 2.99998 2.99994 2.99982 2.99964 2.99893 2.99792 2.99389 2.98788 2.96633 2.9249 2.81324 2.52833 1.96778 1.0363 0.659915 0.639542 0.652485 0.666178 0.682311 0.716525 0.780282 0.877867 1.02024 3 3 2.99998 2.99996 2.99986 2.99972 2.99919 2.99838 2.99549 2.99033 2.97451 2.93787 2.84911 2.60105 2.13357 1.22436 0.761595 0.668486 0.682381 0.701643 0.727348 0.764024 0.823905 0.907656 1.02644 3.00001 3 2.99999 2.99996 2.99991 2.99972 2.99945 2.99838 2.99676 2.99097 2.98052 2.94869 2.87383 2.70192 2.25162 1.48063 0.886298 0.706988 0.714747 0.734663 0.765105 0.803482 0.860895 0.936184 1.03449 3.00001 3 2.99999 2.99997 2.99993 2.99977 2.99955 2.99867 2.99741 2.99241 2.98493 2.95777 2.90821 2.76677 2.44606 1.7736 1.02658 0.764675 0.757804 0.773378 0.803017 0.839569 0.890598 0.959123 1.04466 3.00001 3 3 2.99998 2.99995 2.99983 2.99966 2.99898 2.99801 2.99422 2.98844 2.96778 2.9296 2.82214 2.56509 2.01542 1.18582 0.837653 0.800406 0.814103 0.840485 0.8769 0.920601 0.980202 1.05469 3.00001 3 3 2.99999 2.99995 2.9999 2.99969 2.99939 2.99822 2.99643 2.99015 2.97866 2.94452 2.86285 2.68084 2.19601 1.43295 0.951483 0.840609 0.848063 0.870368 0.905847 0.947481 0.999781 1.06484 3.00001 3.00001 3 2.99999 2.99996 2.99992 2.99976 2.99952 2.99859 2.99725 2.99201 2.98398 2.95563 2.90232 2.7541 2.41457 1.71808 1.10186 0.898663 0.887484 0.901688 0.931246 0.972088 1.01915 1.07606 3.00001 3.00001 3 2.99999 2.99998 2.99993 2.99986 2.99959 2.99919 2.99765 2.99534 2.9869 2.97255 2.92741 2.82637 2.59488 2.05147 1.29891 0.977829 0.930329 0.93697 0.960455 0.996976 1.03878 1.08827 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.9997 2.99942 2.9983 2.99666 2.99055 2.98037 2.94784 2.87535 2.70627 2.27114 1.55068 1.09082 0.972714 0.970348 0.987895 1.02013 1.06074 1.10466 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99952 2.99905 2.99727 2.99451 2.98501 2.96728 2.91653 2.79287 2.53316 1.91722 1.28282 1.04081 1.01185 1.01984 1.04485 1.08254 1.12271 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.99989 2.99966 2.99934 2.99807 2.9962 2.98934 2.97768 2.9414 2.85859 2.67465 2.19064 1.48436 1.1211 1.05172 1.0537 1.0728 1.10467 1.14257 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99981 2.99946 2.99892 2.99694 2.99378 2.98326 2.96234 2.90552 2.76255 2.46985 1.79779 1.27926 1.10497 1.08919 1.09982 1.12572 1.16122 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99962 2.99926 2.99785 2.99582 2.98806 2.9758 2.93521 2.84953 2.64943 2.16266 1.48627 1.18463 1.12877 1.13092 1.15042 1.18077 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.9999 2.9998 2.99942 2.99885 2.99672 2.99342 2.98212 2.961 2.90089 2.75567 2.45269 1.7901 1.33112 1.17934 1.16312 1.17261 1.1968 3.00001 3.00001 3.00001 3.00001 3.00001 3 2.99999 2.99998 2.99994 2.99987 2.99961 2.99924 2.9978 2.99572 2.98778 2.97547 2.93445 2.85096 2.64887 2.17861 1.53359 1.25943 1.20686 1.20385 1.21845 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.9999 2.9998 2.99942 2.99886 2.99677 2.99351 2.98233 2.96198 2.90362 2.76812 2.46915 1.86011 1.40256 1.25438 1.23699 1.24368 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99995 2.99985 2.9997 2.99913 2.99827 2.99514 2.99013 2.97345 2.94283 2.85432 2.67322 2.21015 1.61728 1.33764 1.27617 1.27218 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99981 2.99946 2.99894 2.99695 2.99405 2.98331 2.9659 2.91146 2.79594 2.5273 1.96865 1.49697 1.32945 1.30476 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99996 2.99987 2.99973 2.99922 2.99846 2.99567 2.99129 2.97646 2.94979 2.87192 2.71313 2.30364 1.72837 1.42384 1.34378 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99953 2.99909 2.99739 2.99494 2.98584 2.97134 2.92571 2.8291 2.61338 2.10869 1.61315 1.40683 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99991 2.99972 2.99946 2.99845 2.997 2.99163 2.98302 2.95565 2.89694 2.76463 2.409 1.85512 1.50292 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99995 2.99984 2.99968 2.99908 2.99821 2.99494 2.98996 2.97263 2.94289 2.85298 2.67841 2.22032 1.71614 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99993 2.99978 2.99957 2.99878 2.99758 2.99331 2.98642 2.96412 2.92074 2.80985 2.55213 2.02932 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.99971 2.99942 2.99838 2.99677 2.99125 2.98173 2.95327 2.89047 2.75146 2.39711 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 2.99999 2.99998 2.99993 2.99986 2.99961 2.99923 2.99785 2.99572 2.98838 2.97593 2.93881 2.86154 2.6756 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99993 2.99978 2.99957 2.99877 2.99761 2.99331 2.98673 2.96452 2.92347 2.81659 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.9999 2.99972 2.99945 2.99846 2.99695 2.99175 2.98286 2.95618 2.89809 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99964 2.99929 2.99803 2.99608 2.98938 2.97814 2.9443 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99992 2.99984 2.99955 2.99911 2.99754 2.99514 2.98685 2.973 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99992 2.99976 2.99953 2.99866 2.9974 2.9928 2.98563 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99995 2.9999 2.99971 2.99942 2.99839 2.99681 2.99133 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99987 2.99964 2.99929 2.99806 2.99613 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99998 2.99993 2.99985 2.99958 2.99916 2.99774 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99997 2.99991 2.99982 2.9995 2.999 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99991 2.99974 2.99949 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99998 2.99994 2.99988 2.99967 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3.00001 3 3 2.99999 2.99996 2.99992 2.99977 3.00002 3.00001 2.99997 2.99992 2.99972 2.99943 2.99828 2.99652 2.9903 2.97872 2.94426 2.86074 2.67324 2.16982 1.35479 0.705704 0.495124 0.508676 0.522832 0.521583 0.523837 0.541485 0.58693 0.678989 0.86376 3.00002 3.00001 2.99998 2.99993 2.99975 2.9995 2.99844 2.99696 2.99102 2.98204 2.94988 2.88771 2.72079 2.31517 1.55704 0.808433 0.537528 0.550984 0.564504 0.56775 0.575242 0.602648 0.663525 0.775492 0.970986 3.00002 3.00001 2.99999 2.99995 2.9998 2.99958 2.9987 2.99745 2.99248 2.98506 2.9579 2.90917 2.76607 2.44993 1.76486 0.924455 0.596478 0.601399 0.611075 0.618524 0.629455 0.661934 0.728823 0.838156 1.00698 3.00002 3.00002 2.99999 2.99996 2.99984 2.99966 2.99895 2.99794 2.99392 2.9879 2.96637 2.92492 2.81329 2.52836 1.96789 1.0364 0.66002 0.639622 0.652563 0.666254 0.682384 0.716592 0.78034 0.877916 1.02027 3.00002 3.00002 3 2.99998 2.99988 2.99974 2.99921 2.99841 2.99552 2.99036 2.97454 2.9379 2.84916 2.60111 2.13368 1.22449 0.761703 0.668561 0.682452 0.701711 0.727413 0.764085 0.823958 0.907703 1.02648 3.00002 3.00002 3.00001 2.99998 2.99993 2.99974 2.99947 2.9984 2.99678 2.99099 2.98054 2.94873 2.87387 2.70198 2.25171 1.48078 0.886404 0.707065 0.714814 0.734727 0.765165 0.803538 0.860945 0.936228 1.03453 3.00002 3.00002 3.00001 2.99999 2.99995 2.99979 2.99958 2.99869 2.99743 2.99243 2.98495 2.9578 2.90825 2.76682 2.44615 1.77376 1.02668 0.764753 0.757874 0.773444 0.803077 0.839624 0.890647 0.959166 1.0447 3.00002 3.00002 3.00002 3 2.99997 2.99985 2.99968 2.99901 2.99803 2.99424 2.98846 2.96781 2.92963 2.8222 2.56513 2.01556 1.1859 0.837721 0.800466 0.814164 0.840542 0.876954 0.920651 0.980248 1.05473 3.00003 3.00002 3.00002 3.00001 2.99997 2.99992 2.99971 2.99941 2.99824 2.99646 2.99017 2.97868 2.94455 2.86289 2.6809 2.19608 1.43306 0.951554 0.840667 0.848119 0.870422 0.905898 0.947527 0.999823 1.06488 3.00003 3.00003 3.00002 3.00001 2.99998 2.99994 2.99978 2.99955 2.99861 2.99727 2.99203 2.984 2.95566 2.90235 2.75415 2.41463 1.7182 1.10194 0.898724 0.887541 0.901745 0.931301 0.97214 1.0192 1.0761 3.00003 3.00003 3.00002 3.00002 3 2.99995 2.99988 2.99961 2.99921 2.99767 2.99536 2.98693 2.97257 2.92745 2.82639 2.59495 2.05154 1.299 0.977886 0.930375 0.937016 0.960502 0.997023 1.03883 1.08831 3.00003 3.00003 3.00003 3.00002 3.00001 2.99997 2.99992 2.99972 2.99944 2.99832 2.99668 2.99058 2.9804 2.94787 2.87538 2.70632 2.27118 1.55076 1.09088 0.97277 0.970401 0.987942 1.02017 1.06078 1.1047 3.00003 3.00003 3.00003 3.00002 3.00001 3 2.99994 2.99986 2.99954 2.99907 2.99729 2.99453 2.98504 2.96731 2.91657 2.79291 2.53323 1.91736 1.28292 1.04088 1.01191 1.01989 1.0449 1.08258 1.12275 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99997 2.99991 2.99968 2.99936 2.99809 2.99622 2.98937 2.9777 2.94143 2.85862 2.67471 2.19071 1.48446 1.12116 1.05177 1.05375 1.07284 1.10471 1.14261 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99999 2.99993 2.99984 2.99948 2.99895 2.99696 2.99381 2.98329 2.96237 2.90556 2.76259 2.46992 1.79791 1.27933 1.10502 1.08923 1.09987 1.12576 1.16126 3.00003 3.00003 3.00003 3.00003 3.00002 3.00002 3.00001 2.99996 2.9999 2.99965 2.99929 2.99787 2.99584 2.98808 2.97582 2.93524 2.84956 2.64949 2.16272 1.48635 1.18468 1.12882 1.13096 1.15046 1.18081 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99999 2.99992 2.99982 2.99944 2.99887 2.99674 2.99345 2.98215 2.96103 2.90092 2.75571 2.45276 1.7902 1.33119 1.17939 1.16316 1.17265 1.19684 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00002 3 2.99996 2.99989 2.99963 2.99926 2.99782 2.99574 2.98781 2.97549 2.93448 2.85099 2.64893 2.17867 1.53366 1.25948 1.20691 1.20389 1.21849 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99999 2.99992 2.99982 2.99945 2.99888 2.99679 2.99354 2.98235 2.96201 2.90366 2.76816 2.46923 1.86019 1.40264 1.25443 1.23704 1.24372 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00002 3 2.99997 2.99987 2.99972 2.99915 2.99829 2.99516 2.99015 2.97347 2.94286 2.85435 2.67326 2.21023 1.61736 1.3377 1.27621 1.27222 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99999 2.99993 2.99984 2.99948 2.99896 2.99698 2.99407 2.98334 2.96593 2.91149 2.79597 2.52738 1.96873 1.49704 1.32949 1.30481 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00002 3 2.99998 2.99989 2.99975 2.99924 2.99848 2.9957 2.99131 2.97648 2.94981 2.87196 2.71316 2.30375 1.72844 1.4239 1.34382 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 3 2.99994 2.99986 2.99955 2.99911 2.99741 2.99496 2.98586 2.97136 2.92575 2.82914 2.61346 2.10881 1.61322 1.40687 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99998 2.99993 2.99975 2.99948 2.99847 2.99702 2.99166 2.98305 2.95568 2.89697 2.76468 2.40907 1.85521 1.50297 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00002 3 2.99997 2.99986 2.9997 2.9991 2.99823 2.99496 2.98998 2.97266 2.94292 2.85301 2.67846 2.2204 1.7162 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99999 2.99995 2.99981 2.99959 2.9988 2.9976 2.99333 2.98644 2.96414 2.92077 2.8099 2.5522 2.02942 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99997 2.99992 2.99973 2.99944 2.9984 2.9968 2.99128 2.98175 2.9533 2.89051 2.75152 2.39718 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00002 3 2.99996 2.99989 2.99963 2.99925 2.99787 2.99574 2.9884 2.97596 2.93884 2.86157 2.67564 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99999 2.99995 2.9998 2.99959 2.99879 2.99763 2.99333 2.98675 2.96455 2.9235 2.81664 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99998 2.99993 2.99974 2.99947 2.99848 2.99697 2.99177 2.98288 2.95621 2.89813 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00002 3.00001 2.99996 2.9999 2.99966 2.99931 2.99805 2.9961 2.98941 2.97816 2.94433 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 3 2.99995 2.99986 2.99957 2.99913 2.99756 2.99517 2.98687 2.97303 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99998 2.99994 2.99978 2.99955 2.99868 2.99742 2.99282 2.98565 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99997 2.99992 2.99973 2.99944 2.99841 2.99683 2.99135 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00002 3 2.99996 2.9999 2.99967 2.99931 2.99809 2.99615 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 3 2.99995 2.99987 2.9996 2.99919 2.99776 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99999 2.99993 2.99984 2.99952 2.99902 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99998 2.99993 2.99976 2.99951 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00002 3.00001 2.99997 2.99991 2.99969 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00003 3.00002 3.00001 2.99998 2.99994 2.99979 1.10257 1.29283 1.34718 1.30765 1.23141 1.14439 1.06494 1.02552 1.01969 1.02241 1.02454 1.02493 1.02356 1.02205 1.02077 1.02158 1.02488 1.02916 1.03418 1.0399 1.04603 1.05227 1.0587 1.06532 1.07206 1.07877 1.08532 1.09158 1.09751 1.10306 1.10823 1.11303 1.11756 1.12184 1.12569 1.12885 1.13099 1.13162 1.13035 1.12753 1.11892 1.09819 1.04878 0.935265 0.683795 0.283473 0.114569 0.147816 0.104569 0.0676218 0.0456404 0.0813711 0.131375 0.179934 0.225522 0.26706 0.304626 0.340136 0.375511 0.410424 0.443743 0.475512 0.505952 0.535199 0.563378 0.590409 0.616346 0.641109 0.664832 0.687537 0.709437 0.730599 0.751235 0.771364 0.79114 0.810524 0.829723 0.848556 0.867398 0.885798 0.904366 0.922295 0.940689 0.958009 0.976287 0.993038 1.01099 1.02756 1.04481 1.06142 1.07762 1.09425 1.1093 1.12573 1.13964 1.1557 1.16822 1.18321 1.19294 1.20318 1.14213 1.25783 1.32291 1.36222 1.4023 1.43351 1.44352 1.43947 1.42437 1.40287 1.38574 1.38099 1.38186 1.38396 1.38618 1.38747 1.38877 1.39017 1.392 1.39458 1.39758 1.40121 1.40554 1.41022 1.41486 1.41944 1.42403 1.42867 1.43337 1.43809 1.44279 1.44742 1.45192 1.45632 1.46045 1.46447 1.46768 1.46956 1.46997 1.46884 1.4629 1.44613 1.40552 1.31071 1.10278 0.717298 0.399482 0.296262 0.327089 0.385564 0.438875 0.480879 0.516889 0.552994 0.589117 0.622957 0.653544 0.681662 0.709063 0.735869 0.762062 0.786474 0.810176 0.832275 0.854139 0.874505 0.89474 0.913433 0.932403 0.94988 0.967946 0.984315 1.00132 1.01669 1.03246 1.0472 1.0617 1.07623 1.08954 1.10408 1.11657 1.13105 1.14338 1.15805 1.17027 1.18529 1.19739 1.21266 1.22455 1.23996 1.2516 1.26699 1.27834 1.29369 1.30474 1.32 1.33043 1.3451 1.35325 1.36453 1.13959 1.247 1.34278 1.43545 1.52048 1.58718 1.61961 1.62225 1.61722 1.6032 1.58398 1.56941 1.56116 1.5592 1.55988 1.561 1.56256 1.56417 1.56562 1.56719 1.56903 1.57122 1.57382 1.57677 1.57995 1.58334 1.5869 1.59062 1.59446 1.59842 1.60252 1.60666 1.61096 1.61511 1.6195 1.62341 1.62737 1.6295 1.63044 1.63014 1.6266 1.61442 1.5845 1.5118 1.35238 1.03433 0.695874 0.569968 0.600922 0.671603 0.743925 0.796963 0.83675 0.866142 0.888745 0.909035 0.928037 0.945707 0.962343 0.978608 0.996165 1.01261 1.02981 1.04565 1.06139 1.07632 1.09074 1.10505 1.11825 1.13204 1.14431 1.15758 1.16939 1.18231 1.19378 1.20646 1.21766 1.23025 1.2413 1.25368 1.26443 1.27643 1.28667 1.29816 1.30789 1.31897 1.32831 1.33913 1.34818 1.3589 1.36771 1.3784 1.38697 1.39773 1.40614 1.41721 1.42529 1.43638 1.44285 1.45155 1.1462 1.2556 1.35494 1.44669 1.52766 1.59561 1.64817 1.68547 1.70579 1.71036 1.70862 1.70163 1.69083 1.6813 1.6759 1.6749 1.67579 1.67728 1.67946 1.68178 1.68372 1.68554 1.68742 1.68955 1.692 1.69476 1.69781 1.70107 1.70453 1.70813 1.7119 1.71567 1.71976 1.72359 1.72791 1.73154 1.73523 1.73704 1.7378 1.73737 1.73352 1.72188 1.69415 1.63208 1.51086 1.29657 1.02146 0.856262 0.876342 0.924203 0.977883 1.02362 1.05547 1.07522 1.08684 1.09661 1.10395 1.11038 1.11695 1.12415 1.1318 1.14138 1.15256 1.16474 1.1762 1.18831 1.19907 1.21061 1.22121 1.2327 1.24332 1.25491 1.2655 1.27703 1.28761 1.29927 1.3099 1.32146 1.33179 1.34302 1.35297 1.36384 1.37339 1.38386 1.39298 1.40306 1.41179 1.4215 1.42982 1.43912 1.44703 1.45593 1.46342 1.47192 1.47894 1.48705 1.49367 1.50154 1.50697 1.51155 1.14638 1.25385 1.35006 1.43807 1.51809 1.58947 1.65257 1.70542 1.74655 1.77344 1.78413 1.78424 1.78211 1.776 1.76755 1.76095 1.7564 1.75517 1.75566 1.75678 1.75847 1.76067 1.76297 1.76521 1.76745 1.76985 1.7724 1.77526 1.77825 1.78164 1.78502 1.7887 1.79248 1.79611 1.80006 1.80329 1.80579 1.80685 1.80699 1.80491 1.79744 1.77842 1.73604 1.64776 1.50907 1.36617 1.25281 1.12894 1.06107 1.05262 1.07486 1.10159 1.13199 1.15543 1.17293 1.18542 1.19341 1.19966 1.20473 1.2094 1.21407 1.21952 1.2267 1.23656 1.24769 1.25883 1.26952 1.2803 1.29077 1.3015 1.31202 1.32289 1.33358 1.34468 1.35547 1.36651 1.37711 1.38787 1.39813 1.40853 1.41841 1.42841 1.43786 1.44742 1.45644 1.46559 1.47423 1.48298 1.49119 1.49944 1.5071 1.51483 1.52199 1.52928 1.53589 1.54239 1.54821 1.55339 1.55805 1.55998 1.14095 1.24311 1.33723 1.42298 1.50158 1.57314 1.63703 1.69341 1.741 1.78006 1.80992 1.82907 1.8372 1.83783 1.83654 1.83241 1.82637 1.82119 1.81794 1.81737 1.81826 1.81956 1.82168 1.82439 1.82722 1.82981 1.83237 1.83492 1.83756 1.84059 1.84363 1.84745 1.8509 1.85521 1.8585 1.86152 1.86285 1.86311 1.86161 1.85492 1.83844 1.79972 1.72009 1.58586 1.46107 1.40347 1.37073 1.31943 1.258 1.20656 1.17794 1.17345 1.18691 1.20197 1.22048 1.23875 1.25138 1.2603 1.2676 1.27355 1.27825 1.28237 1.28723 1.29374 1.3023 1.31189 1.32202 1.33238 1.34282 1.3533 1.36387 1.37459 1.38528 1.39601 1.40671 1.41735 1.42786 1.43828 1.44858 1.45874 1.46871 1.47854 1.4882 1.49772 1.50704 1.51616 1.52504 1.53371 1.54212 1.55032 1.55822 1.56582 1.57301 1.57983 1.58621 1.59214 1.59787 1.60254 1.60676 1.60621 1.13874 1.23184 1.31988 1.40206 1.47815 1.54871 1.61324 1.67182 1.72434 1.77014 1.80912 1.84017 1.86329 1.87716 1.88245 1.88257 1.88157 1.87847 1.87412 1.87046 1.86831 1.8677 1.86851 1.86957 1.8715 1.87415 1.87726 1.88011 1.88323 1.88598 1.88937 1.89224 1.89594 1.89889 1.90173 1.90309 1.90334 1.90202 1.8956 1.87991 1.84235 1.7663 1.62709 1.50076 1.44184 1.42934 1.42789 1.41813 1.39697 1.36801 1.33169 1.29399 1.26952 1.2597 1.26374 1.27262 1.28357 1.29663 1.30764 1.31621 1.32346 1.32968 1.33512 1.34039 1.34642 1.35371 1.36221 1.3716 1.38157 1.39206 1.40283 1.41369 1.42458 1.43549 1.44637 1.45721 1.46797 1.47861 1.48911 1.49954 1.50987 1.52005 1.53005 1.53988 1.54952 1.55898 1.5682 1.5772 1.58592 1.59439 1.60262 1.61055 1.61808 1.62515 1.63168 1.6377 1.64357 1.64826 1.65276 1.65228 1.13798 1.22277 1.30503 1.38258 1.45581 1.52371 1.58753 1.6456 1.69967 1.74739 1.79058 1.82725 1.85854 1.88294 1.90083 1.91141 1.91604 1.91638 1.91576 1.91332 1.9101 1.907 1.90513 1.90491 1.90575 1.90708 1.90926 1.91261 1.9161 1.92011 1.92331 1.92704 1.92974 1.93216 1.93305 1.93311 1.93158 1.92532 1.91012 1.87383 1.79911 1.65898 1.52757 1.46094 1.44873 1.45585 1.46493 1.47188 1.47546 1.47265 1.45972 1.43724 1.40593 1.37074 1.34278 1.32683 1.32223 1.32798 1.33475 1.34434 1.35564 1.36487 1.37251 1.37963 1.38624 1.39227 1.39864 1.40598 1.41464 1.42432 1.43463 1.4453 1.45615 1.46703 1.47788 1.48869 1.49947 1.51018 1.52078 1.53127 1.54164 1.55196 1.5622 1.57235 1.58235 1.59221 1.60193 1.61148 1.62085 1.63001 1.63887 1.64744 1.65568 1.66357 1.67095 1.67765 1.68369 1.68871 1.69353 1.69382 1.13845 1.21527 1.29147 1.36459 1.43422 1.49962 1.56118 1.61852 1.6719 1.72103 1.76586 1.8062 1.84202 1.87267 1.89884 1.91896 1.9335 1.94183 1.94577 1.94619 1.94597 1.94454 1.94253 1.94071 1.94006 1.94066 1.94164 1.94303 1.94568 1.94849 1.95215 1.95489 1.95749 1.95809 1.9581 1.95647 1.95019 1.93515 1.8998 1.82579 1.68578 1.54613 1.47129 1.45754 1.46527 1.47777 1.4915 1.50795 1.52372 1.53311 1.53708 1.5347 1.52283 1.50118 1.47145 1.43621 1.40537 1.38372 1.37324 1.3733 1.37904 1.38691 1.39765 1.40807 1.41709 1.42519 1.43211 1.43836 1.4453 1.45336 1.46239 1.47212 1.48232 1.49293 1.50381 1.51477 1.52561 1.53631 1.54685 1.55726 1.56753 1.5777 1.58785 1.59798 1.60808 1.61812 1.6281 1.638 1.64778 1.65742 1.66684 1.6761 1.68497 1.69362 1.70163 1.70923 1.71658 1.72239 1.72762 1.7289 1.14151 1.21078 1.28117 1.34973 1.41586 1.47864 1.53822 1.5941 1.64668 1.69561 1.74119 1.78302 1.82132 1.85553 1.88583 1.91159 1.93323 1.9501 1.96227 1.96928 1.97287 1.97348 1.97339 1.97257 1.97075 1.9694 1.96832 1.96887 1.96973 1.97122 1.97319 1.97595 1.97697 1.97697 1.97551 1.9696 1.95556 1.92134 1.84941 1.70994 1.56266 1.48165 1.46518 1.47186 1.4838 1.50015 1.5178 1.53794 1.5563 1.57343 1.58563 1.5932 1.59533 1.59267 1.58102 1.56059 1.53298 1.49831 1.46464 1.43751 1.42167 1.41705 1.42194 1.42891 1.43916 1.45161 1.46266 1.47225 1.48017 1.4873 1.49446 1.50235 1.51117 1.52073 1.53075 1.5411 1.55163 1.56216 1.57257 1.58283 1.59297 1.60298 1.61292 1.62279 1.63266 1.64257 1.65246 1.66237 1.67212 1.68192 1.69144 1.70097 1.71016 1.71905 1.72776 1.73595 1.74382 1.75042 1.75706 1.75907 1.14629 1.20835 1.27266 1.33666 1.39913 1.45891 1.51618 1.57042 1.62183 1.67004 1.71542 1.75762 1.79701 1.83311 1.86621 1.89578 1.92196 1.94422 1.96265 1.97707 1.98724 1.99323 1.99618 1.99685 1.99666 1.9963 1.99505 1.99434 1.99347 1.99386 1.99441 1.99482 1.99464 1.99311 1.98771 1.97317 1.94153 1.87179 1.73473 1.57879 1.4886 1.46891 1.47492 1.48746 1.50423 1.52336 1.54407 1.56471 1.58375 1.60212 1.61817 1.63154 1.64169 1.64762 1.65003 1.64844 1.63884 1.62013 1.59365 1.55879 1.52143 1.48937 1.46814 1.45892 1.46285 1.46984 1.48025 1.49474 1.50759 1.51815 1.52709 1.53518 1.54304 1.55122 1.55994 1.56922 1.57893 1.58893 1.59907 1.60916 1.61912 1.62895 1.63869 1.64836 1.65791 1.66754 1.67705 1.68672 1.69622 1.70576 1.71522 1.72453 1.73373 1.74267 1.75161 1.75964 1.76836 1.77494 1.78253 1.78518 1.15499 1.21007 1.26827 1.327 1.38558 1.44255 1.49738 1.54965 1.59971 1.647 1.69188 1.73395 1.7736 1.81051 1.84493 1.87653 1.9054 1.93113 1.95383 1.97296 1.9889 2.00111 2.00994 2.01511 2.01785 2.01855 2.01852 2.01829 2.01711 2.01576 2.01449 2.01309 2.01021 2.00315 1.989 1.95673 1.89094 1.75534 1.59421 1.49631 1.47345 1.47831 1.49037 1.50766 1.5266 1.54876 1.56959 1.58927 1.60769 1.62666 1.64394 1.66043 1.67408 1.68595 1.69493 1.70119 1.7037 1.70275 1.69446 1.67659 1.65041 1.61556 1.57569 1.53888 1.51271 1.5001 1.50348 1.51055 1.52137 1.53705 1.55061 1.5622 1.57238 1.58151 1.59007 1.59862 1.60744 1.61653 1.62592 1.63557 1.6453 1.65508 1.6647 1.67441 1.68393 1.69349 1.70291 1.71228 1.7216 1.7309 1.74012 1.74909 1.75829 1.7667 1.77586 1.78354 1.7925 1.79908 1.80694 1.80989 1.16654 1.21532 1.2672 1.32075 1.37451 1.4278 1.4801 1.53052 1.57869 1.62503 1.66906 1.71102 1.75058 1.78801 1.82307 1.85589 1.88641 1.91444 1.94002 1.96284 1.98276 1.99978 2.0135 2.02434 2.03171 2.0365 2.03857 2.03897 2.03863 2.03776 2.03513 2.03078 2.02326 2.00821 1.9759 1.91201 1.77968 1.61347 1.50408 1.47635 1.47989 1.49208 1.50794 1.52753 1.54994 1.57218 1.59148 1.61039 1.62902 1.64774 1.6653 1.68212 1.69723 1.71163 1.72471 1.73652 1.74572 1.75217 1.75459 1.754 1.74703 1.73063 1.70607 1.67218 1.63039 1.59028 1.55894 1.5425 1.54531 1.55245 1.56327 1.57922 1.5934 1.60538 1.61639 1.62625 1.63518 1.64388 1.65246 1.66125 1.67016 1.67939 1.68874 1.69818 1.70762 1.71718 1.72665 1.73605 1.74546 1.75455 1.76397 1.77267 1.78208 1.79022 1.79953 1.80705 1.81613 1.82277 1.83084 1.83396 1.18226 1.22506 1.27094 1.31915 1.36845 1.41786 1.46625 1.51427 1.56073 1.60527 1.64824 1.68937 1.72865 1.76607 1.80144 1.83495 1.86624 1.89579 1.9228 1.94814 1.97059 1.99115 2.00862 2.02369 2.03579 2.04492 2.05137 2.05419 2.05408 2.05324 2.05023 2.04263 2.02797 1.9966 1.9347 1.80871 1.63842 1.51589 1.48075 1.48183 1.49417 1.50971 1.52759 1.55072 1.57272 1.59294 1.61117 1.63011 1.6484 1.6672 1.68476 1.70197 1.71766 1.73335 1.74804 1.76249 1.77594 1.78803 1.79769 1.80471 1.80797 1.80818 1.8029 1.78873 1.76527 1.73177 1.68866 1.6445 1.60748 1.58692 1.5894 1.59653 1.60701 1.62287 1.63731 1.64956 1.66083 1.67099 1.68005 1.68864 1.69692 1.70529 1.71377 1.72254 1.73152 1.74053 1.74978 1.75879 1.76822 1.77695 1.78646 1.79484 1.80442 1.81238 1.82189 1.82934 1.83857 1.84527 1.85351 1.85709 1.19766 1.23593 1.27712 1.32057 1.36556 1.41097 1.45671 1.50108 1.54538 1.58859 1.63001 1.67016 1.70872 1.74565 1.78107 1.81471 1.84671 1.87688 1.90527 1.9318 1.95623 1.97908 1.99895 2.0177 2.0326 2.04634 2.0561 2.06288 2.06373 2.06235 2.05688 2.04472 2.01591 1.95892 1.83979 1.67079 1.53465 1.48821 1.48527 1.4981 1.5123 1.52962 1.5512 1.574 1.59395 1.61279 1.63073 1.64944 1.66807 1.68724 1.70525 1.72276 1.73888 1.75507 1.77048 1.78642 1.80173 1.81661 1.83046 1.84258 1.85249 1.8599 1.86327 1.86377 1.85946 1.84666 1.82381 1.79081 1.7469 1.69942 1.65616 1.63275 1.63502 1.6421 1.65223 1.6677 1.68203 1.69428 1.70543 1.71564 1.72491 1.7333 1.74152 1.74949 1.75786 1.76593 1.77477 1.7829 1.79203 1.80006 1.80938 1.81723 1.82666 1.83428 1.84371 1.85103 1.86021 1.867 1.87507 1.87904 1.21478 1.25014 1.28666 1.32562 1.36586 1.40771 1.44952 1.49195 1.53289 1.57364 1.61422 1.65262 1.69054 1.72673 1.76172 1.79514 1.82746 1.85769 1.88708 1.91421 1.93993 1.96428 1.98574 2.00698 2.02424 2.04107 2.0537 2.06284 2.0637 2.06098 2.05117 2.02858 1.97567 1.87142 1.70108 1.55663 1.49852 1.49199 1.50384 1.51814 1.53402 1.55522 1.57766 1.59879 1.61726 1.63519 1.65271 1.6715 1.69037 1.70953 1.7275 1.74503 1.76159 1.77815 1.79418 1.81075 1.82664 1.84274 1.85781 1.87214 1.88524 1.89668 1.90636 1.91378 1.9173 1.91802 1.91457 1.90287 1.88066 1.84798 1.80306 1.75257 1.70404 1.67842 1.68023 1.68734 1.6971 1.71205 1.72628 1.73835 1.74955 1.75978 1.76945 1.77757 1.78614 1.79367 1.80206 1.80938 1.81803 1.82537 1.8342 1.84149 1.85051 1.85775 1.86684 1.87393 1.88289 1.88955 1.89746 1.90131 1.23054 1.26384 1.29854 1.33363 1.37111 1.40814 1.44703 1.48576 1.52539 1.56329 1.60094 1.63897 1.6747 1.71016 1.74486 1.77693 1.80975 1.83942 1.86892 1.89698 1.92261 1.94866 1.97076 1.99361 2.0127 2.03085 2.04602 2.05362 2.05232 2.04638 2.02842 1.98268 1.88992 1.72348 1.57697 1.50955 1.49832 1.50977 1.52448 1.54122 1.5619 1.5851 1.60616 1.62557 1.6429 1.66044 1.67797 1.69662 1.715 1.73371 1.75144 1.76909 1.78565 1.80216 1.81822 1.83458 1.85055 1.86681 1.88217 1.89729 1.91133 1.92471 1.93714 1.94833 1.9581 1.96572 1.96947 1.97036 1.96751 1.95678 1.93557 1.90312 1.85778 1.80493 1.75163 1.72434 1.72511 1.73185 1.74138 1.75548 1.76946 1.78127 1.79267 1.80269 1.81264 1.82074 1.82945 1.83662 1.84477 1.85165 1.85997 1.86681 1.87523 1.88213 1.89081 1.8977 1.90645 1.9129 1.92087 1.92445 1.24482 1.27673 1.30888 1.34186 1.37574 1.41199 1.44722 1.48361 1.51987 1.55697 1.59242 1.6274 1.66359 1.69593 1.73052 1.76209 1.79299 1.82418 1.85165 1.88104 1.90639 1.93242 1.95642 1.97826 2.00037 2.01757 2.03285 2.03527 2.03123 2.01624 1.98086 1.89151 1.74334 1.59079 1.51549 1.50084 1.5123 1.52919 1.54733 1.57028 1.59397 1.61634 1.63593 1.65434 1.67131 1.68863 1.70568 1.72358 1.7413 1.75943 1.77679 1.79394 1.81004 1.82628 1.842 1.85819 1.87416 1.89039 1.90589 1.92134 1.93577 1.94996 1.96335 1.97636 1.98867 1.99993 2.00999 2.01768 2.02172 2.02262 2.02024 2.01031 1.99002 1.95808 1.91238 1.85756 1.80029 1.77154 1.77059 1.77731 1.78641 1.79948 1.81289 1.82431 1.83557 1.84535 1.85517 1.86319 1.87171 1.87854 1.88631 1.89283 1.90074 1.90718 1.91522 1.92174 1.93009 1.9364 1.94429 1.94781 1.26338 1.29183 1.32103 1.35171 1.38299 1.41579 1.45013 1.48403 1.5181 1.55279 1.58728 1.62055 1.65383 1.68707 1.718 1.75027 1.7798 1.80938 1.83837 1.86473 1.89257 1.91655 1.94186 1.96402 1.98506 2.0037 2.01065 2.00818 1.99744 1.96706 1.89383 1.74671 1.59308 1.5121 1.49654 1.50984 1.52871 1.54989 1.57512 1.60002 1.62308 1.64484 1.66439 1.68299 1.7 1.71697 1.73349 1.75087 1.76811 1.78586 1.80273 1.81948 1.83532 1.85134 1.86684 1.88298 1.8987 1.91473 1.93012 1.94555 1.96012 1.97471 1.98858 2.00237 2.01559 2.0284 2.04044 2.05139 2.0611 2.06837 2.0724 2.07328 2.07134 2.06227 2.04301 2.01212 1.96619 1.9097 1.84951 1.81912 1.81619 1.82284 1.83143 1.84336 1.85602 1.86713 1.87815 1.88753 1.89707 1.90491 1.91318 1.91962 1.92706 1.9332 1.94066 1.94669 1.95425 1.9601 1.96741 1.97073 1.28255 1.30449 1.33328 1.36214 1.3913 1.4216 1.4532 1.48614 1.51827 1.55087 1.58399 1.61603 1.64831 1.6792 1.71053 1.74001 1.76993 1.79825 1.82582 1.8534 1.8782 1.90469 1.92714 1.95069 1.96996 1.98246 1.98213 1.9733 1.94744 1.88427 1.74642 1.58944 1.50142 1.48629 1.50051 1.52163 1.54567 1.57367 1.59933 1.62361 1.64664 1.66923 1.69008 1.70962 1.72717 1.74438 1.76122 1.7789 1.7963 1.81384 1.83041 1.8468 1.86239 1.87814 1.89355 1.9093 1.92465 1.94032 1.95548 1.97073 1.98534 1.99989 2.01368 2.02741 2.04053 2.05349 2.06595 2.07804 2.08934 2.09978 2.10907 2.11609 2.12052 2.1215 2.12009 2.11204 2.0939 2.06421 2.01779 1.95995 1.89766 1.86553 1.86043 1.8669 1.87494 1.88552 1.89803 1.90876 1.91957 1.92859 1.93805 1.94573 1.95378 1.95989 1.96711 1.9729 1.97994 1.9853 1.99184 1.99459 1.30671 1.32277 1.34777 1.37508 1.40236 1.42984 1.4587 1.48914 1.52005 1.55097 1.5819 1.61304 1.64345 1.67418 1.70334 1.73305 1.76106 1.78927 1.81634 1.84243 1.86855 1.89217 1.91646 1.93641 1.95215 1.95375 1.94581 1.92211 1.86864 1.73964 1.57916 1.48384 1.46747 1.48254 1.50587 1.53417 1.56567 1.5941 1.6197 1.64454 1.66809 1.69068 1.71143 1.73132 1.75031 1.76955 1.78822 1.80693 1.82468 1.84212 1.85852 1.87482 1.89032 1.90594 1.92088 1.93605 1.95085 1.96601 1.98077 1.99573 2.01004 2.02428 2.03774 2.0512 2.06392 2.07679 2.08908 2.10138 2.11322 2.12477 2.13568 2.14583 2.15498 2.16202 2.16696 2.16806 2.16706 2.15998 2.14292 2.11407 2.06765 2.00828 1.94451 1.9106 1.90318 1.90932 1.9165 1.92574 1.93846 1.94856 1.9591 1.96785 1.97728 1.98473 1.99263 1.99859 2.00573 2.01098 2.01724 2.01975 1.3333 1.34023 1.35967 1.38689 1.4139 1.44069 1.46726 1.495 1.5237 1.55286 1.58256 1.61151 1.641 1.66969 1.69865 1.72631 1.75426 1.78105 1.80755 1.83358 1.85812 1.88264 1.90382 1.92157 1.92482 1.91786 1.89544 1.84867 1.72631 1.56563 1.46257 1.44435 1.46023 1.4852 1.516 1.55096 1.58172 1.60986 1.6363 1.66234 1.68663 1.7094 1.73017 1.75053 1.77059 1.79107 1.81099 1.83065 1.84914 1.86732 1.88452 1.90134 1.91703 1.93239 1.94698 1.96185 1.97638 1.9914 2.00595 2.02077 2.03475 2.04881 2.06194 2.07515 2.08759 2.10024 2.11232 2.12458 2.13648 2.14826 2.15975 2.17084 2.18143 2.19137 2.20039 2.20746 2.21289 2.21407 2.21327 2.20705 2.19121 2.16265 2.11651 2.05592 1.99108 1.95491 1.94565 1.95091 1.95709 1.96577 1.97824 1.98729 1.99754 2.00594 2.0155 2.02231 2.03016 2.0356 2.04216 2.04472 1.37185 1.36707 1.37781 1.39836 1.42494 1.45094 1.47624 1.50252 1.5291 1.55653 1.58412 1.61242 1.63961 1.66769 1.69468 1.7223 1.74851 1.77507 1.80058 1.82557 1.84988 1.87184 1.89078 1.89605 1.88903 1.86988 1.82405 1.71237 1.551 1.43969 1.41911 1.43477 1.46012 1.49342 1.53054 1.56386 1.59385 1.62312 1.6512 1.67815 1.70269 1.72579 1.74736 1.76858 1.78913 1.80988 1.8304 1.85101 1.87095 1.89046 1.90861 1.92602 1.94214 1.95796 1.97296 1.9881 2.00266 2.0175 2.03171 2.04613 2.05979 2.07357 2.08652 2.09958 2.11192 2.12437 2.13629 2.14832 2.15998 2.17164 2.1831 2.19439 2.20539 2.21616 2.22629 2.23601 2.24468 2.25167 2.25721 2.25837 2.25758 2.25212 2.2373 2.2095 2.16443 2.10275 2.03771 1.99872 1.98811 1.9917 1.99743 2.00543 2.01744 2.02546 2.03539 2.04323 2.05261 2.05864 2.06597 2.06857 1.40572 1.39355 1.39911 1.41503 1.43816 1.46298 1.48679 1.51105 1.53577 1.5612 1.58733 1.6134 1.64028 1.66609 1.69262 1.71827 1.74444 1.76953 1.79467 1.81865 1.84116 1.86049 1.86721 1.86078 1.8425 1.79751 1.69751 1.53062 1.41267 1.39102 1.40673 1.4329 1.46795 1.50737 1.54226 1.57402 1.60422 1.63395 1.66226 1.68937 1.71469 1.73916 1.76234 1.78505 1.80661 1.82789 1.84859 1.86966 1.89038 1.91081 1.93004 1.94841 1.96548 1.98197 1.99751 2.0128 2.02746 2.04214 2.05634 2.07063 2.08435 2.09803 2.11104 2.12392 2.13614 2.14827 2.15989 2.17155 2.18286 2.19433 2.20549 2.21679 2.22776 2.23869 2.24927 2.25959 2.26942 2.27879 2.28724 2.29421 2.29989 2.30112 2.30045 2.29566 2.28197 2.25511 2.21082 2.14937 2.08366 2.04147 2.03036 2.03168 2.03706 2.04436 2.05531 2.06275 2.07243 2.07946 2.08807 2.09084 1.4795 1.42859 1.42302 1.43162 1.44949 1.47467 1.49851 1.52153 1.54453 1.56751 1.59163 1.61643 1.64105 1.66669 1.69115 1.71636 1.74068 1.76525 1.7888 1.81119 1.83052 1.83839 1.83221 1.81436 1.77024 1.6778 1.50346 1.38215 1.36035 1.37695 1.40419 1.44109 1.48238 1.51892 1.5516 1.58287 1.61327 1.64313 1.67165 1.69926 1.72542 1.75074 1.77478 1.79812 1.82052 1.84276 1.86433 1.88581 1.90659 1.92732 1.94716 1.96649 1.98453 2.00192 2.01823 2.03437 2.04977 2.06517 2.07988 2.0945 2.10839 2.12215 2.13517 2.14808 2.16026 2.17239 2.18387 2.19538 2.20643 2.21753 2.22838 2.23927 2.24999 2.26066 2.27118 2.28151 2.29165 2.30154 2.31099 2.32016 2.3284 2.33547 2.34124 2.3426 2.34218 2.33793 2.32529 2.29985 2.25523 2.19529 2.13037 2.08379 2.07172 2.07025 2.07579 2.08204 2.09117 2.09814 2.10708 2.11066 1.62408 1.47708 1.45197 1.45181 1.46389 1.48314 1.50748 1.53069 1.55316 1.5755 1.59754 1.62054 1.64389 1.66761 1.69165 1.71543 1.73888 1.76204 1.78354 1.80283 1.8107 1.80423 1.78595 1.74229 1.64751 1.47788 1.35366 1.33155 1.34782 1.37492 1.41254 1.45573 1.49397 1.52815 1.56004 1.59117 1.62133 1.65093 1.6795 1.70751 1.73448 1.76069 1.78562 1.80981 1.83307 1.85598 1.87827 1.90034 1.92161 1.9425 1.96262 1.98248 2.00143 2.0199 2.0373 2.05431 2.07041 2.08641 2.10152 2.11672 2.131 2.14545 2.15884 2.17238 2.18481 2.19737 2.20893 2.22064 2.23157 2.24261 2.25311 2.2637 2.27391 2.28427 2.29425 2.30445 2.31419 2.32413 2.33364 2.34315 2.35226 2.36116 2.36924 2.37639 2.38224 2.38379 2.38367 2.38007 2.36772 2.34389 2.2986 2.24252 2.17638 2.12598 2.11251 2.10796 2.11326 2.11768 2.12437 2.12853 1.85741 1.56827 1.48786 1.47541 1.48 1.49459 1.51593 1.53937 1.56169 1.5833 1.60461 1.62589 1.64769 1.66986 1.69265 1.71504 1.73767 1.75856 1.77744 1.78505 1.77837 1.75947 1.71541 1.61787 1.45036 1.32332 1.30116 1.31787 1.3454 1.38405 1.42848 1.46851 1.50402 1.53691 1.5682 1.5988 1.62861 1.65829 1.68732 1.71606 1.74359 1.77017 1.79539 1.81985 1.84348 1.8669 1.88984 1.91262 1.93474 1.95634 1.97697 1.99708 2.01656 2.03581 2.05431 2.07235 2.08951 2.10632 2.12242 2.13815 2.15319 2.16781 2.18182 2.19543 2.20852 2.22122 2.23339 2.24515 2.25635 2.26724 2.27757 2.28791 2.29769 2.30777 2.31732 2.32727 2.33672 2.34644 2.35584 2.36517 2.37444 2.38344 2.3923 2.40091 2.40878 2.41592 2.42161 2.42345 2.42353 2.42005 2.40923 2.38564 2.34012 2.28994 2.21977 2.16889 2.15118 2.14548 2.14595 2.14784 2.28248 1.76564 1.55405 1.50966 1.50304 1.50977 1.52518 1.54742 1.56897 1.59023 1.61111 1.63187 1.65274 1.67363 1.69471 1.71593 1.73605 1.75418 1.76137 1.7542 1.73456 1.68952 1.58959 1.42283 1.29256 1.27046 1.2881 1.31665 1.35652 1.40145 1.44293 1.47997 1.51364 1.54541 1.576 1.60632 1.63629 1.66638 1.69582 1.72468 1.75212 1.77865 1.80393 1.82877 1.85296 1.87708 1.90062 1.92392 1.94646 1.96857 1.9899 2.01073 2.03075 2.05042 2.06956 2.08842 2.1064 2.12402 2.14072 2.15724 2.1728 2.18828 2.20277 2.21725 2.23069 2.24411 2.25643 2.26873 2.27991 2.29115 2.30132 2.31175 2.32124 2.33121 2.34042 2.35015 2.35931 2.36879 2.37796 2.38708 2.39615 2.40499 2.41383 2.42253 2.431 2.43941 2.447 2.45401 2.45957 2.46143 2.46157 2.45832 2.44832 2.4247 2.38522 2.33004 2.25834 2.21423 2.18346 2.17872 2.56805 2.08022 1.69138 1.55151 1.52861 1.52812 1.53841 1.55403 1.57627 1.59688 1.61728 1.63705 1.65727 1.67719 1.69743 1.7165 1.73351 1.73974 1.73177 1.71116 1.66459 1.5618 1.39444 1.26085 1.23953 1.25883 1.28893 1.33069 1.37557 1.41753 1.45547 1.49015 1.52254 1.55374 1.58423 1.61464 1.6448 1.67483 1.70404 1.73259 1.75998 1.78666 1.81242 1.83778 1.86246 1.88688 1.91071 1.93433 1.95737 1.98015 2.00218 2.02377 2.04446 2.06461 2.084 2.10324 2.12191 2.14024 2.15771 2.1748 2.19105 2.20694 2.22198 2.23671 2.25067 2.26437 2.27736 2.29007 2.30206 2.31375 2.32463 2.33535 2.34521 2.35518 2.36433 2.37382 2.38262 2.39172 2.40048 2.40917 2.41797 2.42634 2.43509 2.44331 2.45193 2.46011 2.46836 2.47643 2.48369 2.49049 2.49581 2.49751 2.4976 2.49471 2.48468 2.46168 2.42486 2.36399 2.29746 2.26215 2.76821 2.44021 1.93179 1.64385 1.56052 1.54853 1.55114 1.56407 1.58148 1.60421 1.62419 1.64405 1.66256 1.68156 1.69916 1.71535 1.72038 1.71134 1.6895 1.64078 1.53446 1.36478 1.22824 1.20839 1.22986 1.26212 1.30608 1.35117 1.39302 1.43144 1.46687 1.50018 1.53195 1.563 1.59351 1.62396 1.65395 1.68373 1.71275 1.74127 1.76888 1.79586 1.822 1.8476 1.87255 1.89716 1.92134 1.9452 1.96858 1.99148 2.01373 2.03544 2.05648 2.0771 2.09705 2.11666 2.13572 2.15461 2.17267 2.19028 2.20695 2.2233 2.23873 2.25401 2.26839 2.28273 2.29616 2.30952 2.3219 2.33419 2.34539 2.35659 2.3667 2.37696 2.38623 2.39583 2.40462 2.41374 2.42237 2.43103 2.43965 2.44782 2.45646 2.46419 2.47284 2.48039 2.48883 2.49648 2.50439 2.51196 2.5189 2.52515 2.53015 2.5315 2.53132 2.52804 2.51869 2.49247 2.4525 2.42415 2.87449 2.70662 2.3467 1.84803 1.6329 1.58069 1.57253 1.57612 1.58972 1.6088 1.63115 1.65057 1.66995 1.68604 1.70105 1.70368 1.69336 1.66983 1.61805 1.50715 1.3323 1.19542 1.17785 1.20237 1.2368 1.28292 1.32839 1.37019 1.4086 1.44454 1.47858 1.51127 1.54284 1.57382 1.60421 1.63443 1.66415 1.6937 1.72258 1.75108 1.77869 1.8058 1.83208 1.85791 1.88313 1.90798 1.93231 1.95619 1.97948 2.00229 2.02452 2.04632 2.06764 2.08857 2.10901 2.12903 2.14846 2.16754 2.18606 2.20414 2.22135 2.23814 2.2541 2.26979 2.28465 2.29938 2.3133 2.32713 2.3401 2.35298 2.3649 2.3767 2.38754 2.39821 2.40806 2.41774 2.42682 2.43574 2.44437 2.4527 2.4611 2.46895 2.47729 2.48464 2.49309 2.50001 2.5085 2.51526 2.52348 2.53032 2.53784 2.54461 2.55108 2.55639 2.56086 2.56175 2.56122 2.5575 2.54431 2.53811 2.93169 2.84416 2.64825 2.21743 1.80543 1.63257 1.59946 1.59498 1.60064 1.61489 1.635 1.65563 1.67326 1.68862 1.69035 1.67863 1.65299 1.59695 1.47999 1.29762 1.16306 1.14927 1.17603 1.21292 1.26119 1.30697 1.34873 1.38698 1.42298 1.45764 1.49119 1.52377 1.55533 1.58617 1.61635 1.64621 1.67557 1.70472 1.73329 1.76154 1.78913 1.81629 1.84277 1.86876 1.89411 1.91891 1.94313 1.96683 1.99003 2.01277 2.03506 2.05692 2.07837 2.09941 2.12005 2.14029 2.16001 2.17928 2.19796 2.21631 2.23396 2.25113 2.26757 2.28367 2.29901 2.31415 2.32853 2.34275 2.35623 2.36953 2.38206 2.39436 2.40591 2.41705 2.42759 2.43759 2.44717 2.4562 2.46504 2.47337 2.4817 2.48956 2.49762 2.50501 2.51297 2.51983 2.52777 2.53414 2.5421 2.54807 2.55592 2.5617 2.56895 2.57454 2.58066 2.58494 2.58857 2.58919 2.58811 2.58976 2.96263 2.91622 2.80741 2.52908 2.06605 1.74401 1.6353 1.61606 1.61536 1.62433 1.63865 1.65745 1.67372 1.67728 1.66498 1.63703 1.57563 1.45229 1.26263 1.13243 1.12149 1.14986 1.18993 1.24042 1.28662 1.32836 1.36664 1.40284 1.43778 1.47193 1.50518 1.53755 1.56887 1.59944 1.6292 1.65862 1.6875 1.71622 1.74443 1.77242 1.79982 1.82685 1.85323 1.87911 1.90438 1.92909 1.95329 1.97692 2.00008 2.02274 2.04495 2.06674 2.08818 2.10922 2.12994 2.15024 2.17015 2.18958 2.20847 2.22693 2.24488 2.26237 2.27925 2.29577 2.31162 2.32721 2.34211 2.35674 2.37074 2.38445 2.39754 2.41028 2.4225 2.43416 2.44545 2.45597 2.4662 2.47562 2.48482 2.4933 2.50161 2.50942 2.51714 2.52439 2.53183 2.53855 2.54586 2.55211 2.55935 2.56515 2.5723 2.57772 2.58464 2.58968 2.59614 2.60056 2.60605 2.60931 2.612 2.61376 2.98235 2.95458 2.89813 2.76411 2.45137 1.97825 1.72425 1.64917 1.63501 1.63556 1.64391 1.65685 1.6632 1.65068 1.62032 1.55049 1.41948 1.22475 1.10241 1.0953 1.12414 1.16693 1.2196 1.26647 1.30825 1.34663 1.38309 1.41841 1.45291 1.4867 1.51964 1.5517 1.58272 1.61294 1.64231 1.67125 1.69962 1.72782 1.75554 1.78309 1.81009 1.8368 1.86289 1.88858 1.91368 1.93828 1.96235 1.98591 2.00895 2.03156 2.05373 2.07557 2.09702 2.11814 2.13887 2.1592 2.17909 2.19854 2.21747 2.236 2.25407 2.27182 2.2891 2.30605 2.32241 2.33847 2.35385 2.36888 2.38332 2.39737 2.41092 2.42403 2.43682 2.44888 2.46084 2.47177 2.48268 2.49244 2.50217 2.51087 2.51946 2.52734 2.53507 2.54228 2.54951 2.55611 2.56303 2.56906 2.57574 2.58121 2.58765 2.59267 2.5988 2.60345 2.60922 2.61348 2.61872 2.62236 2.62643 2.6284 2.98975 2.9787 2.94636 2.8817 2.71864 2.39164 1.92978 1.72241 1.66845 1.65451 1.65261 1.65095 1.63878 1.60541 1.52393 1.37851 1.18254 1.07247 1.0703 1.09891 1.1428 1.19702 1.24495 1.2873 1.3257 1.36211 1.39759 1.43254 1.46685 1.50038 1.53296 1.5646 1.59522 1.62507 1.6541 1.68264 1.7106 1.73832 1.76556 1.79261 1.81914 1.84542 1.87114 1.89643 1.92117 1.9454 1.96922 1.99259 2.01561 2.0383 2.06063 2.08261 2.1042 2.1254 2.14618 2.1665 2.18638 2.20583 2.22484 2.24347 2.2617 2.27962 2.29715 2.31435 2.33101 2.34736 2.36311 2.37852 2.3934 2.40789 2.42193 2.43551 2.44876 2.46131 2.47373 2.48513 2.49654 2.50674 2.51702 2.52604 2.53515 2.54319 2.55127 2.55848 2.56584 2.57232 2.57914 2.58495 2.5913 2.59645 2.60232 2.60689 2.61227 2.61638 2.62131 2.62503 2.62948 2.63276 2.63647 2.63846 2.99548 2.98814 2.97496 2.93875 2.86192 2.68175 2.31369 1.90144 1.72096 1.67922 1.66261 1.64194 1.59833 1.50136 1.33039 1.13581 1.04256 1.04717 1.07526 1.12021 1.175 1.2236 1.26651 1.30513 1.34125 1.3763 1.41092 1.4452 1.47889 1.51184 1.54391 1.57515 1.60548 1.63513 1.66401 1.6924 1.72013 1.7475 1.7743 1.80086 1.82685 1.85255 1.8777 1.90246 1.92678 1.95068 1.97425 1.99746 2.02039 2.04308 2.06548 2.08763 2.10944 2.13084 2.15183 2.1723 2.19234 2.21191 2.23106 2.24985 2.26825 2.28634 2.30404 2.32141 2.33826 2.35484 2.37086 2.3866 2.40184 2.41677 2.43121 2.44527 2.45888 2.4719 2.48465 2.49648 2.50825 2.51885 2.52963 2.53898 2.54872 2.55695 2.5656 2.5729 2.58055 2.58705 2.59388 2.59961 2.60574 2.61071 2.61614 2.62037 2.62512 2.62868 2.63282 2.63582 2.63945 2.64198 2.64502 2.64645 2.99731 2.99459 2.98574 2.97013 2.9257 2.83599 2.61208 2.20997 1.85373 1.71502 1.66841 1.6123 1.4947 1.28158 1.08212 1.00662 1.01746 1.0469 1.09481 1.14968 1.19872 1.24227 1.28179 1.31883 1.35436 1.38898 1.42291 1.45627 1.48905 1.52129 1.55284 1.58374 1.61391 1.64341 1.67212 1.70028 1.72776 1.75483 1.78132 1.80751 1.83319 1.8586 1.88358 1.90823 1.93254 1.95643 1.97999 2.00317 2.02603 2.04856 2.07072 2.09255 2.114 2.13509 2.1558 2.17615 2.19615 2.21582 2.2351 2.25404 2.27259 2.2907 2.30846 2.32585 2.34286 2.3596 2.37592 2.39197 2.40767 2.42302 2.43795 2.4525 2.46656 2.48013 2.49326 2.50572 2.51783 2.52907 2.54012 2.55001 2.56009 2.56874 2.57783 2.58539 2.59345 2.60002 2.60705 2.6127 2.61872 2.62345 2.62852 2.63235 2.63656 2.63958 2.64306 2.64542 2.64833 2.6502 2.65254 2.65353 2.99859 2.99724 2.99238 2.98491 2.96048 2.91475 2.80155 2.53328 2.09591 1.7977 1.66386 1.52391 1.2559 1.02318 0.952529 0.969013 1.00552 1.05992 1.11612 1.16526 1.2091 1.24963 1.28801 1.32474 1.36011 1.39442 1.42794 1.4609 1.49331 1.52518 1.55638 1.58692 1.61668 1.6458 1.67419 1.70205 1.72927 1.7561 1.78236 1.80834 1.83385 1.85914 1.88405 1.90869 1.93301 1.95694 1.98054 2.00371 2.02649 2.04888 2.07087 2.09252 2.11381 2.13478 2.15542 2.17577 2.19576 2.2155 2.23482 2.25381 2.27241 2.29058 2.30845 2.32593 2.3431 2.36 2.37658 2.39291 2.40893 2.42463 2.43999 2.45497 2.46953 2.4836 2.49723 2.51021 2.52283 2.53464 2.54624 2.55684 2.56738 2.57672 2.58616 2.59425 2.60258 2.60945 2.61663 2.62235 2.62836 2.633 2.63785 2.64156 2.64528 2.64824 2.65104 2.65339 2.65554 2.6574 2.659 2.66037 2.99937 2.99822 2.99647 2.99048 2.98072 2.95045 2.89307 2.74695 2.44315 1.96962 1.63632 1.28065 0.953921 0.86587 0.890682 0.933311 0.996418 1.06015 1.11384 1.16037 1.20331 1.24409 1.28286 1.31973 1.35497 1.389 1.42218 1.45474 1.4867 1.51805 1.54868 1.57865 1.60789 1.63658 1.66465 1.69228 1.71935 1.74606 1.77227 1.79824 1.8238 1.84919 1.87427 1.89912 1.92371 1.94791 1.97179 1.99519 2.01816 2.04068 2.06276 2.08446 2.10583 2.1269 2.14771 2.16827 2.18846 2.20845 2.22801 2.24736 2.26642 2.28509 2.30352 2.32154 2.33927 2.3567 2.3738 2.39064 2.40713 2.42331 2.43913 2.45452 2.46958 2.48395 2.49809 2.51134 2.52442 2.53651 2.54849 2.55938 2.57024 2.5799 2.58958 2.598 2.60647 2.61362 2.62086 2.62681 2.63275 2.63756 2.6422 2.64599 2.6494 2.6523 2.65469 2.65687 2.65844 2.66006 2.66128 2.66281 2.99957 2.99874 2.99754 2.9931 2.98646 2.96356 2.92426 2.81165 2.58689 2.10754 1.51735 0.944034 0.675599 0.711288 0.762112 0.829455 0.892998 0.950955 1.00605 1.05915 1.10973 1.15752 1.2027 1.24561 1.28658 1.32599 1.36411 1.40113 1.43709 1.47201 1.50582 1.53859 1.5703 1.60114 1.63111 1.66045 1.68913 1.71736 1.74502 1.77235 1.79917 1.82571 1.85184 1.87764 1.9031 1.92814 1.95283 1.97705 2.00086 2.02421 2.04716 2.06968 2.09191 2.11375 2.13533 2.15667 2.17764 2.19846 2.21885 2.23898 2.25874 2.27806 2.29705 2.31557 2.33374 2.35155 2.36904 2.38625 2.40317 2.41982 2.43613 2.45205 2.46764 2.48257 2.49725 2.51106 2.52466 2.53727 2.54974 2.56107 2.57235 2.58236 2.59235 2.60098 2.60961 2.61686 2.62409 2.63008 2.63586 2.64077 2.64513 2.64912 2.6522 2.65537 2.65741 2.65981 2.6611 2.66306 2.66411 2.66605 1.10254 1.2928 1.34716 1.30762 1.23138 1.14435 1.0649 1.02548 1.01965 1.02237 1.0245 1.02489 1.0235 1.02199 1.02071 1.02151 1.0248 1.02908 1.03409 1.03981 1.04593 1.05217 1.0586 1.06522 1.07196 1.07868 1.08522 1.09149 1.09742 1.10298 1.10815 1.11296 1.1175 1.12178 1.12564 1.1288 1.13095 1.13157 1.1303 1.12748 1.11886 1.0981 1.04861 0.934907 0.683053 0.282577 0.113924 0.147147 0.103668 0.0662197 0.043605 0.080315 0.130748 0.179491 0.225181 0.266776 0.304381 0.339924 0.375324 0.410253 0.443588 0.47537 0.505819 0.535076 0.563262 0.5903 0.616245 0.641014 0.664742 0.687451 0.709355 0.73052 0.751159 0.771291 0.79107 0.810457 0.829658 0.848493 0.867339 0.885742 0.904314 0.922245 0.940642 0.957964 0.976245 0.992998 1.01095 1.02752 1.04477 1.06139 1.07758 1.09422 1.10927 1.1257 1.13961 1.15567 1.16819 1.18318 1.19291 1.20316 1.14211 1.25781 1.32289 1.36219 1.40228 1.43349 1.4435 1.43946 1.42436 1.40286 1.38573 1.38097 1.38184 1.38394 1.38616 1.38744 1.38873 1.39013 1.39195 1.39453 1.39753 1.40116 1.40548 1.41016 1.4148 1.41938 1.42397 1.42862 1.43331 1.43803 1.44274 1.44737 1.45187 1.45627 1.4604 1.46442 1.46764 1.46951 1.46993 1.4688 1.46285 1.44605 1.40539 1.31044 1.10224 0.716489 0.398917 0.296005 0.326866 0.38541 0.438719 0.480728 0.516762 0.552874 0.589002 0.622849 0.653442 0.681566 0.708972 0.735782 0.761978 0.786393 0.810099 0.832199 0.854064 0.874432 0.894672 0.913367 0.932342 0.949821 0.96789 0.984261 1.00127 1.01664 1.03242 1.04715 1.06166 1.07618 1.08949 1.10404 1.11654 1.13101 1.14334 1.15801 1.17023 1.18526 1.19735 1.21262 1.22452 1.23992 1.25156 1.26696 1.27831 1.29366 1.30471 1.31997 1.3304 1.34507 1.35322 1.3645 1.13956 1.24698 1.34276 1.43543 1.52047 1.58717 1.6196 1.62225 1.61721 1.6032 1.58398 1.56941 1.56115 1.55918 1.55987 1.56098 1.56254 1.56415 1.56559 1.56717 1.569 1.57119 1.57379 1.57673 1.57992 1.58331 1.58687 1.59059 1.59442 1.59838 1.60248 1.60662 1.61092 1.61507 1.61946 1.62337 1.62732 1.62946 1.6304 1.63009 1.62655 1.61436 1.58439 1.51158 1.35192 1.03353 0.695311 0.569768 0.60082 0.671562 0.74387 0.79688 0.836663 0.866053 0.888656 0.908949 0.927958 0.94563 0.962272 0.978542 0.996103 1.01255 1.02976 1.04559 1.06133 1.07627 1.09069 1.105 1.11821 1.132 1.14427 1.15755 1.16936 1.18227 1.19375 1.20642 1.21763 1.23022 1.24127 1.25365 1.2644 1.2764 1.28665 1.29814 1.30787 1.31894 1.32829 1.3391 1.34816 1.35887 1.36768 1.37837 1.38694 1.3977 1.40612 1.41718 1.42526 1.43636 1.44283 1.45152 1.14617 1.25558 1.35493 1.44667 1.52765 1.5956 1.64817 1.68547 1.70578 1.71036 1.70862 1.70163 1.69083 1.68129 1.67589 1.67489 1.67578 1.67727 1.67945 1.68176 1.68371 1.68553 1.68741 1.68953 1.69198 1.69474 1.69778 1.70104 1.7045 1.7081 1.71186 1.71563 1.71972 1.72356 1.72787 1.73151 1.73519 1.737 1.73776 1.73733 1.73348 1.72182 1.69407 1.6319 1.51057 1.29609 1.02082 0.855961 0.876238 0.924132 0.977855 1.02359 1.05543 1.07516 1.08678 1.09655 1.10389 1.11033 1.1169 1.12411 1.13176 1.14134 1.15253 1.1647 1.17616 1.18827 1.19903 1.21058 1.22118 1.23267 1.24329 1.25488 1.26547 1.277 1.28758 1.29925 1.30988 1.32144 1.33177 1.34299 1.35295 1.36382 1.37337 1.38383 1.39296 1.40304 1.41177 1.42147 1.4298 1.4391 1.44701 1.45591 1.4634 1.4719 1.47892 1.48703 1.49365 1.50152 1.50694 1.51153 1.14635 1.25382 1.35004 1.43806 1.51808 1.58946 1.65256 1.70541 1.74655 1.77344 1.78413 1.78424 1.78211 1.776 1.76754 1.76095 1.75639 1.75516 1.75565 1.75677 1.75845 1.76065 1.76295 1.7652 1.76743 1.76983 1.77238 1.77524 1.77823 1.78161 1.78499 1.78867 1.79245 1.79607 1.80003 1.80326 1.80575 1.80682 1.80696 1.80487 1.79744 1.77831 1.73595 1.6473 1.50899 1.36596 1.25247 1.1286 1.06085 1.05253 1.07481 1.10158 1.13198 1.15541 1.1729 1.18539 1.19337 1.19961 1.20469 1.20936 1.21403 1.21948 1.22666 1.23652 1.24765 1.2588 1.26949 1.28027 1.29074 1.30147 1.31199 1.32287 1.33355 1.34465 1.35545 1.36648 1.37709 1.38785 1.39811 1.4085 1.41839 1.42839 1.43784 1.44739 1.45642 1.46557 1.47421 1.48297 1.49117 1.49942 1.50709 1.51482 1.52198 1.52926 1.53587 1.54238 1.54819 1.55337 1.55803 1.55996 1.14092 1.24309 1.33721 1.42296 1.50156 1.57312 1.63702 1.6934 1.741 1.78006 1.80993 1.82907 1.8372 1.83783 1.83654 1.83241 1.82637 1.82119 1.81793 1.81736 1.81825 1.81955 1.82167 1.82437 1.8272 1.8298 1.83235 1.8349 1.83754 1.84057 1.8436 1.84742 1.85087 1.85518 1.85847 1.86147 1.86282 1.86306 1.86157 1.85488 1.83841 1.79963 1.71993 1.58591 1.46088 1.40326 1.37051 1.31918 1.25773 1.20632 1.17779 1.17337 1.18686 1.20194 1.22047 1.23873 1.25135 1.26027 1.26756 1.27351 1.27821 1.28233 1.2872 1.2937 1.30226 1.31186 1.32198 1.33235 1.34279 1.35327 1.36384 1.37457 1.38526 1.39599 1.40669 1.41733 1.42784 1.43826 1.44856 1.45872 1.46869 1.47852 1.48818 1.49771 1.50702 1.51614 1.52502 1.53369 1.5421 1.5503 1.5582 1.5658 1.573 1.57981 1.58619 1.59213 1.59785 1.60253 1.60675 1.6062 1.1387 1.23182 1.31986 1.40204 1.47813 1.5487 1.61323 1.67181 1.72434 1.77014 1.80911 1.84017 1.8633 1.87717 1.88245 1.88258 1.88157 1.87847 1.87412 1.87046 1.86831 1.86769 1.8685 1.86956 1.87149 1.87413 1.87725 1.88009 1.88321 1.88596 1.88934 1.89223 1.89589 1.89891 1.90162 1.90309 1.90339 1.9017 1.89594 1.87928 1.84315 1.76505 1.62823 1.50099 1.44174 1.42917 1.42771 1.41798 1.39681 1.36783 1.33148 1.29379 1.26937 1.25961 1.2637 1.27257 1.28355 1.29662 1.30761 1.31618 1.32343 1.32966 1.33508 1.34036 1.34638 1.35367 1.36218 1.37157 1.38154 1.39203 1.40281 1.41367 1.42456 1.43546 1.44634 1.45719 1.46795 1.47859 1.48909 1.49952 1.50985 1.52003 1.53004 1.53986 1.5495 1.55896 1.56819 1.57718 1.5859 1.59438 1.6026 1.61054 1.61806 1.62513 1.63167 1.63769 1.64356 1.64825 1.65275 1.65227 1.13795 1.22274 1.305 1.38256 1.45579 1.52369 1.58752 1.64559 1.69967 1.74739 1.79057 1.82725 1.85854 1.88294 1.90083 1.91141 1.91604 1.91638 1.91576 1.91332 1.9101 1.907 1.90513 1.9049 1.90574 1.90707 1.90925 1.9126 1.91608 1.9201 1.92329 1.92702 1.92972 1.93213 1.93302 1.93309 1.93154 1.92528 1.91008 1.87384 1.79906 1.65911 1.52722 1.46073 1.44865 1.45583 1.46494 1.47188 1.47541 1.47256 1.45959 1.43707 1.40575 1.37056 1.34264 1.32674 1.32217 1.32795 1.33473 1.34432 1.35563 1.36486 1.37249 1.37961 1.38621 1.39224 1.39861 1.40596 1.41462 1.4243 1.43461 1.44528 1.45613 1.46701 1.47786 1.48868 1.49946 1.51017 1.52077 1.53125 1.54162 1.55194 1.56218 1.57233 1.58234 1.5922 1.60191 1.61146 1.62084 1.62999 1.63886 1.64743 1.65566 1.66355 1.67094 1.67764 1.68368 1.68869 1.69352 1.6938 1.13842 1.21524 1.29145 1.36457 1.4342 1.49961 1.56117 1.61851 1.67189 1.72103 1.76586 1.8062 1.84202 1.87267 1.89884 1.91897 1.9335 1.94183 1.94577 1.94619 1.94598 1.94454 1.94253 1.9407 1.94006 1.94065 1.94163 1.94302 1.94567 1.94847 1.95214 1.95487 1.95747 1.95807 1.95808 1.95646 1.95016 1.93511 1.89973 1.82567 1.68561 1.54597 1.47123 1.4575 1.46525 1.47775 1.49146 1.50791 1.52367 1.53305 1.53701 1.53461 1.5227 1.50103 1.47128 1.43604 1.40522 1.38362 1.37318 1.37328 1.37902 1.3869 1.39765 1.40806 1.41707 1.42516 1.43209 1.43833 1.44527 1.45333 1.46237 1.47209 1.4823 1.49291 1.50379 1.51475 1.5256 1.53629 1.54683 1.55724 1.56751 1.57768 1.58783 1.59797 1.60807 1.61811 1.62809 1.63798 1.64776 1.65741 1.66682 1.67609 1.68496 1.69361 1.70161 1.70921 1.71657 1.72237 1.72761 1.72889 1.14147 1.21075 1.28114 1.34971 1.41584 1.47862 1.5382 1.59409 1.64667 1.6956 1.74119 1.78301 1.82131 1.85553 1.88584 1.9116 1.93324 1.95011 1.96228 1.96929 1.97287 1.97348 1.97339 1.97257 1.97074 1.96939 1.96831 1.96886 1.96973 1.97121 1.97318 1.97594 1.97696 1.97696 1.97549 1.96958 1.95553 1.92128 1.84929 1.70974 1.56251 1.48158 1.46514 1.47183 1.48377 1.50012 1.51778 1.53792 1.55628 1.5734 1.58559 1.59315 1.59528 1.59259 1.58091 1.56044 1.53281 1.49814 1.46448 1.4374 1.42159 1.41702 1.42192 1.4289 1.43917 1.4516 1.46264 1.47222 1.48014 1.48727 1.49444 1.50233 1.51115 1.52071 1.53072 1.54108 1.55161 1.56214 1.57255 1.58281 1.59295 1.60297 1.61291 1.62278 1.63265 1.64255 1.65245 1.66235 1.6721 1.6819 1.69142 1.70095 1.71014 1.71904 1.72775 1.73594 1.7438 1.7504 1.75705 1.75906 1.14626 1.20832 1.27263 1.33663 1.39911 1.45889 1.51617 1.57041 1.62183 1.67003 1.71542 1.75762 1.79701 1.83311 1.86621 1.89579 1.92196 1.94422 1.96266 1.97708 1.98725 1.99323 1.99618 1.99685 1.99666 1.99629 1.99504 1.99434 1.99347 1.99386 1.9944 1.99481 1.99463 1.9931 1.98769 1.97314 1.94148 1.87167 1.73454 1.57863 1.48853 1.46887 1.4749 1.48744 1.50421 1.52334 1.54406 1.5647 1.58374 1.6021 1.61815 1.63151 1.64166 1.64758 1.64997 1.64836 1.63873 1.61999 1.59349 1.55862 1.52128 1.48926 1.46807 1.45888 1.46282 1.46983 1.48024 1.49473 1.50758 1.51814 1.52707 1.53516 1.54302 1.5512 1.55992 1.5692 1.57891 1.58891 1.59905 1.60914 1.6191 1.62894 1.63868 1.64834 1.65789 1.66752 1.67703 1.6867 1.69621 1.70575 1.71521 1.72451 1.73371 1.74266 1.75159 1.75963 1.76835 1.77492 1.78251 1.78517 1.15496 1.21003 1.26824 1.32698 1.38555 1.44253 1.49736 1.54963 1.5997 1.647 1.69188 1.73394 1.7736 1.81051 1.84493 1.87653 1.90541 1.93114 1.95384 1.97297 1.9889 2.00111 2.00994 2.01511 2.01785 2.01854 2.01852 2.01829 2.01711 2.01576 2.01449 2.01309 2.01021 2.00314 1.98898 1.95668 1.89084 1.75517 1.59406 1.49624 1.47341 1.47828 1.49034 1.50764 1.52658 1.54876 1.56958 1.58926 1.60767 1.62664 1.64393 1.66041 1.67407 1.68592 1.69489 1.70114 1.70364 1.70267 1.69435 1.67647 1.65026 1.61539 1.57554 1.53874 1.51262 1.50005 1.50346 1.51054 1.52137 1.53705 1.55061 1.5622 1.57237 1.5815 1.59005 1.59861 1.60742 1.61651 1.6259 1.63554 1.64527 1.65506 1.66468 1.67439 1.68392 1.69348 1.7029 1.71227 1.72159 1.73089 1.74011 1.74907 1.75827 1.76668 1.77584 1.78353 1.79249 1.79907 1.80693 1.80988 1.1665 1.21529 1.26717 1.32072 1.37449 1.42778 1.48008 1.53051 1.57868 1.62502 1.66905 1.71101 1.75058 1.78801 1.82307 1.85589 1.88642 1.91444 1.94003 1.96284 1.98276 1.99978 2.0135 2.02434 2.03172 2.0365 2.03857 2.03897 2.03863 2.03776 2.03513 2.03078 2.02325 2.00819 1.97586 1.91193 1.77953 1.61331 1.50402 1.47631 1.47986 1.49204 1.50791 1.52751 1.54994 1.57219 1.59149 1.61038 1.629 1.64771 1.66527 1.68211 1.69722 1.71162 1.72469 1.73649 1.74568 1.75211 1.75453 1.75393 1.74694 1.73052 1.70592 1.67201 1.63022 1.59013 1.55883 1.54245 1.5453 1.55244 1.56328 1.57925 1.59341 1.60539 1.61639 1.62624 1.63516 1.64385 1.65243 1.66122 1.67013 1.67937 1.68872 1.69817 1.70761 1.71716 1.72664 1.73604 1.74545 1.75454 1.76395 1.77265 1.78206 1.7902 1.79952 1.80704 1.81612 1.82275 1.83083 1.83395 1.18223 1.22503 1.27092 1.31913 1.36843 1.41784 1.46623 1.51426 1.56071 1.60526 1.64823 1.68936 1.72864 1.76607 1.80144 1.83495 1.86624 1.89579 1.9228 1.94815 1.97059 1.99115 2.00863 2.0237 2.03579 2.04493 2.05137 2.05419 2.05408 2.05324 2.05023 2.04262 2.02795 1.99657 1.93463 1.80858 1.63825 1.51583 1.48073 1.48181 1.49414 1.50967 1.52755 1.55071 1.57274 1.59297 1.61119 1.6301 1.64837 1.66716 1.68473 1.70195 1.71765 1.73334 1.74803 1.76247 1.77592 1.788 1.79766 1.80467 1.80792 1.80812 1.80282 1.78861 1.76513 1.73161 1.6885 1.64435 1.60738 1.58687 1.58939 1.59653 1.60701 1.62288 1.63731 1.64956 1.66082 1.67097 1.68002 1.68861 1.69688 1.70526 1.71374 1.72251 1.7315 1.74051 1.74977 1.75878 1.76821 1.77694 1.78645 1.79482 1.8044 1.81236 1.82188 1.82932 1.83855 1.84525 1.8535 1.85708 1.19763 1.2359 1.27709 1.32055 1.36554 1.41095 1.4567 1.50106 1.54537 1.58858 1.63 1.67015 1.70871 1.74564 1.78106 1.81471 1.84671 1.87688 1.90527 1.9318 1.95624 1.97908 1.99895 2.0177 2.03261 2.04635 2.0561 2.06288 2.06373 2.06235 2.05688 2.0447 2.01588 1.95886 1.83972 1.67058 1.53456 1.4882 1.48526 1.49809 1.51227 1.52955 1.55114 1.57399 1.594 1.61285 1.63077 1.64944 1.66803 1.6872 1.70521 1.72273 1.73886 1.75506 1.77047 1.78641 1.80172 1.81659 1.83044 1.84256 1.85246 1.85986 1.86321 1.86371 1.85938 1.84656 1.82369 1.79067 1.74673 1.69926 1.65604 1.63269 1.635 1.6421 1.65222 1.6677 1.68203 1.69427 1.70542 1.71562 1.72489 1.73327 1.74149 1.74946 1.75783 1.76591 1.77475 1.78288 1.79201 1.80004 1.80937 1.81721 1.82665 1.83427 1.84369 1.85101 1.8602 1.86699 1.87505 1.87903 1.21475 1.2501 1.28663 1.32559 1.36584 1.40769 1.44949 1.49194 1.53287 1.57363 1.61421 1.65261 1.69053 1.72672 1.76171 1.79513 1.82746 1.85769 1.88708 1.91421 1.93992 1.96428 1.98574 2.00699 2.02424 2.04107 2.0537 2.06284 2.06369 2.06097 2.05115 2.02855 1.97559 1.87133 1.70095 1.55654 1.49856 1.49202 1.50386 1.51815 1.53397 1.5551 1.57758 1.59879 1.61732 1.63527 1.65276 1.67151 1.69035 1.7095 1.72747 1.74501 1.76157 1.77814 1.79417 1.81075 1.82663 1.84273 1.8578 1.87213 1.88522 1.89666 1.90634 1.91374 1.91726 1.91797 1.9145 1.90278 1.88055 1.84784 1.80289 1.75238 1.7039 1.67835 1.6802 1.68732 1.69709 1.71205 1.72628 1.73835 1.74955 1.75976 1.76943 1.77754 1.78612 1.79365 1.80204 1.80936 1.81802 1.82536 1.83418 1.84147 1.85049 1.85773 1.86683 1.87392 1.88288 1.88953 1.89745 1.90129 1.2305 1.26381 1.29851 1.3336 1.37109 1.40811 1.44701 1.48574 1.52537 1.56327 1.60092 1.63896 1.67468 1.71015 1.74485 1.77692 1.80974 1.83941 1.86891 1.89698 1.9226 1.94866 1.97076 1.99361 2.0127 2.03085 2.04602 2.0536 2.0523 2.04635 2.02838 1.98264 1.88981 1.72336 1.57695 1.50972 1.49848 1.50988 1.52457 1.5412 1.56178 1.58497 1.60608 1.62556 1.64295 1.66051 1.67802 1.69665 1.71501 1.73371 1.75142 1.76908 1.78563 1.80215 1.81821 1.83457 1.85054 1.8668 1.88216 1.89727 1.91132 1.9247 1.93713 1.94831 1.95808 1.96569 1.96942 1.97031 1.96744 1.95669 1.93545 1.90298 1.85761 1.80474 1.7515 1.72425 1.7251 1.73184 1.74138 1.75548 1.76947 1.78128 1.79267 1.80269 1.81263 1.82073 1.82944 1.83661 1.84475 1.85163 1.85995 1.86679 1.87521 1.88211 1.8908 1.89769 1.90644 1.91289 1.92086 1.92444 1.24478 1.2767 1.30885 1.34183 1.37571 1.41197 1.4472 1.48359 1.51985 1.55696 1.5924 1.62737 1.66358 1.69592 1.73051 1.76208 1.79299 1.82417 1.85165 1.88102 1.90639 1.93241 1.95643 1.97825 2.00038 2.01756 2.03282 2.03521 2.03113 2.01616 1.98073 1.89164 1.74254 1.5908 1.51594 1.50128 1.5127 1.52942 1.54745 1.57024 1.59386 1.61624 1.63587 1.65432 1.67132 1.68865 1.7057 1.72361 1.74132 1.75945 1.7768 1.79394 1.81003 1.82627 1.84199 1.85818 1.87414 1.89037 1.90588 1.92133 1.93576 1.94995 1.96334 1.97635 1.98865 1.99991 2.00996 2.01764 2.02168 2.02257 2.02018 2.01023 1.98992 1.95796 1.91222 1.85737 1.80017 1.77148 1.77057 1.7773 1.7864 1.79949 1.8129 1.82431 1.83557 1.84534 1.85516 1.86318 1.8717 1.87853 1.8863 1.89282 1.90073 1.90717 1.91521 1.92173 1.93008 1.93639 1.94428 1.9478 1.26334 1.2918 1.321 1.35168 1.38296 1.41577 1.4501 1.48401 1.51808 1.55277 1.58727 1.62054 1.65381 1.68706 1.71798 1.75026 1.77979 1.80938 1.83834 1.86475 1.89254 1.91658 1.94182 1.96405 1.98502 2.00374 2.01051 2.00804 1.9975 1.9668 1.89402 1.7452 1.59197 1.51219 1.49702 1.51045 1.52913 1.55011 1.57516 1.60001 1.62306 1.64483 1.66439 1.68298 1.69998 1.71695 1.73348 1.75087 1.76812 1.78586 1.80274 1.81949 1.83532 1.85134 1.86683 1.88297 1.89868 1.91472 1.93011 1.94553 1.9601 1.9747 1.98857 2.00235 2.01557 2.02839 2.04042 2.05136 2.06108 2.06834 2.07237 2.07324 2.0713 2.06221 2.04293 2.012 1.96603 1.90951 1.84938 1.81905 1.81616 1.82282 1.83142 1.84336 1.85602 1.86712 1.87814 1.88752 1.89706 1.90489 1.91317 1.91961 1.92705 1.93318 1.94064 1.94667 1.95423 1.96009 1.9674 1.97072 1.28251 1.30446 1.33325 1.36211 1.39127 1.42157 1.45317 1.48611 1.51825 1.55084 1.58397 1.61601 1.64829 1.67918 1.71052 1.73999 1.76991 1.79823 1.82582 1.85336 1.87824 1.90462 1.92721 1.9506 1.97005 1.98221 1.98192 1.97291 1.94655 1.88409 1.74517 1.58769 1.50088 1.48613 1.50052 1.52168 1.54565 1.57362 1.59931 1.62363 1.6467 1.66928 1.69012 1.70963 1.72716 1.74437 1.7612 1.77888 1.79628 1.81383 1.83041 1.84681 1.8624 1.87815 1.89355 1.90929 1.92463 1.94031 1.95547 1.97072 1.98532 1.99988 2.01367 2.02739 2.04051 2.05347 2.06593 2.07802 2.08932 2.09976 2.10905 2.11607 2.12049 2.12146 2.12003 2.11196 2.0938 2.06408 2.01762 1.95976 1.89752 1.86545 1.8604 1.86688 1.87493 1.88551 1.89801 1.90874 1.91955 1.92858 1.93804 1.94571 1.95377 1.95988 1.96709 1.97289 1.97992 1.98529 1.99183 1.99457 1.30668 1.32274 1.34774 1.37505 1.40233 1.42981 1.45867 1.48911 1.52002 1.55095 1.58187 1.61302 1.64344 1.67416 1.70333 1.73304 1.76105 1.78925 1.81634 1.84241 1.86856 1.89213 1.91648 1.93638 1.95212 1.95369 1.94573 1.92202 1.86847 1.73899 1.57913 1.48417 1.46776 1.48272 1.50575 1.53394 1.56547 1.594 1.61968 1.64456 1.66812 1.6907 1.71144 1.73133 1.75032 1.76955 1.78822 1.80691 1.82465 1.84209 1.8585 1.8748 1.89031 1.90593 1.92087 1.93604 1.95084 1.96599 1.98075 1.99571 2.01002 2.02426 2.03772 2.05119 2.06391 2.07678 2.08907 2.10137 2.11321 2.12475 2.13566 2.1458 2.15495 2.16199 2.16691 2.16801 2.167 2.1599 2.14282 2.11394 2.06749 2.00809 1.94436 1.91053 1.90315 1.9093 1.91648 1.92574 1.93845 1.94854 1.95908 1.96783 1.97726 1.98471 1.99261 1.99857 2.00572 2.01097 2.01723 2.01973 1.33326 1.34019 1.35964 1.38686 1.41387 1.44066 1.46723 1.49497 1.52367 1.55283 1.58254 1.61149 1.64098 1.66968 1.69863 1.7263 1.75425 1.78104 1.80753 1.83357 1.85812 1.88263 1.90381 1.92155 1.92478 1.91781 1.89536 1.84855 1.72604 1.56541 1.46248 1.44433 1.46026 1.48522 1.51611 1.55108 1.58179 1.60987 1.63627 1.66228 1.68656 1.70934 1.73013 1.75051 1.77058 1.79108 1.811 1.83066 1.84914 1.86732 1.88451 1.90133 1.91702 1.93238 1.94696 1.96184 1.97636 1.99139 2.00594 2.02075 2.03473 2.04879 2.06193 2.07514 2.08758 2.10023 2.11231 2.12458 2.13646 2.14824 2.15973 2.17082 2.1814 2.19134 2.20036 2.20742 2.21284 2.21402 2.21322 2.20698 2.19112 2.16254 2.11638 2.05573 1.99093 1.95485 1.94562 1.95089 1.95708 1.96576 1.97823 1.98728 1.99753 2.00592 2.01549 2.0223 2.03014 2.03559 2.04214 2.0447 1.37181 1.36703 1.37777 1.39833 1.42491 1.45091 1.47621 1.50249 1.52907 1.5565 1.58409 1.61239 1.63959 1.66768 1.69466 1.72228 1.7485 1.77506 1.80057 1.82556 1.84987 1.87182 1.89075 1.89603 1.889 1.86982 1.82397 1.7122 1.55082 1.4396 1.41908 1.43478 1.46013 1.49345 1.53055 1.56384 1.59383 1.6231 1.65118 1.67814 1.70268 1.72579 1.74736 1.76859 1.78914 1.80989 1.8304 1.85102 1.87095 1.89047 1.90861 1.92602 1.94214 1.95795 1.97296 1.98809 2.00265 2.01749 2.03169 2.04611 2.05977 2.07356 2.08651 2.09957 2.11191 2.12436 2.13628 2.1483 2.15997 2.17163 2.18309 2.19437 2.20538 2.21614 2.22629 2.23599 2.24467 2.25165 2.25718 2.25834 2.25755 2.25206 2.23721 2.20937 2.16428 2.10257 2.03754 1.99865 1.98807 1.99168 1.99742 2.00542 2.01742 2.02544 2.03538 2.04322 2.05259 2.05862 2.06595 2.06855 1.40568 1.39352 1.39908 1.415 1.43813 1.46294 1.48676 1.51102 1.53574 1.56117 1.58731 1.61338 1.64026 1.66607 1.69261 1.71825 1.74443 1.76951 1.79466 1.81864 1.84114 1.86047 1.86718 1.86074 1.84244 1.79742 1.69734 1.53044 1.41258 1.39101 1.40673 1.4329 1.46796 1.50738 1.54229 1.57404 1.60423 1.63394 1.66225 1.68936 1.71469 1.73916 1.76234 1.78503 1.80658 1.82785 1.84855 1.86962 1.89035 1.91078 1.93002 1.9484 1.96548 1.98197 1.99751 2.01279 2.02745 2.04212 2.05632 2.07061 2.08433 2.09801 2.11102 2.1239 2.13612 2.14825 2.15988 2.17154 2.18285 2.19431 2.20547 2.21678 2.22775 2.23868 2.24927 2.25958 2.26941 2.27877 2.28723 2.29419 2.29985 2.30108 2.30041 2.2956 2.28188 2.255 2.21065 2.14916 2.08351 2.0414 2.03031 2.03167 2.03703 2.04435 2.05529 2.06273 2.07241 2.07944 2.08805 2.09082 1.47945 1.42855 1.42298 1.43158 1.44946 1.47464 1.49848 1.5215 1.5445 1.56748 1.59161 1.61641 1.64103 1.66666 1.69113 1.71634 1.74066 1.76524 1.78878 1.81118 1.8305 1.83836 1.83217 1.8143 1.77015 1.67765 1.50329 1.38205 1.36032 1.37694 1.40418 1.44108 1.48238 1.51894 1.55162 1.58287 1.61325 1.64311 1.67164 1.69925 1.72542 1.75074 1.77478 1.79812 1.82052 1.84277 1.86434 1.88581 1.90659 1.9273 1.94714 1.96648 1.98452 2.00191 2.01823 2.03436 2.04977 2.06516 2.07986 2.09449 2.10838 2.12214 2.13516 2.14807 2.16025 2.17238 2.18387 2.19537 2.20642 2.21752 2.22837 2.23925 2.24997 2.26064 2.27115 2.28149 2.29162 2.30152 2.31096 2.32014 2.32838 2.33545 2.34121 2.34257 2.34214 2.33787 2.3252 2.29974 2.2551 2.19511 2.13021 2.08371 2.07167 2.07022 2.07576 2.08202 2.09116 2.09813 2.10707 2.11065 1.62402 1.47704 1.45193 1.45178 1.46386 1.48311 1.50745 1.53066 1.55313 1.57548 1.59751 1.62051 1.64387 1.66759 1.69163 1.71541 1.73886 1.76202 1.78352 1.8028 1.81067 1.80418 1.78588 1.7422 1.64737 1.47769 1.35355 1.33152 1.34781 1.37491 1.41253 1.45573 1.49398 1.52816 1.56004 1.59116 1.62132 1.65093 1.67949 1.7075 1.73446 1.76066 1.7856 1.8098 1.83306 1.85598 1.87826 1.90032 1.92159 1.94249 1.96261 1.98246 2.00142 2.01988 2.03728 2.0543 2.0704 2.0864 2.10151 2.11671 2.13099 2.14544 2.15883 2.17237 2.18479 2.19736 2.20892 2.22063 2.23156 2.2426 2.25309 2.26369 2.27388 2.28425 2.29422 2.30443 2.31416 2.32411 2.33361 2.34313 2.35223 2.36115 2.36923 2.37637 2.38222 2.38376 2.38363 2.38002 2.36765 2.34379 2.29845 2.24234 2.17624 2.12587 2.11246 2.10793 2.11324 2.11767 2.12436 2.12852 1.85734 1.56822 1.48783 1.47538 1.47996 1.49456 1.5159 1.53935 1.56166 1.58328 1.60459 1.62587 1.64767 1.66984 1.69262 1.71502 1.73765 1.75854 1.77742 1.78501 1.77832 1.75941 1.71532 1.61774 1.45016 1.32321 1.30112 1.31786 1.3454 1.38404 1.42847 1.46851 1.50403 1.53691 1.56819 1.59879 1.6286 1.65827 1.6873 1.71604 1.74358 1.77017 1.7954 1.81985 1.84346 1.86687 1.88981 1.9126 1.93473 1.95634 1.97697 1.99707 2.01655 2.0358 2.0543 2.07233 2.0895 2.10631 2.12241 2.13813 2.15317 2.16779 2.1818 2.19541 2.2085 2.2212 2.23337 2.24513 2.25633 2.26722 2.27756 2.28789 2.29767 2.30776 2.31731 2.32726 2.33672 2.34643 2.35583 2.36516 2.37443 2.38343 2.39228 2.4009 2.40876 2.4159 2.42158 2.42341 2.42349 2.42 2.40916 2.38554 2.33999 2.28977 2.21961 2.16879 2.15114 2.14544 2.14594 2.14783 2.28239 1.76559 1.55401 1.50963 1.50301 1.50974 1.52515 1.5474 1.56893 1.59021 1.61108 1.63184 1.65272 1.67361 1.69469 1.71591 1.73603 1.75415 1.76133 1.75414 1.73449 1.68942 1.58946 1.42263 1.29245 1.27041 1.28808 1.31664 1.35653 1.40145 1.44292 1.47996 1.51363 1.5454 1.576 1.60631 1.63627 1.66637 1.6958 1.72467 1.7521 1.77864 1.80391 1.82876 1.85296 1.87708 1.90062 1.92391 1.94644 1.96855 1.98987 2.01071 2.03073 2.05041 2.06955 2.08842 2.1064 2.12402 2.14071 2.15723 2.17279 2.18827 2.20276 2.21724 2.23067 2.2441 2.25641 2.26872 2.27989 2.29114 2.3013 2.31174 2.32123 2.3312 2.3404 2.35014 2.3593 2.36878 2.37794 2.38706 2.39613 2.40498 2.41381 2.42252 2.43098 2.43939 2.44698 2.45398 2.45955 2.46139 2.46153 2.45828 2.44823 2.4246 2.38511 2.32993 2.25816 2.21407 2.18342 2.17868 2.56798 2.08012 1.69132 1.55147 1.52858 1.52809 1.53838 1.554 1.57624 1.59686 1.61725 1.63702 1.65725 1.67717 1.69741 1.71647 1.73348 1.7397 1.73171 1.71109 1.6645 1.56167 1.39424 1.26073 1.23948 1.25881 1.28892 1.3307 1.37556 1.41752 1.45546 1.49014 1.52254 1.55374 1.58422 1.61463 1.64478 1.67481 1.70403 1.73257 1.75996 1.78665 1.81241 1.83777 1.86245 1.88686 1.91069 1.93431 1.95735 1.98014 2.00217 2.02376 2.04445 2.0646 2.08398 2.10323 2.12189 2.14023 2.15769 2.17478 2.19104 2.20692 2.22197 2.2367 2.25066 2.26435 2.27735 2.29006 2.30205 2.31374 2.32462 2.33534 2.34519 2.35517 2.36431 2.3738 2.3826 2.3917 2.40046 2.40915 2.41795 2.42632 2.43507 2.44329 2.45192 2.4601 2.46834 2.47641 2.48367 2.49046 2.49578 2.49747 2.49756 2.49466 2.48462 2.46157 2.42473 2.36384 2.29731 2.262 2.76815 2.44014 1.93171 1.64381 1.56048 1.5485 1.55111 1.56404 1.58146 1.60418 1.62417 1.64402 1.66254 1.68153 1.69913 1.71532 1.72034 1.71129 1.68943 1.64069 1.53433 1.36458 1.22812 1.20833 1.22983 1.26211 1.30608 1.35117 1.39301 1.43143 1.46685 1.50017 1.53194 1.56299 1.5935 1.62395 1.65394 1.68371 1.71273 1.74126 1.76887 1.79585 1.82199 1.84759 1.87254 1.89716 1.92133 1.94519 1.96857 1.99146 2.01371 2.03542 2.05646 2.07709 2.09704 2.11665 2.13571 2.1546 2.17266 2.19026 2.20693 2.22329 2.23872 2.25399 2.26838 2.28271 2.29614 2.30951 2.32188 2.33418 2.34538 2.35658 2.36669 2.37695 2.38622 2.39582 2.40461 2.41373 2.42236 2.43101 2.43963 2.4478 2.45644 2.46417 2.47282 2.48037 2.4888 2.49646 2.50437 2.51194 2.51888 2.52512 2.53008 2.53147 2.53131 2.52799 2.51863 2.49238 2.45235 2.42399 2.87446 2.70656 2.34664 1.84797 1.63286 1.58066 1.5725 1.57609 1.58969 1.60878 1.63112 1.65055 1.66992 1.68601 1.70102 1.70364 1.6933 1.66976 1.61795 1.507 1.33211 1.19531 1.17778 1.20233 1.23678 1.28292 1.32839 1.37018 1.40859 1.44453 1.47857 1.51125 1.54283 1.57381 1.6042 1.63442 1.66414 1.69369 1.72256 1.75106 1.77868 1.80579 1.83206 1.8579 1.88312 1.90797 1.9323 1.95618 1.97947 2.00227 2.0245 2.04631 2.06763 2.08855 2.109 2.12901 2.14844 2.16752 2.18604 2.20413 2.22133 2.23813 2.25409 2.26978 2.28465 2.29938 2.3133 2.32712 2.34009 2.35296 2.36489 2.37669 2.38753 2.3982 2.40805 2.41773 2.42681 2.43573 2.44436 2.45269 2.46108 2.46894 2.47727 2.48462 2.49307 2.49999 2.50848 2.51524 2.52346 2.5303 2.53782 2.54458 2.55106 2.55636 2.56083 2.56171 2.56118 2.55745 2.54423 2.53802 2.93165 2.84412 2.64818 2.21734 1.80535 1.63253 1.59942 1.59495 1.60061 1.61486 1.63497 1.6556 1.67324 1.68858 1.69031 1.67857 1.65291 1.59684 1.47982 1.29743 1.16294 1.14921 1.17598 1.2129 1.26119 1.30696 1.34872 1.38697 1.42296 1.45762 1.49118 1.52375 1.55532 1.58616 1.61634 1.6462 1.67555 1.7047 1.73327 1.76152 1.78911 1.81627 1.84275 1.86875 1.89409 1.9189 1.94312 1.96682 1.99001 2.01276 2.03505 2.0569 2.07836 2.09939 2.12003 2.14027 2.16 2.17927 2.19794 2.2163 2.23395 2.25112 2.26755 2.28366 2.299 2.31414 2.32852 2.34273 2.35621 2.36952 2.38205 2.39435 2.4059 2.41704 2.42758 2.43758 2.44715 2.45618 2.46502 2.47335 2.48168 2.48955 2.4976 2.50499 2.51295 2.51982 2.52775 2.53412 2.54208 2.54806 2.5559 2.56168 2.56894 2.57452 2.58064 2.58492 2.58854 2.58916 2.58807 2.58972 2.9626 2.9162 2.80736 2.52902 2.06596 1.74395 1.63526 1.61603 1.61533 1.6243 1.63862 1.65742 1.67369 1.67723 1.66493 1.63694 1.57551 1.4521 1.26244 1.13232 1.12143 1.14982 1.18991 1.24041 1.28661 1.32835 1.36662 1.40283 1.43776 1.47191 1.50517 1.53754 1.56886 1.59943 1.62919 1.65861 1.68749 1.7162 1.74441 1.7724 1.7998 1.82683 1.85321 1.87909 1.90437 1.92908 1.95327 1.97691 2.00007 2.02272 2.04494 2.06673 2.08817 2.1092 2.12993 2.15022 2.17013 2.18957 2.20846 2.22691 2.24487 2.26236 2.27924 2.29576 2.31161 2.3272 2.3421 2.35673 2.37072 2.38443 2.39752 2.41027 2.42249 2.43414 2.44543 2.45596 2.46619 2.47561 2.48481 2.49329 2.5016 2.50941 2.51713 2.52437 2.53181 2.53853 2.54584 2.55209 2.55933 2.56513 2.57228 2.57771 2.58462 2.58966 2.59612 2.60054 2.60603 2.60929 2.61197 2.61373 2.98233 2.95455 2.8981 2.76406 2.45131 1.97818 1.7242 1.64914 1.63498 1.63553 1.64388 1.65682 1.66315 1.65062 1.62024 1.55034 1.41927 1.22456 1.10231 1.09525 1.1241 1.16691 1.21959 1.26645 1.30824 1.34662 1.38307 1.41839 1.45288 1.48668 1.51962 1.55168 1.58271 1.61293 1.6423 1.67124 1.69961 1.7278 1.75552 1.78307 1.81007 1.83678 1.86287 1.88856 1.91366 1.93826 1.96233 1.98589 2.00893 2.03155 2.05372 2.07555 2.09701 2.11812 2.13886 2.15918 2.17907 2.19852 2.21746 2.23599 2.25405 2.2718 2.28908 2.30604 2.3224 2.33845 2.35384 2.36887 2.3833 2.39735 2.41091 2.42402 2.4368 2.44887 2.46082 2.47176 2.48266 2.49243 2.50215 2.51085 2.51945 2.52733 2.53506 2.54227 2.5495 2.55609 2.56302 2.56904 2.57572 2.5812 2.58763 2.59265 2.59878 2.60343 2.6092 2.61346 2.6187 2.62234 2.62641 2.62838 2.98972 2.97868 2.94633 2.88167 2.71859 2.39159 1.92973 1.72237 1.66842 1.65448 1.65258 1.65091 1.63872 1.60532 1.52378 1.37828 1.18235 1.07238 1.07026 1.09887 1.14277 1.197 1.24493 1.28728 1.32567 1.36209 1.39757 1.43251 1.46682 1.50035 1.53294 1.56458 1.59521 1.62505 1.65408 1.68262 1.71059 1.73831 1.76554 1.79259 1.81912 1.8454 1.87112 1.89641 1.92115 1.94538 1.9692 1.99257 2.0156 2.03829 2.06061 2.08259 2.10419 2.12538 2.14616 2.16648 2.18637 2.20582 2.22482 2.24346 2.26168 2.2796 2.29713 2.31433 2.33099 2.34735 2.3631 2.37851 2.39338 2.40788 2.42192 2.4355 2.44875 2.46129 2.47372 2.48511 2.49653 2.50673 2.517 2.52603 2.53514 2.54317 2.55125 2.55847 2.56582 2.5723 2.57913 2.58493 2.59128 2.59642 2.6023 2.60687 2.61225 2.61637 2.62129 2.62501 2.62946 2.63274 2.63645 2.63843 2.99546 2.98812 2.97493 2.93872 2.86187 2.68172 2.31356 1.90136 1.72092 1.67918 1.66257 1.64188 1.59824 1.50122 1.33015 1.13563 1.04249 1.04714 1.07523 1.12018 1.17497 1.22357 1.26649 1.30511 1.34124 1.37628 1.4109 1.44517 1.47886 1.51181 1.54388 1.57513 1.60546 1.63511 1.66399 1.69239 1.72011 1.74749 1.77429 1.80085 1.82683 1.85254 1.87768 1.90244 1.92676 1.95066 1.97423 1.99745 2.02037 2.04306 2.06546 2.08761 2.10942 2.13082 2.15181 2.17228 2.19232 2.2119 2.23105 2.24984 2.26823 2.28632 2.30402 2.3214 2.33824 2.35483 2.37085 2.38658 2.40183 2.41676 2.4312 2.44526 2.45887 2.47189 2.48464 2.49647 2.50824 2.51883 2.52962 2.53896 2.54871 2.55693 2.56558 2.57288 2.58053 2.58703 2.59386 2.59959 2.60572 2.61069 2.61612 2.62035 2.62509 2.62865 2.63279 2.6358 2.63943 2.64196 2.645 2.64643 2.99729 2.99457 2.98572 2.97011 2.92566 2.83596 2.61197 2.20988 1.85367 1.71496 1.66836 1.61221 1.49455 1.28134 1.08193 1.00654 1.01741 1.04687 1.09479 1.14965 1.19868 1.24223 1.28175 1.3188 1.35433 1.38896 1.42289 1.45625 1.48903 1.52127 1.55282 1.58372 1.61388 1.64339 1.6721 1.70026 1.72774 1.75481 1.7813 1.80749 1.83317 1.85858 1.88356 1.90821 1.93252 1.95641 1.97997 2.00315 2.02601 2.04854 2.0707 2.09254 2.11399 2.13507 2.15578 2.17614 2.19613 2.21581 2.23509 2.25402 2.27257 2.29068 2.30844 2.32583 2.34285 2.35958 2.37591 2.39196 2.40765 2.423 2.43793 2.45248 2.46655 2.48012 2.49324 2.50571 2.51782 2.52905 2.5401 2.55 2.56008 2.56872 2.57781 2.58537 2.59343 2.6 2.60703 2.61268 2.6187 2.62343 2.6285 2.63233 2.63654 2.63955 2.64304 2.6454 2.64831 2.65018 2.65252 2.65351 2.99857 2.99722 2.99236 2.98489 2.96045 2.91472 2.80148 2.53321 2.0958 1.79763 1.66379 1.52377 1.25566 1.02299 0.952433 0.968944 1.00548 1.05989 1.1161 1.16522 1.20906 1.24959 1.28797 1.32471 1.36008 1.39439 1.42791 1.46087 1.49328 1.52515 1.55635 1.5869 1.61666 1.64578 1.67416 1.70203 1.72925 1.75608 1.78233 1.80832 1.83382 1.85911 1.88403 1.90866 1.93299 1.95692 1.98052 2.00369 2.02647 2.04886 2.07085 2.0925 2.1138 2.13476 2.1554 2.17575 2.19574 2.21548 2.2348 2.25379 2.2724 2.29056 2.30844 2.32591 2.34308 2.35998 2.37656 2.3929 2.40891 2.42461 2.43997 2.45495 2.46952 2.48358 2.49721 2.51019 2.52281 2.53462 2.54622 2.55682 2.56736 2.5767 2.58614 2.59423 2.60256 2.60943 2.61661 2.62233 2.62834 2.63298 2.63782 2.64154 2.64526 2.64821 2.65102 2.65336 2.65551 2.65737 2.65898 2.66034 2.99934 2.9982 2.99645 2.99046 2.98069 2.95042 2.89303 2.74687 2.44308 1.96948 1.63618 1.28041 0.953693 0.86573 0.890568 0.933228 0.996358 1.06009 1.11379 1.16031 1.20326 1.24405 1.28282 1.31969 1.35494 1.38897 1.42214 1.45471 1.48667 1.51802 1.54865 1.57862 1.60786 1.63655 1.66462 1.69225 1.71932 1.74604 1.77225 1.79822 1.82377 1.84916 1.87424 1.89909 1.92368 1.94789 1.97176 1.99517 2.01814 2.04066 2.06274 2.08444 2.10581 2.12689 2.14769 2.16826 2.18844 2.20843 2.22799 2.24734 2.2664 2.28507 2.3035 2.32152 2.33926 2.35668 2.37379 2.39062 2.40711 2.42329 2.43911 2.4545 2.46956 2.48393 2.49807 2.51132 2.5244 2.53649 2.54847 2.55936 2.57022 2.57988 2.58956 2.59798 2.60645 2.6136 2.62084 2.62678 2.63272 2.63754 2.64217 2.64596 2.64937 2.65227 2.65466 2.65684 2.65842 2.66004 2.66125 2.66278 2.99954 2.99871 2.99751 2.99308 2.98644 2.96353 2.92422 2.81158 2.58678 2.10736 1.51703 0.943808 0.675398 0.71113 0.762013 0.829384 0.892919 0.950871 1.00597 1.05906 1.10965 1.15743 1.20262 1.24553 1.2865 1.32591 1.36403 1.40106 1.43702 1.47194 1.50576 1.53853 1.57025 1.60109 1.63107 1.66042 1.68909 1.71732 1.74498 1.77231 1.79914 1.82568 1.8518 1.8776 1.90306 1.92811 1.9528 1.97702 2.00083 2.02418 2.04714 2.06966 2.09188 2.11373 2.13531 2.15664 2.17762 2.19844 2.21883 2.23896 2.25872 2.27804 2.29703 2.31555 2.33372 2.35153 2.36902 2.38623 2.40315 2.4198 2.43611 2.45203 2.46762 2.48254 2.49723 2.51103 2.52463 2.53725 2.54972 2.56105 2.57233 2.58234 2.59233 2.60095 2.60959 2.61683 2.62406 2.63005 2.63583 2.64074 2.6451 2.64909 2.65217 2.65534 2.65738 2.65978 2.66107 2.66303 2.66408 2.66602 1.10254 1.2928 1.34716 1.30762 1.23138 1.14435 1.06491 1.02548 1.01965 1.02237 1.0245 1.02489 1.0235 1.02199 1.02071 1.02151 1.0248 1.02908 1.03409 1.0398 1.04593 1.05217 1.05859 1.06522 1.07196 1.07868 1.08522 1.09149 1.09742 1.10298 1.10815 1.11296 1.1175 1.12178 1.12564 1.1288 1.13095 1.13157 1.1303 1.12748 1.11886 1.0981 1.04861 0.934899 0.683036 0.282562 0.113927 0.147146 0.103668 0.0662187 0.0436051 0.0803164 0.13075 0.179492 0.225183 0.266779 0.304383 0.339926 0.375326 0.410256 0.443591 0.475373 0.505823 0.535079 0.563266 0.590304 0.616249 0.641018 0.664746 0.687455 0.70936 0.730525 0.751164 0.771296 0.791076 0.810462 0.829664 0.8485 0.867345 0.885748 0.90432 0.922251 0.940649 0.95797 0.976251 0.993005 1.01096 1.02753 1.04478 1.0614 1.07759 1.09423 1.10928 1.12571 1.13962 1.15568 1.1682 1.18319 1.19292 1.20316 1.14211 1.25781 1.32289 1.36219 1.40228 1.43349 1.4435 1.43946 1.42436 1.40286 1.38573 1.38097 1.38184 1.38394 1.38616 1.38744 1.38873 1.39013 1.39195 1.39453 1.39753 1.40116 1.40548 1.41016 1.4148 1.41938 1.42397 1.42862 1.43331 1.43803 1.44274 1.44736 1.45187 1.45627 1.4604 1.46442 1.46764 1.46951 1.46993 1.46879 1.46285 1.44605 1.40539 1.31043 1.10222 0.716473 0.398909 0.296007 0.326869 0.385413 0.438723 0.480732 0.516765 0.552876 0.589004 0.622852 0.653444 0.681567 0.708973 0.735783 0.761979 0.786393 0.810098 0.832197 0.854063 0.874431 0.89467 0.913366 0.93234 0.949819 0.967888 0.984257 1.00127 1.01664 1.03241 1.04715 1.06165 1.07618 1.08949 1.10403 1.11653 1.13101 1.14334 1.15801 1.17023 1.18526 1.19735 1.21262 1.22452 1.23993 1.25157 1.26696 1.27831 1.29367 1.30472 1.31998 1.33041 1.34508 1.35324 1.36451 1.13956 1.24698 1.34276 1.43543 1.52047 1.58717 1.6196 1.62225 1.61721 1.6032 1.58398 1.56941 1.56115 1.55918 1.55987 1.56098 1.56254 1.56415 1.56559 1.56717 1.569 1.57119 1.57379 1.57673 1.57992 1.58331 1.58686 1.59059 1.59442 1.59838 1.60247 1.60662 1.61092 1.61507 1.61946 1.62337 1.62732 1.62946 1.6304 1.63009 1.62655 1.61436 1.58439 1.51157 1.35191 1.03352 0.695302 0.569771 0.600826 0.671569 0.743876 0.796885 0.836668 0.866057 0.888659 0.908952 0.92796 0.945632 0.962273 0.978543 0.996104 1.01255 1.02976 1.04559 1.06133 1.07627 1.09069 1.105 1.1182 1.13199 1.14426 1.15754 1.16936 1.18227 1.19374 1.20642 1.21763 1.23022 1.24127 1.25364 1.2644 1.2764 1.28664 1.29813 1.30786 1.31894 1.32828 1.3391 1.34815 1.35887 1.36768 1.37837 1.38694 1.39771 1.40612 1.41718 1.42526 1.43636 1.44284 1.45153 1.14617 1.25558 1.35493 1.44667 1.52765 1.5956 1.64817 1.68547 1.70579 1.71036 1.70862 1.70163 1.69083 1.68129 1.6759 1.67489 1.67578 1.67727 1.67945 1.68176 1.68371 1.68553 1.68741 1.68953 1.69198 1.69474 1.69778 1.70104 1.7045 1.7081 1.71186 1.71563 1.71972 1.72356 1.72787 1.73151 1.73519 1.737 1.73776 1.73733 1.73348 1.72182 1.69406 1.6319 1.51057 1.29608 1.02081 0.855964 0.876244 0.924138 0.97786 1.02359 1.05543 1.07516 1.08678 1.09655 1.10389 1.11033 1.1169 1.12411 1.13176 1.14134 1.15253 1.1647 1.17616 1.18827 1.19903 1.21058 1.22118 1.23266 1.24329 1.25487 1.26546 1.277 1.28758 1.29925 1.30987 1.32143 1.33177 1.34299 1.35295 1.36381 1.37337 1.38383 1.39296 1.40303 1.41177 1.42147 1.4298 1.4391 1.44701 1.4559 1.4634 1.4719 1.47892 1.48703 1.49365 1.50153 1.50695 1.51153 1.14635 1.25382 1.35004 1.43806 1.51808 1.58946 1.65256 1.70541 1.74655 1.77345 1.78413 1.78424 1.78211 1.776 1.76754 1.76095 1.75639 1.75516 1.75565 1.75677 1.75845 1.76065 1.76295 1.7652 1.76743 1.76983 1.77238 1.77524 1.77823 1.78161 1.78499 1.78867 1.79245 1.79607 1.80003 1.80325 1.80575 1.80681 1.80696 1.80486 1.79743 1.77831 1.73594 1.6473 1.50898 1.36596 1.25246 1.1286 1.06085 1.05253 1.07481 1.10158 1.13199 1.15541 1.1729 1.18539 1.19338 1.19961 1.20469 1.20936 1.21403 1.21948 1.22666 1.23652 1.24765 1.25879 1.26949 1.28026 1.29074 1.30147 1.31199 1.32287 1.33355 1.34465 1.35544 1.36648 1.37708 1.38785 1.39811 1.4085 1.41839 1.42838 1.43784 1.44739 1.45642 1.46557 1.47421 1.48296 1.49117 1.49942 1.50708 1.51481 1.52197 1.52926 1.53587 1.54237 1.54819 1.55337 1.55803 1.55996 1.14092 1.24309 1.33721 1.42296 1.50156 1.57312 1.63702 1.6934 1.741 1.78006 1.80993 1.82907 1.8372 1.83783 1.83654 1.83241 1.82637 1.82119 1.81793 1.81736 1.81825 1.81955 1.82167 1.82437 1.8272 1.8298 1.83235 1.8349 1.83754 1.84057 1.8436 1.84742 1.85087 1.85518 1.85847 1.86147 1.86282 1.86306 1.86157 1.85487 1.83841 1.79963 1.71993 1.5859 1.46088 1.40325 1.37051 1.31918 1.25773 1.20632 1.17779 1.17337 1.18686 1.20194 1.22047 1.23873 1.25135 1.26027 1.26756 1.27351 1.27821 1.28233 1.2872 1.2937 1.30226 1.31186 1.32198 1.33235 1.34279 1.35327 1.36384 1.37457 1.38526 1.39598 1.40668 1.41733 1.42784 1.43826 1.44856 1.45872 1.46869 1.47852 1.48818 1.4977 1.50702 1.51614 1.52501 1.53368 1.5421 1.5503 1.5582 1.5658 1.57299 1.57981 1.58619 1.59212 1.59785 1.60252 1.60675 1.60619 1.1387 1.23182 1.31986 1.40204 1.47813 1.5487 1.61323 1.67181 1.72434 1.77014 1.80912 1.84017 1.8633 1.87717 1.88245 1.88258 1.88158 1.87847 1.87412 1.87046 1.86831 1.86769 1.8685 1.86956 1.87149 1.87413 1.87725 1.88009 1.88321 1.88596 1.88934 1.89223 1.89589 1.89891 1.90162 1.90309 1.90339 1.9017 1.89594 1.87927 1.84315 1.76502 1.62823 1.50099 1.44174 1.42917 1.42771 1.41798 1.39681 1.36783 1.33148 1.29379 1.26938 1.25961 1.2637 1.27257 1.28355 1.29662 1.30761 1.31618 1.32343 1.32965 1.33508 1.34036 1.34638 1.35367 1.36218 1.37157 1.38154 1.39203 1.40281 1.41367 1.42456 1.43546 1.44634 1.45719 1.46795 1.47859 1.48909 1.49952 1.50985 1.52003 1.53003 1.53986 1.5495 1.55896 1.56818 1.57718 1.5859 1.59437 1.6026 1.61054 1.61806 1.62513 1.63166 1.63769 1.64355 1.64824 1.65275 1.65226 1.13795 1.22274 1.305 1.38256 1.45579 1.52369 1.58752 1.64559 1.69967 1.74739 1.79057 1.82725 1.85854 1.88294 1.90083 1.91141 1.91604 1.91638 1.91576 1.91332 1.9101 1.907 1.90513 1.9049 1.90574 1.90707 1.90925 1.9126 1.91608 1.9201 1.92329 1.92701 1.92972 1.93213 1.93302 1.93309 1.93154 1.92528 1.91008 1.87384 1.79906 1.6591 1.52722 1.46072 1.44865 1.45583 1.46494 1.47188 1.47541 1.47256 1.45959 1.43707 1.40575 1.37056 1.34264 1.32674 1.32217 1.32795 1.33473 1.34432 1.35563 1.36486 1.37249 1.3796 1.38621 1.39224 1.39861 1.40595 1.41462 1.42429 1.43461 1.44528 1.45613 1.46701 1.47786 1.48868 1.49946 1.51017 1.52077 1.53125 1.54162 1.55194 1.56218 1.57233 1.58234 1.5922 1.60191 1.61146 1.62084 1.62999 1.63886 1.64743 1.65566 1.66355 1.67094 1.67764 1.68368 1.68869 1.69352 1.6938 1.13842 1.21524 1.29144 1.36457 1.4342 1.49961 1.56117 1.61851 1.67189 1.72103 1.76586 1.8062 1.84202 1.87267 1.89884 1.91897 1.9335 1.94183 1.94577 1.94619 1.94598 1.94454 1.94253 1.94071 1.94006 1.94065 1.94163 1.94302 1.94567 1.94847 1.95214 1.95487 1.95747 1.95807 1.95808 1.95645 1.95016 1.93511 1.89973 1.82566 1.6856 1.54597 1.47123 1.4575 1.46525 1.47775 1.49146 1.50791 1.52367 1.53305 1.53701 1.53461 1.52271 1.50103 1.47128 1.43604 1.40522 1.38362 1.37318 1.37328 1.37902 1.38689 1.39765 1.40806 1.41707 1.42516 1.43209 1.43833 1.44527 1.45333 1.46237 1.47209 1.4823 1.49291 1.50379 1.51475 1.5256 1.53629 1.54683 1.55724 1.56751 1.57768 1.58783 1.59797 1.60807 1.61811 1.62809 1.63798 1.64776 1.65741 1.66682 1.67609 1.68496 1.6936 1.70161 1.70921 1.71657 1.72237 1.72761 1.72889 1.14147 1.21075 1.28114 1.34971 1.41584 1.47862 1.5382 1.59409 1.64667 1.6956 1.74119 1.78301 1.82131 1.85553 1.88584 1.9116 1.93324 1.95011 1.96228 1.96929 1.97287 1.97348 1.9734 1.97257 1.97074 1.96939 1.96831 1.96886 1.96973 1.97121 1.97318 1.97594 1.97696 1.97696 1.97549 1.96958 1.95552 1.92128 1.84929 1.70974 1.5625 1.48158 1.46514 1.47183 1.48377 1.50012 1.51779 1.53792 1.55628 1.5734 1.58559 1.59315 1.59528 1.59259 1.58091 1.56044 1.53281 1.49814 1.46449 1.4374 1.42159 1.41702 1.42192 1.4289 1.43917 1.4516 1.46264 1.47222 1.48013 1.48727 1.49444 1.50233 1.51114 1.52071 1.53072 1.54108 1.55161 1.56214 1.57255 1.58281 1.59295 1.60297 1.61291 1.62278 1.63265 1.64255 1.65245 1.66235 1.6721 1.6819 1.69142 1.70095 1.71014 1.71904 1.72775 1.73594 1.7438 1.7504 1.75705 1.75906 1.14626 1.20832 1.27263 1.33663 1.39911 1.45889 1.51617 1.57041 1.62182 1.67003 1.71542 1.75762 1.79701 1.83311 1.86621 1.89579 1.92196 1.94422 1.96266 1.97708 1.98725 1.99323 1.99618 1.99685 1.99666 1.99629 1.99504 1.99434 1.99347 1.99386 1.9944 1.99481 1.99463 1.9931 1.98769 1.97313 1.94148 1.87167 1.73454 1.57862 1.48853 1.46887 1.4749 1.48744 1.50421 1.52335 1.54406 1.5647 1.58374 1.6021 1.61815 1.63151 1.64166 1.64758 1.64997 1.64836 1.63873 1.62 1.5935 1.55863 1.52128 1.48926 1.46807 1.45888 1.46282 1.46983 1.48024 1.49473 1.50757 1.51814 1.52707 1.53516 1.54302 1.55119 1.55991 1.56919 1.57891 1.58891 1.59905 1.60914 1.6191 1.62894 1.63867 1.64834 1.65789 1.66752 1.67703 1.6867 1.69621 1.70575 1.71521 1.72451 1.73371 1.74266 1.75159 1.75963 1.76835 1.77492 1.78251 1.78516 1.15496 1.21003 1.26824 1.32698 1.38555 1.44253 1.49736 1.54963 1.5997 1.647 1.69188 1.73394 1.7736 1.81051 1.84493 1.87653 1.90541 1.93114 1.95384 1.97297 1.9889 2.00111 2.00994 2.01511 2.01785 2.01855 2.01852 2.01829 2.01711 2.01576 2.01449 2.01309 2.01021 2.00314 1.98898 1.95668 1.89084 1.75517 1.59405 1.49624 1.47341 1.47828 1.49034 1.50764 1.52658 1.54876 1.56958 1.58926 1.60767 1.62664 1.64393 1.66041 1.67407 1.68592 1.69489 1.70114 1.70364 1.70268 1.69436 1.67647 1.65027 1.61539 1.57554 1.53874 1.51262 1.50005 1.50346 1.51054 1.52136 1.53705 1.55061 1.5622 1.57237 1.5815 1.59005 1.5986 1.60742 1.6165 1.62589 1.63554 1.64527 1.65506 1.66468 1.67439 1.68392 1.69348 1.7029 1.71227 1.72159 1.73089 1.74011 1.74907 1.75827 1.76668 1.77584 1.78353 1.79249 1.79906 1.80693 1.80988 1.1665 1.21529 1.26717 1.32072 1.37449 1.42778 1.48008 1.53051 1.57868 1.62502 1.66905 1.71101 1.75058 1.78801 1.82307 1.85589 1.88642 1.91444 1.94003 1.96285 1.98276 1.99978 2.0135 2.02434 2.03172 2.0365 2.03857 2.03897 2.03863 2.03776 2.03513 2.03078 2.02325 2.00819 1.97586 1.91192 1.77952 1.61331 1.50402 1.47631 1.47986 1.49204 1.50791 1.52751 1.54994 1.57219 1.59149 1.61038 1.62899 1.64771 1.66527 1.68211 1.69722 1.71162 1.72469 1.73649 1.74568 1.75211 1.75453 1.75394 1.74694 1.73052 1.70593 1.67202 1.63022 1.59013 1.55883 1.54245 1.5453 1.55244 1.56328 1.57925 1.59341 1.60538 1.61639 1.62623 1.63516 1.64385 1.65243 1.66122 1.67012 1.67937 1.68872 1.69817 1.70761 1.71716 1.72664 1.73604 1.74545 1.75454 1.76395 1.77265 1.78206 1.79021 1.79952 1.80704 1.81612 1.82275 1.83082 1.83395 1.18222 1.22503 1.27091 1.31913 1.36843 1.41784 1.46623 1.51426 1.56071 1.60526 1.64823 1.68936 1.72864 1.76607 1.80144 1.83495 1.86624 1.89579 1.9228 1.94815 1.97059 1.99115 2.00863 2.0237 2.03579 2.04493 2.05137 2.05419 2.05408 2.05324 2.05023 2.04262 2.02795 1.99657 1.93463 1.80858 1.63824 1.51583 1.48073 1.48181 1.49414 1.50967 1.52755 1.55071 1.57274 1.59297 1.61119 1.6301 1.64837 1.66716 1.68473 1.70195 1.71765 1.73334 1.74803 1.76247 1.77592 1.788 1.79766 1.80467 1.80792 1.80812 1.80282 1.78861 1.76514 1.73161 1.6885 1.64435 1.60738 1.58686 1.58939 1.59653 1.60701 1.62288 1.63731 1.64956 1.66082 1.67097 1.68002 1.68861 1.69688 1.70526 1.71374 1.72251 1.7315 1.74051 1.74976 1.75878 1.76821 1.77694 1.78644 1.79482 1.8044 1.81236 1.82188 1.82932 1.83855 1.84525 1.8535 1.85708 1.19763 1.2359 1.27709 1.32055 1.36554 1.41095 1.4567 1.50106 1.54537 1.58858 1.63 1.67015 1.70871 1.74564 1.78106 1.81471 1.84671 1.87688 1.90527 1.9318 1.95624 1.97908 1.99895 2.0177 2.03261 2.04635 2.0561 2.06288 2.06373 2.06235 2.05688 2.0447 2.01588 1.95886 1.83972 1.67057 1.53456 1.4882 1.48526 1.4981 1.51227 1.52955 1.55114 1.574 1.594 1.61285 1.63077 1.64944 1.66803 1.6872 1.70521 1.72273 1.73886 1.75506 1.77047 1.78641 1.80172 1.81659 1.83044 1.84256 1.85246 1.85986 1.86321 1.86371 1.85938 1.84656 1.82369 1.79067 1.74673 1.69926 1.65604 1.63269 1.635 1.64209 1.65222 1.6677 1.68203 1.69427 1.70541 1.71561 1.72489 1.73327 1.74149 1.74946 1.75783 1.76591 1.77475 1.78288 1.79201 1.80004 1.80937 1.81721 1.82665 1.83427 1.84369 1.85101 1.8602 1.86699 1.87505 1.87903 1.21475 1.2501 1.28663 1.32559 1.36584 1.40769 1.44949 1.49194 1.53287 1.57363 1.61421 1.65261 1.69053 1.72672 1.76171 1.79513 1.82746 1.85769 1.88708 1.91421 1.93992 1.96428 1.98574 2.00699 2.02424 2.04107 2.0537 2.06284 2.06369 2.06097 2.05115 2.02855 1.97559 1.87133 1.70094 1.55654 1.49856 1.49202 1.50387 1.51815 1.53397 1.5551 1.57758 1.59879 1.61733 1.63527 1.65276 1.67151 1.69035 1.7095 1.72747 1.745 1.76157 1.77814 1.79417 1.81075 1.82663 1.84273 1.8578 1.87213 1.88522 1.89666 1.90633 1.91374 1.91726 1.91797 1.9145 1.90278 1.88055 1.84784 1.80289 1.75238 1.7039 1.67835 1.6802 1.68732 1.69709 1.71205 1.72628 1.73835 1.74955 1.75976 1.76943 1.77754 1.78612 1.79365 1.80204 1.80936 1.81802 1.82536 1.83418 1.84147 1.85049 1.85774 1.86683 1.87392 1.88288 1.88953 1.89745 1.90129 1.2305 1.26381 1.29851 1.3336 1.37109 1.40811 1.44701 1.48574 1.52537 1.56327 1.60092 1.63896 1.67468 1.71015 1.74485 1.77692 1.80974 1.83941 1.86891 1.89698 1.9226 1.94866 1.97076 1.99361 2.0127 2.03085 2.04602 2.0536 2.0523 2.04635 2.02838 1.98264 1.8898 1.72335 1.57694 1.50972 1.49848 1.50989 1.52458 1.54121 1.56178 1.58497 1.60608 1.62557 1.64295 1.66051 1.67802 1.69665 1.71501 1.73371 1.75142 1.76907 1.78563 1.80215 1.81821 1.83457 1.85054 1.8668 1.88216 1.89727 1.91132 1.9247 1.93713 1.94831 1.95808 1.96569 1.96942 1.97031 1.96744 1.95669 1.93545 1.90298 1.85761 1.80474 1.7515 1.72425 1.72509 1.73184 1.74137 1.75548 1.76947 1.78127 1.79267 1.80269 1.81263 1.82072 1.82944 1.83661 1.84475 1.85163 1.85995 1.86679 1.87521 1.88211 1.8908 1.89769 1.90644 1.91289 1.92086 1.92444 1.24478 1.2767 1.30885 1.34183 1.37571 1.41197 1.4472 1.48359 1.51985 1.55696 1.5924 1.62737 1.66358 1.69592 1.73051 1.76208 1.79298 1.82417 1.85165 1.88102 1.90639 1.93241 1.95643 1.97825 2.00038 2.01756 2.03282 2.03521 2.03113 2.01616 1.98073 1.89163 1.74253 1.59078 1.51594 1.50129 1.51271 1.52943 1.54746 1.57024 1.59386 1.61623 1.63587 1.65432 1.67132 1.68865 1.7057 1.72361 1.74132 1.75945 1.7768 1.79394 1.81003 1.82627 1.84199 1.85818 1.87414 1.89037 1.90587 1.92133 1.93576 1.94995 1.96334 1.97635 1.98865 1.99991 2.00996 2.01764 2.02168 2.02257 2.02018 2.01023 1.98992 1.95796 1.91221 1.85736 1.80017 1.77147 1.77057 1.7773 1.7864 1.79948 1.8129 1.82431 1.83557 1.84534 1.85516 1.86318 1.8717 1.87853 1.8863 1.89282 1.90072 1.90717 1.91521 1.92173 1.93008 1.93639 1.94428 1.9478 1.26334 1.2918 1.321 1.35168 1.38296 1.41577 1.4501 1.48401 1.51808 1.55277 1.58727 1.62054 1.65381 1.68706 1.71798 1.75026 1.77979 1.80938 1.83834 1.86475 1.89254 1.91658 1.94182 1.96405 1.98502 2.00373 2.01051 2.00804 1.99749 1.9668 1.89402 1.74522 1.59194 1.51216 1.49701 1.51045 1.52914 1.55012 1.57516 1.60001 1.62306 1.64483 1.66439 1.68298 1.69998 1.71695 1.73348 1.75087 1.76812 1.78587 1.80274 1.81949 1.83533 1.85134 1.86683 1.88297 1.89868 1.91471 1.93011 1.94553 1.9601 1.9747 1.98857 2.00235 2.01557 2.02838 2.04042 2.05136 2.06108 2.06834 2.07237 2.07324 2.0713 2.06221 2.04292 2.012 1.96602 1.90951 1.84938 1.81905 1.81616 1.82282 1.83141 1.84336 1.85602 1.86712 1.87814 1.88752 1.89706 1.90489 1.91317 1.91961 1.92705 1.93318 1.94065 1.94667 1.95423 1.96009 1.9674 1.97072 1.28251 1.30446 1.33325 1.36211 1.39127 1.42157 1.45317 1.48611 1.51825 1.55084 1.58397 1.61601 1.64829 1.67918 1.71052 1.73999 1.76991 1.79823 1.82583 1.85336 1.87824 1.90462 1.92721 1.9506 1.97005 1.98221 1.98192 1.97292 1.94656 1.88409 1.74528 1.58769 1.50086 1.48612 1.50051 1.52167 1.54564 1.57361 1.59931 1.62363 1.6467 1.66928 1.69012 1.70964 1.72716 1.74437 1.7612 1.77887 1.79628 1.81383 1.83041 1.84681 1.8624 1.87815 1.89355 1.90929 1.92463 1.9403 1.95547 1.97071 1.98532 1.99988 2.01367 2.02739 2.04051 2.05347 2.06593 2.07802 2.08932 2.09976 2.10905 2.11607 2.12048 2.12145 2.12003 2.11196 2.09379 2.06408 2.01762 1.95976 1.89751 1.86545 1.8604 1.86688 1.87492 1.88551 1.89801 1.90874 1.91955 1.92858 1.93804 1.94571 1.95377 1.95988 1.96709 1.97289 1.97992 1.98529 1.99183 1.99457 1.30668 1.32274 1.34774 1.37505 1.40233 1.42981 1.45867 1.48911 1.52002 1.55095 1.58187 1.61302 1.64344 1.67416 1.70333 1.73304 1.76105 1.78925 1.81634 1.84241 1.86856 1.89213 1.91648 1.93638 1.95211 1.95369 1.94573 1.92202 1.86847 1.73899 1.5791 1.48416 1.46776 1.48273 1.50576 1.53394 1.56547 1.594 1.61968 1.64456 1.66812 1.6907 1.71144 1.73133 1.75033 1.76955 1.78822 1.80691 1.82465 1.84209 1.8585 1.8748 1.89031 1.90593 1.92087 1.93604 1.95084 1.96599 1.98075 1.99571 2.01002 2.02426 2.03772 2.05119 2.06391 2.07677 2.08907 2.10137 2.11321 2.12475 2.13566 2.1458 2.15495 2.16199 2.16691 2.16801 2.167 2.1599 2.14282 2.11394 2.06749 2.00808 1.94436 1.91053 1.90315 1.9093 1.91648 1.92574 1.93845 1.94854 1.95908 1.96783 1.97726 1.98471 1.99261 1.99857 2.00572 2.01097 2.01723 2.01973 1.33326 1.34019 1.35963 1.38686 1.41387 1.44066 1.46723 1.49497 1.52367 1.55283 1.58254 1.61149 1.64098 1.66968 1.69863 1.7263 1.75425 1.78104 1.80753 1.83357 1.85812 1.88263 1.90381 1.92155 1.92478 1.91781 1.89536 1.84854 1.72603 1.56541 1.46248 1.44433 1.46025 1.48522 1.51611 1.55108 1.58179 1.60988 1.63627 1.66228 1.68655 1.70934 1.73013 1.75051 1.77058 1.79108 1.811 1.83066 1.84914 1.86732 1.88451 1.90133 1.91702 1.93238 1.94696 1.96184 1.97636 1.99138 2.00593 2.02075 2.03473 2.04879 2.06193 2.07514 2.08758 2.10023 2.11231 2.12458 2.13646 2.14824 2.15973 2.17082 2.1814 2.19134 2.20035 2.20742 2.21284 2.21402 2.21322 2.20698 2.19112 2.16254 2.11638 2.05573 1.99092 1.95485 1.94562 1.95089 1.95708 1.96576 1.97823 1.98728 1.99753 2.00592 2.01549 2.0223 2.03014 2.03559 2.04214 2.0447 1.37181 1.36703 1.37777 1.39833 1.42491 1.45091 1.47621 1.50249 1.52907 1.5565 1.58409 1.61239 1.63959 1.66768 1.69466 1.72228 1.7485 1.77506 1.80057 1.82556 1.84987 1.87182 1.89075 1.89603 1.889 1.86981 1.82397 1.71219 1.55081 1.4396 1.41908 1.43478 1.46014 1.49345 1.53055 1.56384 1.59384 1.6231 1.65118 1.67814 1.70268 1.72579 1.74736 1.76859 1.78914 1.80989 1.8304 1.85102 1.87095 1.89047 1.90861 1.92602 1.94214 1.95795 1.97296 1.98809 2.00265 2.01748 2.03169 2.04611 2.05977 2.07355 2.08651 2.09957 2.11191 2.12436 2.13628 2.1483 2.15997 2.17162 2.18309 2.19437 2.20538 2.21614 2.22629 2.23599 2.24467 2.25165 2.25718 2.25834 2.25755 2.25206 2.23721 2.20937 2.16428 2.10256 2.03754 1.99865 1.98807 1.99168 1.99742 2.00542 2.01742 2.02544 2.03538 2.04322 2.05259 2.05862 2.06595 2.06855 1.40568 1.39352 1.39908 1.415 1.43813 1.46294 1.48676 1.51102 1.53574 1.56117 1.58731 1.61338 1.64026 1.66607 1.69261 1.71825 1.74443 1.76951 1.79466 1.81863 1.84114 1.86047 1.86718 1.86074 1.84244 1.79742 1.69733 1.53044 1.41258 1.39101 1.40674 1.4329 1.46796 1.50738 1.54229 1.57404 1.60423 1.63394 1.66225 1.68936 1.71469 1.73916 1.76234 1.78503 1.80658 1.82785 1.84855 1.86962 1.89034 1.91078 1.93002 1.9484 1.96548 1.98197 1.99751 2.01279 2.02745 2.04212 2.05632 2.07061 2.08433 2.09801 2.11102 2.1239 2.13612 2.14825 2.15988 2.17154 2.18284 2.19431 2.20547 2.21677 2.22774 2.23868 2.24926 2.25957 2.26941 2.27877 2.28723 2.29418 2.29985 2.30108 2.3004 2.2956 2.28187 2.255 2.21065 2.14916 2.08351 2.0414 2.03031 2.03167 2.03703 2.04435 2.0553 2.06273 2.07241 2.07944 2.08805 2.09082 1.47945 1.42855 1.42298 1.43158 1.44946 1.47464 1.49848 1.5215 1.5445 1.56748 1.59161 1.61641 1.64103 1.66666 1.69113 1.71634 1.74066 1.76524 1.78878 1.81118 1.8305 1.83836 1.83217 1.81429 1.77015 1.67765 1.50328 1.38205 1.36032 1.37694 1.40418 1.44108 1.48238 1.51894 1.55162 1.58287 1.61325 1.6431 1.67164 1.69925 1.72542 1.75074 1.77478 1.79812 1.82052 1.84277 1.86434 1.88581 1.90659 1.9273 1.94714 1.96648 1.98452 2.00191 2.01823 2.03436 2.04977 2.06516 2.07986 2.09449 2.10838 2.12214 2.13516 2.14806 2.16025 2.17238 2.18386 2.19537 2.20642 2.21752 2.22837 2.23925 2.24996 2.26064 2.27115 2.28149 2.29161 2.30152 2.31096 2.32014 2.32838 2.33544 2.34121 2.34257 2.34214 2.33787 2.3252 2.29974 2.2551 2.19511 2.13021 2.08371 2.07167 2.07022 2.07576 2.08202 2.09116 2.09813 2.10707 2.11065 1.62402 1.47704 1.45193 1.45178 1.46386 1.48311 1.50745 1.53066 1.55313 1.57548 1.59751 1.62051 1.64387 1.66759 1.69163 1.71541 1.73886 1.76202 1.78352 1.8028 1.81067 1.80418 1.78588 1.7422 1.64736 1.47768 1.35355 1.33152 1.34781 1.37491 1.41254 1.45573 1.49398 1.52816 1.56004 1.59116 1.62132 1.65093 1.67949 1.7075 1.73446 1.76066 1.7856 1.8098 1.83306 1.85598 1.87826 1.90032 1.92159 1.94248 1.96261 1.98246 2.00142 2.01988 2.03728 2.0543 2.0704 2.0864 2.10151 2.11671 2.13099 2.14544 2.15882 2.17237 2.18479 2.19736 2.20892 2.22063 2.23156 2.2426 2.25309 2.26369 2.27388 2.28425 2.29422 2.30442 2.31416 2.32411 2.33361 2.34313 2.35223 2.36115 2.36922 2.37637 2.38222 2.38376 2.38363 2.38002 2.36765 2.34379 2.29845 2.24234 2.17624 2.12587 2.11246 2.10793 2.11324 2.11767 2.12436 2.12851 1.85734 1.56822 1.48783 1.47538 1.47996 1.49456 1.5159 1.53935 1.56166 1.58328 1.60459 1.62587 1.64767 1.66984 1.69262 1.71502 1.73765 1.75854 1.77742 1.78501 1.77832 1.75941 1.71532 1.61773 1.45016 1.32321 1.30112 1.31786 1.3454 1.38404 1.42847 1.46851 1.50403 1.53691 1.5682 1.59879 1.6286 1.65827 1.6873 1.71604 1.74358 1.77017 1.7954 1.81985 1.84346 1.86687 1.88981 1.9126 1.93473 1.95634 1.97697 1.99707 2.01655 2.0358 2.0543 2.07233 2.0895 2.1063 2.12241 2.13813 2.15317 2.16779 2.18179 2.19541 2.2085 2.2212 2.23337 2.24513 2.25633 2.26722 2.27756 2.28789 2.29767 2.30776 2.31731 2.32726 2.33672 2.34642 2.35583 2.36516 2.37443 2.38343 2.39228 2.40089 2.40876 2.41589 2.42158 2.42341 2.42349 2.42 2.40916 2.38554 2.33999 2.28977 2.21961 2.16878 2.15113 2.14544 2.14594 2.14783 2.28239 1.76559 1.55401 1.50963 1.50301 1.50974 1.52514 1.5474 1.56893 1.59021 1.61108 1.63184 1.65272 1.6736 1.69469 1.71591 1.73603 1.75415 1.76133 1.75414 1.73449 1.68942 1.58946 1.42262 1.29244 1.27041 1.28808 1.31665 1.35653 1.40145 1.44292 1.47996 1.51364 1.5454 1.576 1.60631 1.63627 1.66637 1.6958 1.72467 1.7521 1.77864 1.80391 1.82876 1.85296 1.87708 1.90062 1.92391 1.94644 1.96855 1.98987 2.01071 2.03073 2.05041 2.06955 2.08842 2.1064 2.12402 2.14071 2.15723 2.17279 2.18827 2.20276 2.21724 2.23067 2.2441 2.25641 2.26872 2.27989 2.29113 2.3013 2.31174 2.32123 2.3312 2.3404 2.35014 2.3593 2.36878 2.37794 2.38706 2.39613 2.40498 2.41381 2.42251 2.43098 2.43939 2.44698 2.45398 2.45955 2.46139 2.46153 2.45828 2.44823 2.4246 2.38511 2.32993 2.25816 2.21407 2.18341 2.17867 2.56798 2.08012 1.69132 1.55147 1.52858 1.52809 1.53838 1.554 1.57624 1.59686 1.61725 1.63702 1.65725 1.67717 1.69741 1.71647 1.73348 1.7397 1.73171 1.71109 1.66449 1.56167 1.39423 1.26073 1.23948 1.25881 1.28892 1.3307 1.37557 1.41752 1.45546 1.49014 1.52254 1.55374 1.58422 1.61463 1.64478 1.67481 1.70403 1.73257 1.75996 1.78665 1.81241 1.83777 1.86245 1.88686 1.91069 1.93431 1.95735 1.98014 2.00217 2.02376 2.04445 2.0646 2.08398 2.10322 2.12189 2.14022 2.15769 2.17478 2.19104 2.20692 2.22197 2.23669 2.25066 2.26435 2.27735 2.29006 2.30205 2.31374 2.32462 2.33533 2.34519 2.35516 2.36431 2.3738 2.3826 2.3917 2.40046 2.40915 2.41794 2.42632 2.43507 2.44329 2.45192 2.4601 2.46834 2.47641 2.48367 2.49046 2.49579 2.49747 2.49756 2.49466 2.48461 2.46157 2.42472 2.36383 2.29731 2.262 2.76815 2.44014 1.93171 1.64381 1.56048 1.5485 1.55111 1.56404 1.58146 1.60418 1.62417 1.64402 1.66254 1.68153 1.69913 1.71532 1.72034 1.71128 1.68943 1.64068 1.53432 1.36457 1.22811 1.20833 1.22983 1.26211 1.30608 1.35117 1.39301 1.43143 1.46685 1.50017 1.53194 1.56299 1.59351 1.62395 1.65394 1.68371 1.71273 1.74126 1.76887 1.79585 1.82199 1.84759 1.87254 1.89716 1.92133 1.94519 1.96857 1.99146 2.01371 2.03542 2.05646 2.07708 2.09704 2.11665 2.13571 2.1546 2.17266 2.19026 2.20693 2.22329 2.23872 2.25399 2.26838 2.28271 2.29614 2.30951 2.32188 2.33418 2.34538 2.35658 2.36669 2.37695 2.38622 2.39582 2.4046 2.41373 2.42235 2.43101 2.43963 2.4478 2.45644 2.46417 2.47282 2.48037 2.48881 2.49646 2.50437 2.51194 2.51888 2.52512 2.53008 2.53146 2.5313 2.52798 2.51862 2.49238 2.45235 2.42399 2.87446 2.70656 2.34664 1.84797 1.63286 1.58066 1.5725 1.57609 1.58969 1.60878 1.63112 1.65055 1.66992 1.68601 1.70102 1.70363 1.6933 1.66975 1.61795 1.507 1.33211 1.1953 1.17777 1.20233 1.23678 1.28292 1.32839 1.37018 1.40859 1.44453 1.47857 1.51125 1.54283 1.57381 1.6042 1.63442 1.66414 1.69369 1.72256 1.75106 1.77868 1.80579 1.83206 1.8579 1.88312 1.90797 1.9323 1.95618 1.97947 2.00227 2.0245 2.04631 2.06763 2.08855 2.109 2.12901 2.14844 2.16752 2.18604 2.20413 2.22133 2.23813 2.25409 2.26978 2.28465 2.29938 2.31329 2.32711 2.34009 2.35296 2.36489 2.37669 2.38753 2.3982 2.40804 2.41773 2.42681 2.43573 2.44436 2.45269 2.46108 2.46893 2.47727 2.48462 2.49307 2.49999 2.50848 2.51524 2.52346 2.5303 2.53781 2.54458 2.55106 2.55636 2.56083 2.56171 2.56118 2.55745 2.54423 2.53802 2.93165 2.84412 2.64817 2.21734 1.80535 1.63253 1.59942 1.59495 1.60061 1.61486 1.63497 1.6556 1.67324 1.68858 1.69031 1.67857 1.65291 1.59684 1.47982 1.29742 1.16294 1.14921 1.17598 1.2129 1.26119 1.30696 1.34872 1.38697 1.42296 1.45762 1.49118 1.52375 1.55532 1.58616 1.61634 1.6462 1.67555 1.7047 1.73327 1.76152 1.78911 1.81627 1.84275 1.86875 1.89409 1.9189 1.94312 1.96682 1.99002 2.01276 2.03505 2.0569 2.07835 2.09939 2.12003 2.14027 2.16 2.17927 2.19794 2.2163 2.23395 2.25112 2.26755 2.28366 2.299 2.31414 2.32852 2.34273 2.35621 2.36952 2.38205 2.39435 2.4059 2.41704 2.42758 2.43758 2.44715 2.45618 2.46501 2.47334 2.48168 2.48954 2.4976 2.50499 2.51295 2.51982 2.52775 2.53412 2.54208 2.54805 2.5559 2.56168 2.56893 2.57452 2.58064 2.58492 2.58854 2.58916 2.58807 2.58972 2.9626 2.91619 2.80736 2.52902 2.06596 1.74395 1.63526 1.61603 1.61533 1.6243 1.63862 1.65742 1.67368 1.67723 1.66492 1.63694 1.5755 1.4521 1.26243 1.13232 1.12143 1.14982 1.18991 1.24041 1.28661 1.32835 1.36663 1.40283 1.43776 1.47191 1.50517 1.53754 1.56886 1.59943 1.62919 1.65861 1.68749 1.7162 1.74441 1.7724 1.7998 1.82683 1.85321 1.87909 1.90437 1.92908 1.95327 1.97691 2.00007 2.02272 2.04494 2.06673 2.08817 2.1092 2.12993 2.15022 2.17013 2.18957 2.20846 2.22691 2.24486 2.26236 2.27924 2.29576 2.31161 2.3272 2.3421 2.35673 2.37072 2.38443 2.39752 2.41026 2.42249 2.43414 2.44543 2.45595 2.46619 2.47561 2.48481 2.49329 2.5016 2.50941 2.51712 2.52436 2.53181 2.53853 2.54584 2.55209 2.55933 2.56513 2.57227 2.5777 2.58461 2.58966 2.59611 2.60054 2.60603 2.60929 2.61197 2.61374 2.98233 2.95455 2.8981 2.76406 2.45131 1.97818 1.7242 1.64914 1.63498 1.63553 1.64388 1.65681 1.66315 1.65061 1.62024 1.55034 1.41926 1.22455 1.10231 1.09525 1.1241 1.16691 1.21959 1.26646 1.30824 1.34662 1.38307 1.41839 1.45288 1.48668 1.51962 1.55168 1.58271 1.61293 1.6423 1.67124 1.69961 1.7278 1.75552 1.78307 1.81007 1.83678 1.86287 1.88856 1.91366 1.93826 1.96233 1.98589 2.00893 2.03155 2.05372 2.07555 2.09701 2.11812 2.13886 2.15918 2.17907 2.19852 2.21746 2.23599 2.25405 2.2718 2.28908 2.30604 2.3224 2.33845 2.35384 2.36887 2.3833 2.39735 2.41091 2.42402 2.4368 2.44886 2.46082 2.47175 2.48266 2.49242 2.50215 2.51085 2.51945 2.52733 2.53506 2.54226 2.54949 2.55609 2.56301 2.56904 2.57572 2.58119 2.58763 2.59264 2.59878 2.60343 2.6092 2.61346 2.6187 2.62234 2.62641 2.62839 2.98972 2.97868 2.94633 2.88167 2.71859 2.39159 1.92973 1.72237 1.66841 1.65448 1.65257 1.65091 1.63872 1.60531 1.52378 1.37827 1.18234 1.07238 1.07026 1.09887 1.14277 1.197 1.24493 1.28728 1.32567 1.36209 1.39757 1.43251 1.46682 1.50035 1.53294 1.56458 1.59521 1.62505 1.65408 1.68262 1.71059 1.73831 1.76554 1.79259 1.81912 1.8454 1.87112 1.89641 1.92115 1.94538 1.9692 1.99257 2.0156 2.03829 2.06061 2.08259 2.10419 2.12538 2.14616 2.16648 2.18637 2.20582 2.22482 2.24346 2.26168 2.2796 2.29713 2.31433 2.33099 2.34735 2.3631 2.37851 2.39338 2.40788 2.42192 2.4355 2.44875 2.46129 2.47371 2.48511 2.49653 2.50672 2.517 2.52602 2.53513 2.54317 2.55125 2.55846 2.56582 2.5723 2.57912 2.58493 2.59128 2.59642 2.6023 2.60687 2.61225 2.61637 2.62129 2.62501 2.62946 2.63274 2.63646 2.63844 2.99546 2.98812 2.97493 2.93872 2.86187 2.68172 2.31356 1.90136 1.72092 1.67918 1.66257 1.64188 1.59824 1.50121 1.33014 1.13563 1.04249 1.04714 1.07523 1.12018 1.17497 1.22357 1.26649 1.30511 1.34124 1.37628 1.4109 1.44517 1.47886 1.51181 1.54388 1.57513 1.60546 1.63511 1.66399 1.69239 1.72011 1.74749 1.77429 1.80085 1.82683 1.85254 1.87768 1.90244 1.92676 1.95066 1.97423 1.99745 2.02037 2.04306 2.06546 2.08761 2.10942 2.13082 2.15181 2.17228 2.19232 2.2119 2.23105 2.24984 2.26823 2.28632 2.30402 2.3214 2.33824 2.35483 2.37084 2.38658 2.40182 2.41675 2.4312 2.44526 2.45887 2.47189 2.48463 2.49646 2.50823 2.51883 2.52961 2.53896 2.54871 2.55693 2.56558 2.57288 2.58053 2.58702 2.59386 2.59959 2.60572 2.61069 2.61612 2.62035 2.6251 2.62866 2.6328 2.6358 2.63944 2.64196 2.64501 2.64644 2.99729 2.99457 2.98572 2.97011 2.92566 2.83596 2.61196 2.20987 1.85366 1.71496 1.66835 1.61221 1.49454 1.28133 1.08193 1.00654 1.01741 1.04687 1.0948 1.14965 1.19868 1.24223 1.28175 1.3188 1.35433 1.38896 1.42289 1.45625 1.48903 1.52127 1.55282 1.58372 1.61388 1.64339 1.6721 1.70026 1.72774 1.75481 1.7813 1.80749 1.83317 1.85858 1.88356 1.90821 1.93252 1.95641 1.97997 2.00315 2.02601 2.04854 2.0707 2.09254 2.11399 2.13507 2.15578 2.17614 2.19613 2.21581 2.23509 2.25402 2.27257 2.29068 2.30844 2.32583 2.34285 2.35958 2.37591 2.39196 2.40765 2.423 2.43793 2.45248 2.46654 2.48012 2.49324 2.5057 2.51782 2.52905 2.5401 2.55 2.56008 2.56872 2.57781 2.58537 2.59343 2.6 2.60703 2.61268 2.6187 2.62343 2.6285 2.63233 2.63654 2.63955 2.64304 2.6454 2.64831 2.65018 2.65252 2.65351 2.99857 2.99722 2.99236 2.98489 2.96045 2.91472 2.80148 2.53321 2.0958 1.79763 1.66378 1.52377 1.25565 1.02298 0.952431 0.968943 1.00548 1.05989 1.1161 1.16522 1.20906 1.24959 1.28797 1.32471 1.36008 1.39439 1.42791 1.46087 1.49328 1.52515 1.55635 1.5869 1.61666 1.64578 1.67416 1.70203 1.72925 1.75608 1.78233 1.80832 1.83382 1.85911 1.88403 1.90866 1.93299 1.95692 1.98052 2.00369 2.02647 2.04886 2.07085 2.0925 2.1138 2.13476 2.1554 2.17575 2.19574 2.21548 2.2348 2.25379 2.2724 2.29056 2.30844 2.32591 2.34308 2.35998 2.37656 2.39289 2.40891 2.42461 2.43997 2.45495 2.46952 2.48358 2.49721 2.51019 2.52281 2.53462 2.54622 2.55682 2.56736 2.5767 2.58614 2.59423 2.60256 2.60943 2.61661 2.62233 2.62834 2.63298 2.63782 2.64154 2.64526 2.64821 2.65102 2.65336 2.65551 2.65737 2.65898 2.66034 2.99934 2.9982 2.99645 2.99046 2.98069 2.95042 2.89303 2.74686 2.44308 1.96947 1.63617 1.2804 0.953685 0.865726 0.890565 0.933226 0.996358 1.06009 1.11379 1.16031 1.20326 1.24405 1.28282 1.31969 1.35494 1.38897 1.42214 1.45471 1.48667 1.51802 1.54865 1.57862 1.60786 1.63655 1.66462 1.69225 1.71932 1.74604 1.77225 1.79822 1.82377 1.84916 1.87424 1.89909 1.92368 1.94789 1.97176 1.99517 2.01814 2.04066 2.06274 2.08444 2.10581 2.12689 2.14769 2.16826 2.18844 2.20843 2.22799 2.24735 2.2664 2.28508 2.30351 2.32152 2.33926 2.35669 2.37379 2.39062 2.40711 2.42329 2.43911 2.4545 2.46956 2.48393 2.49807 2.51132 2.5244 2.5365 2.54848 2.55936 2.57022 2.57988 2.58956 2.59797 2.60645 2.6136 2.62084 2.62678 2.63272 2.63754 2.64217 2.64596 2.64937 2.65227 2.65466 2.65684 2.65842 2.66003 2.66125 2.66278 2.99954 2.99871 2.99751 2.99308 2.98644 2.96353 2.92422 2.81158 2.58678 2.10735 1.51702 0.9438 0.675392 0.711126 0.762012 0.829384 0.892918 0.95087 1.00597 1.05906 1.10965 1.15743 1.20262 1.24553 1.2865 1.32591 1.36403 1.40106 1.43702 1.47194 1.50576 1.53853 1.57025 1.60109 1.63107 1.66042 1.68909 1.71732 1.74498 1.77231 1.79914 1.82568 1.8518 1.8776 1.90306 1.92811 1.9528 1.97702 2.00083 2.02418 2.04714 2.06966 2.09188 2.11373 2.13531 2.15664 2.17762 2.19844 2.21883 2.23896 2.25872 2.27804 2.29703 2.31555 2.33373 2.35153 2.36903 2.38623 2.40315 2.4198 2.43611 2.45203 2.46762 2.48254 2.49723 2.51104 2.52464 2.53725 2.54972 2.56106 2.57233 2.58234 2.59233 2.60095 2.60959 2.61683 2.62406 2.63005 2.63583 2.64074 2.6451 2.64909 2.65216 2.65534 2.65737 2.65978 2.66107 2.66303 2.66408 2.66602 1.10254 1.2928 1.34716 1.30762 1.23138 1.14435 1.06491 1.02548 1.01965 1.02237 1.0245 1.02489 1.0235 1.02199 1.02071 1.02151 1.0248 1.02908 1.03409 1.0398 1.04593 1.05217 1.05859 1.06522 1.07196 1.07868 1.08522 1.09149 1.09742 1.10298 1.10815 1.11296 1.11749 1.12178 1.12564 1.1288 1.13095 1.13157 1.1303 1.12748 1.11886 1.0981 1.04861 0.934899 0.683037 0.282562 0.113926 0.147145 0.103666 0.066218 0.0436056 0.0803176 0.130751 0.179493 0.225184 0.266779 0.304383 0.339927 0.375327 0.410257 0.443592 0.475373 0.505823 0.535079 0.563266 0.590304 0.616248 0.641017 0.664745 0.687454 0.709358 0.730524 0.751162 0.771295 0.791075 0.810461 0.829663 0.848499 0.867344 0.885748 0.90432 0.922251 0.940649 0.957971 0.976251 0.993005 1.01096 1.02753 1.04478 1.0614 1.07759 1.09423 1.10928 1.12571 1.13962 1.15568 1.1682 1.18319 1.19292 1.20317 1.14211 1.25781 1.32289 1.36219 1.40228 1.43349 1.4435 1.43946 1.42436 1.40286 1.38573 1.38097 1.38184 1.38394 1.38616 1.38744 1.38873 1.39013 1.39195 1.39453 1.39753 1.40116 1.40548 1.41016 1.4148 1.41938 1.42397 1.42862 1.43331 1.43803 1.44274 1.44736 1.45187 1.45627 1.4604 1.46442 1.46764 1.46951 1.46993 1.46879 1.46285 1.44605 1.40539 1.31043 1.10222 0.716473 0.398909 0.296007 0.32687 0.385415 0.438724 0.480733 0.516766 0.552877 0.589006 0.622853 0.653445 0.681568 0.708974 0.735783 0.761979 0.786394 0.810098 0.832198 0.854063 0.874432 0.894671 0.913367 0.932341 0.94982 0.967888 0.984258 1.00127 1.01664 1.03241 1.04715 1.06166 1.07618 1.08949 1.10404 1.11653 1.13101 1.14334 1.15802 1.17023 1.18526 1.19736 1.21262 1.22452 1.23993 1.25157 1.26696 1.27831 1.29367 1.30472 1.31998 1.33041 1.34508 1.35323 1.36451 1.13956 1.24698 1.34276 1.43543 1.52047 1.58717 1.6196 1.62225 1.61721 1.6032 1.58398 1.56941 1.56115 1.55918 1.55987 1.56098 1.56254 1.56415 1.56559 1.56717 1.569 1.57119 1.57379 1.57673 1.57992 1.58331 1.58686 1.59059 1.59442 1.59838 1.60247 1.60662 1.61092 1.61507 1.61946 1.62337 1.62732 1.62946 1.6304 1.63009 1.62655 1.61436 1.58439 1.51157 1.35191 1.03352 0.695302 0.569771 0.600827 0.67157 0.743878 0.796887 0.836669 0.866058 0.888661 0.908953 0.927961 0.945633 0.962274 0.978544 0.996105 1.01255 1.02976 1.04559 1.06133 1.07627 1.09069 1.105 1.11821 1.132 1.14426 1.15755 1.16936 1.18227 1.19374 1.20642 1.21763 1.23022 1.24127 1.25364 1.2644 1.2764 1.28664 1.29813 1.30786 1.31894 1.32828 1.3391 1.34815 1.35887 1.36768 1.37837 1.38694 1.39771 1.40612 1.41718 1.42526 1.43636 1.44283 1.45153 1.14617 1.25558 1.35493 1.44667 1.52765 1.5956 1.64817 1.68547 1.70579 1.71036 1.70862 1.70163 1.69083 1.68129 1.6759 1.67489 1.67578 1.67727 1.67945 1.68176 1.68371 1.68553 1.68741 1.68953 1.69198 1.69474 1.69778 1.70104 1.7045 1.7081 1.71186 1.71563 1.71972 1.72356 1.72787 1.73151 1.73519 1.737 1.73776 1.73733 1.73348 1.72182 1.69406 1.6319 1.51057 1.29608 1.02081 0.855966 0.876246 0.924139 0.977861 1.02359 1.05543 1.07516 1.08678 1.09655 1.10389 1.11033 1.1169 1.12411 1.13176 1.14134 1.15253 1.1647 1.17616 1.18827 1.19903 1.21058 1.22118 1.23266 1.24329 1.25488 1.26547 1.277 1.28758 1.29925 1.30987 1.32143 1.33177 1.34299 1.35295 1.36381 1.37337 1.38383 1.39295 1.40303 1.41177 1.42147 1.4298 1.4391 1.447 1.4559 1.4634 1.47189 1.47892 1.48703 1.49364 1.50152 1.50694 1.51153 1.14635 1.25382 1.35004 1.43806 1.51808 1.58946 1.65256 1.70541 1.74655 1.77345 1.78413 1.78424 1.78211 1.776 1.76754 1.76095 1.75639 1.75516 1.75565 1.75677 1.75845 1.76065 1.76295 1.7652 1.76743 1.76983 1.77238 1.77524 1.77823 1.78161 1.78499 1.78867 1.79245 1.79607 1.80003 1.80325 1.80575 1.80681 1.80696 1.80486 1.79743 1.77831 1.73594 1.6473 1.50898 1.36596 1.25247 1.1286 1.06085 1.05253 1.07481 1.10158 1.13199 1.15541 1.1729 1.18539 1.19338 1.19961 1.20469 1.20936 1.21403 1.21948 1.22666 1.23652 1.24765 1.2588 1.26949 1.28027 1.29074 1.30147 1.31199 1.32287 1.33355 1.34465 1.35545 1.36648 1.37708 1.38785 1.39811 1.4085 1.41839 1.42838 1.43784 1.44739 1.45642 1.46557 1.47421 1.48296 1.49117 1.49942 1.50708 1.51481 1.52197 1.52926 1.53587 1.54237 1.54819 1.55337 1.55803 1.55996 1.14092 1.24309 1.33721 1.42296 1.50156 1.57312 1.63702 1.6934 1.741 1.78006 1.80993 1.82907 1.8372 1.83783 1.83654 1.83241 1.82637 1.82119 1.81793 1.81736 1.81825 1.81955 1.82167 1.82437 1.8272 1.8298 1.83235 1.8349 1.83754 1.84057 1.8436 1.84742 1.85087 1.85518 1.85847 1.86147 1.86282 1.86306 1.86157 1.85487 1.83841 1.79962 1.71993 1.5859 1.46088 1.40325 1.37051 1.31918 1.25774 1.20632 1.17779 1.17337 1.18686 1.20194 1.22047 1.23873 1.25135 1.26027 1.26756 1.27351 1.27821 1.28233 1.2872 1.2937 1.30226 1.31186 1.32198 1.33235 1.34279 1.35327 1.36384 1.37457 1.38526 1.39599 1.40669 1.41733 1.42784 1.43826 1.44856 1.45872 1.46869 1.47852 1.48818 1.49771 1.50702 1.51614 1.52501 1.53368 1.5421 1.5503 1.5582 1.5658 1.57299 1.57981 1.58619 1.59212 1.59785 1.60252 1.60675 1.60619 1.1387 1.23182 1.31986 1.40204 1.47813 1.5487 1.61323 1.67181 1.72434 1.77014 1.80912 1.84017 1.8633 1.87717 1.88245 1.88258 1.88158 1.87847 1.87412 1.87046 1.86831 1.86769 1.8685 1.86956 1.87149 1.87413 1.87725 1.88009 1.88321 1.88596 1.88934 1.89222 1.89589 1.89891 1.90162 1.90309 1.90339 1.9017 1.89594 1.87926 1.84315 1.76501 1.62824 1.50099 1.44174 1.42917 1.42771 1.41798 1.39682 1.36783 1.33148 1.29379 1.26938 1.25962 1.2637 1.27257 1.28355 1.29662 1.30761 1.31618 1.32343 1.32965 1.33508 1.34036 1.34638 1.35367 1.36218 1.37157 1.38154 1.39203 1.40281 1.41367 1.42456 1.43546 1.44634 1.45719 1.46795 1.47859 1.48909 1.49952 1.50985 1.52003 1.53003 1.53986 1.5495 1.55896 1.56818 1.57718 1.5859 1.59437 1.6026 1.61054 1.61806 1.62513 1.63166 1.63769 1.64355 1.64824 1.65275 1.65226 1.13795 1.22274 1.305 1.38256 1.45579 1.52369 1.58752 1.64559 1.69967 1.74739 1.79057 1.82725 1.85854 1.88294 1.90083 1.91141 1.91604 1.91638 1.91576 1.91332 1.9101 1.907 1.90513 1.9049 1.90574 1.90707 1.90925 1.9126 1.91608 1.9201 1.92329 1.92701 1.92972 1.93213 1.93302 1.93309 1.93154 1.92528 1.91008 1.87384 1.79906 1.6591 1.52721 1.46072 1.44865 1.45583 1.46494 1.47188 1.47541 1.47256 1.45959 1.43707 1.40575 1.37056 1.34264 1.32674 1.32218 1.32795 1.33473 1.34432 1.35563 1.36486 1.37249 1.3796 1.38621 1.39224 1.39861 1.40595 1.41462 1.42429 1.43461 1.44528 1.45613 1.46701 1.47786 1.48868 1.49946 1.51017 1.52077 1.53125 1.54162 1.55194 1.56218 1.57233 1.58234 1.5922 1.60191 1.61146 1.62084 1.62999 1.63886 1.64743 1.65566 1.66355 1.67094 1.67764 1.68368 1.68869 1.69352 1.6938 1.13842 1.21524 1.29144 1.36457 1.4342 1.49961 1.56117 1.61851 1.67189 1.72103 1.76586 1.8062 1.84202 1.87267 1.89884 1.91897 1.9335 1.94183 1.94577 1.94619 1.94598 1.94454 1.94253 1.9407 1.94006 1.94065 1.94163 1.94302 1.94567 1.94847 1.95214 1.95487 1.95747 1.95807 1.95808 1.95645 1.95016 1.93511 1.89973 1.82566 1.6856 1.54597 1.47123 1.4575 1.46525 1.47775 1.49146 1.50791 1.52367 1.53305 1.53701 1.53461 1.52271 1.50103 1.47128 1.43604 1.40522 1.38362 1.37318 1.37328 1.37902 1.3869 1.39765 1.40806 1.41707 1.42516 1.43209 1.43833 1.44527 1.45333 1.46237 1.47209 1.4823 1.49291 1.50379 1.51475 1.5256 1.53629 1.54683 1.55724 1.56751 1.57769 1.58783 1.59797 1.60807 1.61811 1.62809 1.63798 1.64776 1.65741 1.66682 1.67609 1.68496 1.6936 1.70161 1.70921 1.71657 1.72237 1.72761 1.72889 1.14147 1.21075 1.28114 1.34971 1.41584 1.47862 1.5382 1.59409 1.64667 1.6956 1.74119 1.78301 1.82131 1.85553 1.88584 1.9116 1.93324 1.95011 1.96228 1.96929 1.97287 1.97348 1.97339 1.97257 1.97074 1.96939 1.96831 1.96886 1.96973 1.97121 1.97318 1.97594 1.97696 1.97696 1.97549 1.96958 1.95552 1.92128 1.84928 1.70973 1.5625 1.48158 1.46514 1.47183 1.48377 1.50012 1.51779 1.53792 1.55628 1.5734 1.58559 1.59315 1.59528 1.59259 1.58092 1.56044 1.53281 1.49814 1.46449 1.4374 1.42159 1.41702 1.42192 1.4289 1.43917 1.4516 1.46264 1.47222 1.48013 1.48727 1.49444 1.50233 1.51114 1.52071 1.53072 1.54108 1.55161 1.56214 1.57255 1.58281 1.59295 1.60297 1.61291 1.62278 1.63265 1.64255 1.65245 1.66235 1.6721 1.6819 1.69142 1.70095 1.71014 1.71904 1.72775 1.73594 1.7438 1.7504 1.75705 1.75906 1.14626 1.20832 1.27263 1.33663 1.39911 1.45889 1.51617 1.57041 1.62182 1.67003 1.71542 1.75762 1.79701 1.83311 1.86621 1.89579 1.92196 1.94422 1.96266 1.97708 1.98725 1.99323 1.99618 1.99685 1.99666 1.99629 1.99504 1.99434 1.99347 1.99386 1.9944 1.99481 1.99463 1.9931 1.98769 1.97313 1.94148 1.87167 1.73453 1.57862 1.48853 1.46887 1.4749 1.48744 1.50421 1.52335 1.54406 1.5647 1.58374 1.6021 1.61815 1.63151 1.64166 1.64758 1.64997 1.64836 1.63873 1.62 1.5935 1.55863 1.52128 1.48926 1.46807 1.45888 1.46282 1.46983 1.48024 1.49473 1.50757 1.51814 1.52707 1.53516 1.54302 1.5512 1.55992 1.56919 1.57891 1.58891 1.59905 1.60914 1.6191 1.62894 1.63867 1.64834 1.65789 1.66752 1.67703 1.6867 1.69621 1.70575 1.71521 1.72451 1.73371 1.74266 1.75159 1.75963 1.76835 1.77492 1.78251 1.78517 1.15496 1.21003 1.26824 1.32698 1.38555 1.44253 1.49736 1.54963 1.5997 1.647 1.69188 1.73394 1.7736 1.81051 1.84493 1.87653 1.90541 1.93114 1.95384 1.97297 1.9889 2.00111 2.00994 2.01511 2.01785 2.01855 2.01852 2.01829 2.01711 2.01576 2.01449 2.01309 2.01021 2.00314 1.98898 1.95668 1.89084 1.75516 1.59405 1.49624 1.47341 1.47828 1.49034 1.50764 1.52658 1.54876 1.56958 1.58926 1.60767 1.62664 1.64393 1.66041 1.67407 1.68592 1.69489 1.70114 1.70364 1.70268 1.69436 1.67647 1.65027 1.61539 1.57554 1.53875 1.51262 1.50005 1.50346 1.51054 1.52136 1.53705 1.55061 1.5622 1.57237 1.5815 1.59005 1.59861 1.60742 1.61651 1.6259 1.63554 1.64527 1.65506 1.66468 1.67439 1.68392 1.69348 1.7029 1.71227 1.72159 1.73089 1.74011 1.74907 1.75827 1.76668 1.77584 1.78353 1.79249 1.79907 1.80693 1.80988 1.1665 1.21529 1.26717 1.32072 1.37449 1.42778 1.48008 1.53051 1.57868 1.62502 1.66905 1.71101 1.75058 1.78801 1.82307 1.85589 1.88642 1.91444 1.94003 1.96285 1.98276 1.99978 2.0135 2.02434 2.03172 2.0365 2.03857 2.03897 2.03863 2.03776 2.03513 2.03078 2.02325 2.00819 1.97586 1.91192 1.77952 1.6133 1.50402 1.47631 1.47986 1.49204 1.50791 1.52752 1.54994 1.57219 1.59149 1.61038 1.629 1.64771 1.66527 1.68211 1.69722 1.71162 1.72469 1.73649 1.74568 1.75211 1.75453 1.75394 1.74694 1.73052 1.70593 1.67202 1.63022 1.59013 1.55883 1.54245 1.5453 1.55244 1.56328 1.57925 1.59341 1.60538 1.61639 1.62624 1.63516 1.64385 1.65243 1.66122 1.67013 1.67937 1.68872 1.69817 1.70761 1.71716 1.72664 1.73604 1.74545 1.75454 1.76395 1.77265 1.78206 1.79021 1.79952 1.80704 1.81612 1.82275 1.83083 1.83395 1.18222 1.22503 1.27091 1.31913 1.36843 1.41784 1.46623 1.51426 1.56071 1.60526 1.64823 1.68936 1.72864 1.76607 1.80144 1.83495 1.86624 1.89579 1.9228 1.94815 1.97059 1.99115 2.00863 2.0237 2.03579 2.04493 2.05137 2.05419 2.05408 2.05324 2.05023 2.04262 2.02795 1.99657 1.93463 1.80858 1.63824 1.51583 1.48072 1.48181 1.49414 1.50967 1.52755 1.55071 1.57274 1.59298 1.61119 1.6301 1.64837 1.66716 1.68473 1.70195 1.71766 1.73334 1.74803 1.76247 1.77592 1.788 1.79766 1.80467 1.80792 1.80812 1.80282 1.78861 1.76514 1.73161 1.6885 1.64435 1.60738 1.58687 1.58939 1.59653 1.60701 1.62288 1.63731 1.64956 1.66082 1.67097 1.68002 1.68861 1.69688 1.70526 1.71374 1.72251 1.7315 1.74051 1.74977 1.75878 1.76821 1.77694 1.78644 1.79482 1.8044 1.81236 1.82188 1.82932 1.83855 1.84525 1.8535 1.85708 1.19763 1.2359 1.27709 1.32055 1.36554 1.41095 1.4567 1.50106 1.54537 1.58858 1.63 1.67015 1.70871 1.74564 1.78106 1.81471 1.84671 1.87688 1.90527 1.9318 1.95624 1.97908 1.99895 2.0177 2.03261 2.04635 2.0561 2.06288 2.06373 2.06235 2.05688 2.0447 2.01588 1.95885 1.83971 1.67057 1.53456 1.4882 1.48526 1.4981 1.51227 1.52955 1.55114 1.574 1.594 1.61286 1.63077 1.64944 1.66803 1.6872 1.70521 1.72273 1.73886 1.75506 1.77048 1.78641 1.80172 1.81659 1.83044 1.84256 1.85246 1.85986 1.86321 1.86371 1.85938 1.84656 1.82369 1.79067 1.74674 1.69926 1.65604 1.63269 1.635 1.64209 1.65222 1.6677 1.68203 1.69427 1.70541 1.71561 1.72489 1.73327 1.74149 1.74946 1.75783 1.76591 1.77475 1.78288 1.79201 1.80004 1.80937 1.81721 1.82665 1.83427 1.84369 1.85101 1.8602 1.86699 1.87505 1.87903 1.21475 1.2501 1.28663 1.32559 1.36584 1.40769 1.44949 1.49194 1.53287 1.57363 1.61421 1.65261 1.69053 1.72672 1.76171 1.79513 1.82746 1.85769 1.88708 1.91421 1.93992 1.96428 1.98574 2.00699 2.02424 2.04107 2.0537 2.06284 2.06369 2.06097 2.05115 2.02855 1.97559 1.87133 1.70094 1.55654 1.49856 1.49202 1.50387 1.51815 1.53397 1.5551 1.57758 1.59879 1.61733 1.63528 1.65276 1.67151 1.69035 1.7095 1.72747 1.74501 1.76157 1.77814 1.79417 1.81075 1.82663 1.84273 1.8578 1.87213 1.88522 1.89666 1.90633 1.91374 1.91726 1.91797 1.9145 1.90278 1.88055 1.84784 1.80289 1.75238 1.7039 1.67835 1.6802 1.68732 1.69709 1.71205 1.72628 1.73835 1.74955 1.75976 1.76943 1.77754 1.78612 1.79365 1.80204 1.80936 1.81802 1.82536 1.83418 1.84147 1.85049 1.85774 1.86683 1.87392 1.88288 1.88953 1.89745 1.90129 1.2305 1.26381 1.29851 1.3336 1.37109 1.40811 1.44701 1.48574 1.52537 1.56327 1.60092 1.63896 1.67468 1.71015 1.74485 1.77692 1.80974 1.83941 1.86891 1.89698 1.9226 1.94866 1.97076 1.99361 2.0127 2.03085 2.04602 2.0536 2.0523 2.04635 2.02838 1.98264 1.8898 1.72335 1.57694 1.50972 1.49849 1.50989 1.52458 1.54121 1.56178 1.58497 1.60608 1.62557 1.64295 1.66051 1.67802 1.69665 1.71501 1.73371 1.75142 1.76908 1.78563 1.80215 1.81821 1.83457 1.85054 1.8668 1.88216 1.89727 1.91132 1.9247 1.93713 1.94831 1.95808 1.96569 1.96942 1.97031 1.96744 1.95669 1.93545 1.90298 1.85761 1.80475 1.7515 1.72425 1.7251 1.73184 1.74137 1.75548 1.76947 1.78128 1.79267 1.80269 1.81263 1.82073 1.82944 1.83661 1.84475 1.85163 1.85995 1.86679 1.87521 1.88211 1.8908 1.89769 1.90644 1.91289 1.92086 1.92444 1.24478 1.2767 1.30885 1.34183 1.37571 1.41197 1.4472 1.48359 1.51985 1.55696 1.5924 1.62737 1.66358 1.69592 1.73051 1.76208 1.79298 1.82417 1.85165 1.88102 1.90639 1.93241 1.95643 1.97825 2.00038 2.01756 2.03282 2.03521 2.03113 2.01616 1.98073 1.89163 1.74253 1.59078 1.51594 1.50129 1.51271 1.52943 1.54746 1.57024 1.59386 1.61623 1.63587 1.65432 1.67132 1.68865 1.7057 1.72361 1.74132 1.75945 1.7768 1.79394 1.81003 1.82627 1.84199 1.85818 1.87414 1.89037 1.90588 1.92133 1.93576 1.94995 1.96334 1.97635 1.98865 1.99991 2.00996 2.01764 2.02168 2.02257 2.02018 2.01023 1.98992 1.95796 1.91222 1.85737 1.80017 1.77148 1.77057 1.7773 1.7864 1.79948 1.8129 1.82431 1.83556 1.84534 1.85517 1.86318 1.8717 1.87853 1.8863 1.89282 1.90073 1.90717 1.91521 1.92173 1.93008 1.93639 1.94428 1.9478 1.26334 1.2918 1.321 1.35168 1.38296 1.41577 1.4501 1.48401 1.51808 1.55277 1.58727 1.62054 1.65381 1.68706 1.71798 1.75026 1.77979 1.80938 1.83834 1.86475 1.89253 1.91658 1.94182 1.96405 1.98502 2.00373 2.01051 2.00804 1.99749 1.9668 1.89402 1.74522 1.59193 1.51216 1.49701 1.51045 1.52914 1.55012 1.57516 1.60001 1.62306 1.64483 1.66439 1.68298 1.69998 1.71695 1.73348 1.75087 1.76812 1.78587 1.80274 1.8195 1.83533 1.85134 1.86683 1.88297 1.89868 1.91471 1.93011 1.94553 1.9601 1.9747 1.98857 2.00235 2.01557 2.02838 2.04042 2.05136 2.06108 2.06834 2.07237 2.07324 2.0713 2.06221 2.04293 2.012 1.96603 1.90951 1.84938 1.81905 1.81616 1.82282 1.83142 1.84336 1.85602 1.86712 1.87814 1.88752 1.89706 1.9049 1.91317 1.91961 1.92705 1.93318 1.94064 1.94667 1.95423 1.96009 1.9674 1.97072 1.28251 1.30446 1.33325 1.36211 1.39127 1.42157 1.45317 1.48611 1.51825 1.55084 1.58397 1.61601 1.64829 1.67918 1.71052 1.73999 1.76991 1.79823 1.82583 1.85336 1.87824 1.90462 1.92721 1.9506 1.97005 1.98221 1.98192 1.97292 1.94656 1.88408 1.74529 1.58768 1.50086 1.48612 1.50051 1.52167 1.54564 1.57361 1.59931 1.62363 1.6467 1.66928 1.69012 1.70964 1.72716 1.74437 1.7612 1.77887 1.79628 1.81383 1.83041 1.84681 1.8624 1.87815 1.89355 1.90929 1.92463 1.94031 1.95547 1.97071 1.98532 1.99988 2.01367 2.02739 2.04051 2.05347 2.06593 2.07802 2.08932 2.09976 2.10905 2.11607 2.12048 2.12145 2.12003 2.11196 2.0938 2.06408 2.01762 1.95976 1.89752 1.86545 1.8604 1.86688 1.87492 1.88551 1.89801 1.90874 1.91955 1.92858 1.93804 1.94571 1.95377 1.95988 1.96709 1.97289 1.97992 1.98529 1.99183 1.99457 1.30668 1.32274 1.34774 1.37505 1.40233 1.42981 1.45867 1.48911 1.52002 1.55095 1.58187 1.61302 1.64344 1.67416 1.70333 1.73304 1.76105 1.78925 1.81634 1.84241 1.86856 1.89213 1.91648 1.93638 1.95211 1.95369 1.94573 1.92202 1.86847 1.73898 1.5791 1.48416 1.46776 1.48273 1.50576 1.53394 1.56547 1.594 1.61968 1.64456 1.66812 1.6907 1.71144 1.73133 1.75033 1.76955 1.78822 1.80691 1.82465 1.84209 1.8585 1.8748 1.89031 1.90593 1.92087 1.93604 1.95084 1.96599 1.98075 1.99571 2.01002 2.02426 2.03772 2.05119 2.06391 2.07678 2.08907 2.10137 2.11321 2.12475 2.13566 2.1458 2.15495 2.16199 2.16691 2.16801 2.167 2.1599 2.14282 2.11395 2.06749 2.00809 1.94436 1.91053 1.90315 1.9093 1.91648 1.92574 1.93845 1.94854 1.95908 1.96783 1.97726 1.98471 1.99261 1.99857 2.00572 2.01097 2.01723 2.01973 1.33326 1.34019 1.35963 1.38686 1.41387 1.44066 1.46723 1.49497 1.52367 1.55283 1.58254 1.61149 1.64098 1.66968 1.69863 1.7263 1.75425 1.78104 1.80753 1.83357 1.85812 1.88262 1.90381 1.92155 1.92478 1.91781 1.89536 1.84854 1.72603 1.56541 1.46248 1.44433 1.46025 1.48522 1.51611 1.55108 1.58179 1.60988 1.63627 1.66228 1.68655 1.70934 1.73013 1.75051 1.77058 1.79108 1.811 1.83066 1.84914 1.86732 1.88451 1.90133 1.91702 1.93238 1.94696 1.96184 1.97636 1.99139 2.00593 2.02075 2.03473 2.04879 2.06193 2.07514 2.08758 2.10023 2.11231 2.12458 2.13646 2.14824 2.15973 2.17082 2.1814 2.19134 2.20035 2.20742 2.21284 2.21402 2.21322 2.20698 2.19112 2.16254 2.11638 2.05573 1.99093 1.95485 1.94562 1.95089 1.95708 1.96576 1.97823 1.98728 1.99753 2.00592 2.01549 2.0223 2.03014 2.03559 2.04214 2.0447 1.37181 1.36703 1.37777 1.39833 1.42491 1.45091 1.47621 1.50249 1.52907 1.5565 1.58409 1.61239 1.63959 1.66768 1.69466 1.72228 1.7485 1.77506 1.80057 1.82556 1.84987 1.87182 1.89075 1.89603 1.889 1.86981 1.82397 1.71219 1.55081 1.4396 1.41908 1.43478 1.46014 1.49345 1.53055 1.56384 1.59384 1.6231 1.65118 1.67814 1.70268 1.72579 1.74736 1.76859 1.78914 1.80989 1.8304 1.85102 1.87095 1.89047 1.90861 1.92602 1.94214 1.95795 1.97296 1.98809 2.00265 2.01748 2.03169 2.04611 2.05977 2.07356 2.08651 2.09957 2.11191 2.12436 2.13628 2.1483 2.15997 2.17163 2.18309 2.19437 2.20538 2.21614 2.22629 2.23599 2.24467 2.25165 2.25718 2.25834 2.25755 2.25206 2.23721 2.20937 2.16428 2.10257 2.03754 1.99865 1.98807 1.99168 1.99742 2.00542 2.01742 2.02544 2.03538 2.04322 2.05259 2.05862 2.06595 2.06855 1.40568 1.39352 1.39908 1.415 1.43813 1.46294 1.48676 1.51102 1.53574 1.56117 1.58731 1.61338 1.64026 1.66607 1.69261 1.71825 1.74443 1.76951 1.79466 1.81863 1.84114 1.86047 1.86718 1.86074 1.84244 1.79742 1.69733 1.53043 1.41258 1.39101 1.40674 1.4329 1.46796 1.50738 1.54229 1.57404 1.60423 1.63394 1.66225 1.68936 1.71469 1.73916 1.76234 1.78503 1.80658 1.82785 1.84855 1.86962 1.89034 1.91078 1.93002 1.9484 1.96548 1.98197 1.99751 2.01279 2.02745 2.04212 2.05632 2.07061 2.08433 2.09801 2.11102 2.1239 2.13612 2.14825 2.15988 2.17154 2.18285 2.19431 2.20547 2.21677 2.22775 2.23868 2.24926 2.25957 2.26941 2.27877 2.28723 2.29418 2.29985 2.30108 2.3004 2.2956 2.28188 2.255 2.21066 2.14917 2.08352 2.0414 2.03031 2.03167 2.03703 2.04435 2.0553 2.06273 2.07241 2.07944 2.08805 2.09082 1.47945 1.42855 1.42298 1.43158 1.44946 1.47464 1.49848 1.5215 1.5445 1.56748 1.59161 1.61641 1.64103 1.66666 1.69113 1.71634 1.74066 1.76524 1.78878 1.81118 1.83049 1.83835 1.83217 1.81429 1.77015 1.67765 1.50328 1.38205 1.36032 1.37694 1.40418 1.44108 1.48238 1.51894 1.55162 1.58287 1.61325 1.6431 1.67164 1.69925 1.72542 1.75074 1.77478 1.79812 1.82052 1.84277 1.86434 1.88581 1.90659 1.9273 1.94714 1.96648 1.98452 2.00191 2.01823 2.03436 2.04977 2.06516 2.07986 2.09449 2.10838 2.12214 2.13516 2.14806 2.16025 2.17238 2.18386 2.19537 2.20642 2.21752 2.22837 2.23925 2.24996 2.26064 2.27115 2.28149 2.29161 2.30152 2.31096 2.32014 2.32838 2.33544 2.34121 2.34257 2.34214 2.33787 2.3252 2.29974 2.25511 2.19511 2.13021 2.08371 2.07167 2.07022 2.07576 2.08202 2.09116 2.09813 2.10707 2.11065 1.62402 1.47704 1.45193 1.45178 1.46386 1.48311 1.50745 1.53066 1.55313 1.57548 1.59751 1.62051 1.64387 1.66759 1.69163 1.71541 1.73886 1.76202 1.78352 1.8028 1.81066 1.80418 1.78588 1.74219 1.64736 1.47768 1.35355 1.33152 1.34781 1.37491 1.41254 1.45573 1.49398 1.52816 1.56004 1.59116 1.62132 1.65093 1.67949 1.7075 1.73446 1.76066 1.7856 1.8098 1.83306 1.85598 1.87826 1.90032 1.92159 1.94248 1.96261 1.98246 2.00142 2.01988 2.03728 2.0543 2.0704 2.0864 2.10151 2.11671 2.13099 2.14544 2.15883 2.17237 2.18479 2.19736 2.20892 2.22063 2.23156 2.2426 2.25309 2.26369 2.27388 2.28425 2.29422 2.30442 2.31416 2.32411 2.33361 2.34313 2.35223 2.36115 2.36922 2.37637 2.38222 2.38376 2.38363 2.38002 2.36765 2.34379 2.29846 2.24235 2.17624 2.12587 2.11246 2.10793 2.11324 2.11767 2.12436 2.12851 1.85734 1.56822 1.48783 1.47538 1.47996 1.49456 1.5159 1.53935 1.56166 1.58327 1.60459 1.62587 1.64767 1.66984 1.69262 1.71502 1.73765 1.75854 1.77742 1.78501 1.77832 1.75941 1.71532 1.61773 1.45015 1.3232 1.30112 1.31786 1.3454 1.38404 1.42847 1.46851 1.50403 1.53691 1.5682 1.59879 1.6286 1.65827 1.6873 1.71604 1.74358 1.77017 1.7954 1.81985 1.84346 1.86687 1.88981 1.9126 1.93473 1.95634 1.97697 1.99707 2.01655 2.0358 2.0543 2.07233 2.0895 2.1063 2.12241 2.13813 2.15317 2.16779 2.1818 2.19541 2.2085 2.2212 2.23337 2.24513 2.25633 2.26722 2.27756 2.28789 2.29767 2.30776 2.31731 2.32726 2.33672 2.34642 2.35583 2.36516 2.37443 2.38343 2.39228 2.40089 2.40876 2.41589 2.42158 2.42341 2.42349 2.42 2.40916 2.38555 2.33999 2.28977 2.21961 2.16879 2.15113 2.14544 2.14594 2.14783 2.28239 1.76559 1.554 1.50963 1.50301 1.50974 1.52514 1.5474 1.56893 1.59021 1.61108 1.63184 1.65272 1.6736 1.69469 1.71591 1.73603 1.75415 1.76133 1.75414 1.73449 1.68942 1.58946 1.42262 1.29244 1.27041 1.28808 1.31665 1.35653 1.40145 1.44292 1.47996 1.51364 1.54541 1.576 1.60631 1.63627 1.66636 1.6958 1.72467 1.7521 1.77864 1.80391 1.82876 1.85296 1.87708 1.90062 1.92391 1.94644 1.96855 1.98987 2.01071 2.03073 2.05041 2.06955 2.08842 2.1064 2.12402 2.14071 2.15723 2.17279 2.18827 2.20276 2.21724 2.23067 2.2441 2.25641 2.26872 2.27989 2.29114 2.3013 2.31174 2.32123 2.3312 2.3404 2.35014 2.3593 2.36878 2.37794 2.38706 2.39613 2.40498 2.41381 2.42251 2.43098 2.43939 2.44698 2.45398 2.45955 2.46139 2.46153 2.45828 2.44823 2.4246 2.38511 2.32993 2.25816 2.21407 2.18341 2.17868 2.56798 2.08012 1.69132 1.55147 1.52858 1.52809 1.53838 1.554 1.57624 1.59686 1.61725 1.63702 1.65725 1.67717 1.69741 1.71647 1.73348 1.7397 1.73171 1.71109 1.66449 1.56166 1.39423 1.26073 1.23947 1.25881 1.28892 1.3307 1.37557 1.41752 1.45546 1.49015 1.52254 1.55374 1.58422 1.61463 1.64478 1.67481 1.70403 1.73257 1.75996 1.78665 1.81241 1.83777 1.86245 1.88686 1.91069 1.93431 1.95735 1.98014 2.00217 2.02376 2.04445 2.0646 2.08398 2.10322 2.12189 2.14022 2.15769 2.17478 2.19104 2.20692 2.22197 2.2367 2.25066 2.26435 2.27735 2.29006 2.30205 2.31374 2.32462 2.33533 2.34519 2.35516 2.36431 2.3738 2.3826 2.3917 2.40046 2.40915 2.41794 2.42632 2.43507 2.44329 2.45192 2.4601 2.46834 2.47641 2.48367 2.49046 2.49579 2.49747 2.49756 2.49466 2.48461 2.46157 2.42473 2.36383 2.29731 2.262 2.76815 2.44014 1.93171 1.6438 1.56048 1.5485 1.55111 1.56404 1.58146 1.60418 1.62417 1.64402 1.66254 1.68153 1.69913 1.71532 1.72033 1.71128 1.68943 1.64068 1.53432 1.36457 1.22811 1.20833 1.22983 1.26211 1.30608 1.35117 1.39301 1.43143 1.46685 1.50017 1.53195 1.56299 1.59351 1.62395 1.65394 1.68371 1.71273 1.74126 1.76887 1.79585 1.82199 1.84759 1.87254 1.89716 1.92133 1.94519 1.96857 1.99146 2.01371 2.03542 2.05646 2.07708 2.09704 2.11665 2.13571 2.1546 2.17266 2.19026 2.20693 2.22329 2.23872 2.25399 2.26838 2.28271 2.29614 2.30951 2.32188 2.33418 2.34538 2.35658 2.36669 2.37695 2.38622 2.39582 2.4046 2.41373 2.42235 2.43101 2.43963 2.4478 2.45644 2.46417 2.47282 2.48037 2.4888 2.49646 2.50437 2.51194 2.51888 2.52512 2.53008 2.53146 2.5313 2.52798 2.51862 2.49238 2.45235 2.42399 2.87446 2.70656 2.34664 1.84797 1.63286 1.58066 1.5725 1.57609 1.58969 1.60878 1.63112 1.65055 1.66992 1.68601 1.70102 1.70363 1.6933 1.66975 1.61794 1.507 1.3321 1.1953 1.17777 1.20233 1.23678 1.28292 1.32839 1.37018 1.40859 1.44453 1.47857 1.51125 1.54283 1.57381 1.6042 1.63442 1.66414 1.69369 1.72256 1.75106 1.77868 1.80579 1.83206 1.8579 1.88312 1.90797 1.9323 1.95618 1.97947 2.00227 2.0245 2.04631 2.06763 2.08855 2.109 2.12901 2.14844 2.16752 2.18604 2.20413 2.22133 2.23813 2.25409 2.26978 2.28465 2.29938 2.3133 2.32711 2.34009 2.35296 2.36489 2.37669 2.38753 2.3982 2.40804 2.41773 2.42681 2.43573 2.44436 2.45269 2.46108 2.46893 2.47727 2.48462 2.49307 2.49999 2.50848 2.51523 2.52346 2.5303 2.53781 2.54458 2.55106 2.55636 2.56083 2.56171 2.56118 2.55745 2.54423 2.53802 2.93165 2.84412 2.64817 2.21734 1.80535 1.63252 1.59942 1.59495 1.60061 1.61486 1.63497 1.6556 1.67324 1.68858 1.69031 1.67857 1.65291 1.59684 1.47982 1.29742 1.16294 1.1492 1.17598 1.2129 1.26119 1.30696 1.34872 1.38697 1.42296 1.45762 1.49118 1.52375 1.55532 1.58616 1.61634 1.6462 1.67555 1.7047 1.73327 1.76152 1.78911 1.81627 1.84275 1.86875 1.89409 1.9189 1.94312 1.96682 1.99002 2.01276 2.03505 2.0569 2.07836 2.09939 2.12003 2.14027 2.16 2.17927 2.19794 2.2163 2.23395 2.25112 2.26755 2.28366 2.299 2.31414 2.32852 2.34273 2.35621 2.36952 2.38205 2.39435 2.4059 2.41704 2.42758 2.43758 2.44715 2.45618 2.46502 2.47334 2.48168 2.48954 2.4976 2.50499 2.51295 2.51981 2.52775 2.53412 2.54208 2.54805 2.5559 2.56168 2.56893 2.57452 2.58063 2.58492 2.58854 2.58915 2.58807 2.58972 2.9626 2.91619 2.80736 2.52902 2.06596 1.74395 1.63526 1.61603 1.61533 1.6243 1.63862 1.65742 1.67368 1.67723 1.66492 1.63693 1.5755 1.45209 1.26243 1.13232 1.12142 1.14982 1.18991 1.24041 1.28661 1.32835 1.36663 1.40283 1.43776 1.47191 1.50517 1.53754 1.56886 1.59943 1.62919 1.65861 1.68749 1.7162 1.74441 1.7724 1.7998 1.82683 1.85321 1.87909 1.90437 1.92908 1.95327 1.97691 2.00007 2.02272 2.04494 2.06673 2.08817 2.1092 2.12993 2.15022 2.17013 2.18957 2.20846 2.22691 2.24486 2.26236 2.27924 2.29576 2.31161 2.3272 2.3421 2.35673 2.37072 2.38443 2.39752 2.41026 2.42249 2.43414 2.44543 2.45596 2.46619 2.47561 2.48481 2.49329 2.5016 2.50941 2.51713 2.52436 2.53181 2.53853 2.54584 2.55208 2.55933 2.56513 2.57227 2.5777 2.58461 2.58966 2.59611 2.60054 2.60603 2.60929 2.61197 2.61374 2.98233 2.95455 2.8981 2.76406 2.45131 1.97818 1.7242 1.64914 1.63498 1.63553 1.64388 1.65681 1.66315 1.65061 1.62023 1.55034 1.41926 1.22455 1.10231 1.09525 1.1241 1.16691 1.21959 1.26646 1.30824 1.34662 1.38307 1.41839 1.45288 1.48668 1.51962 1.55168 1.58271 1.61293 1.6423 1.67124 1.69961 1.7278 1.75552 1.78307 1.81007 1.83678 1.86287 1.88856 1.91366 1.93826 1.96233 1.98589 2.00893 2.03155 2.05372 2.07555 2.09701 2.11812 2.13886 2.15918 2.17907 2.19852 2.21746 2.23599 2.25405 2.2718 2.28908 2.30604 2.3224 2.33845 2.35384 2.36887 2.3833 2.39735 2.41091 2.42402 2.4368 2.44886 2.46082 2.47175 2.48266 2.49242 2.50215 2.51085 2.51945 2.52733 2.53506 2.54226 2.54949 2.55609 2.56301 2.56904 2.57572 2.58119 2.58763 2.59264 2.59878 2.60342 2.6092 2.61346 2.6187 2.62234 2.62641 2.62838 2.98972 2.97868 2.94633 2.88167 2.71859 2.39159 1.92973 1.72237 1.66841 1.65448 1.65257 1.65091 1.63872 1.60531 1.52377 1.37826 1.18234 1.07238 1.07026 1.09887 1.14277 1.197 1.24493 1.28728 1.32568 1.36209 1.39757 1.43251 1.46682 1.50035 1.53294 1.56458 1.59521 1.62505 1.65408 1.68263 1.71059 1.73831 1.76554 1.79259 1.81912 1.8454 1.87112 1.89641 1.92115 1.94538 1.9692 1.99257 2.0156 2.03829 2.06061 2.08259 2.10419 2.12538 2.14616 2.16648 2.18637 2.20582 2.22482 2.24346 2.26168 2.2796 2.29713 2.31433 2.33099 2.34735 2.3631 2.37851 2.39338 2.40788 2.42192 2.4355 2.44875 2.46129 2.47372 2.48511 2.49653 2.50672 2.517 2.52603 2.53513 2.54317 2.55125 2.55846 2.56582 2.5723 2.57912 2.58493 2.59128 2.59642 2.6023 2.60687 2.61225 2.61637 2.62129 2.62501 2.62946 2.63274 2.63646 2.63844 2.99546 2.98812 2.97493 2.93872 2.86186 2.68172 2.31356 1.90136 1.72092 1.67918 1.66257 1.64188 1.59823 1.50121 1.33014 1.13563 1.04249 1.04714 1.07523 1.12018 1.17497 1.22357 1.26649 1.30511 1.34124 1.37628 1.4109 1.44517 1.47886 1.51181 1.54388 1.57513 1.60546 1.63511 1.66399 1.69239 1.72011 1.74749 1.77429 1.80085 1.82683 1.85254 1.87768 1.90244 1.92676 1.95066 1.97423 1.99745 2.02037 2.04306 2.06546 2.08761 2.10942 2.13082 2.15181 2.17228 2.19232 2.2119 2.23105 2.24984 2.26823 2.28632 2.30402 2.3214 2.33824 2.35483 2.37084 2.38658 2.40182 2.41676 2.4312 2.44526 2.45887 2.47189 2.48464 2.49647 2.50823 2.51883 2.52961 2.53896 2.54871 2.55693 2.56558 2.57288 2.58053 2.58702 2.59386 2.59959 2.60572 2.61069 2.61612 2.62035 2.6251 2.62866 2.6328 2.6358 2.63943 2.64196 2.64501 2.64644 2.99729 2.99457 2.98572 2.97011 2.92566 2.83595 2.61196 2.20987 1.85366 1.71496 1.66835 1.61221 1.49454 1.28133 1.08192 1.00654 1.01741 1.04688 1.0948 1.14965 1.19868 1.24223 1.28175 1.3188 1.35433 1.38896 1.42289 1.45625 1.48903 1.52127 1.55282 1.58372 1.61388 1.64339 1.6721 1.70026 1.72774 1.75481 1.7813 1.80749 1.83317 1.85858 1.88356 1.90821 1.93252 1.95641 1.97997 2.00315 2.02601 2.04854 2.0707 2.09254 2.11399 2.13507 2.15578 2.17614 2.19613 2.21581 2.23509 2.25402 2.27257 2.29068 2.30844 2.32583 2.34285 2.35958 2.37591 2.39196 2.40765 2.423 2.43793 2.45248 2.46654 2.48012 2.49324 2.5057 2.51782 2.52905 2.5401 2.55 2.56008 2.56872 2.57781 2.58537 2.59343 2.6 2.60703 2.61268 2.6187 2.62343 2.6285 2.63233 2.63654 2.63955 2.64304 2.6454 2.64831 2.65018 2.65252 2.65351 2.99857 2.99722 2.99236 2.98489 2.96045 2.91472 2.80148 2.53321 2.0958 1.79763 1.66378 1.52376 1.25565 1.02298 0.95243 0.968943 1.00548 1.05989 1.1161 1.16522 1.20906 1.24959 1.28797 1.32471 1.36008 1.39439 1.42791 1.46087 1.49328 1.52515 1.55635 1.5869 1.61666 1.64578 1.67416 1.70203 1.72925 1.75608 1.78233 1.80832 1.83382 1.85911 1.88403 1.90866 1.93299 1.95692 1.98052 2.00369 2.02647 2.04886 2.07085 2.09251 2.1138 2.13476 2.1554 2.17575 2.19574 2.21548 2.2348 2.25379 2.2724 2.29056 2.30844 2.32591 2.34308 2.35998 2.37656 2.39289 2.40891 2.42461 2.43997 2.45495 2.46952 2.48358 2.49721 2.51019 2.52281 2.53462 2.54622 2.55682 2.56736 2.5767 2.58614 2.59423 2.60256 2.60943 2.61661 2.62233 2.62834 2.63298 2.63782 2.64154 2.64526 2.64821 2.65102 2.65336 2.65551 2.65737 2.65898 2.66034 2.99934 2.9982 2.99645 2.99046 2.98069 2.95042 2.89303 2.74686 2.44307 1.96947 1.63617 1.2804 0.953682 0.865725 0.890564 0.933226 0.996358 1.06009 1.11379 1.16031 1.20326 1.24405 1.28282 1.31969 1.35494 1.38897 1.42214 1.45471 1.48667 1.51802 1.54865 1.57862 1.60786 1.63655 1.66462 1.69225 1.71932 1.74604 1.77225 1.79822 1.82377 1.84916 1.87424 1.89909 1.92368 1.94789 1.97176 1.99517 2.01814 2.04066 2.06274 2.08444 2.10581 2.12689 2.14769 2.16826 2.18844 2.20843 2.22799 2.24735 2.2664 2.28508 2.30351 2.32152 2.33926 2.35669 2.37379 2.39062 2.40711 2.42329 2.43911 2.4545 2.46956 2.48393 2.49807 2.51132 2.5244 2.5365 2.54848 2.55936 2.57022 2.57988 2.58956 2.59798 2.60645 2.6136 2.62084 2.62678 2.63272 2.63754 2.64217 2.64596 2.64937 2.65227 2.65466 2.65684 2.65841 2.66003 2.66125 2.66278 2.99954 2.99871 2.99751 2.99308 2.98644 2.96353 2.92422 2.81158 2.58677 2.10735 1.51701 0.943798 0.675391 0.711125 0.762011 0.829384 0.892918 0.95087 1.00597 1.05906 1.10965 1.15743 1.20262 1.24553 1.2865 1.32591 1.36403 1.40105 1.43702 1.47194 1.50576 1.53853 1.57025 1.60109 1.63107 1.66042 1.68909 1.71732 1.74498 1.77231 1.79914 1.82568 1.8518 1.8776 1.90306 1.92811 1.9528 1.97702 2.00083 2.02418 2.04714 2.06966 2.09188 2.11373 2.13531 2.15664 2.17762 2.19844 2.21883 2.23896 2.25872 2.27804 2.29703 2.31555 2.33373 2.35153 2.36903 2.38623 2.40315 2.4198 2.43611 2.45203 2.46762 2.48255 2.49723 2.51104 2.52464 2.53725 2.54972 2.56106 2.57233 2.58234 2.59233 2.60095 2.60959 2.61683 2.62406 2.63005 2.63583 2.64074 2.6451 2.64909 2.65216 2.65534 2.65737 2.65978 2.66107 2.66303 2.66407 2.66601 1.10254 1.2928 1.34716 1.30762 1.23138 1.14435 1.06491 1.02548 1.01965 1.02237 1.0245 1.02489 1.0235 1.02199 1.02071 1.02151 1.0248 1.02908 1.03409 1.0398 1.04593 1.05217 1.05859 1.06522 1.07196 1.07868 1.08522 1.09149 1.09742 1.10298 1.10815 1.11296 1.1175 1.12178 1.12564 1.12881 1.13095 1.13157 1.1303 1.12748 1.11886 1.0981 1.0486 0.934893 0.683022 0.282548 0.113929 0.147143 0.103665 0.0662164 0.0436056 0.0803192 0.130752 0.179494 0.225185 0.266781 0.304385 0.339928 0.375328 0.410258 0.443593 0.475374 0.505824 0.53508 0.563267 0.590305 0.616249 0.641017 0.664745 0.687454 0.709359 0.730524 0.751163 0.771295 0.791075 0.810462 0.829663 0.848499 0.867344 0.885748 0.90432 0.922251 0.940648 0.957971 0.976251 0.993004 1.01096 1.02753 1.04478 1.0614 1.07759 1.09422 1.10928 1.1257 1.13962 1.15568 1.1682 1.18319 1.19292 1.20317 1.14211 1.25781 1.32289 1.36219 1.40228 1.43349 1.4435 1.43946 1.42436 1.40286 1.38573 1.38097 1.38184 1.38394 1.38616 1.38744 1.38873 1.39013 1.39195 1.39453 1.39753 1.40116 1.40548 1.41016 1.4148 1.41938 1.42397 1.42861 1.43331 1.43803 1.44274 1.44736 1.45187 1.45627 1.4604 1.46442 1.46764 1.46951 1.46993 1.46879 1.46285 1.44605 1.40538 1.31043 1.10221 0.716457 0.3989 0.296008 0.326871 0.385416 0.438725 0.480734 0.516767 0.552879 0.589007 0.622854 0.653446 0.681569 0.708975 0.735784 0.76198 0.786395 0.810099 0.832199 0.854064 0.874432 0.894672 0.913367 0.932341 0.949821 0.967889 0.984259 1.00127 1.01664 1.03241 1.04715 1.06166 1.07618 1.08949 1.10404 1.11654 1.13101 1.14335 1.15802 1.17023 1.18526 1.19736 1.21262 1.22452 1.23993 1.25157 1.26696 1.27831 1.29367 1.30472 1.31998 1.3304 1.34508 1.35323 1.36451 1.13956 1.24698 1.34276 1.43543 1.52047 1.58717 1.6196 1.62225 1.61721 1.6032 1.58398 1.56941 1.56115 1.55918 1.55987 1.56098 1.56254 1.56415 1.56559 1.56717 1.569 1.57119 1.57379 1.57673 1.57992 1.58331 1.58686 1.59059 1.59442 1.59838 1.60247 1.60662 1.61092 1.61507 1.61946 1.62337 1.62732 1.62946 1.6304 1.63009 1.62655 1.61435 1.58439 1.51157 1.3519 1.0335 0.695291 0.56977 0.600828 0.671573 0.743879 0.796887 0.83667 0.866059 0.888661 0.908953 0.927961 0.945633 0.962275 0.978544 0.996106 1.01255 1.02976 1.04559 1.06133 1.07627 1.09069 1.105 1.1182 1.132 1.14426 1.15755 1.16936 1.18227 1.19374 1.20642 1.21763 1.23022 1.24127 1.25365 1.2644 1.2764 1.28664 1.29813 1.30786 1.31894 1.32828 1.3391 1.34816 1.35887 1.36768 1.37837 1.38694 1.39771 1.40612 1.41718 1.42526 1.43636 1.44283 1.45153 1.14617 1.25558 1.35493 1.44667 1.52765 1.5956 1.64817 1.68547 1.70579 1.71036 1.70862 1.70163 1.69083 1.68129 1.6759 1.67489 1.67578 1.67727 1.67945 1.68176 1.68371 1.68553 1.68741 1.68953 1.69198 1.69474 1.69778 1.70104 1.70449 1.7081 1.71186 1.71563 1.71972 1.72355 1.72787 1.73151 1.73519 1.737 1.73776 1.73733 1.73348 1.72182 1.69406 1.6319 1.51056 1.29607 1.0208 0.855961 0.876247 0.92414 0.977862 1.0236 1.05543 1.07516 1.08678 1.09655 1.10389 1.11033 1.1169 1.12411 1.13176 1.14134 1.15253 1.1647 1.17616 1.18827 1.19903 1.21058 1.22118 1.23266 1.24329 1.25488 1.26547 1.277 1.28758 1.29925 1.30987 1.32143 1.33177 1.34299 1.35295 1.36382 1.37337 1.38383 1.39296 1.40303 1.41177 1.42147 1.4298 1.4391 1.44701 1.4559 1.4634 1.47189 1.47892 1.48703 1.49364 1.50152 1.50695 1.51153 1.14635 1.25382 1.35004 1.43806 1.51808 1.58946 1.65256 1.70541 1.74655 1.77345 1.78413 1.78424 1.78211 1.776 1.76754 1.76095 1.75639 1.75516 1.75565 1.75677 1.75845 1.76065 1.76295 1.7652 1.76743 1.76983 1.77238 1.77524 1.77823 1.78161 1.78499 1.78867 1.79245 1.79607 1.80003 1.80325 1.80575 1.80681 1.80696 1.80486 1.79743 1.77831 1.73594 1.6473 1.50897 1.36595 1.25246 1.12859 1.06085 1.05253 1.07481 1.10158 1.13199 1.15541 1.1729 1.18539 1.19338 1.19961 1.20469 1.20936 1.21403 1.21948 1.22666 1.23652 1.24765 1.2588 1.26949 1.28027 1.29074 1.30147 1.31199 1.32287 1.33355 1.34465 1.35545 1.36648 1.37708 1.38785 1.39811 1.4085 1.41839 1.42838 1.43784 1.44739 1.45642 1.46557 1.47421 1.48296 1.49117 1.49942 1.50708 1.51481 1.52197 1.52926 1.53587 1.54237 1.54819 1.55337 1.55803 1.55996 1.14092 1.24309 1.33721 1.42296 1.50156 1.57312 1.63702 1.6934 1.741 1.78006 1.80993 1.82907 1.83721 1.83783 1.83654 1.83241 1.82637 1.82119 1.81793 1.81736 1.81825 1.81955 1.82167 1.82437 1.8272 1.8298 1.83235 1.8349 1.83754 1.84057 1.8436 1.84742 1.85087 1.85518 1.85847 1.86147 1.86282 1.86306 1.86157 1.85487 1.83841 1.79962 1.71992 1.58589 1.46087 1.40325 1.37051 1.31918 1.25773 1.20631 1.17779 1.17337 1.18686 1.20194 1.22047 1.23873 1.25135 1.26027 1.26756 1.27351 1.27821 1.28233 1.2872 1.2937 1.30226 1.31186 1.32198 1.33235 1.34279 1.35327 1.36384 1.37457 1.38526 1.39599 1.40668 1.41733 1.42784 1.43826 1.44856 1.45872 1.46869 1.47852 1.48818 1.49771 1.50702 1.51614 1.52501 1.53368 1.5421 1.5503 1.5582 1.5658 1.57299 1.57981 1.58619 1.59212 1.59785 1.60252 1.60675 1.60619 1.1387 1.23182 1.31986 1.40204 1.47813 1.5487 1.61323 1.67181 1.72434 1.77014 1.80912 1.84017 1.8633 1.87717 1.88245 1.88258 1.88158 1.87847 1.87412 1.87046 1.86831 1.86769 1.8685 1.86956 1.87149 1.87413 1.87725 1.88009 1.88321 1.88596 1.88934 1.89222 1.89589 1.8989 1.90162 1.90309 1.90339 1.9017 1.89595 1.87926 1.84314 1.765 1.62824 1.50098 1.44174 1.42917 1.42771 1.41797 1.39681 1.36783 1.33148 1.29379 1.26938 1.25962 1.2637 1.27257 1.28355 1.29663 1.30761 1.31618 1.32343 1.32965 1.33508 1.34036 1.34638 1.35367 1.36218 1.37157 1.38154 1.39203 1.40281 1.41367 1.42456 1.43546 1.44634 1.45719 1.46795 1.47859 1.48909 1.49952 1.50985 1.52003 1.53003 1.53986 1.5495 1.55896 1.56818 1.57718 1.5859 1.59437 1.6026 1.61054 1.61806 1.62513 1.63166 1.63769 1.64355 1.64824 1.65274 1.65226 1.13795 1.22274 1.305 1.38256 1.45579 1.52369 1.58752 1.64559 1.69967 1.74739 1.79057 1.82725 1.85854 1.88294 1.90083 1.91141 1.91604 1.91638 1.91576 1.91332 1.9101 1.907 1.90513 1.9049 1.90574 1.90706 1.90925 1.9126 1.91608 1.92009 1.92329 1.92701 1.92972 1.93213 1.93302 1.93309 1.93154 1.92528 1.91008 1.87384 1.79905 1.65909 1.52721 1.46072 1.44865 1.45583 1.46494 1.47188 1.4754 1.47256 1.45959 1.43707 1.40575 1.37056 1.34264 1.32674 1.32217 1.32795 1.33473 1.34432 1.35563 1.36486 1.37249 1.3796 1.38621 1.39224 1.39861 1.40595 1.41462 1.42429 1.43461 1.44528 1.45613 1.46701 1.47786 1.48868 1.49946 1.51017 1.52077 1.53125 1.54162 1.55194 1.56218 1.57233 1.58234 1.5922 1.60191 1.61146 1.62084 1.62999 1.63886 1.64743 1.65566 1.66355 1.67094 1.67763 1.68368 1.68869 1.69352 1.6938 1.13842 1.21524 1.29144 1.36457 1.4342 1.49961 1.56116 1.61851 1.67189 1.72103 1.76586 1.8062 1.84202 1.87267 1.89884 1.91897 1.9335 1.94183 1.94577 1.94619 1.94598 1.94454 1.94253 1.9407 1.94006 1.94065 1.94163 1.94302 1.94567 1.94847 1.95214 1.95487 1.95747 1.95807 1.95808 1.95645 1.95016 1.93511 1.89973 1.82566 1.6856 1.54596 1.47123 1.4575 1.46525 1.47775 1.49146 1.50791 1.52367 1.53305 1.53701 1.53461 1.52271 1.50103 1.47128 1.43604 1.40522 1.38362 1.37318 1.37328 1.37902 1.3869 1.39765 1.40806 1.41707 1.42516 1.43209 1.43833 1.44527 1.45333 1.46237 1.47209 1.4823 1.49291 1.50379 1.51475 1.5256 1.53629 1.54683 1.55724 1.56751 1.57768 1.58783 1.59797 1.60807 1.61811 1.62809 1.63798 1.64776 1.6574 1.66682 1.67609 1.68496 1.6936 1.70161 1.70921 1.71657 1.72237 1.72761 1.72889 1.14147 1.21075 1.28114 1.34971 1.41584 1.47862 1.5382 1.59409 1.64667 1.6956 1.74119 1.78301 1.82131 1.85553 1.88584 1.9116 1.93324 1.95011 1.96228 1.96929 1.97287 1.97348 1.97339 1.97257 1.97074 1.96939 1.96831 1.96886 1.96973 1.97121 1.97318 1.97594 1.97696 1.97696 1.97549 1.96958 1.95552 1.92128 1.84928 1.70973 1.56249 1.48158 1.46514 1.47183 1.48377 1.50013 1.51779 1.53792 1.55628 1.5734 1.58559 1.59315 1.59528 1.59259 1.58091 1.56044 1.53281 1.49814 1.46449 1.4374 1.42159 1.41702 1.42192 1.4289 1.43917 1.4516 1.46264 1.47222 1.48013 1.48727 1.49444 1.50233 1.51114 1.52071 1.53072 1.54108 1.55161 1.56214 1.57255 1.58281 1.59295 1.60297 1.61291 1.62278 1.63265 1.64255 1.65244 1.66235 1.6721 1.6819 1.69142 1.70095 1.71014 1.71904 1.72775 1.73594 1.7438 1.7504 1.75705 1.75906 1.14626 1.20832 1.27263 1.33663 1.39911 1.45889 1.51617 1.57041 1.62182 1.67003 1.71542 1.75762 1.79701 1.83311 1.86621 1.89579 1.92196 1.94422 1.96266 1.97708 1.98725 1.99323 1.99618 1.99685 1.99666 1.99629 1.99504 1.99434 1.99347 1.99386 1.9944 1.99481 1.99463 1.9931 1.98769 1.97313 1.94148 1.87166 1.73453 1.57862 1.48853 1.46887 1.4749 1.48744 1.50421 1.52335 1.54406 1.5647 1.58374 1.6021 1.61815 1.63151 1.64166 1.64758 1.64997 1.64836 1.63873 1.62 1.59349 1.55862 1.52128 1.48926 1.46807 1.45888 1.46282 1.46983 1.48024 1.49473 1.50758 1.51814 1.52707 1.53516 1.54302 1.5512 1.55992 1.56919 1.57891 1.58891 1.59905 1.60914 1.6191 1.62894 1.63867 1.64834 1.65789 1.66752 1.67703 1.6867 1.69621 1.70575 1.71521 1.72451 1.73371 1.74266 1.75159 1.75963 1.76835 1.77492 1.78251 1.78516 1.15496 1.21003 1.26824 1.32698 1.38555 1.44253 1.49736 1.54963 1.5997 1.647 1.69188 1.73394 1.7736 1.81051 1.84493 1.87653 1.90541 1.93114 1.95384 1.97297 1.9889 2.00111 2.00994 2.01511 2.01785 2.01855 2.01852 2.01829 2.01711 2.01576 2.01449 2.01309 2.01021 2.00313 1.98898 1.95668 1.89083 1.75516 1.59404 1.49624 1.47341 1.47828 1.49034 1.50764 1.52658 1.54876 1.56958 1.58926 1.60767 1.62664 1.64393 1.66041 1.67407 1.68592 1.69489 1.70114 1.70364 1.70268 1.69435 1.67647 1.65027 1.61539 1.57554 1.53874 1.51262 1.50005 1.50346 1.51054 1.52136 1.53705 1.55061 1.5622 1.57237 1.5815 1.59005 1.59861 1.60742 1.61651 1.6259 1.63554 1.64527 1.65506 1.66468 1.67439 1.68392 1.69348 1.7029 1.71227 1.72159 1.73089 1.74011 1.74907 1.75827 1.76668 1.77584 1.78353 1.79249 1.79906 1.80693 1.80988 1.1665 1.21529 1.26717 1.32072 1.37449 1.42778 1.48008 1.53051 1.57868 1.62502 1.66905 1.71101 1.75058 1.78801 1.82307 1.85589 1.88642 1.91444 1.94003 1.96285 1.98276 1.99978 2.0135 2.02434 2.03172 2.0365 2.03857 2.03897 2.03863 2.03776 2.03513 2.03078 2.02325 2.00819 1.97586 1.91192 1.77952 1.6133 1.50402 1.47631 1.47986 1.49204 1.50791 1.52752 1.54994 1.57219 1.59149 1.61038 1.629 1.64771 1.66527 1.68211 1.69722 1.71162 1.72469 1.73649 1.74568 1.75211 1.75453 1.75394 1.74694 1.73052 1.70593 1.67201 1.63022 1.59013 1.55883 1.54245 1.5453 1.55244 1.56328 1.57925 1.59341 1.60539 1.61639 1.62624 1.63516 1.64385 1.65243 1.66122 1.67012 1.67937 1.68872 1.69817 1.70761 1.71716 1.72664 1.73604 1.74545 1.75454 1.76395 1.77265 1.78206 1.7902 1.79952 1.80703 1.81612 1.82275 1.83082 1.83395 1.18222 1.22503 1.27091 1.31913 1.36843 1.41784 1.46623 1.51426 1.56071 1.60526 1.64823 1.68936 1.72864 1.76607 1.80144 1.83495 1.86624 1.89579 1.9228 1.94815 1.97059 1.99115 2.00863 2.0237 2.03579 2.04493 2.05137 2.05419 2.05408 2.05324 2.05023 2.04262 2.02795 1.99657 1.93462 1.80857 1.63823 1.51583 1.48072 1.48181 1.49414 1.50967 1.52755 1.55071 1.57274 1.59298 1.61119 1.6301 1.64837 1.66716 1.68473 1.70195 1.71766 1.73334 1.74803 1.76247 1.77592 1.788 1.79766 1.80467 1.80792 1.80812 1.80282 1.78861 1.76513 1.73161 1.68849 1.64435 1.60738 1.58686 1.58939 1.59653 1.60701 1.62288 1.63731 1.64956 1.66082 1.67097 1.68002 1.68861 1.69688 1.70526 1.71374 1.72251 1.73149 1.7405 1.74976 1.75877 1.76821 1.77694 1.78644 1.79482 1.8044 1.81236 1.82188 1.82932 1.83855 1.84525 1.85349 1.85708 1.19763 1.2359 1.27709 1.32055 1.36554 1.41095 1.4567 1.50106 1.54537 1.58858 1.63 1.67015 1.70871 1.74564 1.78106 1.81471 1.84671 1.87688 1.90527 1.9318 1.95624 1.97908 1.99895 2.0177 2.03261 2.04635 2.0561 2.06288 2.06373 2.06235 2.05688 2.0447 2.01588 1.95885 1.83971 1.67056 1.53456 1.4882 1.48526 1.4981 1.51227 1.52955 1.55114 1.574 1.594 1.61286 1.63077 1.64944 1.66803 1.6872 1.70521 1.72273 1.73886 1.75506 1.77048 1.78641 1.80172 1.81659 1.83044 1.84256 1.85246 1.85986 1.86321 1.86371 1.85938 1.84656 1.82369 1.79067 1.74673 1.69926 1.65604 1.63269 1.635 1.64209 1.65222 1.6677 1.68203 1.69427 1.70541 1.71561 1.72489 1.73327 1.74149 1.74946 1.75783 1.76591 1.77475 1.78288 1.79201 1.80004 1.80937 1.81721 1.82665 1.83427 1.84369 1.85101 1.8602 1.86699 1.87505 1.87902 1.21474 1.2501 1.28663 1.32559 1.36584 1.40769 1.44949 1.49194 1.53287 1.57363 1.61421 1.65261 1.69053 1.72672 1.76171 1.79513 1.82746 1.85769 1.88708 1.91421 1.93992 1.96428 1.98574 2.00699 2.02424 2.04107 2.0537 2.06284 2.06369 2.06097 2.05115 2.02855 1.97558 1.87132 1.70093 1.55653 1.49856 1.49202 1.50387 1.51815 1.53397 1.5551 1.57758 1.59879 1.61733 1.63528 1.65276 1.67151 1.69035 1.7095 1.72747 1.74501 1.76157 1.77814 1.79417 1.81075 1.82663 1.84273 1.8578 1.87213 1.88522 1.89666 1.90633 1.91374 1.91726 1.91797 1.9145 1.90278 1.88055 1.84784 1.80289 1.75238 1.7039 1.67835 1.6802 1.68732 1.69709 1.71205 1.72628 1.73835 1.74955 1.75976 1.76943 1.77754 1.78612 1.79365 1.80204 1.80936 1.81802 1.82536 1.83418 1.84147 1.85049 1.85773 1.86683 1.87392 1.88288 1.88953 1.89745 1.90129 1.2305 1.26381 1.29851 1.3336 1.37109 1.40811 1.44701 1.48574 1.52537 1.56327 1.60092 1.63896 1.67468 1.71014 1.74485 1.77692 1.80974 1.83941 1.86891 1.89698 1.9226 1.94866 1.97076 1.99361 2.0127 2.03085 2.04602 2.0536 2.0523 2.04635 2.02837 1.98263 1.8898 1.72335 1.57693 1.50972 1.49849 1.50989 1.52458 1.54121 1.56178 1.58497 1.60608 1.62557 1.64295 1.66051 1.67802 1.69665 1.71501 1.73371 1.75142 1.76908 1.78563 1.80215 1.81821 1.83457 1.85054 1.8668 1.88216 1.89727 1.91132 1.9247 1.93713 1.94831 1.95808 1.96569 1.96942 1.97031 1.96744 1.95669 1.93545 1.90298 1.85761 1.80474 1.7515 1.72425 1.72509 1.73184 1.74137 1.75548 1.76947 1.78128 1.79267 1.80269 1.81263 1.82072 1.82944 1.83661 1.84475 1.85163 1.85995 1.86679 1.87521 1.88211 1.8908 1.89769 1.90644 1.91289 1.92086 1.92444 1.24478 1.2767 1.30885 1.34183 1.37571 1.41197 1.4472 1.48359 1.51985 1.55696 1.5924 1.62737 1.66358 1.69592 1.73051 1.76208 1.79298 1.82417 1.85165 1.88102 1.90639 1.93241 1.95643 1.97825 2.00038 2.01756 2.03282 2.03521 2.03113 2.01616 1.98072 1.89163 1.74253 1.59077 1.51594 1.50129 1.51271 1.52943 1.54746 1.57024 1.59386 1.61623 1.63587 1.65432 1.67132 1.68865 1.70571 1.72361 1.74132 1.75945 1.7768 1.79394 1.81003 1.82627 1.84199 1.85818 1.87414 1.89037 1.90587 1.92133 1.93576 1.94995 1.96334 1.97635 1.98865 1.99991 2.00996 2.01764 2.02168 2.02257 2.02018 2.01023 1.98992 1.95796 1.91221 1.85736 1.80017 1.77147 1.77057 1.7773 1.7864 1.79948 1.8129 1.82431 1.83557 1.84534 1.85516 1.86318 1.8717 1.87853 1.8863 1.89282 1.90072 1.90717 1.91521 1.92173 1.93008 1.93639 1.94428 1.9478 1.26334 1.2918 1.321 1.35168 1.38296 1.41577 1.4501 1.48401 1.51808 1.55277 1.58727 1.62054 1.65381 1.68706 1.71798 1.75026 1.77979 1.80938 1.83834 1.86475 1.89253 1.91658 1.94182 1.96405 1.98502 2.00373 2.01051 2.00804 1.99749 1.96679 1.89402 1.74523 1.59192 1.51215 1.49701 1.51045 1.52914 1.55013 1.57517 1.60001 1.62306 1.64483 1.66439 1.68298 1.69998 1.71695 1.73348 1.75087 1.76812 1.78587 1.80274 1.8195 1.83533 1.85134 1.86684 1.88297 1.89868 1.91471 1.93011 1.94553 1.9601 1.9747 1.98857 2.00235 2.01557 2.02838 2.04042 2.05136 2.06108 2.06834 2.07237 2.07324 2.0713 2.06221 2.04292 2.012 1.96602 1.90951 1.84937 1.81905 1.81616 1.82282 1.83141 1.84336 1.85602 1.86712 1.87814 1.88752 1.89706 1.90489 1.91317 1.91961 1.92705 1.93318 1.94064 1.94667 1.95423 1.96009 1.9674 1.97072 1.28251 1.30446 1.33325 1.36211 1.39127 1.42157 1.45317 1.48611 1.51825 1.55084 1.58397 1.61601 1.64829 1.67918 1.71052 1.73999 1.76991 1.79823 1.82583 1.85336 1.87824 1.90462 1.92721 1.9506 1.97005 1.98221 1.98192 1.97292 1.94657 1.88408 1.74533 1.58768 1.50085 1.48611 1.5005 1.52167 1.54564 1.57361 1.59931 1.62363 1.6467 1.66928 1.69012 1.70964 1.72716 1.74437 1.7612 1.77887 1.79628 1.81383 1.83041 1.84681 1.8624 1.87815 1.89355 1.90929 1.92463 1.9403 1.95547 1.97072 1.98532 1.99988 2.01367 2.02739 2.04051 2.05347 2.06593 2.07802 2.08932 2.09976 2.10905 2.11607 2.12048 2.12145 2.12003 2.11196 2.09379 2.06408 2.01762 1.95976 1.89751 1.86545 1.8604 1.86688 1.87492 1.88551 1.89801 1.90874 1.91955 1.92858 1.93804 1.94571 1.95377 1.95988 1.96709 1.97289 1.97992 1.98529 1.99183 1.99457 1.30668 1.32274 1.34774 1.37505 1.40233 1.42981 1.45867 1.48911 1.52002 1.55095 1.58187 1.61302 1.64344 1.67416 1.70333 1.73304 1.76105 1.78925 1.81634 1.84241 1.86856 1.89213 1.91648 1.93638 1.95211 1.95368 1.94573 1.92202 1.86847 1.73898 1.57909 1.48415 1.46776 1.48273 1.50576 1.53394 1.56547 1.594 1.61968 1.64456 1.66812 1.6907 1.71144 1.73133 1.75033 1.76955 1.78822 1.80691 1.82465 1.84209 1.8585 1.8748 1.89031 1.90593 1.92087 1.93604 1.95084 1.96599 1.98075 1.99571 2.01002 2.02426 2.03772 2.05119 2.06391 2.07678 2.08907 2.10137 2.11321 2.12475 2.13566 2.1458 2.15495 2.16199 2.16691 2.16801 2.167 2.1599 2.14282 2.11394 2.06748 2.00808 1.94436 1.91053 1.90315 1.9093 1.91648 1.92574 1.93845 1.94854 1.95908 1.96783 1.97726 1.98471 1.99261 1.99857 2.00572 2.01097 2.01723 2.01973 1.33326 1.34019 1.35963 1.38686 1.41387 1.44066 1.46723 1.49497 1.52367 1.55283 1.58254 1.61149 1.64098 1.66968 1.69863 1.7263 1.75425 1.78104 1.80753 1.83357 1.85812 1.88262 1.90381 1.92155 1.92478 1.91781 1.89536 1.84854 1.72602 1.5654 1.46248 1.44433 1.46025 1.48522 1.51611 1.55108 1.5818 1.60988 1.63627 1.66228 1.68655 1.70934 1.73013 1.75051 1.77058 1.79108 1.811 1.83066 1.84914 1.86732 1.88451 1.90133 1.91702 1.93238 1.94696 1.96184 1.97636 1.99138 2.00593 2.02075 2.03473 2.04879 2.06193 2.07514 2.08758 2.10023 2.11231 2.12458 2.13646 2.14824 2.15973 2.17082 2.1814 2.19134 2.20035 2.20742 2.21284 2.21402 2.21322 2.20698 2.19112 2.16254 2.11638 2.05573 1.99092 1.95485 1.94562 1.95089 1.95708 1.96576 1.97823 1.98728 1.99753 2.00592 2.01549 2.0223 2.03014 2.03559 2.04214 2.0447 1.37181 1.36703 1.37777 1.39833 1.42491 1.45091 1.47621 1.50249 1.52907 1.5565 1.58409 1.61239 1.63959 1.66768 1.69466 1.72228 1.7485 1.77506 1.80057 1.82556 1.84987 1.87182 1.89075 1.89602 1.889 1.86981 1.82397 1.71219 1.5508 1.43959 1.41908 1.43478 1.46014 1.49345 1.53055 1.56384 1.59384 1.6231 1.65118 1.67814 1.70268 1.72579 1.74736 1.76859 1.78914 1.80989 1.8304 1.85102 1.87095 1.89047 1.90861 1.92602 1.94215 1.95795 1.97296 1.98809 2.00265 2.01748 2.03169 2.04611 2.05977 2.07355 2.08651 2.09957 2.11191 2.12436 2.13628 2.1483 2.15997 2.17163 2.18309 2.19437 2.20538 2.21614 2.22629 2.23599 2.24467 2.25165 2.25718 2.25834 2.25755 2.25206 2.23721 2.20937 2.16428 2.10256 2.03754 1.99865 1.98807 1.99168 1.99742 2.00542 2.01742 2.02544 2.03538 2.04322 2.05259 2.05862 2.06595 2.06855 1.40568 1.39352 1.39908 1.41499 1.43813 1.46294 1.48676 1.51102 1.53574 1.56117 1.58731 1.61338 1.64026 1.66607 1.69261 1.71825 1.74443 1.76951 1.79466 1.81863 1.84114 1.86047 1.86717 1.86074 1.84244 1.79741 1.69733 1.53043 1.41258 1.39101 1.40674 1.4329 1.46796 1.50738 1.54229 1.57405 1.60423 1.63394 1.66225 1.68936 1.71469 1.73916 1.76234 1.78503 1.80658 1.82785 1.84855 1.86962 1.89034 1.91078 1.93002 1.9484 1.96548 1.98197 1.99751 2.01279 2.02745 2.04212 2.05632 2.07061 2.08433 2.09801 2.11102 2.1239 2.13612 2.14825 2.15988 2.17154 2.18285 2.19431 2.20547 2.21677 2.22775 2.23868 2.24927 2.25957 2.26941 2.27877 2.28723 2.29418 2.29985 2.30107 2.3004 2.2956 2.28187 2.255 2.21065 2.14916 2.08351 2.0414 2.03031 2.03167 2.03703 2.04435 2.05529 2.06273 2.07241 2.07944 2.08805 2.09082 1.47945 1.42855 1.42298 1.43158 1.44946 1.47464 1.49848 1.5215 1.5445 1.56748 1.59161 1.61641 1.64103 1.66666 1.69113 1.71634 1.74066 1.76524 1.78878 1.81118 1.83049 1.83835 1.83217 1.81429 1.77015 1.67764 1.50327 1.38205 1.36032 1.37694 1.40418 1.44108 1.48239 1.51894 1.55162 1.58287 1.61325 1.6431 1.67164 1.69925 1.72542 1.75074 1.77478 1.79812 1.82052 1.84277 1.86434 1.88581 1.90659 1.9273 1.94714 1.96648 1.98452 2.00191 2.01823 2.03436 2.04977 2.06516 2.07986 2.09449 2.10838 2.12214 2.13516 2.14806 2.16025 2.17238 2.18386 2.19537 2.20642 2.21752 2.22837 2.23925 2.24996 2.26064 2.27115 2.28149 2.29161 2.30152 2.31096 2.32014 2.32838 2.33544 2.34121 2.34257 2.34214 2.33787 2.3252 2.29973 2.2551 2.19511 2.13021 2.08371 2.07167 2.07022 2.07576 2.08202 2.09116 2.09813 2.10707 2.11065 1.62401 1.47704 1.45193 1.45178 1.46386 1.48311 1.50745 1.53066 1.55313 1.57547 1.59751 1.62051 1.64387 1.66759 1.69163 1.71541 1.73886 1.76202 1.78352 1.8028 1.81066 1.80418 1.78588 1.74219 1.64736 1.47767 1.35355 1.33152 1.34781 1.37491 1.41254 1.45573 1.49398 1.52816 1.56004 1.59116 1.62132 1.65093 1.67949 1.7075 1.73446 1.76066 1.7856 1.8098 1.83306 1.85598 1.87826 1.90032 1.92159 1.94248 1.96261 1.98246 2.00142 2.01988 2.03728 2.0543 2.0704 2.0864 2.10151 2.11671 2.13099 2.14544 2.15882 2.17237 2.18479 2.19736 2.20892 2.22063 2.23156 2.2426 2.25309 2.26369 2.27388 2.28425 2.29422 2.30442 2.31416 2.32411 2.33361 2.34313 2.35223 2.36115 2.36922 2.37637 2.38222 2.38376 2.38363 2.38002 2.36765 2.34379 2.29845 2.24234 2.17624 2.12587 2.11246 2.10793 2.11324 2.11766 2.12436 2.12851 1.85734 1.56822 1.48783 1.47538 1.47996 1.49456 1.5159 1.53935 1.56166 1.58327 1.60458 1.62587 1.64767 1.66984 1.69262 1.71502 1.73765 1.75854 1.77742 1.78501 1.77832 1.7594 1.71531 1.61773 1.45015 1.3232 1.30112 1.31786 1.3454 1.38404 1.42847 1.46851 1.50403 1.53691 1.5682 1.59879 1.6286 1.65827 1.6873 1.71604 1.74358 1.77017 1.7954 1.81985 1.84346 1.86687 1.88981 1.9126 1.93473 1.95634 1.97697 1.99707 2.01655 2.0358 2.0543 2.07233 2.0895 2.1063 2.12241 2.13813 2.15317 2.16779 2.1818 2.19541 2.2085 2.2212 2.23337 2.24513 2.25633 2.26722 2.27756 2.28789 2.29767 2.30776 2.31731 2.32726 2.33672 2.34642 2.35583 2.36516 2.37443 2.38343 2.39228 2.40089 2.40876 2.41589 2.42158 2.42341 2.42349 2.42 2.40916 2.38554 2.33999 2.28977 2.2196 2.16878 2.15113 2.14544 2.14594 2.14783 2.28239 1.76559 1.554 1.50963 1.50301 1.50974 1.52514 1.5474 1.56893 1.59021 1.61108 1.63184 1.65272 1.6736 1.69469 1.71591 1.73603 1.75415 1.76133 1.75414 1.73449 1.68942 1.58945 1.42261 1.29244 1.27041 1.28808 1.31665 1.35653 1.40145 1.44292 1.47996 1.51364 1.54541 1.576 1.60631 1.63627 1.66636 1.6958 1.72466 1.7521 1.77864 1.80391 1.82876 1.85296 1.87708 1.90062 1.92391 1.94644 1.96855 1.98987 2.01071 2.03073 2.05041 2.06955 2.08842 2.1064 2.12402 2.14071 2.15723 2.17279 2.18827 2.20276 2.21724 2.23067 2.2441 2.25641 2.26872 2.27989 2.29114 2.3013 2.31174 2.32123 2.3312 2.3404 2.35014 2.3593 2.36878 2.37794 2.38706 2.39613 2.40498 2.41381 2.42251 2.43098 2.43939 2.44698 2.45398 2.45955 2.46139 2.46153 2.45828 2.44823 2.4246 2.3851 2.32993 2.25816 2.21406 2.18341 2.17867 2.56798 2.08012 1.69132 1.55147 1.52858 1.52809 1.53838 1.554 1.57624 1.59686 1.61725 1.63702 1.65725 1.67717 1.69741 1.71647 1.73348 1.7397 1.73171 1.71109 1.66449 1.56166 1.39423 1.26072 1.23947 1.25881 1.28892 1.3307 1.37557 1.41752 1.45546 1.49015 1.52254 1.55374 1.58422 1.61463 1.64478 1.67481 1.70403 1.73257 1.75996 1.78665 1.81241 1.83777 1.86245 1.88686 1.91069 1.93431 1.95735 1.98014 2.00217 2.02376 2.04445 2.0646 2.08398 2.10322 2.12189 2.14022 2.15769 2.17478 2.19104 2.20692 2.22197 2.2367 2.25066 2.26435 2.27735 2.29006 2.30205 2.31374 2.32462 2.33533 2.34519 2.35516 2.36431 2.3738 2.3826 2.3917 2.40046 2.40915 2.41794 2.42632 2.43507 2.44329 2.45192 2.4601 2.46834 2.47641 2.48367 2.49046 2.49579 2.49747 2.49756 2.49466 2.48461 2.46156 2.42472 2.36383 2.2973 2.262 2.76815 2.44014 1.9317 1.6438 1.56048 1.5485 1.55111 1.56404 1.58146 1.60418 1.62417 1.64402 1.66254 1.68153 1.69913 1.71532 1.72033 1.71128 1.68943 1.64068 1.53432 1.36456 1.22811 1.20833 1.22983 1.26211 1.30608 1.35117 1.39301 1.43143 1.46685 1.50017 1.53195 1.56299 1.59351 1.62395 1.65394 1.68371 1.71273 1.74126 1.76887 1.79585 1.82199 1.84759 1.87254 1.89716 1.92133 1.94519 1.96857 1.99146 2.01371 2.03542 2.05646 2.07708 2.09704 2.11665 2.13571 2.1546 2.17266 2.19026 2.20693 2.22329 2.23872 2.25399 2.26838 2.28271 2.29614 2.30951 2.32188 2.33418 2.34538 2.35658 2.36669 2.37695 2.38622 2.39582 2.4046 2.41373 2.42235 2.43101 2.43963 2.4478 2.45644 2.46417 2.47282 2.48037 2.4888 2.49646 2.50437 2.51194 2.51888 2.52512 2.53008 2.53146 2.5313 2.52798 2.51862 2.49237 2.45234 2.42399 2.87446 2.70656 2.34664 1.84797 1.63286 1.58066 1.5725 1.57609 1.58969 1.60878 1.63112 1.65055 1.66992 1.68601 1.70102 1.70363 1.69329 1.66975 1.61794 1.50699 1.3321 1.1953 1.17777 1.20233 1.23678 1.28292 1.32839 1.37018 1.40859 1.44453 1.47857 1.51125 1.54283 1.57381 1.6042 1.63442 1.66414 1.69369 1.72256 1.75106 1.77868 1.80579 1.83206 1.8579 1.88312 1.90797 1.9323 1.95618 1.97947 2.00227 2.0245 2.04631 2.06763 2.08855 2.109 2.12901 2.14844 2.16752 2.18604 2.20413 2.22133 2.23813 2.25409 2.26978 2.28465 2.29938 2.31329 2.32711 2.34009 2.35296 2.36489 2.37669 2.38753 2.3982 2.40804 2.41773 2.42681 2.43573 2.44436 2.45269 2.46108 2.46893 2.47727 2.48462 2.49307 2.49999 2.50848 2.51523 2.52346 2.5303 2.53781 2.54458 2.55106 2.55636 2.56083 2.56171 2.56118 2.55745 2.54423 2.53802 2.93165 2.84412 2.64817 2.21733 1.80535 1.63252 1.59942 1.59494 1.60061 1.61486 1.63497 1.6556 1.67324 1.68858 1.69031 1.67857 1.65291 1.59683 1.47981 1.29742 1.16294 1.1492 1.17598 1.2129 1.26119 1.30696 1.34872 1.38697 1.42296 1.45762 1.49118 1.52375 1.55532 1.58617 1.61634 1.6462 1.67555 1.7047 1.73327 1.76152 1.78911 1.81627 1.84275 1.86875 1.89409 1.9189 1.94312 1.96682 1.99002 2.01276 2.03505 2.0569 2.07836 2.09939 2.12003 2.14027 2.16 2.17927 2.19794 2.2163 2.23395 2.25112 2.26756 2.28366 2.299 2.31414 2.32852 2.34273 2.35621 2.36952 2.38205 2.39435 2.4059 2.41704 2.42758 2.43758 2.44715 2.45618 2.46502 2.47334 2.48168 2.48954 2.4976 2.50499 2.51295 2.51982 2.52775 2.53412 2.54208 2.54805 2.5559 2.56168 2.56893 2.57452 2.58063 2.58492 2.58854 2.58915 2.58807 2.58972 2.9626 2.91619 2.80736 2.52902 2.06596 1.74395 1.63526 1.61603 1.61533 1.6243 1.63862 1.65742 1.67368 1.67723 1.66492 1.63693 1.5755 1.45209 1.26243 1.13232 1.12142 1.14982 1.18991 1.24041 1.28662 1.32835 1.36663 1.40283 1.43776 1.47191 1.50517 1.53754 1.56886 1.59943 1.62919 1.65861 1.68749 1.7162 1.74441 1.7724 1.79979 1.82683 1.85321 1.87909 1.90437 1.92908 1.95327 1.97691 2.00007 2.02272 2.04494 2.06673 2.08817 2.1092 2.12993 2.15022 2.17013 2.18957 2.20846 2.22691 2.24486 2.26236 2.27924 2.29576 2.31161 2.3272 2.3421 2.35673 2.37072 2.38443 2.39752 2.41026 2.42249 2.43414 2.44543 2.45596 2.46619 2.47561 2.48481 2.49329 2.5016 2.50941 2.51713 2.52436 2.53181 2.53853 2.54584 2.55208 2.55933 2.56513 2.57227 2.5777 2.58461 2.58966 2.59611 2.60054 2.60603 2.60929 2.61197 2.61374 2.98233 2.95455 2.8981 2.76406 2.45131 1.97817 1.7242 1.64914 1.63498 1.63553 1.64388 1.65681 1.66315 1.65061 1.62023 1.55033 1.41926 1.22454 1.10231 1.09525 1.1241 1.16691 1.21959 1.26646 1.30824 1.34662 1.38307 1.41839 1.45288 1.48668 1.51962 1.55168 1.58271 1.61293 1.6423 1.67124 1.69961 1.7278 1.75552 1.78307 1.81007 1.83678 1.86287 1.88856 1.91366 1.93826 1.96233 1.98589 2.00893 2.03155 2.05372 2.07555 2.09701 2.11812 2.13886 2.15918 2.17907 2.19852 2.21746 2.23599 2.25405 2.2718 2.28908 2.30604 2.3224 2.33845 2.35384 2.36887 2.3833 2.39735 2.41091 2.42402 2.4368 2.44886 2.46082 2.47175 2.48266 2.49242 2.50215 2.51085 2.51945 2.52733 2.53506 2.54226 2.54949 2.55609 2.56301 2.56904 2.57572 2.58119 2.58763 2.59264 2.59878 2.60342 2.6092 2.61346 2.6187 2.62234 2.62641 2.62838 2.98972 2.97868 2.94633 2.88167 2.71859 2.39159 1.92973 1.72237 1.66841 1.65448 1.65257 1.65091 1.63872 1.60531 1.52377 1.37826 1.18233 1.07238 1.07026 1.09887 1.14277 1.197 1.24493 1.28728 1.32568 1.36209 1.39757 1.43251 1.46682 1.50035 1.53294 1.56458 1.59521 1.62506 1.65409 1.68263 1.71059 1.73831 1.76554 1.79259 1.81912 1.8454 1.87112 1.89641 1.92115 1.94538 1.9692 1.99257 2.0156 2.03829 2.06061 2.08259 2.10419 2.12538 2.14616 2.16648 2.18637 2.20582 2.22482 2.24346 2.26168 2.2796 2.29713 2.31433 2.33099 2.34735 2.3631 2.37851 2.39338 2.40788 2.42192 2.4355 2.44875 2.46129 2.47372 2.48511 2.49653 2.50672 2.517 2.52603 2.53513 2.54317 2.55125 2.55846 2.56582 2.5723 2.57912 2.58493 2.59128 2.59642 2.6023 2.60687 2.61225 2.61637 2.62129 2.62501 2.62946 2.63274 2.63646 2.63844 2.99546 2.98812 2.97493 2.93872 2.86186 2.68172 2.31355 1.90136 1.72092 1.67918 1.66257 1.64188 1.59823 1.5012 1.33014 1.13562 1.04249 1.04714 1.07523 1.12018 1.17497 1.22357 1.26649 1.30511 1.34124 1.37628 1.4109 1.44517 1.47886 1.51181 1.54388 1.57513 1.60546 1.63511 1.66399 1.69239 1.72011 1.74749 1.77429 1.80085 1.82683 1.85254 1.87768 1.90244 1.92676 1.95066 1.97423 1.99745 2.02037 2.04306 2.06546 2.08761 2.10941 2.13082 2.15181 2.17228 2.19232 2.2119 2.23105 2.24984 2.26823 2.28632 2.30402 2.3214 2.33824 2.35483 2.37084 2.38658 2.40182 2.41676 2.4312 2.44526 2.45887 2.47189 2.48464 2.49647 2.50823 2.51883 2.52961 2.53896 2.54871 2.55693 2.56558 2.57288 2.58053 2.58702 2.59386 2.59959 2.60572 2.61069 2.61612 2.62035 2.6251 2.62866 2.6328 2.6358 2.63944 2.64196 2.64501 2.64644 2.99729 2.99457 2.98572 2.97011 2.92566 2.83595 2.61196 2.20987 1.85366 1.71496 1.66835 1.61221 1.49454 1.28133 1.08192 1.00653 1.01741 1.04688 1.0948 1.14965 1.19868 1.24223 1.28175 1.3188 1.35433 1.38896 1.42289 1.45625 1.48903 1.52127 1.55282 1.58372 1.61388 1.64339 1.6721 1.70026 1.72774 1.75481 1.7813 1.80749 1.83317 1.85858 1.88356 1.90821 1.93252 1.95641 1.97997 2.00315 2.02601 2.04854 2.0707 2.09254 2.11399 2.13507 2.15578 2.17614 2.19613 2.21581 2.23509 2.25402 2.27257 2.29068 2.30844 2.32583 2.34285 2.35958 2.37591 2.39196 2.40765 2.423 2.43793 2.45248 2.46654 2.48012 2.49324 2.5057 2.51782 2.52905 2.5401 2.55 2.56008 2.56872 2.57781 2.58537 2.59343 2.6 2.60703 2.61268 2.6187 2.62343 2.6285 2.63233 2.63654 2.63955 2.64304 2.6454 2.64831 2.65018 2.65252 2.65351 2.99857 2.99722 2.99236 2.98489 2.96045 2.91472 2.80148 2.5332 2.09579 1.79763 1.66378 1.52376 1.25565 1.02297 0.952429 0.968942 1.00548 1.05989 1.1161 1.16522 1.20906 1.24959 1.28797 1.32471 1.36008 1.39439 1.42791 1.46087 1.49328 1.52515 1.55635 1.5869 1.61666 1.64578 1.67416 1.70203 1.72925 1.75608 1.78233 1.80832 1.83382 1.85911 1.88403 1.90866 1.93299 1.95692 1.98052 2.00369 2.02647 2.04886 2.07085 2.0925 2.1138 2.13476 2.1554 2.17575 2.19574 2.21548 2.2348 2.25379 2.2724 2.29056 2.30844 2.32591 2.34308 2.35998 2.37656 2.39289 2.40891 2.42461 2.43997 2.45495 2.46952 2.48358 2.49721 2.51019 2.52281 2.53462 2.54622 2.55682 2.56736 2.5767 2.58614 2.59423 2.60256 2.60943 2.61661 2.62233 2.62834 2.63298 2.63782 2.64154 2.64526 2.64821 2.65102 2.65336 2.65551 2.65737 2.65898 2.66034 2.99934 2.9982 2.99645 2.99046 2.98069 2.95042 2.89303 2.74686 2.44307 1.96947 1.63617 1.28039 0.953678 0.865723 0.890563 0.933225 0.996357 1.06009 1.11379 1.16031 1.20326 1.24405 1.28282 1.31969 1.35494 1.38897 1.42214 1.45471 1.48667 1.51802 1.54865 1.57862 1.60786 1.63655 1.66462 1.69225 1.71932 1.74604 1.77225 1.79822 1.82377 1.84916 1.87424 1.89909 1.92368 1.94789 1.97176 1.99516 2.01814 2.04066 2.06274 2.08444 2.10581 2.12689 2.14769 2.16826 2.18844 2.20843 2.22799 2.24735 2.2664 2.28508 2.30351 2.32152 2.33926 2.35669 2.37379 2.39062 2.40711 2.42329 2.43911 2.4545 2.46956 2.48393 2.49807 2.51132 2.5244 2.5365 2.54848 2.55936 2.57022 2.57988 2.58956 2.59798 2.60645 2.6136 2.62084 2.62678 2.63272 2.63754 2.64217 2.64596 2.64937 2.65227 2.65466 2.65684 2.65841 2.66003 2.66125 2.66278 2.99954 2.99871 2.99751 2.99308 2.98644 2.96353 2.92422 2.81158 2.58677 2.10734 1.51701 0.943794 0.675388 0.711123 0.762011 0.829384 0.892918 0.950869 1.00597 1.05906 1.10964 1.15743 1.20262 1.24553 1.2865 1.32591 1.36403 1.40105 1.43702 1.47194 1.50576 1.53853 1.57025 1.60109 1.63107 1.66041 1.68909 1.71732 1.74498 1.77231 1.79913 1.82568 1.8518 1.8776 1.90306 1.92811 1.9528 1.97702 2.00083 2.02418 2.04714 2.06966 2.09188 2.11373 2.13531 2.15664 2.17762 2.19844 2.21883 2.23896 2.25872 2.27804 2.29703 2.31555 2.33372 2.35153 2.36902 2.38623 2.40315 2.4198 2.43611 2.45203 2.46762 2.48254 2.49723 2.51104 2.52464 2.53725 2.54972 2.56106 2.57233 2.58234 2.59233 2.60095 2.60959 2.61683 2.62406 2.63005 2.63583 2.64074 2.6451 2.64909 2.65216 2.65534 2.65737 2.65978 2.66107 2.66303 2.66407 2.66602 1.10254 1.2928 1.34716 1.30762 1.23138 1.14435 1.06491 1.02548 1.01965 1.02237 1.0245 1.02489 1.0235 1.02199 1.02071 1.02151 1.0248 1.02908 1.03409 1.0398 1.04593 1.05217 1.05859 1.06522 1.07196 1.07868 1.08522 1.09149 1.09742 1.10298 1.10815 1.11296 1.1175 1.12178 1.12564 1.1288 1.13095 1.13157 1.1303 1.12748 1.11886 1.0981 1.0486 0.934897 0.683032 0.282557 0.113927 0.147145 0.103666 0.0662173 0.0436056 0.0803185 0.130752 0.179493 0.225185 0.26678 0.304384 0.339928 0.375327 0.410258 0.443592 0.475374 0.505823 0.53508 0.563267 0.590304 0.616249 0.641017 0.664745 0.687455 0.709359 0.730524 0.751163 0.771295 0.791075 0.810461 0.829663 0.848499 0.867344 0.885748 0.904319 0.922251 0.940648 0.95797 0.976251 0.993004 1.01096 1.02753 1.04478 1.0614 1.07759 1.09422 1.10928 1.1257 1.13962 1.15568 1.1682 1.18319 1.19292 1.20317 1.14211 1.25781 1.32289 1.36219 1.40228 1.43349 1.4435 1.43946 1.42436 1.40286 1.38573 1.38097 1.38184 1.38394 1.38616 1.38744 1.38873 1.39013 1.39195 1.39453 1.39753 1.40116 1.40548 1.41016 1.4148 1.41938 1.42397 1.42861 1.43331 1.43803 1.44274 1.44736 1.45187 1.45627 1.4604 1.46442 1.46764 1.46951 1.46993 1.46879 1.46285 1.44605 1.40538 1.31043 1.10222 0.716468 0.398906 0.296008 0.326871 0.385415 0.438725 0.480733 0.516767 0.552878 0.589006 0.622853 0.653445 0.681568 0.708974 0.735784 0.76198 0.786394 0.810099 0.832198 0.854064 0.874432 0.894672 0.913367 0.932341 0.949821 0.967889 0.984259 1.00127 1.01664 1.03241 1.04715 1.06166 1.07618 1.08949 1.10404 1.11654 1.13101 1.14335 1.15802 1.17023 1.18526 1.19736 1.21262 1.22452 1.23993 1.25157 1.26696 1.27831 1.29367 1.30472 1.31998 1.33041 1.34508 1.35323 1.36451 1.13956 1.24698 1.34276 1.43543 1.52047 1.58717 1.6196 1.62225 1.61721 1.6032 1.58398 1.56941 1.56115 1.55918 1.55987 1.56098 1.56254 1.56415 1.56559 1.56717 1.569 1.57119 1.57379 1.57673 1.57992 1.58331 1.58686 1.59059 1.59442 1.59838 1.60247 1.60662 1.61092 1.61507 1.61946 1.62337 1.62732 1.62946 1.6304 1.63009 1.62655 1.61436 1.58439 1.51157 1.35191 1.03351 0.695299 0.569771 0.600828 0.671572 0.743879 0.796887 0.83667 0.866059 0.888661 0.908953 0.927961 0.945633 0.962275 0.978544 0.996105 1.01255 1.02976 1.04559 1.06133 1.07627 1.09069 1.105 1.1182 1.132 1.14426 1.15755 1.16936 1.18227 1.19374 1.20642 1.21763 1.23022 1.24127 1.25365 1.2644 1.2764 1.28664 1.29813 1.30786 1.31894 1.32828 1.3391 1.34815 1.35887 1.36768 1.37837 1.38694 1.39771 1.40612 1.41718 1.42526 1.43636 1.44283 1.45153 1.14617 1.25558 1.35493 1.44667 1.52765 1.5956 1.64817 1.68547 1.70579 1.71036 1.70862 1.70163 1.69083 1.68129 1.6759 1.67489 1.67578 1.67727 1.67945 1.68176 1.68371 1.68553 1.68741 1.68953 1.69198 1.69474 1.69778 1.70104 1.7045 1.7081 1.71186 1.71563 1.71972 1.72355 1.72787 1.73151 1.73519 1.737 1.73776 1.73733 1.73348 1.72182 1.69406 1.6319 1.51057 1.29608 1.02081 0.855965 0.876247 0.92414 0.977862 1.02359 1.05543 1.07516 1.08678 1.09655 1.10389 1.11033 1.1169 1.12411 1.13176 1.14134 1.15253 1.1647 1.17616 1.18827 1.19903 1.21058 1.22118 1.23266 1.24329 1.25487 1.26547 1.277 1.28758 1.29925 1.30987 1.32143 1.33177 1.34299 1.35295 1.36382 1.37337 1.38383 1.39296 1.40303 1.41177 1.42147 1.4298 1.4391 1.44701 1.4559 1.4634 1.47189 1.47892 1.48703 1.49364 1.50152 1.50694 1.51153 1.14635 1.25382 1.35004 1.43806 1.51808 1.58946 1.65256 1.70541 1.74655 1.77345 1.78413 1.78424 1.78211 1.776 1.76754 1.76095 1.75639 1.75516 1.75565 1.75677 1.75845 1.76065 1.76295 1.7652 1.76743 1.76983 1.77238 1.77524 1.77823 1.78161 1.78499 1.78867 1.79245 1.79607 1.80003 1.80325 1.80575 1.80681 1.80696 1.80486 1.79743 1.77831 1.73594 1.6473 1.50897 1.36595 1.25246 1.1286 1.06085 1.05253 1.07481 1.10158 1.13199 1.15541 1.1729 1.18539 1.19338 1.19961 1.20469 1.20936 1.21403 1.21948 1.22666 1.23652 1.24765 1.2588 1.26949 1.28027 1.29074 1.30147 1.31199 1.32287 1.33355 1.34465 1.35545 1.36648 1.37708 1.38785 1.39811 1.4085 1.41839 1.42838 1.43784 1.44739 1.45642 1.46557 1.47421 1.48296 1.49117 1.49942 1.50708 1.51481 1.52197 1.52926 1.53587 1.54237 1.54819 1.55337 1.55803 1.55996 1.14092 1.24309 1.33721 1.42296 1.50156 1.57312 1.63702 1.6934 1.741 1.78006 1.80993 1.82907 1.8372 1.83783 1.83654 1.83241 1.82637 1.82119 1.81793 1.81736 1.81825 1.81955 1.82167 1.82437 1.8272 1.8298 1.83235 1.8349 1.83754 1.84057 1.8436 1.84742 1.85087 1.85518 1.85847 1.86147 1.86282 1.86306 1.86157 1.85487 1.83841 1.79963 1.71992 1.58589 1.46087 1.40325 1.37051 1.31918 1.25773 1.20632 1.17779 1.17337 1.18686 1.20194 1.22047 1.23873 1.25135 1.26027 1.26756 1.27351 1.27821 1.28233 1.2872 1.2937 1.30226 1.31186 1.32198 1.33235 1.34279 1.35327 1.36384 1.37457 1.38526 1.39599 1.40668 1.41733 1.42784 1.43826 1.44856 1.45872 1.46869 1.47852 1.48818 1.49771 1.50702 1.51614 1.52501 1.53368 1.5421 1.5503 1.5582 1.5658 1.57299 1.57981 1.58619 1.59212 1.59785 1.60252 1.60675 1.60619 1.1387 1.23182 1.31986 1.40204 1.47813 1.5487 1.61323 1.67181 1.72434 1.77014 1.80912 1.84017 1.8633 1.87717 1.88245 1.88258 1.88158 1.87847 1.87412 1.87046 1.86831 1.86769 1.8685 1.86956 1.87149 1.87413 1.87725 1.88009 1.88321 1.88596 1.88934 1.89222 1.89589 1.89891 1.90162 1.90309 1.90339 1.9017 1.89594 1.87927 1.84314 1.76501 1.62823 1.50098 1.44174 1.42917 1.42771 1.41798 1.39682 1.36783 1.33148 1.29379 1.26938 1.25961 1.2637 1.27257 1.28355 1.29662 1.30761 1.31618 1.32343 1.32966 1.33508 1.34036 1.34638 1.35367 1.36218 1.37157 1.38154 1.39203 1.40281 1.41367 1.42456 1.43546 1.44634 1.45719 1.46795 1.47859 1.48909 1.49952 1.50985 1.52003 1.53003 1.53986 1.5495 1.55896 1.56818 1.57718 1.5859 1.59437 1.6026 1.61054 1.61806 1.62513 1.63166 1.63769 1.64355 1.64824 1.65275 1.65226 1.13795 1.22274 1.305 1.38256 1.45579 1.52369 1.58752 1.64559 1.69967 1.74739 1.79057 1.82725 1.85854 1.88294 1.90083 1.91141 1.91604 1.91638 1.91576 1.91332 1.9101 1.907 1.90513 1.9049 1.90574 1.90707 1.90925 1.9126 1.91608 1.9201 1.92329 1.92701 1.92972 1.93213 1.93302 1.93309 1.93154 1.92528 1.91008 1.87384 1.79906 1.6591 1.52721 1.46072 1.44865 1.45583 1.46494 1.47188 1.47541 1.47256 1.45959 1.43707 1.40575 1.37056 1.34264 1.32674 1.32217 1.32795 1.33473 1.34432 1.35563 1.36486 1.37249 1.3796 1.38621 1.39224 1.39861 1.40595 1.41462 1.42429 1.43461 1.44528 1.45613 1.46701 1.47786 1.48868 1.49946 1.51017 1.52077 1.53125 1.54162 1.55194 1.56218 1.57233 1.58234 1.5922 1.60191 1.61146 1.62084 1.62999 1.63886 1.64743 1.65566 1.66355 1.67094 1.67764 1.68368 1.68869 1.69352 1.6938 1.13842 1.21524 1.29144 1.36457 1.4342 1.49961 1.56117 1.61851 1.67189 1.72103 1.76586 1.8062 1.84202 1.87267 1.89884 1.91897 1.9335 1.94183 1.94577 1.94619 1.94598 1.94454 1.94253 1.9407 1.94006 1.94065 1.94163 1.94302 1.94567 1.94847 1.95214 1.95487 1.95747 1.95807 1.95808 1.95645 1.95016 1.93511 1.89973 1.82566 1.6856 1.54597 1.47123 1.4575 1.46525 1.47775 1.49146 1.50791 1.52367 1.53305 1.53701 1.53461 1.52271 1.50103 1.47128 1.43604 1.40522 1.38362 1.37318 1.37328 1.37902 1.3869 1.39765 1.40806 1.41707 1.42516 1.43209 1.43833 1.44527 1.45333 1.46237 1.47209 1.4823 1.49291 1.50379 1.51475 1.5256 1.53629 1.54683 1.55724 1.56751 1.57768 1.58783 1.59797 1.60807 1.61811 1.62809 1.63798 1.64776 1.65741 1.66682 1.67609 1.68496 1.6936 1.70161 1.70921 1.71657 1.72237 1.72761 1.72889 1.14147 1.21075 1.28114 1.34971 1.41584 1.47862 1.5382 1.59409 1.64667 1.6956 1.74119 1.78301 1.82131 1.85553 1.88584 1.9116 1.93324 1.95011 1.96228 1.96929 1.97287 1.97348 1.97339 1.97257 1.97074 1.96939 1.96831 1.96886 1.96973 1.97121 1.97318 1.97594 1.97696 1.97696 1.97549 1.96958 1.95552 1.92128 1.84928 1.70973 1.5625 1.48158 1.46514 1.47183 1.48377 1.50012 1.51779 1.53792 1.55628 1.5734 1.58559 1.59315 1.59528 1.59259 1.58091 1.56044 1.53281 1.49814 1.46449 1.4374 1.4216 1.41702 1.42192 1.4289 1.43917 1.4516 1.46264 1.47222 1.48013 1.48727 1.49444 1.50233 1.51114 1.52071 1.53072 1.54108 1.55161 1.56214 1.57255 1.58281 1.59295 1.60297 1.61291 1.62278 1.63265 1.64255 1.65245 1.66235 1.6721 1.6819 1.69142 1.70095 1.71014 1.71904 1.72775 1.73594 1.7438 1.7504 1.75705 1.75906 1.14626 1.20832 1.27263 1.33663 1.39911 1.45889 1.51617 1.57041 1.62182 1.67003 1.71542 1.75762 1.79701 1.83311 1.86621 1.89579 1.92196 1.94422 1.96266 1.97708 1.98725 1.99323 1.99618 1.99685 1.99666 1.99629 1.99504 1.99434 1.99347 1.99386 1.9944 1.99481 1.99463 1.9931 1.98769 1.97313 1.94148 1.87167 1.73453 1.57862 1.48853 1.46887 1.4749 1.48744 1.50421 1.52335 1.54406 1.5647 1.58374 1.6021 1.61815 1.63152 1.64166 1.64758 1.64997 1.64836 1.63873 1.62 1.5935 1.55863 1.52128 1.48926 1.46807 1.45888 1.46282 1.46983 1.48024 1.49473 1.50757 1.51814 1.52707 1.53516 1.54302 1.5512 1.55992 1.56919 1.57891 1.58891 1.59905 1.60914 1.6191 1.62894 1.63867 1.64834 1.65789 1.66752 1.67703 1.6867 1.69621 1.70575 1.71521 1.72451 1.73371 1.74266 1.75159 1.75963 1.76835 1.77492 1.78251 1.78516 1.15496 1.21003 1.26824 1.32698 1.38555 1.44253 1.49736 1.54963 1.5997 1.647 1.69188 1.73394 1.7736 1.81051 1.84493 1.87653 1.90541 1.93114 1.95384 1.97297 1.9889 2.00111 2.00994 2.01511 2.01785 2.01855 2.01852 2.01829 2.01711 2.01576 2.01449 2.01309 2.01021 2.00314 1.98898 1.95668 1.89084 1.75516 1.59404 1.49624 1.47341 1.47828 1.49034 1.50764 1.52658 1.54876 1.56958 1.58926 1.60767 1.62664 1.64393 1.66041 1.67407 1.68592 1.69489 1.70114 1.70364 1.70268 1.69436 1.67647 1.65027 1.61539 1.57554 1.53874 1.51262 1.50005 1.50346 1.51054 1.52136 1.53705 1.55061 1.5622 1.57237 1.5815 1.59005 1.59861 1.60742 1.61651 1.6259 1.63554 1.64527 1.65506 1.66468 1.67439 1.68392 1.69348 1.7029 1.71227 1.72159 1.73089 1.74011 1.74907 1.75827 1.76668 1.77584 1.78353 1.79249 1.79906 1.80693 1.80988 1.1665 1.21529 1.26717 1.32072 1.37449 1.42778 1.48008 1.53051 1.57868 1.62502 1.66905 1.71101 1.75058 1.78801 1.82307 1.85589 1.88642 1.91444 1.94003 1.96285 1.98276 1.99978 2.0135 2.02434 2.03172 2.0365 2.03857 2.03897 2.03863 2.03776 2.03513 2.03078 2.02325 2.00819 1.97586 1.91192 1.77952 1.6133 1.50402 1.47631 1.47986 1.49204 1.50791 1.52752 1.54994 1.57219 1.59149 1.61038 1.62899 1.64771 1.66527 1.68211 1.69722 1.71162 1.72469 1.73649 1.74568 1.75211 1.75453 1.75394 1.74694 1.73052 1.70593 1.67202 1.63022 1.59013 1.55883 1.54245 1.5453 1.55244 1.56328 1.57925 1.59341 1.60539 1.61639 1.62624 1.63516 1.64385 1.65243 1.66122 1.67012 1.67937 1.68872 1.69817 1.70761 1.71716 1.72664 1.73604 1.74545 1.75454 1.76395 1.77265 1.78206 1.7902 1.79952 1.80703 1.81612 1.82275 1.83082 1.83395 1.18222 1.22503 1.27091 1.31913 1.36843 1.41784 1.46623 1.51426 1.56071 1.60526 1.64823 1.68936 1.72864 1.76607 1.80144 1.83495 1.86624 1.89579 1.9228 1.94815 1.97059 1.99115 2.00863 2.0237 2.03579 2.04493 2.05137 2.05419 2.05408 2.05324 2.05023 2.04262 2.02795 1.99657 1.93462 1.80857 1.63824 1.51583 1.48072 1.48181 1.49414 1.50967 1.52755 1.55071 1.57274 1.59298 1.61119 1.6301 1.64837 1.66716 1.68473 1.70195 1.71766 1.73334 1.74803 1.76247 1.77592 1.788 1.79766 1.80467 1.80792 1.80812 1.80282 1.78861 1.76514 1.73161 1.6885 1.64435 1.60738 1.58687 1.58939 1.59653 1.60701 1.62288 1.63731 1.64956 1.66082 1.67097 1.68002 1.68861 1.69688 1.70526 1.71374 1.72251 1.73149 1.74051 1.74976 1.75878 1.76821 1.77694 1.78644 1.79482 1.8044 1.81236 1.82188 1.82932 1.83855 1.84525 1.8535 1.85708 1.19763 1.2359 1.27709 1.32055 1.36554 1.41095 1.4567 1.50106 1.54537 1.58858 1.63 1.67015 1.70871 1.74564 1.78106 1.81471 1.84671 1.87688 1.90527 1.9318 1.95624 1.97908 1.99895 2.0177 2.03261 2.04635 2.0561 2.06288 2.06373 2.06235 2.05688 2.0447 2.01588 1.95885 1.83971 1.67056 1.53456 1.4882 1.48526 1.4981 1.51227 1.52955 1.55114 1.574 1.594 1.61286 1.63077 1.64944 1.66803 1.6872 1.70521 1.72273 1.73886 1.75506 1.77047 1.78641 1.80172 1.81659 1.83044 1.84256 1.85246 1.85986 1.86321 1.86371 1.85938 1.84656 1.82369 1.79067 1.74673 1.69926 1.65604 1.63269 1.635 1.64209 1.65222 1.6677 1.68203 1.69427 1.70541 1.71561 1.72489 1.73327 1.74149 1.74946 1.75783 1.76591 1.77475 1.78288 1.79201 1.80004 1.80937 1.81721 1.82665 1.83427 1.84369 1.85101 1.8602 1.86699 1.87505 1.87903 1.21475 1.2501 1.28663 1.32559 1.36584 1.40769 1.44949 1.49194 1.53287 1.57363 1.61421 1.65261 1.69053 1.72672 1.76171 1.79513 1.82746 1.85769 1.88708 1.91421 1.93992 1.96428 1.98574 2.00699 2.02424 2.04107 2.0537 2.06284 2.06369 2.06097 2.05115 2.02855 1.97558 1.87133 1.70093 1.55654 1.49856 1.49202 1.50387 1.51815 1.53397 1.5551 1.57758 1.59879 1.61733 1.63528 1.65276 1.67151 1.69035 1.7095 1.72747 1.745 1.76157 1.77814 1.79417 1.81075 1.82663 1.84273 1.8578 1.87213 1.88522 1.89666 1.90633 1.91374 1.91726 1.91797 1.9145 1.90278 1.88055 1.84784 1.80289 1.75238 1.7039 1.67835 1.6802 1.68732 1.69709 1.71205 1.72628 1.73835 1.74955 1.75976 1.76943 1.77754 1.78612 1.79365 1.80204 1.80936 1.81802 1.82536 1.83418 1.84147 1.85049 1.85773 1.86683 1.87392 1.88288 1.88953 1.89745 1.90129 1.2305 1.26381 1.29851 1.3336 1.37109 1.40811 1.44701 1.48574 1.52537 1.56327 1.60092 1.63896 1.67468 1.71015 1.74485 1.77692 1.80974 1.83941 1.86891 1.89698 1.9226 1.94866 1.97076 1.99361 2.0127 2.03085 2.04602 2.0536 2.0523 2.04635 2.02837 1.98264 1.8898 1.72335 1.57694 1.50972 1.49849 1.50989 1.52458 1.54121 1.56178 1.58497 1.60608 1.62557 1.64295 1.66051 1.67802 1.69665 1.71501 1.73371 1.75142 1.76908 1.78563 1.80215 1.81821 1.83457 1.85054 1.8668 1.88216 1.89727 1.91132 1.9247 1.93713 1.94831 1.95808 1.96569 1.96942 1.97031 1.96744 1.95669 1.93545 1.90298 1.85761 1.80474 1.7515 1.72425 1.72509 1.73184 1.74137 1.75548 1.76947 1.78128 1.79267 1.80269 1.81263 1.82073 1.82944 1.83661 1.84475 1.85163 1.85995 1.86679 1.87521 1.88211 1.8908 1.89769 1.90644 1.91289 1.92086 1.92444 1.24478 1.2767 1.30885 1.34183 1.37571 1.41197 1.4472 1.48359 1.51985 1.55696 1.5924 1.62737 1.66358 1.69592 1.73051 1.76208 1.79298 1.82417 1.85165 1.88102 1.90639 1.93241 1.95643 1.97825 2.00038 2.01756 2.03282 2.03521 2.03113 2.01616 1.98073 1.89163 1.74253 1.59077 1.51594 1.50129 1.51271 1.52943 1.54746 1.57024 1.59386 1.61623 1.63587 1.65432 1.67132 1.68865 1.70571 1.72361 1.74132 1.75945 1.7768 1.79394 1.81003 1.82627 1.84199 1.85818 1.87414 1.89037 1.90588 1.92133 1.93576 1.94995 1.96334 1.97635 1.98865 1.99991 2.00996 2.01764 2.02168 2.02257 2.02018 2.01023 1.98992 1.95796 1.91221 1.85737 1.80017 1.77147 1.77057 1.7773 1.7864 1.79948 1.8129 1.82431 1.83557 1.84534 1.85517 1.86318 1.8717 1.87853 1.8863 1.89282 1.90072 1.90717 1.91521 1.92173 1.93008 1.93639 1.94428 1.9478 1.26334 1.2918 1.321 1.35168 1.38296 1.41577 1.4501 1.48401 1.51808 1.55277 1.58727 1.62054 1.65381 1.68706 1.71798 1.75026 1.77979 1.80938 1.83834 1.86475 1.89253 1.91658 1.94182 1.96405 1.98502 2.00373 2.01051 2.00804 1.99749 1.9668 1.89402 1.74523 1.59192 1.51215 1.49701 1.51045 1.52914 1.55012 1.57517 1.60001 1.62306 1.64483 1.66439 1.68298 1.69998 1.71695 1.73348 1.75087 1.76812 1.78587 1.80274 1.8195 1.83533 1.85134 1.86684 1.88297 1.89868 1.91471 1.93011 1.94553 1.9601 1.9747 1.98857 2.00235 2.01557 2.02838 2.04042 2.05136 2.06108 2.06834 2.07237 2.07324 2.0713 2.06221 2.04293 2.012 1.96603 1.90951 1.84938 1.81905 1.81616 1.82282 1.83142 1.84336 1.85602 1.86712 1.87814 1.88752 1.89706 1.9049 1.91317 1.91961 1.92705 1.93318 1.94064 1.94667 1.95423 1.96009 1.9674 1.97072 1.28251 1.30446 1.33325 1.36211 1.39127 1.42157 1.45317 1.48611 1.51825 1.55084 1.58397 1.61601 1.64829 1.67918 1.71052 1.73999 1.76991 1.79823 1.82583 1.85336 1.87824 1.90462 1.92721 1.9506 1.97005 1.98221 1.98192 1.97292 1.94657 1.88409 1.74533 1.58768 1.50086 1.48611 1.5005 1.52167 1.54564 1.57361 1.59931 1.62363 1.6467 1.66928 1.69012 1.70964 1.72716 1.74437 1.7612 1.77887 1.79628 1.81383 1.83041 1.84681 1.8624 1.87815 1.89355 1.90929 1.92463 1.9403 1.95547 1.97071 1.98532 1.99988 2.01367 2.02739 2.04051 2.05347 2.06593 2.07802 2.08932 2.09976 2.10905 2.11607 2.12048 2.12146 2.12003 2.11196 2.09379 2.06408 2.01762 1.95976 1.89752 1.86545 1.8604 1.86688 1.87492 1.88551 1.89801 1.90874 1.91955 1.92858 1.93804 1.94571 1.95377 1.95988 1.96709 1.97289 1.97992 1.98529 1.99183 1.99457 1.30668 1.32274 1.34774 1.37505 1.40233 1.42981 1.45867 1.48911 1.52002 1.55095 1.58187 1.61302 1.64344 1.67416 1.70333 1.73304 1.76105 1.78925 1.81634 1.84241 1.86856 1.89213 1.91648 1.93638 1.95211 1.95369 1.94573 1.92202 1.86847 1.73898 1.57909 1.48415 1.46776 1.48273 1.50576 1.53394 1.56547 1.594 1.61968 1.64456 1.66812 1.6907 1.71144 1.73133 1.75033 1.76955 1.78822 1.80691 1.82465 1.84209 1.8585 1.8748 1.89031 1.90593 1.92087 1.93604 1.95084 1.96599 1.98075 1.99571 2.01002 2.02426 2.03772 2.05119 2.06391 2.07678 2.08907 2.10137 2.11321 2.12475 2.13566 2.1458 2.15495 2.16199 2.16691 2.16801 2.167 2.1599 2.14282 2.11394 2.06749 2.00809 1.94436 1.91053 1.90315 1.9093 1.91648 1.92574 1.93845 1.94854 1.95908 1.96783 1.97726 1.98471 1.99261 1.99857 2.00572 2.01097 2.01723 2.01973 1.33326 1.34019 1.35963 1.38686 1.41387 1.44066 1.46723 1.49497 1.52367 1.55283 1.58254 1.61149 1.64098 1.66968 1.69863 1.7263 1.75425 1.78104 1.80753 1.83357 1.85812 1.88262 1.90381 1.92155 1.92478 1.91781 1.89536 1.84854 1.72603 1.5654 1.46248 1.44433 1.46025 1.48522 1.51611 1.55108 1.5818 1.60988 1.63627 1.66228 1.68655 1.70934 1.73013 1.75051 1.77058 1.79108 1.811 1.83066 1.84914 1.86732 1.88451 1.90133 1.91702 1.93238 1.94696 1.96184 1.97636 1.99139 2.00593 2.02075 2.03473 2.04879 2.06193 2.07514 2.08758 2.10023 2.11231 2.12458 2.13646 2.14824 2.15973 2.17082 2.1814 2.19134 2.20035 2.20742 2.21284 2.21402 2.21322 2.20698 2.19112 2.16254 2.11638 2.05573 1.99092 1.95485 1.94562 1.95089 1.95708 1.96576 1.97823 1.98728 1.99753 2.00592 2.01549 2.0223 2.03014 2.03559 2.04214 2.0447 1.37181 1.36703 1.37777 1.39833 1.42491 1.45091 1.47621 1.50249 1.52907 1.5565 1.58409 1.61239 1.63959 1.66768 1.69466 1.72228 1.7485 1.77506 1.80057 1.82556 1.84987 1.87182 1.89075 1.89603 1.889 1.86981 1.82397 1.71219 1.55081 1.43959 1.41908 1.43478 1.46014 1.49345 1.53055 1.56384 1.59384 1.6231 1.65118 1.67814 1.70268 1.72579 1.74736 1.76859 1.78914 1.80989 1.8304 1.85102 1.87095 1.89047 1.90861 1.92602 1.94214 1.95795 1.97296 1.98809 2.00265 2.01748 2.03169 2.04611 2.05977 2.07355 2.08651 2.09957 2.11191 2.12436 2.13628 2.1483 2.15997 2.17163 2.18309 2.19437 2.20538 2.21614 2.22629 2.23599 2.24467 2.25165 2.25718 2.25834 2.25755 2.25206 2.23721 2.20937 2.16428 2.10256 2.03754 1.99865 1.98807 1.99168 1.99742 2.00542 2.01742 2.02544 2.03538 2.04322 2.05259 2.05862 2.06595 2.06855 1.40568 1.39352 1.39908 1.415 1.43813 1.46294 1.48676 1.51102 1.53574 1.56117 1.58731 1.61338 1.64026 1.66607 1.69261 1.71825 1.74443 1.76951 1.79466 1.81863 1.84114 1.86047 1.86717 1.86074 1.84244 1.79742 1.69733 1.53043 1.41258 1.39101 1.40674 1.4329 1.46796 1.50738 1.54229 1.57405 1.60423 1.63394 1.66225 1.68936 1.71469 1.73916 1.76234 1.78503 1.80658 1.82785 1.84855 1.86962 1.89034 1.91078 1.93002 1.9484 1.96548 1.98197 1.99751 2.01279 2.02745 2.04212 2.05632 2.07061 2.08433 2.09801 2.11102 2.1239 2.13612 2.14825 2.15988 2.17154 2.18285 2.19431 2.20547 2.21677 2.22775 2.23868 2.24927 2.25957 2.26941 2.27877 2.28723 2.29418 2.29985 2.30108 2.3004 2.2956 2.28187 2.255 2.21066 2.14916 2.08351 2.0414 2.03031 2.03167 2.03703 2.04435 2.05529 2.06273 2.07241 2.07944 2.08805 2.09082 1.47945 1.42855 1.42298 1.43158 1.44946 1.47464 1.49848 1.5215 1.5445 1.56748 1.59161 1.61641 1.64103 1.66666 1.69113 1.71634 1.74066 1.76524 1.78878 1.81118 1.83049 1.83835 1.83217 1.81429 1.77015 1.67764 1.50328 1.38205 1.36032 1.37694 1.40418 1.44108 1.48238 1.51894 1.55162 1.58287 1.61325 1.6431 1.67164 1.69925 1.72542 1.75074 1.77478 1.79812 1.82052 1.84277 1.86434 1.88581 1.90659 1.9273 1.94714 1.96648 1.98452 2.00191 2.01823 2.03436 2.04977 2.06516 2.07986 2.09449 2.10838 2.12214 2.13516 2.14806 2.16025 2.17238 2.18386 2.19537 2.20642 2.21752 2.22837 2.23925 2.24996 2.26064 2.27115 2.28149 2.29161 2.30152 2.31096 2.32014 2.32838 2.33544 2.34121 2.34257 2.34214 2.33787 2.3252 2.29974 2.2551 2.19511 2.13021 2.08371 2.07167 2.07022 2.07576 2.08202 2.09116 2.09813 2.10707 2.11065 1.62402 1.47704 1.45193 1.45178 1.46386 1.48311 1.50745 1.53066 1.55313 1.57548 1.59751 1.62051 1.64387 1.66759 1.69163 1.71541 1.73886 1.76202 1.78352 1.8028 1.81066 1.80418 1.78588 1.74219 1.64736 1.47767 1.35355 1.33152 1.34781 1.37491 1.41254 1.45573 1.49398 1.52816 1.56004 1.59116 1.62132 1.65093 1.67949 1.7075 1.73446 1.76066 1.7856 1.8098 1.83306 1.85598 1.87826 1.90032 1.92159 1.94248 1.96261 1.98246 2.00142 2.01988 2.03728 2.0543 2.0704 2.0864 2.10151 2.11671 2.13099 2.14544 2.15883 2.17237 2.18479 2.19736 2.20892 2.22063 2.23156 2.2426 2.25309 2.26369 2.27388 2.28425 2.29422 2.30442 2.31416 2.32411 2.33361 2.34313 2.35223 2.36115 2.36922 2.37637 2.38222 2.38376 2.38363 2.38002 2.36765 2.34379 2.29845 2.24234 2.17624 2.12587 2.11246 2.10793 2.11324 2.11766 2.12436 2.12851 1.85734 1.56822 1.48783 1.47538 1.47996 1.49456 1.5159 1.53935 1.56166 1.58327 1.60459 1.62587 1.64767 1.66984 1.69262 1.71502 1.73765 1.75854 1.77742 1.78501 1.77832 1.75941 1.71532 1.61773 1.45015 1.3232 1.30112 1.31786 1.3454 1.38404 1.42847 1.46851 1.50403 1.53691 1.5682 1.59879 1.6286 1.65827 1.6873 1.71604 1.74358 1.77017 1.7954 1.81985 1.84346 1.86687 1.88981 1.9126 1.93473 1.95634 1.97697 1.99707 2.01655 2.0358 2.0543 2.07233 2.0895 2.1063 2.12241 2.13813 2.15317 2.16779 2.18179 2.19541 2.2085 2.2212 2.23337 2.24513 2.25633 2.26722 2.27756 2.28789 2.29767 2.30776 2.31731 2.32726 2.33672 2.34642 2.35583 2.36516 2.37443 2.38343 2.39228 2.40089 2.40876 2.41589 2.42158 2.42341 2.42349 2.42 2.40916 2.38554 2.33999 2.28977 2.21961 2.16878 2.15113 2.14544 2.14594 2.14783 2.28239 1.76559 1.554 1.50963 1.50301 1.50974 1.52514 1.5474 1.56893 1.59021 1.61108 1.63184 1.65272 1.6736 1.69469 1.71591 1.73603 1.75415 1.76133 1.75414 1.73449 1.68942 1.58946 1.42262 1.29244 1.27041 1.28808 1.31665 1.35653 1.40145 1.44292 1.47996 1.51364 1.54541 1.576 1.60631 1.63627 1.66636 1.6958 1.72467 1.7521 1.77864 1.80391 1.82876 1.85296 1.87708 1.90062 1.92391 1.94644 1.96855 1.98987 2.01071 2.03073 2.05041 2.06955 2.08842 2.1064 2.12402 2.14071 2.15723 2.17279 2.18827 2.20276 2.21724 2.23067 2.2441 2.25641 2.26872 2.27989 2.29114 2.3013 2.31174 2.32123 2.3312 2.3404 2.35014 2.3593 2.36878 2.37794 2.38706 2.39613 2.40498 2.41381 2.42251 2.43098 2.43939 2.44698 2.45398 2.45955 2.46139 2.46153 2.45828 2.44823 2.4246 2.38511 2.32993 2.25816 2.21407 2.18341 2.17867 2.56798 2.08012 1.69132 1.55147 1.52858 1.52809 1.53838 1.554 1.57624 1.59686 1.61725 1.63702 1.65725 1.67717 1.69741 1.71647 1.73348 1.7397 1.73171 1.71109 1.66449 1.56166 1.39423 1.26073 1.23947 1.25881 1.28892 1.3307 1.37557 1.41752 1.45546 1.49015 1.52254 1.55374 1.58422 1.61463 1.64478 1.67481 1.70403 1.73257 1.75996 1.78665 1.81241 1.83777 1.86245 1.88686 1.91069 1.93431 1.95735 1.98014 2.00217 2.02376 2.04445 2.0646 2.08398 2.10322 2.12189 2.14022 2.15769 2.17478 2.19104 2.20692 2.22197 2.2367 2.25066 2.26435 2.27735 2.29006 2.30205 2.31374 2.32462 2.33533 2.34519 2.35516 2.36431 2.3738 2.3826 2.3917 2.40046 2.40915 2.41794 2.42632 2.43507 2.44329 2.45192 2.4601 2.46834 2.47641 2.48367 2.49046 2.49579 2.49747 2.49756 2.49466 2.48461 2.46157 2.42472 2.36383 2.29731 2.262 2.76815 2.44014 1.93171 1.6438 1.56048 1.5485 1.55111 1.56404 1.58146 1.60418 1.62417 1.64402 1.66254 1.68153 1.69913 1.71532 1.72033 1.71128 1.68943 1.64068 1.53432 1.36457 1.22811 1.20833 1.22983 1.26211 1.30608 1.35117 1.39301 1.43143 1.46685 1.50017 1.53195 1.56299 1.59351 1.62395 1.65394 1.68371 1.71273 1.74126 1.76887 1.79585 1.82199 1.84759 1.87254 1.89716 1.92133 1.94519 1.96857 1.99146 2.01371 2.03542 2.05646 2.07708 2.09704 2.11665 2.13571 2.1546 2.17266 2.19026 2.20693 2.22329 2.23872 2.25399 2.26838 2.28271 2.29614 2.30951 2.32188 2.33418 2.34538 2.35658 2.36669 2.37695 2.38622 2.39582 2.4046 2.41373 2.42235 2.43101 2.43963 2.4478 2.45644 2.46417 2.47282 2.48037 2.4888 2.49646 2.50437 2.51194 2.51888 2.52512 2.53008 2.53146 2.5313 2.52798 2.51862 2.49238 2.45235 2.42399 2.87446 2.70656 2.34664 1.84797 1.63286 1.58066 1.5725 1.57609 1.58969 1.60878 1.63112 1.65055 1.66992 1.68601 1.70102 1.70363 1.6933 1.66975 1.61794 1.50699 1.3321 1.1953 1.17777 1.20233 1.23678 1.28292 1.32839 1.37018 1.40859 1.44453 1.47857 1.51125 1.54283 1.57381 1.6042 1.63442 1.66414 1.69369 1.72256 1.75106 1.77868 1.80579 1.83206 1.8579 1.88312 1.90797 1.9323 1.95618 1.97947 2.00227 2.0245 2.04631 2.06763 2.08855 2.109 2.12901 2.14844 2.16752 2.18604 2.20413 2.22133 2.23813 2.25409 2.26978 2.28465 2.29938 2.3133 2.32711 2.34009 2.35296 2.36489 2.37669 2.38753 2.3982 2.40804 2.41773 2.42681 2.43573 2.44436 2.45269 2.46108 2.46893 2.47727 2.48462 2.49307 2.49999 2.50848 2.51523 2.52346 2.5303 2.53781 2.54458 2.55106 2.55636 2.56083 2.56171 2.56118 2.55745 2.54423 2.53802 2.93165 2.84412 2.64817 2.21734 1.80535 1.63252 1.59942 1.59494 1.60061 1.61486 1.63497 1.6556 1.67324 1.68858 1.69031 1.67857 1.65291 1.59684 1.47981 1.29742 1.16294 1.1492 1.17598 1.2129 1.26119 1.30696 1.34872 1.38697 1.42296 1.45762 1.49118 1.52375 1.55532 1.58617 1.61634 1.6462 1.67555 1.7047 1.73327 1.76152 1.78911 1.81627 1.84275 1.86875 1.89409 1.9189 1.94312 1.96682 1.99002 2.01276 2.03505 2.0569 2.07836 2.09939 2.12003 2.14027 2.16 2.17927 2.19794 2.2163 2.23395 2.25112 2.26755 2.28366 2.299 2.31414 2.32852 2.34273 2.35621 2.36952 2.38205 2.39435 2.4059 2.41704 2.42758 2.43758 2.44715 2.45618 2.46502 2.47334 2.48168 2.48954 2.4976 2.50499 2.51295 2.51982 2.52775 2.53412 2.54208 2.54805 2.5559 2.56168 2.56893 2.57452 2.58063 2.58492 2.58854 2.58915 2.58807 2.58972 2.9626 2.91619 2.80736 2.52902 2.06596 1.74395 1.63526 1.61603 1.61533 1.6243 1.63862 1.65742 1.67368 1.67723 1.66492 1.63693 1.5755 1.45209 1.26243 1.13232 1.12142 1.14982 1.18991 1.24041 1.28661 1.32835 1.36663 1.40283 1.43776 1.47191 1.50517 1.53754 1.56886 1.59943 1.62919 1.65861 1.68749 1.7162 1.74441 1.7724 1.79979 1.82683 1.85321 1.87909 1.90437 1.92908 1.95327 1.97691 2.00007 2.02272 2.04494 2.06673 2.08817 2.1092 2.12993 2.15022 2.17013 2.18957 2.20846 2.22691 2.24486 2.26236 2.27924 2.29576 2.31161 2.3272 2.3421 2.35673 2.37072 2.38443 2.39752 2.41026 2.42249 2.43414 2.44543 2.45596 2.46619 2.47561 2.48481 2.49329 2.5016 2.50941 2.51713 2.52436 2.53181 2.53853 2.54584 2.55208 2.55933 2.56513 2.57227 2.5777 2.58461 2.58966 2.59611 2.60054 2.60603 2.60929 2.61197 2.61374 2.98233 2.95455 2.8981 2.76406 2.45131 1.97818 1.7242 1.64914 1.63498 1.63553 1.64388 1.65681 1.66315 1.65061 1.62023 1.55034 1.41926 1.22454 1.10231 1.09525 1.1241 1.16691 1.21959 1.26646 1.30824 1.34662 1.38307 1.41839 1.45288 1.48668 1.51962 1.55168 1.58271 1.61293 1.6423 1.67124 1.69961 1.7278 1.75552 1.78307 1.81007 1.83678 1.86287 1.88856 1.91366 1.93826 1.96233 1.98589 2.00893 2.03155 2.05372 2.07555 2.09701 2.11812 2.13886 2.15918 2.17907 2.19852 2.21746 2.23599 2.25405 2.2718 2.28908 2.30604 2.3224 2.33845 2.35384 2.36887 2.3833 2.39735 2.41091 2.42402 2.4368 2.44886 2.46082 2.47175 2.48266 2.49242 2.50215 2.51085 2.51945 2.52733 2.53506 2.54226 2.54949 2.55609 2.56301 2.56904 2.57572 2.58119 2.58763 2.59264 2.59878 2.60342 2.6092 2.61346 2.6187 2.62234 2.62641 2.62838 2.98972 2.97868 2.94633 2.88167 2.71859 2.39159 1.92973 1.72237 1.66841 1.65448 1.65257 1.65091 1.63872 1.60531 1.52377 1.37826 1.18233 1.07238 1.07026 1.09887 1.14277 1.197 1.24493 1.28728 1.32568 1.36209 1.39757 1.43251 1.46682 1.50035 1.53294 1.56458 1.59521 1.62505 1.65408 1.68263 1.71059 1.73831 1.76554 1.79259 1.81912 1.8454 1.87112 1.89641 1.92115 1.94538 1.9692 1.99257 2.0156 2.03829 2.06061 2.08259 2.10419 2.12538 2.14616 2.16648 2.18637 2.20582 2.22482 2.24346 2.26168 2.2796 2.29713 2.31433 2.33099 2.34735 2.3631 2.37851 2.39338 2.40788 2.42192 2.4355 2.44875 2.46129 2.47372 2.48511 2.49653 2.50672 2.517 2.52603 2.53513 2.54317 2.55125 2.55846 2.56582 2.5723 2.57912 2.58493 2.59128 2.59642 2.6023 2.60687 2.61225 2.61637 2.62129 2.62501 2.62946 2.63274 2.63646 2.63844 2.99546 2.98812 2.97493 2.93872 2.86186 2.68172 2.31356 1.90136 1.72092 1.67918 1.66257 1.64188 1.59823 1.50121 1.33014 1.13562 1.04249 1.04714 1.07523 1.12018 1.17497 1.22357 1.26649 1.30511 1.34124 1.37628 1.4109 1.44517 1.47886 1.51181 1.54388 1.57513 1.60546 1.63511 1.66399 1.69239 1.72011 1.74749 1.77429 1.80085 1.82683 1.85254 1.87768 1.90244 1.92676 1.95066 1.97423 1.99745 2.02037 2.04306 2.06546 2.08761 2.10941 2.13082 2.15181 2.17228 2.19232 2.2119 2.23105 2.24984 2.26823 2.28632 2.30402 2.3214 2.33824 2.35483 2.37084 2.38658 2.40182 2.41676 2.4312 2.44526 2.45887 2.47189 2.48464 2.49647 2.50823 2.51883 2.52961 2.53896 2.54871 2.55693 2.56558 2.57288 2.58053 2.58702 2.59386 2.59959 2.60572 2.61069 2.61612 2.62035 2.6251 2.62866 2.6328 2.6358 2.63943 2.64196 2.64501 2.64644 2.99729 2.99457 2.98572 2.97011 2.92566 2.83595 2.61196 2.20987 1.85366 1.71496 1.66835 1.61221 1.49454 1.28133 1.08192 1.00654 1.01741 1.04688 1.0948 1.14965 1.19868 1.24223 1.28175 1.3188 1.35433 1.38896 1.42289 1.45625 1.48903 1.52127 1.55282 1.58372 1.61388 1.64339 1.6721 1.70026 1.72774 1.75481 1.7813 1.80749 1.83317 1.85858 1.88356 1.90821 1.93252 1.95641 1.97997 2.00315 2.02601 2.04854 2.0707 2.09254 2.11399 2.13507 2.15578 2.17614 2.19613 2.21581 2.23509 2.25402 2.27257 2.29068 2.30844 2.32583 2.34285 2.35958 2.37591 2.39196 2.40765 2.423 2.43793 2.45248 2.46654 2.48012 2.49324 2.5057 2.51782 2.52905 2.5401 2.55 2.56008 2.56872 2.57781 2.58537 2.59343 2.6 2.60703 2.61268 2.6187 2.62343 2.6285 2.63233 2.63654 2.63955 2.64304 2.6454 2.64831 2.65018 2.65252 2.65351 2.99857 2.99722 2.99236 2.98489 2.96045 2.91472 2.80148 2.53321 2.0958 1.79763 1.66378 1.52376 1.25565 1.02298 0.952429 0.968942 1.00548 1.05989 1.1161 1.16522 1.20906 1.24959 1.28797 1.32471 1.36008 1.39439 1.42791 1.46087 1.49328 1.52515 1.55635 1.5869 1.61666 1.64578 1.67416 1.70203 1.72925 1.75608 1.78233 1.80832 1.83382 1.85911 1.88403 1.90866 1.93299 1.95692 1.98052 2.00369 2.02647 2.04886 2.07085 2.0925 2.1138 2.13476 2.1554 2.17575 2.19574 2.21548 2.2348 2.25379 2.2724 2.29056 2.30844 2.32591 2.34308 2.35998 2.37656 2.39289 2.40891 2.42461 2.43997 2.45495 2.46952 2.48358 2.49721 2.51019 2.52281 2.53462 2.54622 2.55682 2.56736 2.5767 2.58614 2.59423 2.60256 2.60943 2.61661 2.62233 2.62834 2.63298 2.63782 2.64154 2.64526 2.64821 2.65102 2.65336 2.65551 2.65737 2.65898 2.66034 2.99934 2.9982 2.99645 2.99046 2.98069 2.95042 2.89303 2.74686 2.44307 1.96947 1.63617 1.28039 0.953681 0.865724 0.890564 0.933226 0.996358 1.06009 1.11379 1.16031 1.20326 1.24405 1.28282 1.31969 1.35494 1.38897 1.42214 1.45471 1.48667 1.51802 1.54865 1.57862 1.60786 1.63655 1.66462 1.69225 1.71932 1.74604 1.77225 1.79822 1.82377 1.84916 1.87424 1.89909 1.92368 1.94789 1.97176 1.99516 2.01814 2.04066 2.06274 2.08444 2.10581 2.12689 2.14769 2.16826 2.18844 2.20843 2.22799 2.24735 2.2664 2.28508 2.30351 2.32152 2.33926 2.35669 2.37379 2.39062 2.40711 2.42329 2.43911 2.4545 2.46956 2.48393 2.49807 2.51132 2.5244 2.5365 2.54848 2.55936 2.57022 2.57988 2.58956 2.59798 2.60645 2.6136 2.62084 2.62678 2.63272 2.63754 2.64217 2.64596 2.64937 2.65227 2.65466 2.65684 2.65841 2.66003 2.66125 2.66278 2.99954 2.99871 2.99751 2.99308 2.98644 2.96353 2.92422 2.81158 2.58677 2.10734 1.51701 0.943796 0.67539 0.711124 0.762011 0.829384 0.892918 0.950869 1.00597 1.05906 1.10965 1.15743 1.20262 1.24553 1.2865 1.32591 1.36403 1.40105 1.43702 1.47194 1.50576 1.53853 1.57025 1.60109 1.63107 1.66042 1.68909 1.71732 1.74498 1.77231 1.79913 1.82568 1.8518 1.8776 1.90306 1.92811 1.9528 1.97702 2.00083 2.02418 2.04714 2.06966 2.09188 2.11373 2.13531 2.15664 2.17762 2.19844 2.21883 2.23896 2.25872 2.27804 2.29703 2.31555 2.33373 2.35153 2.36903 2.38623 2.40315 2.4198 2.43611 2.45203 2.46762 2.48254 2.49723 2.51104 2.52464 2.53725 2.54972 2.56106 2.57233 2.58234 2.59233 2.60095 2.60959 2.61683 2.62406 2.63005 2.63583 2.64074 2.6451 2.64909 2.65216 2.65534 2.65737 2.65978 2.66107 2.66303 2.66407 2.66601 1.10254 1.2928 1.34716 1.30762 1.23138 1.14435 1.06491 1.02548 1.01965 1.02237 1.0245 1.02489 1.0235 1.02199 1.02071 1.02151 1.0248 1.02908 1.03409 1.0398 1.04593 1.05217 1.05859 1.06522 1.07196 1.07868 1.08522 1.09149 1.09742 1.10298 1.10815 1.11296 1.11749 1.12178 1.12564 1.1288 1.13095 1.13157 1.1303 1.12748 1.11886 1.0981 1.04861 0.9349 0.683037 0.282563 0.113926 0.147146 0.103667 0.0662181 0.0436056 0.0803175 0.130751 0.179493 0.225184 0.266779 0.304383 0.339927 0.375327 0.410257 0.443592 0.475373 0.505823 0.535079 0.563266 0.590304 0.616248 0.641017 0.664745 0.687454 0.709358 0.730523 0.751162 0.771295 0.791074 0.810461 0.829663 0.848499 0.867344 0.885748 0.90432 0.922251 0.940649 0.957971 0.976251 0.993005 1.01096 1.02753 1.04478 1.0614 1.07759 1.09423 1.10928 1.12571 1.13962 1.15568 1.1682 1.18319 1.19292 1.20317 1.14211 1.25781 1.32289 1.36219 1.40228 1.43349 1.4435 1.43946 1.42436 1.40286 1.38573 1.38097 1.38184 1.38394 1.38616 1.38744 1.38873 1.39013 1.39195 1.39453 1.39753 1.40116 1.40548 1.41016 1.4148 1.41938 1.42397 1.42862 1.43331 1.43803 1.44274 1.44736 1.45187 1.45627 1.4604 1.46442 1.46764 1.46951 1.46993 1.46879 1.46285 1.44605 1.40539 1.31043 1.10222 0.716474 0.39891 0.296007 0.32687 0.385415 0.438724 0.480733 0.516766 0.552877 0.589006 0.622853 0.653445 0.681568 0.708974 0.735783 0.761979 0.786394 0.810098 0.832198 0.854063 0.874431 0.894671 0.913367 0.932341 0.94982 0.967888 0.984258 1.00127 1.01664 1.03241 1.04715 1.06166 1.07618 1.08949 1.10403 1.11653 1.13101 1.14334 1.15802 1.17023 1.18526 1.19736 1.21262 1.22452 1.23993 1.25157 1.26696 1.27831 1.29367 1.30472 1.31998 1.33041 1.34508 1.35323 1.36451 1.13956 1.24698 1.34276 1.43543 1.52047 1.58717 1.6196 1.62225 1.61721 1.6032 1.58398 1.56941 1.56115 1.55918 1.55987 1.56098 1.56254 1.56415 1.56559 1.56717 1.569 1.57119 1.57379 1.57673 1.57992 1.58331 1.58686 1.59059 1.59442 1.59838 1.60247 1.60662 1.61092 1.61507 1.61946 1.62337 1.62732 1.62946 1.6304 1.63009 1.62655 1.61436 1.58439 1.51157 1.35191 1.03352 0.695303 0.569771 0.600827 0.67157 0.743878 0.796886 0.836669 0.866058 0.888661 0.908953 0.927961 0.945633 0.962274 0.978544 0.996105 1.01255 1.02976 1.04559 1.06133 1.07627 1.09069 1.105 1.11821 1.132 1.14426 1.15755 1.16936 1.18227 1.19374 1.20642 1.21763 1.23022 1.24127 1.25364 1.2644 1.2764 1.28664 1.29813 1.30786 1.31894 1.32828 1.3391 1.34815 1.35887 1.36768 1.37837 1.38694 1.39771 1.40612 1.41718 1.42526 1.43636 1.44283 1.45153 1.14617 1.25558 1.35493 1.44667 1.52765 1.5956 1.64817 1.68547 1.70579 1.71036 1.70862 1.70163 1.69083 1.68129 1.6759 1.67489 1.67578 1.67727 1.67945 1.68176 1.68371 1.68553 1.68741 1.68953 1.69198 1.69474 1.69778 1.70104 1.7045 1.7081 1.71186 1.71563 1.71972 1.72356 1.72787 1.73151 1.73519 1.737 1.73776 1.73733 1.73348 1.72182 1.69406 1.6319 1.51057 1.29608 1.02081 0.855966 0.876246 0.924139 0.977861 1.02359 1.05543 1.07516 1.08678 1.09655 1.10389 1.11033 1.1169 1.12411 1.13176 1.14134 1.15253 1.1647 1.17616 1.18827 1.19903 1.21058 1.22118 1.23266 1.24329 1.25488 1.26547 1.277 1.28758 1.29925 1.30987 1.32143 1.33177 1.34299 1.35295 1.36381 1.37337 1.38383 1.39295 1.40303 1.41177 1.42147 1.4298 1.4391 1.447 1.4559 1.4634 1.47189 1.47892 1.48703 1.49364 1.50152 1.50694 1.51153 1.14635 1.25382 1.35004 1.43806 1.51808 1.58946 1.65256 1.70541 1.74655 1.77345 1.78413 1.78424 1.78211 1.776 1.76754 1.76095 1.75639 1.75516 1.75565 1.75677 1.75845 1.76065 1.76295 1.7652 1.76743 1.76983 1.77238 1.77524 1.77823 1.78161 1.78499 1.78867 1.79245 1.79607 1.80003 1.80325 1.80575 1.80681 1.80696 1.80486 1.79743 1.77831 1.73594 1.6473 1.50898 1.36596 1.25247 1.1286 1.06085 1.05253 1.07481 1.10158 1.13199 1.15541 1.1729 1.18539 1.19338 1.19961 1.20469 1.20936 1.21403 1.21948 1.22666 1.23652 1.24765 1.2588 1.26949 1.28027 1.29074 1.30147 1.31199 1.32287 1.33355 1.34465 1.35545 1.36648 1.37708 1.38785 1.39811 1.4085 1.41839 1.42838 1.43784 1.44739 1.45642 1.46557 1.47421 1.48296 1.49117 1.49942 1.50708 1.51481 1.52197 1.52926 1.53587 1.54237 1.54819 1.55337 1.55803 1.55996 1.14092 1.24309 1.33721 1.42296 1.50156 1.57312 1.63702 1.6934 1.741 1.78006 1.80993 1.82907 1.8372 1.83783 1.83654 1.83241 1.82637 1.82119 1.81793 1.81736 1.81825 1.81955 1.82167 1.82437 1.8272 1.8298 1.83235 1.8349 1.83754 1.84057 1.8436 1.84742 1.85087 1.85518 1.85847 1.86147 1.86282 1.86306 1.86157 1.85487 1.83841 1.79962 1.71993 1.5859 1.46088 1.40325 1.37051 1.31918 1.25774 1.20632 1.17779 1.17337 1.18686 1.20194 1.22047 1.23873 1.25135 1.26027 1.26756 1.27351 1.27821 1.28233 1.2872 1.2937 1.30226 1.31186 1.32198 1.33235 1.34279 1.35327 1.36384 1.37457 1.38526 1.39599 1.40669 1.41733 1.42784 1.43826 1.44856 1.45872 1.46869 1.47852 1.48818 1.49771 1.50702 1.51614 1.52501 1.53368 1.5421 1.5503 1.5582 1.5658 1.57299 1.57981 1.58619 1.59212 1.59785 1.60252 1.60675 1.60619 1.1387 1.23182 1.31986 1.40204 1.47813 1.5487 1.61323 1.67181 1.72434 1.77014 1.80912 1.84017 1.8633 1.87717 1.88245 1.88258 1.88158 1.87847 1.87412 1.87046 1.86831 1.86769 1.8685 1.86956 1.87149 1.87413 1.87725 1.88009 1.88321 1.88596 1.88934 1.89223 1.89589 1.89891 1.90162 1.90309 1.90339 1.9017 1.89594 1.87926 1.84315 1.76501 1.62824 1.50099 1.44174 1.42917 1.42771 1.41798 1.39682 1.36783 1.33149 1.29379 1.26938 1.25962 1.2637 1.27257 1.28355 1.29662 1.30761 1.31618 1.32343 1.32965 1.33508 1.34036 1.34638 1.35367 1.36218 1.37157 1.38154 1.39203 1.40281 1.41367 1.42456 1.43546 1.44634 1.45719 1.46795 1.47859 1.48909 1.49952 1.50985 1.52003 1.53003 1.53986 1.5495 1.55896 1.56818 1.57718 1.5859 1.59437 1.6026 1.61054 1.61806 1.62513 1.63166 1.63769 1.64355 1.64824 1.65275 1.65226 1.13795 1.22274 1.305 1.38256 1.45579 1.52369 1.58752 1.64559 1.69967 1.74739 1.79057 1.82725 1.85854 1.88294 1.90083 1.91141 1.91604 1.91638 1.91576 1.91332 1.9101 1.907 1.90513 1.9049 1.90574 1.90707 1.90925 1.9126 1.91608 1.9201 1.92329 1.92701 1.92972 1.93213 1.93302 1.93309 1.93154 1.92528 1.91008 1.87384 1.79906 1.6591 1.52721 1.46072 1.44865 1.45583 1.46494 1.47188 1.47541 1.47256 1.45959 1.43707 1.40575 1.37056 1.34264 1.32674 1.32218 1.32795 1.33473 1.34432 1.35563 1.36486 1.37249 1.3796 1.38621 1.39224 1.39861 1.40595 1.41462 1.42429 1.43461 1.44528 1.45613 1.46701 1.47786 1.48868 1.49946 1.51017 1.52077 1.53125 1.54162 1.55194 1.56218 1.57233 1.58234 1.5922 1.60191 1.61146 1.62084 1.62999 1.63886 1.64743 1.65566 1.66355 1.67094 1.67764 1.68368 1.68869 1.69352 1.6938 1.13842 1.21524 1.29144 1.36457 1.4342 1.49961 1.56117 1.61851 1.67189 1.72103 1.76586 1.8062 1.84202 1.87267 1.89884 1.91897 1.9335 1.94183 1.94577 1.94619 1.94598 1.94454 1.94253 1.9407 1.94006 1.94065 1.94163 1.94302 1.94567 1.94847 1.95214 1.95487 1.95747 1.95807 1.95808 1.95645 1.95016 1.93511 1.89973 1.82566 1.6856 1.54597 1.47123 1.4575 1.46525 1.47775 1.49146 1.50791 1.52367 1.53305 1.53701 1.53461 1.52271 1.50103 1.47128 1.43604 1.40522 1.38362 1.37318 1.37328 1.37902 1.3869 1.39765 1.40806 1.41707 1.42516 1.43209 1.43833 1.44527 1.45333 1.46237 1.47209 1.4823 1.49291 1.50379 1.51475 1.5256 1.53629 1.54683 1.55724 1.56751 1.57769 1.58783 1.59797 1.60807 1.61811 1.62809 1.63798 1.64776 1.65741 1.66682 1.67609 1.68496 1.6936 1.70161 1.70921 1.71657 1.72237 1.72761 1.72889 1.14147 1.21075 1.28114 1.34971 1.41584 1.47862 1.5382 1.59409 1.64667 1.6956 1.74119 1.78301 1.82131 1.85553 1.88584 1.9116 1.93324 1.95011 1.96228 1.96929 1.97287 1.97348 1.97339 1.97257 1.97074 1.96939 1.96831 1.96886 1.96973 1.97121 1.97318 1.97594 1.97696 1.97696 1.97549 1.96958 1.95552 1.92128 1.84928 1.70973 1.5625 1.48158 1.46514 1.47183 1.48377 1.50012 1.51779 1.53792 1.55628 1.5734 1.58559 1.59315 1.59528 1.59259 1.58092 1.56045 1.53281 1.49814 1.46449 1.4374 1.42159 1.41702 1.42192 1.4289 1.43917 1.4516 1.46264 1.47222 1.48013 1.48727 1.49444 1.50233 1.51114 1.52071 1.53072 1.54108 1.55161 1.56214 1.57255 1.58281 1.59295 1.60297 1.61291 1.62278 1.63265 1.64255 1.65245 1.66235 1.6721 1.6819 1.69142 1.70095 1.71014 1.71904 1.72775 1.73594 1.7438 1.7504 1.75705 1.75906 1.14626 1.20832 1.27263 1.33663 1.39911 1.45889 1.51617 1.57041 1.62182 1.67003 1.71542 1.75762 1.79701 1.83311 1.86621 1.89579 1.92196 1.94422 1.96266 1.97708 1.98725 1.99323 1.99618 1.99685 1.99666 1.99629 1.99504 1.99434 1.99347 1.99386 1.9944 1.99481 1.99463 1.9931 1.98769 1.97313 1.94148 1.87167 1.73453 1.57862 1.48853 1.46887 1.4749 1.48744 1.50421 1.52335 1.54406 1.5647 1.58374 1.6021 1.61815 1.63151 1.64166 1.64758 1.64997 1.64836 1.63873 1.62 1.5935 1.55863 1.52128 1.48926 1.46807 1.45888 1.46282 1.46983 1.48024 1.49473 1.50757 1.51814 1.52707 1.53516 1.54302 1.5512 1.55992 1.56919 1.57891 1.58891 1.59905 1.60914 1.6191 1.62894 1.63867 1.64834 1.65789 1.66752 1.67703 1.6867 1.69621 1.70575 1.71521 1.72451 1.73371 1.74266 1.75159 1.75963 1.76835 1.77492 1.78251 1.78517 1.15496 1.21003 1.26824 1.32698 1.38555 1.44253 1.49736 1.54963 1.5997 1.647 1.69188 1.73394 1.7736 1.81051 1.84493 1.87653 1.90541 1.93114 1.95384 1.97297 1.9889 2.00111 2.00994 2.01511 2.01785 2.01855 2.01852 2.01829 2.01711 2.01576 2.01449 2.01309 2.01021 2.00314 1.98898 1.95668 1.89084 1.75516 1.59405 1.49624 1.47341 1.47828 1.49034 1.50764 1.52658 1.54876 1.56958 1.58926 1.60767 1.62664 1.64393 1.66041 1.67407 1.68592 1.69489 1.70114 1.70364 1.70268 1.69436 1.67647 1.65027 1.61539 1.57554 1.53875 1.51262 1.50005 1.50346 1.51054 1.52136 1.53705 1.55061 1.5622 1.57237 1.5815 1.59005 1.59861 1.60742 1.61651 1.6259 1.63554 1.64527 1.65506 1.66468 1.67439 1.68392 1.69348 1.7029 1.71227 1.72159 1.73089 1.74011 1.74907 1.75827 1.76668 1.77584 1.78353 1.79249 1.79907 1.80693 1.80988 1.1665 1.21529 1.26717 1.32072 1.37449 1.42778 1.48008 1.53051 1.57868 1.62502 1.66905 1.71101 1.75058 1.78801 1.82307 1.85589 1.88642 1.91444 1.94003 1.96285 1.98276 1.99978 2.0135 2.02434 2.03172 2.0365 2.03857 2.03897 2.03863 2.03776 2.03513 2.03078 2.02325 2.00819 1.97586 1.91192 1.77952 1.6133 1.50402 1.47631 1.47986 1.49204 1.50791 1.52752 1.54994 1.57219 1.59149 1.61038 1.629 1.64771 1.66527 1.68211 1.69722 1.71162 1.72469 1.73649 1.74568 1.75211 1.75453 1.75394 1.74694 1.73052 1.70593 1.67202 1.63022 1.59013 1.55883 1.54245 1.5453 1.55244 1.56328 1.57925 1.59341 1.60538 1.61639 1.62624 1.63516 1.64385 1.65243 1.66122 1.67013 1.67937 1.68872 1.69817 1.70761 1.71716 1.72664 1.73604 1.74545 1.75454 1.76395 1.77265 1.78206 1.79021 1.79952 1.80704 1.81612 1.82275 1.83083 1.83395 1.18222 1.22503 1.27091 1.31913 1.36843 1.41784 1.46623 1.51426 1.56071 1.60526 1.64823 1.68936 1.72864 1.76607 1.80144 1.83495 1.86624 1.89579 1.9228 1.94815 1.97059 1.99115 2.00863 2.0237 2.03579 2.04493 2.05137 2.05419 2.05408 2.05324 2.05023 2.04262 2.02795 1.99657 1.93463 1.80858 1.63824 1.51583 1.48072 1.48181 1.49414 1.50967 1.52755 1.55071 1.57274 1.59298 1.61119 1.6301 1.64837 1.66716 1.68473 1.70195 1.71766 1.73334 1.74803 1.76247 1.77592 1.788 1.79766 1.80467 1.80792 1.80812 1.80282 1.78861 1.76514 1.73161 1.6885 1.64435 1.60738 1.58687 1.58939 1.59653 1.60701 1.62288 1.63731 1.64956 1.66082 1.67097 1.68002 1.68861 1.69688 1.70526 1.71374 1.72251 1.7315 1.74051 1.74977 1.75878 1.76821 1.77694 1.78644 1.79482 1.8044 1.81236 1.82188 1.82932 1.83855 1.84525 1.8535 1.85708 1.19763 1.2359 1.27709 1.32055 1.36554 1.41095 1.4567 1.50106 1.54537 1.58858 1.63 1.67015 1.70871 1.74564 1.78106 1.81471 1.84671 1.87688 1.90527 1.9318 1.95624 1.97908 1.99895 2.0177 2.03261 2.04635 2.0561 2.06288 2.06373 2.06235 2.05688 2.0447 2.01588 1.95885 1.83971 1.67057 1.53456 1.4882 1.48526 1.4981 1.51227 1.52955 1.55114 1.574 1.594 1.61286 1.63077 1.64944 1.66803 1.6872 1.70521 1.72273 1.73886 1.75506 1.77048 1.78641 1.80172 1.81659 1.83044 1.84256 1.85246 1.85986 1.86321 1.86371 1.85938 1.84656 1.82369 1.79067 1.74674 1.69926 1.65604 1.63269 1.635 1.64209 1.65222 1.6677 1.68203 1.69427 1.70541 1.71561 1.72489 1.73327 1.74149 1.74946 1.75783 1.76591 1.77475 1.78288 1.79201 1.80004 1.80937 1.81721 1.82665 1.83427 1.84369 1.85101 1.8602 1.86699 1.87505 1.87903 1.21475 1.2501 1.28663 1.32559 1.36584 1.40769 1.44949 1.49194 1.53287 1.57363 1.61421 1.65261 1.69053 1.72672 1.76171 1.79513 1.82746 1.85769 1.88708 1.91421 1.93992 1.96428 1.98574 2.00699 2.02424 2.04107 2.0537 2.06284 2.06369 2.06097 2.05115 2.02855 1.97559 1.87133 1.70094 1.55654 1.49856 1.49202 1.50387 1.51815 1.53397 1.5551 1.57758 1.59879 1.61733 1.63528 1.65276 1.67151 1.69035 1.7095 1.72747 1.74501 1.76157 1.77814 1.79417 1.81075 1.82663 1.84273 1.8578 1.87213 1.88522 1.89666 1.90633 1.91374 1.91726 1.91797 1.9145 1.90278 1.88055 1.84784 1.80289 1.75238 1.7039 1.67835 1.6802 1.68732 1.69709 1.71205 1.72628 1.73835 1.74955 1.75976 1.76943 1.77754 1.78612 1.79365 1.80204 1.80936 1.81802 1.82536 1.83418 1.84147 1.85049 1.85774 1.86683 1.87392 1.88288 1.88953 1.89745 1.90129 1.2305 1.26381 1.29851 1.3336 1.37109 1.40811 1.44701 1.48574 1.52537 1.56327 1.60092 1.63896 1.67468 1.71015 1.74485 1.77692 1.80974 1.83941 1.86891 1.89698 1.9226 1.94866 1.97076 1.99361 2.0127 2.03085 2.04602 2.0536 2.0523 2.04635 2.02838 1.98264 1.8898 1.72335 1.57694 1.50972 1.49849 1.50989 1.52458 1.54121 1.56178 1.58497 1.60608 1.62557 1.64295 1.66051 1.67802 1.69665 1.71501 1.73371 1.75142 1.76908 1.78563 1.80215 1.81821 1.83457 1.85054 1.8668 1.88216 1.89727 1.91132 1.9247 1.93713 1.94831 1.95808 1.96569 1.96942 1.97031 1.96744 1.95669 1.93545 1.90298 1.85761 1.80475 1.7515 1.72425 1.7251 1.73184 1.74137 1.75548 1.76947 1.78128 1.79267 1.80269 1.81263 1.82073 1.82944 1.83661 1.84475 1.85163 1.85995 1.86679 1.87521 1.88211 1.8908 1.89769 1.90644 1.91289 1.92086 1.92444 1.24478 1.2767 1.30885 1.34183 1.37571 1.41197 1.4472 1.48359 1.51985 1.55696 1.5924 1.62737 1.66358 1.69592 1.73051 1.76208 1.79298 1.82417 1.85165 1.88102 1.90639 1.93241 1.95643 1.97825 2.00038 2.01756 2.03282 2.03521 2.03113 2.01616 1.98073 1.89163 1.74253 1.59078 1.51594 1.50129 1.51271 1.52943 1.54746 1.57024 1.59386 1.61623 1.63587 1.65432 1.67132 1.68865 1.7057 1.72361 1.74132 1.75945 1.7768 1.79394 1.81003 1.82627 1.84199 1.85818 1.87414 1.89037 1.90588 1.92133 1.93576 1.94995 1.96334 1.97635 1.98865 1.99991 2.00996 2.01764 2.02168 2.02257 2.02018 2.01023 1.98992 1.95796 1.91222 1.85737 1.80017 1.77148 1.77057 1.7773 1.7864 1.79948 1.8129 1.82431 1.83556 1.84534 1.85517 1.86318 1.8717 1.87853 1.8863 1.89282 1.90073 1.90717 1.91521 1.92173 1.93008 1.93639 1.94428 1.9478 1.26334 1.2918 1.321 1.35168 1.38296 1.41577 1.4501 1.48401 1.51808 1.55277 1.58727 1.62054 1.65381 1.68706 1.71798 1.75026 1.77979 1.80938 1.83834 1.86475 1.89253 1.91658 1.94182 1.96405 1.98502 2.00373 2.01051 2.00804 1.99749 1.9668 1.89402 1.74522 1.59193 1.51216 1.49701 1.51045 1.52914 1.55012 1.57516 1.60001 1.62306 1.64483 1.66439 1.68298 1.69998 1.71695 1.73348 1.75087 1.76812 1.78587 1.80274 1.8195 1.83533 1.85134 1.86683 1.88297 1.89868 1.91471 1.93011 1.94553 1.9601 1.9747 1.98857 2.00235 2.01557 2.02838 2.04042 2.05136 2.06108 2.06834 2.07237 2.07324 2.0713 2.06221 2.04293 2.012 1.96603 1.90951 1.84938 1.81905 1.81616 1.82282 1.83142 1.84336 1.85602 1.86712 1.87814 1.88752 1.89706 1.9049 1.91317 1.91961 1.92705 1.93318 1.94064 1.94667 1.95423 1.96009 1.9674 1.97072 1.28251 1.30446 1.33325 1.36211 1.39127 1.42157 1.45317 1.48611 1.51825 1.55084 1.58397 1.61601 1.64829 1.67918 1.71052 1.73999 1.76991 1.79823 1.82583 1.85336 1.87824 1.90462 1.92721 1.9506 1.97005 1.98221 1.98192 1.97292 1.94656 1.88408 1.74529 1.58768 1.50086 1.48612 1.50051 1.52167 1.54564 1.57361 1.59931 1.62363 1.6467 1.66928 1.69012 1.70964 1.72716 1.74437 1.7612 1.77887 1.79628 1.81383 1.83041 1.84681 1.8624 1.87815 1.89355 1.90929 1.92463 1.94031 1.95547 1.97071 1.98532 1.99988 2.01367 2.02739 2.04051 2.05347 2.06593 2.07802 2.08932 2.09976 2.10905 2.11607 2.12048 2.12146 2.12003 2.11196 2.0938 2.06408 2.01762 1.95976 1.89752 1.86545 1.8604 1.86688 1.87492 1.88551 1.89801 1.90874 1.91955 1.92858 1.93804 1.94571 1.95377 1.95988 1.96709 1.97289 1.97992 1.98529 1.99183 1.99457 1.30668 1.32274 1.34774 1.37505 1.40233 1.42981 1.45867 1.48911 1.52002 1.55095 1.58187 1.61302 1.64344 1.67416 1.70333 1.73304 1.76105 1.78925 1.81634 1.84241 1.86856 1.89213 1.91648 1.93638 1.95211 1.95369 1.94573 1.92202 1.86847 1.73898 1.5791 1.48416 1.46776 1.48273 1.50576 1.53394 1.56547 1.594 1.61968 1.64456 1.66812 1.6907 1.71144 1.73133 1.75033 1.76955 1.78822 1.80691 1.82465 1.84209 1.8585 1.8748 1.89031 1.90593 1.92087 1.93604 1.95084 1.96599 1.98075 1.99571 2.01002 2.02426 2.03772 2.05119 2.06391 2.07678 2.08907 2.10137 2.11321 2.12475 2.13566 2.1458 2.15495 2.16199 2.16691 2.16801 2.167 2.1599 2.14282 2.11395 2.06749 2.00809 1.94436 1.91053 1.90315 1.9093 1.91648 1.92574 1.93845 1.94854 1.95908 1.96783 1.97726 1.98471 1.99261 1.99857 2.00572 2.01097 2.01723 2.01973 1.33326 1.34019 1.35963 1.38686 1.41387 1.44066 1.46723 1.49497 1.52367 1.55283 1.58254 1.61149 1.64098 1.66968 1.69863 1.7263 1.75425 1.78104 1.80753 1.83357 1.85812 1.88262 1.90381 1.92155 1.92478 1.91781 1.89536 1.84854 1.72603 1.56541 1.46248 1.44433 1.46025 1.48522 1.51611 1.55108 1.58179 1.60988 1.63627 1.66228 1.68655 1.70934 1.73013 1.75051 1.77058 1.79108 1.811 1.83066 1.84914 1.86732 1.88451 1.90133 1.91702 1.93238 1.94696 1.96184 1.97636 1.99139 2.00593 2.02075 2.03473 2.04879 2.06193 2.07514 2.08758 2.10023 2.11231 2.12458 2.13646 2.14824 2.15973 2.17082 2.1814 2.19134 2.20035 2.20742 2.21284 2.21402 2.21322 2.20698 2.19112 2.16254 2.11638 2.05573 1.99093 1.95485 1.94562 1.95089 1.95708 1.96576 1.97823 1.98728 1.99753 2.00592 2.01549 2.0223 2.03014 2.03559 2.04214 2.0447 1.37181 1.36703 1.37777 1.39833 1.42491 1.45091 1.47621 1.50249 1.52907 1.5565 1.58409 1.61239 1.63959 1.66768 1.69466 1.72228 1.7485 1.77506 1.80057 1.82556 1.84987 1.87182 1.89075 1.89603 1.889 1.86981 1.82397 1.71219 1.55081 1.4396 1.41908 1.43478 1.46014 1.49345 1.53055 1.56384 1.59384 1.6231 1.65118 1.67814 1.70268 1.72579 1.74736 1.76859 1.78914 1.80989 1.8304 1.85102 1.87095 1.89047 1.90861 1.92602 1.94214 1.95795 1.97296 1.98809 2.00265 2.01748 2.03169 2.04611 2.05977 2.07356 2.08651 2.09957 2.11191 2.12436 2.13628 2.1483 2.15997 2.17163 2.18309 2.19437 2.20538 2.21614 2.22629 2.23599 2.24467 2.25165 2.25718 2.25834 2.25755 2.25206 2.23721 2.20937 2.16428 2.10257 2.03754 1.99865 1.98807 1.99168 1.99742 2.00542 2.01742 2.02544 2.03538 2.04322 2.05259 2.05862 2.06595 2.06855 1.40568 1.39352 1.39908 1.415 1.43813 1.46294 1.48676 1.51102 1.53574 1.56117 1.58731 1.61338 1.64026 1.66607 1.69261 1.71825 1.74443 1.76951 1.79466 1.81863 1.84114 1.86047 1.86718 1.86074 1.84244 1.79742 1.69733 1.53043 1.41258 1.39101 1.40674 1.4329 1.46796 1.50738 1.54229 1.57404 1.60423 1.63394 1.66225 1.68936 1.71469 1.73916 1.76234 1.78503 1.80658 1.82785 1.84855 1.86962 1.89034 1.91078 1.93002 1.9484 1.96548 1.98197 1.99751 2.01279 2.02745 2.04212 2.05632 2.07061 2.08433 2.09801 2.11102 2.1239 2.13612 2.14825 2.15988 2.17154 2.18285 2.19431 2.20547 2.21677 2.22775 2.23868 2.24926 2.25957 2.26941 2.27877 2.28723 2.29418 2.29985 2.30108 2.3004 2.2956 2.28188 2.255 2.21066 2.14917 2.08352 2.0414 2.03031 2.03167 2.03703 2.04435 2.0553 2.06273 2.07241 2.07944 2.08805 2.09082 1.47945 1.42855 1.42298 1.43158 1.44946 1.47464 1.49848 1.5215 1.5445 1.56748 1.59161 1.61641 1.64103 1.66666 1.69113 1.71634 1.74066 1.76524 1.78878 1.81118 1.83049 1.83835 1.83217 1.81429 1.77015 1.67765 1.50328 1.38205 1.36032 1.37694 1.40418 1.44108 1.48238 1.51894 1.55162 1.58287 1.61325 1.6431 1.67164 1.69925 1.72542 1.75074 1.77478 1.79812 1.82052 1.84277 1.86434 1.88581 1.90659 1.9273 1.94714 1.96648 1.98452 2.00191 2.01823 2.03436 2.04977 2.06516 2.07986 2.09449 2.10838 2.12214 2.13516 2.14806 2.16025 2.17238 2.18386 2.19537 2.20642 2.21752 2.22837 2.23925 2.24996 2.26064 2.27115 2.28149 2.29161 2.30152 2.31096 2.32014 2.32838 2.33544 2.34121 2.34257 2.34214 2.33787 2.3252 2.29974 2.25511 2.19511 2.13021 2.08371 2.07167 2.07022 2.07576 2.08202 2.09116 2.09813 2.10707 2.11065 1.62402 1.47704 1.45193 1.45178 1.46386 1.48311 1.50745 1.53066 1.55313 1.57548 1.59751 1.62051 1.64387 1.66759 1.69163 1.71541 1.73886 1.76202 1.78352 1.8028 1.81066 1.80418 1.78588 1.74219 1.64736 1.47768 1.35355 1.33152 1.34781 1.37491 1.41254 1.45573 1.49398 1.52816 1.56004 1.59116 1.62132 1.65093 1.67949 1.7075 1.73446 1.76066 1.7856 1.8098 1.83306 1.85598 1.87826 1.90032 1.92159 1.94248 1.96261 1.98246 2.00142 2.01988 2.03728 2.0543 2.0704 2.0864 2.10151 2.11671 2.13099 2.14544 2.15883 2.17237 2.18479 2.19736 2.20892 2.22063 2.23156 2.2426 2.25309 2.26369 2.27388 2.28425 2.29422 2.30442 2.31416 2.32411 2.33361 2.34313 2.35223 2.36115 2.36922 2.37637 2.38222 2.38376 2.38363 2.38002 2.36765 2.34379 2.29846 2.24235 2.17624 2.12587 2.11246 2.10793 2.11324 2.11767 2.12436 2.12851 1.85734 1.56822 1.48783 1.47538 1.47996 1.49456 1.5159 1.53935 1.56166 1.58327 1.60459 1.62587 1.64767 1.66984 1.69262 1.71502 1.73765 1.75854 1.77742 1.78501 1.77832 1.75941 1.71532 1.61773 1.45015 1.3232 1.30112 1.31786 1.3454 1.38404 1.42847 1.46851 1.50403 1.53691 1.5682 1.59879 1.6286 1.65827 1.6873 1.71604 1.74358 1.77017 1.7954 1.81985 1.84346 1.86687 1.88981 1.9126 1.93473 1.95634 1.97697 1.99707 2.01655 2.0358 2.0543 2.07233 2.0895 2.1063 2.12241 2.13813 2.15317 2.16779 2.1818 2.19541 2.2085 2.2212 2.23337 2.24513 2.25633 2.26722 2.27756 2.28789 2.29767 2.30776 2.31731 2.32726 2.33672 2.34642 2.35583 2.36516 2.37443 2.38343 2.39228 2.40089 2.40876 2.41589 2.42158 2.42341 2.42349 2.42 2.40916 2.38555 2.33999 2.28977 2.21961 2.16879 2.15113 2.14544 2.14594 2.14783 2.28239 1.76559 1.55401 1.50963 1.50301 1.50974 1.52514 1.5474 1.56893 1.59021 1.61108 1.63184 1.65272 1.6736 1.69469 1.71591 1.73603 1.75415 1.76133 1.75414 1.73449 1.68942 1.58946 1.42262 1.29244 1.27041 1.28808 1.31665 1.35653 1.40145 1.44292 1.47996 1.51364 1.54541 1.576 1.60631 1.63627 1.66636 1.6958 1.72467 1.7521 1.77864 1.80391 1.82876 1.85296 1.87708 1.90062 1.92391 1.94644 1.96855 1.98987 2.01071 2.03073 2.05041 2.06955 2.08842 2.1064 2.12402 2.14071 2.15723 2.17279 2.18827 2.20276 2.21724 2.23067 2.2441 2.25641 2.26872 2.27989 2.29114 2.3013 2.31174 2.32123 2.3312 2.3404 2.35014 2.3593 2.36878 2.37794 2.38706 2.39613 2.40498 2.41381 2.42251 2.43098 2.43939 2.44698 2.45398 2.45955 2.46139 2.46153 2.45828 2.44823 2.4246 2.38511 2.32993 2.25816 2.21407 2.18341 2.17868 2.56798 2.08012 1.69132 1.55147 1.52858 1.52809 1.53838 1.554 1.57624 1.59686 1.61725 1.63702 1.65725 1.67717 1.69741 1.71647 1.73348 1.7397 1.73171 1.71109 1.66449 1.56166 1.39423 1.26073 1.23947 1.25881 1.28892 1.3307 1.37557 1.41752 1.45546 1.49015 1.52254 1.55374 1.58422 1.61463 1.64478 1.67481 1.70403 1.73257 1.75996 1.78665 1.81241 1.83777 1.86245 1.88686 1.91069 1.93431 1.95735 1.98014 2.00217 2.02376 2.04445 2.0646 2.08398 2.10322 2.12189 2.14022 2.15769 2.17478 2.19104 2.20692 2.22197 2.2367 2.25066 2.26435 2.27735 2.29006 2.30205 2.31374 2.32462 2.33533 2.34519 2.35516 2.36431 2.3738 2.3826 2.3917 2.40046 2.40915 2.41794 2.42632 2.43507 2.44329 2.45192 2.4601 2.46834 2.47641 2.48367 2.49046 2.49579 2.49747 2.49756 2.49466 2.48461 2.46157 2.42473 2.36383 2.29731 2.262 2.76815 2.44014 1.93171 1.6438 1.56048 1.5485 1.55111 1.56404 1.58146 1.60418 1.62417 1.64402 1.66254 1.68153 1.69913 1.71532 1.72033 1.71128 1.68943 1.64068 1.53432 1.36457 1.22811 1.20833 1.22983 1.26211 1.30608 1.35117 1.39301 1.43143 1.46685 1.50017 1.53195 1.56299 1.59351 1.62395 1.65394 1.68371 1.71273 1.74126 1.76887 1.79585 1.82199 1.84759 1.87254 1.89716 1.92133 1.94519 1.96857 1.99146 2.01371 2.03542 2.05646 2.07708 2.09704 2.11665 2.13571 2.1546 2.17266 2.19026 2.20693 2.22329 2.23872 2.25399 2.26838 2.28271 2.29614 2.30951 2.32188 2.33418 2.34538 2.35658 2.36669 2.37695 2.38622 2.39582 2.4046 2.41373 2.42235 2.43101 2.43963 2.4478 2.45644 2.46417 2.47282 2.48037 2.4888 2.49646 2.50437 2.51194 2.51888 2.52512 2.53008 2.53146 2.5313 2.52798 2.51862 2.49238 2.45235 2.42399 2.87446 2.70656 2.34664 1.84797 1.63286 1.58066 1.5725 1.57609 1.58969 1.60878 1.63112 1.65055 1.66992 1.68601 1.70102 1.70363 1.6933 1.66975 1.61794 1.507 1.33211 1.1953 1.17777 1.20233 1.23678 1.28292 1.32839 1.37018 1.40859 1.44453 1.47857 1.51125 1.54283 1.57381 1.6042 1.63442 1.66414 1.69369 1.72256 1.75106 1.77868 1.80579 1.83206 1.8579 1.88312 1.90797 1.9323 1.95618 1.97947 2.00227 2.0245 2.04631 2.06763 2.08855 2.109 2.12901 2.14844 2.16752 2.18604 2.20413 2.22133 2.23813 2.25409 2.26978 2.28465 2.29938 2.3133 2.32711 2.34009 2.35296 2.36489 2.37669 2.38753 2.3982 2.40804 2.41773 2.42681 2.43573 2.44436 2.45269 2.46108 2.46893 2.47727 2.48462 2.49307 2.49999 2.50848 2.51523 2.52346 2.5303 2.53781 2.54458 2.55106 2.55636 2.56083 2.56171 2.56118 2.55745 2.54423 2.53802 2.93165 2.84412 2.64817 2.21734 1.80535 1.63252 1.59942 1.59495 1.60061 1.61486 1.63497 1.6556 1.67324 1.68858 1.69031 1.67857 1.65291 1.59684 1.47982 1.29742 1.16294 1.1492 1.17598 1.2129 1.26119 1.30696 1.34872 1.38697 1.42296 1.45762 1.49118 1.52375 1.55532 1.58616 1.61634 1.6462 1.67555 1.7047 1.73327 1.76152 1.78911 1.81627 1.84275 1.86875 1.89409 1.9189 1.94312 1.96682 1.99002 2.01276 2.03505 2.0569 2.07836 2.09939 2.12003 2.14027 2.16 2.17927 2.19794 2.2163 2.23395 2.25112 2.26755 2.28366 2.299 2.31414 2.32852 2.34273 2.35621 2.36952 2.38205 2.39435 2.4059 2.41704 2.42758 2.43758 2.44715 2.45618 2.46502 2.47334 2.48168 2.48954 2.4976 2.50499 2.51295 2.51982 2.52775 2.53412 2.54208 2.54805 2.5559 2.56168 2.56893 2.57452 2.58063 2.58492 2.58854 2.58915 2.58807 2.58972 2.9626 2.91619 2.80736 2.52902 2.06596 1.74395 1.63526 1.61603 1.61533 1.6243 1.63862 1.65742 1.67368 1.67723 1.66492 1.63693 1.5755 1.45209 1.26243 1.13232 1.12142 1.14982 1.18991 1.24041 1.28661 1.32835 1.36663 1.40283 1.43776 1.47191 1.50517 1.53754 1.56886 1.59943 1.62919 1.65861 1.68749 1.7162 1.74441 1.7724 1.7998 1.82683 1.85321 1.87909 1.90437 1.92908 1.95327 1.97691 2.00007 2.02272 2.04494 2.06673 2.08817 2.1092 2.12993 2.15022 2.17013 2.18957 2.20846 2.22691 2.24486 2.26236 2.27924 2.29576 2.31161 2.3272 2.3421 2.35673 2.37072 2.38443 2.39752 2.41026 2.42249 2.43414 2.44543 2.45596 2.46619 2.47561 2.48481 2.49329 2.5016 2.50941 2.51713 2.52436 2.53181 2.53853 2.54584 2.55208 2.55933 2.56513 2.57227 2.5777 2.58461 2.58966 2.59611 2.60054 2.60603 2.60929 2.61197 2.61374 2.98233 2.95455 2.8981 2.76406 2.45131 1.97818 1.7242 1.64914 1.63498 1.63553 1.64388 1.65681 1.66315 1.65061 1.62023 1.55034 1.41926 1.22455 1.10231 1.09525 1.1241 1.16691 1.21959 1.26646 1.30824 1.34662 1.38307 1.41839 1.45288 1.48668 1.51962 1.55168 1.58271 1.61293 1.6423 1.67124 1.69961 1.7278 1.75552 1.78307 1.81007 1.83678 1.86287 1.88856 1.91366 1.93826 1.96233 1.98589 2.00893 2.03155 2.05372 2.07555 2.09701 2.11812 2.13886 2.15918 2.17907 2.19852 2.21746 2.23599 2.25405 2.2718 2.28908 2.30604 2.3224 2.33845 2.35384 2.36887 2.3833 2.39735 2.41091 2.42402 2.4368 2.44886 2.46082 2.47175 2.48266 2.49242 2.50215 2.51085 2.51945 2.52733 2.53506 2.54226 2.54949 2.55609 2.56301 2.56904 2.57572 2.58119 2.58763 2.59264 2.59878 2.60342 2.6092 2.61346 2.6187 2.62234 2.62641 2.62838 2.98972 2.97868 2.94633 2.88167 2.71859 2.39159 1.92973 1.72237 1.66841 1.65448 1.65257 1.65091 1.63872 1.60531 1.52377 1.37826 1.18234 1.07238 1.07026 1.09887 1.14277 1.197 1.24493 1.28728 1.32568 1.36209 1.39757 1.43251 1.46682 1.50035 1.53294 1.56458 1.59521 1.62505 1.65408 1.68263 1.71059 1.73831 1.76554 1.79259 1.81912 1.8454 1.87112 1.89641 1.92115 1.94538 1.9692 1.99257 2.0156 2.03829 2.06061 2.08259 2.10419 2.12538 2.14616 2.16648 2.18637 2.20582 2.22482 2.24346 2.26168 2.2796 2.29713 2.31433 2.33099 2.34735 2.3631 2.37851 2.39338 2.40788 2.42192 2.4355 2.44875 2.46129 2.47372 2.48511 2.49653 2.50672 2.517 2.52603 2.53513 2.54317 2.55125 2.55846 2.56582 2.5723 2.57912 2.58493 2.59128 2.59642 2.6023 2.60687 2.61225 2.61637 2.62129 2.62501 2.62946 2.63274 2.63646 2.63844 2.99546 2.98812 2.97493 2.93872 2.86186 2.68172 2.31356 1.90136 1.72092 1.67918 1.66257 1.64188 1.59823 1.50121 1.33014 1.13563 1.04249 1.04714 1.07523 1.12018 1.17497 1.22357 1.26649 1.30511 1.34124 1.37628 1.4109 1.44517 1.47886 1.51181 1.54388 1.57513 1.60546 1.63511 1.66399 1.69239 1.72011 1.74749 1.77429 1.80085 1.82683 1.85254 1.87768 1.90244 1.92676 1.95066 1.97423 1.99745 2.02037 2.04306 2.06546 2.08761 2.10942 2.13082 2.15181 2.17228 2.19232 2.2119 2.23105 2.24984 2.26823 2.28632 2.30402 2.3214 2.33824 2.35483 2.37084 2.38658 2.40182 2.41676 2.4312 2.44526 2.45887 2.47189 2.48464 2.49647 2.50823 2.51883 2.52961 2.53896 2.54871 2.55693 2.56558 2.57288 2.58053 2.58702 2.59386 2.59959 2.60572 2.61069 2.61612 2.62035 2.6251 2.62866 2.6328 2.6358 2.63943 2.64196 2.64501 2.64644 2.99729 2.99457 2.98572 2.97011 2.92566 2.83595 2.61196 2.20987 1.85366 1.71496 1.66835 1.61221 1.49454 1.28133 1.08192 1.00654 1.01741 1.04688 1.0948 1.14965 1.19868 1.24223 1.28175 1.3188 1.35433 1.38896 1.42289 1.45625 1.48903 1.52127 1.55282 1.58372 1.61388 1.64339 1.6721 1.70026 1.72774 1.75481 1.7813 1.80749 1.83317 1.85858 1.88356 1.90821 1.93252 1.95641 1.97997 2.00315 2.02601 2.04854 2.0707 2.09254 2.11399 2.13507 2.15578 2.17614 2.19613 2.21581 2.23509 2.25402 2.27257 2.29068 2.30844 2.32583 2.34285 2.35958 2.37591 2.39196 2.40765 2.423 2.43793 2.45248 2.46654 2.48012 2.49324 2.5057 2.51782 2.52905 2.5401 2.55 2.56008 2.56872 2.57781 2.58537 2.59343 2.6 2.60703 2.61268 2.6187 2.62343 2.6285 2.63233 2.63654 2.63955 2.64304 2.6454 2.64831 2.65018 2.65252 2.65351 2.99857 2.99722 2.99236 2.98489 2.96045 2.91472 2.80148 2.53321 2.0958 1.79763 1.66378 1.52376 1.25565 1.02298 0.95243 0.968943 1.00548 1.05989 1.1161 1.16522 1.20906 1.24959 1.28797 1.32471 1.36008 1.39439 1.42791 1.46087 1.49328 1.52515 1.55635 1.5869 1.61666 1.64578 1.67416 1.70203 1.72925 1.75608 1.78233 1.80832 1.83382 1.85911 1.88403 1.90866 1.93299 1.95692 1.98052 2.00369 2.02647 2.04886 2.07085 2.09251 2.1138 2.13476 2.1554 2.17575 2.19574 2.21548 2.2348 2.25379 2.2724 2.29056 2.30844 2.32591 2.34308 2.35998 2.37656 2.39289 2.40891 2.42461 2.43997 2.45495 2.46952 2.48358 2.49721 2.51019 2.52281 2.53462 2.54622 2.55682 2.56736 2.5767 2.58614 2.59423 2.60256 2.60943 2.61661 2.62233 2.62834 2.63298 2.63782 2.64154 2.64526 2.64821 2.65102 2.65336 2.65551 2.65737 2.65898 2.66034 2.99934 2.9982 2.99645 2.99046 2.98069 2.95042 2.89303 2.74686 2.44307 1.96947 1.63617 1.2804 0.953683 0.865725 0.890564 0.933226 0.996358 1.06009 1.11379 1.16031 1.20326 1.24405 1.28282 1.31969 1.35494 1.38897 1.42214 1.45471 1.48667 1.51802 1.54865 1.57862 1.60786 1.63655 1.66462 1.69225 1.71932 1.74604 1.77225 1.79822 1.82377 1.84916 1.87424 1.89909 1.92368 1.94789 1.97176 1.99517 2.01814 2.04066 2.06274 2.08444 2.10581 2.12689 2.14769 2.16826 2.18844 2.20843 2.22799 2.24735 2.2664 2.28508 2.30351 2.32152 2.33926 2.35669 2.37379 2.39062 2.40711 2.42329 2.43911 2.4545 2.46956 2.48393 2.49807 2.51132 2.5244 2.5365 2.54848 2.55936 2.57022 2.57988 2.58956 2.59798 2.60645 2.6136 2.62084 2.62678 2.63272 2.63754 2.64217 2.64596 2.64937 2.65227 2.65466 2.65684 2.65841 2.66003 2.66125 2.66278 2.99954 2.99871 2.99751 2.99308 2.98644 2.96353 2.92422 2.81158 2.58677 2.10735 1.51701 0.943798 0.675391 0.711125 0.762012 0.829384 0.892918 0.95087 1.00597 1.05906 1.10965 1.15743 1.20262 1.24553 1.2865 1.32591 1.36403 1.40105 1.43702 1.47194 1.50576 1.53853 1.57025 1.60109 1.63107 1.66042 1.68909 1.71732 1.74498 1.77231 1.79914 1.82568 1.8518 1.8776 1.90306 1.92811 1.9528 1.97702 2.00083 2.02418 2.04714 2.06966 2.09188 2.11373 2.13531 2.15664 2.17762 2.19844 2.21883 2.23896 2.25872 2.27804 2.29703 2.31555 2.33373 2.35153 2.36903 2.38623 2.40315 2.4198 2.43611 2.45203 2.46762 2.48255 2.49723 2.51104 2.52464 2.53725 2.54972 2.56106 2.57233 2.58234 2.59233 2.60095 2.60959 2.61683 2.62406 2.63005 2.63583 2.64074 2.6451 2.64909 2.65216 2.65534 2.65737 2.65978 2.66107 2.66303 2.66407 2.66601 1.10254 1.2928 1.34716 1.30762 1.23138 1.14435 1.06491 1.02548 1.01965 1.02237 1.0245 1.02489 1.0235 1.02199 1.02071 1.02151 1.0248 1.02908 1.03409 1.0398 1.04593 1.05217 1.05859 1.06522 1.07196 1.07868 1.08522 1.09149 1.09742 1.10298 1.10815 1.11296 1.1175 1.12178 1.12564 1.1288 1.13095 1.13157 1.1303 1.12748 1.11886 1.0981 1.04861 0.934899 0.683036 0.282562 0.113926 0.147146 0.103668 0.0662187 0.0436051 0.0803164 0.13075 0.179492 0.225183 0.266779 0.304383 0.339926 0.375326 0.410256 0.443591 0.475373 0.505823 0.535079 0.563266 0.590304 0.616249 0.641018 0.664746 0.687455 0.70936 0.730525 0.751164 0.771296 0.791076 0.810462 0.829664 0.8485 0.867345 0.885748 0.90432 0.922251 0.940649 0.95797 0.976251 0.993005 1.01096 1.02753 1.04478 1.0614 1.07759 1.09423 1.10928 1.12571 1.13962 1.15568 1.1682 1.18319 1.19292 1.20316 1.14211 1.25781 1.32289 1.36219 1.40228 1.43349 1.4435 1.43946 1.42436 1.40286 1.38573 1.38097 1.38184 1.38394 1.38616 1.38744 1.38873 1.39013 1.39195 1.39453 1.39753 1.40116 1.40548 1.41016 1.4148 1.41938 1.42397 1.42862 1.43331 1.43803 1.44274 1.44736 1.45187 1.45627 1.4604 1.46442 1.46764 1.46951 1.46993 1.46879 1.46285 1.44605 1.40539 1.31043 1.10222 0.716473 0.398909 0.296007 0.326869 0.385413 0.438723 0.480732 0.516765 0.552876 0.589004 0.622852 0.653444 0.681567 0.708973 0.735783 0.761979 0.786393 0.810098 0.832197 0.854063 0.874431 0.89467 0.913366 0.93234 0.949819 0.967888 0.984257 1.00127 1.01664 1.03241 1.04715 1.06165 1.07618 1.08949 1.10403 1.11653 1.13101 1.14334 1.15801 1.17023 1.18526 1.19735 1.21262 1.22452 1.23993 1.25157 1.26696 1.27831 1.29367 1.30472 1.31998 1.33041 1.34508 1.35324 1.36451 1.13956 1.24698 1.34276 1.43543 1.52047 1.58717 1.6196 1.62225 1.61721 1.6032 1.58398 1.56941 1.56115 1.55918 1.55987 1.56098 1.56254 1.56415 1.56559 1.56717 1.569 1.57119 1.57379 1.57673 1.57992 1.58331 1.58686 1.59059 1.59442 1.59838 1.60247 1.60662 1.61092 1.61507 1.61946 1.62337 1.62732 1.62946 1.6304 1.63009 1.62655 1.61436 1.58439 1.51157 1.35191 1.03352 0.695302 0.569771 0.600826 0.671569 0.743876 0.796885 0.836668 0.866057 0.888659 0.908952 0.92796 0.945632 0.962273 0.978543 0.996104 1.01255 1.02976 1.04559 1.06133 1.07627 1.09069 1.105 1.1182 1.13199 1.14426 1.15754 1.16936 1.18227 1.19374 1.20642 1.21763 1.23022 1.24127 1.25364 1.2644 1.2764 1.28664 1.29813 1.30786 1.31894 1.32828 1.3391 1.34815 1.35887 1.36768 1.37837 1.38694 1.39771 1.40612 1.41718 1.42526 1.43636 1.44284 1.45153 1.14617 1.25558 1.35493 1.44667 1.52765 1.5956 1.64817 1.68547 1.70579 1.71036 1.70862 1.70163 1.69083 1.68129 1.6759 1.67489 1.67578 1.67727 1.67945 1.68176 1.68371 1.68553 1.68741 1.68953 1.69198 1.69474 1.69778 1.70104 1.7045 1.7081 1.71186 1.71563 1.71972 1.72356 1.72787 1.73151 1.73519 1.737 1.73776 1.73733 1.73348 1.72182 1.69407 1.6319 1.51057 1.29608 1.02081 0.855964 0.876244 0.924138 0.97786 1.02359 1.05543 1.07516 1.08678 1.09655 1.10389 1.11033 1.1169 1.12411 1.13176 1.14134 1.15253 1.1647 1.17616 1.18827 1.19903 1.21058 1.22118 1.23266 1.24329 1.25487 1.26546 1.277 1.28758 1.29925 1.30987 1.32143 1.33177 1.34299 1.35295 1.36381 1.37337 1.38383 1.39296 1.40303 1.41177 1.42147 1.4298 1.4391 1.44701 1.4559 1.4634 1.4719 1.47892 1.48703 1.49365 1.50153 1.50695 1.51153 1.14635 1.25382 1.35004 1.43806 1.51808 1.58946 1.65256 1.70541 1.74655 1.77345 1.78413 1.78424 1.78211 1.776 1.76754 1.76095 1.75639 1.75516 1.75565 1.75677 1.75845 1.76065 1.76295 1.7652 1.76743 1.76983 1.77238 1.77524 1.77823 1.78161 1.78499 1.78867 1.79245 1.79607 1.80003 1.80325 1.80575 1.80681 1.80696 1.80486 1.79743 1.77831 1.73594 1.6473 1.50898 1.36596 1.25246 1.1286 1.06085 1.05253 1.07481 1.10158 1.13199 1.15541 1.1729 1.18539 1.19338 1.19961 1.20469 1.20936 1.21403 1.21948 1.22666 1.23652 1.24765 1.25879 1.26949 1.28026 1.29074 1.30147 1.31199 1.32287 1.33355 1.34465 1.35544 1.36648 1.37708 1.38785 1.39811 1.4085 1.41839 1.42838 1.43784 1.44739 1.45642 1.46557 1.47421 1.48296 1.49117 1.49942 1.50708 1.51481 1.52197 1.52926 1.53587 1.54237 1.54819 1.55337 1.55803 1.55996 1.14092 1.24309 1.33721 1.42296 1.50156 1.57312 1.63702 1.6934 1.741 1.78006 1.80993 1.82907 1.8372 1.83783 1.83654 1.83241 1.82637 1.82119 1.81793 1.81736 1.81825 1.81955 1.82167 1.82437 1.8272 1.8298 1.83235 1.8349 1.83754 1.84057 1.8436 1.84742 1.85087 1.85518 1.85847 1.86147 1.86282 1.86306 1.86157 1.85487 1.83841 1.79963 1.71993 1.5859 1.46088 1.40325 1.37051 1.31918 1.25773 1.20632 1.17779 1.17337 1.18686 1.20194 1.22047 1.23873 1.25135 1.26027 1.26756 1.27351 1.27821 1.28233 1.2872 1.2937 1.30226 1.31186 1.32198 1.33235 1.34279 1.35327 1.36384 1.37457 1.38526 1.39598 1.40668 1.41733 1.42784 1.43826 1.44856 1.45872 1.46869 1.47852 1.48818 1.4977 1.50702 1.51614 1.52501 1.53368 1.5421 1.5503 1.5582 1.5658 1.57299 1.57981 1.58619 1.59212 1.59785 1.60252 1.60675 1.60619 1.1387 1.23182 1.31986 1.40204 1.47813 1.5487 1.61323 1.67181 1.72434 1.77014 1.80912 1.84017 1.8633 1.87717 1.88245 1.88258 1.88158 1.87847 1.87412 1.87046 1.86831 1.86769 1.8685 1.86956 1.87149 1.87413 1.87725 1.88009 1.88321 1.88596 1.88934 1.89223 1.89589 1.89891 1.90162 1.90309 1.90339 1.9017 1.89594 1.87927 1.84315 1.76502 1.62823 1.50099 1.44174 1.42917 1.42771 1.41798 1.39681 1.36783 1.33148 1.29379 1.26938 1.25961 1.2637 1.27257 1.28355 1.29662 1.30761 1.31618 1.32343 1.32965 1.33508 1.34036 1.34638 1.35367 1.36218 1.37157 1.38154 1.39203 1.40281 1.41367 1.42456 1.43546 1.44634 1.45719 1.46795 1.47859 1.48909 1.49952 1.50985 1.52003 1.53003 1.53986 1.5495 1.55896 1.56818 1.57718 1.5859 1.59437 1.6026 1.61054 1.61806 1.62513 1.63166 1.63769 1.64355 1.64824 1.65275 1.65226 1.13795 1.22274 1.305 1.38256 1.45579 1.52369 1.58752 1.64559 1.69967 1.74739 1.79057 1.82725 1.85854 1.88294 1.90083 1.91141 1.91604 1.91638 1.91576 1.91332 1.9101 1.907 1.90513 1.9049 1.90574 1.90707 1.90925 1.9126 1.91608 1.9201 1.92329 1.92701 1.92972 1.93213 1.93302 1.93309 1.93154 1.92528 1.91008 1.87384 1.79906 1.6591 1.52722 1.46072 1.44865 1.45583 1.46494 1.47188 1.47541 1.47256 1.45959 1.43707 1.40575 1.37056 1.34264 1.32674 1.32217 1.32795 1.33473 1.34432 1.35563 1.36486 1.37249 1.3796 1.38621 1.39224 1.39861 1.40595 1.41462 1.42429 1.43461 1.44528 1.45613 1.46701 1.47786 1.48868 1.49946 1.51017 1.52077 1.53125 1.54162 1.55194 1.56218 1.57233 1.58234 1.5922 1.60191 1.61146 1.62084 1.62999 1.63886 1.64743 1.65566 1.66355 1.67094 1.67764 1.68368 1.68869 1.69352 1.6938 1.13842 1.21524 1.29144 1.36457 1.4342 1.49961 1.56117 1.61851 1.67189 1.72103 1.76586 1.8062 1.84202 1.87267 1.89884 1.91897 1.9335 1.94183 1.94577 1.94619 1.94598 1.94454 1.94253 1.94071 1.94006 1.94065 1.94163 1.94302 1.94567 1.94847 1.95214 1.95487 1.95747 1.95807 1.95808 1.95645 1.95016 1.93511 1.89973 1.82566 1.68561 1.54597 1.47123 1.4575 1.46525 1.47775 1.49146 1.50791 1.52367 1.53305 1.53701 1.53461 1.52271 1.50103 1.47128 1.43604 1.40522 1.38362 1.37318 1.37328 1.37902 1.38689 1.39765 1.40806 1.41707 1.42516 1.43209 1.43833 1.44527 1.45333 1.46237 1.47209 1.4823 1.49291 1.50379 1.51475 1.5256 1.53629 1.54683 1.55724 1.56751 1.57768 1.58783 1.59797 1.60807 1.61811 1.62809 1.63798 1.64776 1.65741 1.66682 1.67609 1.68496 1.6936 1.70161 1.70921 1.71657 1.72237 1.72761 1.72889 1.14147 1.21075 1.28114 1.34971 1.41584 1.47862 1.5382 1.59409 1.64667 1.6956 1.74119 1.78301 1.82131 1.85553 1.88584 1.9116 1.93324 1.95011 1.96228 1.96929 1.97287 1.97348 1.9734 1.97257 1.97074 1.96939 1.96831 1.96886 1.96973 1.97121 1.97318 1.97594 1.97696 1.97696 1.97549 1.96958 1.95552 1.92128 1.84929 1.70974 1.5625 1.48158 1.46514 1.47183 1.48377 1.50012 1.51779 1.53792 1.55628 1.5734 1.58559 1.59315 1.59528 1.59259 1.58091 1.56044 1.53281 1.49814 1.46449 1.4374 1.42159 1.41702 1.42192 1.4289 1.43917 1.4516 1.46264 1.47222 1.48013 1.48727 1.49444 1.50233 1.51114 1.52071 1.53072 1.54108 1.55161 1.56214 1.57255 1.58281 1.59295 1.60297 1.61291 1.62278 1.63265 1.64255 1.65245 1.66235 1.6721 1.6819 1.69142 1.70095 1.71014 1.71904 1.72775 1.73594 1.7438 1.7504 1.75705 1.75906 1.14626 1.20832 1.27263 1.33663 1.39911 1.45889 1.51617 1.57041 1.62182 1.67003 1.71542 1.75762 1.79701 1.83311 1.86621 1.89579 1.92196 1.94422 1.96266 1.97708 1.98725 1.99323 1.99618 1.99685 1.99666 1.99629 1.99504 1.99434 1.99347 1.99386 1.9944 1.99481 1.99463 1.9931 1.98769 1.97313 1.94148 1.87167 1.73454 1.57862 1.48853 1.46887 1.4749 1.48744 1.50421 1.52335 1.54406 1.5647 1.58374 1.6021 1.61815 1.63151 1.64166 1.64758 1.64997 1.64836 1.63873 1.62 1.5935 1.55863 1.52128 1.48926 1.46807 1.45888 1.46282 1.46983 1.48024 1.49473 1.50757 1.51814 1.52707 1.53516 1.54302 1.55119 1.55991 1.56919 1.57891 1.58891 1.59905 1.60914 1.6191 1.62894 1.63867 1.64834 1.65789 1.66752 1.67703 1.6867 1.69621 1.70575 1.71521 1.72451 1.73371 1.74266 1.75159 1.75963 1.76835 1.77492 1.78251 1.78516 1.15496 1.21003 1.26824 1.32698 1.38555 1.44253 1.49736 1.54963 1.5997 1.647 1.69188 1.73394 1.7736 1.81051 1.84493 1.87653 1.90541 1.93114 1.95384 1.97297 1.9889 2.00111 2.00994 2.01511 2.01785 2.01855 2.01852 2.01829 2.01711 2.01576 2.01449 2.01309 2.01021 2.00314 1.98898 1.95668 1.89084 1.75517 1.59405 1.49624 1.47341 1.47828 1.49034 1.50764 1.52658 1.54876 1.56958 1.58926 1.60767 1.62664 1.64393 1.66041 1.67407 1.68592 1.69489 1.70114 1.70364 1.70268 1.69436 1.67647 1.65027 1.61539 1.57554 1.53874 1.51262 1.50005 1.50346 1.51054 1.52136 1.53705 1.55061 1.5622 1.57237 1.5815 1.59005 1.5986 1.60742 1.6165 1.62589 1.63554 1.64527 1.65506 1.66468 1.67439 1.68392 1.69348 1.7029 1.71227 1.72159 1.73089 1.74011 1.74907 1.75827 1.76668 1.77584 1.78353 1.79249 1.79906 1.80693 1.80988 1.1665 1.21529 1.26717 1.32072 1.37449 1.42778 1.48008 1.53051 1.57868 1.62502 1.66905 1.71101 1.75058 1.78801 1.82307 1.85589 1.88642 1.91444 1.94003 1.96285 1.98276 1.99978 2.0135 2.02434 2.03172 2.0365 2.03857 2.03897 2.03863 2.03776 2.03513 2.03078 2.02325 2.00819 1.97586 1.91192 1.77952 1.61331 1.50402 1.47631 1.47986 1.49204 1.50791 1.52751 1.54994 1.57219 1.59149 1.61038 1.62899 1.64771 1.66527 1.68211 1.69722 1.71162 1.72469 1.73649 1.74568 1.75211 1.75453 1.75394 1.74694 1.73052 1.70593 1.67202 1.63022 1.59013 1.55883 1.54245 1.5453 1.55244 1.56328 1.57925 1.59341 1.60538 1.61639 1.62623 1.63516 1.64385 1.65243 1.66122 1.67012 1.67937 1.68872 1.69817 1.70761 1.71716 1.72664 1.73604 1.74545 1.75454 1.76395 1.77265 1.78206 1.79021 1.79952 1.80704 1.81612 1.82275 1.83082 1.83395 1.18222 1.22503 1.27091 1.31913 1.36843 1.41784 1.46623 1.51426 1.56071 1.60526 1.64823 1.68936 1.72864 1.76607 1.80144 1.83495 1.86624 1.89579 1.9228 1.94815 1.97059 1.99115 2.00863 2.0237 2.03579 2.04493 2.05137 2.05419 2.05408 2.05324 2.05023 2.04262 2.02795 1.99657 1.93463 1.80858 1.63824 1.51583 1.48073 1.48181 1.49414 1.50967 1.52755 1.55071 1.57274 1.59297 1.61119 1.6301 1.64837 1.66716 1.68473 1.70195 1.71765 1.73334 1.74803 1.76247 1.77592 1.788 1.79766 1.80467 1.80792 1.80812 1.80282 1.78861 1.76514 1.73161 1.6885 1.64435 1.60738 1.58686 1.58939 1.59653 1.60701 1.62288 1.63731 1.64956 1.66082 1.67097 1.68002 1.68861 1.69688 1.70526 1.71374 1.72251 1.7315 1.74051 1.74976 1.75878 1.76821 1.77694 1.78644 1.79482 1.8044 1.81236 1.82188 1.82932 1.83855 1.84525 1.8535 1.85708 1.19763 1.2359 1.27709 1.32055 1.36554 1.41095 1.4567 1.50106 1.54537 1.58858 1.63 1.67015 1.70871 1.74564 1.78106 1.81471 1.84671 1.87688 1.90527 1.9318 1.95624 1.97908 1.99895 2.0177 2.03261 2.04635 2.0561 2.06288 2.06373 2.06235 2.05688 2.0447 2.01588 1.95886 1.83972 1.67057 1.53456 1.4882 1.48526 1.4981 1.51227 1.52955 1.55114 1.574 1.594 1.61285 1.63077 1.64944 1.66803 1.6872 1.70521 1.72273 1.73886 1.75506 1.77047 1.78641 1.80172 1.81659 1.83044 1.84256 1.85246 1.85986 1.86321 1.86371 1.85938 1.84656 1.82369 1.79067 1.74673 1.69926 1.65604 1.63269 1.635 1.64209 1.65222 1.6677 1.68203 1.69427 1.70541 1.71561 1.72489 1.73327 1.74149 1.74946 1.75783 1.76591 1.77475 1.78288 1.79201 1.80004 1.80937 1.81721 1.82665 1.83427 1.84369 1.85101 1.8602 1.86699 1.87505 1.87903 1.21475 1.2501 1.28663 1.32559 1.36584 1.40769 1.44949 1.49194 1.53287 1.57363 1.61421 1.65261 1.69053 1.72672 1.76171 1.79513 1.82746 1.85769 1.88708 1.91421 1.93992 1.96428 1.98574 2.00699 2.02424 2.04107 2.0537 2.06284 2.06369 2.06097 2.05115 2.02855 1.97559 1.87133 1.70094 1.55654 1.49856 1.49202 1.50387 1.51815 1.53397 1.5551 1.57758 1.59879 1.61733 1.63527 1.65276 1.67151 1.69035 1.7095 1.72747 1.745 1.76157 1.77814 1.79417 1.81075 1.82663 1.84273 1.8578 1.87213 1.88522 1.89666 1.90633 1.91374 1.91726 1.91797 1.9145 1.90278 1.88055 1.84784 1.80289 1.75238 1.7039 1.67835 1.6802 1.68732 1.69709 1.71205 1.72628 1.73835 1.74955 1.75976 1.76943 1.77754 1.78612 1.79365 1.80204 1.80936 1.81802 1.82536 1.83418 1.84147 1.85049 1.85774 1.86683 1.87392 1.88288 1.88953 1.89745 1.90129 1.2305 1.26381 1.29851 1.3336 1.37109 1.40811 1.44701 1.48574 1.52537 1.56327 1.60092 1.63896 1.67468 1.71015 1.74485 1.77692 1.80974 1.83941 1.86891 1.89698 1.9226 1.94866 1.97076 1.99361 2.0127 2.03085 2.04602 2.0536 2.0523 2.04635 2.02838 1.98264 1.8898 1.72335 1.57694 1.50972 1.49848 1.50989 1.52458 1.54121 1.56178 1.58497 1.60608 1.62557 1.64295 1.66051 1.67802 1.69665 1.71501 1.73371 1.75142 1.76907 1.78563 1.80215 1.81821 1.83457 1.85054 1.8668 1.88216 1.89727 1.91132 1.9247 1.93713 1.94831 1.95808 1.96569 1.96942 1.97031 1.96744 1.95669 1.93545 1.90298 1.85761 1.80474 1.7515 1.72425 1.72509 1.73184 1.74137 1.75548 1.76947 1.78127 1.79267 1.80269 1.81263 1.82072 1.82944 1.83661 1.84475 1.85163 1.85995 1.86679 1.87521 1.88211 1.8908 1.89769 1.90644 1.91289 1.92086 1.92444 1.24478 1.2767 1.30885 1.34183 1.37571 1.41197 1.4472 1.48359 1.51985 1.55696 1.5924 1.62737 1.66358 1.69592 1.73051 1.76208 1.79298 1.82417 1.85165 1.88102 1.90639 1.93241 1.95643 1.97825 2.00038 2.01756 2.03282 2.03521 2.03113 2.01616 1.98073 1.89163 1.74253 1.59078 1.51594 1.50129 1.51271 1.52943 1.54746 1.57024 1.59386 1.61623 1.63587 1.65432 1.67132 1.68865 1.7057 1.72361 1.74132 1.75945 1.7768 1.79394 1.81003 1.82627 1.84199 1.85818 1.87414 1.89037 1.90587 1.92133 1.93576 1.94995 1.96334 1.97635 1.98865 1.99991 2.00996 2.01764 2.02168 2.02257 2.02018 2.01023 1.98992 1.95796 1.91221 1.85736 1.80017 1.77147 1.77057 1.7773 1.7864 1.79948 1.8129 1.82431 1.83557 1.84534 1.85516 1.86318 1.8717 1.87853 1.8863 1.89282 1.90072 1.90717 1.91521 1.92173 1.93008 1.93639 1.94428 1.9478 1.26334 1.2918 1.321 1.35168 1.38296 1.41577 1.4501 1.48401 1.51808 1.55277 1.58727 1.62054 1.65381 1.68706 1.71798 1.75026 1.77979 1.80938 1.83834 1.86475 1.89254 1.91658 1.94182 1.96405 1.98502 2.00373 2.01051 2.00804 1.99749 1.9668 1.89402 1.74522 1.59194 1.51216 1.49701 1.51045 1.52914 1.55012 1.57516 1.60001 1.62306 1.64483 1.66439 1.68298 1.69998 1.71695 1.73348 1.75087 1.76812 1.78587 1.80274 1.81949 1.83533 1.85134 1.86683 1.88297 1.89868 1.91471 1.93011 1.94553 1.9601 1.9747 1.98857 2.00235 2.01557 2.02838 2.04042 2.05136 2.06108 2.06834 2.07237 2.07324 2.0713 2.06221 2.04292 2.012 1.96602 1.90951 1.84938 1.81905 1.81616 1.82282 1.83141 1.84336 1.85602 1.86712 1.87814 1.88752 1.89706 1.90489 1.91317 1.91961 1.92705 1.93318 1.94065 1.94667 1.95423 1.96009 1.9674 1.97072 1.28251 1.30446 1.33325 1.36211 1.39127 1.42157 1.45317 1.48611 1.51825 1.55084 1.58397 1.61601 1.64829 1.67918 1.71052 1.73999 1.76991 1.79823 1.82583 1.85336 1.87824 1.90462 1.92721 1.9506 1.97005 1.98221 1.98192 1.97292 1.94656 1.88409 1.74528 1.58769 1.50086 1.48612 1.50051 1.52167 1.54564 1.57361 1.59931 1.62363 1.6467 1.66928 1.69012 1.70964 1.72716 1.74437 1.7612 1.77887 1.79628 1.81383 1.83041 1.84681 1.8624 1.87815 1.89355 1.90929 1.92463 1.9403 1.95547 1.97071 1.98532 1.99988 2.01367 2.02739 2.04051 2.05347 2.06593 2.07802 2.08932 2.09976 2.10905 2.11607 2.12048 2.12145 2.12003 2.11196 2.09379 2.06408 2.01762 1.95976 1.89751 1.86545 1.8604 1.86688 1.87492 1.88551 1.89801 1.90874 1.91955 1.92858 1.93804 1.94571 1.95377 1.95988 1.96709 1.97289 1.97992 1.98529 1.99183 1.99457 1.30668 1.32274 1.34774 1.37505 1.40233 1.42981 1.45867 1.48911 1.52002 1.55095 1.58187 1.61302 1.64344 1.67416 1.70333 1.73304 1.76105 1.78925 1.81634 1.84241 1.86856 1.89213 1.91648 1.93638 1.95211 1.95369 1.94573 1.92202 1.86847 1.73899 1.5791 1.48416 1.46776 1.48273 1.50576 1.53394 1.56547 1.594 1.61968 1.64456 1.66812 1.6907 1.71144 1.73133 1.75033 1.76955 1.78822 1.80691 1.82465 1.84209 1.8585 1.8748 1.89031 1.90593 1.92087 1.93604 1.95084 1.96599 1.98075 1.99571 2.01002 2.02426 2.03772 2.05119 2.06391 2.07677 2.08907 2.10137 2.11321 2.12475 2.13566 2.1458 2.15495 2.16199 2.16691 2.16801 2.167 2.1599 2.14282 2.11394 2.06749 2.00808 1.94436 1.91053 1.90315 1.9093 1.91648 1.92574 1.93845 1.94854 1.95908 1.96783 1.97726 1.98471 1.99261 1.99857 2.00572 2.01097 2.01723 2.01973 1.33326 1.34019 1.35963 1.38686 1.41387 1.44066 1.46723 1.49497 1.52367 1.55283 1.58254 1.61149 1.64098 1.66968 1.69863 1.7263 1.75425 1.78104 1.80753 1.83357 1.85812 1.88263 1.90381 1.92155 1.92478 1.91781 1.89536 1.84854 1.72603 1.56541 1.46248 1.44433 1.46025 1.48522 1.51611 1.55108 1.58179 1.60988 1.63627 1.66228 1.68655 1.70934 1.73013 1.75051 1.77058 1.79108 1.811 1.83066 1.84914 1.86732 1.88451 1.90133 1.91702 1.93238 1.94696 1.96184 1.97636 1.99138 2.00593 2.02075 2.03473 2.04879 2.06193 2.07514 2.08758 2.10023 2.11231 2.12458 2.13646 2.14824 2.15973 2.17082 2.1814 2.19134 2.20035 2.20742 2.21284 2.21402 2.21322 2.20698 2.19112 2.16254 2.11638 2.05573 1.99092 1.95485 1.94562 1.95089 1.95708 1.96576 1.97823 1.98728 1.99753 2.00592 2.01549 2.0223 2.03014 2.03559 2.04214 2.0447 1.37181 1.36703 1.37777 1.39833 1.42491 1.45091 1.47621 1.50249 1.52907 1.5565 1.58409 1.61239 1.63959 1.66768 1.69466 1.72228 1.7485 1.77506 1.80057 1.82556 1.84987 1.87182 1.89075 1.89603 1.889 1.86981 1.82397 1.71219 1.55081 1.4396 1.41908 1.43478 1.46014 1.49345 1.53055 1.56384 1.59384 1.6231 1.65118 1.67814 1.70268 1.72579 1.74736 1.76859 1.78914 1.80989 1.8304 1.85102 1.87095 1.89047 1.90861 1.92602 1.94214 1.95795 1.97296 1.98809 2.00265 2.01748 2.03169 2.04611 2.05977 2.07355 2.08651 2.09957 2.11191 2.12436 2.13628 2.1483 2.15997 2.17162 2.18309 2.19437 2.20538 2.21614 2.22629 2.23599 2.24467 2.25165 2.25718 2.25834 2.25755 2.25206 2.23721 2.20937 2.16428 2.10256 2.03754 1.99865 1.98807 1.99168 1.99742 2.00542 2.01742 2.02544 2.03538 2.04322 2.05259 2.05862 2.06595 2.06855 1.40568 1.39352 1.39908 1.415 1.43813 1.46294 1.48676 1.51102 1.53574 1.56117 1.58731 1.61338 1.64026 1.66607 1.69261 1.71825 1.74443 1.76951 1.79466 1.81863 1.84114 1.86047 1.86718 1.86074 1.84244 1.79742 1.69733 1.53044 1.41258 1.39101 1.40674 1.4329 1.46796 1.50738 1.54229 1.57404 1.60423 1.63394 1.66225 1.68936 1.71469 1.73916 1.76234 1.78503 1.80658 1.82785 1.84855 1.86962 1.89034 1.91078 1.93002 1.9484 1.96548 1.98197 1.99751 2.01279 2.02745 2.04212 2.05632 2.07061 2.08433 2.09801 2.11102 2.1239 2.13612 2.14825 2.15988 2.17154 2.18284 2.19431 2.20547 2.21677 2.22774 2.23868 2.24926 2.25957 2.26941 2.27877 2.28723 2.29418 2.29985 2.30108 2.3004 2.2956 2.28187 2.255 2.21065 2.14916 2.08351 2.0414 2.03031 2.03167 2.03703 2.04435 2.0553 2.06273 2.07241 2.07944 2.08805 2.09082 1.47945 1.42855 1.42298 1.43158 1.44946 1.47464 1.49848 1.5215 1.5445 1.56748 1.59161 1.61641 1.64103 1.66666 1.69113 1.71634 1.74066 1.76524 1.78878 1.81118 1.8305 1.83836 1.83217 1.81429 1.77015 1.67765 1.50328 1.38205 1.36032 1.37694 1.40418 1.44108 1.48238 1.51894 1.55162 1.58287 1.61325 1.6431 1.67164 1.69925 1.72542 1.75074 1.77478 1.79812 1.82052 1.84277 1.86434 1.88581 1.90659 1.9273 1.94714 1.96648 1.98452 2.00191 2.01823 2.03436 2.04977 2.06516 2.07986 2.09449 2.10838 2.12214 2.13516 2.14806 2.16025 2.17238 2.18386 2.19537 2.20642 2.21752 2.22837 2.23925 2.24996 2.26064 2.27115 2.28149 2.29161 2.30152 2.31096 2.32014 2.32838 2.33544 2.34121 2.34257 2.34214 2.33787 2.3252 2.29974 2.2551 2.19511 2.13021 2.08371 2.07167 2.07022 2.07576 2.08202 2.09116 2.09813 2.10707 2.11065 1.62402 1.47704 1.45193 1.45178 1.46386 1.48311 1.50745 1.53066 1.55313 1.57548 1.59751 1.62051 1.64387 1.66759 1.69163 1.71541 1.73886 1.76202 1.78352 1.8028 1.81067 1.80418 1.78588 1.7422 1.64736 1.47768 1.35355 1.33152 1.34781 1.37491 1.41254 1.45573 1.49398 1.52816 1.56004 1.59116 1.62132 1.65093 1.67949 1.7075 1.73446 1.76066 1.7856 1.8098 1.83306 1.85598 1.87826 1.90032 1.92159 1.94248 1.96261 1.98246 2.00142 2.01988 2.03728 2.0543 2.0704 2.0864 2.10151 2.11671 2.13099 2.14544 2.15882 2.17237 2.18479 2.19736 2.20892 2.22063 2.23156 2.2426 2.25309 2.26369 2.27388 2.28425 2.29422 2.30442 2.31416 2.32411 2.33361 2.34313 2.35223 2.36115 2.36922 2.37637 2.38222 2.38376 2.38363 2.38002 2.36765 2.34379 2.29845 2.24234 2.17624 2.12587 2.11246 2.10793 2.11324 2.11767 2.12436 2.12851 1.85734 1.56822 1.48783 1.47538 1.47996 1.49456 1.5159 1.53935 1.56166 1.58328 1.60459 1.62587 1.64767 1.66984 1.69262 1.71502 1.73765 1.75854 1.77742 1.78501 1.77832 1.75941 1.71532 1.61774 1.45016 1.32321 1.30112 1.31786 1.3454 1.38404 1.42847 1.46851 1.50403 1.53691 1.5682 1.59879 1.6286 1.65827 1.6873 1.71604 1.74358 1.77017 1.7954 1.81985 1.84346 1.86687 1.88981 1.9126 1.93473 1.95634 1.97697 1.99707 2.01655 2.0358 2.0543 2.07233 2.0895 2.1063 2.12241 2.13813 2.15317 2.16779 2.18179 2.19541 2.2085 2.2212 2.23337 2.24513 2.25633 2.26722 2.27756 2.28789 2.29767 2.30776 2.31731 2.32726 2.33672 2.34642 2.35583 2.36516 2.37443 2.38343 2.39228 2.40089 2.40876 2.41589 2.42158 2.42341 2.42349 2.42 2.40916 2.38554 2.33999 2.28977 2.21961 2.16878 2.15113 2.14544 2.14594 2.14783 2.28239 1.76559 1.55401 1.50963 1.50301 1.50974 1.52514 1.5474 1.56893 1.59021 1.61108 1.63184 1.65272 1.6736 1.69469 1.71591 1.73603 1.75415 1.76133 1.75414 1.73449 1.68942 1.58946 1.42262 1.29244 1.27041 1.28808 1.31665 1.35653 1.40145 1.44292 1.47996 1.51364 1.5454 1.576 1.60631 1.63627 1.66637 1.6958 1.72467 1.7521 1.77864 1.80391 1.82876 1.85296 1.87708 1.90062 1.92391 1.94644 1.96855 1.98987 2.01071 2.03073 2.05041 2.06955 2.08842 2.1064 2.12402 2.14071 2.15723 2.17279 2.18827 2.20276 2.21724 2.23067 2.2441 2.25641 2.26872 2.27989 2.29113 2.3013 2.31174 2.32123 2.3312 2.3404 2.35014 2.3593 2.36878 2.37794 2.38706 2.39613 2.40498 2.41381 2.42251 2.43098 2.43939 2.44698 2.45398 2.45955 2.46139 2.46153 2.45828 2.44823 2.4246 2.38511 2.32993 2.25816 2.21407 2.18341 2.17867 2.56798 2.08012 1.69132 1.55147 1.52858 1.52809 1.53838 1.554 1.57624 1.59686 1.61725 1.63702 1.65725 1.67717 1.69741 1.71647 1.73348 1.7397 1.73171 1.71109 1.66449 1.56167 1.39423 1.26073 1.23948 1.25881 1.28892 1.3307 1.37557 1.41752 1.45546 1.49014 1.52254 1.55374 1.58422 1.61463 1.64478 1.67481 1.70403 1.73257 1.75996 1.78665 1.81241 1.83777 1.86245 1.88686 1.91069 1.93431 1.95735 1.98014 2.00217 2.02376 2.04445 2.0646 2.08398 2.10322 2.12189 2.14022 2.15769 2.17478 2.19104 2.20692 2.22197 2.23669 2.25066 2.26435 2.27735 2.29006 2.30205 2.31374 2.32462 2.33533 2.34519 2.35516 2.36431 2.3738 2.3826 2.3917 2.40046 2.40915 2.41794 2.42632 2.43507 2.44329 2.45192 2.4601 2.46834 2.47641 2.48367 2.49046 2.49579 2.49747 2.49756 2.49466 2.48461 2.46157 2.42472 2.36383 2.29731 2.262 2.76815 2.44014 1.93171 1.64381 1.56048 1.5485 1.55111 1.56404 1.58146 1.60418 1.62417 1.64402 1.66254 1.68153 1.69913 1.71532 1.72034 1.71128 1.68943 1.64068 1.53432 1.36457 1.22811 1.20833 1.22983 1.26211 1.30608 1.35117 1.39301 1.43143 1.46685 1.50017 1.53194 1.56299 1.59351 1.62395 1.65394 1.68371 1.71273 1.74126 1.76887 1.79585 1.82199 1.84759 1.87254 1.89716 1.92133 1.94519 1.96857 1.99146 2.01371 2.03542 2.05646 2.07708 2.09704 2.11665 2.13571 2.1546 2.17266 2.19026 2.20693 2.22329 2.23872 2.25399 2.26838 2.28271 2.29614 2.30951 2.32188 2.33418 2.34538 2.35658 2.36669 2.37695 2.38622 2.39582 2.4046 2.41373 2.42235 2.43101 2.43963 2.4478 2.45644 2.46417 2.47282 2.48037 2.48881 2.49646 2.50437 2.51194 2.51888 2.52512 2.53008 2.53146 2.5313 2.52798 2.51862 2.49238 2.45235 2.42399 2.87446 2.70656 2.34664 1.84797 1.63286 1.58066 1.5725 1.57609 1.58969 1.60878 1.63112 1.65055 1.66992 1.68601 1.70102 1.70363 1.6933 1.66975 1.61795 1.507 1.33211 1.1953 1.17777 1.20233 1.23678 1.28292 1.32839 1.37018 1.40859 1.44453 1.47857 1.51125 1.54283 1.57381 1.6042 1.63442 1.66414 1.69369 1.72256 1.75106 1.77868 1.80579 1.83206 1.8579 1.88312 1.90797 1.9323 1.95618 1.97947 2.00227 2.0245 2.04631 2.06763 2.08855 2.109 2.12901 2.14844 2.16752 2.18604 2.20413 2.22133 2.23813 2.25409 2.26978 2.28465 2.29938 2.31329 2.32711 2.34009 2.35296 2.36489 2.37669 2.38753 2.3982 2.40804 2.41773 2.42681 2.43573 2.44436 2.45269 2.46108 2.46893 2.47727 2.48462 2.49307 2.49999 2.50848 2.51524 2.52346 2.5303 2.53781 2.54458 2.55106 2.55636 2.56083 2.56171 2.56118 2.55745 2.54423 2.53802 2.93165 2.84412 2.64817 2.21734 1.80535 1.63253 1.59942 1.59495 1.60061 1.61486 1.63497 1.6556 1.67324 1.68858 1.69031 1.67857 1.65291 1.59684 1.47982 1.29742 1.16294 1.14921 1.17598 1.2129 1.26119 1.30696 1.34872 1.38697 1.42296 1.45762 1.49118 1.52375 1.55532 1.58616 1.61634 1.6462 1.67555 1.7047 1.73327 1.76152 1.78911 1.81627 1.84275 1.86875 1.89409 1.9189 1.94312 1.96682 1.99002 2.01276 2.03505 2.0569 2.07835 2.09939 2.12003 2.14027 2.16 2.17927 2.19794 2.2163 2.23395 2.25112 2.26755 2.28366 2.299 2.31414 2.32852 2.34273 2.35621 2.36952 2.38205 2.39435 2.4059 2.41704 2.42758 2.43758 2.44715 2.45618 2.46501 2.47334 2.48168 2.48954 2.4976 2.50499 2.51295 2.51982 2.52775 2.53412 2.54208 2.54805 2.5559 2.56168 2.56893 2.57452 2.58064 2.58492 2.58854 2.58916 2.58807 2.58972 2.9626 2.91619 2.80736 2.52902 2.06596 1.74395 1.63526 1.61603 1.61533 1.6243 1.63862 1.65742 1.67368 1.67723 1.66492 1.63694 1.5755 1.4521 1.26243 1.13232 1.12143 1.14982 1.18991 1.24041 1.28661 1.32835 1.36663 1.40283 1.43776 1.47191 1.50517 1.53754 1.56886 1.59943 1.62919 1.65861 1.68749 1.7162 1.74441 1.7724 1.7998 1.82683 1.85321 1.87909 1.90437 1.92908 1.95327 1.97691 2.00007 2.02272 2.04494 2.06673 2.08817 2.1092 2.12993 2.15022 2.17013 2.18957 2.20846 2.22691 2.24486 2.26236 2.27924 2.29576 2.31161 2.3272 2.3421 2.35673 2.37072 2.38443 2.39752 2.41026 2.42249 2.43414 2.44543 2.45595 2.46619 2.47561 2.48481 2.49329 2.5016 2.50941 2.51712 2.52436 2.53181 2.53853 2.54584 2.55209 2.55933 2.56513 2.57227 2.5777 2.58461 2.58966 2.59611 2.60054 2.60603 2.60929 2.61197 2.61374 2.98233 2.95455 2.8981 2.76406 2.45131 1.97818 1.7242 1.64914 1.63498 1.63553 1.64388 1.65681 1.66315 1.65061 1.62024 1.55034 1.41926 1.22455 1.10231 1.09525 1.1241 1.16691 1.21959 1.26646 1.30824 1.34662 1.38307 1.41839 1.45288 1.48668 1.51962 1.55168 1.58271 1.61293 1.6423 1.67124 1.69961 1.7278 1.75552 1.78307 1.81007 1.83678 1.86287 1.88856 1.91366 1.93826 1.96233 1.98589 2.00893 2.03155 2.05372 2.07555 2.09701 2.11812 2.13886 2.15918 2.17907 2.19852 2.21746 2.23599 2.25405 2.2718 2.28908 2.30604 2.3224 2.33845 2.35384 2.36887 2.3833 2.39735 2.41091 2.42402 2.4368 2.44886 2.46082 2.47175 2.48266 2.49242 2.50215 2.51085 2.51945 2.52733 2.53506 2.54226 2.54949 2.55609 2.56301 2.56904 2.57572 2.58119 2.58763 2.59264 2.59878 2.60343 2.6092 2.61346 2.6187 2.62234 2.62641 2.62839 2.98972 2.97868 2.94633 2.88167 2.71859 2.39159 1.92973 1.72237 1.66841 1.65448 1.65257 1.65091 1.63872 1.60531 1.52378 1.37827 1.18234 1.07238 1.07026 1.09887 1.14277 1.197 1.24493 1.28728 1.32567 1.36209 1.39757 1.43251 1.46682 1.50035 1.53294 1.56458 1.59521 1.62505 1.65408 1.68262 1.71059 1.73831 1.76554 1.79259 1.81912 1.8454 1.87112 1.89641 1.92115 1.94538 1.9692 1.99257 2.0156 2.03829 2.06061 2.08259 2.10419 2.12538 2.14616 2.16648 2.18637 2.20582 2.22482 2.24346 2.26168 2.2796 2.29713 2.31433 2.33099 2.34735 2.3631 2.37851 2.39338 2.40788 2.42192 2.4355 2.44875 2.46129 2.47371 2.48511 2.49653 2.50672 2.517 2.52602 2.53513 2.54317 2.55125 2.55846 2.56582 2.5723 2.57912 2.58493 2.59128 2.59642 2.6023 2.60687 2.61225 2.61637 2.62129 2.62501 2.62946 2.63274 2.63646 2.63844 2.99546 2.98812 2.97493 2.93872 2.86187 2.68172 2.31356 1.90136 1.72092 1.67918 1.66257 1.64188 1.59824 1.50121 1.33014 1.13563 1.04249 1.04714 1.07523 1.12018 1.17497 1.22357 1.26649 1.30511 1.34124 1.37628 1.4109 1.44517 1.47886 1.51181 1.54388 1.57513 1.60546 1.63511 1.66399 1.69239 1.72011 1.74749 1.77429 1.80085 1.82683 1.85254 1.87768 1.90244 1.92676 1.95066 1.97423 1.99745 2.02037 2.04306 2.06546 2.08761 2.10942 2.13082 2.15181 2.17228 2.19232 2.2119 2.23105 2.24984 2.26823 2.28632 2.30402 2.3214 2.33824 2.35483 2.37084 2.38658 2.40182 2.41675 2.4312 2.44526 2.45887 2.47189 2.48463 2.49646 2.50823 2.51883 2.52961 2.53896 2.54871 2.55693 2.56558 2.57288 2.58053 2.58702 2.59386 2.59959 2.60572 2.61069 2.61612 2.62035 2.6251 2.62866 2.6328 2.6358 2.63944 2.64196 2.64501 2.64644 2.99729 2.99457 2.98572 2.97011 2.92566 2.83596 2.61196 2.20987 1.85366 1.71496 1.66835 1.61221 1.49454 1.28133 1.08193 1.00654 1.01741 1.04687 1.0948 1.14965 1.19868 1.24223 1.28175 1.3188 1.35433 1.38896 1.42289 1.45625 1.48903 1.52127 1.55282 1.58372 1.61388 1.64339 1.6721 1.70026 1.72774 1.75481 1.7813 1.80749 1.83317 1.85858 1.88356 1.90821 1.93252 1.95641 1.97997 2.00315 2.02601 2.04854 2.0707 2.09254 2.11399 2.13507 2.15578 2.17614 2.19613 2.21581 2.23509 2.25402 2.27257 2.29068 2.30844 2.32583 2.34285 2.35958 2.37591 2.39196 2.40765 2.423 2.43793 2.45248 2.46654 2.48012 2.49324 2.5057 2.51782 2.52905 2.5401 2.55 2.56008 2.56872 2.57781 2.58537 2.59343 2.6 2.60703 2.61268 2.6187 2.62343 2.6285 2.63233 2.63654 2.63955 2.64304 2.6454 2.64831 2.65018 2.65252 2.65351 2.99857 2.99722 2.99236 2.98489 2.96045 2.91472 2.80148 2.53321 2.0958 1.79763 1.66378 1.52377 1.25565 1.02298 0.952431 0.968943 1.00548 1.05989 1.1161 1.16522 1.20906 1.24959 1.28797 1.32471 1.36008 1.39439 1.42791 1.46087 1.49328 1.52515 1.55635 1.5869 1.61666 1.64578 1.67416 1.70203 1.72925 1.75608 1.78233 1.80832 1.83382 1.85911 1.88403 1.90866 1.93299 1.95692 1.98052 2.00369 2.02647 2.04886 2.07085 2.0925 2.1138 2.13476 2.1554 2.17575 2.19574 2.21548 2.2348 2.25379 2.2724 2.29056 2.30844 2.32591 2.34308 2.35998 2.37656 2.39289 2.40891 2.42461 2.43997 2.45495 2.46952 2.48358 2.49721 2.51019 2.52281 2.53462 2.54622 2.55682 2.56736 2.5767 2.58614 2.59423 2.60256 2.60943 2.61661 2.62233 2.62834 2.63298 2.63782 2.64154 2.64526 2.64821 2.65102 2.65336 2.65551 2.65737 2.65898 2.66034 2.99934 2.9982 2.99645 2.99046 2.98069 2.95042 2.89303 2.74686 2.44308 1.96947 1.63617 1.2804 0.953685 0.865726 0.890565 0.933226 0.996358 1.06009 1.11379 1.16031 1.20326 1.24405 1.28282 1.31969 1.35494 1.38897 1.42214 1.45471 1.48667 1.51802 1.54865 1.57862 1.60786 1.63655 1.66462 1.69225 1.71932 1.74604 1.77225 1.79822 1.82377 1.84916 1.87424 1.89909 1.92368 1.94789 1.97176 1.99517 2.01814 2.04066 2.06274 2.08444 2.10581 2.12689 2.14769 2.16826 2.18844 2.20843 2.22799 2.24735 2.2664 2.28508 2.30351 2.32152 2.33926 2.35669 2.37379 2.39062 2.40711 2.42329 2.43911 2.4545 2.46956 2.48393 2.49807 2.51132 2.5244 2.5365 2.54848 2.55936 2.57022 2.57988 2.58956 2.59797 2.60645 2.6136 2.62084 2.62678 2.63272 2.63754 2.64217 2.64596 2.64937 2.65227 2.65466 2.65684 2.65842 2.66003 2.66125 2.66278 2.99954 2.99871 2.99751 2.99308 2.98644 2.96353 2.92422 2.81158 2.58678 2.10735 1.51702 0.9438 0.675392 0.711126 0.762012 0.829384 0.892918 0.95087 1.00597 1.05906 1.10965 1.15743 1.20262 1.24553 1.2865 1.32591 1.36403 1.40106 1.43702 1.47194 1.50576 1.53853 1.57025 1.60109 1.63107 1.66042 1.68909 1.71732 1.74498 1.77231 1.79914 1.82568 1.8518 1.8776 1.90306 1.92811 1.9528 1.97702 2.00083 2.02418 2.04714 2.06966 2.09188 2.11373 2.13531 2.15664 2.17762 2.19844 2.21883 2.23896 2.25872 2.27804 2.29703 2.31555 2.33373 2.35153 2.36903 2.38623 2.40315 2.4198 2.43611 2.45203 2.46762 2.48254 2.49723 2.51104 2.52464 2.53725 2.54972 2.56106 2.57233 2.58234 2.59233 2.60095 2.60959 2.61683 2.62406 2.63005 2.63583 2.64074 2.6451 2.64909 2.65216 2.65534 2.65737 2.65978 2.66107 2.66303 2.66408 2.66602 1.10254 1.2928 1.34716 1.30762 1.23138 1.14435 1.0649 1.02548 1.01965 1.02237 1.0245 1.02489 1.0235 1.02199 1.02071 1.02151 1.0248 1.02908 1.03409 1.03981 1.04593 1.05217 1.0586 1.06522 1.07196 1.07868 1.08522 1.09149 1.09742 1.10298 1.10815 1.11296 1.1175 1.12178 1.12564 1.1288 1.13095 1.13157 1.1303 1.12748 1.11886 1.0981 1.04861 0.934907 0.683052 0.282577 0.113924 0.147147 0.103668 0.0662197 0.043605 0.080315 0.130748 0.179491 0.225181 0.266776 0.304381 0.339924 0.375324 0.410253 0.443588 0.47537 0.505819 0.535076 0.563262 0.5903 0.616245 0.641014 0.664742 0.687451 0.709355 0.73052 0.751159 0.771291 0.79107 0.810457 0.829658 0.848493 0.867339 0.885742 0.904314 0.922245 0.940642 0.957964 0.976245 0.992998 1.01095 1.02752 1.04477 1.06139 1.07758 1.09422 1.10927 1.1257 1.13961 1.15567 1.16819 1.18318 1.19291 1.20316 1.14211 1.25781 1.32289 1.36219 1.40228 1.43349 1.4435 1.43946 1.42436 1.40286 1.38573 1.38097 1.38184 1.38394 1.38616 1.38744 1.38873 1.39013 1.39195 1.39453 1.39753 1.40116 1.40548 1.41016 1.4148 1.41938 1.42397 1.42862 1.43331 1.43803 1.44274 1.44737 1.45187 1.45627 1.4604 1.46442 1.46764 1.46951 1.46993 1.4688 1.46285 1.44605 1.40539 1.31044 1.10224 0.716489 0.398917 0.296005 0.326866 0.38541 0.438719 0.480728 0.516762 0.552874 0.589002 0.622849 0.653442 0.681566 0.708972 0.735782 0.761978 0.786393 0.810099 0.832199 0.854064 0.874432 0.894672 0.913367 0.932342 0.949821 0.96789 0.984261 1.00127 1.01664 1.03242 1.04715 1.06166 1.07618 1.08949 1.10404 1.11654 1.13101 1.14334 1.15801 1.17023 1.18526 1.19735 1.21262 1.22452 1.23992 1.25156 1.26696 1.27831 1.29366 1.30471 1.31997 1.3304 1.34507 1.35322 1.3645 1.13956 1.24698 1.34276 1.43543 1.52047 1.58717 1.6196 1.62225 1.61721 1.6032 1.58398 1.56941 1.56115 1.55918 1.55987 1.56098 1.56254 1.56415 1.56559 1.56717 1.569 1.57119 1.57379 1.57673 1.57992 1.58331 1.58687 1.59059 1.59442 1.59838 1.60248 1.60662 1.61092 1.61507 1.61946 1.62337 1.62732 1.62946 1.6304 1.63009 1.62655 1.61436 1.58439 1.51158 1.35192 1.03353 0.695311 0.569768 0.60082 0.671562 0.74387 0.79688 0.836663 0.866053 0.888656 0.908949 0.927958 0.94563 0.962272 0.978542 0.996103 1.01255 1.02976 1.04559 1.06133 1.07627 1.09069 1.105 1.11821 1.132 1.14427 1.15755 1.16936 1.18227 1.19375 1.20642 1.21763 1.23022 1.24127 1.25365 1.2644 1.2764 1.28665 1.29814 1.30787 1.31894 1.32829 1.3391 1.34816 1.35887 1.36768 1.37837 1.38694 1.3977 1.40612 1.41718 1.42526 1.43636 1.44283 1.45152 1.14617 1.25558 1.35493 1.44667 1.52765 1.5956 1.64817 1.68547 1.70578 1.71036 1.70862 1.70163 1.69083 1.68129 1.67589 1.67489 1.67578 1.67727 1.67945 1.68176 1.68371 1.68553 1.68741 1.68953 1.69198 1.69474 1.69778 1.70104 1.7045 1.7081 1.71186 1.71563 1.71972 1.72356 1.72787 1.73151 1.73519 1.737 1.73776 1.73733 1.73348 1.72182 1.69407 1.6319 1.51057 1.29609 1.02082 0.855961 0.876238 0.924132 0.977855 1.02359 1.05543 1.07516 1.08678 1.09655 1.10389 1.11033 1.1169 1.12411 1.13176 1.14134 1.15253 1.1647 1.17616 1.18827 1.19903 1.21058 1.22118 1.23267 1.24329 1.25488 1.26547 1.277 1.28758 1.29925 1.30988 1.32144 1.33177 1.34299 1.35295 1.36382 1.37337 1.38383 1.39296 1.40304 1.41177 1.42147 1.4298 1.4391 1.44701 1.45591 1.4634 1.4719 1.47892 1.48703 1.49365 1.50152 1.50694 1.51153 1.14635 1.25382 1.35004 1.43806 1.51808 1.58946 1.65256 1.70541 1.74655 1.77344 1.78413 1.78424 1.78211 1.776 1.76754 1.76095 1.75639 1.75516 1.75565 1.75677 1.75845 1.76065 1.76295 1.7652 1.76743 1.76983 1.77238 1.77524 1.77823 1.78161 1.78499 1.78867 1.79245 1.79607 1.80003 1.80326 1.80575 1.80682 1.80696 1.80487 1.79744 1.77831 1.73595 1.6473 1.50899 1.36596 1.25247 1.1286 1.06085 1.05253 1.07481 1.10158 1.13198 1.15541 1.1729 1.18539 1.19337 1.19961 1.20469 1.20936 1.21403 1.21948 1.22666 1.23652 1.24765 1.2588 1.26949 1.28027 1.29074 1.30147 1.31199 1.32287 1.33355 1.34465 1.35545 1.36648 1.37709 1.38785 1.39811 1.4085 1.41839 1.42839 1.43784 1.44739 1.45642 1.46557 1.47421 1.48297 1.49117 1.49942 1.50709 1.51482 1.52198 1.52926 1.53587 1.54238 1.54819 1.55337 1.55803 1.55996 1.14092 1.24309 1.33721 1.42296 1.50156 1.57312 1.63702 1.6934 1.741 1.78006 1.80993 1.82907 1.8372 1.83783 1.83654 1.83241 1.82637 1.82119 1.81793 1.81736 1.81825 1.81955 1.82167 1.82437 1.8272 1.8298 1.83235 1.8349 1.83754 1.84057 1.8436 1.84742 1.85087 1.85518 1.85847 1.86147 1.86282 1.86306 1.86157 1.85488 1.83841 1.79963 1.71993 1.58591 1.46088 1.40326 1.37051 1.31918 1.25773 1.20631 1.17779 1.17337 1.18686 1.20194 1.22047 1.23873 1.25135 1.26027 1.26756 1.27351 1.27821 1.28233 1.2872 1.2937 1.30226 1.31186 1.32198 1.33235 1.34279 1.35327 1.36384 1.37457 1.38526 1.39599 1.40669 1.41733 1.42784 1.43826 1.44856 1.45872 1.46869 1.47852 1.48818 1.49771 1.50702 1.51614 1.52502 1.53369 1.5421 1.5503 1.5582 1.5658 1.573 1.57981 1.58619 1.59213 1.59785 1.60253 1.60675 1.6062 1.1387 1.23182 1.31986 1.40204 1.47813 1.5487 1.61323 1.67181 1.72434 1.77014 1.80911 1.84017 1.8633 1.87717 1.88245 1.88258 1.88157 1.87847 1.87412 1.87046 1.86831 1.86769 1.8685 1.86956 1.87149 1.87413 1.87725 1.88009 1.88321 1.88596 1.88934 1.89223 1.89589 1.89891 1.90162 1.90309 1.90339 1.9017 1.89594 1.87928 1.84315 1.76505 1.62823 1.50099 1.44174 1.42917 1.42771 1.41798 1.39681 1.36783 1.33148 1.29379 1.26937 1.25961 1.2637 1.27257 1.28355 1.29662 1.30761 1.31618 1.32343 1.32966 1.33508 1.34036 1.34638 1.35367 1.36218 1.37157 1.38154 1.39203 1.40281 1.41367 1.42456 1.43546 1.44634 1.45719 1.46795 1.47859 1.48909 1.49952 1.50985 1.52003 1.53004 1.53986 1.5495 1.55896 1.56819 1.57718 1.5859 1.59438 1.6026 1.61054 1.61806 1.62513 1.63167 1.63769 1.64356 1.64825 1.65275 1.65227 1.13795 1.22274 1.305 1.38256 1.45579 1.52369 1.58752 1.64559 1.69967 1.74739 1.79057 1.82725 1.85854 1.88294 1.90083 1.91141 1.91604 1.91638 1.91576 1.91332 1.9101 1.907 1.90513 1.9049 1.90574 1.90707 1.90925 1.9126 1.91608 1.9201 1.92329 1.92702 1.92972 1.93213 1.93302 1.93309 1.93154 1.92528 1.91008 1.87384 1.79906 1.65911 1.52722 1.46073 1.44865 1.45583 1.46494 1.47188 1.47541 1.47256 1.45959 1.43707 1.40575 1.37056 1.34264 1.32674 1.32217 1.32795 1.33473 1.34432 1.35563 1.36486 1.37249 1.37961 1.38621 1.39224 1.39861 1.40596 1.41462 1.4243 1.43461 1.44528 1.45613 1.46701 1.47786 1.48868 1.49946 1.51017 1.52077 1.53125 1.54162 1.55194 1.56218 1.57233 1.58234 1.5922 1.60191 1.61146 1.62084 1.62999 1.63886 1.64743 1.65566 1.66355 1.67094 1.67764 1.68368 1.68869 1.69352 1.6938 1.13842 1.21524 1.29145 1.36457 1.4342 1.49961 1.56117 1.61851 1.67189 1.72103 1.76586 1.8062 1.84202 1.87267 1.89884 1.91897 1.9335 1.94183 1.94577 1.94619 1.94598 1.94454 1.94253 1.9407 1.94006 1.94065 1.94163 1.94302 1.94567 1.94847 1.95214 1.95487 1.95747 1.95807 1.95808 1.95646 1.95016 1.93511 1.89973 1.82567 1.68561 1.54597 1.47123 1.4575 1.46525 1.47775 1.49146 1.50791 1.52367 1.53305 1.53701 1.53461 1.5227 1.50103 1.47128 1.43604 1.40522 1.38362 1.37318 1.37328 1.37902 1.3869 1.39765 1.40806 1.41707 1.42516 1.43209 1.43833 1.44527 1.45333 1.46237 1.47209 1.4823 1.49291 1.50379 1.51475 1.5256 1.53629 1.54683 1.55724 1.56751 1.57768 1.58783 1.59797 1.60807 1.61811 1.62809 1.63798 1.64776 1.65741 1.66682 1.67609 1.68496 1.69361 1.70161 1.70921 1.71657 1.72237 1.72761 1.72889 1.14147 1.21075 1.28114 1.34971 1.41584 1.47862 1.5382 1.59409 1.64667 1.6956 1.74119 1.78301 1.82131 1.85553 1.88584 1.9116 1.93324 1.95011 1.96228 1.96929 1.97287 1.97348 1.97339 1.97257 1.97074 1.96939 1.96831 1.96886 1.96973 1.97121 1.97318 1.97594 1.97696 1.97696 1.97549 1.96958 1.95553 1.92128 1.84929 1.70974 1.56251 1.48158 1.46514 1.47183 1.48377 1.50012 1.51778 1.53792 1.55628 1.5734 1.58559 1.59315 1.59528 1.59259 1.58091 1.56044 1.53281 1.49814 1.46448 1.4374 1.42159 1.41702 1.42192 1.4289 1.43917 1.4516 1.46264 1.47222 1.48014 1.48727 1.49444 1.50233 1.51115 1.52071 1.53072 1.54108 1.55161 1.56214 1.57255 1.58281 1.59295 1.60297 1.61291 1.62278 1.63265 1.64255 1.65245 1.66235 1.6721 1.6819 1.69142 1.70095 1.71014 1.71904 1.72775 1.73594 1.7438 1.7504 1.75705 1.75906 1.14626 1.20832 1.27263 1.33663 1.39911 1.45889 1.51617 1.57041 1.62183 1.67003 1.71542 1.75762 1.79701 1.83311 1.86621 1.89579 1.92196 1.94422 1.96266 1.97708 1.98725 1.99323 1.99618 1.99685 1.99666 1.99629 1.99504 1.99434 1.99347 1.99386 1.9944 1.99481 1.99463 1.9931 1.98769 1.97314 1.94148 1.87167 1.73454 1.57863 1.48853 1.46887 1.4749 1.48744 1.50421 1.52334 1.54406 1.5647 1.58374 1.6021 1.61815 1.63151 1.64166 1.64758 1.64997 1.64836 1.63873 1.61999 1.59349 1.55862 1.52128 1.48926 1.46807 1.45888 1.46282 1.46983 1.48024 1.49473 1.50758 1.51814 1.52707 1.53516 1.54302 1.5512 1.55992 1.5692 1.57891 1.58891 1.59905 1.60914 1.6191 1.62894 1.63868 1.64834 1.65789 1.66752 1.67703 1.6867 1.69621 1.70575 1.71521 1.72451 1.73371 1.74266 1.75159 1.75963 1.76835 1.77492 1.78251 1.78517 1.15496 1.21003 1.26824 1.32698 1.38555 1.44253 1.49736 1.54963 1.5997 1.647 1.69188 1.73394 1.7736 1.81051 1.84493 1.87653 1.90541 1.93114 1.95384 1.97297 1.9889 2.00111 2.00994 2.01511 2.01785 2.01854 2.01852 2.01829 2.01711 2.01576 2.01449 2.01309 2.01021 2.00314 1.98898 1.95668 1.89084 1.75517 1.59406 1.49624 1.47341 1.47828 1.49034 1.50764 1.52658 1.54876 1.56958 1.58926 1.60767 1.62664 1.64393 1.66041 1.67407 1.68592 1.69489 1.70114 1.70364 1.70267 1.69435 1.67647 1.65026 1.61539 1.57554 1.53874 1.51262 1.50005 1.50346 1.51054 1.52137 1.53705 1.55061 1.5622 1.57237 1.5815 1.59005 1.59861 1.60742 1.61651 1.6259 1.63554 1.64527 1.65506 1.66468 1.67439 1.68392 1.69348 1.7029 1.71227 1.72159 1.73089 1.74011 1.74907 1.75827 1.76668 1.77584 1.78353 1.79249 1.79907 1.80693 1.80988 1.1665 1.21529 1.26717 1.32072 1.37449 1.42778 1.48008 1.53051 1.57868 1.62502 1.66905 1.71101 1.75058 1.78801 1.82307 1.85589 1.88642 1.91444 1.94003 1.96284 1.98276 1.99978 2.0135 2.02434 2.03172 2.0365 2.03857 2.03897 2.03863 2.03776 2.03513 2.03078 2.02325 2.00819 1.97587 1.91193 1.77953 1.61331 1.50402 1.47631 1.47986 1.49204 1.50791 1.52751 1.54994 1.57219 1.59149 1.61038 1.629 1.64771 1.66527 1.68211 1.69722 1.71162 1.72469 1.73649 1.74568 1.75211 1.75453 1.75393 1.74694 1.73052 1.70592 1.67201 1.63022 1.59013 1.55883 1.54245 1.5453 1.55244 1.56328 1.57925 1.59341 1.60539 1.61639 1.62624 1.63516 1.64385 1.65243 1.66122 1.67013 1.67937 1.68872 1.69817 1.70761 1.71716 1.72664 1.73604 1.74545 1.75454 1.76395 1.77265 1.78206 1.79021 1.79952 1.80704 1.81612 1.82275 1.83083 1.83395 1.18223 1.22503 1.27092 1.31913 1.36843 1.41784 1.46623 1.51426 1.56071 1.60526 1.64823 1.68936 1.72864 1.76607 1.80144 1.83495 1.86624 1.89579 1.9228 1.94815 1.97059 1.99115 2.00863 2.0237 2.03579 2.04493 2.05137 2.05419 2.05408 2.05324 2.05023 2.04262 2.02795 1.99657 1.93463 1.80858 1.63825 1.51583 1.48073 1.48181 1.49414 1.50967 1.52755 1.55071 1.57274 1.59297 1.61119 1.6301 1.64837 1.66716 1.68473 1.70195 1.71765 1.73334 1.74803 1.76247 1.77592 1.788 1.79766 1.80467 1.80792 1.80812 1.80282 1.78861 1.76513 1.73161 1.6885 1.64435 1.60738 1.58687 1.58939 1.59653 1.60701 1.62288 1.63731 1.64956 1.66082 1.67098 1.68002 1.68861 1.69688 1.70526 1.71374 1.72251 1.7315 1.74051 1.74977 1.75878 1.76821 1.77694 1.78645 1.79482 1.8044 1.81236 1.82188 1.82932 1.83855 1.84525 1.8535 1.85708 1.19763 1.2359 1.27709 1.32055 1.36554 1.41095 1.4567 1.50106 1.54537 1.58858 1.63 1.67015 1.70871 1.74564 1.78106 1.81471 1.84671 1.87688 1.90527 1.9318 1.95624 1.97908 1.99895 2.0177 2.03261 2.04635 2.0561 2.06288 2.06373 2.06235 2.05688 2.0447 2.01588 1.95886 1.83972 1.67058 1.53456 1.4882 1.48526 1.49809 1.51227 1.52955 1.55114 1.57399 1.594 1.61285 1.63077 1.64944 1.66803 1.6872 1.70521 1.72273 1.73886 1.75506 1.77047 1.78641 1.80172 1.81659 1.83044 1.84256 1.85246 1.85986 1.86321 1.86371 1.85938 1.84656 1.82369 1.79067 1.74673 1.69926 1.65604 1.63269 1.635 1.6421 1.65222 1.6677 1.68203 1.69427 1.70542 1.71562 1.72489 1.73327 1.74149 1.74946 1.75783 1.76591 1.77475 1.78288 1.79201 1.80004 1.80937 1.81721 1.82665 1.83427 1.84369 1.85101 1.8602 1.86699 1.87505 1.87903 1.21475 1.2501 1.28663 1.32559 1.36584 1.40769 1.44949 1.49194 1.53287 1.57363 1.61421 1.65261 1.69053 1.72672 1.76171 1.79513 1.82746 1.85769 1.88708 1.91421 1.93992 1.96428 1.98574 2.00699 2.02424 2.04107 2.0537 2.06284 2.06369 2.06097 2.05115 2.02855 1.97559 1.87133 1.70095 1.55654 1.49856 1.49202 1.50386 1.51815 1.53397 1.5551 1.57758 1.59879 1.61732 1.63527 1.65276 1.67151 1.69035 1.7095 1.72747 1.74501 1.76157 1.77814 1.79417 1.81075 1.82663 1.84273 1.8578 1.87213 1.88522 1.89666 1.90633 1.91374 1.91726 1.91797 1.9145 1.90278 1.88055 1.84784 1.80289 1.75238 1.7039 1.67835 1.6802 1.68732 1.69709 1.71205 1.72628 1.73835 1.74955 1.75976 1.76943 1.77754 1.78612 1.79365 1.80204 1.80936 1.81802 1.82536 1.83418 1.84147 1.85049 1.85773 1.86683 1.87392 1.88288 1.88953 1.89745 1.90129 1.2305 1.26381 1.29851 1.3336 1.37109 1.40811 1.44701 1.48574 1.52537 1.56327 1.60092 1.63896 1.67468 1.71015 1.74485 1.77692 1.80974 1.83941 1.86891 1.89698 1.9226 1.94866 1.97076 1.99361 2.0127 2.03085 2.04602 2.0536 2.0523 2.04635 2.02838 1.98264 1.88981 1.72336 1.57695 1.50972 1.49848 1.50988 1.52457 1.5412 1.56178 1.58497 1.60608 1.62556 1.64295 1.66051 1.67802 1.69665 1.71501 1.73371 1.75142 1.76908 1.78563 1.80215 1.81821 1.83457 1.85054 1.8668 1.88216 1.89727 1.91132 1.9247 1.93713 1.94831 1.95808 1.96569 1.96942 1.97031 1.96744 1.95669 1.93545 1.90298 1.85761 1.80475 1.7515 1.72425 1.7251 1.73184 1.74138 1.75548 1.76947 1.78128 1.79267 1.80269 1.81263 1.82073 1.82944 1.83661 1.84475 1.85163 1.85995 1.86679 1.87521 1.88211 1.8908 1.89769 1.90644 1.91289 1.92086 1.92444 1.24478 1.2767 1.30885 1.34183 1.37571 1.41197 1.4472 1.48359 1.51985 1.55696 1.5924 1.62737 1.66358 1.69592 1.73051 1.76208 1.79299 1.82417 1.85165 1.88102 1.90639 1.93241 1.95643 1.97825 2.00038 2.01756 2.03282 2.03521 2.03113 2.01616 1.98073 1.89164 1.74254 1.5908 1.51594 1.50128 1.5127 1.52942 1.54745 1.57024 1.59386 1.61624 1.63587 1.65432 1.67132 1.68865 1.7057 1.72361 1.74132 1.75945 1.7768 1.79394 1.81003 1.82627 1.84199 1.85818 1.87414 1.89037 1.90588 1.92133 1.93576 1.94995 1.96334 1.97635 1.98865 1.99991 2.00996 2.01764 2.02168 2.02257 2.02018 2.01023 1.98992 1.95796 1.91222 1.85737 1.80017 1.77148 1.77057 1.7773 1.7864 1.79949 1.8129 1.82431 1.83557 1.84534 1.85516 1.86318 1.8717 1.87853 1.8863 1.89282 1.90073 1.90717 1.91521 1.92173 1.93008 1.93639 1.94428 1.9478 1.26334 1.2918 1.321 1.35168 1.38296 1.41577 1.4501 1.48401 1.51808 1.55277 1.58727 1.62054 1.65381 1.68706 1.71798 1.75026 1.77979 1.80938 1.83834 1.86475 1.89254 1.91658 1.94182 1.96405 1.98502 2.00374 2.01051 2.00804 1.9975 1.9668 1.89402 1.7452 1.59197 1.51219 1.49702 1.51045 1.52913 1.55011 1.57516 1.60001 1.62306 1.64483 1.66439 1.68298 1.69998 1.71695 1.73348 1.75087 1.76812 1.78586 1.80274 1.81949 1.83532 1.85134 1.86683 1.88297 1.89868 1.91472 1.93011 1.94553 1.9601 1.9747 1.98857 2.00235 2.01557 2.02839 2.04042 2.05136 2.06108 2.06834 2.07237 2.07324 2.0713 2.06221 2.04293 2.012 1.96603 1.90951 1.84938 1.81905 1.81616 1.82282 1.83142 1.84336 1.85602 1.86712 1.87814 1.88752 1.89706 1.90489 1.91317 1.91961 1.92705 1.93318 1.94064 1.94667 1.95423 1.96009 1.9674 1.97072 1.28251 1.30446 1.33325 1.36211 1.39127 1.42157 1.45317 1.48611 1.51825 1.55084 1.58397 1.61601 1.64829 1.67918 1.71052 1.73999 1.76991 1.79823 1.82582 1.85336 1.87824 1.90462 1.92721 1.9506 1.97005 1.98221 1.98192 1.97291 1.94655 1.88409 1.74517 1.58769 1.50088 1.48613 1.50052 1.52168 1.54565 1.57362 1.59931 1.62363 1.6467 1.66928 1.69012 1.70963 1.72716 1.74437 1.7612 1.77888 1.79628 1.81383 1.83041 1.84681 1.8624 1.87815 1.89355 1.90929 1.92463 1.94031 1.95547 1.97072 1.98532 1.99988 2.01367 2.02739 2.04051 2.05347 2.06593 2.07802 2.08932 2.09976 2.10905 2.11607 2.12049 2.12146 2.12003 2.11196 2.0938 2.06408 2.01762 1.95976 1.89752 1.86545 1.8604 1.86688 1.87493 1.88551 1.89801 1.90874 1.91955 1.92858 1.93804 1.94571 1.95377 1.95988 1.96709 1.97289 1.97992 1.98529 1.99183 1.99457 1.30668 1.32274 1.34774 1.37505 1.40233 1.42981 1.45867 1.48911 1.52002 1.55095 1.58187 1.61302 1.64344 1.67416 1.70333 1.73304 1.76105 1.78925 1.81634 1.84241 1.86856 1.89213 1.91648 1.93638 1.95212 1.95369 1.94573 1.92202 1.86847 1.73899 1.57913 1.48417 1.46776 1.48272 1.50575 1.53394 1.56547 1.594 1.61968 1.64456 1.66812 1.6907 1.71144 1.73133 1.75032 1.76955 1.78822 1.80691 1.82465 1.84209 1.8585 1.8748 1.89031 1.90593 1.92087 1.93604 1.95084 1.96599 1.98075 1.99571 2.01002 2.02426 2.03772 2.05119 2.06391 2.07678 2.08907 2.10137 2.11321 2.12475 2.13566 2.1458 2.15495 2.16199 2.16691 2.16801 2.167 2.1599 2.14282 2.11394 2.06749 2.00809 1.94436 1.91053 1.90315 1.9093 1.91648 1.92574 1.93845 1.94854 1.95908 1.96783 1.97726 1.98471 1.99261 1.99857 2.00572 2.01097 2.01723 2.01973 1.33326 1.34019 1.35964 1.38686 1.41387 1.44066 1.46723 1.49497 1.52367 1.55283 1.58254 1.61149 1.64098 1.66968 1.69863 1.7263 1.75425 1.78104 1.80753 1.83357 1.85812 1.88263 1.90381 1.92155 1.92478 1.91781 1.89536 1.84855 1.72604 1.56541 1.46248 1.44433 1.46026 1.48522 1.51611 1.55108 1.58179 1.60987 1.63627 1.66228 1.68656 1.70934 1.73013 1.75051 1.77058 1.79108 1.811 1.83066 1.84914 1.86732 1.88451 1.90133 1.91702 1.93238 1.94696 1.96184 1.97636 1.99139 2.00594 2.02075 2.03473 2.04879 2.06193 2.07514 2.08758 2.10023 2.11231 2.12458 2.13646 2.14824 2.15973 2.17082 2.1814 2.19134 2.20036 2.20742 2.21284 2.21402 2.21322 2.20698 2.19112 2.16254 2.11638 2.05573 1.99093 1.95485 1.94562 1.95089 1.95708 1.96576 1.97823 1.98728 1.99753 2.00592 2.01549 2.0223 2.03014 2.03559 2.04214 2.0447 1.37181 1.36703 1.37777 1.39833 1.42491 1.45091 1.47621 1.50249 1.52907 1.5565 1.58409 1.61239 1.63959 1.66768 1.69466 1.72228 1.7485 1.77506 1.80057 1.82556 1.84987 1.87182 1.89075 1.89603 1.889 1.86982 1.82397 1.7122 1.55082 1.4396 1.41908 1.43478 1.46013 1.49345 1.53055 1.56384 1.59383 1.6231 1.65118 1.67814 1.70268 1.72579 1.74736 1.76859 1.78914 1.80989 1.8304 1.85102 1.87095 1.89047 1.90861 1.92602 1.94214 1.95795 1.97296 1.98809 2.00265 2.01749 2.03169 2.04611 2.05977 2.07356 2.08651 2.09957 2.11191 2.12436 2.13628 2.1483 2.15997 2.17163 2.18309 2.19437 2.20538 2.21614 2.22629 2.23599 2.24467 2.25165 2.25718 2.25834 2.25755 2.25206 2.23721 2.20937 2.16428 2.10257 2.03754 1.99865 1.98807 1.99168 1.99742 2.00542 2.01742 2.02544 2.03538 2.04322 2.05259 2.05862 2.06595 2.06855 1.40568 1.39352 1.39908 1.415 1.43813 1.46294 1.48676 1.51102 1.53574 1.56117 1.58731 1.61338 1.64026 1.66607 1.69261 1.71825 1.74443 1.76951 1.79466 1.81864 1.84114 1.86047 1.86718 1.86074 1.84244 1.79742 1.69734 1.53044 1.41258 1.39101 1.40673 1.4329 1.46796 1.50738 1.54229 1.57404 1.60423 1.63394 1.66225 1.68936 1.71469 1.73916 1.76234 1.78503 1.80658 1.82785 1.84855 1.86962 1.89035 1.91078 1.93002 1.9484 1.96548 1.98197 1.99751 2.01279 2.02745 2.04212 2.05632 2.07061 2.08433 2.09801 2.11102 2.1239 2.13612 2.14825 2.15988 2.17154 2.18285 2.19431 2.20547 2.21678 2.22775 2.23868 2.24927 2.25958 2.26941 2.27877 2.28723 2.29419 2.29985 2.30108 2.30041 2.2956 2.28188 2.255 2.21065 2.14916 2.08351 2.0414 2.03031 2.03167 2.03703 2.04435 2.05529 2.06273 2.07241 2.07944 2.08805 2.09082 1.47945 1.42855 1.42298 1.43158 1.44946 1.47464 1.49848 1.5215 1.5445 1.56748 1.59161 1.61641 1.64103 1.66666 1.69113 1.71634 1.74066 1.76524 1.78878 1.81118 1.8305 1.83836 1.83217 1.8143 1.77015 1.67765 1.50329 1.38205 1.36032 1.37694 1.40418 1.44108 1.48238 1.51894 1.55162 1.58287 1.61325 1.64311 1.67164 1.69925 1.72542 1.75074 1.77478 1.79812 1.82052 1.84277 1.86434 1.88581 1.90659 1.9273 1.94714 1.96648 1.98452 2.00191 2.01823 2.03436 2.04977 2.06516 2.07986 2.09449 2.10838 2.12214 2.13516 2.14807 2.16025 2.17238 2.18387 2.19537 2.20642 2.21752 2.22837 2.23925 2.24997 2.26064 2.27115 2.28149 2.29162 2.30152 2.31096 2.32014 2.32838 2.33545 2.34121 2.34257 2.34214 2.33787 2.3252 2.29974 2.2551 2.19511 2.13021 2.08371 2.07167 2.07022 2.07576 2.08202 2.09116 2.09813 2.10707 2.11065 1.62402 1.47704 1.45193 1.45178 1.46386 1.48311 1.50745 1.53066 1.55313 1.57548 1.59751 1.62051 1.64387 1.66759 1.69163 1.71541 1.73886 1.76202 1.78352 1.8028 1.81067 1.80418 1.78588 1.7422 1.64737 1.47769 1.35355 1.33152 1.34781 1.37491 1.41253 1.45573 1.49398 1.52816 1.56004 1.59116 1.62132 1.65093 1.67949 1.7075 1.73446 1.76066 1.7856 1.8098 1.83306 1.85598 1.87826 1.90032 1.92159 1.94249 1.96261 1.98246 2.00142 2.01988 2.03728 2.0543 2.0704 2.0864 2.10151 2.11671 2.13099 2.14544 2.15883 2.17237 2.18479 2.19736 2.20892 2.22063 2.23156 2.2426 2.25309 2.26369 2.27388 2.28425 2.29422 2.30443 2.31416 2.32411 2.33361 2.34313 2.35223 2.36115 2.36923 2.37637 2.38222 2.38376 2.38363 2.38002 2.36765 2.34379 2.29845 2.24234 2.17624 2.12587 2.11246 2.10793 2.11324 2.11767 2.12436 2.12852 1.85734 1.56822 1.48783 1.47538 1.47996 1.49456 1.5159 1.53935 1.56166 1.58328 1.60459 1.62587 1.64767 1.66984 1.69262 1.71502 1.73765 1.75854 1.77742 1.78501 1.77832 1.75941 1.71532 1.61774 1.45016 1.32321 1.30112 1.31786 1.3454 1.38404 1.42847 1.46851 1.50403 1.53691 1.56819 1.59879 1.6286 1.65827 1.6873 1.71604 1.74358 1.77017 1.7954 1.81985 1.84346 1.86687 1.88981 1.9126 1.93473 1.95634 1.97697 1.99707 2.01655 2.0358 2.0543 2.07233 2.0895 2.10631 2.12241 2.13813 2.15317 2.16779 2.1818 2.19541 2.2085 2.2212 2.23337 2.24513 2.25633 2.26722 2.27756 2.28789 2.29767 2.30776 2.31731 2.32726 2.33672 2.34643 2.35583 2.36516 2.37443 2.38343 2.39228 2.4009 2.40876 2.4159 2.42158 2.42341 2.42349 2.42 2.40916 2.38554 2.33999 2.28977 2.21961 2.16879 2.15114 2.14544 2.14594 2.14783 2.28239 1.76559 1.55401 1.50963 1.50301 1.50974 1.52515 1.5474 1.56893 1.59021 1.61108 1.63184 1.65272 1.67361 1.69469 1.71591 1.73603 1.75415 1.76133 1.75414 1.73449 1.68942 1.58946 1.42263 1.29245 1.27041 1.28808 1.31664 1.35653 1.40145 1.44292 1.47996 1.51363 1.5454 1.576 1.60631 1.63627 1.66637 1.6958 1.72467 1.7521 1.77864 1.80391 1.82876 1.85296 1.87708 1.90062 1.92391 1.94644 1.96855 1.98987 2.01071 2.03073 2.05041 2.06955 2.08842 2.1064 2.12402 2.14071 2.15723 2.17279 2.18827 2.20276 2.21724 2.23067 2.2441 2.25641 2.26872 2.27989 2.29114 2.3013 2.31174 2.32123 2.3312 2.3404 2.35014 2.3593 2.36878 2.37794 2.38706 2.39613 2.40498 2.41381 2.42252 2.43098 2.43939 2.44698 2.45398 2.45955 2.46139 2.46153 2.45828 2.44823 2.4246 2.38511 2.32993 2.25816 2.21407 2.18342 2.17868 2.56798 2.08012 1.69132 1.55147 1.52858 1.52809 1.53838 1.554 1.57624 1.59686 1.61725 1.63702 1.65725 1.67717 1.69741 1.71647 1.73348 1.7397 1.73171 1.71109 1.6645 1.56167 1.39424 1.26073 1.23948 1.25881 1.28892 1.3307 1.37556 1.41752 1.45546 1.49014 1.52254 1.55374 1.58422 1.61463 1.64478 1.67481 1.70403 1.73257 1.75996 1.78665 1.81241 1.83777 1.86245 1.88686 1.91069 1.93431 1.95735 1.98014 2.00217 2.02376 2.04445 2.0646 2.08398 2.10323 2.12189 2.14023 2.15769 2.17478 2.19104 2.20692 2.22197 2.2367 2.25066 2.26435 2.27735 2.29006 2.30205 2.31374 2.32462 2.33534 2.34519 2.35517 2.36431 2.3738 2.3826 2.3917 2.40046 2.40915 2.41795 2.42632 2.43507 2.44329 2.45192 2.4601 2.46834 2.47641 2.48367 2.49046 2.49578 2.49747 2.49756 2.49466 2.48462 2.46157 2.42473 2.36384 2.29731 2.262 2.76815 2.44014 1.93171 1.64381 1.56048 1.5485 1.55111 1.56404 1.58146 1.60418 1.62417 1.64402 1.66254 1.68153 1.69913 1.71532 1.72034 1.71129 1.68943 1.64069 1.53433 1.36458 1.22812 1.20833 1.22983 1.26211 1.30608 1.35117 1.39301 1.43143 1.46685 1.50017 1.53194 1.56299 1.5935 1.62395 1.65394 1.68371 1.71273 1.74126 1.76887 1.79585 1.82199 1.84759 1.87254 1.89716 1.92133 1.94519 1.96857 1.99146 2.01371 2.03542 2.05646 2.07709 2.09704 2.11665 2.13571 2.1546 2.17266 2.19026 2.20693 2.22329 2.23872 2.25399 2.26838 2.28271 2.29614 2.30951 2.32188 2.33418 2.34538 2.35658 2.36669 2.37695 2.38622 2.39582 2.40461 2.41373 2.42236 2.43101 2.43963 2.4478 2.45644 2.46417 2.47282 2.48037 2.4888 2.49646 2.50437 2.51194 2.51888 2.52512 2.53008 2.53147 2.53131 2.52799 2.51863 2.49238 2.45235 2.42399 2.87446 2.70656 2.34664 1.84797 1.63286 1.58066 1.5725 1.57609 1.58969 1.60878 1.63112 1.65055 1.66992 1.68601 1.70102 1.70364 1.6933 1.66976 1.61795 1.507 1.33211 1.19531 1.17778 1.20233 1.23678 1.28292 1.32839 1.37018 1.40859 1.44453 1.47857 1.51125 1.54283 1.57381 1.6042 1.63442 1.66414 1.69369 1.72256 1.75106 1.77868 1.80579 1.83206 1.8579 1.88312 1.90797 1.9323 1.95618 1.97947 2.00227 2.0245 2.04631 2.06763 2.08855 2.109 2.12901 2.14844 2.16752 2.18604 2.20413 2.22133 2.23813 2.25409 2.26978 2.28465 2.29938 2.3133 2.32712 2.34009 2.35296 2.36489 2.37669 2.38753 2.3982 2.40805 2.41773 2.42681 2.43573 2.44436 2.45269 2.46108 2.46894 2.47727 2.48462 2.49307 2.49999 2.50848 2.51524 2.52346 2.5303 2.53782 2.54458 2.55106 2.55636 2.56083 2.56171 2.56118 2.55745 2.54423 2.53802 2.93165 2.84412 2.64818 2.21734 1.80535 1.63253 1.59942 1.59495 1.60061 1.61486 1.63497 1.6556 1.67324 1.68858 1.69031 1.67857 1.65291 1.59684 1.47982 1.29743 1.16294 1.14921 1.17598 1.2129 1.26119 1.30696 1.34872 1.38697 1.42296 1.45762 1.49118 1.52375 1.55532 1.58616 1.61634 1.6462 1.67555 1.7047 1.73327 1.76152 1.78911 1.81627 1.84275 1.86875 1.89409 1.9189 1.94312 1.96682 1.99001 2.01276 2.03505 2.0569 2.07836 2.09939 2.12003 2.14027 2.16 2.17927 2.19794 2.2163 2.23395 2.25112 2.26755 2.28366 2.299 2.31414 2.32852 2.34273 2.35621 2.36952 2.38205 2.39435 2.4059 2.41704 2.42758 2.43758 2.44715 2.45618 2.46502 2.47335 2.48168 2.48955 2.4976 2.50499 2.51295 2.51982 2.52775 2.53412 2.54208 2.54806 2.5559 2.56168 2.56894 2.57452 2.58064 2.58492 2.58854 2.58916 2.58807 2.58972 2.9626 2.9162 2.80736 2.52902 2.06596 1.74395 1.63526 1.61603 1.61533 1.6243 1.63862 1.65742 1.67369 1.67723 1.66493 1.63694 1.57551 1.4521 1.26244 1.13232 1.12143 1.14982 1.18991 1.24041 1.28661 1.32835 1.36662 1.40283 1.43776 1.47191 1.50517 1.53754 1.56886 1.59943 1.62919 1.65861 1.68749 1.7162 1.74441 1.7724 1.7998 1.82683 1.85321 1.87909 1.90437 1.92908 1.95327 1.97691 2.00007 2.02272 2.04494 2.06673 2.08817 2.1092 2.12993 2.15022 2.17013 2.18957 2.20846 2.22691 2.24487 2.26236 2.27924 2.29576 2.31161 2.3272 2.3421 2.35673 2.37072 2.38443 2.39752 2.41027 2.42249 2.43414 2.44543 2.45596 2.46619 2.47561 2.48481 2.49329 2.5016 2.50941 2.51713 2.52437 2.53181 2.53853 2.54584 2.55209 2.55933 2.56513 2.57228 2.57771 2.58462 2.58966 2.59612 2.60054 2.60603 2.60929 2.61197 2.61373 2.98233 2.95455 2.8981 2.76406 2.45131 1.97818 1.7242 1.64914 1.63498 1.63553 1.64388 1.65682 1.66315 1.65062 1.62024 1.55034 1.41927 1.22456 1.10231 1.09525 1.1241 1.16691 1.21959 1.26645 1.30824 1.34662 1.38307 1.41839 1.45288 1.48668 1.51962 1.55168 1.58271 1.61293 1.6423 1.67124 1.69961 1.7278 1.75552 1.78307 1.81007 1.83678 1.86287 1.88856 1.91366 1.93826 1.96233 1.98589 2.00893 2.03155 2.05372 2.07555 2.09701 2.11812 2.13886 2.15918 2.17907 2.19852 2.21746 2.23599 2.25405 2.2718 2.28908 2.30604 2.3224 2.33845 2.35384 2.36887 2.3833 2.39735 2.41091 2.42402 2.4368 2.44887 2.46082 2.47176 2.48266 2.49243 2.50215 2.51085 2.51945 2.52733 2.53506 2.54227 2.5495 2.55609 2.56302 2.56904 2.57572 2.5812 2.58763 2.59265 2.59878 2.60343 2.6092 2.61346 2.6187 2.62234 2.62641 2.62838 2.98972 2.97868 2.94633 2.88167 2.71859 2.39159 1.92973 1.72237 1.66842 1.65448 1.65258 1.65091 1.63872 1.60532 1.52378 1.37828 1.18235 1.07238 1.07026 1.09887 1.14277 1.197 1.24493 1.28728 1.32567 1.36209 1.39757 1.43251 1.46682 1.50035 1.53294 1.56458 1.59521 1.62505 1.65408 1.68262 1.71059 1.73831 1.76554 1.79259 1.81912 1.8454 1.87112 1.89641 1.92115 1.94538 1.9692 1.99257 2.0156 2.03829 2.06061 2.08259 2.10419 2.12538 2.14616 2.16648 2.18637 2.20582 2.22482 2.24346 2.26168 2.2796 2.29713 2.31433 2.33099 2.34735 2.3631 2.37851 2.39338 2.40788 2.42192 2.4355 2.44875 2.46129 2.47372 2.48511 2.49653 2.50673 2.517 2.52603 2.53514 2.54317 2.55125 2.55847 2.56582 2.5723 2.57913 2.58493 2.59128 2.59642 2.6023 2.60687 2.61225 2.61637 2.62129 2.62501 2.62946 2.63274 2.63645 2.63843 2.99546 2.98812 2.97493 2.93872 2.86187 2.68172 2.31356 1.90136 1.72092 1.67918 1.66257 1.64188 1.59824 1.50122 1.33015 1.13563 1.04249 1.04714 1.07523 1.12018 1.17497 1.22357 1.26649 1.30511 1.34124 1.37628 1.4109 1.44517 1.47886 1.51181 1.54388 1.57513 1.60546 1.63511 1.66399 1.69239 1.72011 1.74749 1.77429 1.80085 1.82683 1.85254 1.87768 1.90244 1.92676 1.95066 1.97423 1.99745 2.02037 2.04306 2.06546 2.08761 2.10942 2.13082 2.15181 2.17228 2.19232 2.2119 2.23105 2.24984 2.26823 2.28632 2.30402 2.3214 2.33824 2.35483 2.37085 2.38658 2.40183 2.41676 2.4312 2.44526 2.45887 2.47189 2.48464 2.49647 2.50824 2.51883 2.52962 2.53896 2.54871 2.55693 2.56558 2.57288 2.58053 2.58703 2.59386 2.59959 2.60572 2.61069 2.61612 2.62035 2.62509 2.62865 2.63279 2.6358 2.63943 2.64196 2.645 2.64643 2.99729 2.99457 2.98572 2.97011 2.92566 2.83596 2.61197 2.20988 1.85367 1.71496 1.66836 1.61221 1.49455 1.28134 1.08193 1.00654 1.01741 1.04687 1.09479 1.14965 1.19868 1.24223 1.28175 1.3188 1.35433 1.38896 1.42289 1.45625 1.48903 1.52127 1.55282 1.58372 1.61388 1.64339 1.6721 1.70026 1.72774 1.75481 1.7813 1.80749 1.83317 1.85858 1.88356 1.90821 1.93252 1.95641 1.97997 2.00315 2.02601 2.04854 2.0707 2.09254 2.11399 2.13507 2.15578 2.17614 2.19613 2.21581 2.23509 2.25402 2.27257 2.29068 2.30844 2.32583 2.34285 2.35958 2.37591 2.39196 2.40765 2.423 2.43793 2.45248 2.46655 2.48012 2.49324 2.50571 2.51782 2.52905 2.5401 2.55 2.56008 2.56872 2.57781 2.58537 2.59343 2.6 2.60703 2.61268 2.6187 2.62343 2.6285 2.63233 2.63654 2.63955 2.64304 2.6454 2.64831 2.65018 2.65252 2.65351 2.99857 2.99722 2.99236 2.98489 2.96045 2.91472 2.80148 2.53321 2.0958 1.79763 1.66379 1.52377 1.25566 1.02299 0.952433 0.968944 1.00548 1.05989 1.1161 1.16522 1.20906 1.24959 1.28797 1.32471 1.36008 1.39439 1.42791 1.46087 1.49328 1.52515 1.55635 1.5869 1.61666 1.64578 1.67416 1.70203 1.72925 1.75608 1.78233 1.80832 1.83382 1.85911 1.88403 1.90866 1.93299 1.95692 1.98052 2.00369 2.02647 2.04886 2.07085 2.0925 2.1138 2.13476 2.1554 2.17575 2.19574 2.21548 2.2348 2.25379 2.2724 2.29056 2.30844 2.32591 2.34308 2.35998 2.37656 2.3929 2.40891 2.42461 2.43997 2.45495 2.46952 2.48358 2.49721 2.51019 2.52281 2.53462 2.54622 2.55682 2.56736 2.5767 2.58614 2.59423 2.60256 2.60943 2.61661 2.62233 2.62834 2.63298 2.63782 2.64154 2.64526 2.64821 2.65102 2.65336 2.65551 2.65737 2.65898 2.66034 2.99934 2.9982 2.99645 2.99046 2.98069 2.95042 2.89303 2.74687 2.44308 1.96948 1.63618 1.28041 0.953693 0.86573 0.890568 0.933228 0.996358 1.06009 1.11379 1.16031 1.20326 1.24405 1.28282 1.31969 1.35494 1.38897 1.42214 1.45471 1.48667 1.51802 1.54865 1.57862 1.60786 1.63655 1.66462 1.69225 1.71932 1.74604 1.77225 1.79822 1.82377 1.84916 1.87424 1.89909 1.92368 1.94789 1.97176 1.99517 2.01814 2.04066 2.06274 2.08444 2.10581 2.12689 2.14769 2.16826 2.18844 2.20843 2.22799 2.24734 2.2664 2.28507 2.3035 2.32152 2.33926 2.35668 2.37379 2.39062 2.40711 2.42329 2.43911 2.4545 2.46956 2.48393 2.49807 2.51132 2.5244 2.53649 2.54847 2.55936 2.57022 2.57988 2.58956 2.59798 2.60645 2.6136 2.62084 2.62678 2.63272 2.63754 2.64217 2.64596 2.64937 2.65227 2.65466 2.65684 2.65842 2.66004 2.66125 2.66278 2.99954 2.99871 2.99751 2.99308 2.98644 2.96353 2.92422 2.81158 2.58678 2.10736 1.51703 0.943808 0.675398 0.71113 0.762013 0.829384 0.892919 0.950871 1.00597 1.05906 1.10965 1.15743 1.20262 1.24553 1.2865 1.32591 1.36403 1.40106 1.43702 1.47194 1.50576 1.53853 1.57025 1.60109 1.63107 1.66042 1.68909 1.71732 1.74498 1.77231 1.79914 1.82568 1.8518 1.8776 1.90306 1.92811 1.9528 1.97702 2.00083 2.02418 2.04714 2.06966 2.09188 2.11373 2.13531 2.15664 2.17762 2.19844 2.21883 2.23896 2.25872 2.27804 2.29703 2.31555 2.33372 2.35153 2.36902 2.38623 2.40315 2.4198 2.43611 2.45203 2.46762 2.48254 2.49723 2.51103 2.52463 2.53725 2.54972 2.56105 2.57233 2.58234 2.59233 2.60095 2.60959 2.61683 2.62406 2.63005 2.63583 2.64074 2.6451 2.64909 2.65217 2.65534 2.65738 2.65978 2.66107 2.66303 2.66408 2.66602 1.10257 1.29283 1.34718 1.30765 1.23141 1.14439 1.06494 1.02552 1.01969 1.02241 1.02454 1.02493 1.02356 1.02205 1.02077 1.02158 1.02488 1.02916 1.03418 1.0399 1.04603 1.05227 1.0587 1.06532 1.07206 1.07877 1.08532 1.09158 1.09751 1.10306 1.10823 1.11303 1.11756 1.12184 1.12569 1.12885 1.13099 1.13161 1.13034 1.12753 1.11892 1.09819 1.04878 0.935255 0.683774 0.283453 0.114574 0.147816 0.104571 0.0676223 0.0456391 0.0813691 0.131373 0.179933 0.225521 0.267058 0.304624 0.340135 0.37551 0.410423 0.443742 0.475511 0.50595 0.535197 0.563376 0.590406 0.616343 0.641104 0.664826 0.687531 0.709431 0.730593 0.751228 0.771357 0.791134 0.810518 0.829718 0.848552 0.867395 0.885796 0.904365 0.922295 0.940689 0.958009 0.976287 0.993039 1.01099 1.02756 1.04481 1.06142 1.07761 1.09425 1.1093 1.12572 1.13964 1.1557 1.16822 1.1832 1.19294 1.20319 1.14213 1.25783 1.32291 1.36222 1.4023 1.43351 1.44352 1.43947 1.42437 1.40287 1.38574 1.38099 1.38186 1.38396 1.38618 1.38747 1.38877 1.39017 1.392 1.39458 1.39758 1.40121 1.40554 1.41022 1.41486 1.41944 1.42403 1.42867 1.43337 1.43809 1.44279 1.44742 1.45192 1.45632 1.46045 1.46447 1.46768 1.46956 1.46997 1.46884 1.4629 1.44612 1.40552 1.31071 1.10276 0.717275 0.39947 0.29626 0.327085 0.385559 0.43887 0.480874 0.516885 0.552989 0.589113 0.622953 0.653539 0.681658 0.709058 0.735865 0.762058 0.78647 0.810173 0.832271 0.854136 0.874501 0.894737 0.913429 0.932401 0.949878 0.967944 0.984313 1.00132 1.01669 1.03246 1.0472 1.06171 1.07623 1.08954 1.10408 1.11658 1.13105 1.14339 1.15806 1.17027 1.1853 1.19739 1.21266 1.22456 1.23996 1.2516 1.26699 1.27834 1.29369 1.30474 1.31999 1.33042 1.34509 1.35324 1.36451 1.13959 1.247 1.34278 1.43545 1.52048 1.58718 1.61961 1.62225 1.61722 1.6032 1.58398 1.56941 1.56116 1.5592 1.55988 1.561 1.56256 1.56417 1.56562 1.56719 1.56903 1.57122 1.57382 1.57677 1.57995 1.58334 1.5869 1.59062 1.59446 1.59842 1.60252 1.60666 1.61096 1.61511 1.6195 1.62341 1.62737 1.6295 1.63044 1.63013 1.6266 1.61442 1.5845 1.5118 1.35237 1.03431 0.695858 0.569962 0.600916 0.671599 0.743919 0.796958 0.836745 0.866137 0.888741 0.909031 0.928034 0.945704 0.962341 0.978606 0.996163 1.01261 1.02981 1.04565 1.06139 1.07632 1.09074 1.10504 1.11825 1.13204 1.1443 1.15758 1.16939 1.18231 1.19378 1.20646 1.21766 1.23025 1.2413 1.25368 1.26443 1.27643 1.28667 1.29816 1.30789 1.31897 1.32831 1.33913 1.34819 1.3589 1.36771 1.3784 1.38697 1.39773 1.40614 1.41721 1.42529 1.43638 1.44285 1.45154 1.1462 1.2556 1.35494 1.44669 1.52766 1.59561 1.64817 1.68547 1.70579 1.71036 1.70862 1.70163 1.69083 1.6813 1.6759 1.6749 1.67579 1.67728 1.67946 1.68178 1.68372 1.68554 1.68743 1.68955 1.692 1.69476 1.69781 1.70107 1.70453 1.70813 1.7119 1.71567 1.71976 1.72359 1.72791 1.73154 1.73523 1.73704 1.7378 1.73737 1.73352 1.72188 1.69415 1.63206 1.51086 1.29656 1.02144 0.856244 0.876333 0.924196 0.977879 1.02362 1.05547 1.07521 1.08683 1.09661 1.10394 1.11038 1.11695 1.12415 1.1318 1.14138 1.15256 1.16474 1.1762 1.18831 1.19907 1.21061 1.22121 1.2327 1.24332 1.25491 1.2655 1.27703 1.28761 1.29927 1.3099 1.32146 1.33179 1.34302 1.35298 1.36384 1.37339 1.38386 1.39298 1.40306 1.4118 1.4215 1.42983 1.43912 1.44703 1.45593 1.46342 1.47192 1.47894 1.48705 1.49366 1.50154 1.50696 1.51155 1.14638 1.25385 1.35006 1.43807 1.51809 1.58947 1.65257 1.70542 1.74655 1.77344 1.78413 1.78424 1.78211 1.776 1.76755 1.76095 1.7564 1.75517 1.75566 1.75678 1.75847 1.76067 1.76297 1.76521 1.76745 1.76985 1.77241 1.77526 1.77825 1.78164 1.78502 1.7887 1.79248 1.79611 1.80006 1.80329 1.80579 1.80685 1.80699 1.80491 1.79744 1.77842 1.73604 1.64768 1.50912 1.36616 1.25278 1.12891 1.06105 1.05261 1.07486 1.10159 1.13199 1.15543 1.17293 1.18542 1.19341 1.19966 1.20473 1.2094 1.21407 1.21952 1.2267 1.23656 1.24769 1.25883 1.26952 1.2803 1.29077 1.3015 1.31202 1.32289 1.33358 1.34468 1.35547 1.36651 1.37711 1.38787 1.39813 1.40853 1.41841 1.42841 1.43786 1.44742 1.45644 1.46559 1.47423 1.48298 1.49119 1.49944 1.5071 1.51483 1.52199 1.52928 1.53589 1.54239 1.54821 1.55339 1.55805 1.55998 1.14095 1.24311 1.33723 1.42298 1.50158 1.57314 1.63703 1.69341 1.741 1.78006 1.80992 1.82907 1.8372 1.83783 1.83654 1.83241 1.82637 1.82119 1.81794 1.81737 1.81826 1.81956 1.82168 1.82439 1.82722 1.82981 1.83237 1.83492 1.83756 1.84059 1.84363 1.84745 1.8509 1.85521 1.8585 1.86151 1.86285 1.86311 1.86158 1.85495 1.8384 1.79978 1.72008 1.58596 1.4611 1.40343 1.37069 1.3194 1.25797 1.20654 1.17793 1.17344 1.18691 1.20197 1.22048 1.23875 1.25138 1.2603 1.2676 1.27355 1.27825 1.28237 1.28724 1.29374 1.3023 1.31189 1.32202 1.33238 1.34282 1.3533 1.36387 1.37459 1.38529 1.39601 1.40671 1.41735 1.42786 1.43829 1.44858 1.45875 1.46871 1.47854 1.4882 1.49773 1.50704 1.51616 1.52504 1.53371 1.54212 1.55032 1.55822 1.56582 1.57301 1.57983 1.58621 1.59214 1.59787 1.60254 1.60676 1.60621 1.13874 1.23184 1.31988 1.40206 1.47815 1.54871 1.61324 1.67182 1.72434 1.77014 1.80912 1.84017 1.86329 1.87716 1.88245 1.88257 1.88157 1.87847 1.87412 1.87046 1.86831 1.8677 1.86851 1.86957 1.8715 1.87415 1.87726 1.88011 1.88323 1.88598 1.88937 1.89225 1.89593 1.8989 1.90171 1.90309 1.90334 1.90204 1.89558 1.87985 1.84224 1.76627 1.62712 1.50099 1.44191 1.42933 1.42786 1.4181 1.39696 1.36801 1.33168 1.29398 1.26951 1.2597 1.26374 1.27262 1.28357 1.29663 1.30764 1.31621 1.32346 1.32969 1.33512 1.3404 1.34642 1.35371 1.36221 1.3716 1.38157 1.39206 1.40283 1.4137 1.42459 1.43549 1.44637 1.45721 1.46797 1.47861 1.48911 1.49954 1.50987 1.52005 1.53005 1.53988 1.54952 1.55898 1.5682 1.5772 1.58592 1.59439 1.60262 1.61055 1.61808 1.62515 1.63168 1.6377 1.64357 1.64826 1.65276 1.65228 1.13798 1.22277 1.30503 1.38258 1.45581 1.52371 1.58753 1.6456 1.69967 1.74739 1.79058 1.82725 1.85854 1.88294 1.90083 1.91141 1.91604 1.91638 1.91576 1.91332 1.9101 1.907 1.90513 1.90491 1.90575 1.90708 1.90926 1.91261 1.9161 1.92012 1.92331 1.92704 1.92974 1.93216 1.93304 1.93311 1.93157 1.92532 1.91011 1.87387 1.79913 1.65902 1.52755 1.46091 1.44871 1.45584 1.46494 1.4719 1.47547 1.47265 1.45972 1.43723 1.40592 1.37073 1.34278 1.32683 1.32223 1.32798 1.33475 1.34434 1.35564 1.36487 1.37252 1.37963 1.38624 1.39228 1.39864 1.40598 1.41465 1.42432 1.43463 1.4453 1.45615 1.46703 1.47788 1.4887 1.49947 1.51019 1.52078 1.53127 1.54164 1.55196 1.5622 1.57235 1.58236 1.59221 1.60193 1.61148 1.62085 1.63001 1.63887 1.64744 1.65568 1.66357 1.67095 1.67765 1.68369 1.68871 1.69354 1.69382 1.13845 1.21527 1.29147 1.36459 1.43422 1.49962 1.56118 1.61852 1.6719 1.72103 1.76586 1.8062 1.84202 1.87267 1.89884 1.91896 1.9335 1.94183 1.94577 1.94619 1.94597 1.94454 1.94253 1.94071 1.94006 1.94066 1.94164 1.94303 1.94568 1.94849 1.95215 1.95489 1.95749 1.95809 1.9581 1.95647 1.95018 1.93515 1.8998 1.82579 1.68578 1.54612 1.47129 1.45755 1.46528 1.47777 1.49149 1.50795 1.52372 1.53311 1.53707 1.5347 1.52282 1.50118 1.47144 1.43621 1.40536 1.38372 1.37324 1.3733 1.37904 1.38691 1.39766 1.40807 1.41709 1.42519 1.43212 1.43836 1.4453 1.45336 1.46239 1.47212 1.48232 1.49293 1.50381 1.51477 1.52561 1.53631 1.54685 1.55726 1.56753 1.5777 1.58785 1.59798 1.60808 1.61812 1.6281 1.638 1.64778 1.65742 1.66684 1.6761 1.68497 1.69362 1.70163 1.70923 1.71658 1.72239 1.72762 1.7289 1.14151 1.21078 1.28117 1.34973 1.41586 1.47864 1.53822 1.5941 1.64668 1.69561 1.74119 1.78302 1.82132 1.85553 1.88583 1.91159 1.93323 1.9501 1.96227 1.96928 1.97287 1.97348 1.97339 1.97257 1.97075 1.9694 1.96832 1.96887 1.96973 1.97122 1.97319 1.97595 1.97697 1.97697 1.97551 1.9696 1.95556 1.92134 1.84941 1.70994 1.56266 1.48165 1.46518 1.47185 1.4838 1.50015 1.5178 1.53794 1.5563 1.57343 1.58563 1.5932 1.59533 1.59266 1.58102 1.56058 1.53297 1.4983 1.46463 1.43751 1.42167 1.41705 1.42194 1.42891 1.43917 1.45161 1.46266 1.47225 1.48017 1.4873 1.49447 1.50235 1.51117 1.52073 1.53075 1.5411 1.55163 1.56216 1.57257 1.58283 1.59297 1.60298 1.61292 1.62279 1.63266 1.64257 1.65246 1.66237 1.67212 1.68192 1.69144 1.70097 1.71016 1.71905 1.72776 1.73595 1.74382 1.75042 1.75706 1.75907 1.14629 1.20835 1.27266 1.33666 1.39913 1.45891 1.51618 1.57042 1.62183 1.67004 1.71542 1.75762 1.79701 1.83311 1.86621 1.89578 1.92196 1.94422 1.96265 1.97707 1.98724 1.99323 1.99618 1.99685 1.99666 1.9963 1.99505 1.99434 1.99347 1.99386 1.99441 1.99482 1.99464 1.99311 1.98771 1.97317 1.94153 1.87179 1.73473 1.57879 1.4886 1.46891 1.47492 1.48746 1.50423 1.52336 1.54407 1.56471 1.58375 1.60212 1.61817 1.63154 1.64169 1.64762 1.65002 1.64844 1.63883 1.62013 1.59364 1.55879 1.52142 1.48937 1.46814 1.45892 1.46285 1.46984 1.48025 1.49475 1.50759 1.51815 1.52709 1.53518 1.54304 1.55122 1.55994 1.56922 1.57893 1.58893 1.59907 1.60916 1.61912 1.62895 1.63869 1.64836 1.65791 1.66754 1.67705 1.68672 1.69622 1.70576 1.71522 1.72453 1.73373 1.74267 1.75161 1.75964 1.76836 1.77494 1.78253 1.78518 1.15499 1.21007 1.26827 1.327 1.38558 1.44255 1.49738 1.54965 1.59971 1.647 1.69188 1.73395 1.7736 1.81051 1.84493 1.87653 1.9054 1.93113 1.95383 1.97296 1.9889 2.00111 2.00994 2.01511 2.01785 2.01855 2.01852 2.01829 2.01711 2.01576 2.01449 2.01309 2.01021 2.00315 1.98901 1.95673 1.89094 1.75534 1.59421 1.49631 1.47345 1.47831 1.49037 1.50766 1.52659 1.54876 1.56959 1.58927 1.60769 1.62666 1.64394 1.66043 1.67408 1.68594 1.69492 1.70119 1.7037 1.70275 1.69445 1.67659 1.6504 1.61555 1.57569 1.53888 1.51271 1.5001 1.50349 1.51056 1.52137 1.53705 1.55062 1.5622 1.57238 1.58151 1.59007 1.59863 1.60744 1.61653 1.62592 1.63557 1.6453 1.65508 1.6647 1.67441 1.68393 1.69349 1.70291 1.71228 1.7216 1.7309 1.74012 1.74909 1.75829 1.7667 1.77586 1.78354 1.7925 1.79908 1.80694 1.80989 1.16654 1.21532 1.2672 1.32075 1.37451 1.4278 1.4801 1.53052 1.57869 1.62503 1.66906 1.71102 1.75058 1.78801 1.82307 1.85589 1.88641 1.91444 1.94002 1.96284 1.98276 1.99978 2.0135 2.02434 2.03171 2.0365 2.03857 2.03897 2.03863 2.03776 2.03513 2.03078 2.02326 2.00821 1.9759 1.91201 1.77968 1.61347 1.50408 1.47635 1.47989 1.49208 1.50794 1.52753 1.54994 1.57218 1.59148 1.61039 1.62902 1.64774 1.66529 1.68212 1.69723 1.71163 1.72471 1.73652 1.74572 1.75216 1.75458 1.754 1.74703 1.73063 1.70606 1.67218 1.63038 1.59027 1.55894 1.5425 1.54532 1.55246 1.56327 1.57923 1.5934 1.60539 1.6164 1.62625 1.63518 1.64388 1.65246 1.66125 1.67015 1.67939 1.68874 1.69818 1.70762 1.71718 1.72665 1.73605 1.74546 1.75455 1.76397 1.77267 1.78208 1.79022 1.79953 1.80705 1.81613 1.82277 1.83084 1.83396 1.18226 1.22506 1.27094 1.31915 1.36845 1.41786 1.46625 1.51427 1.56073 1.60527 1.64824 1.68937 1.72865 1.76607 1.80144 1.83495 1.86624 1.89579 1.9228 1.94814 1.97059 1.99115 2.00862 2.02369 2.03579 2.04492 2.05137 2.05419 2.05408 2.05324 2.05023 2.04263 2.02797 1.9966 1.93471 1.80872 1.63842 1.51589 1.48075 1.48183 1.49417 1.50971 1.52758 1.55072 1.57272 1.59294 1.61117 1.63011 1.6484 1.6672 1.68476 1.70197 1.71766 1.73335 1.74804 1.76248 1.77594 1.78802 1.79769 1.80471 1.80797 1.80818 1.8029 1.78872 1.76526 1.73177 1.68866 1.6445 1.60749 1.58692 1.58941 1.59654 1.60701 1.62287 1.63731 1.64956 1.66084 1.671 1.68005 1.68864 1.69692 1.70529 1.71377 1.72254 1.73152 1.74053 1.74978 1.75879 1.76822 1.77695 1.78646 1.79484 1.80442 1.81238 1.82189 1.82934 1.83857 1.84527 1.85351 1.85709 1.19766 1.23593 1.27712 1.32057 1.36556 1.41097 1.45671 1.50108 1.54538 1.58859 1.63001 1.67016 1.70872 1.74565 1.78107 1.81471 1.84671 1.87688 1.90527 1.9318 1.95623 1.97908 1.99895 2.0177 2.0326 2.04634 2.0561 2.06288 2.06373 2.06235 2.05688 2.04472 2.01591 1.95893 1.83981 1.67079 1.53465 1.48821 1.48527 1.4981 1.51229 1.52961 1.55119 1.574 1.59395 1.6128 1.63073 1.64944 1.66806 1.68724 1.70525 1.72276 1.73888 1.75507 1.77048 1.78642 1.80173 1.81661 1.83046 1.84258 1.85249 1.8599 1.86326 1.86377 1.85946 1.84666 1.82381 1.79081 1.74689 1.69942 1.65616 1.63275 1.63502 1.64211 1.65223 1.6677 1.68203 1.69428 1.70543 1.71564 1.72491 1.7333 1.74152 1.74949 1.75786 1.76593 1.77477 1.7829 1.79203 1.80006 1.80938 1.81723 1.82666 1.83428 1.84371 1.85103 1.86021 1.867 1.87507 1.87904 1.21478 1.25014 1.28666 1.32562 1.36586 1.40771 1.44952 1.49195 1.53289 1.57364 1.61422 1.65262 1.69054 1.72673 1.76172 1.79514 1.82746 1.85769 1.88708 1.91421 1.93993 1.96428 1.98574 2.00698 2.02424 2.04107 2.0537 2.06284 2.0637 2.06098 2.05117 2.02858 1.97567 1.87143 1.70108 1.55664 1.49852 1.49199 1.50384 1.51814 1.53401 1.55521 1.57765 1.59879 1.61727 1.6352 1.65271 1.6715 1.69037 1.70953 1.7275 1.74503 1.76159 1.77815 1.79418 1.81075 1.82664 1.84274 1.85781 1.87214 1.88524 1.89668 1.90636 1.91377 1.9173 1.91802 1.91456 1.90287 1.88066 1.84798 1.80306 1.75257 1.70404 1.67842 1.68023 1.68734 1.69711 1.71205 1.72628 1.73835 1.74955 1.75978 1.76945 1.77757 1.78614 1.79367 1.80206 1.80938 1.81803 1.82537 1.8342 1.84149 1.85051 1.85775 1.86684 1.87393 1.88289 1.88955 1.89746 1.90131 1.23054 1.26384 1.29854 1.33363 1.37111 1.40814 1.44703 1.48576 1.52539 1.56329 1.60094 1.63897 1.6747 1.71016 1.74486 1.77693 1.80975 1.83942 1.86892 1.89698 1.92261 1.94866 1.97076 1.99361 2.0127 2.03085 2.04602 2.05362 2.05232 2.04638 2.02842 1.98269 1.88993 1.7235 1.57699 1.50956 1.49833 1.50977 1.52448 1.54121 1.56189 1.58509 1.60615 1.62557 1.6429 1.66045 1.67797 1.69662 1.71501 1.73371 1.75144 1.76909 1.78565 1.80216 1.81822 1.83458 1.85055 1.86681 1.88217 1.89729 1.91133 1.92471 1.93714 1.94833 1.9581 1.96572 1.96947 1.97036 1.96751 1.95677 1.93556 1.90312 1.85778 1.80493 1.75164 1.72434 1.72511 1.73185 1.74138 1.75548 1.76946 1.78127 1.79267 1.8027 1.81264 1.82074 1.82945 1.83662 1.84477 1.85165 1.85997 1.86681 1.87523 1.88213 1.89081 1.8977 1.90645 1.9129 1.92087 1.92445 1.24482 1.27673 1.30888 1.34186 1.37574 1.41199 1.44722 1.48361 1.51987 1.55697 1.59242 1.6274 1.66359 1.69593 1.73052 1.76209 1.793 1.82418 1.85165 1.88104 1.90639 1.93242 1.95642 1.97826 2.00037 2.01757 2.03285 2.03527 2.03123 2.01624 1.98086 1.89154 1.74332 1.59083 1.51553 1.50086 1.51232 1.52919 1.54732 1.57027 1.59396 1.61633 1.63593 1.65434 1.67131 1.68863 1.70568 1.72359 1.7413 1.75943 1.7768 1.79394 1.81004 1.82628 1.842 1.85819 1.87416 1.89039 1.90589 1.92134 1.93577 1.94996 1.96335 1.97636 1.98866 1.99993 2.00999 2.01768 2.02172 2.02262 2.02024 2.0103 1.99002 1.95808 1.91238 1.85756 1.80029 1.77155 1.77059 1.77732 1.78641 1.79948 1.81289 1.82431 1.83557 1.84535 1.85518 1.86319 1.87171 1.87854 1.88631 1.89283 1.90074 1.90718 1.91522 1.92174 1.93009 1.9364 1.94429 1.94781 1.26338 1.29183 1.32103 1.35171 1.38299 1.41579 1.45013 1.48403 1.5181 1.55279 1.58728 1.62055 1.65383 1.68707 1.718 1.75027 1.7798 1.80938 1.83836 1.86473 1.89257 1.91656 1.94185 1.96403 1.98506 2.0037 2.01064 2.00818 1.99746 1.967 1.89386 1.74663 1.59308 1.51214 1.49657 1.50988 1.52873 1.54989 1.57511 1.60002 1.62308 1.64484 1.66439 1.68299 1.7 1.71697 1.73349 1.75087 1.76811 1.78586 1.80273 1.81949 1.83532 1.85134 1.86684 1.88298 1.8987 1.91473 1.93012 1.94555 1.96011 1.97471 1.98858 2.00236 2.01559 2.0284 2.04044 2.05139 2.0611 2.06837 2.0724 2.07328 2.07134 2.06227 2.04302 2.01212 1.96619 1.9097 1.84952 1.81913 1.81619 1.82284 1.83143 1.84336 1.85602 1.86713 1.87815 1.88753 1.89707 1.90491 1.91318 1.91962 1.92706 1.9332 1.94066 1.94669 1.95425 1.9601 1.96741 1.97073 1.28255 1.30449 1.33328 1.36214 1.3913 1.4216 1.4532 1.48614 1.51827 1.55087 1.58399 1.61603 1.64831 1.6792 1.71053 1.74001 1.76993 1.79825 1.82582 1.8534 1.8782 1.90468 1.92715 1.95069 1.96997 1.98244 1.98211 1.97328 1.94738 1.88432 1.74643 1.58945 1.50144 1.4863 1.50052 1.52164 1.54567 1.57367 1.59934 1.62361 1.64665 1.66923 1.69009 1.70962 1.72717 1.74438 1.76122 1.77889 1.7963 1.81384 1.83041 1.8468 1.86239 1.87814 1.89355 1.9093 1.92465 1.94032 1.95548 1.97073 1.98533 1.99989 2.01368 2.02741 2.04052 2.05348 2.06595 2.07804 2.08934 2.09978 2.10907 2.11609 2.12052 2.1215 2.12009 2.11203 2.0939 2.06421 2.01779 1.95996 1.89767 1.86553 1.86043 1.8669 1.87494 1.88552 1.89803 1.90876 1.91957 1.92859 1.93805 1.94573 1.95378 1.95989 1.96711 1.9729 1.97993 1.9853 1.99184 1.99459 1.30671 1.32277 1.34777 1.37508 1.40236 1.42984 1.4587 1.48914 1.52005 1.55097 1.5819 1.61304 1.64345 1.67418 1.70334 1.73305 1.76106 1.78927 1.81634 1.84243 1.86855 1.89216 1.91646 1.93641 1.95215 1.95375 1.94581 1.9221 1.86864 1.73963 1.57916 1.48385 1.46748 1.48254 1.50586 1.53416 1.56566 1.5941 1.6197 1.64455 1.6681 1.69068 1.71143 1.73132 1.75032 1.76955 1.78822 1.80693 1.82468 1.84212 1.85852 1.87482 1.89032 1.90594 1.92088 1.93605 1.95085 1.96601 1.98076 1.99573 2.01004 2.02428 2.03774 2.0512 2.06392 2.07679 2.08908 2.10138 2.11322 2.12476 2.13568 2.14583 2.15498 2.16202 2.16696 2.16806 2.16706 2.15998 2.14292 2.11407 2.06766 2.00828 1.94451 1.9106 1.90318 1.90932 1.9165 1.92574 1.93846 1.94856 1.95909 1.96785 1.97728 1.98473 1.99263 1.99859 2.00573 2.01098 2.01724 2.01975 1.3333 1.34023 1.35967 1.38689 1.4139 1.44069 1.46726 1.495 1.5237 1.55286 1.58256 1.61151 1.641 1.66969 1.69865 1.72631 1.75426 1.78105 1.80755 1.83358 1.85812 1.88264 1.90382 1.92157 1.92482 1.91786 1.89544 1.84867 1.7263 1.56563 1.46257 1.44436 1.46023 1.4852 1.516 1.55097 1.58172 1.60985 1.63629 1.66234 1.68662 1.7094 1.73017 1.75053 1.77059 1.79107 1.81099 1.83065 1.84914 1.86732 1.88452 1.90134 1.91703 1.93239 1.94697 1.96185 1.97638 1.9914 2.00595 2.02077 2.03474 2.0488 2.06194 2.07515 2.08759 2.10024 2.11232 2.12458 2.13648 2.14825 2.15975 2.17083 2.18143 2.19137 2.20038 2.20746 2.21288 2.21406 2.21327 2.20705 2.19121 2.16265 2.11651 2.05592 1.99108 1.95492 1.94565 1.95091 1.95709 1.96577 1.97824 1.98729 1.99754 2.00594 2.0155 2.02231 2.03016 2.0356 2.04215 2.04472 1.37185 1.36707 1.37781 1.39836 1.42494 1.45094 1.47624 1.50252 1.5291 1.55653 1.58412 1.61242 1.63961 1.66769 1.69468 1.7223 1.74851 1.77507 1.80058 1.82557 1.84988 1.87184 1.89077 1.89605 1.88903 1.86988 1.82405 1.71237 1.551 1.43969 1.41911 1.43477 1.46012 1.49343 1.53054 1.56385 1.59385 1.62312 1.6512 1.67815 1.70269 1.72579 1.74736 1.76858 1.78913 1.80988 1.8304 1.85101 1.87095 1.89046 1.90861 1.92602 1.94214 1.95796 1.97296 1.9881 2.00266 2.0175 2.03171 2.04612 2.05979 2.07357 2.08652 2.09958 2.11192 2.12437 2.13629 2.14831 2.15998 2.17164 2.1831 2.19439 2.20539 2.21615 2.22629 2.236 2.24468 2.25167 2.25721 2.25837 2.25758 2.25212 2.2373 2.2095 2.16443 2.10275 2.03771 1.99872 1.98811 1.9917 1.99743 2.00543 2.01744 2.02546 2.03539 2.04323 2.05261 2.05864 2.06597 2.06857 1.40572 1.39355 1.39911 1.41503 1.43816 1.46298 1.48679 1.51105 1.53577 1.5612 1.58733 1.6134 1.64028 1.66609 1.69262 1.71827 1.74444 1.76953 1.79467 1.81865 1.84116 1.86049 1.86721 1.86078 1.8425 1.79751 1.69751 1.53062 1.41267 1.39102 1.40673 1.4329 1.46795 1.50737 1.54227 1.57402 1.60423 1.63395 1.66226 1.68937 1.71469 1.73916 1.76234 1.78504 1.80661 1.82789 1.84859 1.86966 1.89038 1.91081 1.93004 1.94841 1.96548 1.98197 1.99751 2.0128 2.02746 2.04214 2.05634 2.07063 2.08435 2.09803 2.11104 2.12392 2.13614 2.14827 2.15989 2.17155 2.18286 2.19433 2.20549 2.21679 2.22776 2.23869 2.24927 2.25959 2.26942 2.27879 2.28724 2.29421 2.29989 2.30111 2.30045 2.29566 2.28197 2.25511 2.21082 2.14937 2.08366 2.04147 2.03036 2.03168 2.03706 2.04436 2.05531 2.06275 2.07243 2.07945 2.08807 2.09084 1.4795 1.42859 1.42302 1.43162 1.44949 1.47467 1.49851 1.52153 1.54453 1.56751 1.59163 1.61643 1.64105 1.66669 1.69115 1.71636 1.74068 1.76525 1.7888 1.81119 1.83052 1.83839 1.83221 1.81436 1.77024 1.6778 1.50346 1.38215 1.36035 1.37695 1.40419 1.44109 1.48238 1.51892 1.55161 1.58287 1.61326 1.64313 1.67165 1.69926 1.72542 1.75074 1.77478 1.79812 1.82052 1.84276 1.86433 1.88581 1.9066 1.92732 1.94716 1.96649 1.98453 2.00192 2.01823 2.03437 2.04977 2.06517 2.07988 2.0945 2.10839 2.12215 2.13517 2.14808 2.16026 2.17239 2.18387 2.19538 2.20643 2.21753 2.22838 2.23927 2.24998 2.26066 2.27118 2.28151 2.29165 2.30154 2.31099 2.32016 2.3284 2.33547 2.34124 2.3426 2.34218 2.33793 2.32529 2.29986 2.25524 2.19529 2.13037 2.08379 2.07172 2.07025 2.07579 2.08204 2.09117 2.09814 2.10708 2.11066 1.62408 1.47708 1.45197 1.45181 1.46389 1.48314 1.50748 1.53069 1.55316 1.5755 1.59754 1.62054 1.64389 1.66761 1.69165 1.71543 1.73888 1.76204 1.78354 1.80283 1.8107 1.80423 1.78595 1.74229 1.64751 1.47788 1.35366 1.33155 1.34782 1.37492 1.41254 1.45573 1.49397 1.52815 1.56004 1.59117 1.62133 1.65093 1.6795 1.70751 1.73448 1.76069 1.78562 1.80981 1.83307 1.85598 1.87827 1.90034 1.92161 1.9425 1.96262 1.98248 2.00143 2.0199 2.0373 2.05431 2.07041 2.08641 2.10152 2.11672 2.131 2.14545 2.15884 2.17238 2.18481 2.19737 2.20893 2.22064 2.23157 2.24261 2.2531 2.2637 2.2739 2.28427 2.29424 2.30444 2.31419 2.32413 2.33364 2.34315 2.35225 2.36116 2.36924 2.37639 2.38224 2.38379 2.38367 2.38007 2.36772 2.34389 2.29861 2.24252 2.17638 2.12598 2.11251 2.10796 2.11326 2.11768 2.12437 2.12852 1.85741 1.56827 1.48786 1.47541 1.48 1.49459 1.51593 1.53937 1.56169 1.5833 1.60461 1.62589 1.64769 1.66986 1.69265 1.71504 1.73767 1.75856 1.77744 1.78505 1.77837 1.75947 1.71541 1.61787 1.45036 1.32332 1.30116 1.31787 1.3454 1.38405 1.42848 1.46851 1.50402 1.53691 1.5682 1.5988 1.62861 1.65829 1.68732 1.71606 1.74359 1.77017 1.79539 1.81985 1.84348 1.86689 1.88984 1.91262 1.93474 1.95634 1.97697 1.99708 2.01656 2.03581 2.05431 2.07235 2.08951 2.10632 2.12242 2.13815 2.15319 2.16781 2.18182 2.19543 2.20852 2.22122 2.23339 2.24515 2.25635 2.26724 2.27757 2.2879 2.29768 2.30777 2.31732 2.32727 2.33673 2.34644 2.35584 2.36517 2.37444 2.38344 2.3923 2.40091 2.40878 2.41592 2.42161 2.42345 2.42353 2.42005 2.40923 2.38564 2.34012 2.28994 2.21977 2.16889 2.15118 2.14548 2.14595 2.14784 2.28248 1.76564 1.55405 1.50966 1.50304 1.50977 1.52518 1.54742 1.56897 1.59023 1.61111 1.63187 1.65274 1.67363 1.69471 1.71593 1.73605 1.75418 1.76137 1.7542 1.73456 1.68952 1.58959 1.42283 1.29256 1.27046 1.2881 1.31665 1.35652 1.40145 1.44293 1.47997 1.51364 1.54541 1.576 1.60632 1.63629 1.66638 1.69582 1.72468 1.75212 1.77865 1.80393 1.82877 1.85296 1.87708 1.90063 1.92392 1.94646 1.96857 1.9899 2.01073 2.03075 2.05042 2.06956 2.08842 2.1064 2.12402 2.14072 2.15724 2.1728 2.18828 2.20277 2.21725 2.23068 2.24411 2.25643 2.26873 2.2799 2.29115 2.30131 2.31175 2.32124 2.33121 2.34042 2.35015 2.35931 2.36879 2.37795 2.38708 2.39614 2.40499 2.41383 2.42253 2.431 2.43941 2.447 2.45401 2.45957 2.46143 2.46157 2.45832 2.44832 2.4247 2.38522 2.33004 2.25834 2.21423 2.18346 2.17872 2.56805 2.08022 1.69139 1.55151 1.52861 1.52812 1.53841 1.55403 1.57627 1.59688 1.61728 1.63705 1.65727 1.67719 1.69743 1.7165 1.73351 1.73974 1.73177 1.71116 1.66459 1.5618 1.39444 1.26085 1.23953 1.25883 1.28893 1.33069 1.37557 1.41753 1.45547 1.49015 1.52254 1.55374 1.58423 1.61464 1.6448 1.67483 1.70404 1.73259 1.75998 1.78666 1.81242 1.83778 1.86246 1.88688 1.91071 1.93433 1.95737 1.98015 2.00218 2.02377 2.04446 2.06461 2.084 2.10324 2.12191 2.14024 2.15771 2.1748 2.19105 2.20694 2.22198 2.23671 2.25067 2.26436 2.27736 2.29007 2.30206 2.31375 2.32463 2.33535 2.34521 2.35518 2.36433 2.37382 2.38262 2.39172 2.40048 2.40917 2.41797 2.42634 2.43509 2.44331 2.45193 2.46011 2.46836 2.47643 2.48369 2.49049 2.49581 2.49751 2.4976 2.49471 2.48468 2.46168 2.42486 2.36399 2.29746 2.26215 2.76821 2.44021 1.93179 1.64385 1.56052 1.54853 1.55114 1.56407 1.58148 1.60421 1.62419 1.64405 1.66256 1.68156 1.69916 1.71535 1.72038 1.71134 1.6895 1.64078 1.53446 1.36478 1.22824 1.20839 1.22986 1.26212 1.30608 1.35117 1.39302 1.43144 1.46687 1.50018 1.53195 1.563 1.59351 1.62396 1.65395 1.68373 1.71275 1.74127 1.76888 1.79586 1.822 1.8476 1.87255 1.89716 1.92134 1.9452 1.96858 1.99148 2.01373 2.03544 2.05648 2.0771 2.09705 2.11666 2.13572 2.15461 2.17267 2.19028 2.20695 2.2233 2.23873 2.254 2.26839 2.28273 2.29616 2.30952 2.3219 2.33419 2.34539 2.35659 2.3667 2.37696 2.38623 2.39583 2.40461 2.41374 2.42237 2.43103 2.43965 2.44782 2.45646 2.46419 2.47284 2.48039 2.48882 2.49648 2.50439 2.51196 2.5189 2.52514 2.53015 2.53149 2.53132 2.52804 2.51869 2.49247 2.4525 2.42415 2.8745 2.70662 2.3467 1.84803 1.6329 1.58069 1.57253 1.57612 1.58972 1.6088 1.63115 1.65057 1.66995 1.68604 1.70105 1.70368 1.69336 1.66983 1.61805 1.50715 1.33231 1.19543 1.17785 1.20237 1.2368 1.28292 1.32839 1.37019 1.4086 1.44454 1.47858 1.51126 1.54284 1.57382 1.60421 1.63443 1.66415 1.6937 1.72258 1.75108 1.77869 1.8058 1.83208 1.85791 1.88313 1.90798 1.93231 1.95619 1.97948 2.00229 2.02452 2.04632 2.06764 2.08857 2.10901 2.12903 2.14846 2.16754 2.18606 2.20414 2.22135 2.23814 2.2541 2.26979 2.28465 2.29938 2.3133 2.32713 2.3401 2.35298 2.3649 2.3767 2.38754 2.39821 2.40806 2.41774 2.42682 2.43574 2.44437 2.4527 2.4611 2.46895 2.47729 2.48464 2.49309 2.50001 2.5085 2.51526 2.52348 2.53032 2.53784 2.5446 2.55108 2.55639 2.56086 2.56175 2.56122 2.5575 2.5443 2.53811 2.93169 2.84416 2.64825 2.21743 1.80543 1.63257 1.59946 1.59498 1.60064 1.61489 1.635 1.65563 1.67326 1.68862 1.69035 1.67863 1.65299 1.59695 1.47999 1.29762 1.16306 1.14927 1.17603 1.21292 1.26119 1.30697 1.34873 1.38698 1.42298 1.45764 1.49119 1.52377 1.55533 1.58617 1.61635 1.64621 1.67557 1.70472 1.73329 1.76154 1.78913 1.81629 1.84277 1.86876 1.89411 1.91891 1.94313 1.96683 1.99003 2.01277 2.03506 2.05692 2.07837 2.09941 2.12005 2.14029 2.16001 2.17928 2.19796 2.21631 2.23396 2.25113 2.26757 2.28367 2.29901 2.31415 2.32853 2.34275 2.35623 2.36953 2.38206 2.39436 2.40591 2.41705 2.42759 2.43759 2.44717 2.4562 2.46504 2.47336 2.4817 2.48956 2.49762 2.50501 2.51297 2.51983 2.52777 2.53414 2.5421 2.54807 2.55592 2.5617 2.56895 2.57454 2.58066 2.58494 2.58856 2.58918 2.5881 2.58976 2.96263 2.91622 2.80741 2.52909 2.06605 1.74401 1.6353 1.61606 1.61536 1.62433 1.63865 1.65745 1.67372 1.67728 1.66498 1.63703 1.57563 1.45229 1.26263 1.13243 1.12149 1.14986 1.18993 1.24042 1.28662 1.32835 1.36664 1.40284 1.43778 1.47193 1.50518 1.53755 1.56887 1.59944 1.6292 1.65862 1.6875 1.71622 1.74443 1.77242 1.79982 1.82685 1.85323 1.87911 1.90438 1.92909 1.95329 1.97692 2.00008 2.02274 2.04495 2.06674 2.08818 2.10922 2.12994 2.15024 2.17015 2.18958 2.20847 2.22693 2.24488 2.26237 2.27925 2.29577 2.31162 2.32721 2.34211 2.35674 2.37074 2.38444 2.39754 2.41028 2.4225 2.43416 2.44545 2.45597 2.4662 2.47562 2.48482 2.4933 2.50161 2.50942 2.51714 2.52438 2.53183 2.53855 2.54586 2.55211 2.55935 2.56515 2.57229 2.57772 2.58464 2.58968 2.59613 2.60056 2.60605 2.60931 2.612 2.61376 2.98235 2.95458 2.89813 2.76411 2.45138 1.97825 1.72425 1.64917 1.63501 1.63556 1.64391 1.65685 1.6632 1.65068 1.62032 1.55049 1.41948 1.22475 1.10241 1.0953 1.12414 1.16693 1.2196 1.26647 1.30825 1.34663 1.38309 1.41841 1.45291 1.4867 1.51964 1.5517 1.58272 1.61294 1.64231 1.67125 1.69962 1.72782 1.75554 1.78309 1.81009 1.8368 1.86289 1.88858 1.91368 1.93828 1.96235 1.98591 2.00895 2.03156 2.05373 2.07557 2.09702 2.11814 2.13887 2.1592 2.17909 2.19854 2.21747 2.236 2.25406 2.27182 2.2891 2.30605 2.32241 2.33847 2.35385 2.36888 2.38331 2.39737 2.41092 2.42403 2.43681 2.44888 2.46084 2.47177 2.48267 2.49244 2.50217 2.51087 2.51946 2.52734 2.53507 2.54228 2.54951 2.55611 2.56303 2.56906 2.57574 2.58121 2.58765 2.59267 2.5988 2.60345 2.60922 2.61348 2.61872 2.62236 2.62643 2.6284 2.98975 2.9787 2.94636 2.8817 2.71864 2.39164 1.92978 1.72241 1.66845 1.65451 1.65261 1.65095 1.63878 1.60541 1.52394 1.37851 1.18254 1.07247 1.0703 1.09891 1.1428 1.19702 1.24495 1.2873 1.3257 1.36211 1.39759 1.43254 1.46685 1.50038 1.53296 1.5646 1.59522 1.62507 1.6541 1.68264 1.7106 1.73832 1.76556 1.79261 1.81914 1.84542 1.87114 1.89643 1.92117 1.9454 1.96922 1.99259 2.01561 2.0383 2.06063 2.08261 2.1042 2.1254 2.14618 2.1665 2.18638 2.20583 2.22484 2.24347 2.2617 2.27962 2.29715 2.31435 2.33101 2.34736 2.36311 2.37852 2.3934 2.40789 2.42193 2.43551 2.44876 2.4613 2.47373 2.48513 2.49654 2.50674 2.51702 2.52604 2.53515 2.54319 2.55127 2.55848 2.56584 2.57232 2.57914 2.58495 2.5913 2.59644 2.60232 2.60689 2.61227 2.61638 2.62131 2.62503 2.62948 2.63276 2.63647 2.63845 2.99548 2.98814 2.97496 2.93875 2.86192 2.68176 2.3137 1.90144 1.72096 1.67922 1.66261 1.64194 1.59833 1.50137 1.33039 1.13581 1.04256 1.04717 1.07526 1.12021 1.175 1.2236 1.26651 1.30513 1.34125 1.3763 1.41092 1.4452 1.47889 1.51184 1.54391 1.57515 1.60548 1.63513 1.66401 1.6924 1.72013 1.7475 1.7743 1.80086 1.82685 1.85255 1.8777 1.90246 1.92678 1.95068 1.97425 1.99746 2.02039 2.04308 2.06548 2.08763 2.10944 2.13084 2.15183 2.1723 2.19234 2.21191 2.23106 2.24985 2.26825 2.28634 2.30404 2.32141 2.33826 2.35484 2.37086 2.3866 2.40184 2.41677 2.43121 2.44527 2.45888 2.4719 2.48465 2.49648 2.50825 2.51885 2.52963 2.53898 2.54872 2.55695 2.5656 2.5729 2.58055 2.58704 2.59388 2.59961 2.60574 2.61071 2.61614 2.62037 2.62511 2.62867 2.63281 2.63582 2.63945 2.64198 2.64502 2.64645 2.99731 2.99459 2.98574 2.97014 2.92571 2.83599 2.61208 2.20997 1.85373 1.71502 1.66841 1.6123 1.4947 1.28158 1.08212 1.00662 1.01746 1.0469 1.09481 1.14968 1.19872 1.24227 1.28179 1.31883 1.35436 1.38898 1.42291 1.45627 1.48905 1.52129 1.55284 1.58374 1.61391 1.64341 1.67212 1.70028 1.72776 1.75483 1.78132 1.80751 1.83319 1.8586 1.88358 1.90823 1.93254 1.95643 1.97999 2.00317 2.02603 2.04856 2.07072 2.09255 2.114 2.13509 2.1558 2.17615 2.19615 2.21582 2.2351 2.25404 2.27259 2.2907 2.30846 2.32585 2.34286 2.3596 2.37592 2.39197 2.40767 2.42302 2.43795 2.4525 2.46656 2.48013 2.49326 2.50572 2.51783 2.52907 2.54012 2.55001 2.56009 2.56874 2.57783 2.58538 2.59345 2.60002 2.60705 2.6127 2.61872 2.62345 2.62852 2.63235 2.63656 2.63957 2.64306 2.64542 2.64833 2.6502 2.65254 2.65353 2.99859 2.99724 2.99238 2.98491 2.96048 2.91475 2.80155 2.53329 2.09592 1.7977 1.66386 1.52391 1.2559 1.02318 0.952529 0.969013 1.00552 1.05992 1.11612 1.16526 1.2091 1.24963 1.28801 1.32474 1.36011 1.39442 1.42794 1.4609 1.49331 1.52518 1.55638 1.58692 1.61668 1.6458 1.67419 1.70205 1.72927 1.7561 1.78236 1.80834 1.83385 1.85914 1.88405 1.90869 1.93301 1.95694 1.98054 2.00371 2.02649 2.04888 2.07087 2.09252 2.11381 2.13478 2.15542 2.17577 2.19576 2.2155 2.23482 2.25381 2.27241 2.29058 2.30845 2.32593 2.3431 2.36 2.37657 2.39291 2.40893 2.42463 2.43999 2.45497 2.46953 2.4836 2.49723 2.51021 2.52283 2.53464 2.54624 2.55684 2.56738 2.57672 2.58616 2.59425 2.60258 2.60945 2.61663 2.62235 2.62836 2.633 2.63785 2.64156 2.64528 2.64823 2.65104 2.65339 2.65554 2.6574 2.659 2.66037 2.99937 2.99822 2.99647 2.99048 2.98072 2.95045 2.89307 2.74695 2.44315 1.96962 1.63632 1.28065 0.953921 0.86587 0.890682 0.933311 0.996418 1.06015 1.11384 1.16037 1.20331 1.24409 1.28286 1.31973 1.35497 1.389 1.42218 1.45474 1.4867 1.51805 1.54868 1.57865 1.60789 1.63658 1.66465 1.69228 1.71935 1.74606 1.77227 1.79824 1.8238 1.84919 1.87427 1.89912 1.92371 1.94791 1.97179 1.99519 2.01816 2.04068 2.06276 2.08446 2.10583 2.1269 2.14771 2.16827 2.18846 2.20845 2.22801 2.24736 2.26642 2.28509 2.30352 2.32154 2.33927 2.3567 2.3738 2.39064 2.40712 2.42331 2.43913 2.45452 2.46958 2.48395 2.49809 2.51134 2.52442 2.53651 2.54849 2.55938 2.57024 2.5799 2.58958 2.59799 2.60647 2.61362 2.62086 2.6268 2.63274 2.63756 2.64219 2.64599 2.6494 2.65229 2.65469 2.65687 2.65844 2.66006 2.66128 2.6628 2.99957 2.99874 2.99754 2.9931 2.98646 2.96356 2.92426 2.81165 2.58689 2.10754 1.51735 0.944035 0.675599 0.711288 0.762111 0.829454 0.892998 0.950955 1.00605 1.05915 1.10973 1.15752 1.2027 1.24561 1.28658 1.32599 1.36411 1.40113 1.43709 1.47201 1.50582 1.53859 1.5703 1.60114 1.63111 1.66045 1.68913 1.71736 1.74502 1.77235 1.79917 1.82571 1.85184 1.87764 1.9031 1.92814 1.95283 1.97705 2.00086 2.02421 2.04716 2.06968 2.09191 2.11375 2.13533 2.15667 2.17764 2.19846 2.21885 2.23898 2.25874 2.27806 2.29705 2.31557 2.33374 2.35155 2.36904 2.38625 2.40317 2.41982 2.43613 2.45205 2.46764 2.48257 2.49725 2.51105 2.52465 2.53727 2.54974 2.56107 2.57235 2.58236 2.59235 2.60097 2.60961 2.61686 2.62408 2.63008 2.63586 2.64077 2.64513 2.64912 2.65219 2.65537 2.65741 2.65981 2.6611 2.66306 2.6641 2.66604 ) ; boundaryField { inlet { type calculated; value uniform 3.00001; } outlet { type calculated; value nonuniform List<scalar> 400 ( 1.20318 1.36453 1.45155 1.51155 1.55998 1.60621 1.65228 1.69382 1.7289 1.75907 1.78518 1.80989 1.83396 1.85709 1.87904 1.90131 1.92445 1.94781 1.97073 1.99459 2.01975 2.04472 2.06857 2.09084 2.11066 2.12853 2.14784 2.17872 2.26215 2.42415 2.53811 2.58976 2.61376 2.6284 2.63846 2.64645 2.65353 2.66037 2.66281 2.66605 1.20316 1.3645 1.45152 1.51153 1.55996 1.6062 1.65227 1.6938 1.72889 1.75906 1.78517 1.80988 1.83395 1.85708 1.87903 1.90129 1.92444 1.9478 1.97072 1.99457 2.01973 2.0447 2.06855 2.09082 2.11065 2.12852 2.14783 2.17868 2.262 2.42399 2.53802 2.58972 2.61373 2.62838 2.63843 2.64643 2.65351 2.66034 2.66278 2.66602 1.20316 1.36451 1.45153 1.51153 1.55996 1.60619 1.65226 1.6938 1.72889 1.75906 1.78516 1.80988 1.83395 1.85708 1.87903 1.90129 1.92444 1.9478 1.97072 1.99457 2.01973 2.0447 2.06855 2.09082 2.11065 2.12851 2.14783 2.17867 2.262 2.42399 2.53802 2.58972 2.61374 2.62839 2.63844 2.64644 2.65351 2.66034 2.66278 2.66602 1.20317 1.36451 1.45153 1.51153 1.55996 1.60619 1.65226 1.6938 1.72889 1.75906 1.78517 1.80988 1.83395 1.85708 1.87903 1.90129 1.92444 1.9478 1.97072 1.99457 2.01973 2.0447 2.06855 2.09082 2.11065 2.12851 2.14783 2.17868 2.262 2.42399 2.53802 2.58972 2.61374 2.62838 2.63844 2.64644 2.65351 2.66034 2.66278 2.66601 1.20317 1.36451 1.45153 1.51153 1.55996 1.60619 1.65226 1.6938 1.72889 1.75906 1.78516 1.80988 1.83395 1.85708 1.87902 1.90129 1.92444 1.9478 1.97072 1.99457 2.01973 2.0447 2.06855 2.09082 2.11065 2.12851 2.14783 2.17867 2.262 2.42399 2.53802 2.58972 2.61374 2.62838 2.63844 2.64644 2.65351 2.66034 2.66278 2.66602 1.20317 1.36451 1.45153 1.51153 1.55996 1.60619 1.65226 1.6938 1.72889 1.75906 1.78516 1.80988 1.83395 1.85708 1.87903 1.90129 1.92444 1.9478 1.97072 1.99457 2.01973 2.0447 2.06855 2.09082 2.11065 2.12851 2.14783 2.17867 2.262 2.42399 2.53802 2.58972 2.61374 2.62838 2.63844 2.64644 2.65351 2.66034 2.66278 2.66601 1.20317 1.36451 1.45153 1.51153 1.55996 1.60619 1.65226 1.6938 1.72889 1.75906 1.78517 1.80988 1.83395 1.85708 1.87903 1.90129 1.92444 1.9478 1.97072 1.99457 2.01973 2.0447 2.06855 2.09082 2.11065 2.12851 2.14783 2.17868 2.262 2.42399 2.53802 2.58972 2.61374 2.62838 2.63844 2.64644 2.65351 2.66034 2.66278 2.66601 1.20316 1.36451 1.45153 1.51153 1.55996 1.60619 1.65226 1.6938 1.72889 1.75906 1.78516 1.80988 1.83395 1.85708 1.87903 1.90129 1.92444 1.9478 1.97072 1.99457 2.01973 2.0447 2.06855 2.09082 2.11065 2.12851 2.14783 2.17867 2.262 2.42399 2.53802 2.58972 2.61374 2.62839 2.63844 2.64644 2.65351 2.66034 2.66278 2.66602 1.20316 1.3645 1.45152 1.51153 1.55996 1.6062 1.65227 1.6938 1.72889 1.75906 1.78517 1.80988 1.83395 1.85708 1.87903 1.90129 1.92444 1.9478 1.97072 1.99457 2.01973 2.0447 2.06855 2.09082 2.11065 2.12852 2.14783 2.17868 2.262 2.42399 2.53802 2.58972 2.61373 2.62838 2.63843 2.64643 2.65351 2.66034 2.66278 2.66602 1.20319 1.36451 1.45154 1.51155 1.55998 1.60621 1.65228 1.69382 1.7289 1.75907 1.78518 1.80989 1.83396 1.85709 1.87904 1.90131 1.92445 1.94781 1.97073 1.99459 2.01975 2.04472 2.06857 2.09084 2.11066 2.12852 2.14784 2.17872 2.26215 2.42415 2.53811 2.58976 2.61376 2.6284 2.63845 2.64645 2.65353 2.66037 2.6628 2.66604 ) ; } bottom { type symmetryPlane; } top { type symmetryPlane; } obstacle { type calculated; value uniform 0; } defaultFaces { type empty; } } // ************************************************************************* //
[ "benroque94@gmail.com" ]
benroque94@gmail.com
5f4a6b1e2701cd945fb7ba4af8cdfe2b5923db3c
f769e4df3e80746adadf5ef3c843dda5212809cf
/chuck-norris-joke-part2/HoundCpp/HoundJSON/UserCurrentLocationIntentJSON.cpp
21513ad9dc1ae9cb0a516d2adfe4af6b25845544
[]
no_license
jiintonic/weekend-task
0758296644780e172a07b2308ed91d7e5a51b77d
07ec0ba5a0f809d424d134d33e0635376d290c69
refs/heads/master
2020-03-30T09:07:29.518881
2018-10-03T15:13:58
2018-10-03T15:13:58
151,061,148
1
0
null
null
null
null
UTF-8
C++
false
false
2,556
cpp
/* file "UserCurrentLocationIntentJSON.cpp" */ /* Generated automatically by Classy JSON. */ #pragma implementation "UserCurrentLocationIntentJSON.h" #include "UserCurrentLocationIntentJSON.h" UserCurrentLocationIntentJSON::UserCurrentLocationIntentJSON(const UserCurrentLocationIntentJSON &) { assert(false); } UserCurrentLocationIntentJSON &UserCurrentLocationIntentJSON::operator=(const UserCurrentLocationIntentJSON &other) { assert(false); throw "Illegal operator=() call."; } JSONValue *UserCurrentLocationIntentJSON::extraLabelToJSON(void) const { JSONStringValue *generated_string_Label = new JSONStringValue(storeLabel.c_str()); return generated_string_Label; } void UserCurrentLocationIntentJSON::fromJSONLabel(JSONValue *json_value, bool ignore_extras) { assert(json_value != NULL); const JSONStringValue *json_string = json_value->string_value(); if (json_string == NULL) throw("The value for field Label of UserCurrentLocationIntentJSON is not a string."); setLabel(std::string(json_string->getData())); } UserCurrentLocationIntentJSON::UserCurrentLocationIntentJSON(void) : flagHasLabel(false) { extraIndex = create_string_index(); } UserCurrentLocationIntentJSON::~UserCurrentLocationIntentJSON(void) { size_t extra_count = extraValues.size(); for (size_t extra_num = 0; extra_num < extra_count; ++extra_num) extraValues[extra_num]->remove_reference(); destroy_string_index(extraIndex); } const char *UserCurrentLocationIntentJSON::getLocationIntentKind(void) const { return "UserCurrentLocation"; } bool UserCurrentLocationIntentJSON::hasLabel(void) const { return flagHasLabel; } std::string UserCurrentLocationIntentJSON::getLabel(void) { assert(flagHasLabel); return storeLabel; } const std::string UserCurrentLocationIntentJSON::getLabel(void) const { assert(flagHasLabel); return storeLabel; } UserCurrentLocationIntentJSON *UserCurrentLocationIntentJSON::from_json(JSONValue *json_value, bool ignore_extras) { UserCurrentLocationIntentJSON *result; { JSONHoldingGenerator<Generator, RCHandle<UserCurrentLocationIntentJSON>, UserCurrentLocationIntentJSON *, bool> generator("Type UserCurrentLocationIntent", ignore_extras); json_value->write(&generator); assert(generator.have_value); result = generator.value.referenced(); result->add_reference(); }; result->remove_reference_no_delete(); return result; }
[ "ching-chuan.yang@daimler.com" ]
ching-chuan.yang@daimler.com
a367aa18cfe367dd86721f8602c1e46a2a61c288
e870caab3e7590d0621772ffd479f610edb4e948
/include/GafferScene/ScenePath.h
0238e97826a1123992e6c29849547c4625010cdd
[ "BSD-3-Clause" ]
permissive
robpieke/gaffer
39524051d42f10de7cc5efc5a532705fdae0826f
931622c92bda8c7a37bf1566379189b26bd7b3e0
refs/heads/master
2020-06-12T01:38:17.624402
2019-06-17T13:53:24
2019-06-17T13:53:24
194,153,681
1
0
NOASSERTION
2019-06-27T19:42:47
2019-06-27T19:42:46
null
UTF-8
C++
false
false
3,745
h
////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2012, John Haddon. All rights reserved. // Copyright (c) 2013-2014, Image Engine Design Inc. All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above // copyright notice, this list of conditions and the following // disclaimer. // // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following // disclaimer in the documentation and/or other materials provided with // the distribution. // // * Neither the name of John Haddon nor the names of // any other contributors to this software 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. // ////////////////////////////////////////////////////////////////////////// #ifndef GAFFERSCENE_SCENEPATH_H #define GAFFERSCENE_SCENEPATH_H #include "GafferScene/Export.h" #include "GafferScene/TypeIds.h" #include "Gaffer/Path.h" namespace Gaffer { IE_CORE_FORWARDDECLARE( Context ) IE_CORE_FORWARDDECLARE( Plug ) IE_CORE_FORWARDDECLARE( Node ) } // namespace Gaffer namespace GafferScene { IE_CORE_FORWARDDECLARE( ScenePlug ) class GAFFERSCENE_API ScenePath : public Gaffer::Path { public : ScenePath( ScenePlugPtr scene, Gaffer::ContextPtr context, Gaffer::PathFilterPtr filter = nullptr ); ScenePath( ScenePlugPtr scene, Gaffer::ContextPtr context, const std::string &path, Gaffer::PathFilterPtr filter = nullptr ); ScenePath( ScenePlugPtr scene, Gaffer::ContextPtr context, const Names &names, const IECore::InternedString &root = "/", Gaffer::PathFilterPtr filter = nullptr ); IE_CORE_DECLARERUNTIMETYPEDEXTENSION( GafferScene::ScenePath, ScenePathTypeId, Gaffer::Path ); ~ScenePath() override; void setScene( ScenePlugPtr scene ); ScenePlug *getScene(); const ScenePlug *getScene() const; void setContext( Gaffer::ContextPtr context ); Gaffer::Context *getContext(); const Gaffer::Context *getContext() const; bool isValid() const override; bool isLeaf() const override; Gaffer::PathPtr copy() const override; static Gaffer::PathFilterPtr createStandardFilter( const std::vector<std::string> &setNames = std::vector<std::string>(), const std::string &setsLabel = "" ); protected : void doChildren( std::vector<Gaffer::PathPtr> &children ) const override; void pathChangedSignalCreated() override; private : void contextChanged( const IECore::InternedString &key ); void plugDirtied( Gaffer::Plug *plug ); Gaffer::NodePtr m_node; ScenePlugPtr m_scene; Gaffer::ContextPtr m_context; }; } // namespace GafferScene #endif // GAFFERSCENE_SCENEPATH_H
[ "thehaddonyoof@gmail.com" ]
thehaddonyoof@gmail.com
a457ce686bf01b3978e3d3968c680d3271b007a3
64b70d3dcd5047e1c948a8f4260ea0f4ff7ee0b4
/HarmEmuCoreAES.hpp
3a4dfe4810d14d55dbe5770bc947fcb362b8803a
[]
no_license
brett19/younasdecrypt
a586874aabb9b5903430ac8250f3036710c43432
ca09ae9cc822340591fd0a16d5d1ba9df0fcdde2
refs/heads/master
2021-01-10T14:21:49.298785
2015-09-30T14:21:36
2015-09-30T14:21:36
43,437,376
0
0
null
null
null
null
UTF-8
C++
false
false
1,267
hpp
#ifndef HarmEmuCoreAES_h__ #define HarmEmuCoreAES_h__ #include "aes.h" #include "HarmEmu_Base.hpp" namespace HarmEmu { namespace Core { namespace AES { void* __fastcall Constructor( void* pObject ) { //HarmEmu::LogMsg( "-::Core::AES[%08x]::AES( )\n", pObject ); *((::AES**)pObject) = new ::AES( ); return pObject; } class Impl { public: void SetParameters( int keylength, int blocklength ) { //HarmEmu::LogMsg( "-::Core::AES[%08x]::SetParameters( %d, %d )\n", this, keylength, blocklength ); ((::AES*)this)->SetParameters( keylength, blocklength ); } void StartEncryption( const unsigned char * key ) { //HarmEmu::LogMsg( "-::Core::AES[%08x]::StartEncryption( %08x )\n", this, key ); //PrintBinary( key, 32 ); ((::AES*)this)->StartEncryption( key ); } void Encrypt( const unsigned char * datain, unsigned char * dataout, unsigned long numBlocks, int mode ) { //HarmEmu::LogMsg( "-::Core::AES[%08x]::Encrypt( %08x, %08x, %d, %d )\n", this, datain, dataout, numBlocks, mode ); //memcpy( dataout, datain, numBlocks*16 ); ((::AES*)this)->Encrypt( datain, dataout, numBlocks, (::AES::BlockMode)mode ); } }; } } } #endif // HarmEmuCoreAES_h__
[ "brett19@gmail.com" ]
brett19@gmail.com
ebad03a793d7f8d230e809af0dc7624ffed9dfb0
8bca585b865ab4673f6a91da755a109b2b992c57
/207-course-schedule/course-schedule.cpp
a10fbac8d84f98e93059a2efe760360ea44cacf8
[]
no_license
lsaejn/leetcode
8d0998395ad7e5467ec4bf97cb3100cff844874d
cef02eaef8f70f92c247fd0a24a3c1ef1ad60dac
refs/heads/master
2020-04-02T01:52:35.011566
2018-12-06T15:04:35
2018-12-06T15:04:35
153,879,243
1
1
null
null
null
null
UTF-8
C++
false
false
1,921
cpp
// There are a total of n courses you have to take, labeled from 0 to n-1. // // Some courses may have prerequisites, for example to take course 0 you have to first take course 1, which is expressed as a pair: [0,1] // // Given the total number of courses and a list of prerequisite pairs, is it possible for you to finish all courses? // // Example 1: // // // Input: 2, [[1,0]] // Output: true // Explanation: There are a total of 2 courses to take. //   To take course 1 you should have finished course 0. So it is possible. // // Example 2: // // // Input: 2, [[1,0],[0,1]] // Output: false // Explanation: There are a total of 2 courses to take. //   To take course 1 you should have finished course 0, and to take course 0 you should //   also have finished course 1. So it is impossible. // // // Note: // // // The input prerequisites is a graph represented by a list of edges, not adjacency matrices. Read more about how a graph is represented. // You may assume that there are no duplicate edges in the input prerequisites. // // class Solution { public: //之前好像做过这题,怎么回事? bool canFinish(int numCourses, vector<pair<int, int>>& prerequisites) { vector<vector<int> > graph(numCourses, vector<int>(0)); vector<int> in(numCourses, 0); for (auto &a : prerequisites) { graph[a.second].push_back(a.first); ++in[a.first]; } queue<int> q; for (int i = 0; i < numCourses; ++i) { if (in[i] == 0) q.push(i); } while (!q.empty()) { int t = q.front(); q.pop(); for (auto a : graph[t]) { --in[a]; if (in[a] == 0) q.push(a); } } for (int i = 0; i < numCourses; ++i) { if (in[i] != 0) return false; } return true; } };
[ "2899340@qq.com" ]
2899340@qq.com
fb389ae3aa53007b0d9148375e44bc1dd87819ae
c6735c5825991f6421b09e8997dac0397ea581c9
/include/swift/SwiftRemoteMirror/SwiftRemoteMirrorLegacyInterop.h
5871d75dd3df7124abb452add1ad6d0a7bd9cc36
[ "Apache-2.0", "Swift-exception" ]
permissive
TAIPANBOX/swift
6b5ff6a9e8032bef746579914c4999c8ff31540c
48e48f22fe59b0aa7a782b01d8df4e4414e12a52
refs/heads/master
2020-04-20T22:08:36.980111
2019-02-04T18:32:55
2019-02-04T18:32:55
169,129,762
3
0
Apache-2.0
2019-02-04T18:49:44
2019-02-04T18:49:43
null
UTF-8
C++
false
false
37,001
h
//===--- SwiftRemoteMirrorLegacyInterop.h - Interop with legacy libs. -*- C++ -*-===// // // This source file is part of the Swift.org open source project // // Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See https://swift.org/LICENSE.txt for license information // See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors // //===----------------------------------------------------------------------------===// /// /// \file /// This header provides an interface for using multiple versions of the Swift remote /// mirror library to inspect processes built with different versions of Swift, or /// processes where different libraries are built with different versions of Swift. /// //===----------------------------------------------------------------------------===// #ifndef SWIFT_REMOTE_MIRROR_LEGACY_INTEROP_H #define SWIFT_REMOTE_MIRROR_LEGACY_INTEROP_H #if defined(__APPLE__) && defined(__MACH__) #include "SwiftRemoteMirrorLegacyInteropTypes.h" #include "SwiftRemoteMirror.h" #include <string.h> #include <dlfcn.h> #include <mach-o/getsect.h> #include <CoreFoundation/CFDictionary.h> /// The "public" interface follows. All of these functions are the same /// as the corresponding swift_reflection_* functions, except for taking /// or returning _interop data types in some circumstances. static inline SwiftReflectionInteropContextRef swift_reflection_interop_createReflectionContext( void *ReaderContext, uint8_t PointerSize, FreeBytesFunction FreeBytes, ReadBytesFunction ReadBytes, GetStringLengthFunction GetStringLength, GetSymbolAddressFunction GetSymbolAddress); /// Add a library handle to the interop context. Returns 1 if the /// library was added successfully, 0 if a symbol couldn't be looked up /// or the reported metadata version is too old. static inline int swift_reflection_interop_addLibrary( SwiftReflectionInteropContextRef ContextRef, void *LibraryHandle); static inline void swift_reflection_interop_destroyReflectionContext( SwiftReflectionInteropContextRef ContextRef); static inline int swift_reflection_interop_addImage(SwiftReflectionInteropContextRef ContextRef, swift_addr_t imageStart); static inline int swift_reflection_interop_readIsaMask(SwiftReflectionInteropContextRef ContextRef, uintptr_t *outIsaMask); /// Look up a metadata pointer and return an interop structure that can /// be passed to other calls. Returns { 0, 0 } if the metadata pointer /// was not recognized. static inline swift_metadata_interop_t swift_reflection_interop_lookupMetadata(SwiftReflectionInteropContextRef ContextRef, uintptr_t RemoteTyperef); static inline swift_typeref_interop_t swift_reflection_interop_typeRefForMetadata(SwiftReflectionInteropContextRef ContextRef, swift_metadata_interop_t Metadata); static inline swift_typeref_interop_t swift_reflection_interop_typeRefForInstance(SwiftReflectionInteropContextRef ContextRef, uintptr_t Object); static inline swift_typeref_interop_t swift_reflection_interop_typeRefForMangledTypeName( SwiftReflectionInteropContextRef ContextRef, const char *MangledName, uint64_t Length); static inline swift_typeinfo_t swift_reflection_interop_infoForTypeRef(SwiftReflectionInteropContextRef ContextRef, swift_typeref_interop_t OpaqueTypeRef); static inline swift_childinfo_interop_t swift_reflection_interop_childOfTypeRef(SwiftReflectionInteropContextRef ContextRef, swift_typeref_interop_t OpaqueTypeRef, unsigned Index); static inline swift_typeinfo_interop_t swift_reflection_interop_infoForMetadata(SwiftReflectionInteropContextRef ContextRef, swift_metadata_interop_t Metadata); static inline swift_childinfo_interop_t swift_reflection_interop_childOfMetadata(SwiftReflectionInteropContextRef ContextRef, swift_metadata_interop_t Metadata, unsigned Index); static inline swift_typeinfo_interop_t swift_reflection_interop_infoForInstance(SwiftReflectionInteropContextRef ContextRef, uintptr_t Object); static inline swift_childinfo_interop_t swift_reflection_interop_childOfInstance(SwiftReflectionInteropContextRef ContextRef, uintptr_t Object, unsigned Index); static inline unsigned swift_reflection_interop_genericArgumentCountOfTypeRef( SwiftReflectionInteropContextRef ContextRef, swift_typeref_interop_t OpaqueTypeRef); static inline swift_typeref_interop_t swift_reflection_interop_genericArgumentOfTypeRef( SwiftReflectionInteropContextRef ContextRef, swift_typeref_interop_t OpaqueTypeRef, unsigned Index); static inline int swift_reflection_interop_projectExistential(SwiftReflectionInteropContextRef ContextRef, swift_addr_t ExistentialAddress, swift_typeref_interop_t ExistentialTypeRef, swift_typeref_interop_t *OutInstanceTypeRef, swift_addr_t *OutStartOfInstanceData); static inline void swift_reflection_interop_dumpTypeRef(SwiftReflectionInteropContextRef ContextRef, swift_typeref_interop_t OpaqueTypeRef); static inline void swift_reflection_interop_dumpInfoForTypeRef(SwiftReflectionInteropContextRef ContextRef, swift_typeref_interop_t OpaqueTypeRef); static inline void swift_reflection_interop_dumpInfoForMetadata(SwiftReflectionInteropContextRef ContextRef, swift_metadata_interop_t Metadata); static inline void swift_reflection_interop_dumpInfoForInstance(SwiftReflectionInteropContextRef ContextRef, uintptr_t Object); static inline size_t swift_reflection_interop_demangle(SwiftReflectionInteropContextRef ContextRef, const char *MangledName, size_t Length, char *OutDemangledName, size_t MaxLength); /// \name Internal implementation details, clients don't need to use these. /// @{ /// The minimum supported metadata version for the legacy library. #define SWIFT_LEGACY_METADATA_MIN_VERSION 3 /// The legacy reflection info struct. typedef struct swift_reflection_legacy_info { swift_reflection_section_t fieldmd; swift_reflection_section_t assocty; swift_reflection_section_t builtin; swift_reflection_section_t capture; swift_reflection_section_t typeref; swift_reflection_section_t reflstr; uintptr_t LocalStartAddress; uintptr_t RemoteStartAddress; } swift_reflection_legacy_info_t; /// The signature of the legacy ReadBytesFunction. typedef int (*ReadBytesFunctionLegacy)(void *reader_context, swift_addr_t address, void *dest, uint64_t size); struct SwiftReflectionFunctions { uint16_t (*getSupportedMetadataVersion)(void); SwiftReflectionContextRef (*createReflectionContext)( void *ReaderContext, uint8_t PointerSize, FreeBytesFunction FreeBytes, ReadBytesFunction ReadBytes, GetStringLengthFunction GetStringLength, GetSymbolAddressFunction GetSymbolAddress); SwiftReflectionContextRef (*createReflectionContextLegacy)( void *ReaderContext, PointerSizeFunction getPointerSize, SizeSizeFunction getSizeSize, ReadBytesFunctionLegacy readBytes, GetStringLengthFunction getStringLength, GetSymbolAddressFunction getSymbolAddress); void (*destroyReflectionContext)(SwiftReflectionContextRef Context); void (*addReflectionInfo)(SwiftReflectionContextRef Context, swift_reflection_info_t Info); void (*addReflectionInfoLegacy)(SwiftReflectionContextRef Context, swift_reflection_legacy_info_t Info); int (*addImage)(SwiftReflectionContextRef ContextRef, swift_addr_t imageStart); int (*readIsaMask)(SwiftReflectionContextRef ContextRef, uintptr_t *outIsaMask); swift_typeref_t (*typeRefForMetadata)(SwiftReflectionContextRef ContextRef, uintptr_t Metadata); int (*ownsObject)(SwiftReflectionContextRef ContextRef, uintptr_t Object); int (*ownsAddress)(SwiftReflectionContextRef ContextRef, uintptr_t Address); uintptr_t (*metadataForObject)(SwiftReflectionContextRef ContextRef, uintptr_t Object); swift_typeref_t (*typeRefForInstance)(SwiftReflectionContextRef ContextRef, uintptr_t Object); swift_typeref_t (*typeRefForMangledTypeName)(SwiftReflectionContextRef ContextRef, const char *MangledName, uint64_t Length); swift_typeinfo_t (*infoForTypeRef)(SwiftReflectionContextRef ContextRef, swift_typeref_t OpaqueTypeRef); swift_childinfo_t (*childOfTypeRef)(SwiftReflectionContextRef ContextRef, swift_typeref_t OpaqueTypeRef, unsigned Index); swift_typeinfo_t (*infoForMetadata)(SwiftReflectionContextRef ContextRef, uintptr_t Metadata); swift_childinfo_t (*childOfMetadata)(SwiftReflectionContextRef ContextRef, uintptr_t Metadata, unsigned Index); swift_typeinfo_t (*infoForInstance)(SwiftReflectionContextRef ContextRef, uintptr_t Object); swift_childinfo_t (*childOfInstance)(SwiftReflectionContextRef ContextRef, uintptr_t Object, unsigned Index); unsigned (*genericArgumentCountOfTypeRef)(swift_typeref_t OpaqueTypeRef); swift_typeref_t (*genericArgumentOfTypeRef)(swift_typeref_t OpaqueTypeRef, unsigned Index); int (*projectExistential)(SwiftReflectionContextRef ContextRef, swift_addr_t ExistentialAddress, swift_typeref_t ExistentialTypeRef, swift_typeref_t *OutInstanceTypeRef, swift_addr_t *OutStartOfInstanceData); void (*dumpTypeRef)(swift_typeref_t OpaqueTypeRef); void (*dumpInfoForTypeRef)(SwiftReflectionContextRef ContextRef, swift_typeref_t OpaqueTypeRef); void (*dumpInfoForMetadata)(SwiftReflectionContextRef ContextRef, uintptr_t Metadata); void (*dumpInfoForInstance)(SwiftReflectionContextRef ContextRef, uintptr_t Object); size_t (*demangle)(const char *MangledName, size_t Length, char *OutDemangledName, size_t MaxLength); }; struct SwiftReflectionInteropContextLibrary { SwiftReflectionContextRef Context; struct SwiftReflectionFunctions Functions; int IsLegacy; }; struct SwiftReflectionInteropContextFreeList { struct SwiftReflectionInteropContextFreeList *Next; const void *Pointer; void *Context; }; struct SwiftReflectionInteropContextLegacyImageRangeList { struct SwiftReflectionInteropContextLegacyImageRangeList *Next; swift_addr_t Start, End; }; struct SwiftReflectionInteropContext { void *ReaderContext; uint8_t PointerSize; FreeBytesFunction FreeBytes; ReadBytesFunction ReadBytes; uint64_t (*GetStringLength)(void *reader_context, swift_addr_t address); swift_addr_t (*GetSymbolAddress)(void *reader_context, const char *name, uint64_t name_length); struct SwiftReflectionInteropContextLibrary *Libraries; int LibraryCount; struct SwiftReflectionInteropContextFreeList *FreeList; struct SwiftReflectionInteropContextLegacyImageRangeList *LegacyImageRangeList; CFMutableDictionaryRef AddressToLibraryCache; }; #define FOREACH_LIBRARY \ for (struct SwiftReflectionInteropContextLibrary *Library = &ContextRef->Libraries[0]; \ Library < &ContextRef->Libraries[ContextRef->LibraryCount]; \ ++Library) #define LIBRARY_INDEX (Library - ContextRef->Libraries) #define DECLARE_LIBRARY(index) \ struct SwiftReflectionInteropContextLibrary *Library = &ContextRef->Libraries[index] static inline int swift_reflection_interop_libraryOwnsAddress( struct SwiftReflectionInteropContext *ContextRef, struct SwiftReflectionInteropContextLibrary *Library, uintptr_t Address) { if (!Library->IsLegacy) return Library->Functions.ownsAddress(Library->Context, Address); // Search the images list to see if the address is in one of them. struct SwiftReflectionInteropContextLegacyImageRangeList *Node = ContextRef->LegacyImageRangeList; while (Node != NULL) { if (Node->Start <= Address && Address < Node->End) return 1; Node = Node->Next; } return 0; } static inline struct SwiftReflectionInteropContextLibrary * swift_reflection_interop_libraryForAddress( struct SwiftReflectionInteropContext *ContextRef, uintptr_t Address) { uintptr_t cachedIndex; if (CFDictionaryGetValueIfPresent(ContextRef->AddressToLibraryCache, (void *)Address, (const void **)&cachedIndex)) { return &ContextRef->Libraries[cachedIndex]; } FOREACH_LIBRARY { if (swift_reflection_interop_libraryOwnsAddress(ContextRef, Library, Address)) { CFDictionarySetValue(ContextRef->AddressToLibraryCache, (void *)Address, (void *)LIBRARY_INDEX); return Library; } } return NULL; } static inline uintptr_t swift_reflection_interop_metadataForObject( struct SwiftReflectionInteropContext *ContextRef, uintptr_t Object) { FOREACH_LIBRARY { if (Library->IsLegacy) continue; uintptr_t Metadata = Library->Functions.metadataForObject(Library->Context, Object); if (Metadata != 0) return Metadata; } return 0; } static inline struct SwiftReflectionInteropContextLibrary * swift_reflection_interop_libraryForObject( struct SwiftReflectionInteropContext *ContextRef, uintptr_t Object) { uintptr_t Metadata = swift_reflection_interop_metadataForObject(ContextRef, Object); if (Metadata == 0) { // If we couldn't retrieve metadata, assume it belongs to a legacy library. FOREACH_LIBRARY { if (Library->IsLegacy) return Library; } return NULL; } return swift_reflection_interop_libraryForAddress(ContextRef, Metadata); } static inline int swift_reflection_interop_loadFunctions(struct SwiftReflectionInteropContext *Context, void *Handle) { if (Handle == NULL) return 0; struct SwiftReflectionInteropContextLibrary *Library = &Context ->Libraries[Context->LibraryCount]; struct SwiftReflectionFunctions *Functions = &Library->Functions; #ifndef __cplusplus #define decltype(x) void * #endif #define LOAD_NAMED(field, symbol) do { \ Functions->field = (decltype(Functions->field))dlsym(Handle, symbol); \ if (Functions->field == NULL) return 0; \ } while (0) #define LOAD(name) LOAD_NAMED(name, "swift_reflection_" #name) LOAD(getSupportedMetadataVersion); uint16_t version = Functions->getSupportedMetadataVersion(); if (version < SWIFT_LEGACY_METADATA_MIN_VERSION) return 0; int IsLegacy = dlsym(Handle, "swift_reflection_addImage") == NULL; if (IsLegacy) { LOAD_NAMED(createReflectionContextLegacy, "swift_reflection_createReflectionContext"); LOAD_NAMED(addReflectionInfoLegacy, "swift_reflection_addReflectionInfo"); } else { LOAD(createReflectionContext); LOAD(addReflectionInfo); LOAD(addImage); LOAD(ownsObject); LOAD(ownsAddress); LOAD(metadataForObject); } LOAD(destroyReflectionContext); LOAD(readIsaMask); LOAD(typeRefForMetadata); LOAD(typeRefForInstance); LOAD(typeRefForMangledTypeName); LOAD(infoForTypeRef); LOAD(childOfTypeRef); LOAD(infoForMetadata); LOAD(childOfMetadata); LOAD(infoForInstance); LOAD(childOfInstance); LOAD(genericArgumentCountOfTypeRef); LOAD(genericArgumentOfTypeRef); LOAD(projectExistential); LOAD(dumpTypeRef); LOAD(dumpInfoForTypeRef); Library->IsLegacy = IsLegacy; Context->LibraryCount++; return 1; #undef LOAD #undef LOAD_NAMED #ifndef __cplusplus #undef decltype #endif } static inline int swift_reflection_interop_readBytesAdapter(void *reader_context, swift_addr_t address, void *dest, uint64_t size) { SwiftReflectionInteropContextRef Context = (SwiftReflectionInteropContextRef)reader_context; void *FreeContext; const void *ptr = Context->ReadBytes(Context->ReaderContext, address, size, &FreeContext); if (ptr == NULL) return 0; memcpy(dest, ptr, size); if (Context->FreeBytes != NULL) Context->FreeBytes(Context->ReaderContext, ptr, FreeContext); return 1; } static inline uint8_t swift_reflection_interop_getSizeAdapter(void *reader_context) { // Legacy library doesn't pay attention to these anyway. (void)reader_context; return sizeof(void *); } static inline uint64_t swift_reflection_interop_GetStringLengthAdapter( void *reader_context, swift_addr_t address) { SwiftReflectionInteropContextRef Context = (SwiftReflectionInteropContextRef)reader_context; return Context->GetStringLength(Context->ReaderContext, address); } static inline swift_addr_t swift_reflection_interop_GetSymbolAddressAdapter( void *reader_context, const char *name, uint64_t name_length) { SwiftReflectionInteropContextRef Context = (SwiftReflectionInteropContextRef)reader_context; return Context->GetSymbolAddress(Context->ReaderContext, name, name_length); } static inline SwiftReflectionInteropContextRef swift_reflection_interop_createReflectionContext( void *ReaderContext, uint8_t PointerSize, FreeBytesFunction FreeBytes, ReadBytesFunction ReadBytes, GetStringLengthFunction GetStringLength, GetSymbolAddressFunction GetSymbolAddress) { SwiftReflectionInteropContextRef ContextRef = (SwiftReflectionInteropContextRef)calloc(sizeof(*ContextRef), 1); ContextRef->ReaderContext = ReaderContext; ContextRef->PointerSize = PointerSize; ContextRef->FreeBytes = FreeBytes; ContextRef->ReadBytes = ReadBytes; ContextRef->GetStringLength = GetStringLength; ContextRef->GetSymbolAddress = GetSymbolAddress; ContextRef->AddressToLibraryCache = CFDictionaryCreateMutable(NULL, 0, NULL, NULL); return ContextRef; } static inline int swift_reflection_interop_addLibrary( SwiftReflectionInteropContextRef ContextRef, void *LibraryHandle) { size_t NewSize = (ContextRef->LibraryCount + 1) * sizeof(*ContextRef->Libraries); ContextRef->Libraries = realloc(ContextRef->Libraries, NewSize); int Success = swift_reflection_interop_loadFunctions(ContextRef, LibraryHandle); if (Success) { struct SwiftReflectionInteropContextLibrary *Library = &ContextRef->Libraries[ContextRef->LibraryCount - 1]; if (Library->IsLegacy) { Library->Context = Library->Functions.createReflectionContextLegacy( ContextRef, swift_reflection_interop_getSizeAdapter, swift_reflection_interop_getSizeAdapter, swift_reflection_interop_readBytesAdapter, swift_reflection_interop_GetStringLengthAdapter, swift_reflection_interop_GetSymbolAddressAdapter); } else { Library->Context = Library->Functions.createReflectionContext( ContextRef->ReaderContext, ContextRef->PointerSize, ContextRef->FreeBytes, ContextRef->ReadBytes, ContextRef->GetStringLength, ContextRef->GetSymbolAddress); } } return Success; } static inline void swift_reflection_interop_destroyReflectionContext( SwiftReflectionInteropContextRef ContextRef) { FOREACH_LIBRARY { Library->Functions.destroyReflectionContext(Library->Context); } free(ContextRef->Libraries); struct SwiftReflectionInteropContextLegacyImageRangeList *LegacyImageRangeList = ContextRef->LegacyImageRangeList; while (LegacyImageRangeList != NULL) { struct SwiftReflectionInteropContextLegacyImageRangeList *Next = LegacyImageRangeList->Next; free(LegacyImageRangeList); LegacyImageRangeList = Next; } struct SwiftReflectionInteropContextFreeList *FreeList = ContextRef->FreeList; while (FreeList != NULL) { ContextRef->FreeBytes(ContextRef->ReaderContext, FreeList->Pointer, FreeList->Context); struct SwiftReflectionInteropContextFreeList *Next = FreeList->Next; free(FreeList); FreeList = Next; } CFRelease(ContextRef->AddressToLibraryCache); free(ContextRef); } #ifndef __LP64__ typedef const struct mach_header MachHeader; #else typedef const struct mach_header_64 MachHeader; #endif static inline int swift_reflection_interop_findSection(MachHeader *Header, const char *Name, swift_reflection_section_t *Sect) { unsigned long Size; void *Address = getsectiondata(Header, "__TEXT", Name, &Size); if (!Address) return 0; Sect->Begin = Address; Sect->End = (void *)((uintptr_t)Address + Size); return 1; } static inline int swift_reflection_interop_addImageLegacy( SwiftReflectionInteropContextRef ContextRef, struct SwiftReflectionInteropContextLibrary *Library, swift_addr_t ImageStart) { void *FreeContext; const void *Buf; Buf = ContextRef->ReadBytes(ContextRef->ReaderContext, ImageStart, sizeof(MachHeader), &FreeContext); if (Buf == NULL) return 0; MachHeader *Header = (MachHeader *)Buf; if (Header->magic != MH_MAGIC && Header->magic != MH_MAGIC_64) { if (ContextRef->FreeBytes != NULL) ContextRef->FreeBytes(ContextRef->ReaderContext, Buf, FreeContext); return 0; } // Read the commands. uint32_t Length = Header->sizeofcmds; if (ContextRef->FreeBytes != NULL) ContextRef->FreeBytes(ContextRef->ReaderContext, Buf, FreeContext); Buf = ContextRef->ReadBytes(ContextRef->ReaderContext, ImageStart, Length, &FreeContext); if (Buf == NULL) return 0; Header = (MachHeader *)Buf; // Find the TEXT segment and figure out where the end is. unsigned long TextSize; uint8_t *TextSegment = getsegmentdata(Header, "__TEXT", &TextSize); if (ContextRef->FreeBytes != NULL) ContextRef->FreeBytes(ContextRef->ReaderContext, Buf, FreeContext); if (TextSegment == NULL) { return 0; } unsigned long TextEnd = TextSegment - (uint8_t *)Buf + TextSize; // Read everything including the TEXT segment. Buf = ContextRef->ReadBytes(ContextRef->ReaderContext, ImageStart, TextEnd, &FreeContext); if (Buf == NULL) return 0; Header = (MachHeader *)Buf; // Find all the sections and fill out the reflection info. swift_reflection_legacy_info_t info = {}; int success = 0; success = swift_reflection_interop_findSection(Header, "__swift3_fieldmd", &info.fieldmd) || success; success = swift_reflection_interop_findSection(Header, "__swift3_assocty", &info.assocty) || success; success = swift_reflection_interop_findSection(Header, "__swift3_builtin", &info.builtin) || success; success = swift_reflection_interop_findSection(Header, "__swift3_capture", &info.capture) || success; success = swift_reflection_interop_findSection(Header, "__swift3_typeref", &info.typeref) || success; success = swift_reflection_interop_findSection(Header, "__swift3_reflstr", &info.reflstr) || success; if (!success) { if (ContextRef->FreeBytes != NULL) ContextRef->FreeBytes(ContextRef->ReaderContext, Buf, FreeContext); return 0; } info.LocalStartAddress = (uintptr_t)Buf; info.RemoteStartAddress = (uintptr_t)ImageStart; Library->Functions.addReflectionInfoLegacy(Library->Context, info); // Find the data segment and add it to our list. unsigned long DataSize; const uint8_t *DataSegment = getsegmentdata(Header, "__DATA", &DataSize); uintptr_t DataSegmentStart = (uintptr_t)(DataSegment - (const uint8_t *)Buf + ImageStart); struct SwiftReflectionInteropContextLegacyImageRangeList *Node = (struct SwiftReflectionInteropContextLegacyImageRangeList *)malloc(sizeof(*Node)); Node->Next = ContextRef->LegacyImageRangeList; Node->Start = ImageStart; Node->End = DataSegmentStart + DataSize; ContextRef->LegacyImageRangeList = Node; // If the buffer needs to be freed, save buffer and free context to free it when the // reflection context is destroyed. if (ContextRef->FreeBytes != NULL) { struct SwiftReflectionInteropContextFreeList *FreeListNode = (struct SwiftReflectionInteropContextFreeList *)malloc(sizeof(*FreeListNode)); FreeListNode->Next = ContextRef->FreeList; FreeListNode->Pointer = Buf; FreeListNode->Context = FreeContext; ContextRef->FreeList = FreeListNode; } return 1; } static inline int swift_reflection_interop_addImage(SwiftReflectionInteropContextRef ContextRef, swift_addr_t imageStart) { FOREACH_LIBRARY { int Success; if (Library->IsLegacy) { Success = swift_reflection_interop_addImageLegacy(ContextRef, Library, imageStart); } else { Success = Library->Functions.addImage(Library->Context, imageStart); } if (Success) { return 1; } } return 0; } static inline int swift_reflection_interop_readIsaMask(SwiftReflectionInteropContextRef ContextRef, uintptr_t *outIsaMask) { FOREACH_LIBRARY { int Success = Library->Functions.readIsaMask(Library->Context, outIsaMask); if (Success) return 1; } return 0; } static inline swift_metadata_interop_t swift_reflection_interop_lookupMetadata(SwiftReflectionInteropContextRef ContextRef, uintptr_t Metadata) { swift_metadata_interop_t Result = {}; struct SwiftReflectionInteropContextLibrary *Library = swift_reflection_interop_libraryForAddress(ContextRef, Metadata); if (Library != NULL) { Result.Metadata = Metadata; Result.Library = (int)LIBRARY_INDEX; } return Result; } static inline swift_typeref_interop_t swift_reflection_interop_typeRefForMetadata(SwiftReflectionInteropContextRef ContextRef, swift_metadata_interop_t Metadata) { DECLARE_LIBRARY(Metadata.Library); swift_typeref_interop_t Result; Result.Typeref = Library->Functions. typeRefForMetadata(Library->Context, Metadata.Metadata); Result.Library = Metadata.Library; return Result; } static inline swift_typeref_interop_t swift_reflection_interop_typeRefForInstance(SwiftReflectionInteropContextRef ContextRef, uintptr_t Object) { swift_typeref_interop_t Result = {}; struct SwiftReflectionInteropContextLibrary *Library = swift_reflection_interop_libraryForObject(ContextRef, Object); if (Library != NULL) { swift_typeref_t Typeref = Library->Functions.typeRefForInstance(Library->Context, Object); Result.Typeref = Typeref; Result.Library = (int)LIBRARY_INDEX; } return Result; } static inline swift_typeref_interop_t swift_reflection_interop_typeRefForMangledTypeName( SwiftReflectionInteropContextRef ContextRef, const char *MangledName, uint64_t Length) { swift_typeref_interop_t Result; FOREACH_LIBRARY { swift_typeref_t Typeref = Library->Functions.typeRefForMangledTypeName( Library->Context, MangledName, Length); if (Typeref == 0) continue; Result.Typeref = Typeref; Result.Library = (int)LIBRARY_INDEX; return Result; } Result.Typeref = 0; Result.Library = 0; return Result; } static inline swift_typeinfo_t swift_reflection_interop_infoForTypeRef(SwiftReflectionInteropContextRef ContextRef, swift_typeref_interop_t OpaqueTypeRef) { DECLARE_LIBRARY(OpaqueTypeRef.Library); return Library->Functions.infoForTypeRef(Library->Context, OpaqueTypeRef.Typeref); } static inline swift_childinfo_interop_t swift_reflection_interop_childOfTypeRef(SwiftReflectionInteropContextRef ContextRef, swift_typeref_interop_t OpaqueTypeRef, unsigned Index) { DECLARE_LIBRARY(OpaqueTypeRef.Library); swift_childinfo_t LibResult = Library->Functions.childOfTypeRef(Library->Context, OpaqueTypeRef.Typeref, Index); swift_childinfo_interop_t Result; Result.Name = LibResult.Name; Result.Offset = LibResult.Offset; Result.Kind = LibResult.Kind; Result.TR.Typeref = LibResult.TR; Result.TR.Library = OpaqueTypeRef.Library; return Result; } static inline swift_typeinfo_interop_t swift_reflection_interop_infoForMetadata(SwiftReflectionInteropContextRef ContextRef, swift_metadata_interop_t Metadata) { DECLARE_LIBRARY(Metadata.Library); return Library->Functions.infoForMetadata(Library->Context, Metadata.Metadata); } static inline swift_childinfo_interop_t swift_reflection_interop_childOfMetadata(SwiftReflectionInteropContextRef ContextRef, swift_metadata_interop_t Metadata, unsigned Index) { DECLARE_LIBRARY(Metadata.Library); swift_childinfo_t LibResult = Library->Functions.childOfMetadata(Library->Context, Metadata.Metadata, Index); swift_childinfo_interop_t Result; Result.Name = LibResult.Name; Result.Offset = LibResult.Offset; Result.Kind = LibResult.Kind; Result.TR.Typeref = LibResult.TR; Result.TR.Library = Metadata.Library; return Result; } static inline swift_typeinfo_interop_t swift_reflection_interop_infoForInstance(SwiftReflectionInteropContextRef ContextRef, uintptr_t Object) { swift_typeinfo_t Result = {}; struct SwiftReflectionInteropContextLibrary *Library = swift_reflection_interop_libraryForObject(ContextRef, Object); if (Library != NULL) { Result = Library->Functions.infoForInstance(Library->Context, Object); } else { Result.Kind = SWIFT_UNKNOWN; } return Result; } static inline swift_childinfo_interop_t swift_reflection_interop_childOfInstance(SwiftReflectionInteropContextRef ContextRef, uintptr_t Object, unsigned Index) { swift_childinfo_interop_t Result = {}; struct SwiftReflectionInteropContextLibrary *Library = swift_reflection_interop_libraryForObject(ContextRef, Object); if (Library != NULL) { swift_childinfo_t LibResult = Library->Functions.childOfInstance(Library->Context, Object, Index); Result.Name = LibResult.Name; Result.Offset = LibResult.Offset; Result.Kind = LibResult.Kind; Result.TR.Typeref = LibResult.TR; Result.TR.Library = (int)LIBRARY_INDEX; } else { Result.Kind = SWIFT_UNKNOWN; } return Result; } static inline unsigned swift_reflection_interop_genericArgumentCountOfTypeRef( SwiftReflectionInteropContextRef ContextRef, swift_typeref_interop_t OpaqueTypeRef) { DECLARE_LIBRARY(OpaqueTypeRef.Library); return Library->Functions.genericArgumentCountOfTypeRef(OpaqueTypeRef.Typeref); } static inline swift_typeref_interop_t swift_reflection_interop_genericArgumentOfTypeRef( SwiftReflectionInteropContextRef ContextRef, swift_typeref_interop_t OpaqueTypeRef, unsigned Index) { DECLARE_LIBRARY(OpaqueTypeRef.Library); swift_typeref_interop_t Result; Result.Typeref = Library->Functions.genericArgumentOfTypeRef(OpaqueTypeRef.Typeref, Index); Result.Library = OpaqueTypeRef.Library; return Result; } static inline int swift_reflection_interop_projectExistential(SwiftReflectionInteropContextRef ContextRef, swift_addr_t ExistentialAddress, swift_typeref_interop_t ExistentialTypeRef, swift_typeref_interop_t *OutInstanceTypeRef, swift_addr_t *OutStartOfInstanceData) { DECLARE_LIBRARY(ExistentialTypeRef.Library); int Success = Library->Functions.projectExistential(Library->Context, ExistentialAddress, ExistentialTypeRef.Typeref, &OutInstanceTypeRef->Typeref, OutStartOfInstanceData); if (!Success) return 0; OutInstanceTypeRef->Library = ExistentialTypeRef.Library; return 1; } static inline void swift_reflection_interop_dumpTypeRef(SwiftReflectionInteropContextRef ContextRef, swift_typeref_interop_t OpaqueTypeRef) { DECLARE_LIBRARY(OpaqueTypeRef.Library); Library->Functions.dumpTypeRef(OpaqueTypeRef.Typeref); } static inline void swift_reflection_interop_dumpInfoForTypeRef(SwiftReflectionInteropContextRef ContextRef, swift_typeref_interop_t OpaqueTypeRef) { DECLARE_LIBRARY(OpaqueTypeRef.Library); Library->Functions.dumpInfoForTypeRef(Library->Context, OpaqueTypeRef.Typeref); } static inline void swift_reflection_interop_dumpInfoForMetadata(SwiftReflectionInteropContextRef ContextRef, swift_metadata_interop_t Metadata) { DECLARE_LIBRARY(Metadata.Library); Library->Functions.dumpInfoForMetadata(Library->Context, Metadata.Metadata); } static inline void swift_reflection_interop_dumpInfoForInstance(SwiftReflectionInteropContextRef ContextRef, uintptr_t Object) { struct SwiftReflectionInteropContextLibrary *Library = swift_reflection_interop_libraryForObject(ContextRef, Object); if (Library != NULL) { Library->Functions.dumpInfoForInstance(Library->Context, Object); } } static inline size_t swift_reflection_interop_demangle(SwiftReflectionInteropContextRef ContextRef, const char *MangledName, size_t Length, char *OutDemangledName, size_t MaxLength) { FOREACH_LIBRARY { return Library->Functions.demangle(MangledName, Length, OutDemangledName, MaxLength); } return 0; } #undef FOREACH_LIBRARY #undef LIBRARY_INDEX #undef DECLARE_LIBRARY /// @} #endif // defined(__APPLE__) && defined(__MACH__) #endif // SWIFT_REMOTE_MIRROR_LEGACY_INTEROP_H
[ "mikeash@apple.com" ]
mikeash@apple.com
175f83c1fdd1730ee9c1dc6d89acba11de6491c0
c2445b8329c7d6e912cc29ca838f41e4c6df6988
/modules/standard/bench/scalar/atan.cpp
0a28bc157343ee05d754e23bac4e2900d6e52ad5
[ "BSL-1.0" ]
permissive
francescog/nt2
b88548a8fb26f905e8b237148effe7a41d00fca8
1930097285539d3a3a758ec44061ba3a2f7281d9
refs/heads/master
2021-01-18T05:54:29.136634
2011-06-18T14:59:32
2011-06-18T14:59:32
1,914,634
0
0
null
null
null
null
UTF-8
C++
false
false
1,668
cpp
////////////////////////////////////////////////////////////////////////////// /// Copyright 2003 and onward LASMEA UMR 6602 CNRS/U.B.P Clermont-Ferrand /// Copyright 2009 and onward LRI UMR 8623 CNRS/Univ Paris Sud XI /// /// Distributed under the Boost Software License, Version 1.0 /// See accompanying file LICENSE.txt or copy at /// http://www.boost.org/LICENSE_1_0.txt ////////////////////////////////////////////////////////////////////////////// #define NT2_BENCH_MODULE "nt2 standard toolbox - atan/scalar Mode" ////////////////////////////////////////////////////////////////////////////// // timing Test behavior of standard components in scalar mode ////////////////////////////////////////////////////////////////////////////// #include <nt2/toolbox/standard/include/atan.hpp> #include <nt2/sdk/unit/benchmark.hpp> #include <nt2/sdk/unit/bench_includes.hpp> #include <cmath> ////////////////////////////////////////////////////////////////////////////// // scalar runtime benchmark for functor<atan_> from standard ////////////////////////////////////////////////////////////////////////////// using nt2::standard::tag::atan_; ////////////////////////////////////////////////////////////////////////////// // range macro ////////////////////////////////////////////////////////////////////////////// #define RS(T,V1,V2) (T, T(V1) ,T(V2)) namespace n1 { typedef float T; typedef nt2::meta::as_integer<T>::type iT; NT2_TIMING(atan_,(RS(T,T(-100),T(100)))) } namespace n2 { typedef double T; typedef nt2::meta::as_integer<T>::type iT; NT2_TIMING(atan_,(RS(T,T(-100),T(100)))) } #undef RS
[ "jtlapreste@gmail.com" ]
jtlapreste@gmail.com
2f1ef1bd60c212e2bdf3022675dc5fdeb59ed84c
57126f65a47d4b8ccd8932425178c6717639c989
/external/glbinding-2.0.0/source/glbinding/include/glbinding/gl21/boolean.h
61f8689e00d5f1e730afd8770b287f46d6da4b78
[ "MIT" ]
permissive
3d-scan/rgbd-recon
4c435e06ecee867fd7bd365363eff92ef7513a39
c4a5614eaa55dd93c74da70d6fb3d813d74f2903
refs/heads/master
2020-03-22T16:09:56.569088
2018-04-28T10:58:51
2018-04-28T10:58:51
140,307,666
1
0
MIT
2018-07-09T15:47:26
2018-07-09T15:47:26
null
UTF-8
C++
false
false
192
h
#pragma once #include <glbinding/nogl.h> #include <glbinding/gl/boolean.h> namespace gl21 { // import booleans to namespace using gl::GL_FALSE; using gl::GL_TRUE; } // namespace gl21
[ "jakob.wagner@uni-weimar.de" ]
jakob.wagner@uni-weimar.de
321fda9838a053da8c54075769a7b99fc818664d
01bcef56ade123623725ca78d233ac8653a91ece
/game/client/cstrike15/gameui/optionssubmouse.cpp
144fd13dae663e1766dafc04fd5cdcfcebeadb38
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-unknown-license-reference" ]
permissive
SwagSoftware/Kisak-Strike
1085ba3c6003e622dac5ebc0c9424cb16ef58467
4c2fdc31432b4f5b911546c8c0d499a9cff68a85
refs/heads/master
2023-09-01T02:06:59.187775
2022-09-05T00:51:46
2022-09-05T00:51:46
266,676,410
921
123
null
2022-10-01T16:26:41
2020-05-25T03:41:35
C++
WINDOWS-1252
C++
false
false
8,454
cpp
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============// // // Purpose: // // $NoKeywords: $ // //=============================================================================// #include "optionssubmouse.h" //#include "CommandCheckButton.h" #include "keytogglecheckbutton.h" #include "cvarnegatecheckbutton.h" #include "cvartogglecheckbutton.h" #include "cvarslider.h" #include "engineinterface.h" #include <keyvalues.h> #include <vgui/IScheme.h> #include "tier1/convar.h" #include <stdio.h> #include <vgui_controls/TextEntry.h> // memdbgon must be the last include file in a .cpp file!!! #include <tier0/memdbgon.h> using namespace vgui; COptionsSubMouse::COptionsSubMouse(vgui::Panel *parent) : PropertyPage(parent, NULL) { m_pReverseMouseCheckBox = new CCvarNegateCheckButton( this, "ReverseMouse", "#GameUI_ReverseMouse", "m_pitch" ); m_pMouseFilterCheckBox = new CCvarToggleCheckButton( this, "MouseFilter", "#GameUI_MouseFilter", "m_filter" ); m_pMouseRawCheckBox = new CCvarToggleCheckButton( this, "MouseRaw", "#GameUI_MouseRaw", "m_rawinput" ); m_pMouseAccelerationCheckBox = new CheckButton( this, "MouseAccelerationCheckbox", "#GameUI_MouseCustomAccel" ); m_pJoystickCheckBox = new CCvarToggleCheckButton( this, "Joystick", "#GameUI_Joystick", "joystick" ); m_pJoystickSouthpawCheckBox = new CCvarToggleCheckButton( this, "JoystickSouthpaw", "#GameUI_JoystickSouthpaw", "joy_movement_stick" ); m_pReverseJoystickCheckBox = new CCvarToggleCheckButton( this, "ReverseJoystick", "#GameUI_ReverseJoystick", "joy_inverty" ); m_pQuickInfoCheckBox = new CCvarToggleCheckButton( this, "HudQuickInfo", "#GameUI_HudQuickInfo", "hud_quickinfo" ); m_pMouseSensitivitySlider = new CCvarSlider( this, "Slider", "#GameUI_MouseSensitivity", 0.1f, 6.0f, "sensitivity", true ); m_pMouseSensitivityLabel = new TextEntry(this, "SensitivityLabel"); m_pMouseSensitivityLabel->AddActionSignalTarget(this); m_pMouseAccelExponentSlider = new CCvarSlider( this, "MouseAccelerationSlider", "#GameUI_MouseAcceleration", 1.0f, 1.4f, "m_customaccel_exponent", true ); m_pMouseAccelExponentLabel = new TextEntry(this, "MouseAccelerationLabel"); m_pMouseAccelExponentLabel->AddActionSignalTarget(this); m_pJoyYawSensitivitySlider = new CCvarSlider( this, "JoystickYawSlider", "#GameUI_JoystickYawSensitivity", -0.5f, -7.0f, "joy_yawsensitivity", true ); m_pJoyYawSensitivityPreLabel = new Label(this, "JoystickYawSensitivityPreLabel", "#GameUI_JoystickLookSpeedYaw" ); m_pJoyPitchSensitivitySlider = new CCvarSlider( this, "JoystickPitchSlider", "#GameUI_JoystickPitchSensitivity", 0.5f, 7.0f, "joy_pitchsensitivity", true ); m_pJoyPitchSensitivityPreLabel = new Label(this, "JoystickPitchSensitivityPreLabel", "#GameUI_JoystickLookSpeedPitch" ); LoadControlSettings("Resource\\OptionsSubMouse.res"); UpdateSensitivityLabel(); UpdateAccelerationLabel(); UpdateJoystickPanels(); } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- COptionsSubMouse::~COptionsSubMouse() { } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void COptionsSubMouse::OnResetData() { m_pReverseMouseCheckBox->Reset(); m_pMouseFilterCheckBox->Reset(); m_pMouseRawCheckBox->Reset(); m_pJoystickCheckBox->Reset(); m_pJoystickSouthpawCheckBox->Reset(); m_pMouseSensitivitySlider->Reset(); m_pMouseAccelExponentSlider->Reset(); m_pQuickInfoCheckBox->Reset(); m_pReverseJoystickCheckBox->Reset(); m_pJoyYawSensitivitySlider->Reset(); m_pJoyPitchSensitivitySlider->Reset(); ConVarRef m_customacel("m_customaccel"); if ( m_customacel.IsValid() ) m_pMouseAccelerationCheckBox->SetSelected( m_customacel.GetBool() ); } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void COptionsSubMouse::OnApplyChanges() { m_pReverseMouseCheckBox->ApplyChanges(); m_pMouseFilterCheckBox->ApplyChanges(); m_pMouseRawCheckBox->ApplyChanges(); m_pJoystickCheckBox->ApplyChanges(); m_pJoystickSouthpawCheckBox->ApplyChanges(); m_pMouseSensitivitySlider->ApplyChanges(); m_pMouseAccelExponentSlider->ApplyChanges(); m_pQuickInfoCheckBox->ApplyChanges(); m_pReverseJoystickCheckBox->ApplyChanges(); m_pJoyYawSensitivitySlider->ApplyChanges(); m_pJoyPitchSensitivitySlider->ApplyChanges(); engine->ClientCmd_Unrestricted( "joyadvancedupdate" ); engine->ClientCmd_Unrestricted( "exec userconfig.cfg\nhost_writeconfig\n" ); ConVarRef m_customacel("m_customaccel"); if ( m_customacel.IsValid() ) m_customacel.SetValue(m_pMouseAccelerationCheckBox->IsSelected() ? 3 : 0); } //----------------------------------------------------------------------------- // Purpose: sets background color & border //----------------------------------------------------------------------------- void COptionsSubMouse::ApplySchemeSettings(IScheme *pScheme) { BaseClass::ApplySchemeSettings(pScheme); } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void COptionsSubMouse::OnControlModified(Panel *panel) { PostActionSignal(new KeyValues("ApplyButtonEnable")); // the HasBeenModified() check is so that if the value is outside of the range of the // slider, it won't use the slider to determine the display value but leave the // real value that we determined in the constructor if (panel == m_pMouseSensitivitySlider && m_pMouseSensitivitySlider->HasBeenModified()) { UpdateSensitivityLabel(); } else if (panel == m_pMouseAccelExponentSlider && m_pMouseAccelExponentSlider->HasBeenModified()) { UpdateAccelerationLabel(); } else if (panel == m_pJoystickCheckBox) { UpdateJoystickPanels(); } else if (panel == m_pMouseAccelerationCheckBox) { m_pMouseAccelExponentSlider->SetEnabled(m_pMouseAccelerationCheckBox->IsSelected()); m_pMouseAccelExponentLabel->SetEnabled(m_pMouseAccelerationCheckBox->IsSelected()); } } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void COptionsSubMouse::OnTextChanged(Panel *panel) { if ( panel == m_pMouseSensitivityLabel ) { char buf[64]; m_pMouseSensitivityLabel->GetText(buf, 64); float fValue = (float) atof(buf); if (fValue >= 1.0) { m_pMouseSensitivitySlider->SetSliderValue(fValue); PostActionSignal(new KeyValues("ApplyButtonEnable")); } return; } if ( panel == m_pMouseAccelExponentLabel ) { char buf[64]; m_pMouseAccelExponentLabel->GetText(buf, 64); float fValue = (float) atof(buf); if (fValue >= 1.0) { m_pMouseAccelExponentSlider->SetSliderValue(fValue); PostActionSignal(new KeyValues("ApplyButtonEnable")); } } } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void COptionsSubMouse::UpdateSensitivityLabel() { char buf[64]; Q_snprintf(buf, sizeof( buf ), " %.2f", m_pMouseSensitivitySlider->GetSliderValue()); m_pMouseSensitivityLabel->SetText(buf); } void COptionsSubMouse::UpdateAccelerationLabel() { char buf[64]; Q_snprintf(buf, sizeof( buf ), " %.2f", m_pMouseAccelExponentSlider->GetSliderValue()); m_pMouseAccelExponentLabel->SetText(buf); } //----------------------------------------------------------------------------- // Purpose: //----------------------------------------------------------------------------- void COptionsSubMouse::UpdateJoystickPanels() { bool bEnabled = m_pJoystickCheckBox->IsSelected(); m_pReverseJoystickCheckBox->SetEnabled( bEnabled ); m_pJoystickSouthpawCheckBox->SetEnabled( bEnabled ); m_pJoyYawSensitivitySlider->SetEnabled( bEnabled ); m_pJoyYawSensitivityPreLabel->SetEnabled( bEnabled ); m_pJoyPitchSensitivitySlider->SetEnabled( bEnabled ); m_pJoyPitchSensitivityPreLabel->SetEnabled( bEnabled ); }
[ "bbchallenger100@gmail.com" ]
bbchallenger100@gmail.com
e18089ec78f7bd7fd60ac72ea17bdbd119b1a0ef
dc87a9197be51e582a2a9bc6fd20208a526e55b6
/src/image.h
10054cd0e5e75cfa975c5ed3fd14113f0224593e
[]
no_license
kachkov98/PathTracing
7fd7c3ef383ceb028af3b03ae4aeaa9d2ccb1178
82d3ab25f7cbaa172ee55a9726263ee61a7fe0ce
refs/heads/master
2020-12-31T04:55:44.161963
2016-04-28T21:24:26
2016-04-28T21:24:26
57,333,305
2
0
null
null
null
null
UTF-8
C++
false
false
261
h
#pragma once #include "3dmath.h" class Image { public: unsigned int width, height; unsigned char *image; Image (unsigned int Width, unsigned int Height); ~Image (); void WriteToTga (const char *filename); };
[ "kachkov98@gmail.com" ]
kachkov98@gmail.com
65bc227184016dcb00b6b81bcf7eeafed45f35bf
98ad0b807c5be370e2c764d1226e3182f88de969
/src/main/include/commands/ClimbCylinderExtendCommand.h
2bfe7c0687f364aedd3e8c0bf4a4b8eabac84c0b
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
PhyXTGears-programming/2020-RobotCode
dff03fb7d79e442e95851f780b90a329065ed8cf
87804cb4f476d35d9d304d425a1cbe1345b7f3ab
refs/heads/release
2023-03-30T16:34:43.067036
2020-03-06T18:12:03
2020-03-06T18:12:03
232,945,111
0
1
MIT
2020-05-25T04:43:43
2020-01-10T02:04:34
C++
UTF-8
C++
false
false
492
h
#pragma once #include <frc2/command/CommandBase.h> #include <frc2/command/CommandHelper.h> #include "subsystems/Climb.h" class ClimbCylinderExtendCommand : public frc2::CommandHelper<frc2::CommandBase, ClimbCylinderExtendCommand> { public: explicit ClimbCylinderExtendCommand (Climb* climb) { AddRequirements(climb); m_Climb = climb; } void Initialize () { m_Climb->PistonExtend(); } bool IsFinished () { return true; } private: Climb* m_Climb; };
[ "phyxtgearspro@gmail.com" ]
phyxtgearspro@gmail.com
d5abbcea4cac9ad908ff1135d19d289feae29a63
32741dc3c39ccc9936605cb1dd61f7dd7d630a82
/include/april/MasterShader.h
a7168d505c0516ab53345a08e41aab5cf4d36db2
[ "BSD-3-Clause" ]
permissive
borisblizzard/april
5d1b3bb77b1a0746a3ec920414dc723fcf88fc9e
f9b175089d91d169b7cd5e1d597a54c3df4163c1
refs/heads/master
2023-08-18T09:35:11.600829
2023-08-16T12:25:35
2023-08-16T12:25:35
219,540,445
0
0
null
2019-11-04T16:00:37
2019-11-04T16:00:36
null
UTF-8
C++
false
false
1,982
h
/// @file /// @version 6.0 /// /// @section LICENSE /// /// This program is free software; you can redistribute it and/or modify it under /// the terms of the BSD license: http://opensource.org/licenses/BSD-3-Clause /// /// @section DESCRIPTION /// /// Defines a generic master shader. #ifndef APRIL_MASTER_SHADER_H #define APRIL_MASTER_SHADER_H #include <hltypes/harray.h> #include <hltypes/hstream.h> #include <hltypes/hstring.h> #include "MasterShaderBase.h" #include "ShaderBase.h" #include "StageFragment.h" #include "StageVertex.h" namespace april { class RenderSystem; template <typename V, typename F> class MasterShader : public MasterShaderBase { public: friend class RenderSystem; HL_DEFINE_GET(V*, stageVertex, StageVertex); HL_DEFINE_GET(F*, stageFragment, StageFragment); HL_DEFINE_GET_OVERRIDE(StageVertex*, stageVertex, CurrentStageVertex); HL_DEFINE_GET_OVERRIDE(StageFragment*, stageFragment, CurrentStageFragment); HL_DEFINE_GET_OVERRIDE(StageVertex*, stageVertex, DefinitionStageVertex); HL_DEFINE_GET_OVERRIDE(StageFragment*, stageFragment, DefinitionStageFragment); inline static hstr getSystemName() { return (V::getSystemName() + "+" + F::getSystemName()); } protected: V* stageVertex; F* stageFragment; inline MasterShader() : MasterShaderBase(), stageVertex(this->_createStage<V>()), stageFragment(this->_createStage<F>()) { } inline MasterShader(V* stageVertex, F* stageFragment) : MasterShaderBase(), stageVertex(stageVertex), stageFragment(stageFragment) { } inline ~MasterShader() { delete this->stageVertex; delete this->stageFragment; } inline void _applyUniforms(ShaderBase* shader) override { V* stageVertex = (V*)shader->getCurrentStageVertex(); F* stageFragment = (F*)shader->getCurrentStageFragment(); MasterShaderBase::_applyUniforms(shader); this->stageVertex = stageVertex; this->stageFragment = stageFragment; } }; } #endif
[ "boris.blizzard@gmail.com" ]
boris.blizzard@gmail.com
e88c0f4d5f687f3d72cbb4d76e04ccb84c7c0990
f2219d906b65dd3c701b5df9d829217bf2f1ad1a
/Aula01/Mesh.cpp
109a7b1de97b02141c007cf0ae91e48f59db6ab6
[]
no_license
fabiovarisco/CG_GA
3343404f4eb8258783f834a68ddc5db886c15a66
63f08769759db7f50cbc90b973c081efb6c2b3d1
refs/heads/master
2020-03-31T14:16:42.066544
2018-10-10T01:51:08
2018-10-10T01:51:08
152,287,670
2
0
null
null
null
null
UTF-8
C++
false
false
656
cpp
#include "Mesh.h" Mesh::Mesh() { } Mesh::~Mesh() { } std::vector<glm::vec2> &Mesh::getMappings() { return mappings; } std::vector<glm::vec3> &Mesh::getVertexes() { return vertexes; } std::vector<glm::vec3> &Mesh::getNormals() { return normals; } std::vector<Group*> &Mesh::getGroups() { return groups; } void Mesh::setMappings(std::vector<glm::vec2> *i_mappings) { mappings = *i_mappings; } void Mesh::setVertexes(std::vector<glm::vec3> *i_vertexes) { vertexes = *i_vertexes; } void Mesh::setNormals(std::vector<glm::vec3> *i_normals) { normals = *i_normals; } void Mesh::setGroups(std::vector<Group*> *i_groups) { groups = *i_groups; }
[ "fabio.varisco@sap.com" ]
fabio.varisco@sap.com
b1b91086294422d7ddce663215f70f285970cc3b
d55d2a1134d843521ff9b345afb904b70e9f3043
/base_maths.h
d41f91086f2fc344666fa38df67dd06b5444b223
[ "MIT" ]
permissive
codemonkey-uk/geometry
70898eb98cc23e564adfe3140eab84e50f9e433c
3420c2de74211e350d19796cedf8a5f9fa6e481e
refs/heads/master
2023-01-23T11:12:04.303741
2023-01-12T22:28:09
2023-01-12T22:28:09
17,033,076
1
0
null
null
null
null
UTF-8
C++
false
false
1,890
h
#ifndef BASIC_MATHS_HEADER_INCLUDED #define BASIC_MATHS_HEADER_INCLUDED #include <limits> #include <cmath> namespace Geometry { inline float Sqrt( float f ) { return sqrtf( f ); } inline double Sqrt( double f ) { return sqrt( f ); } inline float Fabs( float f ) { return fabsf( f ); } inline double Fabs( double f ) { return fabs( f ); } // http://www.codecodex.com/wiki/index.php?title=Calculate_an_integer_square_root inline int Sqrt( int x ) { unsigned long op, res, one; op = x; res = 0; one = 1 << 30; while (one > op) one >>= 2; while (one != 0) { if (op >= res + one) { op = op - (res + one); res = res + 2 * one; } res >>= 1; one >>= 2; } return int(res); } inline float Sin( float f ) { return sinf(f); } inline float Cos( float f ) { return cosf(f); } inline double Sin( double d ) { return sin(d); } inline double Cos( double d ) { return cos(d); } inline int Abs( int i ) { return abs(i); } inline float Abs( float f ) { return fabs(f); } inline double Abs( double d ) { return fabs(d); } inline double Pow( double b, double e ) { return pow(b,e); } inline float Pow( float b, float e ) { return pow(b,e); } inline int iPow( int b, int e ) { int result = 1; while (e) { if (e & 1) result *= b; e >>= 1; b *= b; } return result; } inline int Pow( int b, int e ) { return iPow(b,e); } } #endif //BASIC_MATHS_HEADER_INCLUDED
[ "codemonkey.uk@gmail.com" ]
codemonkey.uk@gmail.com
dfb4b9fef6a483bbc2056bd82de1e62f033b3e89
e396ca3e9140c8a1f43c2505af6f318d40a7db1d
/unittest/internal_test/HA943_PreviousModifier_IsOn.cpp
e9fe0d84e400ec1217399f0d168bf9bd96a503d5
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
kenji-hosokawa/rba
4fb2c8ef84c5b8bf2d80785986abd299c9e76203
52a88df64dcfec8165aea32cb3052e7e74a3a709
refs/heads/master
2022-12-17T10:23:05.558421
2020-07-29T11:03:27
2020-07-29T11:03:27
274,852,993
0
0
null
2020-06-25T07:19:19
2020-06-25T07:19:19
null
UTF-8
C++
false
false
15,132
cpp
// Copyright (c) 2019 DENSO CORPORATION. All rights reserved. /** * HA943_PreviousModifier_IsOn.cpp */ #include <vector> #include <string> #include "RBAJsonParser.hpp" #include "TestCommon.hpp" #include "HA943_PreviousModifier_IsOn.hpp" namespace { using namespace rba; HA943_PreviousModifier_IsOn::HA943_PreviousModifier_IsOn() {} HA943_PreviousModifier_IsOn::~HA943_PreviousModifier_IsOn() {} void HA943_PreviousModifier_IsOn::SetUp() { RBAJsonParser parser; model_ = parser.parse(GET_JSON_PATH(JSONFILE)); ASSERT_NE(nullptr, model_); arb_ = new RBAArbitrator(model_); } void HA943_PreviousModifier_IsOn::TearDown() { delete arb_; delete model_; arb_ = nullptr; model_ = nullptr; } bool HA943_PreviousModifier_IsOn::isSuccess(const std::string& msg) { return RBAResultStatusType::SUCCESS == result_->getStatusType(); } bool HA943_PreviousModifier_IsOn::isSatisfiedConstraints(const std::string& msg) { return result_->satisfiesConstraints(); } bool HA943_PreviousModifier_IsOn::isTrue(const std::string& msg, bool res) { return res; } std::string HA943_PreviousModifier_IsOn::getAllocated(const std::string& msg, const std::string& allocName) { const RBAArea* area = model_->findArea(allocName); std::string contentName; if(area) { if(result_->isVisible(area)) { const RBAViewContentState* allocState = result_->getContentState(area); if(allocState) { contentName = allocState->getOwner()->getName(); } } } else { const RBAZone* zone = model_->findZone(allocName); if(result_->isSounding(zone)) { const RBASoundContentState* allocState = result_->getContentState(zone); if(allocState) { contentName = allocState->getOwner()->getName(); } } } return contentName; } bool HA943_PreviousModifier_IsOn::isCanceled(const std::string& msg, const std::string& contentName) { const RBAViewContent* viewContent = model_->findViewContent(contentName); if(viewContent) { // ビューの場合 for(const RBAViewContentState* state : viewContent->getContentStates()) { if(result_->isCancel(state)) { return true; } } } else { // サウンドの場合 const RBASoundContent* soundContent = model_->findSoundContent(contentName); for(const RBASoundContentState* state : soundContent->getContentStates()) { if(result_->isCancel(state)) { return true; } } } return false; } bool HA943_PreviousModifier_IsOn::isActive(const std::string& msg, const std::string& sceneName) { const RBAScene* scene = model_->findScene(sceneName); if(scene == nullptr) { return false; } return result_->isActive(scene); } int32_t HA943_PreviousModifier_IsOn::getProperty(const std::string& msg, const std::string& sceneName, const std::string& propertyName) { const RBAScene* scene = model_->findScene(sceneName); if(scene == nullptr) { return -9999; } return result_->getSceneProperty(scene, propertyName); } bool HA943_PreviousModifier_IsOn::isEnableAllocatable(const std::string& msg, const std::string& allocName) { const RBAArea* area = model_->findArea(allocName); if(area) { return true; } const RBAZone* zone = model_->findZone(allocName); return zone != nullptr; } bool HA943_PreviousModifier_IsOn::isEnableContext(const std::string& msg, const std::string& contextName) { // コンテントチェック std::string contentName = RBAViewContentState::getContentNameByContext(contextName); const RBAViewContent* viewContent = model_->findViewContent(contentName); if(viewContent) { std::string stateName = RBAViewContentState::getContentStateNameByContext(contextName); if(stateName.empty()) { return true; } const RBAViewContentState* state = model_->findViewContentState(contextName); return state != nullptr; } else { const RBASoundContent* soundContent = model_->findSoundContent(contentName); if(soundContent == nullptr) { return false; } std::string stateName = RBASoundContentState::getContentStateNameByContext(contextName); if(stateName.empty()) { return true; } const RBASoundContentState* state = model_->findSoundContentState(contextName); return state != nullptr; } } bool HA943_PreviousModifier_IsOn::isEnableScene(const std::string& msg, const std::string& sceneName) { const RBAScene* scene = model_->findScene(sceneName); return scene != nullptr; } bool HA943_PreviousModifier_IsOn::isAttenuated(const std::string& msg, const std::string& zoneName) { const RBAZone* zone = model_->findZone(zoneName); return result_->isAttenuated(zone); } // 0001 #start 1 TEST_F(HA943_PreviousModifier_IsOn, Test_01) { std::list<std::string> contexts; std::list<std::pair<std::string, std::int32_t>> props; // 0002 CL arb_->clearArbitration(); // 0003 C,on,コンテンツA1,NORMAL result_ = arb_->execute(u8"コンテンツA1/NORMAL", true); EXPECT_TRUE(isSuccess("line=3")); EXPECT_TRUE(isSatisfiedConstraints("line=3")); // 0004 C,on,コンテンツB1,NORMAL result_ = arb_->execute(u8"コンテンツB1/NORMAL", true); EXPECT_TRUE(isSuccess("line=4")); EXPECT_TRUE(isSatisfiedConstraints("line=4")); // 0005 Assert,A,エリアA,コンテンツA1 EXPECT_EQ(u8"コンテンツA1",getAllocated("line=5", u8"エリアA")); // 0006 Assert,A,エリアB, EXPECT_EQ(u8"",getAllocated("line=6", u8"エリアB")); // 0007 Assert,S,s1_Local,off EXPECT_FALSE(isActive("line=7", u8"s1_Local")); // 0008 C,on,コンテンツA2,NORMAL result_ = arb_->execute(u8"コンテンツA2/NORMAL", true); EXPECT_TRUE(isSuccess("line=8")); EXPECT_TRUE(isSatisfiedConstraints("line=8")); // 0009 Assert,A,エリアA,コンテンツA1 EXPECT_EQ(u8"コンテンツA1",getAllocated("line=9", u8"エリアA")); // 0010 Assert,A,エリアB, EXPECT_EQ(u8"",getAllocated("line=10", u8"エリアB")); // 0011 Assert,S,s1_Local,off EXPECT_FALSE(isActive("line=11", u8"s1_Local")); // 0012 C,off,コンテンツA2,NORMAL result_ = arb_->execute(u8"コンテンツA2/NORMAL", false); EXPECT_TRUE(isSuccess("line=12")); EXPECT_TRUE(isSatisfiedConstraints("line=12")); // 0013 Assert,A,エリアA,コンテンツA1 EXPECT_EQ(u8"コンテンツA1",getAllocated("line=13", u8"エリアA")); // 0014 Assert,A,エリアB, EXPECT_EQ(u8"",getAllocated("line=14", u8"エリアB")); // 0015 Assert,S,s1_Local,off EXPECT_FALSE(isActive("line=15", u8"s1_Local")); // 0016 S,on,s1_Local EXPECT_TRUE(arb_->setScene(u8"s1_Local", true, props)); // 0017 C,on,コンテンツA2,NORMAL result_ = arb_->execute(u8"コンテンツA2/NORMAL", true); EXPECT_TRUE(isSuccess("line=17")); EXPECT_TRUE(isSatisfiedConstraints("line=17")); // 0018 Assert,A,エリアA,コンテンツA2 EXPECT_EQ(u8"コンテンツA2",getAllocated("line=18", u8"エリアA")); // 0019 Assert,A,エリアB,コンテンツB1 EXPECT_EQ(u8"コンテンツB1",getAllocated("line=19", u8"エリアB")); // 0020 Assert,S,s1_Local,off EXPECT_TRUE(isActive("line=20", u8"s1_Local")); // 0021 C,off,コンテンツA2,NORMAL result_ = arb_->execute(u8"コンテンツA2/NORMAL", false); EXPECT_TRUE(isSuccess("line=21")); EXPECT_TRUE(isSatisfiedConstraints("line=21")); // 0022 Assert,A,エリアA,コンテンツA1 EXPECT_EQ(u8"コンテンツA1",getAllocated("line=22", u8"エリアA")); // 0023 Assert,A,エリアB, EXPECT_EQ(u8"",getAllocated("line=23", u8"エリアB")); // 0024 Assert,S,s1_Local,off EXPECT_TRUE(isActive("line=24", u8"s1_Local")); } // 0026 #start 2 TEST_F(HA943_PreviousModifier_IsOn, Test_02) { std::list<std::string> contexts; // 0027 CL arb_->clearArbitration(); // 0028 C,on,コンテンツA1,NORMAL result_ = arb_->execute(u8"コンテンツA1/NORMAL", true); EXPECT_TRUE(isSuccess("line=28")); EXPECT_TRUE(isSatisfiedConstraints("line=28")); // 0029 C,on,コンテンツB1,NORMAL result_ = arb_->execute(u8"コンテンツB1/NORMAL", true); EXPECT_TRUE(isSuccess("line=29")); EXPECT_TRUE(isSatisfiedConstraints("line=29")); // 0030 Assert,A,エリアA,コンテンツA1 EXPECT_EQ(u8"コンテンツA1",getAllocated("line=30", u8"エリアA")); // 0031 Assert,A,エリアB, EXPECT_EQ(u8"",getAllocated("line=31", u8"エリアB")); // 0032 Assert,S,s1_Local,off EXPECT_FALSE(isActive("line=32", u8"s1_Local")); // 0033 S,on,s1_Local result_ = arb_->execute(u8"s1_Local", true); EXPECT_TRUE(isSuccess("line=33")); // 0034 Assert,A,エリアA, EXPECT_EQ(u8"",getAllocated("line=34", u8"エリアA")); // 0035 Assert,A,エリアB,コンテンツB1 EXPECT_EQ(u8"コンテンツB1",getAllocated("line=35", u8"エリアB")); // 0036 Assert,S,s1_Local,on EXPECT_TRUE(isActive("line=36", u8"s1_Local")); // 0037 S,off,s1_Local result_ = arb_->execute(u8"s1_Local", false); EXPECT_TRUE(isSuccess("line=37")); // 0038 Assert,A,エリアA, EXPECT_EQ(u8"",getAllocated("line=38", u8"エリアA")); // 0039 Assert,A,エリアB,コンテンツB1 EXPECT_EQ(u8"コンテンツB1",getAllocated("line=39", u8"エリアB")); // 0040 Assert,S,s1_Local,off EXPECT_FALSE(isActive("line=40", u8"s1_Local")); // 0041 C,off,コンテンツA2,NORMAL result_ = arb_->execute(u8"コンテンツA2/NORMAL", false); EXPECT_TRUE(isSuccess("line=41")); EXPECT_TRUE(isSatisfiedConstraints("line=41")); // 0042 Assert,A,エリアA,コンテンツA1 EXPECT_EQ(u8"コンテンツA1",getAllocated("line=42", u8"エリアA")); // 0043 Assert,A,エリアB, EXPECT_EQ(u8"",getAllocated("line=43", u8"エリアB")); // 0044 Assert,S,s1_Local,off EXPECT_FALSE(isActive("line=44", u8"s1_Local")); } // 0046 #start 3 TEST_F(HA943_PreviousModifier_IsOn, Test_03) { std::list<std::string> contexts; std::list<std::pair<std::string, std::int32_t>> props; // 0047 CL arb_->clearArbitration(); // 0048 C,on,コンテンツA2,NORMAL result_ = arb_->execute(u8"コンテンツA2/NORMAL", true); EXPECT_TRUE(isSuccess("line=48")); EXPECT_TRUE(isSatisfiedConstraints("line=48")); // 0049 C,on,コンテンツB2,NORMAL result_ = arb_->execute(u8"コンテンツB2/NORMAL", true); EXPECT_TRUE(isSuccess("line=49")); EXPECT_TRUE(isSatisfiedConstraints("line=49")); // 0050 Assert,A,エリアA,コンテンツA2 EXPECT_EQ(u8"コンテンツA2",getAllocated("line=50", u8"エリアA")); // 0051 Assert,A,エリアB, EXPECT_EQ(u8"",getAllocated("line=51", u8"エリアB")); // 0052 Assert,S,s2_Global,off EXPECT_FALSE(isActive("line=52", u8"s2_Global")); // 0053 C,on,コンテンツA3,NORMAL result_ = arb_->execute(u8"コンテンツA3/NORMAL", true); EXPECT_TRUE(isSuccess("line=53")); EXPECT_TRUE(isSatisfiedConstraints("line=53")); // 0054 Assert,A,エリアA,コンテンツA2 EXPECT_EQ(u8"コンテンツA2",getAllocated("line=54", u8"エリアA")); // 0055 Assert,A,エリアB, EXPECT_EQ(u8"",getAllocated("line=55", u8"エリアB")); // 0056 Assert,S,s2_Global,off EXPECT_FALSE(isActive("line=56", u8"s2_Global")); // 0057 C,off,コンテンツA3,NORMAL result_ = arb_->execute(u8"コンテンツA3/NORMAL", false); EXPECT_TRUE(isSuccess("line=57")); EXPECT_TRUE(isSatisfiedConstraints("line=57")); // 0058 Assert,A,エリアA,コンテンツA2 EXPECT_EQ(u8"コンテンツA2",getAllocated("line=58", u8"エリアA")); // 0059 Assert,A,エリアB, EXPECT_EQ(u8"",getAllocated("line=59", u8"エリアB")); // 0060 Assert,S,s2_Global,off EXPECT_FALSE(isActive("line=60", u8"s2_Global")); // 0061 S,on,s2_Global EXPECT_TRUE(arb_->setScene(u8"s2_Global", true, props)); // 0062 C,on,コンテンツA3,NORMAL result_ = arb_->execute(u8"コンテンツA3/NORMAL", true); EXPECT_TRUE(isSuccess("line=62")); EXPECT_TRUE(isSatisfiedConstraints("line=62")); // 0063 Assert,A,エリアA,コンテンツA3 EXPECT_EQ(u8"コンテンツA3",getAllocated("line=63", u8"エリアA")); // 0064 Assert,A,エリアB,コンテンツAB2 EXPECT_EQ(u8"コンテンツB2",getAllocated("line=64", u8"エリアB")); // 0065 Assert,S,s2_Global,on EXPECT_TRUE(isActive("line=65", u8"s2_Global")); // 0066 C,off,コンテンツA3,NORMAL result_ = arb_->execute(u8"コンテンツA3/NORMAL", false); EXPECT_TRUE(isSuccess("line=66")); EXPECT_TRUE(isSatisfiedConstraints("line=66")); // 0067 Assert,A,エリアA,コンテンツA2 EXPECT_EQ(u8"コンテンツA2",getAllocated("line=67", u8"エリアA")); // 0068 Assert,A,エリアB, EXPECT_EQ(u8"",getAllocated("line=68", u8"エリアB")); // 0069 Assert,S,s2_Global,on EXPECT_TRUE(isActive("line=69", u8"s2_Global")); } // 0071 #start 4 TEST_F(HA943_PreviousModifier_IsOn, Test_04) { std::list<std::string> contexts; // 0072 CL arb_->clearArbitration(); // 0073 C,on,コンテンツA2,NORMAL result_ = arb_->execute(u8"コンテンツA2/NORMAL", true); EXPECT_TRUE(isSuccess("line=73")); EXPECT_TRUE(isSatisfiedConstraints("line=73")); // 0074 C,on,コンテンツB2,NORMAL result_ = arb_->execute(u8"コンテンツB2/NORMAL", true); EXPECT_TRUE(isSuccess("line=74")); EXPECT_TRUE(isSatisfiedConstraints("line=74")); // 0075 Assert,A,エリアA,コンテンツA2 EXPECT_EQ(u8"コンテンツA2",getAllocated("line=75", u8"エリアA")); // 0076 Assert,A,エリアB, EXPECT_EQ(u8"",getAllocated("line=76", u8"エリアB")); // 0077 Assert,S,s2_Global,off EXPECT_FALSE(isActive("line=77", u8"s2_Global")); // 0078 S,on,s2_Global result_ = arb_->execute(u8"s2_Global", true); EXPECT_TRUE(isSuccess("line=78")); // 0079 Assert,A,エリアA, EXPECT_EQ(u8"",getAllocated("line=79", u8"エリアA")); // 0080 Assert,A,エリアB,コンテンツB2 EXPECT_EQ(u8"コンテンツB2",getAllocated("line=80", u8"エリアB")); // 0081 Assert,S,s2_Global,on EXPECT_TRUE(isActive("line=81", u8"s2_Global")); // 0082 S,off,s2_Global result_ = arb_->execute(u8"s2_Global", false); EXPECT_TRUE(isSuccess("line=82")); // 0083 Assert,A,エリアA, EXPECT_EQ(u8"",getAllocated("line=83", u8"エリアA")); // 0084 Assert,A,エリアB,コンテンツB2 EXPECT_EQ(u8"コンテンツB2",getAllocated("line=84", u8"エリアB")); // 0085 Assert,S,s2_Global,off EXPECT_FALSE(isActive("line=85", u8"s2_Global")); // 0086 C,on,コンテンツA3,NORMAL result_ = arb_->execute(u8"コンテンツA3/NORMAL", true); EXPECT_TRUE(isSuccess("line=86")); EXPECT_TRUE(isSatisfiedConstraints("line=86")); // 0087 Assert,A,エリアA,コンテンツA2 EXPECT_EQ(u8"コンテンツA2",getAllocated("line=87", u8"エリアA")); // 0088 Assert,A,エリアB, EXPECT_EQ(u8"",getAllocated("line=88", u8"エリアB")); // 0089 Assert,S,s2_Global,off EXPECT_FALSE(isActive("line=89", u8"s2_Global")); } }
[ "nnishiguchi@jp.adit-jv.com" ]
nnishiguchi@jp.adit-jv.com
a30e3bb4ebedbdbe2db114f4808a371b9bc480ce
c9b5a2cd00764ee4a0b889b5b602eb28fd08e989
/cpp/268. Missing Number.cpp
d7cfa2539bb3a0d17eff751d151fce699e4133e3
[]
no_license
cwza/leetcode
39799a6730185fa06913e3beebebd3e7b2e5d31a
72136e3487d239f5b37e2d6393e034262a6bf599
refs/heads/master
2023-04-05T16:19:08.243139
2021-04-22T04:46:45
2021-04-22T04:46:45
344,026,209
0
0
null
null
null
null
UTF-8
C++
false
false
859
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; class Solution { // Math, Time: O(n), Space: O(1) public: int missingNumber(vector<int>& nums) { int n = nums.size(); int expected = (0+n)*(n+1) / 2; int sum = accumulate(nums.begin(), nums.end(), 0); return expected - sum; } }; int main() { ios::sync_with_stdio(0); cin.tie(0); Solution solution; vi nums; int ans; solution = Solution(); nums = {3,0,1}; ans = solution.missingNumber(nums); assert(ans==2); solution = Solution(); nums = {0,1}; ans = solution.missingNumber(nums); assert(ans==2); solution = Solution(); nums = {9,6,4,2,3,5,7,0,1}; ans = solution.missingNumber(nums); assert(ans==8); }
[ "cwz0205a@gmail.com" ]
cwz0205a@gmail.com
76a4cdc2ee4cd189128f93b9f86f26869cfef44c
7c1103cc5cad2b0dcfcba76469d8dcf4cd31683c
/kaon/old_code/typeIII_D1_fixed_tK/typeIII_D1.cc
a393f9b04f1894f169f078dae8c4c62673d66a53
[]
no_license
ydiz/decays
17040322194a255df01d56b7e365ac01b1ed5761
b1f7ce546983dee8f0a4c550145c3e430fd15a88
refs/heads/master
2021-12-28T23:08:59.640065
2021-12-08T19:53:34
2021-12-08T19:53:34
209,191,276
0
0
null
null
null
null
UTF-8
C++
false
false
6,939
cc
// the result is the form factor except for the coefficient C1, C2 and the coefficient of each individual diagram #include "../kaon.h" #include "amplitude/form_factor.h" using namespace std; using namespace Grid; using namespace Grid::QCD; LatticeKGG calc_leptonic_with_coef(double M_K, const std::vector<int> &v, GridCartesian *grid) { // return L_munu(u, v), where v is a fixed point. LatticeKGG lep(grid); form_factor_integrand(lep, M_K); double lep_coef = 2. / std::pow(M_K, 4); // double hadron_coef = env.Z_V * env.Z_V * 2. * env.M_K / env.N_K; // Note: I did not multiply hadronic coefficient lep = lep * lep_coef; for(int mu=0; mu<4; ++mu) lep = Cshift(lep, mu, -v[mu]); // shift v to origin // FIXME: check it is right to shift -v[mu] return lep; } void restrictTimeRange(LatticePropagator &lat, int vt) { // The allowed interval of u is: vt <= ut <= vt+16 const int T = lat.Grid()->_fdimensions[3]; thread_for(ss, lat.Grid()->lSites(), { Coordinate lcoor, gcoor; localIndexToLocalGlobalCoor(lat.Grid(), ss, lcoor, gcoor); int ut = gcoor[3]; int dist; // dist = u_t - v_t, taking periodic bundary condition into account if(abs(ut - vt)<=T/2) dist = ut - vt; else if(abs(ut + T - vt) <= T/2) dist = ut + T - vt; else dist = ut - T - vt; LatticePropagatorSite m; if(dist==0) {} // if u_t == v_t , do nothing else if(dist > 0 && dist <= T/4) { // u_t>v_t && u_t - v_t <= T/4 // if u is on the right of v, multiple it by 2 peekLocalSite(m, lat, lcoor); m = 2. * m; pokeLocalSite(m, lat, lcoor); } else { // else, set to 0 m = Zero(); pokeLocalSite(m, lat, lcoor); } }); } int main(int argc, char* argv[]) { // Grid_init(&argc, &argv); zyd_init_Grid_Qlattice(argc, argv); int target_traj; if( GridCmdOptionExists(argv, argv+argc, "--traj") ) { string arg = GridCmdOptionPayload(argv, argv+argc, "--traj"); GridCmdOptionInt(arg, target_traj); } else { std::cout << "traj not specified; exiting" << std::endl; assert(0); } int traj_start = target_traj; int traj_end = target_traj; int traj_sep = 10; int traj_num = (traj_end - traj_start) / traj_sep + 1; std::cout << std::string(20, '*') << std::endl; std::cout << "traj_start: " << traj_start << std::endl; std::cout << "traj_end: " << traj_end << std::endl; std::cout << "traj_sep: " << traj_sep << std::endl; std::cout << "traj_num: " << traj_num << std::endl; std::cout << std::string(20, '*') << std::endl; // change those parameters int tsep = 12; // tv = tK + tsep int tsep2 = 6; // tx >= tK + tsep2 int tsep3 = 4; // tx <= tK + T/2 - tsep3 Env env("24ID"); env.N_pt_src = -1; double hadron_coef = env.Z_V * env.Z_V * 2. * env.M_K / env.N_K; // coefficient of hadronic part const int T = env.grid->_fdimensions[3]; for(int traj = traj_start; traj <= traj_end; traj += traj_sep) { env.setup_traj(traj); std::vector<LatticePropagator> wl = env.get_wall('l'); std::vector<LatticePropagator> ws = env.get_wall('s'); LatticePropagator Lxx = env.get_Lxx(); int num_timeSlices = T/2 - tsep3 - tsep2 + 1; vector<Complex> rst_Q1_avgSrc(num_timeSlices, 0.), rst_Q2_avgSrc(num_timeSlices, 0.); // average amplitude on each time slice after averaging over 512 point sources int num_pt_src = 0; if(env.N_pt_src != -1) env.xgs_l.resize(env.N_pt_src); for(const auto &v: env.xgs_l) { std::cout << "# Point source: " << num_pt_src << std::endl; ++num_pt_src; int tK = v[3] - tsep; if(tK < 0) tK += T; LatticePropagator pl = env.get_point(v, 'l'); // pl = L(x, v) // f1 = \sum_u gnu g5 L(u, v)^dagger gmu g5 L(u, tK) LatticePropagator f1_tmp(env.grid); f1_tmp = Zero(); LatticeKGG lep = calc_leptonic_with_coef(env.M_K, v, env.grid); for(int mu=0; mu<4; ++mu) { for(int nu=0; nu<4; ++nu) { if( mu==3 || nu==3 || mu==nu) continue; // For these directions, lep_munu = 0 LatticeComplex lep_munu = PeekIndex<LorentzIndex>(lep, mu, nu); f1_tmp += gmu5[nu] * adj(pl) * gmu5[mu] * wl[tK] * lep_munu; } } // // the summand is non-zero only for the region where vt <= ut <= vt+T/4; When ut>vt, multiply by 2 restrictTimeRange(f1_tmp, v[3]); LatticePropagatorSite f1 = sum(f1_tmp); // calculate contraction LatticeComplex tmp_Q1(env.grid), tmp_Q2(env.grid); tmp_Q1 = Zero(); tmp_Q2 = Zero(); for(int rho=0; rho<4; ++rho) { tmp_Q1 += trace(gL[rho] * Lxx) * ( trace( adj(ws[tK]) * gL[rho] * pl * f1 ) - trace( adj(pl) * gL[rho] * ws[tK] * adj(f1) ) ); // K bar tmp_Q2 += trace( adj(ws[tK]) * gL[rho] * Lxx * gL[rho] * pl * f1 ) - trace( adj(pl) * gL[rho] * Lxx * gL[rho] * ws[tK] * adj(f1) ); } // sum over each time slice int lower_bound = tK + tsep2, upper_bound = tK + T/2 - tsep3; // both lower_bound and upper_bound can be greater than T Sum_Interval_TimeSlice sum_interval(lower_bound, upper_bound, T); vector<LatticeComplexSite> rst_Q1_tmp = sum_interval(tmp_Q1); vector<LatticeComplexSite> rst_Q2_tmp = sum_interval(tmp_Q2); vector<Complex> rst_Q1; for(LatticeComplexSite x: rst_Q1_tmp) rst_Q1.push_back(x()()()); vector<Complex> rst_Q2; for(LatticeComplexSite x: rst_Q2_tmp) rst_Q2.push_back(x()()()); assert(rst_Q1.size() == rst_Q1_avgSrc.size()); assert(rst_Q2.size() == rst_Q2_avgSrc.size()); for(int i=0; i<rst_Q1.size(); ++i) rst_Q1_avgSrc[i] += rst_Q1[i]; for(int i=0; i<rst_Q2.size(); ++i) rst_Q2_avgSrc[i] += rst_Q2[i]; } // end of point source loop std::cout << GridLogMessage << "Number of point sources: " << num_pt_src << std::endl; for(int i=0; i<rst_Q1_avgSrc.size(); ++i) { rst_Q1_avgSrc[i] *= std::exp(env.M_K * tsep); rst_Q2_avgSrc[i] *= std::exp(env.M_K * tsep); rst_Q1_avgSrc[i] /= double(num_pt_src); rst_Q2_avgSrc[i] /= double(num_pt_src); rst_Q1_avgSrc[i] *= hadron_coef; rst_Q2_avgSrc[i] *= hadron_coef; } std::cout << "traj [" << traj << "] amplitude Q1 by time slice: " << rst_Q1_avgSrc << std::endl; std::cout << "traj [" << traj << "] amplitude Q2 by time slice: " << rst_Q2_avgSrc << std::endl; Complex total_amplitude_Q1 = 0., total_amplitude_Q2 = 0.; for(Complex x: rst_Q1_avgSrc) total_amplitude_Q1 += x; for(Complex x: rst_Q2_avgSrc) total_amplitude_Q2 += x; std::cout << "traj [" << traj << "] total amplitude Q1: " << total_amplitude_Q1 << std::endl; std::cout << "traj [" << traj << "] total amplitude Q2: " << total_amplitude_Q2 << std::endl; } // end of traj loop std::cout << "Finished!" << std::endl; Grid_finalize(); return 0; }
[ "zyd2117@gmail.com" ]
zyd2117@gmail.com
4b65b5d071cca6d708f1d00becb9692755bb4348
9030ce2789a58888904d0c50c21591632eddffd7
/SDK/ARKSurvivalEvolved_MissionType_Race_classes.hpp
07caf1057562ff1b093b095792526932826f7b65
[ "MIT" ]
permissive
2bite/ARK-SDK
8ce93f504b2e3bd4f8e7ced184980b13f127b7bf
ce1f4906ccf82ed38518558c0163c4f92f5f7b14
refs/heads/master
2022-09-19T06:28:20.076298
2022-09-03T17:21:00
2022-09-03T17:21:00
232,411,353
14
5
null
null
null
null
UTF-8
C++
false
false
113,272
hpp
#pragma once // ARKSurvivalEvolved (332.8) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "ARKSurvivalEvolved_MissionType_Race_structs.hpp" namespace sdk { //--------------------------------------------------------------------------- //Classes //--------------------------------------------------------------------------- // BlueprintGeneratedClass MissionType_Race.MissionType_Race_C // 0x1F75 (0x2AC8 - 0x0B53) class AMissionType_Race_C : public AMissionTypeBlueprintBase_C { public: unsigned char UnknownData00[0x5]; // 0x0B53(0x0005) MISSED OFFSET TArray<class AMissionTrigger*> Checkpoints; // 0x0B58(0x0010) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnTemplate, DisableEditOnInstance, SaveGame) TArray<struct FRacePlayerData> RaceData; // 0x0B68(0x0010) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, SaveGame) float ExtraRaceSetupDuration; // 0x0B78(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData) bool SpawnRaceDinoForPlayers; // 0x0B7C(0x0001) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData) unsigned char UnknownData01[0x3]; // 0x0B7D(0x0003) MISSED OFFSET float DinoSpawnDistance; // 0x0B80(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData) unsigned char UnknownData02[0x4]; // 0x0B84(0x0004) MISSED OFFSET struct FDinoSetup SpawnedDino; // 0x0B88(0x00F0) (Edit, BlueprintVisible) TArray<class FString> SpawnedDinoNames; // 0x0C78(0x0010) (Edit, BlueprintVisible, ZeroConstructor) class FString DinoTypeDesc; // 0x0C88(0x0010) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, SaveGame) TArray<struct FLootTableEntry> RewardLootTable_FirstPlace; // 0x0C98(0x0010) (Edit, BlueprintVisible, ZeroConstructor) TArray<struct FLootTableEntry> RewardLootTable_SecondPlace; // 0x0CA8(0x0010) (Edit, BlueprintVisible, ZeroConstructor) TArray<struct FLootTableEntry> RewardLootTable_ThirdPlace; // 0x0CB8(0x0010) (Edit, BlueprintVisible, ZeroConstructor) float RewardXPRatio_FirstPlace; // 0x0CC8(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData) float RewardXPRatio_SecondPlace; // 0x0CCC(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData) float RewardXPRatio_ThirdPlace; // 0x0CD0(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData) float RewardXPRatio_FourthOrLowerPlace; // 0x0CD4(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData) bool UsePowerups; // 0x0CD8(0x0001) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData) unsigned char UnknownData03[0x7]; // 0x0CD9(0x0007) MISSED OFFSET TArray<class UClass*> RacePowerUps; // 0x0CE0(0x0010) (Edit, BlueprintVisible, ZeroConstructor) TArray<class AActor*> ActivePowerUps; // 0x0CF0(0x0010) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnTemplate, DisableEditOnInstance) TArray<class AMissionTrigger*> PowerUpTriggers; // 0x0D00(0x0010) (Edit, BlueprintVisible, Net, ZeroConstructor, DisableEditOnTemplate, DisableEditOnInstance) struct FCompanionReactionData CompanionReaction_MissionStart; // 0x0D10(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) struct FCompanionReactionData CompanionReaction_RaceBegin; // 0x0DB0(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) struct FCompanionReactionData CompanionReaction_CheckpointPassed; // 0x0E50(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) struct FCompanionReactionData CompanionReaction_PassingOtherPlayer; // 0x0EF0(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) struct FCompanionReactionData CompanionReaction_WasPassed; // 0x0F90(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) struct FCompanionReactionData CompanionReaction_FinishedRaceFirstPlace; // 0x1030(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) struct FCompanionReactionData CompanionReaction_FinishedRaceRunnerup; // 0x10D0(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) struct FCompanionReactionData CompanionReaction_MissionCompleteSuccess; // 0x1170(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) struct FCompanionReactionData CompanionReaction_MissionCompleteFail; // 0x1210(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) TArray<int> previous_rankings; // 0x12B0(0x0010) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance) float TimeBeforeRaceStartsWhenToPlayGetReadyReaction; // 0x12C0(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) unsigned char UnknownData04[0x4]; // 0x12C4(0x0004) MISSED OFFSET struct FCompanionReactionData CompanionReaction_GetReady; // 0x12C8(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) struct FCompanionReactionData CompanionReaction_PassingOtherPlayer_InFirstPlace; // 0x1368(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) TArray<struct FVector> ServerSpawnLocations; // 0x1408(0x0010) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance) struct FName StartingLineTagName; // 0x1418(0x0008) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) float StartingLocationDistanceMultiplier; // 0x1420(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) unsigned char UnknownData05[0x4]; // 0x1424(0x0004) MISSED OFFSET class UClass* StartingRaceBuff; // 0x1428(0x0008) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) class AMissionServerSidePoint* StartingLine; // 0x1430(0x0008) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnTemplate, DisableEditOnInstance, IsPlainOldData) struct FCompanionReactionData CompanionReaction_PassingOtherPlayer_InSecondPlace; // 0x1438(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) struct FCompanionReactionData CompanionReaction_PassingOtherPlayer_InThirdPlace; // 0x14D8(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) struct FCompanionReactionData CompanionReaction_WasPassed_InLastPlace; // 0x1578(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) TArray<double> time_since_left_dino; // 0x1618(0x0010) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance) TArray<bool> able_to_play_return_to_dino_reaction; // 0x1628(0x0010) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance) TArray<int> index_of_player_controller_of_last_rider; // 0x1638(0x0010) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance) TArray<class APrimalDinoCharacter*> mounted_dinos; // 0x1648(0x0010) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnTemplate, DisableEditOnInstance) TArray<class AShooterPlayerController*> mounted_players; // 0x1658(0x0010) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnTemplate, DisableEditOnInstance) struct FCompanionReactionData CompanionReaction_ReminderToGetOnDino; // 0x1668(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) struct FCompanionReactionData CompanionReaction_GenericRespawn; // 0x1708(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) bool Has_Played_Low_Time_Remaining_Warning; // 0x17A8(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) unsigned char UnknownData06[0x3]; // 0x17A9(0x0003) MISSED OFFSET float Low_Time_Remaining_Warning_Time; // 0x17AC(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) struct FCompanionReactionData CompanionReaction_TimeRunningOut; // 0x17B0(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) bool bTriggerPowerupsOnlyOncePerPlayer; // 0x1850(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) unsigned char UnknownData07[0x3]; // 0x1851(0x0003) MISSED OFFSET float time_before_spawning_dinos_to_play_mount_up_reaction; // 0x1854(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) struct FCompanionReactionData CompanionReaction_MountUp; // 0x1858(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) float time_before_triggering_get_back_on_reaction; // 0x18F8(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) unsigned char UnknownData08[0x4]; // 0x18FC(0x0004) MISSED OFFSET struct FCompanionReactionData CompanionReaction_LeftBounds; // 0x1900(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) struct FCompanionReactionData CompanionReaction_Faster_Encouragement; // 0x19A0(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) struct FCompanionReactionData CompanionReaction_Winning_Encouragement; // 0x1A40(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) float Interval_to_play_encouragement_reactions; // 0x1AE0(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) unsigned char UnknownData09[0x4]; // 0x1AE4(0x0004) MISSED OFFSET struct FCompanionReactionData CompanionReaction_FirstPlaceLeaderboard; // 0x1AE8(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) struct FCompanionReactionData CompanionReaction_PlacedInTop10; // 0x1B88(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) float RaceDuration; // 0x1C28(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) struct FName SplineKeyName; // 0x1C2C(0x0008) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) unsigned char UnknownData10[0x4]; // 0x1C34(0x0004) MISSED OFFSET class AMissionSpline* SplineToFollow; // 0x1C38(0x0008) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnTemplate, DisableEditOnInstance, IsPlainOldData) bool Was_Ever_Using_Timer; // 0x1C40(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) unsigned char UnknownData11[0x3]; // 0x1C41(0x0003) MISSED OFFSET float Higher_Remaining_Warning_Time; // 0x1C44(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) bool Uses_Higher_Time_Remaining_Reaction; // 0x1C48(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) bool Has_Played_Higher_Low_Time_Remaining_Warning; // 0x1C49(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) unsigned char UnknownData12[0x6]; // 0x1C4A(0x0006) MISSED OFFSET struct FCompanionReactionData CompanionReaction_TimeRunningOut_Higher; // 0x1C50(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) struct FCompanionReactionData CompanionReaction_TimeFinished; // 0x1CF0(0x00A0) (Edit, BlueprintVisible, DisableEditOnInstance) TArray<class AShooterCharacter*> RepPlayerPawns; // 0x1D90(0x0010) (Edit, BlueprintVisible, Net, ZeroConstructor, DisableEditOnTemplate, DisableEditOnInstance) float TimePerCheckpoint; // 0x1DA0(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) float InitialTimeBeforeCheckpoint; // 0x1DA4(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) int LocalCheckPointIndex; // 0x1DA8(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) bool bTeleportOutOfBounds; // 0x1DAC(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) unsigned char UnknownData13[0x3]; // 0x1DAD(0x0003) MISSED OFFSET float OutOfBoundsRange; // 0x1DB0(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) float TimeCanBeOutOfBounds; // 0x1DB4(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) class FString OverrideObjectiveString; // 0x1DB8(0x0010) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance) float TimeAfterCompleteToDestroyDino; // 0x1DC8(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) float TimeAfterCompleteToTeleportBack; // 0x1DCC(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) bool bStopDrawingSplineAtCheckpoint; // 0x1DD0(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) bool bTeleportingCharsSetsMovementMode; // 0x1DD1(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) TEnumAsByte<EMovementMode> TeleportingCharsNewMovementMode; // 0x1DD2(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) unsigned char UnknownData14[0x5]; // 0x1DD3(0x0005) MISSED OFFSET struct FText RaceFinishedFormattedText; // 0x1DD8(0x0028) (Edit, BlueprintVisible, DisableEditOnInstance) bool bReRideDinoOnDinoRespawn; // 0x1E00(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) bool bRespawnDinoAtLastCheckpoint; // 0x1E01(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) bool bCheckOverlappedCheckpointFX; // 0x1E02(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) unsigned char UnknownData15[0x5]; // 0x1E03(0x0005) MISSED OFFSET TArray<bool> bCharsHitLastCheckpointFX; // 0x1E08(0x0010) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance) bool TPPlayersToStartBeforeDinosSpawn; // 0x1E18(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) bool bHideIndicatorOfOtherPlayers; // 0x1E19(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) bool bTeleportOOBWhenPassedCurrCheckpoint; // 0x1E1A(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) unsigned char UnknownData16[0x1]; // 0x1E1B(0x0001) MISSED OFFSET float ExtraRaceSetupDuration_Alt; // 0x1E1C(0x0004) (Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData) bool bUseExtraRaceSetupDur_Alt; // 0x1E20(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) bool bHasAddedTeleportBuff; // 0x1E21(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) bool bHasAddedAConsolePlayer; // 0x1E22(0x0001) (Edit, BlueprintVisible, Net, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) unsigned char UnknownData17[0x1]; // 0x1E23(0x0001) MISSED OFFSET float ExtraRaceSetupDurationForConsole; // 0x1E24(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData) bool CallFunc_IsServer_ReturnValue; // 0x1E28(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_EqualEqual_BoolBool_ReturnValue; // 0x1E29(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData18[0x2]; // 0x1E2A(0x0002) MISSED OFFSET int Temp_int_Loop_Counter_Variable; // 0x1E2C(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_Add_IntInt_ReturnValue; // 0x1E30(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData19[0x4]; // 0x1E34(0x0004) MISSED OFFSET class AMissionTrigger* K2Node_Event_Trigger; // 0x1E38(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class AActor* K2Node_Event_OtherActor; // 0x1E40(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class UPrimitiveComponent* K2Node_Event_OtherComp; // 0x1E48(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int K2Node_Event_OtherBodyIndex; // 0x1E50(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData20[0x4]; // 0x1E54(0x0004) MISSED OFFSET class APrimalCharacter* K2Node_DynamicCast_AsPrimalCharacter; // 0x1E58(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast_CastSuccess; // 0x1E60(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData21[0x7]; // 0x1E61(0x0007) MISSED OFFSET class AMissionTrigger_RaceCheckpoint_C* K2Node_DynamicCast_AsMissionTrigger_RaceCheckpoint_C; // 0x1E68(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast2_CastSuccess; // 0x1E70(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData22[0x7]; // 0x1E71(0x0007) MISSED OFFSET class APrimalDinoCharacter* K2Node_DynamicCast_AsPrimalDinoCharacter; // 0x1E78(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast3_CastSuccess; // 0x1E80(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData23[0x7]; // 0x1E81(0x0007) MISSED OFFSET class AShooterCharacter* K2Node_DynamicCast_AsShooterCharacter; // 0x1E88(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast4_CastSuccess; // 0x1E90(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsValid_ReturnValue; // 0x1E91(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData24[0x6]; // 0x1E92(0x0006) MISSED OFFSET class AShooterPlayerController* CallFunc_GetRaceShooterPCAndPawn_ShooterPC; // 0x1E98(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class AShooterCharacter* CallFunc_GetRaceShooterPCAndPawn_ShooterChar; // 0x1EA0(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsValid_ReturnValue2; // 0x1EA8(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_HasPlayerHitTrigger_HasHitBefore; // 0x1EA9(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_TryIncrementCheckpoint_Success; // 0x1EAA(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_TryIncrementCheckpoint_AtEnd; // 0x1EAB(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Is_Power_Up_Active_for_Player_IsValid; // 0x1EAC(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData25[0x3]; // 0x1EAD(0x0003) MISSED OFFSET class AShooterCharacter* CallFunc_GetShooterCharacterFromPawn_ReturnValue; // 0x1EB0(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class APrimalDinoCharacter* K2Node_DynamicCast_AsPrimalDinoCharacter2; // 0x1EB8(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast5_CastSuccess; // 0x1EC0(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData26[0x7]; // 0x1EC1(0x0007) MISSED OFFSET class AController* CallFunc_GetCharacterController_ReturnValue; // 0x1EC8(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class AShooterCharacter* K2Node_Event_ForPlayer; // 0x1ED0(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class AShooterPlayerController* K2Node_Event_ForController; // 0x1ED8(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_Event_bLastPhaseSuccess2; // 0x1EE0(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData27[0x3]; // 0x1EE1(0x0003) MISSED OFFSET float K2Node_Event_XPRewarded; // 0x1EE4(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) TArray<class UPrimalItem*> K2Node_Event_ItemsRewarded; // 0x1EE8(0x0010) (OutParm, ZeroConstructor, Transient, DuplicateTransient, ReferenceParm) int CallFunc_RacePlayerData_NumCheckpoints_ReturnValue; // 0x1EF8(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData28[0x4]; // 0x1EFC(0x0004) MISSED OFFSET class FString CallFunc_GetShortName_ReturnValue; // 0x1F00(0x0010) (ZeroConstructor, Transient, DuplicateTransient) int CallFunc_Subtract_IntInt_ReturnValue; // 0x1F10(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FVector CallFunc_K2_GetActorLocation_ReturnValue; // 0x1F14(0x000C) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) float K2Node_Event_DeltaTime; // 0x1F20(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FVector CallFunc_K2_GetActorLocation_ReturnValue2; // 0x1F24(0x000C) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FName CallFunc_GetCurrentMissionPhaseName_ReturnValue; // 0x1F30(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) TArray<int> CallFunc_RacePlayerData_GetAllPlayerRankings_OutRankings; // 0x1F38(0x0010) (ZeroConstructor, Transient, DuplicateTransient) bool CallFunc_EqualEqual_NameName_ReturnValue; // 0x1F48(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData29[0x3]; // 0x1F49(0x0003) MISSED OFFSET int CallFunc_Array_Find_ReturnValue; // 0x1F4C(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_SwitchInteger_CmpSuccess; // 0x1F50(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_EqualEqual_NameName_ReturnValue2; // 0x1F51(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData30[0x2]; // 0x1F52(0x0002) MISSED OFFSET struct FName CallFunc_GetCurrentMissionPhaseName_ReturnValue2; // 0x1F54(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_EqualEqual_NameName_ReturnValue3; // 0x1F5C(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData31[0x3]; // 0x1F5D(0x0003) MISSED OFFSET double CallFunc_GetNetworkTimeInSeconds_ReturnValue; // 0x1F60(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Array_Contains_ReturnValue; // 0x1F68(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData32[0x7]; // 0x1F69(0x0007) MISSED OFFSET class APrimalBuff* CallFunc_GetBuff_ReturnValue; // 0x1F70(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class APrimalBuff* CallFunc_GetBuff_ReturnValue2; // 0x1F78(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class ABuff_RaceMissionHelper_C* K2Node_DynamicCast_AsBuff_RaceMissionHelper_C; // 0x1F80(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast6_CastSuccess; // 0x1F88(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData33[0x7]; // 0x1F89(0x0007) MISSED OFFSET class ABuff_RaceMissionHelper_C* K2Node_DynamicCast_AsBuff_RaceMissionHelper_C2; // 0x1F90(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast7_CastSuccess; // 0x1F98(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData34[0x3]; // 0x1F99(0x0003) MISSED OFFSET int Temp_int_Loop_Counter_Variable2; // 0x1F9C(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_Add_IntInt_ReturnValue2; // 0x1FA0(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int Temp_int_Loop_Counter_Variable3; // 0x1FA4(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_Add_IntInt_ReturnValue3; // 0x1FA8(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FName K2Node_CustomEvent_OldPhaseName3; // 0x1FAC(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FName K2Node_CustomEvent_NewPhaseName3; // 0x1FB4(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FName K2Node_CustomEvent_OldPhaseName2; // 0x1FBC(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FName K2Node_CustomEvent_NewPhaseName2; // 0x1FC4(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FLinearColor K2Node_MakeStruct_LinearColor; // 0x1FCC(0x0010) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Array_IsValidIndex_ReturnValue; // 0x1FDC(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData35[0x3]; // 0x1FDD(0x0003) MISSED OFFSET class AMissionTrigger* CallFunc_Array_Get_Item; // 0x1FE0(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) TArray<class APrimalCharacter*> CallFunc_GetAllCharactersTouchingTrigger_OutCharacters; // 0x1FE8(0x0010) (ZeroConstructor, Transient, DuplicateTransient) bool CallFunc_Array_IsValidIndex_ReturnValue2; // 0x1FF8(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData36[0x3]; // 0x1FF9(0x0003) MISSED OFFSET int CallFunc_Array_Length_ReturnValue; // 0x1FFC(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FName CallFunc_Array_Get_Item2; // 0x2000(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) TArray<class AMissionTrigger*> CallFunc_GetAllMissionTriggersWithKey_OutTriggerActors; // 0x2008(0x0010) (ZeroConstructor, Transient, DuplicateTransient) bool CallFunc_HasAuthority_ReturnValue; // 0x2018(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsLoadingSaveGame_ReturnValue; // 0x2019(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_BooleanAND_ReturnValue; // 0x201A(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_RacePlayerData_FixupControllers_ReturnValue; // 0x201B(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData37[0x4]; // 0x201C(0x0004) MISSED OFFSET class AMissionDispatcher* K2Node_DynamicCast_AsMissionDispatcher; // 0x2020(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast8_CastSuccess; // 0x2028(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Array_IsValidIndex_ReturnValue3; // 0x2029(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData38[0x2]; // 0x202A(0x0002) MISSED OFFSET struct FName CallFunc_Array_Get_Item3; // 0x202C(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_NotEqual_NameName_ReturnValue; // 0x2034(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData39[0x3]; // 0x2035(0x0003) MISSED OFFSET TArray<class AMissionTrigger*> CallFunc_GetAllMissionTriggersWithKey_OutTriggerActors2; // 0x2038(0x0010) (ZeroConstructor, Transient, DuplicateTransient) int CallFunc_Array_Length_ReturnValue2; // 0x2048(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FName CallFunc_Array_Get_Item4; // 0x204C(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_GreaterEqual_IntInt_ReturnValue; // 0x2054(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_NotEqual_NameName_ReturnValue2; // 0x2055(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData40[0x2]; // 0x2056(0x0002) MISSED OFFSET struct FName CallFunc_Array_Get_Item5; // 0x2058(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Array_IsValidIndex_ReturnValue4; // 0x2060(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_NotEqual_NameName_ReturnValue3; // 0x2061(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData41[0x2]; // 0x2062(0x0002) MISSED OFFSET struct FName CallFunc_Array_Get_Item6; // 0x2064(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_NotEqual_NameName_ReturnValue4; // 0x206C(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData42[0x3]; // 0x206D(0x0003) MISSED OFFSET TArray<class AMissionTrigger*> CallFunc_GetAllMissionTriggersWithKey_OutTriggerActors3; // 0x2070(0x0010) (ZeroConstructor, Transient, DuplicateTransient) int CallFunc_Array_Length_ReturnValue3; // 0x2080(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_GreaterEqual_IntInt_ReturnValue2; // 0x2084(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Array_IsValidIndex_ReturnValue5; // 0x2085(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData43[0x2]; // 0x2086(0x0002) MISSED OFFSET struct FName CallFunc_Array_Get_Item7; // 0x2088(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) TArray<class AMissionTrigger*> CallFunc_GetAllMissionTriggersWithKey_OutTriggerActors4; // 0x2090(0x0010) (ZeroConstructor, Transient, DuplicateTransient) TArray<class AShooterCharacter*> CallFunc_GetAllPlayersOnMission_OutCharacters; // 0x20A0(0x0010) (ZeroConstructor, Transient, DuplicateTransient) struct FVector CallFunc_K2_GetActorLocation_ReturnValue3; // 0x20B0(0x000C) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FVector CallFunc_Add_VectorVector_ReturnValue; // 0x20BC(0x000C) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_Len_ReturnValue; // 0x20C8(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_EqualEqual_IntInt_ReturnValue; // 0x20CC(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData44[0x3]; // 0x20CD(0x0003) MISSED OFFSET class AMissionTrigger* CallFunc_Array_Get_Item8; // 0x20D0(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Array_IsValidIndex_ReturnValue6; // 0x20D8(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData45[0x3]; // 0x20D9(0x0003) MISSED OFFSET struct FVector CallFunc_K2_GetActorLocation_ReturnValue4; // 0x20DC(0x000C) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FVector CallFunc_K2_GetActorLocation_ReturnValue5; // 0x20E8(0x000C) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FRotator CallFunc_FindLookAtRotation_ReturnValue; // 0x20F4(0x000C) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int Temp_int_Loop_Counter_Variable4; // 0x2100(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FRotator CallFunc_SelectRotator_ReturnValue; // 0x2104(0x000C) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_Add_IntInt_ReturnValue4; // 0x2110(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_Array_Length_ReturnValue4; // 0x2114(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class APrimalDinoCharacter* CallFunc_Array_Get_Item9; // 0x2118(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FText CallFunc_Conv_IntToText_ReturnValue; // 0x2120(0x0028) (Transient, DuplicateTransient) bool CallFunc_Greater_IntInt_ReturnValue; // 0x2148(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData46[0x7]; // 0x2149(0x0007) MISSED OFFSET struct FFormatTextArgument K2Node_MakeStruct_FormatTextArgument; // 0x2150(0x0050) (Transient, DuplicateTransient) int CallFunc_Array_Length_ReturnValue5; // 0x21A0(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData47[0x4]; // 0x21A4(0x0004) MISSED OFFSET TArray<class AMissionServerSidePoint*> CallFunc_GetAllMissionServerSidePointsWithKey_OutServerSidePointActors;// 0x21A8(0x0010) (ZeroConstructor, Transient, DuplicateTransient) class AMissionServerSidePoint* CallFunc_Array_Get_Item10; // 0x21B8(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_Array_Length_ReturnValue6; // 0x21C0(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FRotator CallFunc_GetSpawnPointsForStartingLine_ForwardRot; // 0x21C4(0x000C) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Greater_IntInt_ReturnValue2; // 0x21D0(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData48[0x3]; // 0x21D1(0x0003) MISSED OFFSET int CallFunc_Array_Length_ReturnValue7; // 0x21D4(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_Array_Length_ReturnValue8; // 0x21D8(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData49[0x4]; // 0x21DC(0x0004) MISSED OFFSET struct FText CallFunc_Conv_IntToText_ReturnValue2; // 0x21E0(0x0028) (Transient, DuplicateTransient) struct FFormatTextArgument K2Node_MakeStruct_FormatTextArgument2; // 0x2208(0x0050) (Transient, DuplicateTransient) TArray<struct FFormatTextArgument> K2Node_MakeArray_Array; // 0x2258(0x0010) (ZeroConstructor, Transient, DuplicateTransient) int CallFunc_Array_Length_ReturnValue9; // 0x2268(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData50[0x4]; // 0x226C(0x0004) MISSED OFFSET struct FText CallFunc_Format_ReturnValue; // 0x2270(0x0028) (Transient, DuplicateTransient) TArray<class AShooterCharacter*> CallFunc_GetAllPlayerCharactersInvolvedInMission_OutPlayerCharacters;// 0x2298(0x0010) (ZeroConstructor, Transient, DuplicateTransient) class FString CallFunc_Conv_TextToString_ReturnValue; // 0x22A8(0x0010) (ZeroConstructor, Transient, DuplicateTransient) class AShooterCharacter* CallFunc_Array_Get_Item11; // 0x22B8(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_Array_Length_ReturnValue10; // 0x22C0(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FRotator CallFunc_GetSpawnPointsForStartingLine_ForwardRot2; // 0x22C4(0x000C) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Greater_IntInt_ReturnValue3; // 0x22D0(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData51[0x7]; // 0x22D1(0x0007) MISSED OFFSET TArray<class AShooterCharacter*> CallFunc_GetAllPlayersOnMission_OutCharacters2; // 0x22D8(0x0010) (ZeroConstructor, Transient, DuplicateTransient) int CallFunc_Array_Length_ReturnValue11; // 0x22E8(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData52[0x4]; // 0x22EC(0x0004) MISSED OFFSET class AShooterCharacter* CallFunc_Array_Get_Item12; // 0x22F0(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Less_IntInt_ReturnValue; // 0x22F8(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsValid_ReturnValue3; // 0x22F9(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData53[0x6]; // 0x22FA(0x0006) MISSED OFFSET class APlayerController* CallFunc_GetOwnerController_ReturnValue; // 0x2300(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class APrimalBuff* CallFunc_GetMissionBuff_ReturnValue; // 0x2308(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class AShooterPlayerController* K2Node_DynamicCast_AsShooterPlayerController; // 0x2310(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast9_CastSuccess; // 0x2318(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData54[0x7]; // 0x2319(0x0007) MISSED OFFSET class ABuff_RaceMissionHelper_C* K2Node_DynamicCast_AsBuff_RaceMissionHelper_C3; // 0x2320(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast10_CastSuccess; // 0x2328(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData55[0x3]; // 0x2329(0x0003) MISSED OFFSET float CallFunc_GetBestTimeForPlayer_BestValidTime; // 0x232C(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsServer_ReturnValue2; // 0x2330(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData56[0x3]; // 0x2331(0x0003) MISSED OFFSET int Temp_int_Loop_Counter_Variable5; // 0x2334(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_Array_Length_ReturnValue12; // 0x2338(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData57[0x4]; // 0x233C(0x0004) MISSED OFFSET class AShooterCharacter* CallFunc_Array_Get_Item13; // 0x2340(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Less_IntInt_ReturnValue2; // 0x2348(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData58[0x7]; // 0x2349(0x0007) MISSED OFFSET class FString CallFunc_Conv_ObjectToString_ReturnValue; // 0x2350(0x0010) (ZeroConstructor, Transient, DuplicateTransient) struct FText CallFunc_Conv_StringToText_ReturnValue; // 0x2360(0x0028) (Transient, DuplicateTransient) class APrimalBuff* CallFunc_StaticAddBuff_ReturnValue; // 0x2388(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FFormatTextArgument K2Node_MakeStruct_FormatTextArgument3; // 0x2390(0x0050) (Transient, DuplicateTransient) bool CallFunc_Less_IntInt_ReturnValue3; // 0x23E0(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData59[0x7]; // 0x23E1(0x0007) MISSED OFFSET TArray<struct FFormatTextArgument> K2Node_MakeArray_Array2; // 0x23E8(0x0010) (ZeroConstructor, Transient, DuplicateTransient) struct FText CallFunc_Format_ReturnValue2; // 0x23F8(0x0028) (Transient, DuplicateTransient) struct FVector CallFunc_Array_Get_Item14; // 0x2420(0x000C) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData60[0x4]; // 0x242C(0x0004) MISSED OFFSET class FString CallFunc_Conv_TextToString_ReturnValue2; // 0x2430(0x0010) (ZeroConstructor, Transient, DuplicateTransient) bool CallFunc_K2_TeleportTo_ReturnValue; // 0x2440(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData61[0x3]; // 0x2441(0x0003) MISSED OFFSET int CallFunc_Add_IntInt_ReturnValue5; // 0x2444(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class APrimalDinoCharacter* CallFunc_Array_Get_Item15; // 0x2448(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FName K2Node_CustomEvent_OldPhaseName; // 0x2450(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FName K2Node_CustomEvent_NewPhaseName; // 0x2458(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsValid_ReturnValue4; // 0x2460(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Array_IsValidIndex_ReturnValue7; // 0x2461(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData62[0x2]; // 0x2462(0x0002) MISSED OFFSET struct FName CallFunc_Array_Get_Item16; // 0x2464(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData63[0x4]; // 0x246C(0x0004) MISSED OFFSET TArray<class AMissionTrigger*> CallFunc_GetAllMissionTriggersWithKey_OutTriggerActors5; // 0x2470(0x0010) (ZeroConstructor, Transient, DuplicateTransient) bool CallFunc_Array_IsValidIndex_ReturnValue8; // 0x2480(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData64[0x3]; // 0x2481(0x0003) MISSED OFFSET struct FName CallFunc_Array_Get_Item17; // 0x2484(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData65[0x4]; // 0x248C(0x0004) MISSED OFFSET TArray<class AMissionTrigger*> CallFunc_GetAllMissionTriggersWithKey_OutTriggerActors6; // 0x2490(0x0010) (ZeroConstructor, Transient, DuplicateTransient) TArray<class AMissionServerSidePoint*> CallFunc_GetAllMissionServerSidePointsWithKey_OutServerSidePointActors2;// 0x24A0(0x0010) (ZeroConstructor, Transient, DuplicateTransient) class AMissionServerSidePoint* CallFunc_Array_Get_Item18; // 0x24B0(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_Array_Length_ReturnValue13; // 0x24B8(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Greater_IntInt_ReturnValue4; // 0x24BC(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData66[0x3]; // 0x24BD(0x0003) MISSED OFFSET int CallFunc_FinalizeMissionPrep_ReturnValue; // 0x24C0(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FVector CallFunc_K2_GetActorLocation_ReturnValue6; // 0x24C4(0x000C) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) TArray<class AShooterCharacter*> CallFunc_GetAllPlayersOnMission_OutCharacters3; // 0x24D0(0x0010) (ZeroConstructor, Transient, DuplicateTransient) int CallFunc_Array_Length_ReturnValue14; // 0x24E0(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FVector CallFunc_K2_GetActorLocation_ReturnValue7; // 0x24E4(0x000C) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_Array_Length_ReturnValue15; // 0x24F0(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Less_IntInt_ReturnValue4; // 0x24F4(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData67[0x3]; // 0x24F5(0x0003) MISSED OFFSET struct FCharacterAndControllerPair CallFunc_Array_Get_Item19; // 0x24F8(0x0010) (Transient, DuplicateTransient) int CallFunc_Array_Length_ReturnValue16; // 0x2508(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData68[0x4]; // 0x250C(0x0004) MISSED OFFSET class APrimalBuff* CallFunc_GetMissionBuff_ReturnValue2; // 0x2510(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Greater_IntInt_ReturnValue5; // 0x2518(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData69[0x7]; // 0x2519(0x0007) MISSED OFFSET class ABuff_RaceMissionHelper_C* K2Node_DynamicCast_AsBuff_RaceMissionHelper_C4; // 0x2520(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast11_CastSuccess; // 0x2528(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData70[0x3]; // 0x2529(0x0003) MISSED OFFSET int CallFunc_Subtract_IntInt_ReturnValue2; // 0x252C(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_EqualEqual_IntInt_ReturnValue2; // 0x2530(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData71[0x3]; // 0x2531(0x0003) MISSED OFFSET int CallFunc_Array_Find_ReturnValue2; // 0x2534(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) TArray<class AShooterCharacter*> CallFunc_GetAllPlayersOnMission_OutCharacters4; // 0x2538(0x0010) (ZeroConstructor, Transient, DuplicateTransient) bool CallFunc_Less_IntInt_ReturnValue5; // 0x2548(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Greater_IntInt_ReturnValue6; // 0x2549(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData72[0x6]; // 0x254A(0x0006) MISSED OFFSET TArray<class AShooterCharacter*> CallFunc_GetAllPlayersOnMission_OutCharacters5; // 0x2550(0x0010) (ZeroConstructor, Transient, DuplicateTransient) int Temp_int_Loop_Counter_Variable6; // 0x2560(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData73[0x4]; // 0x2564(0x0004) MISSED OFFSET class APrimalDinoCharacter* CallFunc_Array_Get_Item20; // 0x2568(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Less_IntInt_ReturnValue6; // 0x2570(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData74[0x3]; // 0x2571(0x0003) MISSED OFFSET struct FVector CallFunc_Array_Get_Item21; // 0x2574(0x000C) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_K2_TeleportTo_ReturnValue2; // 0x2580(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData75[0x3]; // 0x2581(0x0003) MISSED OFFSET int CallFunc_Add_IntInt_ReturnValue6; // 0x2584(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) TArray<class AShooterCharacter*> CallFunc_GetAllPlayersOnMission_OutCharacters6; // 0x2588(0x0010) (ZeroConstructor, Transient, DuplicateTransient) float CallFunc_Subtract_FloatFloat_ReturnValue; // 0x2598(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Greater_FloatFloat_ReturnValue; // 0x259C(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData76[0x3]; // 0x259D(0x0003) MISSED OFFSET int Temp_int_Loop_Counter_Variable7; // 0x25A0(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_Add_IntInt_ReturnValue7; // 0x25A4(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) double CallFunc_GetGameTimeInSeconds_ReturnValue; // 0x25A8(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) TArray<class AMissionSpline*> CallFunc_GetAllMissionSplinesWithKey_OutSplineActors; // 0x25B0(0x0010) (ZeroConstructor, Transient, DuplicateTransient) bool CallFunc_EqualEqual_DoubleDouble_ReturnValue; // 0x25C0(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData77[0x7]; // 0x25C1(0x0007) MISSED OFFSET class AMissionSpline* CallFunc_Array_Get_Item22; // 0x25C8(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsValid_ReturnValue5; // 0x25D0(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Array_IsValidIndex_ReturnValue9; // 0x25D1(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData78[0x2]; // 0x25D2(0x0002) MISSED OFFSET int Temp_int_Loop_Counter_Variable8; // 0x25D4(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class FString CallFunc_GetDinoNameFromArray_Item; // 0x25D8(0x0010) (ZeroConstructor, Transient, DuplicateTransient) bool CallFunc_Less_IntInt_ReturnValue7; // 0x25E8(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData79[0x7]; // 0x25E9(0x0007) MISSED OFFSET struct FDinoSetup CallFunc_GetNamedDinoSetup_Setup; // 0x25F0(0x00F0) (Transient, DuplicateTransient) class AShooterCharacter* CallFunc_Array_Get_Item23; // 0x26E0(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class FString CallFunc_ClassToStringReference_ReturnValue; // 0x26E8(0x0010) (ZeroConstructor, Transient, DuplicateTransient) class APrimalBuff* CallFunc_GetMissionBuff_ReturnValue3; // 0x26F8(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class ABuff_RaceMissionHelper_C* K2Node_DynamicCast_AsBuff_RaceMissionHelper_C5; // 0x2700(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast12_CastSuccess; // 0x2708(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData80[0x7]; // 0x2709(0x0007) MISSED OFFSET class AController* CallFunc_GetCharacterController_ReturnValue2; // 0x2710(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class APlayerController* CallFunc_GetOwnerController_ReturnValue2; // 0x2718(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class AShooterPlayerController* K2Node_DynamicCast_AsShooterPlayerController2; // 0x2720(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast13_CastSuccess; // 0x2728(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData81[0x7]; // 0x2729(0x0007) MISSED OFFSET class AShooterPlayerController* K2Node_DynamicCast_AsShooterPlayerController3; // 0x2730(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast14_CastSuccess; // 0x2738(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData82[0x7]; // 0x2739(0x0007) MISSED OFFSET class APrimalDinoCharacter* CallFunc_SpawnMissionDino_ReturnValue; // 0x2740(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_Array_Add_ReturnValue; // 0x2748(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData83[0x4]; // 0x274C(0x0004) MISSED OFFSET class APrimalBuff* CallFunc_StaticAddBuff_ReturnValue2; // 0x2750(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsValid_ReturnValue6; // 0x2758(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData84[0x7]; // 0x2759(0x0007) MISSED OFFSET class UPrimalItem* CallFunc_GetEquippedItemOfType_ReturnValue; // 0x2760(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsValid_ReturnValue7; // 0x2768(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData85[0x3]; // 0x2769(0x0003) MISSED OFFSET int CallFunc_Array_Add_ReturnValue2; // 0x276C(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FVector CallFunc_FindValidLocationInFrontOfTarget_OutLocation; // 0x2770(0x000C) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_FindValidLocationInFrontOfTarget_ReturnValue; // 0x277C(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsPlayerOnMission_ReturnValue; // 0x277D(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_K2_TeleportTo_ReturnValue3; // 0x277E(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData86[0x1]; // 0x277F(0x0001) MISSED OFFSET struct FRotator CallFunc_K2_GetActorRotation_ReturnValue; // 0x2780(0x000C) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) struct FVector CallFunc_K2_GetActorLocation_ReturnValue8; // 0x278C(0x000C) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_AddPlayerToMission_ReturnValue; // 0x2798(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData87[0x3]; // 0x2799(0x0003) MISSED OFFSET int CallFunc_Add_IntInt_ReturnValue8; // 0x279C(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) TArray<class AShooterCharacter*> CallFunc_GetAllPlayersOnMission_OutCharacters7; // 0x27A0(0x0010) (ZeroConstructor, Transient, DuplicateTransient) float CallFunc_GetRemainingTime_ReturnValue; // 0x27B0(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_Array_Length_ReturnValue17; // 0x27B4(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Greater_FloatFloat_ReturnValue2; // 0x27B8(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Less_IntInt_ReturnValue8; // 0x27B9(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData88[0x6]; // 0x27BA(0x0006) MISSED OFFSET class AShooterCharacter* CallFunc_Array_Get_Item24; // 0x27C0(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class APrimalBuff* CallFunc_GetMissionBuff_ReturnValue4; // 0x27C8(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_LessEqual_FloatFloat_ReturnValue; // 0x27D0(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData89[0x7]; // 0x27D1(0x0007) MISSED OFFSET class ABuff_RaceMissionHelper_C* K2Node_DynamicCast_AsBuff_RaceMissionHelper_C6; // 0x27D8(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast15_CastSuccess; // 0x27E0(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData90[0x7]; // 0x27E1(0x0007) MISSED OFFSET TArray<class AShooterCharacter*> CallFunc_GetAllPlayersOnMission_OutCharacters8; // 0x27E8(0x0010) (ZeroConstructor, Transient, DuplicateTransient) float CallFunc_GetRemainingTime_ReturnValue2; // 0x27F8(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_LessEqual_FloatFloat_ReturnValue2; // 0x27FC(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData91[0x3]; // 0x27FD(0x0003) MISSED OFFSET float CallFunc_GetRemainingTime_ReturnValue3; // 0x2800(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_LessEqual_FloatFloat_ReturnValue3; // 0x2804(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData92[0x3]; // 0x2805(0x0003) MISSED OFFSET class APrimalDinoCharacter* K2Node_Event_Dino; // 0x2808(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) float K2Node_Event_KillingDamage2; // 0x2810(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData93[0x4]; // 0x2814(0x0004) MISSED OFFSET struct FDamageEvent K2Node_Event_DamageEvent2; // 0x2818(0x0020) (OutParm, Transient, DuplicateTransient, ReferenceParm) class AController* K2Node_Event_Killer2; // 0x2838(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class AActor* K2Node_Event_DamageCauser2; // 0x2840(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsServer_ReturnValue3; // 0x2848(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsValid_ReturnValue8; // 0x2849(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData94[0x6]; // 0x284A(0x0006) MISSED OFFSET TArray<class AShooterCharacter*> CallFunc_GetAllPlayersOnMission_OutCharacters9; // 0x2850(0x0010) (ZeroConstructor, Transient, DuplicateTransient) int CallFunc_Array_Length_ReturnValue18; // 0x2860(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int Temp_int_Loop_Counter_Variable9; // 0x2864(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int Temp_int_Loop_Counter_Variable10; // 0x2868(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Less_IntInt_ReturnValue9; // 0x286C(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Less_IntInt_ReturnValue10; // 0x286D(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData95[0x2]; // 0x286E(0x0002) MISSED OFFSET class APrimalCharacter* CallFunc_Array_Get_Item25; // 0x2870(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_Add_IntInt_ReturnValue9; // 0x2878(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData96[0x4]; // 0x287C(0x0004) MISSED OFFSET class AController* CallFunc_GetCharacterController_ReturnValue3; // 0x2880(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class AShooterPlayerController* K2Node_DynamicCast_AsShooterPlayerController4; // 0x2888(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast16_CastSuccess; // 0x2890(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_TryIncrementCheckpoint_Success2; // 0x2891(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_TryIncrementCheckpoint_AtEnd2; // 0x2892(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData97[0x5]; // 0x2893(0x0005) MISSED OFFSET class AShooterCharacter* CallFunc_Array_Get_Item26; // 0x2898(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_Add_IntInt_ReturnValue10; // 0x28A0(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsValid_ReturnValue9; // 0x28A4(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData98[0x3]; // 0x28A5(0x0003) MISSED OFFSET class AController* CallFunc_GetController_ReturnValue; // 0x28A8(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class AShooterPlayerController* K2Node_DynamicCast_AsShooterPlayerController5; // 0x28B0(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast17_CastSuccess; // 0x28B8(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData99[0x3]; // 0x28B9(0x0003) MISSED OFFSET int CallFunc_GetNextCheckpoint_Index; // 0x28BC(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class AMissionTrigger* CallFunc_GetNextCheckpoint_NextCheckpoint; // 0x28C0(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_GetNextCheckpoint_CompletedRace; // 0x28C8(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData100[0x7]; // 0x28C9(0x0007) MISSED OFFSET class APrimalDinoCharacter* CallFunc_SpawnDinoForPlayer_SpawnedDino; // 0x28D0(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsValid_ReturnValue10; // 0x28D8(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData101[0x7]; // 0x28D9(0x0007) MISSED OFFSET class APrimalBuff* CallFunc_GetMissionBuff_ReturnValue5; // 0x28E0(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class ABuff_RaceMissionHelper_C* K2Node_DynamicCast_AsBuff_RaceMissionHelper_C7; // 0x28E8(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast18_CastSuccess; // 0x28F0(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData102[0x7]; // 0x28F1(0x0007) MISSED OFFSET class AShooterCharacter* K2Node_Event_Player2; // 0x28F8(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class AShooterPlayerController* K2Node_Event_Controller2; // 0x2900(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) float K2Node_Event_KillingDamage; // 0x2908(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData103[0x4]; // 0x290C(0x0004) MISSED OFFSET struct FDamageEvent K2Node_Event_DamageEvent; // 0x2910(0x0020) (OutParm, Transient, DuplicateTransient, ReferenceParm) class AController* K2Node_Event_Killer; // 0x2930(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class AActor* K2Node_Event_DamageCauser; // 0x2938(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_EqualEqual_ObjectObject_ReturnValue; // 0x2940(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData104[0x7]; // 0x2941(0x0007) MISSED OFFSET class APrimalBuff* CallFunc_GetMissionBuff_ReturnValue6; // 0x2948(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class ABuff_RaceMissionHelper_C* K2Node_DynamicCast_AsBuff_RaceMissionHelper_C8; // 0x2950(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast19_CastSuccess; // 0x2958(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsValid_ReturnValue11; // 0x2959(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Array_RemoveItem_ReturnValue; // 0x295A(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData105[0x1]; // 0x295B(0x0001) MISSED OFFSET int Temp_int_index_Variable; // 0x295C(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_Array_Length_ReturnValue19; // 0x2960(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_RacePlayerData_GetCheckpointData_bCheckpointReached;// 0x2964(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData106[0x3]; // 0x2965(0x0003) MISSED OFFSET float CallFunc_RacePlayerData_GetCheckpointData_CheckpointTime; // 0x2968(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Less_IntInt_ReturnValue11; // 0x296C(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData107[0x3]; // 0x296D(0x0003) MISSED OFFSET int CallFunc_RacePlayerData_GetPlayerRanking_ReturnValue; // 0x2970(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData108[0x4]; // 0x2974(0x0004) MISSED OFFSET struct FCharacterAndControllerPair CallFunc_Array_Get_Item27; // 0x2978(0x0010) (Transient, DuplicateTransient) int CallFunc_Add_IntInt_ReturnValue11; // 0x2988(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_AddMissionLeaderboardRow_ReturnValue; // 0x298C(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsValid_ReturnValue12; // 0x298D(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData109[0x2]; // 0x298E(0x0002) MISSED OFFSET class APrimalBuff* CallFunc_GetMissionBuff_ReturnValue7; // 0x2990(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class ABuff_RaceMissionHelper_C* K2Node_DynamicCast_AsBuff_RaceMissionHelper_C9; // 0x2998(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast20_CastSuccess; // 0x29A0(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData110[0x7]; // 0x29A1(0x0007) MISSED OFFSET class UWorld* CallFunc_K2_GetWorld_ReturnValue; // 0x29A8(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) float CallFunc_TimeSince_Network_ReturnValue; // 0x29B0(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData111[0x4]; // 0x29B4(0x0004) MISSED OFFSET double CallFunc_Add_DoubleFloat_ReturnValue; // 0x29B8(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_MakeLiteralInt_ReturnValue; // 0x29C0(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData112[0x4]; // 0x29C4(0x0004) MISSED OFFSET double CallFunc_Subtract_DoubleFloat_ReturnValue; // 0x29C8(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) double CallFunc_Add_DoubleFloat_ReturnValue2; // 0x29D0(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_Array_Length_ReturnValue20; // 0x29D8(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_EqualEqual_DoubleDouble_ReturnValue2; // 0x29DC(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Greater_IntInt_ReturnValue7; // 0x29DD(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData113[0x2]; // 0x29DE(0x0002) MISSED OFFSET class APrimalBuff* CallFunc_GetBuff_ReturnValue3; // 0x29E0(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class AShooterCharacter* K2Node_Event_Player; // 0x29E8(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class AShooterPlayerController* K2Node_Event_Controller; // 0x29F0(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_Event_bFromMissionCompleteEvent; // 0x29F8(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_Event_bLastPhaseSuccess; // 0x29F9(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData114[0x6]; // 0x29FA(0x0006) MISSED OFFSET class ABuff_RaceMissionHelper_C* K2Node_DynamicCast_AsBuff_RaceMissionHelper_C10; // 0x2A00(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast21_CastSuccess; // 0x2A08(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData115[0x7]; // 0x2A09(0x0007) MISSED OFFSET class APrimalBuff* CallFunc_GetMissionBuff_ReturnValue8; // 0x2A10(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) class ABuff_RaceMissionHelper_C* K2Node_DynamicCast_AsBuff_RaceMissionHelper_C11; // 0x2A18(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool K2Node_DynamicCast22_CastSuccess; // 0x2A20(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsValid_ReturnValue13; // 0x2A21(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData116[0x2]; // 0x2A22(0x0002) MISSED OFFSET int CallFunc_RacePlayerData_IndexOfController_ReturnValue; // 0x2A24(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Array_IsValidIndex_ReturnValue10; // 0x2A28(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Array_RemoveItem_ReturnValue2; // 0x2A29(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData117[0x2]; // 0x2A2A(0x0002) MISSED OFFSET int CallFunc_Array_Length_ReturnValue21; // 0x2A2C(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) int CallFunc_RacePlayerData_GetTargetCheckpoint_ReturnValue; // 0x2A30(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData118[0x4]; // 0x2A34(0x0004) MISSED OFFSET TArray<class AActor*> CallFunc_GetRaceActorsToUnhide_Actors; // 0x2A38(0x0010) (ZeroConstructor, Transient, DuplicateTransient) bool CallFunc_GreaterEqual_IntInt_ReturnValue3; // 0x2A48(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData119[0x3]; // 0x2A49(0x0003) MISSED OFFSET struct FScriptDelegate K2Node_CreateDelegate_OutputDelegate; // 0x2A4C(0x0014) (ZeroConstructor, Transient, DuplicateTransient) int CallFunc_Array_Length_ReturnValue22; // 0x2A5C(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_EqualEqual_IntInt_ReturnValue3; // 0x2A60(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData120[0x3]; // 0x2A61(0x0003) MISSED OFFSET struct FScriptDelegate K2Node_CreateDelegate_OutputDelegate2; // 0x2A64(0x0014) (ZeroConstructor, Transient, DuplicateTransient) struct FScriptDelegate K2Node_CreateDelegate_OutputDelegate3; // 0x2A74(0x0014) (ZeroConstructor, Transient, DuplicateTransient) bool CallFunc_IsStandalone_ReturnValue; // 0x2A84(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Not_PreBool_ReturnValue; // 0x2A85(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_BooleanOR_ReturnValue; // 0x2A86(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData121[0x1]; // 0x2A87(0x0001) MISSED OFFSET float CallFunc_SelectFloat_ReturnValue; // 0x2A88(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) float CallFunc_Subtract_FloatFloat_ReturnValue2; // 0x2A8C(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Greater_FloatFloat_ReturnValue3; // 0x2A90(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Greater_FloatFloat_ReturnValue4; // 0x2A91(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData122[0x6]; // 0x2A92(0x0006) MISSED OFFSET class UWorld* CallFunc_K2_GetWorld_ReturnValue2; // 0x2A98(0x0008) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) float CallFunc_TimeSince_Network_ReturnValue2; // 0x2AA0(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_IsStandalone_ReturnValue2; // 0x2AA4(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_Not_PreBool_ReturnValue2; // 0x2AA5(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_BooleanOR_ReturnValue2; // 0x2AA6(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData123[0x1]; // 0x2AA7(0x0001) MISSED OFFSET float CallFunc_SelectFloat_ReturnValue2; // 0x2AA8(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) float CallFunc_Add_FloatFloat_ReturnValue; // 0x2AAC(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) float CallFunc_Subtract_FloatFloat_ReturnValue3; // 0x2AB0(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) float CallFunc_Divide_FloatFloat_ReturnValue; // 0x2AB4(0x0004) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) bool CallFunc_LessEqual_FloatFloat_ReturnValue4; // 0x2AB8(0x0001) (ZeroConstructor, Transient, DuplicateTransient, IsPlainOldData) unsigned char UnknownData124[0x7]; // 0x2AB9(0x0007) MISSED OFFSET double CallFunc_Array_Set_Item_RefProperty; // 0x2AC0(0x0008) (OutParm, ZeroConstructor, Transient, DuplicateTransient, ReferenceParm, IsPlainOldData) static UClass* StaticClass() { static auto ptr = UObject::FindClass("BlueprintGeneratedClass MissionType_Race.MissionType_Race_C"); return ptr; } void GetRaceData(TArray<struct FRacePlayerData>* RaceData); void GetPlayerRanking(int PlayerIndex, int* Ranking); void RaceSetupAfterDelay(); void GetRaceShooterPCAndPawn(class APrimalCharacter* primalChar, class AShooterPlayerController** ShooterPC, class AShooterCharacter** ShooterChar); void TeleportPlayersToStartLine(); void OnResultOverlappedCheckpointFX(bool Overlapped, class AShooterPlayerController* ForController); void CheckOverlappedCheckpointFX(class AShooterPlayerController* PlayerController, class AMissionTrigger* HitTrigger); void AttemptReRideDinoOnDinoRespawn(class AShooterCharacter* Player); void GetCheckpointToTeleportTo(int PlayerIndex, class AMissionTrigger** Checkpoint); void InitializeRaceData(); void OnCheckpointIncremented(class AShooterPlayerController* PlayerController, class AMissionTrigger* HitTrigger); void GetSplineForOutOfBoundsCheckForPlayer(class AShooterCharacter* ShooterChar, class AMissionSpline** Spline); void GetRaceActorsToUnhide(TArray<class AActor*>* actors); void OnTeleportedCharInBounds(class APrimalCharacter* forChar); void STATIC_GetNearbyWaterLocation(const struct FVector& StartLocation, const struct FVector& Forward, float OverrideZOffset, struct FVector* FinalLocation); void Is_Power_Up_Active_for_Player(class AShooterPlayerController* SC, class AMissionTrigger* Powerup, bool* IsValid); void STATIC_Handle_Out_Of_Bounds(); void TeleportPlayerAndDinoToCheckpoint(class APrimalDinoCharacter* Dino, class AShooterCharacter* Player); void STATIC_SpawnDinoForPlayer(class AShooterCharacter* Player, class APrimalDinoCharacter** SpawnedDino); void Handle_Player_Time_Outs(); bool BPOverrideMissionTimerColor(class AShooterPlayerController** ShooterContr, struct FLinearColor* DefaultColor, struct FLinearColor* CurrentColor, struct FLinearColor* TimerOverrideColor); void GetBestTimeForPlayer(class AShooterPlayerController* ShooterCont, float* BestValidTime); void BPGetExtraLocalMissionIndicators(class APlayerController** Controller, class AShooterCharacter** PlayerPawn, TArray<struct FMissionWorldIndicator>* IndicatorsIn, TArray<struct FMissionWorldIndicator>* IndicatorsOut); void STATIC_GetBestTime(float* BestTime); void STATIC_NotifyAllTopPlayerFinish(bool Finished, class AShooterCharacter* Character); void STATIC_Play_Leaderboard_Reactions(float Leaderboard_Score_Float, class AShooterCharacter* Player); void On_Player_Got_in_Top_10_Of_The_Leaderboard(class AShooterCharacter* Player); void On_Player_Got_First_Place_on_the_Leaderboard(class AShooterCharacter* Player); void Play_Encouragement_Reactions(); void BPOnMissionPlayerLeftBounds(); void AddPowerTriggersFromLastCheckPointToIgnoreList(class AShooterCharacter* Player); void AddTriggerToIgnoreList(class AMissionTrigger* Trigger, class AShooterCharacter* Player); void HasPlayerHitTrigger(class AShooterCharacter* Player, class AMissionTrigger* Trigger, bool* HasHitBefore); void BPOnMissionPlayerRespawned(class AShooterCharacter** Player, class AShooterPlayerController** Controller); void OnThrottledClientTick(float* DeltaTime); void Play_Reaction_When_Player_Has_Left_Dino_For_Too_Long(); void STATIC_GetSpawnPointsForStartingLine(class AMissionServerSidePoint* MissionServerSidePoint, int NumberOfRacers, class APrimalCharacter* PrimalCharacterType, struct FRotator* ForwardRot); void Play_Checkpoint_Reaction(bool Final_Checkpoint, class AShooterCharacter* Player); void GeneratePerPlayerPhaseRequirements(class AShooterPlayerController** Controller, class AShooterCharacter** Character, struct FName* PhaseName, TArray<struct FMissionPhaseRequirement>* Requirements); void ActivateRacePowerUps(class AMissionTrigger* Trigger, class APrimalCharacter* TriggeringActor); float CalcRaceXPRatio(class APrimalCharacter* Player, int Place); void BPGenerateMissionRewards(struct FCharacterAndControllerPair* Player, bool* bCompletedSuccessfully, float* XPReward, TArray<class UPrimalItem*>* GeneratedItems); class FString BPGetMissionTimerText(class AShooterPlayerController** ShootCont); void STATIC_GeneratePhaseRequirements(struct FName* PhaseName, TArray<struct FMissionPhaseRequirement>* Requirements); void GetDinoNameFromArray(int ArrayIndex, class FString* Item); void STATIC_GetNamedDinoSetup(const struct FDinoSetup& InSetup, const class FString& Name, struct FDinoSetup* Setup); bool IsMissionComplete(class AShooterCharacter** forCharacter, class AShooterPlayerController** ForController); void STATIC_TryIncrementCheckpoint(class AShooterPlayerController* PlayerController, class AMissionTrigger* HitTrigger, bool* Success, bool* AtEnd); bool BPIsPhaseComplete(struct FName* PhaseName); void GetPerPlayerWorldIndicators(class AShooterPlayerController** Controller, class AShooterCharacter** Character, TArray<struct FMissionWorldIndicator>* WorldIndicators); void GetNextCheckpoint(class AShooterPlayerController* Controller, class AMissionTrigger* NewParam, int* index, class AMissionTrigger** NextCheckpoint, bool* CompletedRace); void UserConstructionScript(); void BPOnMissionTriggerBeginOverlap(class AMissionTrigger** Trigger, class AActor** OtherActor, class UPrimitiveComponent** OtherComp, int* OtherBodyIndex); void BPOnMissionComplete(class AShooterCharacter** ForPlayer, class AShooterPlayerController** ForController, bool* bLastPhaseSuccess, float* XPRewarded, TArray<class UPrimalItem*>* ItemsRewarded); void OnThrottledServerTick(float* DeltaTime); void BPOnMissionServerSetup(); void RaceStarted(const struct FName& OldPhaseName, const struct FName& NewPhaseName); void RaceSetup(const struct FName& OldPhaseName, const struct FName& NewPhaseName); void ReceiveBeginPlay(); void TeleportToStart(const struct FName& OldPhaseName, const struct FName& NewPhaseName); void BPOnMissionDinoDied(class APrimalDinoCharacter** Dino, float* KillingDamage, class AController** Killer, class AActor** DamageCauser, struct FDamageEvent* DamageEvent); void BPOnMissionPlayerDied(class AShooterCharacter** Player, class AShooterPlayerController** Controller, float* KillingDamage, class AController** Killer, class AActor** DamageCauser, struct FDamageEvent* DamageEvent); void PutPlayersOnMissionDino(); void BPOnPlayerRemovedFromMission(class AShooterCharacter** Player, class AShooterPlayerController** Controller, bool* bFromMissionCompleteEvent, bool* bLastPhaseSuccess); void ServerAddConsolePlayer(); void ExecuteUbergraph_MissionType_Race(int EntryPoint); }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "sergey.2bite@gmail.com" ]
sergey.2bite@gmail.com
7ce746a4ab5b4c3a673d059532d3585ecba1c0b3
e5e671b4326aa95141c9497f85f6f950c98c086c
/Sem Título1.cpp
eb9f83da1cca957460c50fb50903752c93422ecb
[]
no_license
MacielMjose/Linguagem-C
16ffeeeb8aeefb131e7d169b4c37270099590beb
993646ba8ab1353f79f644175e2bc6a36c755414
refs/heads/master
2020-04-25T01:38:54.885902
2019-05-09T00:29:09
2019-05-09T00:29:09
172,414,758
2
0
null
null
null
null
ISO-8859-1
C++
false
false
31,996
cpp
/***********************************************/ /* Lista Encadeada */ /* objetivo: cadastro de pessoas */ /* programador: Daniela Bagatini */ /* criado em: 01/04/2016 */ /* data da ultima alteracao: 01/03/2018 */ /***********************************************/ #include <stdio.h> // #include <conio.h> #include <stdlib.h> // exit; malloc; system #include <string.h> // strcmp #include <time.h> #include <locale.h> // setlocale //#include "MODELOENC.h" // defini??o do registro #define True 1 /***********************************************/ /* Definiçãoo dos Registros */ /***********************************************/ typedef struct { // registro para uma pessoa int codigo; char nome[30]; } INFORMACAO; typedef struct nodo { INFORMACAO info; // dados do registro struct nodo* prox; // ponteiro para o pr?ximo registro }NODO; /***********************************************/ /* Definição das Funções */ /***********************************************/ void entrada_dados ( NODO *aux ); // leitura dos dados de entrada void imprime_lista ( NODO *aux ); // visualiza??o da lista em tela void cria_lista ( NODO* *l ); // inicializa lista com NULL void inclui_fim ( NODO* *l ); // inclui um novo registro no final da lista void inclui_inicio ( NODO* *l ); // inclui um novo registro no inicio da lista NODO* procura_nodo ( NODO* l, int cod ); // procura na lista por uma c?digo void exclui_nodo ( NODO* *l ); // exclui um regitro por c?digo void ordena_lista ( NODO* *l ); // ordena lista por c?digo void inclui_ordenado( NODO* *l ); // inclui registro na lista ordenado por c?digo void inverte ( NODO* *l ); // inverte refer?ncia dos registros void consulta_nome ( NODO* l ); // consulta por um nome void inserir_antes ( NODO* *l ); // inserir um registro antes de uma c?digo de refer?ncia void inserir_depois ( NODO* *l ); // inserir um registro depois de uma c?digo de refer?ncia void conta_nodo ( NODO* *l ); // contar o n?mero de registros existentes na lista void ordena_selecao ( NODO* *l ); // ordena lista por c?digo /***********************************************/ /* Programa Principal */ /***********************************************/ int main( void ) { int op; // op??o do menu NODO* l; // declara??o da lista - ponteiro setlocale(LC_ALL, "Portuguese"); // alterar idioma para portugu?s cria_lista( &l ); // rotina cria lista while( True ){ printf( "\n /----------------------------------------------------/" ); // menu printf( "\n Programa de cadastro - Menu " ); printf( "\n [1 ] Cria lista " ); printf( "\n [2 ] Inclui registro no final da lista " ); printf( "\n [3 ] Inclui registro no in?cio da lista " ); printf( "\n [4 ] Exclui registro " ); printf( "\n [5 ] Ordena lista " ); printf( "\n [6 ] Inlcui ordenado " ); printf( "\n [7 ] Inverte lista " ); printf( "\n [8 ] Consulta nome " ); printf( "\n [9 ] Inserir antes " ); printf( "\n [10] Inserir depois " ); printf( "\n [11] Conta registros " ); printf( "\n [12] Ordena sele??o " ); printf( "\n [13] Imprime lista " ); printf( "\n [0 ] Para sair do programa " ); printf( "\n /----------------------------------------------------/" ); printf( "\n Op??o: " ); fflush( stdin ); scanf("%d", &op); // tecla de op??o do menu switch( op ) { case 1: // rotina cria lista //cria_lista( &l ); break; case 2: // rotina inclui registro no final da lista inclui_fim( &l ); /*t= NULL; t= l; printf( "\n Lista t"); imprime_lista( t ); */ break; case 3: // rotina inclui registro no in?cio da lista inclui_inicio( &l ); break; case 4: // rotina exclui registro da lista exclui_nodo( &l ); break; case 5: // rotina ordena lista ordena_lista( &l ); break; case 6: // rotina inclui ordenado inclui_ordenado( &l ); break; case 7: // rotina inverte lista inverte( &l ); break; case 8: // rotina consultar por um nome consulta_nome( l ); break; case 9: // rotina inserir antes de um c?digo inserir_antes( &l ); break; case 10: // rotina inserir depois de um c?digo inserir_depois( &l ); break; case 11: // rotina contar o n?mero de registros na lista conta_nodo( &l ); break; case 12: // rotina ordena pelo m?todo sele??o ordena_selecao( &l ); break; case 13: // rotina imprime lista imprime_lista( l ); break; case 0: // t?rmino do programa exit( True ); break; default : printf( "\n Digite uma opcao!" ); // n?o foi digitado uma op??o v?lida break; } // switch( op ) printf( "\n\n" ); system( "pause" ); // pausar programa system( "cls" ); // limpar tela } // fim do while( 1 ) } // fim do programa principal /************************************************ * entrada_dados * * objetivo: rotina para ler dados * * entrada : nodo (ponteiro para o novo espaco) * * saida : nodo com dados * ************************************************/ void entrada_dados( NODO *aux ){ printf( "\n\n Digite a c?digo: " ); fflush( stdin ); // limpa buffer do teclado, funciona junto com entrada de dados scanf("%d", &aux->info.codigo); //printf( "\n Digite o nome: " ); //fflush( stdin ); //gets( aux->info.nome ); aux->prox = NULL; // n?o aponta } /************************************************* * imprime_lista * * objetivo: rotina para imprimir dados * * entrada : lista * * saida : nenhuma * *************************************************/ void imprime_lista( NODO *aux ){ if( aux == NULL ) printf( "\n Lista vazia!" ); else{ printf("\n\n ---- Relat?rio Geral ---- "); while( aux != NULL ){ // ponteiro auxiliar para a lista //printf( "\n Nome..: %s", aux->info.nome ); printf( "\n C?digo: %d", aux->info.codigo ); aux = aux->prox; // aponta para o proximo registro da lista } // fim while( aux != NULL ) } // fim if( aux == NULL ) } /************************************************ * cria_lista * * objetivo: rotina para inicializar a lista * * entrada : lista * * sa?da : NULL (inicializa lista) * ************************************************/ void cria_lista( NODO* *l ){ *l = NULL; // lista criada, inicio nao aponta } /************************************************ * inclui_fim * * objetivo: rotina para inserir no fim da lista* * entrada : lista * * saida : lista com novo registro * ************************************************/ void inclui_fim( NODO* *l ){ NODO *no = ( NODO * ) malloc ( sizeof( NODO ) ); // aloca novo espa?o em mem?ria if( no != NULL ){ // verifica se conseguiu alocar mem?ria para o novo registro entrada_dados( no ); // l? dados if( *l == NULL ) // lista vazia *l= no; // insere o primeiro registro else{ NODO* p; // ponteiro auxiliar p = *l; // percorre a lista at? encontrar o ?ltimo registro while( p->prox != NULL ) p = p->prox; p->prox = no; // ?ltimo aponta para o novo registro printf( "\n Registro incluido!" ); } // fim if ( *l == NULL ) }else // fim if( no != NULL ) printf( "\n Lista cheia!" ); } /*************************************************** * inclui_inicio * * objetivo: rotina para inserir no inicio da lista* * entrada : referencia de lista * * sa?da : referencia lista com novo registro * ***************************************************/ void inclui_inicio( NODO* *l ){ NODO* no = ( NODO * ) malloc ( sizeof( NODO ) ); // aloca novo espaco em mem?ria if( no != NULL ){ // verifica se conseguiu alocar mem?ria para o novo registro entrada_dados( no ); // l? dados no->prox = *l; // novo aponta para o primeiro existente ou para Null *l = no; // in?cio aponta para o novo registro printf( "\n Registro incluido!" ); } // fim if( no != NULL ) else printf( "\n Lista cheia!" ); } /************************************************ * procura_nodo * * objetivo: achar um registro por c?digo * * entrada : lista e c?digo a ser procurado * * sa?da : posi??o ou NULL (n?o encontrou) * ************************************************/ NODO* procura_nodo( NODO* p, int cod ){ while( p != NULL ) // anda pela lista at? o final ou at? encontrar c?digo desejado { if( p->info.codigo == cod ) return (p); p = p->prox; // passa para o pr?ximo } return (NULL); // nodo de refer?ncia } /*************************************************** * exclui_nodo * * objetivo: rotina para excluir nodo da lista * * entrada : lista * * saida : lista * ***************************************************/ void exclui_nodo( NODO** l ){ int cod; // c?digo a ser exclu?do printf( "\n C?digo de refer?ncia: " ); // usu?rio informa c?digo que deseja excluir fflush( stdin ); // limpa buffer do teclado e faz a entrada de dados scanf( "%d", &cod ); if( *l != NULL ){ // verifica se a lista est? vazia NODO *no; // ponteiro auxiliar para a c?digo de refer?ncia no = procura_nodo( *l, cod ); // procura c?digo de referencia a ser exclu?da if(( no != NULL ) && ( cod == no->info.codigo)){ // verifica se encontrou a c?digo na lista NODO* p; // ponteiro auxiliar para percorrer a lista p = *l; // iniciliza o ponteiro auxiliar que ir? percorrer a lista e encontrar o registro anterior ao que ser? exclu?do if( p == no ) // verifica se o registro a ser exclu?do ? o primeiro da lista *l = p->prox; // faz o in?cio da lista apontar para o pr?ximo registro, visto que o primeiro ser? exclu?do else{ while( p->prox != no ) // procura registro anterior ao que ser? exclu?do p = p->prox; p->prox = no->prox; // ajusta ponteiros, faz o registro anterior ?quele que ser? exc?u?do apontar para um registro posterior daquele que ser? exclu?do } // fim if( p == no ) free( no ); // libera o espa?o de mem?ria que estava sendo ocupado pelo registro que foi exclu?do printf( "\n Registro exclu?do!" ); }else // fim (( cod == no->info.codigo) && ( no != NULL )) printf( "\n Nodo n?o encontrado!"); }else // fim if( *l != NULL ) printf( "\n Lista vazia!" ); } /*************************************************** * ordena_lista * * objetivo: rotina para ordenar a lista * * entrada : lista * * saida : lista ordenada por codigo * ***************************************************/ void ordena_lista( NODO** l ){ //float seg; // tempo em segundos da resposta //time_t tempoIni, tempoFim; //int t= 0, c= 0; //tempoIni = time(NULL); if( *l == NULL ) // verifica se a lista esta vazia printf( "\n Lista vazia!" ); else { if( (*l)->prox == NULL ) // verifica se a lista esta vazia printf( "\n Lista com apenas 1 elemento!" ); else{ INFORMACAO aux; // auxiliar para a troca de dados NODO *ant = *l; // posiciona ponteiro auxiliar para anterior no in?cio da lista NODO *p = ant->prox; //posiciona ponteiro auxiliar que ir? caminhar pela lista para comparar com ant while( ant->prox != NULL ){ // enquanto n?o for final de lista while( p != NULL ){ // enquanto n?o compara ant com todos posteriores //c++; if( p->info.codigo < ant->info.codigo ){ aux = p->info; // faz a troca (algoritmo de ordena??o Bolha) p->info = ant->info; ant->info= aux; //t++; } // fim if( p->info.codigo < ant.info.codigo ) p= p->prox; } // fim while ( p != NULL ) ant= ant->prox; // atualiza ponteiros p= ant->prox; } // fim while ( ant->prox != NULL ) //printf("\n Trocas: %d - Compara??es: %d", t, c); //_sleep(1000); // segura a execucao do codigo pelo tempo em milisegundos passado por parametro, neste caso em 1 segundo //tempoFim = time(NULL); //seg= difftime(tempoFim, tempoIni); //printf( "\nLista ordenada em %f milisegundos!", seg ); } // fim else } } /*************************************************** * inclui_ordenado * * objetivo: rotina para inserir em ordem de codigo* * entrada : lista * * saida : lista com novo registro * ***************************************************/ void inclui_ordenado( NODO** l ){ NODO* p; NODO* ant; // ponteiros auxiliares para percorrer a lista NODO* no = ( NODO * ) malloc ( sizeof( NODO ) ); // aloca novo espa?o em mem?ria if( no != NULL ){ // verifica se conseguiu alocar mem?ria para o novo registro entrada_dados( no ); // le dados p = *l; // possiciona ponteiro auxiliar no in?cio para percorrer a lista while( ( p != NULL ) && ( no->info.codigo > p->info.codigo ) ){ // faz o la?o ate achar a posi??o ou o final da lista (no caso em que ? o maior c?digo) ant = p; // guarda a posi??o do anterior, para fazer ajuste dos ponteiros ao final p = p->prox; // percorre a lista } // fim while( ( p != NULL ) && ( no->info.codigo > p->info.codigo ) ) if( p == *l ) // verifica se auxiliar aponta para o in?cio da lista *l = no; // inicio da lista aponta para novo registro else ant->prox = no; // ajuste de ponteiro para inserir na posicao ordenada no->prox = p; // ajuste de ponteiro, inserido de forma ordenada por c?digo } // fim if( no != NULL ) } /*************************************************** * inverte referencia * * objetivo: rotina para inverter referencia do reg* * entrada : lista * * saida : lista com referencia invertida * ***************************************************/ void inverte( NODO** l ){ NODO* p; NODO* q; // ponteiros auxiliares para percorrer a lista NODO* t; // ponteiros auxiliares para percorrer a lista if( *l == NULL ) // verifica se a lista esta vazia printf( "\n Lista vazia!" ); else { p = *l; // inicializa os ponteiros auxiliares if( p->prox == NULL ) // verifica se so tem um elemento printf( "\n Lista com apenas 1 elemento!" ); else { q = p->prox; // inicializa os ponteiros auxiliares t = q->prox; while( t != NULL ){ // inverte o sentido do apontamento de cada registro, at? chegar no ?ltimo q->prox = p; p = q; // anda pela lista q = t; t = t->prox; } // while( t != NULL ) q->prox = p; // altera o ponteiros do ?ltimo p = *l; // primeiro aponta para NULL p->prox = NULL; *l = q; // inverte o in?cio da lista printf( "\n Lista invertida!" ); } // if( p->prox == NULL ) } // if( *l == NULL ) } /*************************************************** * consulta nome * * objetivo: rotina para consultar * * entrada : lista * * saida : lista * ***************************************************/ void consulta_nome( NODO* l ){ char aux_nome[ 30 ]; // auxiliar do nome de consulta NODO* p; // ponteiro auxiliar para percorrer a lista if( l == NULL ) // verifica se a lista esta vazia printf( "\n Lista vazia!" ); else { printf( "\n Nome para consulta: " ); // l? nome de consulta fflush(stdin); gets( aux_nome ); p = l; // posiciona ponteiro auxiliar while( ( strcmp( p->info.nome, aux_nome ) != 0) && ( p->prox != NULL )) // anda pela lista at? o final ou at? encontrar nome desejado p = p->prox; // passa para o pr?ximo if( strcmp( p->info.nome, aux_nome ) == 0 ){ // verifica se achou o nome procurado printf( "\n Nome.....: %s", p->info.nome ); printf( "\n Codigo: %d", p->info.codigo ); } // if( strcmp( p->info.nome != aux_nome ) else printf( " Nome nao encontrado!" ); } // if( *l == NULL ) } /*************************************************** * inserir antes * * objetivo: rotina para inserir antes de uma matr * * entrada : lista * * saida : lista com novo registro * ***************************************************/ void inserir_antes( NODO** l ){ int cod; // c?digo de refer?ncia NODO* p; // ponteiro auxiliar NODO* ant; // ponteiro auxiliar NODO* no = ( NODO * ) malloc ( sizeof( NODO ) ); // aloca novo espa?o em mem?ria if( no != NULL ){ // verifica se conseguiu alocar mem?ria para o novo registro entrada_dados( no ); // l? dados if( *l != NULL ){ // verifica se a lista esta vazia printf( "\n Codigo de referencia: " ); fflush( stdin ); // limpa buffer do teclado e faz a entrada de dados scanf( "%d", &cod ); p = *l; // posiciona auxiliar while( ( p->info.codigo != cod ) && ( p->prox != NULL ) ){ // procura por codigo de referencia ant = p; // guarda anterior p = p->prox; // anda pela lista } // while( ( p->info.codigo != cod ) && ( p != NULL ) ) if( p->info.codigo == cod ){ no->prox = p; if( p == *l ) // ser? o primeiro registro *l = no; else ant->prox = no; printf( "\n Registro incluido!" ); } // if( p->info.codigo == cod ) else printf( "\n Codigo de referencia nao encontrado!" ); }// if( *l != NULL ) else printf("\n Lista vazia!"); } // if else printf( "\n Problema na entrada de dados!" ); } /*************************************************** * inserir depois * * objetivo: rotina para inserir antes de uma matr * * entrada : lista * * saida : lista com novo registro * ***************************************************/ void inserir_depois( NODO** l ){ int cod; // c?digo de refer?ncia NODO* p; // ponteiro auxiliar NODO* ant; // ponteiro auxiliar NODO* no = ( NODO * ) malloc ( sizeof( NODO ) ); // aloca novo espa?o em mem?ria if( no != NULL ){ // verifica se conseguiu alocar mem?ria para o novo registro entrada_dados( no ); // l? dados if( *l != NULL ){ // verifica se a lista esta vazia printf( "\n C?digo de refer?ncia: " ); fflush( stdin ); // limpa buffer do teclado e faz a entrada de dados scanf( "%d", &cod ); p = *l; // posiciona auxiliar while( ( p->info.codigo != cod ) && ( p->prox != NULL ) ){ // procura por c?digo de referencia p = p->prox; // anda pela lista } // while( ( p->info.codigo != cod ) && ( p != NULL ) ) if( p->info.codigo == cod ){ no->prox = p->prox; p->prox = no; printf( "\n Registro incluido!" ); } // if( p->info.codigo == cod ) else printf( "\n C?digo de refer?ncia n?o encontrado!" ); } // if( *l != NULL ) else printf("\n Lista vazia!"); } // if else printf( "\n Problema na entrada de dados!" ); } /*************************************************** * conta_nodo * * objetivo: rotina para contar numero de registros* * entrada : lista * * saida : nenhuma * **************************************************/ void conta_nodo( NODO** l ){ NODO* aux; // ponteiro auxiliar para percorrer a lista int conta = 0; // contador if( *l == NULL ) // verifica se a lista esta vazia printf( "Lista vazia!" ); else{ aux = *l; // posiciona o ponteiro auxiliar no in?cio da lista while( aux != NULL ){ conta++; aux = aux->prox; // passa para o pr?ximo registro } // while( aux != NULL ) printf( "\n N?mero de registro(s) na lista: %d", conta ); } // fim if( *l == NULL ) } /*************************************************** * ordena_selecao * * objetivo: rotina para ordenar a lista * * entrada : lista * * saida : lista ordenada por codigo * **************************************************/ void ordena_selecao( NODO** l ){ if( l == NULL || (*l)->prox == NULL) printf("\n Lista vazia ou com apenas um elemento "); else{ NODO *p = *l; // p ? ponteiro auxiliar NODO *q, *menor; // q e menor s?o ponteiros auxiliares INFORMACAO aux; // aux ? auxiliar para informa??o while( p->prox != NULL ){ // enquanto n?o chegar no final da lista, continua comparando q= p->prox; // reposiciona ponteiros menor= p; while( q != NULL ){ // enquanto n?o chegar no final da lista, compara if( menor->info.codigo > q->info.codigo ) // se achar c?digo menor menor= q; // guarda endere?o do menor q= q->prox; } if( menor != p ){ // se encontrou menor, troca aux= p->info; p->info= menor->info; menor->info= aux; } p= p->prox; // anda pela lista at? ordenar todos os registros } } } /*************************************************** * ordena_selecao * * objetivo: rotina para ordenar a lista * * entrada : lista * * saida : lista ordenada por codigo * ************************************************* void ordena_selecao( NODO** l ){ //int tempoIni = 0; // pega o tempo inicial //int tempoFim = 0; // pega o tempo final //int seg = 0; // tempo em segundos float seg; // tempo em milisegundos time_t tempoIni, tempoFim; int t=0, c=0; NODO *p = *l; tempoIni = time(NULL); if( p == NULL ) printf("\n Lista vazia "); else if( p->prox == NULL ) printf("\n Lista com apenas um elemento "); else{ LISTA *q, *menor; // ponteiros auxiliares INFORMACAO aux; while( p->prox != NULL ){ q= p->prox; // reposiciona os ponteiros na lista menor= p; while( q != NULL ){ if( menor->info.codigo > q->info.codigo ) // verifica se encontrou um c?digo menor menor= q; // guarda o endere?o do menor c++; q= q->prox; } if( menor != p ){ // realiza a troca, posicionando o menor em ordem crescente aux= p->info; p->info= menor->info; menor->info= aux; t++; } //imprime_lista(*l); p= p->prox; // anda pela lista at? ordenar todos os registros } printf("\n Trocas: %d - Compara??es: %d", t, c); _sleep(1000); // segura a execucao do codigo pelo tempo em milisegundos passado por parametro, neste caso em 1 segundo tempoFim = time(NULL); seg = tempoFim - tempoIni; printf("\n Lista ordenada em %f milisegundos ", seg); } }*/
[ "noreply@github.com" ]
noreply@github.com
31b1f592a5aabe6d1bbf04e36853c3e482f38232
8a4cce357b067a23f4dada0985dc0a5afed265db
/Paperworks/src/Platform/OpenGL/OpenGLFramebuffer.h
45bf4b8400a8f0394999f72d3d660d9292bb720a
[ "MIT" ]
permissive
codenobacon4u/paperworks
1184e497e1babc5046f5e06b1ba9567fd311783f
0e96cd2fb6070a2387ddd36aaa327b04733234fa
refs/heads/master
2022-05-17T04:34:02.351502
2021-12-14T22:52:27
2021-12-14T22:52:27
163,015,001
1
0
null
null
null
null
UTF-8
C++
false
false
722
h
#pragma once #include "Paperworks/Graphics/API/Framebuffer.h" namespace Paperworks { class OpenGLFramebuffer : public Framebuffer { public: OpenGLFramebuffer(const FramebufferSpec& spec); virtual ~OpenGLFramebuffer(); virtual void Resize(uint32_t width, uint32_t height) override; virtual void Bind() override; virtual void Unbind() override; virtual uint32_t GetID() const override { return m_RendererID; }; virtual uint32_t GetColorAttachmentID() const override { return m_ColorAttachment; }; virtual const FramebufferSpec& GetSpec() const override { return m_Spec; }; private: uint32_t m_RendererID; uint32_t m_ColorAttachment; uint32_t m_DepthAttachment; FramebufferSpec m_Spec; }; }
[ "kralcmit@gmail.com" ]
kralcmit@gmail.com
aa5a72ec14f9c53c5f793e12ff4f3bc21c74a1c2
b85ef32050f35569f89678b9a93fb95a4f1fc30d
/starSvr/starSvr/starSvr/main.cpp
8dd7a458033305445ef9abc6d506b35cc1a0002a
[]
no_license
zjutjsj1004/star
46e4d7d9dc6fe695aabc258e134172e64e6003a6
2ed3401841da816d081446c52697fc9a40a799c6
refs/heads/master
2021-01-10T01:50:40.981295
2016-01-11T05:43:32
2016-01-11T05:43:32
45,163,605
2
0
null
null
null
null
UTF-8
C++
false
false
3,481
cpp
#include <stdio.h> #include "event2/event.h" #include "event2/util.h" #include "common.h" #include "starPB.h" #ifdef WIN32 #include <WinSock2.h> #pragma comment(lib, "ws2_32.lib") #else #include <netinet/tcp.h> #include <sys/select.h> #include <sys/socket.h> #include <arpa/inet.h> #endif #define LISTEN_MAX 5 #define BUFFER_SIZE 1024 struct event_base *base = NULL; struct sock_ev { struct event *read_ev; struct event *write_ev; char *buf; sock_ev() { read_ev = NULL; write_ev = NULL; buf = new char[BUFFER_SIZE]; memset(buf, 0, BUFFER_SIZE); } ~sock_ev() { delete[] buf; } }; void release_sock_cv(sock_ev *ev) { if (ev->read_ev) { if (0 != event_del(ev->read_ev)) { printf("del read_ev err\n"); } event_free(ev->read_ev); ev->read_ev = NULL; } if (ev->write_ev) { if (0 != event_del(ev->write_ev)) { printf("del write_ev err\n"); } event_free(ev->write_ev); ev->write_ev = NULL; } free(ev); } void on_read(evutil_socket_t sock, short eventRead, void *arg) { sock_ev *ev = (sock_ev*)arg; int nSize = recv(sock, (char*)ev->buf, BUFFER_SIZE, 0); if (nSize == SOCKET_ERROR) { printf("client socket closed\n"); release_sock_cv(ev); closesocket(sock); return; } int nSizeBuf = strlen(ev->buf); printf("%d\n", nSizeBuf); LogonReqMessage logonReq; logonReq.ParseFromArray(ev->buf, nSizeBuf); printf("received message : %s\n", logonReq.passwd().c_str()); char *p = "recv hello world!"; send(sock, p, strlen(p), 0); } void on_write(evutil_socket_t sock, short eventWrite, void *arg) { sock_ev *ev = (sock_ev*)arg; //printf("on_write\n"); } /* EV_READ */ void on_accept(int sock, short eventAccept, void *arg) { struct sockaddr_in cliAddr; int nSize = sizeof(sockaddr_in); evutil_socket_t cliSock = accept(sock, (sockaddr*)&cliAddr, &nSize); sock_ev *ev = new sock_ev; struct event *eventRead = event_new(base, cliSock, EV_READ | EV_PERSIST, on_read, ev); struct event *eventWrite = event_new(base, cliSock, EV_WRITE | EV_PERSIST, on_write, ev); ev->read_ev = eventRead; ev->write_ev = eventWrite; event_add(eventRead, NULL); event_add(eventWrite, NULL); } int main() { #ifdef WIN32 WSAData wsaData; WSAStartup(MAKEWORD(2, 0), &wsaData); #endif evutil_socket_t sockListen = socket(AF_INET, SOCK_STREAM, 0); sockaddr_in srvAddr; srvAddr.sin_addr.s_addr = INADDR_ANY; srvAddr.sin_family = AF_INET; srvAddr.sin_port = htons(STAR_NETWORK_ECHO_PORT); if (bind(sockListen, (sockaddr*)&srvAddr, sizeof(sockaddr)) != 0) { printf("bind err = %d\n", WSAGetLastError()); return 0; } if (0 != listen(sockListen, LISTEN_MAX)) { printf("listen err = %d\n", WSAGetLastError()); return 0; } base = event_base_new(); struct event *eventListen = event_new(base, sockListen, EV_READ | EV_PERSIST, on_accept, NULL); event_add(eventListen, NULL); event_base_dispatch(base); closesocket(sockListen); event_base_free(base); #ifdef WIN32 WSACleanup(); #endif return 0; }
[ "18767122273@163.com" ]
18767122273@163.com
3f959b906232fd1e570c448ed251032da3c86792
1b7daae23b2bd3baa72cf9711be00699dc387db3
/src/leveldb/db/version_set_test.cc
eeb75cbddd3ec850ff1cbe96f7ec952833964a11
[ "MIT", "LicenseRef-scancode-generic-cla", "BSD-3-Clause" ]
permissive
hotion/BitCoinCppChinese
f48894beff6e652031f18b58181592af1168ed40
76f64ad8cee5b6c5671b3629f39e7ae4ef84be0a
refs/heads/master
2020-04-18T06:33:11.575445
2019-01-24T02:02:27
2019-01-24T02:02:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,641
cc
//此源码被清华学神尹成大魔王专业翻译分析并修改 //尹成QQ77025077 //尹成微信18510341407 //尹成所在QQ群721929980 //尹成邮箱 yinc13@mails.tsinghua.edu.cn //尹成毕业于清华大学,微软区块链领域全球最有价值专家 //https://mvp.microsoft.com/zh-cn/PublicProfile/4033620 //版权所有(c)2011 LevelDB作者。版权所有。 //此源代码的使用受可以 //在许可证文件中找到。有关参与者的名称,请参阅作者文件。 #include "db/version_set.h" #include "util/logging.h" #include "util/testharness.h" #include "util/testutil.h" namespace leveldb { class FindFileTest { public: std::vector<FileMetaData*> files_; bool disjoint_sorted_files_; FindFileTest() : disjoint_sorted_files_(true) { } ~FindFileTest() { for (int i = 0; i < files_.size(); i++) { delete files_[i]; } } void Add(const char* smallest, const char* largest, SequenceNumber smallest_seq = 100, SequenceNumber largest_seq = 100) { FileMetaData* f = new FileMetaData; f->number = files_.size() + 1; f->smallest = InternalKey(smallest, smallest_seq, kTypeValue); f->largest = InternalKey(largest, largest_seq, kTypeValue); files_.push_back(f); } int Find(const char* key) { InternalKey target(key, 100, kTypeValue); InternalKeyComparator cmp(BytewiseComparator()); return FindFile(cmp, files_, target.Encode()); } bool Overlaps(const char* smallest, const char* largest) { InternalKeyComparator cmp(BytewiseComparator()); Slice s(smallest != NULL ? smallest : ""); Slice l(largest != NULL ? largest : ""); return SomeFileOverlapsRange(cmp, disjoint_sorted_files_, files_, (smallest != NULL ? &s : NULL), (largest != NULL ? &l : NULL)); } }; TEST(FindFileTest, Empty) { ASSERT_EQ(0, Find("foo")); ASSERT_TRUE(! Overlaps("a", "z")); ASSERT_TRUE(! Overlaps(NULL, "z")); ASSERT_TRUE(! Overlaps("a", NULL)); ASSERT_TRUE(! Overlaps(NULL, NULL)); } TEST(FindFileTest, Single) { Add("p", "q"); ASSERT_EQ(0, Find("a")); ASSERT_EQ(0, Find("p")); ASSERT_EQ(0, Find("p1")); ASSERT_EQ(0, Find("q")); ASSERT_EQ(1, Find("q1")); ASSERT_EQ(1, Find("z")); ASSERT_TRUE(! Overlaps("a", "b")); ASSERT_TRUE(! Overlaps("z1", "z2")); ASSERT_TRUE(Overlaps("a", "p")); ASSERT_TRUE(Overlaps("a", "q")); ASSERT_TRUE(Overlaps("a", "z")); ASSERT_TRUE(Overlaps("p", "p1")); ASSERT_TRUE(Overlaps("p", "q")); ASSERT_TRUE(Overlaps("p", "z")); ASSERT_TRUE(Overlaps("p1", "p2")); ASSERT_TRUE(Overlaps("p1", "z")); ASSERT_TRUE(Overlaps("q", "q")); ASSERT_TRUE(Overlaps("q", "q1")); ASSERT_TRUE(! Overlaps(NULL, "j")); ASSERT_TRUE(! Overlaps("r", NULL)); ASSERT_TRUE(Overlaps(NULL, "p")); ASSERT_TRUE(Overlaps(NULL, "p1")); ASSERT_TRUE(Overlaps("q", NULL)); ASSERT_TRUE(Overlaps(NULL, NULL)); } TEST(FindFileTest, Multiple) { Add("150", "200"); Add("200", "250"); Add("300", "350"); Add("400", "450"); ASSERT_EQ(0, Find("100")); ASSERT_EQ(0, Find("150")); ASSERT_EQ(0, Find("151")); ASSERT_EQ(0, Find("199")); ASSERT_EQ(0, Find("200")); ASSERT_EQ(1, Find("201")); ASSERT_EQ(1, Find("249")); ASSERT_EQ(1, Find("250")); ASSERT_EQ(2, Find("251")); ASSERT_EQ(2, Find("299")); ASSERT_EQ(2, Find("300")); ASSERT_EQ(2, Find("349")); ASSERT_EQ(2, Find("350")); ASSERT_EQ(3, Find("351")); ASSERT_EQ(3, Find("400")); ASSERT_EQ(3, Find("450")); ASSERT_EQ(4, Find("451")); ASSERT_TRUE(! Overlaps("100", "149")); ASSERT_TRUE(! Overlaps("251", "299")); ASSERT_TRUE(! Overlaps("451", "500")); ASSERT_TRUE(! Overlaps("351", "399")); ASSERT_TRUE(Overlaps("100", "150")); ASSERT_TRUE(Overlaps("100", "200")); ASSERT_TRUE(Overlaps("100", "300")); ASSERT_TRUE(Overlaps("100", "400")); ASSERT_TRUE(Overlaps("100", "500")); ASSERT_TRUE(Overlaps("375", "400")); ASSERT_TRUE(Overlaps("450", "450")); ASSERT_TRUE(Overlaps("450", "500")); } TEST(FindFileTest, MultipleNullBoundaries) { Add("150", "200"); Add("200", "250"); Add("300", "350"); Add("400", "450"); ASSERT_TRUE(! Overlaps(NULL, "149")); ASSERT_TRUE(! Overlaps("451", NULL)); ASSERT_TRUE(Overlaps(NULL, NULL)); ASSERT_TRUE(Overlaps(NULL, "150")); ASSERT_TRUE(Overlaps(NULL, "199")); ASSERT_TRUE(Overlaps(NULL, "200")); ASSERT_TRUE(Overlaps(NULL, "201")); ASSERT_TRUE(Overlaps(NULL, "400")); ASSERT_TRUE(Overlaps(NULL, "800")); ASSERT_TRUE(Overlaps("100", NULL)); ASSERT_TRUE(Overlaps("200", NULL)); ASSERT_TRUE(Overlaps("449", NULL)); ASSERT_TRUE(Overlaps("450", NULL)); } TEST(FindFileTest, OverlapSequenceChecks) { Add("200", "200", 5000, 3000); ASSERT_TRUE(! Overlaps("199", "199")); ASSERT_TRUE(! Overlaps("201", "300")); ASSERT_TRUE(Overlaps("200", "200")); ASSERT_TRUE(Overlaps("190", "200")); ASSERT_TRUE(Overlaps("200", "210")); } TEST(FindFileTest, OverlappingFiles) { Add("150", "600"); Add("400", "500"); disjoint_sorted_files_ = false; ASSERT_TRUE(! Overlaps("100", "149")); ASSERT_TRUE(! Overlaps("601", "700")); ASSERT_TRUE(Overlaps("100", "150")); ASSERT_TRUE(Overlaps("100", "200")); ASSERT_TRUE(Overlaps("100", "300")); ASSERT_TRUE(Overlaps("100", "400")); ASSERT_TRUE(Overlaps("100", "500")); ASSERT_TRUE(Overlaps("375", "400")); ASSERT_TRUE(Overlaps("450", "450")); ASSERT_TRUE(Overlaps("450", "500")); ASSERT_TRUE(Overlaps("450", "700")); ASSERT_TRUE(Overlaps("600", "700")); } } //命名空间级别数据库 int main(int argc, char** argv) { return leveldb::test::RunAllTests(); }
[ "openaichain" ]
openaichain
5c26865e58d78f4235c3bd5e93d40ef968a2db48
330459f4025e5397f7933aac2d4c8dd87e4c2ef8
/extend.cpp
b643c2c5cabc898e4b102918630b75f29f713c30
[]
no_license
pigglehyun/2021
8495853cc9456061bf20d5e9c2aa184e631d6496
a79a2cbc164656cfb84b907b518c644391113a21
refs/heads/main
2023-04-05T01:01:52.663784
2021-04-11T15:17:55
2021-04-11T15:17:55
349,937,955
0
0
null
null
null
null
UTF-8
C++
false
false
715
cpp
#include <cstdio> using namespace std; void main(){ int sum= 0 ; int h, num ,n , i = 0; int a[] = {0}; scanf("%d", &num); while(scanf("%d" , &n) == 1){ a[i] = n; i++; } for(int p = 0 ; p < i ; p++){ printf("a[%d]:%d ",p, a[p]); } i = i-1; printf("num : %d\n",num); printf("i : %d\n",i); if(i ==0 ) { a[i+1] = a[i]; i++; } a[i+1] = a[i]; while( h < num){ for(int k = i ; k > 0 ; k--){ printf("k:%d i:%d\t h:%d\t",k,i,h); a[k] = ( a[k] + a[k-1] ) % 100; printf("a[%d] : %d\t",k,a[k]); } printf("\n"); i++; h++; if (h == num) break; } //for(int p = 0 ; p < i ; p++){ // printf("%d ", a[p]); //} }
[ "noreply@github.com" ]
noreply@github.com
c24ebf364e4cb79e2f583f2a0fdafa9a11351230
eec3e0344a877532956a79749f54b225f3b72a38
/ContactList.h
d8278ecee6a93e224704cd9e3dc29fed95011dc3
[]
no_license
crmmvio/wabwrap
6319716a5270a114c405de8c9e15c3ebf9e885f0
5e603c43e670147f1f181777132ce4ae28e42a5a
refs/heads/master
2021-01-16T23:00:45.468612
2012-02-23T22:04:57
2012-02-23T22:04:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
502
h
// ContactList.h : main header file for the PROJECT_NAME application // #pragma once #ifndef __AFXWIN_H__ #error include 'stdafx.h' before including this file for PCH #endif #include "resource.h" // main symbols // CContactListApp: // See ContactList.cpp for the implementation of this class // class CContactListApp : public CWinApp { public: CContactListApp(); // Overrides public: virtual BOOL InitInstance(); // Implementation DECLARE_MESSAGE_MAP() }; extern CContactListApp theApp;
[ "marcinje@gmail.com" ]
marcinje@gmail.com
3090c07fa91fb0867ad61dbff0ccd15ccb45219e
421d6c5ce0a38ea9bd43eb259512928e93171bff
/workspace/hqyj/c++/day8/include/test.cpp
09bbf7b46302b504cc59bc8101bd0396d14668bf
[]
no_license
LM1107/mygit
3a1f75f37b14af22fcb7fa7b418ea3f216f83393
418c56c5bbeaea660987db4ca5c4b38387c466cc
refs/heads/master
2022-11-06T22:32:50.876863
2020-07-31T12:12:25
2020-07-31T12:12:25
279,747,613
0
0
null
null
null
null
UTF-8
C++
false
false
377
cpp
#include <iostream> using namespace std; #include "myexception.h" int func(int x,int y) throw(myException) { if(y != 0) return x/y; throw(myException("err y == 0")); } int main() { int a; int b; cin >> a >> b; try{ cout << func(a,b) << endl; } catch(myException &e) { cout << e.what() << endl; } return 0; }
[ "cdwjlm@163.com" ]
cdwjlm@163.com
d0ab9515ee9abc416700adc3bfc649fc009fdbb0
dc4f5529cb97a9b7d1d5ab361ef8c3e9b7f45c69
/ALGORYTHMS/task1/myqueue.h
338f0948740bc4fcbb968f189d9db84e03d741f2
[]
no_license
aashikhmin82/test
ed3c2bba50c0bd6709b6bf8b414932a390b0c678
703c1cbac97997d00fcb22fa566a302ffd5eed70
refs/heads/master
2021-01-24T09:27:14.180502
2017-03-26T20:26:02
2017-03-26T20:26:02
29,897,380
0
19
null
2016-08-29T13:53:11
2015-01-27T04:33:04
C++
UTF-8
C++
false
false
689
h
#pragma once #include <vector> #include <iostream> #include "stack.h" template <typename data_t> class myqueue { private: mystack <data_t> stack_in, stack_out; public: void push_back(const data_t& data_string) { stack_in.push_back(data_string); } data_t pop_front() { if (stack_out.empty()) while (!stack_in.empty()) stack_out.push_back(stack_in.pop_back()); return stack_out.pop_back(); } bool empty() { if (stack_in.empty() and stack_out.empty()) return true; return false; } };
[ "aashikhmin82@gmail.com" ]
aashikhmin82@gmail.com
b7cae481f966afa088fffd3a9e28245c8bad5ae2
b4bbfa169bca53f44dcf5e0ac9cf2414c3ff6726
/src/ConfigDialog.cpp
1e1c7f14de70c667883da408076f38e4a58ed71e
[]
no_license
marco-toli/drs-5.0.5-CUSTOMIZED
e2a4bc21b58c582dd59ef7a25511dbd428d12c58
681dd5a4f679b782cff3bd02cfd8e265703f6491
refs/heads/master
2021-05-04T05:28:14.539477
2018-02-28T15:56:34
2018-02-28T15:56:34
120,337,934
0
0
null
null
null
null
UTF-8
C++
false
false
19,247
cpp
/* * ConfigDialog.cpp * Modeless Configuration Dialog class * $Id: ConfigDialog.cpp 22290 2016-04-27 14:51:37Z ritt $ */ #include "DRSOscInc.h" ConfigDialog::ConfigDialog( wxWindow* parent ) : ConfigDialog_fb( parent ) { m_frame = (DOFrame *)parent; m_osci = m_frame->GetOsci(); fCalMode = 0; m_board = 0; m_firstChannel = 0; m_chnSection = m_frame->GetOsci()->GetChnSection(); m_cbMulti->SetValue(m_frame->GetMultiBoard()); m_cbClkOn->SetValue(m_frame->GetClkOn()); if (m_osci->GetNumberOfBoards() == 0) { m_cbClkOn->SetLabel(wxT("Connect reference clock to channel #4")); } else { if (m_frame->GetOsci()->GetBoard(0)->GetBoardType() == 9) m_cbClkOn->SetLabel(wxT("Connect reference clock to all channels")); else m_cbClkOn->SetLabel(wxT("Connect reference clock to channel #4")); } if (m_frame->GetRange() == 0) { m_rbRange->SetSelection(0); m_slCal->SetRange(-500, 500); } else if (m_frame->GetRange() == 0.45) { m_rbRange->SetSelection(1); m_slCal->SetRange(-50, 950); } else if (m_frame->GetRange() == 0.5) { m_rbRange->SetSelection(2); m_slCal->SetRange(-0, 1000); } if (m_chnSection == 2) m_rbChHalf->SetSelection(2); wxString wxstr; wxstr.Printf(wxT("%1.4lg"), m_frame->GetReqSamplingSpeed()); m_tbFreq->SetValue(wxstr); wxstr.Printf(wxT("%1.4lg GSPS"), m_frame->GetActSamplingSpeed()); m_stActFreq->SetLabel(wxstr); m_cbLocked->SetValue(m_frame->IsFreqLocked()); m_cbSpikes->SetValue(m_frame->GetSpikeRemovel()); if (m_osci->GetNumberOfBoards() == 0) { m_cbTCalOn->SetValue(true); m_cbTCalOn->Enable(true); } else { m_cbTCalOn->SetValue(m_frame->GetOsci()->IsTCalibrated()); m_cbTCalOn->Enable(m_frame->GetOsci()->IsTCalibrated()); } PopulateBoards(); } void ConfigDialog::PopulateBoards() { wxString wxstr; m_cbBoard->Clear(); for (int i=0 ; i<m_osci->GetNumberOfBoards() ; i++) { DRSBoard *b = m_osci->GetBoard(i); #ifdef HAVE_VME if (b->GetTransport() == 1) wxstr.Printf(wxT("VME DRS%d slot %2d%s serial %d"), b->GetDRSType(), (b->GetSlotNumber() >> 1)+2, ((b->GetSlotNumber() & 1) == 0) ? "up" : "lo", b->GetBoardSerialNumber()); else #endif wxstr.Printf(wxT("USB DRS%d serial %d"), b->GetDRSType(), b->GetBoardSerialNumber()); m_cbBoard->Append(wxstr); } m_cbBoard->Select(m_board); UpdateControls(); } void ConfigDialog::UpdateControls() { if (m_osci->GetNumberOfBoards() < 2) { m_cbMulti->Enable(false); } else m_cbMulti->Enable(true); if (m_osci->GetNumberOfBoards() == 0 || m_osci->GetBoard(m_board)->GetBoardType() == 5 || m_osci->GetBoard(m_board)->GetBoardType() == 7 || m_osci->GetBoard(m_board)->GetBoardType() == 8 || m_osci->GetBoard(m_board)->GetBoardType() == 9) { m_rbChRange->Enable(false); if (m_osci->GetNumberOfBoards() > 0) { m_cbExtRefclk->Enable(m_osci->GetBoard(m_board)->GetBoardType() == 8 || m_osci->GetBoard(m_board)->GetBoardType() == 9); m_cbExtRefclk->Show(m_osci->GetBoard(m_board)->GetBoardType() == 8 || m_osci->GetBoard(m_board)->GetBoardType() == 9); } } else { m_rbChRange->Enable(true); m_cbExtRefclk->Enable(true); m_cbExtRefclk->Show(true); } if (m_osci->GetNumberOfBoards() > 0) { if (m_osci->GetBoard(m_board)->GetBoardType() == 5 || m_osci->GetBoard(m_board)->GetBoardType() == 6 || m_osci->GetBoard(m_board)->Is2048ModeCapable()) { m_rbChHalf->Enable(true); } else { if (m_osci->GetBoard(m_board)->GetBoardSerialNumber() == 2146 || m_osci->GetBoard(m_board)->GetBoardSerialNumber() == 2205 || m_osci->GetBoard(m_board)->GetBoardSerialNumber() == 2208 || m_osci->GetBoard(m_board)->GetBoardSerialNumber() == 2253 || m_osci->GetBoard(m_board)->GetBoardSerialNumber() == 2287) { m_rbChHalf->Enable(true); // special boards modified for RFBeta & Slow Muons } else { m_rbChHalf->Enable(false); } } } else { m_rbChHalf->Enable(false); } if (m_osci->GetNumberOfBoards() == 0) { m_cbTCalOn->SetValue(true); m_cbTCalOn->Enable(true); } else { m_cbCalibrated->SetValue(m_frame->GetOsci()->IsVCalibrated()); m_cbCalibrated->Enable(m_frame->GetOsci()->IsVCalibrated()); m_cbCalibrated2->SetValue(m_frame->GetOsci()->IsVCalibrated()); m_cbCalibrated2->Enable(m_frame->GetOsci()->IsVCalibrated()); m_cbTCalOn->SetValue(m_frame->GetOsci()->IsTCalibrated()); m_cbTCalOn->Enable(m_frame->GetOsci()->IsTCalibrated()); m_cbExtRefclk->SetValue(m_osci->GetBoard(m_board)->GetRefclk() == 1); if ((m_osci->GetBoard(m_board)->GetBoardType() == 8 || m_osci->GetBoard(m_board)->GetBoardType() == 9) && (!m_osci->IsMultiBoard() || m_board == 0)) m_frame->EnableTriggerConfig(true); else m_frame->EnableTriggerConfig(false); } } void ConfigDialog::OnBoardSelect( wxCommandEvent& event ) { if (event.GetId() == ID_MULTI) { if (m_cbMulti->IsChecked()) { wxString str; str.Printf(wxT("In a multi-board configuration, the Trigger and Clock singals must be conected. Please read the manual for details. Turn on multi-board mode?")); if (wxMessageBox(str, wxT("DRS Oscilloscope Info"), wxOK | wxCANCEL | wxICON_EXCLAMATION) == wxOK) { m_osci->Enable(false); m_osci->SetMultiBoard(true); for (int i=1 ; i<m_osci->GetNumberOfBoards() ; i++) { DRSBoard *b = m_frame->GetOsci()->GetBoard(i); m_frame->SetTriggerSource(i, 4); // select external trigger m_frame->SetTriggerPolarity(i, false); // positive trigger if (b->GetFirmwareVersion() < 21260) { wxMessageBox(wxT("For this operation V5 boards with firmware revision >= 21260 is required"), wxT("DRS Oscilloscope"), wxOK | wxICON_STOP, this); } else { if (b->GetScaler(5) < 300000) { str.Printf(wxT("No clock signal connected to CLK IN of board #%d"), i); wxMessageBox(str, wxT("DRS Oscilloscope"), wxOK | wxICON_STOP, this); m_frame->SetRefclk(i, false); } else { m_frame->SetRefclk(i, true); } } } m_osci->Enable(true); m_osci->SelectBoard(m_board); } else { m_cbMulti->SetValue(false); } } else { m_osci->Enable(false); m_osci->SetMultiBoard(false); m_osci->Enable(true); m_osci->SelectBoard(m_board); } m_frame->SetMultiBoard(m_cbMulti->IsChecked()); m_frame->SelectBoard(m_board); // cause control update if (!m_cbMulti->IsChecked()) m_frame->SetSplitMode(false); } else { m_board = m_cbBoard->GetSelection(); m_osci->SelectBoard(m_board); m_frame->SelectBoard(m_board); UpdateControls(); } } // called from DOFrame if one selects another board void ConfigDialog::SelectBoard(int i) { m_board = i; m_cbBoard->SetSelection(i); m_osci->SelectBoard(m_board); m_frame->UpdateStatusBar(); UpdateControls(); } void ConfigDialog::OnRescan( wxCommandEvent& event ) { m_frame->EnableEPThread(false); m_osci->ScanBoards(); PopulateBoards(); if (m_board >= m_osci->GetNumberOfBoards()) m_board = m_firstChannel = m_chnSection = 0; m_osci->SelectBoard(m_board); m_frame->EnableEPThread(true); m_frame->UpdateStatusBar(); } void ConfigDialog::OnInfo( wxCommandEvent& event ) { InfoDialog id(m_frame); id.ShowModal(); } void ConfigDialog::OnChannelRange( wxCommandEvent& event ) { if (event.GetId() == ID_CH_RANGE) m_firstChannel = m_rbChRange->GetSelection(); else if (event.GetId() == ID_CH_HALF) m_chnSection = m_rbChHalf->GetSelection(); m_frame->SetSource(m_board, m_firstChannel, m_chnSection); m_osci->SelectBoard(m_board); m_osci->SelectChannel(m_firstChannel, m_chnSection); } void ConfigDialog::OnInputRange( wxCommandEvent& event ) { if (m_rbRange->GetSelection() == 0) { m_frame->GetOsci()->SetInputRange(0); m_frame->SetRange(0); m_slCal->SetRange(-500, 500); } else if (m_rbRange->GetSelection() == 1) { m_frame->GetOsci()->SetInputRange(0.45); m_frame->SetRange(0.45); m_slCal->SetRange(-50, 950); } else if (m_rbRange->GetSelection() == 2) { m_frame->GetOsci()->SetInputRange(0.5); m_frame->SetRange(0.5); m_slCal->SetRange(0, 1000); } OnCalEnter(event); } void ConfigDialog::OnCalOn( wxCommandEvent& event ) { if (event.IsChecked()) { m_frame->GetOsci()->SetCalibVoltage(true, m_slCal->GetValue()/1000.0); } else { m_frame->GetOsci()->SetCalibVoltage(false, 0); } } void ConfigDialog::OnCalEnter( wxCommandEvent& event ) { if (!m_teCal->IsEmpty()) { long value; m_teCal->GetValue().ToLong(&value); if (m_frame->GetRange() == 0) { if (value < -500) value = -500; if (value > 500) value = 500; } else if (m_frame->GetRange() == 0.45) { if (value < -50) value = -50; if (value > 950) value = 950; } else if (m_frame->GetRange() == 0.5) { if (value < 0) value = 0; if (value > 1000) value = 1000; } m_slCal->SetValue(value); m_teCal->SetValue(wxString::Format(wxT("%ld"), value)); if (m_cbCalOn->IsChecked()) m_frame->GetOsci()->SetCalibVoltage(true, value/1000.0); } /* check for calibration */ if (m_osci->GetNumberOfBoards() > 0 && fabs(m_frame->GetRange() - m_frame->GetOsci()->GetCalibratedInputRange()) > 0.001) { wxString str; str.Printf(wxT("This board was calibrated for an input range of\n %1.2lg V ... %1.2lg V\nYou must execute a new voltage calibration to use this board for the new input range"), m_frame->GetOsci()->GetCalibratedInputRange()-0.5, m_frame->GetOsci()->GetCalibratedInputRange()+0.5); wxMessageBox(str, wxT("DRS Oscilloscope Warning"), wxOK | wxICON_EXCLAMATION, this); } } void ConfigDialog::OnCalSlider( wxScrollEvent& event ) { m_teCal->SetValue(wxString::Format(wxT("%d"), m_slCal->GetValue())); if (m_cbCalOn->IsChecked()) m_frame->GetOsci()->SetCalibVoltage(true, m_slCal->GetValue()/1000.0); } void ConfigDialog::Progress(int prog) { if (fCalMode == 1) m_gaugeCalVolt->SetValue(prog); else { m_gaugeCalTime->SetValue(prog); m_frame->SetProgress(prog); m_frame->Refresh(); m_frame->Update(); } /* produces flickers with V 2.9.2 this->Refresh(); this->Update(); */ } void ConfigDialog::OnButtonCalVolt( wxCommandEvent& event ) { fCalMode = 1; if (m_frame->GetOsci()->GetNumberOfBoards()) { m_frame->GetTimer()->Stop(); m_frame->GetOsci()->Enable(false); // turn off readout thread DRSBoard *b = m_frame->GetOsci()->GetCurrentBoard(); if (b->GetTransport() == TR_USB2 && b->GetBoardType() == 6) { wxMessageBox(wxT("Voltage calibration not possible with Mezzanine Board through USB"), wxT("DRS Oscilloscope Error"), wxOK | wxICON_STOP, this); return; } wxMessageBox(wxT("Please disconnect any signal from input to continue calibration"), wxT("DRS Oscilloscope Info"), wxOK | wxICON_INFORMATION, this); m_frame->Refresh(); m_frame->Update(); /* remember current settings */ double acalVolt = b->GetAcalVolt(); int acalMode = b->GetAcalMode(); int tcalFreq = b->GetTcalFreq(); int tcalLevel = b->GetTcalLevel(); int tcalSource = b->GetTcalSource(); int flag1 = b->GetTriggerEnable(0); int flag2 = b->GetTriggerEnable(1); int trgSource = b->GetTriggerSource(); int trgDelay = b->GetTriggerDelay(); double range = b->GetInputRange(); int config = b->GetReadoutChannelConfig(); int casc = b->GetChannelCascading(); wxBusyCursor cursor; b->CalibrateVolt(this); /* restore old values */ b->EnableAcal(acalMode, acalVolt); b->EnableTcal(tcalFreq, tcalLevel); b->SelectClockSource(tcalSource); b->EnableTrigger(flag1, flag2); b->SetTriggerSource(trgSource); b->SetTriggerDelayPercent(trgDelay); b->SetInputRange(range); if (casc == 2) b->SetChannelConfig(config, 8, 4); else b->SetChannelConfig(config, 8, 8); if (b->GetBoardType() == 5) b->SetTranspMode(1); // Evaluation board with build-in trigger else b->SetTranspMode(1); // VPC Mezzanine board UpdateControls(); m_frame->GetTimer()->Start(100); m_frame->GetOsci()->Start(); m_frame->GetOsci()->Enable(true); } Progress(0); } void ConfigDialog::OnButtonCalTime( wxCommandEvent& event ) { fCalMode = 2; if (m_frame->GetOsci()->GetNumberOfBoards()) { if (m_frame->GetOsci()->GetCurrentBoard()->GetFirmwareVersion() < 13279) wxMessageBox(wxT("Firmware revision 13279 or later\nrequired for timing calibration"), wxT("DRS Oscilloscope"), wxOK | wxICON_STOP, this); else if (m_frame->GetOsci()->GetInputRange() != 0) wxMessageBox(wxT("Timing calibration can only be done\nat the -0.5V to +0.5V input range"), wxT("DRS Oscilloscope"), wxOK | wxICON_STOP, this); else { DRSBoard *b = m_frame->GetOsci()->GetCurrentBoard(); m_frame->GetOsci()->Enable(false); // turn off readout thread /* remember current settings */ double acalVolt = b->GetAcalVolt(); int acalMode = b->GetAcalMode(); int tcalFreq = b->GetTcalFreq(); int tcalLevel = b->GetTcalLevel(); int tcalSource = b->GetTcalSource(); int flag1 = b->GetTriggerEnable(0); int flag2 = b->GetTriggerEnable(1); int trgSource = b->GetTriggerSource(); int trgDelay = b->GetTriggerDelay(); double range = b->GetInputRange(); int config = b->GetReadoutChannelConfig(); m_frame->SetPaintMode(kPMTimeCalibration); wxBusyCursor cursor; int status = b->CalibrateTiming(this); if (!status) wxMessageBox(wxT("Error performing timing calibration, please check waveforms and redo voltage calibration."), wxT("DRS Oscilloscope"), wxOK | wxICON_STOP, this); else wxMessageBox(wxT("Timing calibration successfully finished."), wxT("DRS Oscilloscope"), wxOK, this); m_frame->SetPaintMode(kPMWaveform); /* restore old values */ b->EnableAcal(acalMode, acalVolt); b->EnableTcal(tcalFreq, tcalLevel); b->SelectClockSource(tcalSource); b->EnableTrigger(flag1, flag2); b->SetTriggerSource(trgSource); b->SetTriggerDelayPercent(trgDelay); b->SetInputRange(range); b->SetChannelConfig(config, 8, 8); if (b->GetBoardType() == 5) b->SetTranspMode(1); // Evaluation board with build-in trigger else b->SetTranspMode(1); // VPC Mezzanine board FreqChange(); // update enable flag for timing calibration check box m_frame->GetTimer()->Start(100); m_frame->GetOsci()->Start(); m_frame->GetOsci()->Enable(true); } Progress(0); } } void ConfigDialog::OnClkOn( wxCommandEvent& event ) { m_frame->SetClkOn(event.IsChecked()); } void ConfigDialog::OnDateTime( wxCommandEvent& event ) { m_frame->SetDisplayDateTime(event.IsChecked()); } void ConfigDialog::OnShowGrid( wxCommandEvent& event ) { m_frame->SetDisplayShowGrid(event.IsChecked()); } void ConfigDialog::OnDisplayWaveforms( wxCommandEvent& event ) { if (event.GetId() == ID_DISP_CALIBRATED) m_frame->SetDisplayCalibrated(event.IsChecked()); if (event.GetId() == ID_DISP_CALIBRATED2) m_frame->SetDisplayCalibrated2(event.IsChecked()); if (event.GetId() == ID_DISP_ROTATED) m_frame->SetDisplayRotated(event.IsChecked()); if (event.GetId() == ID_DISP_TCALIBRATED) m_frame->SetDisplayTCalOn(event.IsChecked()); if (event.GetId() == ID_DISP_TRGCORR) m_frame->SetDisplayTrgCorr(event.IsChecked()); if (event.GetId() == ID_REFCLK) { if (event.IsChecked()) { // check if clock is connected to CLK in if (m_frame->GetOsci()->GetNumberOfBoards() > 0) { if (m_frame->GetOsci()->GetCurrentBoard()->GetFirmwareVersion() < 21260) { wxMessageBox(wxT("For this operation a V5 board with firmware revision >= 21260 is required"), wxT("DRS Oscilloscope"), wxOK | wxICON_STOP, this); m_cbExtRefclk->SetValue(false); } else { if (m_frame->GetOsci()->GetScaler(5) < 300000) { wxMessageBox(wxT("No clock signal connected to CLK IN"), wxT("DRS Oscilloscope"), wxOK | wxICON_STOP, this); m_cbExtRefclk->SetValue(false); } else m_frame->SetRefclk(m_board, true); } } } else m_frame->SetRefclk(m_board, false); FreqChange(); } } void ConfigDialog::OnRemoveSpikes( wxCommandEvent& event ) { m_frame->SetSpikeRemoval(event.IsChecked()); } void ConfigDialog::FreqChange() { wxString wxstr; wxstr.Printf(wxT("%1.4lg"), m_frame->GetReqSamplingSpeed()); m_tbFreq->SetValue(wxstr); wxstr.Printf(wxT("%1.4lg GSPS"), m_frame->GetActSamplingSpeed()); m_stActFreq->SetLabel(wxstr); if (m_osci->GetNumberOfBoards() == 0) { m_cbTCalOn->SetValue(true); m_cbTCalOn->Enable(true); } else { m_cbTCalOn->SetValue(m_frame->GetOsci()->IsTCalibrated()); m_cbTCalOn->Enable(m_frame->GetOsci()->IsTCalibrated()); } } void ConfigDialog::OnFreq( wxCommandEvent& event ) { wxString wxstr = m_tbFreq->GetValue(); double freq = 0; wxstr.ToDouble(&freq); m_frame->SetSamplingSpeed(freq); wxstr.Printf(wxT("%1.4lg GSPS"), m_frame->GetActSamplingSpeed()); m_stActFreq->SetLabel(wxstr); if (m_osci->GetNumberOfBoards() == 0) { m_cbTCalOn->SetValue(true); m_cbTCalOn->Enable(true); } else { m_cbTCalOn->SetValue(m_frame->GetOsci()->IsTCalibrated()); m_cbTCalOn->Enable(m_frame->GetOsci()->IsTCalibrated()); } } void ConfigDialog::OnLock( wxCommandEvent& event ) { m_frame->SetFreqLock(event.IsChecked()); } void ConfigDialog::OnClose( wxCommandEvent& event ) { this->Hide(); }
[ "cambusecritiche.ricette@gmail.com" ]
cambusecritiche.ricette@gmail.com
0c0a8b7d2267bff0b69c353c3523a1bc3634993e
9030ce2789a58888904d0c50c21591632eddffd7
/SDK/ARKSurvivalEvolved_WoodTable_parameters.hpp
d46b371d411ff6247f92d2663bc38f7f3161f4ea
[ "MIT" ]
permissive
2bite/ARK-SDK
8ce93f504b2e3bd4f8e7ced184980b13f127b7bf
ce1f4906ccf82ed38518558c0163c4f92f5f7b14
refs/heads/master
2022-09-19T06:28:20.076298
2022-09-03T17:21:00
2022-09-03T17:21:00
232,411,353
14
5
null
null
null
null
UTF-8
C++
false
false
769
hpp
#pragma once // ARKSurvivalEvolved (332.8) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "ARKSurvivalEvolved_WoodTable_classes.hpp" namespace sdk { //--------------------------------------------------------------------------- //Parameters //--------------------------------------------------------------------------- // Function WoodTable.WoodTable_C.UserConstructionScript struct AWoodTable_C_UserConstructionScript_Params { }; // Function WoodTable.WoodTable_C.ExecuteUbergraph_WoodTable struct AWoodTable_C_ExecuteUbergraph_WoodTable_Params { int EntryPoint; // (Parm, ZeroConstructor, IsPlainOldData) }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "sergey.2bite@gmail.com" ]
sergey.2bite@gmail.com
c040083d11e69ab381159eb7ea85b9536a781f55
7818d70f4d93f50c860ca8a03b56700ba3e1399b
/src/qt/optionsmodel.h
1332141e2996200cfd2292caf7515dc179262be4
[ "MIT" ]
permissive
IndiumDev/Indium
5245778142bee33800d9d99ceb36eae8c3665d39
b87131b3d2e40678f418f4eabef049e5a963681e
refs/heads/master
2020-03-18T03:47:35.013051
2018-05-21T10:51:20
2018-05-21T10:51:20
134,256,319
0
0
null
null
null
null
UTF-8
C++
false
false
3,679
h
// Copyright (c) 2011-2013 The Bitcoin developers // Copyright (c) 2017-2018 The INDIUM developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_QT_OPTIONSMODEL_H #define BITCOIN_QT_OPTIONSMODEL_H #include "amount.h" #include <QAbstractListModel> QT_BEGIN_NAMESPACE class QNetworkProxy; QT_END_NAMESPACE /** Interface from Qt to configuration data structure for Bitcoin client. To Qt, the options are presented as a list with the different options laid out vertically. This can be changed to a tree once the settings become sufficiently complex. */ class OptionsModel : public QAbstractListModel { Q_OBJECT public: explicit OptionsModel(QObject* parent = 0); enum OptionID { StartAtStartup, // bool MinimizeToTray, // bool MapPortUPnP, // bool MinimizeOnClose, // bool ProxyUse, // bool ProxyIP, // QString ProxyPort, // int DisplayUnit, // BitcoinUnits::Unit ThirdPartyTxUrls, // QString Digits, // QString Theme, // QString Language, // QString CoinControlFeatures, // bool ThreadsScriptVerif, // int DatabaseCache, // int SpendZeroConfChange, // bool ZeromintEnable, // bool ZeromintPercentage, // int ZeromintPrefDenom, // int HideZeroBalances, // bool AnonymizeIndiumAmount, //int ShowMasternodesTab, // bool Listen, // bool StakeSplitThreshold, // int OptionIDRowCount, }; void Init(); void Reset(); int rowCount(const QModelIndex& parent = QModelIndex()) const; QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const; bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole); /** Updates current unit in memory, settings and emits displayUnitChanged(newUnit) signal */ void setDisplayUnit(const QVariant& value); /* Update StakeSplitThreshold's value in wallet */ void setStakeSplitThreshold(int value); /* Explicit getters */ bool getMinimizeToTray() { return fMinimizeToTray; } bool getMinimizeOnClose() { return fMinimizeOnClose; } int getDisplayUnit() { return nDisplayUnit; } QString getThirdPartyTxUrls() { return strThirdPartyTxUrls; } bool getProxySettings(QNetworkProxy& proxy) const; bool getCoinControlFeatures() { return fCoinControlFeatures; } const QString& getOverriddenByCommandLine() { return strOverriddenByCommandLine; } /* Restart flag helper */ void setRestartRequired(bool fRequired); bool isRestartRequired(); bool resetSettings; private: /* Qt-only settings */ bool fMinimizeToTray; bool fMinimizeOnClose; QString language; int nDisplayUnit; QString strThirdPartyTxUrls; bool fCoinControlFeatures; bool fHideZeroBalances; /* settings that were overriden by command-line */ QString strOverriddenByCommandLine; /// Add option to list of GUI options overridden through command line/config file void addOverriddenOption(const std::string& option); signals: void displayUnitChanged(int unit); void zeromintEnableChanged(bool); void zeromintPercentageChanged(int); void preferredDenomChanged(int); void anonymizeIndiumAmountChanged(int); void coinControlFeaturesChanged(bool); void hideZeroBalancesChanged(bool); }; #endif // BITCOIN_QT_OPTIONSMODEL_H
[ "Admin@DESKTOP-01MJO1I.(none)" ]
Admin@DESKTOP-01MJO1I.(none)
d63963ee472067a5744069aacebfe7fc2048538d
9357b06b1187806a79335b3bd9d890c7a9fd2318
/vision/blackItem/image_converter.cpp
511332f46a0bd1748692293e95e74f37e88a30a0
[]
no_license
eithwa/AvoidChallange
03be23c9191b055583af3512010e464f580cd8f7
fe13da472916d4032ea9afe69509b26f4d00bb66
refs/heads/master
2020-06-14T13:25:04.218953
2019-07-10T13:23:37
2019-07-10T13:23:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
16,479
cpp
#include "image_converter.hpp" #include "math.h" #include "omp.h" using namespace std; using namespace cv; const double ALPHA = 0.5; ImageConverter::ImageConverter(): it_(nh), FrameRate(0.0), obj_filter_size(500) { get_Camera(); get_center(); get_distance(); get_whitedata(); image_sub_ = it_.subscribe("/camera/image_raw", 1, &ImageConverter::imageCb, this); black_pub = nh.advertise<std_msgs::Int32MultiArray>("/vision/BlackRealDis", 1); red_pub = nh.advertise<std_msgs::Int32MultiArray>("/vision/redRealDis", 1); mpicture = nh.advertise<vision::visionlook>("/vision/picture_m", 1); double ang_PI; for (int ang = 0; ang < 360; ang++) { ang_PI = ang * M_PI / 180; Angle_sin.push_back(sin(ang_PI)); Angle_cos.push_back(cos(ang_PI)); } } ImageConverter::~ImageConverter() { } int Frame_area(int num, int range) { if (num < 0) num = 0; else if (num >= range) num = range - 1; return num; } void ImageConverter::imageCb(const sensor_msgs::ImageConstPtr &msg) { cv_bridge::CvImagePtr cv_ptr; try { cv_ptr = cv_bridge::toCvCopy(msg, enc::BGR8); cv::flip(cv_ptr->image, Main_frame, 1); Black_Mask = Main_frame.clone(); Red_Mask = Main_frame.clone(); static double StartTime = ros::Time::now().toSec(); double EndTime = ros::Time::now().toSec(); if(EndTime-StartTime>2){ get_Camera(); get_center(); get_distance(); get_whitedata(); StartTime = EndTime; } #pragma omp parallel sections { #pragma omp section { //================Black obstacle detection======== black_binarization(); black_filter(); black_item(); } #pragma omp section { //================Red line detection============== red_binarization(); red_line(); } } //cv::imshow("black_item", Black_Mask); //cv::imshow("red_line", Red_Mask); //cv::waitKey(1); //=======================FPS====================== FrameRate = Rate(); //================================================ } catch (cv_bridge::Exception &e) { ROS_ERROR("cv_bridge exception: %s", e.what()); return; } } double ImageConverter::Rate() { double ALPHA = 0.5; double dt; static int frame_counter = 0; static double frame_rate = 0.0; static double StartTime = ros::Time::now().toNSec(); double EndTime; frame_counter++; if (frame_counter == 10) { EndTime = ros::Time::now().toNSec(); dt = (EndTime - StartTime) / frame_counter; StartTime = EndTime; if (dt != 0) { frame_rate = (1000000000.0 / dt) * ALPHA + frame_rate * (1.0 - ALPHA); //cout << "FPS: " << frame_rate << endl; } frame_counter = 0; } return frame_rate; } void ImageConverter::black_binarization() { int gray_count = 0; gray_ave = 0; for (int i = 0; i < Main_frame.rows; i++) { for (int j = 0; j < Main_frame.cols; j++) { unsigned char gray = (Main_frame.data[(i * Main_frame.cols * 3) + (j * 3) + 0] + Main_frame.data[(i * Main_frame.cols * 3) + (j * 3) + 1] + Main_frame.data[(i * Main_frame.cols * 3) + (j * 3) + 2]) / 3; if (gray < black_gray) { gray_ave += gray; gray_count++; } } } gray_count = (gray_count == 0) ? 0.00001 : gray_count; gray_ave = gray_ave / gray_count; for (int i = 0; i < Main_frame.rows; i++) { for (int j = 0; j < Main_frame.cols; j++) { unsigned char gray = (Main_frame.data[(i * Main_frame.cols * 3) + (j * 3) + 0] + Main_frame.data[(i * Main_frame.cols * 3) + (j * 3) + 1] + Main_frame.data[(i * Main_frame.cols * 3) + (j * 3) + 2]) / 3; if (gray < black_gray - (setgray - gray_ave)) { Black_Mask.data[(i * Black_Mask.cols * 3) + (j * 3) + 0] = 0; Black_Mask.data[(i * Black_Mask.cols * 3) + (j * 3) + 1] = 0; Black_Mask.data[(i * Black_Mask.cols * 3) + (j * 3) + 2] = 0; } else { Black_Mask.data[(i * Black_Mask.cols * 3) + (j * 3) + 0] = 255; Black_Mask.data[(i * Black_Mask.cols * 3) + (j * 3) + 1] = 255; Black_Mask.data[(i * Black_Mask.cols * 3) + (j * 3) + 2] = 255; } } } } class Coord { public: Coord(int x_, int y_) : x(x_), y(y_) {} Coord operator+(const Coord &addon) const { return Coord(x + addon.x, y + addon.y); } int get_x() const { return x; } int get_y() const { return y; } private: int x, y; }; Coord directions[8] = { Coord(0, 1), Coord(0, -1), Coord(-1, 0), Coord(1, 0), Coord(-1, 1), Coord(1, 1), Coord(-1, -1), Coord(1, -1)}; bool is_black(Mat &img, const Coord &c) { if(img.data[(c.get_y() * img.cols + c.get_x()) * 3 + 0] == 0 &&img.data[(c.get_y() * img.cols + c.get_x()) * 3 + 1] == 0 &&img.data[(c.get_y() * img.cols + c.get_x()) * 3 + 2] == 0) { return true; }else{ return false; } } void is_checked(Mat &img, const Coord &c){ img.data[(c.get_y() * img.cols + c.get_x()) * 3 + 0] = 255; img.data[(c.get_y() * img.cols + c.get_x()) * 3 + 1] = 255; img.data[(c.get_y() * img.cols + c.get_x()) * 3 + 2] = 255; } Mat convertTo3Channels(const Mat &binImg) { Mat three_channel = Mat::zeros(binImg.rows, binImg.cols, CV_8UC3); vector<Mat> channels; for (int i = 0; i < 3; i++) { channels.push_back(binImg); } merge(channels, three_channel); return three_channel; } void ImageConverter::black_filter() { int inner = center_inner, outer = center_outer, centerx = center_x, centery = center_y; int detection_range = (inner+outer)/2; int width = Black_Mask.cols-1, length = Black_Mask.rows-1; int obj_size = obj_filter_size; vector<vector<Coord> > obj; //物件列表 Mat check_map = Mat(Size(Black_Mask.cols, Black_Mask.rows), CV_8UC3, Scalar(0, 0, 0));//確認搜尋過的pix //inner中心塗白 outer切斷與外面相連黑色物體 circle(Black_Mask, Point(centerx, centery), inner, Scalar(255, 255, 255), -1); circle(Black_Mask, Point(centerx, centery), outer, Scalar(255, 0, 0), 2); //搜尋範圍顯示 circle(Black_Mask, Point(centerx, centery), detection_range, Scalar(255, 0, 0), 1); //rectangle(Black_Mask, Point(centerx - detection_range, centery - detection_range), Point(centerx + detection_range, centery + detection_range), Scalar(255, 0, 0), 1); //選取的範圍做搜尋 //0為黑 for (int i = centerx - detection_range; i < centerx + detection_range; i++) { for (int j = centery - detection_range; j < centery + detection_range; j++) { //std::cout << i << " " << j << std::endl; if(hypot(centerx-i,centery-j)>detection_range) continue; if (is_black(check_map,Coord(i, j))) { is_checked(check_map,Coord(i, j)); if (is_black(Black_Mask, Coord(i, j))) { queue<Coord> bfs_list; bfs_list.push(Coord(i, j)); vector<Coord> dot; dot.push_back(Coord(i, j)); //放入佇列 while (!bfs_list.empty()) { Coord ori = bfs_list.front(); bfs_list.pop(); //搜尋八方向 for (int k = 0; k < 8; k++) { Coord dst = ori + directions[k]; //處理邊界 if ((dst.get_x() < 0) || (dst.get_x() >= width) || (dst.get_y() < 0) || (dst.get_y() >= length)) continue; if(hypot(centerx-dst.get_x(),centery-dst.get_y())>outer) continue; if (!is_black(check_map,Coord(dst.get_x(), dst.get_y()))) continue; if (is_black(Black_Mask, dst)) { bfs_list.push(dst); dot.push_back(dst); } is_checked(check_map,Coord(dst.get_x(), dst.get_y())); } } obj.push_back(dot); } } } } //上色 for (int i = 0; i < obj.size(); i++) { //需要塗色的物體大小 if (obj[i].size() > obj_size) continue; for (int j = 0; j < obj[i].size(); j++) { Coord point = obj[i][j]; line(Black_Mask, Point(point.get_x(), point.get_y()), Point(point.get_x(), point.get_y()), Scalar(255, 0, 255), 1); } } //cv::imshow("black filter", Black_Mask); //cv::waitKey(1); } void ImageConverter::black_item() { int object_dis; blackItem_pixel.clear(); BlackRealDis.data.clear(); Mat binarization_map = Black_Mask.clone(); for (int angle = 0; angle < 360; angle = angle + black_angle) { int angle_be = angle + center_front; if (angle_be >= 360) angle_be -= 360; double x_ = Angle_cos[angle_be]; double y_ = Angle_sin[angle_be]; for (int r = center_inner - 1; r <= center_outer; r++) { int dis_x = x_ * r; int dis_y = y_ * r; int image_x = Frame_area(center_x + dis_x, binarization_map.cols); int image_y = Frame_area(center_y - dis_y, binarization_map.rows); if (binarization_map.data[(image_y * binarization_map.cols + image_x) * 3 + 0] == 0 && binarization_map.data[(image_y * binarization_map.cols + image_x) * 3 + 1] == 0 && binarization_map.data[(image_y * binarization_map.cols + image_x) * 3 + 2] == 0) { blackItem_pixel.push_back(hypot(dis_x, dis_y)); break; } else { Black_Mask.data[(image_y * Black_Mask.cols + image_x) * 3 + 0] = 0; Black_Mask.data[(image_y * Black_Mask.cols + image_x) * 3 + 1] = 0; Black_Mask.data[(image_y * Black_Mask.cols + image_x) * 3 + 2] = 255; } if (r == center_outer) { blackItem_pixel.push_back(hypot(dis_x, dis_y)); } } } //ROS_INFO("%d , blackangle=%d",blackItem_pixel.size(),black_angle); for (int j = 0; j < blackItem_pixel.size(); j++) { object_dis = Omni_distance(blackItem_pixel[j]); BlackRealDis.data.push_back(object_dis); } black_pub.publish(BlackRealDis); //cv::imshow("black_item", Black_Mask); //cv::waitKey(1); } void ImageConverter::red_binarization() { Mat inputMat = Red_Mask.clone(); Mat hsv(inputMat.rows, inputMat.cols, CV_8UC3, Scalar(0, 0, 0)); Mat mask(inputMat.rows, inputMat.cols, CV_8UC1, Scalar(0, 0, 0)); Mat mask2(inputMat.rows, inputMat.cols, CV_8UC1, Scalar(0, 0, 0)); Mat dst(inputMat.rows, inputMat.cols, CV_8UC3, Scalar(0, 0, 0)); Mat white(inputMat.rows, inputMat.cols, CV_8UC3, Scalar(255, 255, 255)); int hmin, hmax, smin, smax, vmin, vmax; cvtColor(inputMat, hsv, CV_BGR2HSV); hmax = double(red[0]*0.5); hmin = double(red[1]*0.5); smax = red[2]; smin = red[3]; vmax = red[4]; vmin = red[5]; if (red[0] >= red[1]) { inRange(hsv, Scalar(hmin, smin, vmin), Scalar(hmax, smax, vmax), mask); } else { inRange(hsv, Scalar(hmin, smin, vmin), Scalar(255, smax, vmax), mask); inRange(hsv, Scalar(0, smin, vmin), Scalar(hmax, smax, vmax), mask2); mask = mask + mask2; } convertTo3Channels(mask); //開操作 (去除一些噪點) Mat element = getStructuringElement(MORPH_RECT, Size(2, 2)); morphologyEx(mask, mask, MORPH_OPEN, element); white.copyTo(dst, (cv::Mat::ones(mask.size(), mask.type()) * 255 - mask)); Red_Mask = dst; ///////////////////Show view///////////////// //cv::imshow("dst", dst); //cv::imshow("Red_Mask", Red_Mask); //cv::waitKey(1); ///////////////////////////////////////////// } void ImageConverter::red_line() { int object_dis; redItem_pixel.clear(); redRealDis.data.clear(); Mat binarization_map = Red_Mask.clone(); for (int angle = 0; angle < 360; angle = angle + black_angle) { int angle_be = angle + center_front; if (angle_be >= 360) angle_be -= 360; double x_ = Angle_cos[angle_be]; double y_ = Angle_sin[angle_be]; for (int r = center_inner; r <= center_outer; r++) { int dis_x = x_ * r; int dis_y = y_ * r; int image_x = Frame_area(center_x + dis_x, binarization_map.cols); int image_y = Frame_area(center_y - dis_y, binarization_map.rows); if (binarization_map.data[(image_y * binarization_map.cols + image_x) * 3 + 0] == 0 && binarization_map.data[(image_y * binarization_map.cols + image_x) * 3 + 1] == 0 && binarization_map.data[(image_y * binarization_map.cols + image_x) * 3 + 2] == 0) { redItem_pixel.push_back(hypot(dis_x, dis_y)); break; } else { Red_Mask.data[(image_y * Red_Mask.cols + image_x) * 3 + 0] = 0; Red_Mask.data[(image_y * Red_Mask.cols + image_x) * 3 + 1] = 0; Red_Mask.data[(image_y * Red_Mask.cols + image_x) * 3 + 2] = 255; } if (r == center_outer) { redItem_pixel.push_back(hypot(dis_x, dis_y)); } } } for (int j = 0; j < redItem_pixel.size(); j++) { object_dis = Omni_distance(redItem_pixel[j]); redRealDis.data.push_back(object_dis); } red_pub.publish(redRealDis); to_strategy.mpicture++; to_strategy.gray_ave = gray_ave; mpicture.publish(to_strategy); ///////////////////Show view///////////////// cv::imshow("red_line", Red_Mask); cv::waitKey(1); ///////////////////////////////////////////// } double ImageConverter::Omni_distance(double dis_pixel) { double Z = -1 * Camera_H; double c = 83.125; double b = c * 0.8722; double f = Camera_f; double dis; //double pixel_dis = sqrt(pow(object_x,2)+pow(object_y,2)); double pixel_dis = dis_pixel; double r = atan2(f, pixel_dis * 0.0099); dis = Z * (pow(b, 2) - pow(c, 2)) * cos(r) / ((pow(b, 2) + pow(c, 2)) * sin(r) - 2 * b * c); if (dis / 10 < 0 || dis / 10 > 999) { dis = 9990; } return dis / 10; } void ImageConverter::get_center() { nh.setParam("/FIRA/gray_ave", gray_ave); nh.getParam("/AvoidChallenge/GraySet", setgray); nh.getParam("/FIRA/Center/X", center_x); nh.getParam("/FIRA/Center/Y", center_y); nh.getParam("/FIRA/Center/Inner", center_inner); nh.getParam("/FIRA/Center/Outer", center_outer); nh.getParam("/FIRA/Center/Front", center_front); } void ImageConverter::get_distance() { nh.getParam("/FIRA/Distance/Gap", dis_gap); nh.getParam("/FIRA/Distance/Space", dis_space); nh.getParam("/FIRA/Distance/Pixel", dis_pixel); } void ImageConverter::get_Camera() { nh.getParam("/FIRA/Camera/High", Camera_H); nh.getParam("/FIRA/Camera/Focal", Camera_f); } void ImageConverter::get_whitedata() { red.clear(); if (nh.hasParam("/FIRA/blackItem/obj_filter_size")) { nh.getParam("/FIRA/blackItem/obj_filter_size", obj_filter_size); } nh.getParam("/FIRA/blackItem/gray", black_gray); nh.getParam("/FIRA/blackItem/angle", black_angle); nh.getParam("/FIRA/HSV/Redrange", red); //std::cout<<red[0]<<" "<<red[1]<<" "<<red[2]<<" "<<red[3]<<" "<<red[4]<<" "<<red[5]<<std::endl; }
[ "mich841012@gmail.com" ]
mich841012@gmail.com
c90003fc2595223b7d562d9eb560e4ef74515c04
3e4fd5153015d03f147e0f105db08e4cf6589d36
/Cpp/SDK/rm_anim_bp_parameters.h
2dfd567911bfc1fea13242367e1072ff0fc26cef
[]
no_license
zH4x-SDK/zTorchlight3-SDK
a96f50b84e6b59ccc351634c5cea48caa0d74075
24135ee60874de5fd3f412e60ddc9018de32a95c
refs/heads/main
2023-07-20T12:17:14.732705
2021-08-27T13:59:21
2021-08-27T13:59:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,325
h
#pragma once // Name: Torchlight3, Version: 1.0.0 /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Parameters //--------------------------------------------------------------------------- // Function rm_anim_bp.rm_anim_bp_C.AnimGraph struct Urm_anim_bp_C_AnimGraph_Params { struct FPoseLink AnimGraph; // (Parm, OutParm, NoDestructor) }; // Function rm_anim_bp.rm_anim_bp_C.BlueprintUpdateAnimation struct Urm_anim_bp_C_BlueprintUpdateAnimation_Params { float DeltaTimeX; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) }; // Function rm_anim_bp.rm_anim_bp_C.ExecuteUbergraph_rm_anim_bp struct Urm_anim_bp_C_ExecuteUbergraph_rm_anim_bp_Params { int EntryPoint; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "zp2kshield@gmail.com" ]
zp2kshield@gmail.com
c6741192cd576cf9705e0099eb870fd93438ed49
d7d61b4d927084d3545d33ca31768fb4ed0ed8d7
/src/ecs/components/CJumpTimer.hpp
503ce15df048d7dc9b1304f76ab43edb1e76338e
[]
no_license
brucelevis/ecs-sandbox
0b381e35031b53308d78f1ecf918714d4dc5930b
217f152f74d8e3edaa0d0733ebe51c66f4dc87b0
refs/heads/master
2023-06-29T03:00:05.113993
2020-07-10T22:59:05
2020-07-10T22:59:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
116
hpp
#pragma once struct CJumpTimer { int timeUntilJump; CJumpTimer(int time = -1) : timeUntilJump(time) {} };
[ "christian@tuta.io" ]
christian@tuta.io
64faf6465203d9a685fce702f7ad4f9f56afeeb0
e5f844218d5ee969fde0e847c11c0d6e9ac526fe
/TransportCompany.h
3dad0e689e9ea972f0a263023e07dd080479036b
[]
no_license
CatoLos/sppo_lab_1
6327f3b503807bb39306ff705fdd78cb18b62d17
396c2c7fb1b4df60dfaf11a35165dbf5d3c28d27
refs/heads/main
2023-04-04T09:24:38.161950
2021-03-29T09:00:38
2021-03-29T09:00:38
346,427,620
0
0
null
null
null
null
UTF-8
C++
false
false
257
h
#ifndef TRANSPORTCOMPANY_H #define TRANSPORTCOMPANY_H #include "Company.h" class TransportCompany : public Company { public: TransportCompany(); Type getType() override; double getTax() override; }; #endif // TRANSPORTCOMPANY_H
[ "catrin2510@yandex.ru" ]
catrin2510@yandex.ru
5997f25ffe813573326d3a786c787e9650b74234
439d113f6f0f02d4b73b143f8d87ff0ff19d45e4
/src/radius/dictionary.cpp
2d0a171bb1672446da9f52c99e2a18bce8f34895
[]
no_license
huliangX/ISG-Cache-daemon
d9bb9cca3ffc116999861824c2faf3b1616bec7c
74bab62dbcf5033733f0b96506f4228237ffd52a
refs/heads/master
2020-12-25T12:17:26.088192
2010-09-16T07:48:10
2010-09-16T07:48:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,774
cpp
#include <iostream> #include <fstream> #include <libgen.h> #include <cstring> #include <cstdlib> #include "dictionary.h" using namespace std; RadiusDictionary::RadiusDictionary() { } void RadiusDictionary::parse(string file) { unsigned short len = file.length()+1; char *temp = new char[len]; strncpy(temp, file.c_str(), len-1); string dir(dirname(temp)); delete [] temp; ifstream fin; fin.open(file.c_str(), ifstream::in); if(fin.fail()) { cerr << "Error opening file " << file << endl; return; } string tmp; string currentVendor = ""; while(! fin.eof()) { getline(fin, tmp); vector<string> fields = split(tmp); if(! fields.size() ) continue; if(fields.at(0)[0] == '#') continue; if(fields.at(0) == "$INCLUDE") { if(fields.at(1)[0] == '/') { parse(fields.at(1)); } else { parse(dir+"/"+fields.at(1)); } } else if(fields.at(0) == "ATTRIBUTE") { pair<string, attribute> nattr; if( fields.size() < 4 ) continue; nattr.first = fields.at(1); nattr.second.id = atoi(fields.at(2).c_str()); nattr.second.type = fields.at(3); nattr.second.vendor = currentVendor; if(fields.size() >= 5) nattr.second.vendor = fields.at(4); attrs.insert(nattr); } else if(fields.at(0) == "VALUE") { if( fields.size() < 4 ) continue; attrs[fields.at(1)].values[fields.at(2)] = atoi(fields.at(3).c_str()); } else if(fields.at(0) == "VENDOR") { if( fields.size() < 3 ) continue; vendors[fields.at(1)] = atoi(fields.at(2).c_str()); } else if(fields.at(0) == "BEGIN-VENDOR") { if( fields.size() < 2 ) continue; currentVendor = fields.at(1); } else if(fields.at(0) == "END-VENDOR") { if( fields.size() < 2 ) continue; currentVendor = ""; } } fin.close(); } vector<string> RadiusDictionary::split(string instr) { vector<string> ret; size_t end = 0, now; now = instr.find_first_of("#"); if(now != string::npos) instr.erase(now); while( (now = instr.find_first_not_of("\t ", end)) != string::npos) { end = instr.find_first_of("\t ", now); ret.push_back(instr.substr(now, end-now)); if(end == string::npos) break; } return ret; } unsigned short RadiusDictionary::getValue(std::string attr, std::string value) { if(!attrs.count(attr)) { throw AttributeNotFound(); } if(!attrs[attr].values.count(value)) { throw ValueNotFound(); } return attrs[attr].values[value]; } RadiusDictionary::attribute RadiusDictionary::getAttribute(std::string attr, std::string vendor) { if(!attrs.count(attr)) { throw AttributeNotFound(); } return attrs[attr]; } unsigned int RadiusDictionary::getVendorID(std::string vendor) { if(!vendors.count(vendor)) { throw VendorNotFound(); } return vendors[vendor]; } string RadiusDictionary::getValueString(std::string attr, unsigned int id) { if(!attrs.count(attr)) { throw AttributeNotFound(); } std::map<std::string, unsigned int>::iterator i; for(i=attrs[attr].values.begin(); i!=attrs[attr].values.end(); ++i) { if(i->second == id) { return i->first; } } throw ValueNotFound(); } std::string RadiusDictionary::getAttributeString(unsigned int id, std::string vendor) { std::map<std::string, attribute>::iterator i; for(i=attrs.begin(); i!=attrs.end(); ++i) { if(vendor == i->second.vendor && id==i->second.id) { return i->first; } } throw AttributeNotFound(); } std::string RadiusDictionary::getVendorString(unsigned int vendor) { std::map<std::string, unsigned int>::iterator i; for(i=vendors.begin(); i!=vendors.end(); ++i) { if(vendor == i->second) { return i->first; } } throw VendorNotFound(); }
[ "omever@gmail.com" ]
omever@gmail.com
bfe83fbc9824ea432b11fc2c4b5ee67dac83b93d
6755668883b0fcbad6ed7e41609943e6a8fe75f4
/LeetCode/Contests/Biweekly Contest 30/ReformatDate.cpp
812c2f1037468014e6fae10111f7b63c1c21c9bf
[]
no_license
kaneki-ken01/problem-solving
860d3bac883698ee37f2aa0f345bce01507db9da
2403980eee44b602328c76085030c4db8f1c7373
refs/heads/master
2023-08-18T17:34:58.957207
2021-10-03T19:59:45
2021-10-03T19:59:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
844
cpp
class Solution { public: string reformatDate(string date) { string a,b,c; int p = 0; while(date[p] != ' ' && p < date.size()) a += date[p++]; p++; while(date[p] != ' ' && p < date.size()) b += date[p++]; p++; while(date[p] != ' ' && p < date.size()) c += date[p++]; p++; string v[] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"}; map<string, string> m; for(int i=1; i<=12; i++){ m[v[i-1]]= i <= 9 ? "0" + to_string(i) : to_string(i); } string wtf; //cout << a << endl; for(char q : a){ if(q >= '0' && q <= '9') wtf+=q; } if(wtf.size() ==1) wtf = "0" + wtf; //cout << wtf<< endl; return c + "-" + m[b] + "-" + wtf; } };
[ "ubiratanneto37@gmail.com" ]
ubiratanneto37@gmail.com
6ae639c5bb0d50051bddc3114d05121af1fad18c
719331520fa134bfb97ed30dd4a6901a5fd3e2a1
/.gitignore/ofApp.cpp
bdb979e8564ac3b3070e89d4c1ba6e7313429b46
[]
no_license
alyalqarni/ofxGUI_drawings
7f2b685bf05b67bbd7bfd5e0e7e1ccfba55062c0
852a6ec53d43aa8c58763a476cdd0916e3010dff
refs/heads/master
2021-08-24T09:58:37.736519
2017-12-09T04:38:38
2017-12-09T04:38:38
113,641,011
0
0
null
null
null
null
UTF-8
C++
false
false
3,084
cpp
#include "ofApp.h" //-------------------------------------------------------------- void ofApp::setup(){ // make the background black ofBackground(255); // don't automatically black out the window each frame ofSetBackgroundAuto(false); // make 350 FireworkParticles and put them in an array int numParticles = 150; for (int i = 0; i < numParticles; i++) { FireworkParticle firework; fireworks.push_back(firework); } gui.setup(); gui.add(posX.setup("posX", 0, 0,1000)); gui.add(posY.setup("posY", 10, 0,1000)); gui.add(radius.setup("radius", 60, 0,300)); gui.add(red.setup("RED", 255, 10, 10)); gui.add(green.setup("GREEN", 70, 0,255)); gui.add(blue.setup("BLUE", 255, 0,255)); } //-------------------------------------------- void ofApp::fireworksRestart() { for (int i = 0; i < fireworks.size(); i++) { fireworks[i]; } } //-------------------------------------------------------------- void ofApp::update(){ // go through our fireworks vector and update each firework in it for (int i = 0; i < fireworks.size(); i++) { fireworks[i].update(); } // check whether fireworks are still active // when alpha <= 0, firework is dead // can just check one firework since they all are born at the same time and // expire at the same time if (fireworks[0].alpha <= 0) { fireworksRestart(); } } //-------------------------------------------------------------- void ofApp::draw(){ ofSetColor(red, green, blue); ofDrawCircle(posX, posY, radius); // go through our fireworks vector and draw each firework in it for (int i = 0; i < fireworks.size(); i++) { fireworks[i].draw(); } gui.draw(); } //-------------------------------------------------------------- void ofApp::keyPressed(int key){ if ( key == ' '){ fireworksRestart(); } } //-------------------------------------------------------------- void ofApp::keyReleased(int key){ } //-------------------------------------------------------------- void ofApp::mouseMoved(int x, int y ){ } //-------------------------------------------------------------- void ofApp::mouseDragged(int x, int y, int button){ } //-------------------------------------------------------------- void ofApp::mousePressed(int x, int y, int button){ } //-------------------------------------------------------------- void ofApp::mouseReleased(int x, int y, int button){ } //-------------------------------------------------------------- void ofApp::mouseEntered(int x, int y){ } //-------------------------------------------------------------- void ofApp::mouseExited(int x, int y){ } //-------------------------------------------------------------- void ofApp::windowResized(int w, int h){ } //-------------------------------------------------------------- void ofApp::gotMessage(ofMessage msg){ } //-------------------------------------------------------------- void ofApp::dragEvent(ofDragInfo dragInfo){ }
[ "noreply@github.com" ]
noreply@github.com
0b3015c77d32b458d4e8ff2b6e5b8eb6a2dcdee0
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/base/ntdll/sxsquerycpp.cpp
a17bb1e43d17c401e2c88804a89d2fca99f5701e
[]
no_license
jjzhang166/WinNT5_src_20201004
712894fcf94fb82c49e5cd09d719da00740e0436
b2db264153b80fbb91ef5fc9f57b387e223dbfc2
refs/heads/Win2K3
2023-08-12T01:31:59.670176
2021-10-14T15:14:37
2021-10-14T15:14:37
586,134,273
1
0
null
2023-01-07T03:47:45
2023-01-07T03:47:44
null
UTF-8
C++
false
false
265
cpp
/*++ Copyright (c) Corporation Module Name: sxsquerycpp.cpp Abstract: C++ wrapper source file for sxsquery.c Author: Jay Krell Revision History: March 2002 - Jay Krell --*/ #include "pch.cxx" #include "sxsquery.c"
[ "seta7D5@protonmail.com" ]
seta7D5@protonmail.com
65f0dc5d3f80fc06da6be26d96b7067c8af2e792
4aa6d0073d3d7c6ed3298f75f451d2e3a613c26b
/MyFuncs.cpp
0f9c0ac99509b12f42b6d2c6939d474edf7e80c4
[]
no_license
danielsnider/OCR-only-highlighted
a2af6931d431aeae2a9bca3ed9ad82fc79579d8f
0e1ed96eea3b8f7fec1d158fbdda55dfeb98d3fd
refs/heads/master
2020-04-23T00:04:48.846816
2013-02-02T16:32:57
2013-02-02T16:32:57
7,976,980
6
1
null
null
null
null
UTF-8
C++
false
false
3,384
cpp
#include "opencv2/highgui/highgui.hpp" #include "opencv2/core/core.hpp" #include "opencv2/imgproc/imgproc.hpp" #include <iostream> #include <string> #include "MyFuncs.h" using namespace std; using namespace cv; Mat KeepHighlightsOnly(Mat img, int r, int g, int b) // the order of r, g, b is incorrect, reality is that opencv stores channels in bgr format { if (img.channels() != 3) { cout << "\nNope. That image didn't seem to be rgb tri-channel." << "\n"; exit(3); } int channels = img.channels(); int nRows = img.rows; int nCols = img.cols * channels; uchar* p; // will store row of pixels int j; int count = 0; int start, end; int row = 0; // Scan the image downwards looking for the specified rgb while (row < nRows) { p = img.ptr<uchar>(row); count = 0; //count the number of highlighed pixels in a row for (int i = 0; i < nCols-3; i = i + 3) { if (p[i] == b && p[i+1] == g && p[i+2] == r){ // if pixel colour matches count++; } } //if no highlighted pixels are found, set the row white if (count == 0 ){ for (int i = 0; i < nCols; i++) { p[i] = 255; } } // else keep track of the start and continue else { start = row; } //if highlighted pixels are found, continue until a row with none is found while (count > 0) { count = 0; if (row+1 < nRows) { row++; p = img.ptr<uchar>(row); for (int i = 0; i < nCols-3; i = i + 3) { if (p[i] == b && p[i+1] == g && p[i+2] == r){ // if pixel colour matches count++; } } } // now that a highlighted row has been found, set the areas of the row that are not highlighted to white if (count == 0){ row--; end = row; p = img.ptr<uchar>(end); // for each pixel in row for (int i = 0; i < nCols-3; i = i + 3) { // Assuming the bottom row of pixels of the highlight are always the exact same colour... // Scanning from left to right in the bottow consecutive row of a highlighted area, // If a highlight is not present, set that pixel and all the ones above until the top of // the highlighted area white. if (p[i] != b || p[i+1] != g || p[i+2] != r){ for (int j = start; j <= end; ++j) { p = img.ptr<uchar>(j); p[i] = 255; p[i+1] = 255; p[i+2] = 255; } } } } } row++; } //remove all highlighting, leaving only the text that was highlighted for (int row = 0; row < nRows; ++row) { p = img.ptr<uchar>(row); for (int i = 0; i < nCols-3; i = i + 3) { if (p[i] == b && p[i+1] == g && p[i+2] == r){ // if pixel colour matches p[i] = 255; p[i+1] = 255; p[i+2] = 255; } } } // Mat im_gray; cvtColor(img,img,CV_RGB2GRAY); return img; } void OCR(Mat img) { //Tesseract OCR one image at a time and return string result char cmd[] = "tesseract -l eng temp.jpg temp 1>/dev/null"; // Tesseract system command imwrite("temp.jpg", img); if (system(cmd) == 0) { system("cat temp.txt"); } else { cout << "Error: tesseract command failed\n"; } } void cleanUp() { system("rm temp.*"); }
[ "danielsnider12@gmail.com" ]
danielsnider12@gmail.com
dafc6787d9b2fe01093966faeda610c20fd5b0da
e89ceed89cb60c834d1b35f25dcf1ca43221f3c9
/src/qt/bitcoin.cpp
f23e35397f1c0bddfdcb7bc4fae0890e541b2192
[ "MIT" ]
permissive
NEWQTM/Quantum
857d2a2d87be6822cee8b779b4c8b5b1cedb004e
df2b7b4fb7dd9738a1e1c5010562fa043a15fb08
refs/heads/master
2021-01-21T21:15:19.186721
2017-06-19T16:51:14
2017-06-19T16:51:14
94,799,078
0
0
null
null
null
null
UTF-8
C++
false
false
9,069
cpp
/* * W.J. van der Laan 2011-2012 */ #include "bitcoingui.h" #include "clientmodel.h" #include "walletmodel.h" #include "optionsmodel.h" #include "guiutil.h" #include "guiconstants.h" #include "init.h" #include "ui_interface.h" #include "qtipcserver.h" #include <QApplication> #include <QMessageBox> #include <QTextCodec> #include <QLocale> #include <QTranslator> #include <QSplashScreen> #include <QLibraryInfo> #if defined(BITCOIN_NEED_QT_PLUGINS) && !defined(_BITCOIN_QT_PLUGINS_INCLUDED) #define _BITCOIN_QT_PLUGINS_INCLUDED #define __INSURE__ #include <QtPlugin> Q_IMPORT_PLUGIN(qcncodecs) Q_IMPORT_PLUGIN(qjpcodecs) Q_IMPORT_PLUGIN(qtwcodecs) Q_IMPORT_PLUGIN(qkrcodecs) Q_IMPORT_PLUGIN(qtaccessiblewidgets) #endif // Need a global reference for the notifications to find the GUI static BitcoinGUI *guiref; static QSplashScreen *splashref; static void ThreadSafeMessageBox(const std::string& message, const std::string& caption, int style) { // Message from network thread if(guiref) { bool modal = (style & CClientUIInterface::MODAL); // in case of modal message, use blocking connection to wait for user to click OK QMetaObject::invokeMethod(guiref, "error", modal ? GUIUtil::blockingGUIThreadConnection() : Qt::QueuedConnection, Q_ARG(QString, QString::fromStdString(caption)), Q_ARG(QString, QString::fromStdString(message)), Q_ARG(bool, modal)); } else { printf("%s: %s\n", caption.c_str(), message.c_str()); fprintf(stderr, "%s: %s\n", caption.c_str(), message.c_str()); } } static bool ThreadSafeAskFee(int64_t nFeeRequired, const std::string& strCaption) { if(!guiref) return false; if(nFeeRequired < MIN_TX_FEE || nFeeRequired <= nTransactionFee || fDaemon) return true; bool payFee = false; QMetaObject::invokeMethod(guiref, "askFee", GUIUtil::blockingGUIThreadConnection(), Q_ARG(qint64, nFeeRequired), Q_ARG(bool*, &payFee)); return payFee; } static void ThreadSafeHandleURI(const std::string& strURI) { if(!guiref) return; QMetaObject::invokeMethod(guiref, "handleURI", GUIUtil::blockingGUIThreadConnection(), Q_ARG(QString, QString::fromStdString(strURI))); } static void InitMessage(const std::string &message) { if(splashref) { splashref->showMessage(QString::fromStdString(message), Qt::AlignBottom|Qt::AlignHCenter, QColor(232,186,63)); QApplication::instance()->processEvents(); } } static void QueueShutdown() { QMetaObject::invokeMethod(QCoreApplication::instance(), "quit", Qt::QueuedConnection); } /* Translate string to current locale using Qt. */ static std::string Translate(const char* psz) { return QCoreApplication::translate("bitcoin-core", psz).toStdString(); } /* Handle runaway exceptions. Shows a message box with the problem and quits the program. */ static void handleRunawayException(std::exception *e) { PrintExceptionContinue(e, "Runaway exception"); QMessageBox::critical(0, "Runaway exception", BitcoinGUI::tr("A fatal error occurred. Quantum can no longer continue safely and will quit.") + QString("\n\n") + QString::fromStdString(strMiscWarning)); exit(1); } #ifndef BITCOIN_QT_TEST int main(int argc, char *argv[]) { // Do this early as we don't want to bother initializing if we are just calling IPC ipcScanRelay(argc, argv); #if QT_VERSION < 0x050000 // Internal string conversion is all UTF-8 QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF-8")); QTextCodec::setCodecForCStrings(QTextCodec::codecForTr()); #endif Q_INIT_RESOURCE(bitcoin); QApplication app(argc, argv); // Install global event filter that makes sure that long tooltips can be word-wrapped app.installEventFilter(new GUIUtil::ToolTipToRichTextFilter(TOOLTIP_WRAP_THRESHOLD, &app)); // Command-line options take precedence: ParseParameters(argc, argv); // ... then bitcoin.conf: if (!boost::filesystem::is_directory(GetDataDir(false))) { // This message can not be translated, as translation is not initialized yet // (which not yet possible because lang=XX can be overridden in bitcoin.conf in the data directory) QMessageBox::critical(0, "Quantum", QString("Error: Specified data directory \"%1\" does not exist.").arg(QString::fromStdString(mapArgs["-datadir"]))); return 1; } ReadConfigFile(mapArgs, mapMultiArgs); // Application identification (must be set before OptionsModel is initialized, // as it is used to locate QSettings) app.setOrganizationName("Quantum"); //XXX app.setOrganizationDomain(""); if(GetBoolArg("-testnet")) // Separate UI settings for testnet app.setApplicationName("Quantum-Qt-testnet"); else app.setApplicationName("Quantum-Qt"); // ... then GUI settings: OptionsModel optionsModel; // Get desired locale (e.g. "de_DE") from command line or use system locale QString lang_territory = QString::fromStdString(GetArg("-lang", QLocale::system().name().toStdString())); QString lang = lang_territory; // Convert to "de" only by truncating "_DE" lang.truncate(lang_territory.lastIndexOf('_')); QTranslator qtTranslatorBase, qtTranslator, translatorBase, translator; // Load language files for configured locale: // - First load the translator for the base language, without territory // - Then load the more specific locale translator // Load e.g. qt_de.qm if (qtTranslatorBase.load("qt_" + lang, QLibraryInfo::location(QLibraryInfo::TranslationsPath))) app.installTranslator(&qtTranslatorBase); // Load e.g. qt_de_DE.qm if (qtTranslator.load("qt_" + lang_territory, QLibraryInfo::location(QLibraryInfo::TranslationsPath))) app.installTranslator(&qtTranslator); // Load e.g. bitcoin_de.qm (shortcut "de" needs to be defined in bitcoin.qrc) if (translatorBase.load(lang, ":/translations/")) app.installTranslator(&translatorBase); // Load e.g. bitcoin_de_DE.qm (shortcut "de_DE" needs to be defined in bitcoin.qrc) if (translator.load(lang_territory, ":/translations/")) app.installTranslator(&translator); // Subscribe to global signals from core uiInterface.ThreadSafeMessageBox.connect(ThreadSafeMessageBox); uiInterface.ThreadSafeAskFee.connect(ThreadSafeAskFee); uiInterface.ThreadSafeHandleURI.connect(ThreadSafeHandleURI); uiInterface.InitMessage.connect(InitMessage); uiInterface.QueueShutdown.connect(QueueShutdown); uiInterface.Translate.connect(Translate); // Show help message immediately after parsing command-line options (for "-lang") and setting locale, // but before showing splash screen. if (mapArgs.count("-?") || mapArgs.count("--help")) { GUIUtil::HelpMessageBox help; help.showOrPrint(); return 1; } QSplashScreen splash(QPixmap(":/images/splash"), 0); if (GetBoolArg("-splash", true) && !GetBoolArg("-min")) { splash.show(); splashref = &splash; } app.processEvents(); app.setQuitOnLastWindowClosed(false); try { // Regenerate startup link, to fix links to old versions if (GUIUtil::GetStartOnSystemStartup()) GUIUtil::SetStartOnSystemStartup(true); BitcoinGUI window; guiref = &window; if(AppInit2()) { { // Put this in a block, so that the Model objects are cleaned up before // calling Shutdown(). if (splashref) splash.finish(&window); ClientModel clientModel(&optionsModel); WalletModel walletModel(pwalletMain, &optionsModel); window.setClientModel(&clientModel); window.setWalletModel(&walletModel); // If -min option passed, start window minimized. if(GetBoolArg("-min")) { window.showMinimized(); } else { window.show(); } // Place this here as guiref has to be defined if we don't want to lose URIs ipcInit(argc, argv); app.exec(); window.hide(); window.setClientModel(0); window.setWalletModel(0); guiref = 0; } // Shutdown the core and its threads, but don't exit Bitcoin-Qt here Shutdown(NULL); } else { return 1; } } catch (std::exception& e) { handleRunawayException(&e); } catch (...) { handleRunawayException(NULL); } return 0; } #endif // BITCOIN_QT_TEST
[ "jtx2010@hotmail.com" ]
jtx2010@hotmail.com
99bd9bf177b537119ad528e1c286c42900c7aa08
4450cd8b5a0753079f4dab0e5982188f279dd303
/Scanner/Scanner.ino
77c15a6cea212e0e373f805d0c7425aa2a63fbff
[]
no_license
XelaLord/TWFingerprintLogin
5182cd38ed18bce84304d334d046b3dd7bfd97c4
761fefa96d388b12c600e6670e46b2c113702a87
refs/heads/master
2020-03-28T04:57:21.367792
2019-04-19T00:33:20
2019-04-19T00:33:20
147,747,344
0
0
null
null
null
null
UTF-8
C++
false
false
6,472
ino
#include <Adafruit_Fingerprint.h> #include <SoftwareSerial.h> SoftwareSerial mySerial(2, 3); Adafruit_Fingerprint finger = Adafruit_Fingerprint(&mySerial); int Green = 8; int White = 9; int Red = 10; int Button = 12; int Mode = -1; void setup() { pinMode(Green, OUTPUT); pinMode(Red, OUTPUT); pinMode(White, OUTPUT); pinMode(Button, INPUT); Serial.begin(9600); finger.begin(57600); if (finger.verifyPassword()) { Serial.print("1;"); char charBuff[10]; while (!Serial.available()); Serial.readStringUntil(";").substring(0,1).toCharArray(charBuff, 10); switch (charBuff[0]) { case 'E': digitalWrite(Green, HIGH); delay(250); digitalWrite(Green, LOW); ENROLL(); break; case 'S': digitalWrite(Green, HIGH); delay(250); digitalWrite(Green, LOW); SIGNIN(); break; case 'R': digitalWrite(Green, HIGH); delay(250); digitalWrite(Green, LOW); RESET(); break; default: break; } } else { //Password verify failed Serial.print("0;"); digitalWrite(Red, HIGH); delay(250); digitalWrite(Red, LOW); } } //MAIN LOOPS void ENROLL() { while (1){ while (Serial.available()) Serial.read(); while (! Serial.available()); int id = readnumber(); if (getFingerprintEnroll(id) != 1) { //Scanner exited with an error, immediate fail finger.deleteModel(id); digitalWrite(Red, HIGH); delay(100); digitalWrite(Red, LOW); delay(150); digitalWrite(Red, HIGH); delay(100); digitalWrite(Red, LOW); } else { //Scanner exited without error, conditionall success while (! Serial.available()); if (Serial.readStringUntil(";") == "1;") { digitalWrite(Green, HIGH); delay(100); digitalWrite(Green, LOW); delay(150); digitalWrite(Green, HIGH); delay(100); digitalWrite(Green, LOW); } else { finger.deleteModel(id); digitalWrite(Red, HIGH); delay(100); digitalWrite(Red, LOW); delay(150); digitalWrite(Red, HIGH); delay(100); digitalWrite(Red, LOW); } } } } void SIGNIN() { int fingerReturn = 0; while (1) { if (digitalRead(Button) == 0) { do { fingerReturn = getFingerprintIDez(); digitalWrite(White, LOW); digitalWrite(Red, LOW); if (fingerReturn >= 0) { digitalWrite(White, HIGH); } else if (fingerReturn == -1) { digitalWrite(Red, HIGH); } delay(5); } while (fingerReturn < 0); while (! Serial.available()); if (Serial.readStringUntil(";") == "1;") { digitalWrite(White, LOW); digitalWrite(Green, HIGH); delay(200); digitalWrite(Green, LOW); } else { digitalWrite(White, LOW); digitalWrite(Red, HIGH); delay(200); digitalWrite(Red, LOW); } } } } void RESET() { while (1) { if (digitalRead(Button) == 0) { while (Serial.available()) { Serial.read(); } Serial.print(1); while (! Serial.available()); if (Serial.parseInt() == 1) { finger.emptyDatabase(); Serial.print(1); for (int i=0;i<5;i++) { int d = 50; digitalWrite(Green, HIGH); digitalWrite(White, HIGH); digitalWrite(Red, HIGH); delay(d); digitalWrite(Green, LOW); digitalWrite(White, LOW); digitalWrite(Red, LOW); delay(d); } } } } } //FUNCTIONS int getFingerprintEnroll(int id) { int p = -1; while (p != FINGERPRINT_OK) { p = finger.getImage(); if (p != FINGERPRINT_NOFINGER) { Serial.print(p); Serial.print(";"); if (p != FINGERPRINT_OK) { return 0; } } } p = finger.image2Tz(1); Serial.print(p); Serial.print(";"); if (p != 0) { return 0; } p = confirmUnique(); Serial.print(p); Serial.print(";"); if (p != 0) { return 0; } //Fingerprint #1 is good! delay(1000); p = 0; while (p != FINGERPRINT_NOFINGER) { p = finger.getImage(); } Serial.print("0;"); p = -1; while (p != FINGERPRINT_OK) { p = finger.getImage(); if (p != FINGERPRINT_NOFINGER) { Serial.print(p); Serial.print(";"); if (p != FINGERPRINT_OK) { return 0; } } } p = finger.image2Tz(2); Serial.print(p); Serial.print(";"); if (p != 0) { return 0; } p = confirmUnique(); Serial.print(p); Serial.print(";"); if (p != 0) { return 0; } p=finger.createModel(); Serial.print(p); Serial.print(";"); if (p != 0) { return 0; } p=finger.storeModel(id); Serial.print(p); Serial.print(";"); if (p != 0) { return 0; } //Fingerprint #2 is good delay(1000); p = 0; while (p != FINGERPRINT_NOFINGER) { p = finger.getImage(); } Serial.print("0;"); p = -1; while (p != FINGERPRINT_OK) { p = finger.getImage(); if (p != FINGERPRINT_NOFINGER) { Serial.print(p); Serial.print(";"); if (p != FINGERPRINT_OK) { return 0; } } } p = finger.image2Tz(1); Serial.print(p); Serial.print(";"); if (p != 0) { return 0; } p = finger.fingerFastSearch(); if (finger.fingerID == id) { //All is good Serial.print("0;"); } else if (p == 0) { //Already enrolled somewhere else Serial.print("8;"); return 0; } else { //No matching print found, prints don't match Serial.print("10;"); return 0; } //Fingerprint #3 is good //If it gets here all has gone smoothly return 1; } int readnumber(void) { int num = -1; while (num == -1) { while (! Serial.available()); num = Serial.parseInt(); } return num; } int confirmUnique() { int q = finger.fingerFastSearch(); if (q == FINGERPRINT_OK) { return 8; //Not unique, fail } else { return 0; //Unique, pass } } int getFingerprintIDez() { uint8_t p = finger.getImage(); if (p != FINGERPRINT_OK) return -2; p = finger.image2Tz(); if (p != FINGERPRINT_OK) return -2; p = finger.fingerFastSearch(); if (p != FINGERPRINT_OK) { return -1; } // found a match! Serial.print(finger.fingerID);Serial.print(";"); return finger.fingerID; } void loop() //Is only called if initialisation messes up { digitalWrite(Red, HIGH); delay(100); digitalWrite(Red, LOW);delay(150); digitalWrite(Red, HIGH); delay(100); digitalWrite(Red, LOW);delay(150); digitalWrite(Red, HIGH); delay(100); digitalWrite(Red, LOW); delay(1000); }
[ "alex.m.boyer@gmail.com" ]
alex.m.boyer@gmail.com
aa43525524f0d237d0ce0bd032302a0684984e63
6135c88826f13c6e907562dba9d67a1029cc5b97
/hw7/hw7/hw7/solar.cc
ec1230b43f6d187edeb93aa53449ccd75ce28f6d
[]
no_license
zhao20/Opengl
3a5716bebff180e11dcc217a7b99e7b45deceb3a
50f0e23707c92f9cf5cdbb3b853f330853bef148
refs/heads/master
2021-01-20T14:54:25.113865
2017-05-09T01:33:24
2017-05-09T01:33:24
90,687,599
0
0
null
null
null
null
UTF-8
C++
false
false
4,477
cc
/************************************************************************* FILE: solar.cc A program displaying the solar system composed of the sun and the earth. Author: Dana Vrajitoru, IUSB Class: C481 B581 Computer Graphics **************************************************************************/ #include <cstdlib> //#include <GL/glut.h> #include "glheader.h" #include "trackball.h" #include "Sun.h" #include <iostream> using namespace std; //GLUquadricObj *obj; //static GLfloat theta[] = {0.0,0.0,0.0}; //static GLint axis = 2; static GLfloat trans[] = {0.0,0.0,0.45}; int winWidth=800, winHeight=1200; int timerSpeed = 40; Sun *solar = NULL; GLfloat light_position[] = {0.0, 0.0, 0.0, 1.0}; void display() { // Apply the trackball transformation. glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glLoadIdentity(); gluLookAt(0, 0, 3.5, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0); glPopMatrix(); applyRotation(); glPushMatrix(); // The translation of the whole scene. glTranslatef(trans[0], trans[1], 0); glScalef(trans[2], trans[2], trans[2]); // so that the light follows the sun glLightfv(GL_LIGHT0, GL_POSITION, light_position); // Move the solar system then redisplay. solar->move(); solar->display(); glutSwapBuffers(); } static void timerCallback (int value) { display(); // glutPostRedisplay(); seems to work without it. if (value) glutTimerFunc(timerSpeed, timerCallback, value); } void myReshape(int w, int h) { glViewport(0, 0, w, h); glMatrixMode(GL_PROJECTION); glLoadIdentity(); gluPerspective(90.0, w/h, 0.5, 40.0); /* if (w<=h) glFrustum(-10.0, 10.0, -10.0 * (GLfloat) h/ (GLfloat) w, 10.0* (GLfloat) h / (GLfloat) w, -10.0, 20.0); else glFrustum(-10.0, 10.0, -10.0 * (GLfloat) w/ (GLfloat) h, 10.0* (GLfloat) w / (GLfloat) h, -10.0, 20.0); */ glMatrixMode(GL_MODELVIEW); winWidth = w; winHeight = h; } void key(int key, int x, int y) { switch (key) { case GLUT_KEY_LEFT: trans[0] -= 0.1; break; case GLUT_KEY_RIGHT: trans[0] += 0.1; break; case GLUT_KEY_UP: trans[1] += 0.1; break; case GLUT_KEY_DOWN: trans[1] -= 0.1; break; case GLUT_KEY_PAGE_UP: trans[2] += 0.1; break; case GLUT_KEY_PAGE_DOWN: trans[2] -= 0.1; } display(); } void lightInit() { GLfloat mat_specular[]={1.0, 1.0, 1.0, 1.0}; GLfloat mat_diffuse[]={0.0, 0.0, 1.0, 1.0}; GLfloat mat_ambient[]={0.0, 0.5, 1.0, 1.0}; GLfloat mat_shininess={100.0}; GLfloat light_ambient[]={0.5, 0.5, 0.5, 1.0}; GLfloat light_diffuse[]={1.0, 1.0, 1.0, 1.0}; GLfloat light_specular[]={1.0, 1.0, 1.0, 1.0}; /* set up ambient, diffuse, and specular components for light 0 */ glLightfv(GL_LIGHT0, GL_AMBIENT, light_ambient); glLightfv(GL_LIGHT0, GL_DIFFUSE, light_diffuse); glLightfv(GL_LIGHT0, GL_SPECULAR, light_specular); glLightfv(GL_LIGHT0, GL_POSITION, light_position); /* define material proerties for front face of all polygons */ //glMaterialfv(GL_FRONT, GL_SPECULAR, mat_specular); //glMaterialfv(GL_FRONT, GL_AMBIENT, mat_ambient); //glMaterialfv(GL_FRONT, GL_DIFFUSE, mat_diffuse); //glMaterialf(GL_FRONT, GL_SHININESS, mat_shininess); glShadeModel(GL_SMOOTH); /*enable smooth shading */ glEnable(GL_LIGHTING); /* enable lighting */ glEnable(GL_LIGHT0); /* enable light 0 */ glEnable(GL_DEPTH_TEST); /* enable z buffer */ glEnable(GL_COLOR_MATERIAL); glColorMaterial(GL_FRONT,GL_AMBIENT_AND_DIFFUSE); glClearColor (0.1, 0.1, 0.1, 1.0); glColor3f (1, 0.0, 0.0); } int main(int argc, char **argv) { glutInit(&argc, argv); glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH); glutInitWindowSize(600, 600); glutCreateWindow("The solar system"); solar = new Sun(); /* need both double buffering and z buffer */ glutReshapeFunc(myReshape); glutDisplayFunc(display); //glutIdleFunc(display); glutMouseFunc(mouseButton); glutMotionFunc(mouseMotion); // glutKeyboardFunc(key); glutSpecialFunc(key); glEnable(GL_DEPTH_TEST); // z buffer lightInit(); glClearColor (0.1, 0.1, 0.1, 1.0); glColor3f (1, 0.0, 0.0); glutTimerFunc(timerSpeed, timerCallback, 1); glutMainLoop(); }
[ "xingguo.zhao@gmail.com" ]
xingguo.zhao@gmail.com
b72db579ea7caea8b454fe54685d7ba398512629
27b7d2ecfeefcf7731ae34c122cf3d7551cddfe2
/hackerrank/data_structures/stacks/poisonous-plants.cc
5e183a3bea7a6977d05c0fedb460c5fb9332db41
[]
no_license
mberlanda/oa-golf-code
822ab897f52ef4f0f774288d01325d0bfa997cb3
7f8868ab2293c25dd79028971dbe5cb26ca924eb
refs/heads/master
2020-08-26T19:53:47.820170
2019-12-05T10:04:10
2019-12-05T10:04:10
217,128,268
1
0
null
2019-11-24T10:58:18
2019-10-23T18:37:49
C
UTF-8
C++
false
false
1,920
cc
#include <bits/stdc++.h> using namespace std; vector<string> split_string(string); // Complete the poisonousPlants function below. // https://www.hackerrank.com/challenges/poisonous-plants/problem // https://www.hackerrank.com/challenges/poisonous-plants/forum/comments/132237 int poisonousPlants(vector<int> p) { int mi, ma, i; int n = p.size(); int* days = new int[n]; stack <int> s; s.push(0); mi = p[0]; ma = 0; for (i=1; i<n; i++) { days[i] = (p[i] > p[i - 1]) ? 1 : 0; mi = std::min(mi, p[i]); while(!s.empty() && p[s.top()] >= p[i]){ if (p[i] > mi) { days[i] = std::max(days[i], days[s.top()] + 1); } s.pop(); } ma = std::max(ma, days[i]); s.push(i); } return ma; } int main() { ofstream fout(getenv("OUTPUT_PATH")); int n; cin >> n; cin.ignore(numeric_limits<streamsize>::max(), '\n'); string p_temp_temp; getline(cin, p_temp_temp); vector<string> p_temp = split_string(p_temp_temp); vector<int> p(n); for (int i = 0; i < n; i++) { int p_item = stoi(p_temp[i]); p[i] = p_item; } int result = poisonousPlants(p); fout << result << "\n"; fout.close(); return 0; } vector<string> split_string(string input_string) { string::iterator new_end = unique(input_string.begin(), input_string.end(), [](const char &x, const char &y) { return x == y and x == ' '; }); input_string.erase(new_end, input_string.end()); while (input_string[input_string.length() - 1] == ' ') { input_string.pop_back(); } vector<string> splits; char delimiter = ' '; size_t i = 0; size_t pos = input_string.find(delimiter); while (pos != string::npos) { splits.push_back(input_string.substr(i, pos - i)); i = pos + 1; pos = input_string.find(delimiter, i); } splits.push_back(input_string.substr(i, min(pos, input_string.length()) - i + 1)); return splits; }
[ "mauro.berlanda@gmail.com" ]
mauro.berlanda@gmail.com
75462918372186cc18d9c725e51159fcb0b3e365
6b738bd0081ad09b12965ea77be58253e783b442
/bro/src/Manager.cc
8a17324352c379af1c0b6b16d791c7c8f1e35321
[ "BSD-2-Clause" ]
permissive
FrozenCaribou/hilti
1f9b4d94aea500dfa50b3f54a9a079cf9e067506
10d3653b13268d7c2d1a19e0f675f43c9598a7b5
refs/heads/master
2021-01-18T02:59:12.841005
2016-05-31T14:02:15
2016-05-31T14:02:15
40,124,420
1
0
null
2015-08-03T12:49:21
2015-08-03T12:49:20
null
UTF-8
C++
false
false
83,773
cc
// TODO: This is getting very messy. The Manager needs a refactoring // to split out the BinPAC++ part and get rid of the PIMPLing. #include <memory> #include <glob.h> extern "C" { #include <libbinpac/libbinpac++.h> } #undef DBG_LOG // Bro includes. #include <Desc.h> #include <Func.h> #include <ID.h> #include <NetVar.h> #include <RE.h> #include <Scope.h> #include <config.h> #include <net_util.h> #include <analyzer/Analyzer.h> #include <analyzer/Manager.h> #undef List // HILTI/BinPAC includes. #include <ast/declaration.h> #include <hilti/hilti.h> #include <hilti/jit/libhilti-jit.h> #include <binpac/binpac++.h> #include <binpac/type.h> #include <binpac/declaration.h> #include <binpac/expression.h> #include <binpac/statement.h> #include <binpac/function.h> #include <binpac/scope.h> // LLVM includes. #include <llvm/ExecutionEngine/ExecutionEngine.h> // Plugin includes. #include "Plugin.h" #include "Manager.h" #include "Pac2AST.h" #include "Pac2Analyzer.h" #include "Pac2FileAnalyzer.h" #include "Converter.h" #include "LocalReporter.h" #include "compiler/Compiler.h" #include "compiler/ModuleBuilder.h" #include "compiler/ConversionBuilder.h" #include "consts.bif.h" #include "events.bif.h" #include "functions.bif.h" using namespace bro::hilti; using namespace binpac; using std::shared_ptr; using std::string; static string transportToString(TransportProto p) { switch ( p ) { case TRANSPORT_TCP: return "tcp"; case TRANSPORT_UDP: return "udp"; case TRANSPORT_ICMP: return "icmp"; case TRANSPORT_UNKNOWN: return "<unknown>"; default: return "<not supported>"; } } struct Port { uint32 port; TransportProto proto; Port(uint32 port = 0, TransportProto proto = TRANSPORT_UNKNOWN) : port(port), proto(proto) {} operator string() const { return ::util::fmt("%u/%s", port, transportToString(proto)); } }; // Description of a BinPAC++ protocol analyzer. struct bro::hilti::Pac2AnalyzerInfo { string location; // Location where the analyzer was defined. string name; // Name of the analyzer. analyzer::Tag tag; // analyzer::Tag for this analyzer. TransportProto proto; // The transport layer the analyzer uses. std::list<Port> ports; // The ports associated with the analyzer. string replaces; // Name of another analyzer this one replaces. analyzer::Tag replaces_tag; // Name of the analyzer replaced translated into a tag. string unit_name_orig; // The fully-qualified name of the unit type to parse the originator side. string unit_name_resp; // The fully-qualified name of the unit type to parse the originator side. shared_ptr<Pac2AST::UnitInfo> unit_orig; // The type of the unit to parse the originator side. shared_ptr<Pac2AST::UnitInfo> unit_resp; // The type of the unit to parse the originator side. binpac_parser* parser_orig; // The parser for the originator side (coming out of JIT). binpac_parser* parser_resp; // The parser for the responder side (coming out of JIT). }; // Description of a BinPAC++ file analyzer. struct bro::hilti::Pac2FileAnalyzerInfo { string location; // Location where the analyzer was defined. string name; // Name of the analyzer. file_analysis::Tag tag; // file_analysis::Tag for this analyzer. std::list<string> mime_types; // The mime_types associated with the analyzer. string unit_name; // The fully-qualified name of the unit type to parse with. shared_ptr<Pac2AST::UnitInfo> unit; // The type of the unit to parse the originator side. binpac_parser* parser; // The parser coming out of JIT. }; // XXX struct bro::hilti::Pac2ExpressionAccessor { int nr; // Position of this expression in argument list. string expr; // The string representation of the expression. bool dollar_id; // True if this is a "magic" $-ID. shared_ptr<::binpac::Type> btype = nullptr; // The BinPAC++ type of the expression. shared_ptr<::hilti::Type> htype = nullptr; // The corresponding HILTI type of the expression. std::shared_ptr<::binpac::declaration::Function> pac2_func = nullptr; // Implementation of function that evaluates the expression. std::shared_ptr<::hilti::declaration::Function> hlt_func = nullptr; // Declaration of a function that evaluates the expression. }; // Description of a BinPAC++ module. struct bro::hilti::Pac2ModuleInfo { string path; // The path the module was read from. shared_ptr<::binpac::CompilerContext> context; // The context used for the module. shared_ptr<::binpac::Module> module; // The module itself. shared_ptr<ValueConverter> value_converter; std::list<shared_ptr<::hilti::ID>> dep_types; // Types we need to import into the HILTI module. // The BroFunc_*.hlt module. shared_ptr<::hilti::CompilerContext> hilti_context; shared_ptr<compiler::ModuleBuilder> hilti_mbuilder; // The BroHooks_*.pac2 module. shared_ptr<::binpac::Module> pac2_module; shared_ptr<::hilti::Module> pac2_hilti_module; // Cache information. bool cached = false; std::set<string> dependencies; std::list<llvm::Module*> llvm_modules; util::cache::FileCache::Key key; }; // Description of an event defined by an *.evt file struct bro::hilti::Pac2EventInfo { typedef std::list<shared_ptr<Pac2ExpressionAccessor>> accessor_list; // Information parsed directly from the *.evt file. string file; // The path of the *.evt file we parsed this from. string name; // The name of the event. string path; // The hook path as specified in the evt file. string condition; // Condition that must be true for the event to trigger. std::list<string> exprs; // The argument expressions. string hook; // The name of the hook triggering the event. int priority; // Event/hook priority. string location; // Location string where event is defined. // Computed information. string unit; // The fully qualified name of the unit type. string hook_local; // The local part of the triggering hook (i.e., w/o the unit name). shared_ptr<::binpac::type::Unit> unit_type; // The BinPAC++ type of referenced unit. shared_ptr<::binpac::Module> unit_module; // The module the referenced unit is defined in. shared_ptr<::binpac::declaration::Hook> pac2_hook; // The generated BinPAC hook. shared_ptr<::hilti::declaration::Function> hilti_raise; // The generated HILTI raise() function. shared_ptr<Pac2ModuleInfo> minfo; // The module the event was defined in. BroType* bro_event_type; // The type of the Bro event. EventHandlerPtr bro_event_handler; // The type of the corresponding Bro event. Set only if we have a handler. accessor_list expr_accessors; // One HILTI function per expression to access the value. }; // Implementation of the Manager class attributes. struct Manager::PIMPL { typedef std::list<shared_ptr<Pac2ModuleInfo>> pac2_module_list; typedef std::list<shared_ptr<Pac2EventInfo>> pac2_event_list; typedef std::list<shared_ptr<Pac2AnalyzerInfo>> pac2_analyzer_list; typedef std::list<shared_ptr<Pac2FileAnalyzerInfo>> pac2_file_analyzer_list; typedef std::vector<shared_ptr<Pac2AnalyzerInfo>> pac2_analyzer_vector; typedef std::vector<shared_ptr<Pac2FileAnalyzerInfo>> pac2_file_analyzer_vector; typedef std::list<shared_ptr<::hilti::Module>> hilti_module_list; typedef std::list<llvm::Module*> llvm_module_list; typedef std::set<std::string> path_set; std::shared_ptr<::hilti::Options> hilti_options = nullptr; std::shared_ptr<::binpac::Options> pac2_options = nullptr; bool compile_all; // Compile all event code, even if no handler, set from BifConst::Hilti::compile_all. bool compile_scripts; // Activate the Bro script compiler. bool dump_debug; // Output debug summary, set from BifConst::Hilti::dump_debug. bool dump_code; // Output generated code, set from BifConst::Hilti::dump_code. bool dump_code_all; // Output all code, set from BifConst::Hilti::dump_code_all. bool dump_code_pre_finalize; // Output generated code before finalizing the module, set from BifConst::Hilti::dump_code_pre_finalize. bool save_pac2; // Saves all generated BinPAC++ modules into a file, set from BifConst::Hilti::save_pac2. bool save_hilti; // Saves all HILTI modules into a file, set from BifConst::Hilti::save_hilti. bool save_llvm; // Saves the final linked LLVM code into a file, set from BifConst::Hilti::save_llvm. bool pac2_to_compiler; // If compiling scripts, raise event hooks from BinPAC++ code directly. unsigned int profile; // True to enable run-time profiling. unsigned int hilti_workers; // Number of HILTI worker threads to spawn. std::list<string> import_paths; Pac2AST* pac2_ast; string libbro_path; compiler::Compiler *compiler; pac2_module_list pac2_modules; // All loaded modules. Indexed by their paths. pac2_event_list pac2_events; // All events found in the *.evt files. pac2_analyzer_list pac2_analyzers; // All analyzers found in the *.evt files. pac2_analyzer_vector pac2_analyzers_by_subtype; // All analyzers indexed by their analyzer::Tag subtype. pac2_file_analyzer_list pac2_file_analyzers; // All file analyzers found in the *.evt files. pac2_file_analyzer_vector pac2_file_analyzers_by_subtype; // All file analyzers indexed by their file_analysis::Tag subtype. path_set evt_files; // All loaded *.evt files. path_set pac2_files; // All loaded *.pac2 files. path_set hlt_files; // All loaded *.hlt files specified by the user. shared_ptr<::hilti::CompilerContext> hilti_context = nullptr; shared_ptr<::binpac::CompilerContext> pac2_context = nullptr; // All compiled LLVM modules. These will eventually be linked into // the final code. llvm_module_list llvm_modules; // All HILTI modules (loaded and compiled, including // intermediaries.). This is for debugging/printing only, they won't // be used further. hilti_module_list hilti_modules; shared_ptr<TypeConverter> type_converter; // The final linked and JITed module. llvm::Module* llvm_linked_module; // The execution engine used for JITing llvm_linked_module. llvm::ExecutionEngine* llvm_execution_engine; // Pointers to compiled script functions indxed by their unique ID. std::vector<void *> native_functions; }; Manager::Manager() { pimpl = new PIMPL; pre_scripts_init_run = false; post_scripts_init_run = false; pimpl->pac2_ast = new Pac2AST; char* dir = getenv("BRO_PAC2_PATH"); if ( dir ) AddLibraryPath(dir); } Manager::~Manager() { delete pimpl->pac2_ast; delete pimpl; } void Manager::AddLibraryPath(const char* dirs) { assert(! pre_scripts_init_run); assert(! post_scripts_init_run); for ( auto dir : ::util::strsplit(dirs, ":") ) { pimpl->import_paths.push_back(dir); add_to_bro_path(dir); } } void Manager::InitMembers() { } bool Manager::InitPreScripts() { PLUGIN_DBG_LOG(HiltiPlugin, "Beginning pre-script initialization"); assert(! pre_scripts_init_run); assert(! post_scripts_init_run); ::hilti::init(); ::binpac::init_pac2(); add_input_file("init-bare-hilti.bro"); pre_scripts_init_run = true; pimpl->hilti_options = std::make_shared<::hilti::Options>(); pimpl->pac2_options = std::make_shared<::binpac::Options>(); for ( auto dir : pimpl->import_paths ) { pimpl->hilti_options->libdirs_hlt.push_back(dir); pimpl->pac2_options->libdirs_hlt.push_back(dir); pimpl->pac2_options->libdirs_pac2.push_back(dir); } pimpl->pac2_context = std::make_shared<::binpac::CompilerContext>(pimpl->pac2_options); pimpl->hilti_context = pimpl->pac2_context->hiltiContext(); pimpl->compiler = new compiler::Compiler(pimpl->hilti_context); pimpl->type_converter = std::make_shared<TypeConverter>(pimpl->compiler); pimpl->libbro_path = pimpl->hilti_context->searchModule(::hilti::builder::id::node("LibBro")); PLUGIN_DBG_LOG(HiltiPlugin, "Done with pre-script initialization"); return true; } bool Manager::InitPostScripts() { PLUGIN_DBG_LOG(HiltiPlugin, "Beginning post-script initialization"); assert(pre_scripts_init_run); assert(! post_scripts_init_run); std::set<string> cg_debug; for ( auto t : ::util::strsplit(BifConst::Hilti::cg_debug->CheckString(), ":") ) cg_debug.insert(t); pimpl->compile_all = BifConst::Hilti::compile_all; pimpl->compile_scripts = BifConst::Hilti::compile_scripts; pimpl->profile = BifConst::Hilti::profile; pimpl->dump_debug = BifConst::Hilti::dump_debug; pimpl->dump_code = BifConst::Hilti::dump_code; pimpl->dump_code_pre_finalize = BifConst::Hilti::dump_code_pre_finalize; pimpl->dump_code_all = BifConst::Hilti::dump_code_all; pimpl->save_pac2 = BifConst::Hilti::save_pac2; pimpl->save_hilti = BifConst::Hilti::save_hilti; pimpl->save_llvm = BifConst::Hilti::save_llvm; pimpl->pac2_to_compiler = BifConst::Hilti::pac2_to_compiler; pimpl->hilti_workers = BifConst::Hilti::hilti_workers; pimpl->hilti_options->jit = true; pimpl->hilti_options->debug = BifConst::Hilti::debug; pimpl->hilti_options->optimize = BifConst::Hilti::optimize; pimpl->hilti_options->profile = BifConst::Hilti::profile; pimpl->hilti_options->verify = ! BifConst::Hilti::no_verify; pimpl->hilti_options->cg_debug = cg_debug; pimpl->hilti_options->module_cache = BifConst::Hilti::use_cache ? ".cache" : ""; pimpl->pac2_options->jit = true; pimpl->pac2_options->debug = BifConst::Hilti::debug; pimpl->pac2_options->optimize = BifConst::Hilti::optimize; pimpl->pac2_options->profile = BifConst::Hilti::profile; pimpl->pac2_options->verify = ! BifConst::Hilti::no_verify; pimpl->pac2_options->cg_debug = cg_debug; pimpl->pac2_options->module_cache = BifConst::Hilti::use_cache ? ".cache" : ""; pimpl->llvm_linked_module = nullptr; pimpl->llvm_execution_engine = nullptr; for ( auto a : pimpl->pac2_analyzers ) { if ( a->replaces.empty() ) continue; analyzer::Tag tag = analyzer_mgr->GetAnalyzerTag(a->replaces.c_str()); if ( tag ) { PLUGIN_DBG_LOG(HiltiPlugin, "Disabling %s for %s", a->replaces.c_str(), a->name.c_str()); analyzer_mgr->DisableAnalyzer(tag); a->replaces_tag = tag; } else { PLUGIN_DBG_LOG(HiltiPlugin, "%s replaces %s, but that does not exist", a->name.c_str(), a->replaces.c_str()); } } post_scripts_init_run = true; PLUGIN_DBG_LOG(HiltiPlugin, "Done with post-script initialization"); return true; } bool Manager::FinishLoading() { assert(pre_scripts_init_run); assert(post_scripts_init_run); pre_scripts_init_run = true; return true; } bool Manager::LoadFile(const std::string& file) { std::string path = SearchFile(file); if ( path.empty() ) { reporter::error(::util::fmt("cannot find file %s", file)); return false; } if ( path.size() > 5 && path.substr(path.size() - 5) == ".pac2" ) { if ( pimpl->pac2_files.find(path) != pimpl->pac2_files.end() ) // Already loaded. return true; pimpl->pac2_files.insert(path); return LoadPac2Module(path); } if ( path.size() > 4 && path.substr(path.size() - 4) == ".evt" ) { if ( pimpl->evt_files.find(path) != pimpl->evt_files.end() ) // Already loaded. return true; pimpl->evt_files.insert(path); return LoadPac2Events(path); } if ( path.size() > 4 && path.substr(path.size() - 4) == ".hlt" ) { if ( pimpl->hlt_files.find(path) != pimpl->hlt_files.end() ) // Already loaded. return true; pimpl->hlt_files.insert(path); return pimpl->compiler->LoadExternalHiltiCode(path); } reporter::internal_error(::util::fmt("unknown file type passed to HILTI loader: %s", path)); return false; } #if 0 bool Manager::SearchFiles(const char* ext, std::function<bool (std::istream& in, const string& path)> const & callback) { for ( auto dir : pimpl->import_paths ) { glob_t g; string p = dir + "/*." + ext; PLUGIN_DBG_LOG(HiltiPlugin, "Searching %s", p.c_str()); if ( glob(p.c_str(), 0, 0, &g) < 0 ) continue; for ( int i = 0; i < g.gl_pathc; i++ ) { string path = g.gl_pathv[i]; std::ifstream in(path); if ( ! in ) { reporter::error(::util::fmt("Cannot open %s", path)); return false; } if ( ! callback(in, path) ) return false; } } return true; } #endif std::string Manager::SearchFile(const std::string& file, const std::string& relative_to) const { char cwd[PATH_MAX] = "\0"; char rpath[PATH_MAX]; string result = ""; if ( file.empty() ) goto done; if ( ! getcwd(cwd, PATH_MAX) ) { reporter::error("cannot get current working directory"); return ""; } if ( relative_to.size() ) { if ( chdir(relative_to.c_str()) < 0 ) reporter::error(::util::fmt("cannot chdir to %s", relative_to)); } if ( is_file(file) ) { result = realpath(file.c_str(), rpath) ? rpath : ""; goto done; } if ( file[0] == '/' || is_dir(file) ) goto done; for ( auto dir : pimpl->import_paths ) { std::string path = dir + "/" + file; if ( ! realpath(path.c_str(), rpath) ) continue; if ( is_file(rpath) ) { result = rpath; goto done; } } done: if ( cwd[0] ) { if ( chdir(cwd) < 0 ) reporter::error(::util::fmt("cannot chdir back to %s", relative_to)); } return result; } bool Manager::PopulateEvent(shared_ptr<Pac2EventInfo> ev) { // If we find the path directly, it's a unit type; then add a "%done" // to form the hook name. auto uinfo = pimpl->pac2_ast->LookupUnit(ev->path); string hook; string hook_local; string unit; if ( uinfo ) { hook += ev->path + "::%done"; hook_local = "%done"; unit = ev->path; } else { // Strip the last element of the path, the remainder must // refer to a unit. auto p = ::util::strsplit(ev->path, "::"); if ( p.size() ) { hook_local = p.back(); p.pop_back(); unit = ::util::strjoin(p, "::"); uinfo = pimpl->pac2_ast->LookupUnit(unit); hook = ev->path; } } if ( ! uinfo ) { reporter::error(::util::fmt("unknown unit type in %s", hook)); return 0; } uinfo->minfo->dependencies.insert(ev->file); ev->hook = hook; ev->hook_local = hook_local; ev->unit = unit; ev->unit_type = uinfo->unit_type; ev->unit_module = uinfo->unit_type->firstParent<::binpac::Module>(); ev->minfo = uinfo->minfo; assert(ev->unit_module); if ( ! CreateExpressionAccessors(ev) ) return false; return true; } bool Manager::Compile() { PLUGIN_DBG_LOG(HiltiPlugin, "Beginning compilation"); assert(pre_scripts_init_run); assert(post_scripts_init_run); if ( ! CompileBroScripts() ) return false; for ( auto a : pimpl->pac2_analyzers ) { if ( a->unit_name_orig.size() ) { a->unit_orig = pimpl->pac2_ast->LookupUnit(a->unit_name_orig); if ( ! a->unit_orig ) { reporter::error(::util::fmt("unknown unit type %s with analyzer %s", a->unit_name_orig, a->name)); return false; } } if ( a->unit_name_resp.size() ) { a->unit_resp = pimpl->pac2_ast->LookupUnit(a->unit_name_resp); if ( ! a->unit_resp ) { reporter::error(::util::fmt("unknown unit type with analyzer %s", a->unit_name_resp, a->name)); return false; } } } for ( auto a : pimpl->pac2_file_analyzers ) { if ( a->unit_name.size() ) { a->unit = pimpl->pac2_ast->LookupUnit(a->unit_name); if ( ! a->unit ) { reporter::error(::util::fmt("unknown unit type %s with file analyzer %s", a->unit_name, a->name)); return false; } } for ( auto mt : a->mime_types ) { val_list* vals = new val_list; vals->append(a->tag.AsEnumVal()->Ref()); vals->append(new ::StringVal(mt)); EventHandlerPtr handler = internal_handler("pac2_analyzer_for_mime_type"); mgr.QueueEvent(handler, vals); } } // See if we can short-cut this all by reusing our cache. auto llvm_module = CheckCacheForLinkedModule(); if ( llvm_module ) return RunJIT(llvm_module); // Create the pac2 hooks and accessor functions. for ( auto ev : pimpl->pac2_events ) { if ( ! CreatePac2Hook(ev.get()) ) return false; } if ( pimpl->hilti_context->fileCache() ) { // See which modules we can find in the cache. for ( auto m : pimpl->pac2_modules ) { pimpl->pac2_context->toCacheKey(m->module, &m->key); for ( auto d : m->dependencies ) m->key.files.insert(d); auto lms = pimpl->hilti_context->checkCache(m->key); if ( ! lms.size() ) continue; for ( auto l : lms ) pimpl->llvm_modules.push_back(l); m->cached = true; } } // Compile all the *.pac2 modules. for ( auto m : pimpl->pac2_modules ) { if ( m->cached ) continue; // Compile the *.pac2 module itself. shared_ptr<::hilti::Module> hilti_module_out; auto llvm_module = m->context->compile(m->module, &hilti_module_out); if ( ! llvm_module ) return false; if ( pimpl->save_hilti && hilti_module_out ) { ofstream out(::util::fmt("bro.pac2.%s.hlt", hilti_module_out->id()->name())); pimpl->hilti_context->print(hilti_module_out, out); out.close(); } pimpl->llvm_modules.push_back(llvm_module); m->llvm_modules.push_back(llvm_module); // Compile the generated hooks *.pac2 module. if ( pimpl->dump_code_pre_finalize ) { std::cerr << ::util::fmt("\n=== Pre-finalize AST: %s.pac2\n", m->pac2_module->id()->name()) << std::endl; pimpl->pac2_context->dump(m->pac2_module, std::cerr); std::cerr << ::util::fmt("\n=== Pre-finalize code: %s.pac2\n", m->pac2_module->id()->name()) << std::endl; pimpl->pac2_context->print(m->pac2_module, std::cerr); } if ( ! pimpl->pac2_context->finalize(m->pac2_module) ) return false; if ( pimpl->dump_code_pre_finalize ) { std::cerr << ::util::fmt("\n=== Post-finalize, pre-compile AST: %s.pac2\n", m->pac2_module->id()->name()) << std::endl; pimpl->pac2_context->dump(m->pac2_module, std::cerr); std::cerr << ::util::fmt("\n=== Post-finalize, pre-compile code: %s.pac2\n", m->pac2_module->id()->name()) << std::endl; pimpl->pac2_context->print(m->pac2_module, std::cerr); } llvm_module = pimpl->pac2_context->compile(m->pac2_module, &m->pac2_hilti_module); if ( ! llvm_module ) return false; pimpl->llvm_modules.push_back(llvm_module); m->llvm_modules.push_back(llvm_module); if ( m->pac2_hilti_module ) pimpl->hilti_modules.push_back(m->pac2_hilti_module); if ( pimpl->save_pac2 ) { ofstream out(::util::fmt("bro.%s.pac2", m->pac2_module->id()->name())); pimpl->pac2_context->print(m->pac2_module, out); out.close(); } AddHiltiTypesForModule(m); } for ( auto ev : pimpl->pac2_events ) AddHiltiTypesForEvent(ev); for ( auto minfo : pimpl->pac2_modules ) minfo->hilti_context->resolveTypes(minfo->hilti_mbuilder->module()); // Create the HILTi raise functions(). for ( auto ev : pimpl->pac2_events ) { if ( ev->minfo->cached ) continue; BuildBroEventSignature(ev); RegisterBroEvent(ev); if ( ! CreateHiltiEventFunction(ev.get()) ) return false; } // Add the standard LibBro module. if ( ! pimpl->libbro_path.size() ) { reporter::error("LibBro library module not found"); return false; } PLUGIN_DBG_LOG(HiltiPlugin, "Loading %s", pimpl->libbro_path.c_str()); auto libbro = pimpl->hilti_context->loadModule(pimpl->libbro_path); if ( ! libbro ) { reporter::error("loading LibBro library module failed"); return false; } pimpl->hilti_modules.push_back(libbro); llvm::Module* llvm_libbro = nullptr; util::cache::FileCache::Key libbro_key; libbro_key.scope = "bc"; libbro_key.name = "LibBro"; pimpl->pac2_context->options().toCacheKey(&libbro_key); pimpl->hilti_context->toCacheKey(libbro, &libbro_key); auto lms = pimpl->hilti_context->checkCache(libbro_key); if ( lms.size() ) llvm_libbro = lms.front(); else { llvm_libbro = pimpl->hilti_context->compile(libbro); if ( ! llvm_libbro ) { reporter::error("compiling LibBro library module failed"); return false; } pimpl->hilti_context->updateCache(libbro_key, llvm_libbro); } pimpl->llvm_modules.push_back(llvm_libbro); // Compile all the *.hlt modules. for ( auto m : pimpl->pac2_modules ) { if ( m->cached ) continue; AddHiltiTypesForModule(m); if ( pimpl->dump_code_pre_finalize ) { auto hilti_module = m->hilti_mbuilder->module(); std::cerr << ::util::fmt("\n=== Pre-finalize AST: %s.hlt\n", hilti_module->id()->name()) << std::endl; m->hilti_context->dump(hilti_module, std::cerr); std::cerr << ::util::fmt("\n=== Pre-finalize code: %s.hlt\n", hilti_module->id()->name()) << std::endl; m->hilti_context->print(hilti_module, std::cerr); } auto hilti_module = m->hilti_mbuilder->Finalize(); if ( ! hilti_module ) return false; pimpl->hilti_modules.push_back(hilti_module); // TODO: Not sure why we need this import here. pimpl->hilti_context->importModule(std::make_shared<::hilti::ID>("LibBro")); pimpl->hilti_context->finalize(hilti_module); auto llvm_hilti_module = m->hilti_context->compile(hilti_module); if ( ! llvm_hilti_module ) { reporter::error("compiling LibBro library module failed"); return false; } pimpl->llvm_modules.push_back(llvm_hilti_module); m->llvm_modules.push_back(llvm_hilti_module); pimpl->hilti_context->updateCache(m->key, m->llvm_modules); } if ( pimpl->save_hilti ) { for ( auto m : pimpl->hilti_modules ) { ofstream out(::util::fmt("bro.%s.hlt", m->id()->name())); pimpl->hilti_context->print(m, out); out.close(); } } auto glue = pimpl->compiler->FinalizeGlueBuilder(); if ( ! CompileHiltiModule(glue) ) return false; // Compile and link all the HILTI modules into LLVM. We use the // BinPAC++ context here to make sure we gets its additional // libraries linked. // PLUGIN_DBG_LOG(HiltiPlugin, "Compiling & linking all HILTI code into a single LLVM module"); llvm_module = pimpl->pac2_context->linkModules("__bro_linked__", pimpl->llvm_modules); if ( ! llvm_module ) { reporter::error("linking failed"); return false; } if ( pimpl->save_llvm ) { ofstream out("bro.ll"); pimpl->hilti_context->printBitcode(llvm_module, out); out.close(); } llvm_module->setModuleIdentifier("__bro_linked__"); pimpl->llvm_linked_module = llvm_module; pimpl->hilti_context->updateCache(CacheKeyForLinkedModule(), llvm_module); auto result = RunJIT(llvm_module); PLUGIN_DBG_LOG(HiltiPlugin, "Done with compilation"); PLUGIN_DBG_LOG(HiltiPlugin, "Registering analyzers through events"); for ( auto a : pimpl->pac2_analyzers ) { for ( auto p : a->ports ) { val_list* vals = new val_list; vals->append(a->tag.AsEnumVal()->Ref()); vals->append(new ::PortVal(p.port, p.proto)); EventHandlerPtr handler = internal_handler("pac2_analyzer_for_port"); mgr.QueueEvent(handler, vals); } } for ( auto a : pimpl->pac2_file_analyzers ) { for ( auto mt : a->mime_types ) { val_list* vals = new val_list; vals->append(a->tag.AsEnumVal()->Ref()); vals->append(new ::StringVal(mt)); EventHandlerPtr handler = internal_handler("pac2_analyzer_for_mime_type"); mgr.QueueEvent(handler, vals); } } return result; } bool Manager::CompileBroScripts() { compiler::Compiler::module_list modules = pimpl->compiler->CompileAll(); for ( auto m : modules ) { if ( ! CompileHiltiModule(m) ) return false; } return true; } bool Manager::CompileHiltiModule(std::shared_ptr<::hilti::Module> m) { // TODO: Add caching. auto lm = pimpl->hilti_context->compile(m); if ( ! lm ) { reporter::error(::util::fmt("compiling script module %s failed", m->id()->name())); return false; } if ( pimpl->save_llvm ) { ofstream out(::util::fmt("bro.%s.ll", m->id()->name())); pimpl->hilti_context->printBitcode(lm, out); out.close(); } pimpl->llvm_modules.push_back(lm); pimpl->hilti_modules.push_back(m); return true; } bool Manager::RunJIT(llvm::Module* llvm_module) { PLUGIN_DBG_LOG(HiltiPlugin, "Running JIT on LLVM module"); auto hilti_context = pimpl->hilti_context; auto ee = hilti_context->jitModule(llvm_module); if ( ! ee ) { reporter::error("jit failed"); return false; } pimpl->llvm_execution_engine = ee; PLUGIN_DBG_LOG(HiltiPlugin, "Initializing HILTI runtime"); hlt_config cfg = *hlt_config_get(); cfg.fiber_stack_size = 5000 * 1024; cfg.profiling = pimpl->profile; cfg.num_workers = pimpl->hilti_workers; hlt_config_set(&cfg); hlt_init_jit(hilti_context, llvm_module, ee); binpac_init(); binpac_init_jit(hilti_context, llvm_module, ee); PLUGIN_DBG_LOG(HiltiPlugin, "Retrieving binpac_parsers() function"); #ifdef BRO_PLUGIN_HAVE_PROFILING profile_update(PROFILE_JIT_LAND, PROFILE_START); #endif typedef hlt_list* (*binpac_parsers_func)(hlt_exception** excpt, hlt_execution_context* ctx); auto binpac_parsers = (binpac_parsers_func)hilti_context->nativeFunction(llvm_module, ee, "binpac_parsers"); #ifdef BRO_PLUGIN_HAVE_PROFILING profile_update(PROFILE_JIT_LAND, PROFILE_STOP); #endif if ( ! binpac_parsers ) { reporter::error("no function binpac_parsers()"); return false; } PLUGIN_DBG_LOG(HiltiPlugin, "Calling binpac_parsers() function"); hlt_exception* excpt = 0; hlt_execution_context* ctx = hlt_global_execution_context(); hlt_list* parsers = (*binpac_parsers)(&excpt, ctx); // Record them with our analyzers. ExtractParsers(parsers); // Cache the native functions for compiled script code. if ( pimpl->compile_scripts ) { PLUGIN_DBG_LOG(HiltiPlugin, "Caching native script functions"); #ifdef BRO_PLUGIN_HAVE_PROFILING profile_update(PROFILE_JIT_LAND, PROFILE_START); #endif for ( auto i : pimpl->compiler->HiltiFunctionSymbolMap() ) { auto symbol = i.first; auto func = i.second; auto native = pimpl->hilti_context->nativeFunction(pimpl->llvm_linked_module, pimpl->llvm_execution_engine, symbol); auto id = func->GetUniqueFuncID(); if ( pimpl->native_functions.size() <= id ) pimpl->native_functions.resize(id + 1); pimpl->native_functions[id] = native; PLUGIN_DBG_LOG(HiltiPlugin, " %s -> %s at %p", func->Name(), symbol.c_str(), native); } #ifdef BRO_PLUGIN_HAVE_PROFILING profile_update(PROFILE_JIT_LAND, PROFILE_STOP); #endif } // Done, print out debug summary if requested. if ( pimpl->dump_debug ) DumpDebug(); if ( pimpl->dump_code || pimpl->dump_code_all ) DumpCode(pimpl->dump_code_all); // Need to delay the following until here. If we compile scripts, this // will require the compiled register_protocol_analyzer function to be // available. auto register_func = internal_func("Bro::register_protocol_analyzer"); if ( ! register_func ) reporter::fatal_error("Bro::register_protocol_analyzer() not available"); for ( auto a : pimpl->pac2_file_analyzers ) { val_list* args = new val_list; args->append(a->tag.AsEnumVal()->Ref()); register_func->Call(args); } return true; } util::cache::FileCache::Key Manager::CacheKeyForLinkedModule() { util::cache::FileCache::Key key; key.scope = "bc"; key.name = "__bro_linked__"; pimpl->pac2_context->options().toCacheKey(&key); for ( auto m : pimpl->pac2_modules ) { if ( m->path != "-" ) key.files.insert(m->path); for ( auto d : pimpl->pac2_context->dependencies(m->module) ) key.files.insert(d); } for ( auto m : pimpl->hilti_modules ) { if ( m->path() != "-" ) key.files.insert(m->path()); for ( auto d : pimpl->hilti_context->dependencies(m) ) key.files.insert(d); } for ( auto m : pimpl->evt_files ) key.files.insert(m); for ( auto d : pimpl->import_paths ) key.dirs.insert(d); key.files.insert(pimpl->libbro_path); auto path = HiltiPlugin.PluginPath(); auto dir = HiltiPlugin.PluginDirectory(); assert(path.size() && dir.size()); key.files.insert(path); key.dirs.insert(dir); return key; } llvm::Module* Manager::CheckCacheForLinkedModule() { auto key = CacheKeyForLinkedModule(); auto lms = pimpl->hilti_context->checkCache(key); assert(lms.size() <= 1); auto llvm_module = lms.size() ? lms.front() : nullptr; // When coming out of the cache, it has lost its name, but the JIT // needs a name. Furthermore, the name needs to be same as whenever // compiled directly, so we just set it to a static here in any case. if ( llvm_module ) llvm_module->setModuleIdentifier("__bro_linked__"); return llvm_module; } bool Manager::LoadPac2Module(const string& path) { std::ifstream in(path); if ( ! in ) { reporter::error(::util::fmt("cannot open %s", path)); return false; } PLUGIN_DBG_LOG(HiltiPlugin, "Loading grammar from from %s", path.c_str()); // ctx->enableDebug(dbg_scanner, dbg_parser, dbg_scopes, dbg_grammars); reporter::push_location(path, 0); auto ctx = std::make_shared<::binpac::CompilerContext>(pimpl->pac2_options); auto module = ctx->load(path); reporter::pop_location(); if ( ! module ) { reporter::error(::util::fmt("Error reading %s", path)); return false; } auto name = module->id()->name(); auto minfo = std::make_shared<Pac2ModuleInfo>(); minfo->path = path; minfo->context = ctx; minfo->module = module; minfo->pac2_module = std::make_shared<::binpac::Module>(pimpl->pac2_context.get(), std::make_shared<::binpac::ID>(::util::fmt("BroHooks_%s", name))); minfo->pac2_module->import("Bro"); minfo->hilti_context = std::make_shared<::hilti::CompilerContext>(pimpl->hilti_options); minfo->hilti_mbuilder = std::make_shared<compiler::ModuleBuilder>(pimpl->compiler, minfo->hilti_context, ::util::fmt("BroFuncs_%s", name)); minfo->hilti_mbuilder->importModule("Hilti"); minfo->hilti_mbuilder->importModule("LibBro"); minfo->value_converter = std::make_shared<ValueConverter>(minfo->hilti_mbuilder.get(), pimpl->type_converter.get()); minfo->key.scope = "bc"; minfo->key.name = name; pimpl->pac2_context->options().toCacheKey(&minfo->key); pimpl->pac2_modules.push_back(minfo); pimpl->pac2_ast->process(minfo, module); // Make exported enum types available to Bro. for ( auto t : module->exportedTypes() ) { if ( ! ast::isA<::binpac::type::Enum>(t) ) continue; auto htype = pimpl->pac2_context->hiltiType(t, &minfo->dep_types); pimpl->type_converter->Convert(htype, t); } return true; } static void eat_spaces(const string& chunk, size_t* i) { while ( *i < chunk.size() && isspace(chunk[*i]) ) ++*i; } static bool is_id_char(const string& chunk, size_t i) { char c = chunk[i]; if ( isalnum(c) ) return true; if ( strchr("_$%", c) != 0 ) return true; char prev = (i > 0) ? chunk[i-1] : '\0'; char next = (i + 1 < chunk.size()) ? chunk[i+1] : '\0'; if ( c == ':' && next == ':' ) return true; if ( c == ':' && prev == ':' ) return true; return false; } static bool extract_id(const string& chunk, size_t* i, string* id) { eat_spaces(chunk, i); size_t j = *i; while ( j < chunk.size() && is_id_char(chunk, j) ) ++j; if ( *i == j ) goto error; *id = chunk.substr(*i, j - *i); *i = j; return true; error: reporter::error(::util::fmt("expected id")); return false; } static bool is_path_char(const string& chunk, size_t i) { char c = chunk[i]; return (! isspace(c)) && c != ';'; } static bool extract_path(const string& chunk, size_t* i, string* id) { eat_spaces(chunk, i); size_t j = *i; while ( j < chunk.size() && is_path_char(chunk, j) ) ++j; if ( *i == j ) goto error; *id = chunk.substr(*i, j - *i); *i = j; return true; error: reporter::error(::util::fmt("expected path")); return false; } static bool extract_int(const string& chunk, size_t* i, int* integer) { string sint; eat_spaces(chunk, i); size_t j = *i; if ( j < chunk.size() && (chunk[j] == '-' || chunk[j] == '+') ) ++j; while ( j < chunk.size() && isdigit(chunk[j]) ) ++j; if ( *i == j ) goto error; sint = chunk.substr(*i, j - *i); *i = j; ::util::atoi_n(sint.begin(), sint.end(), 10, integer); return true; error: reporter::error(::util::fmt("expected integer")); return false; } #if 0 static bool extract_dotted_id(const string& chunk, size_t* i, string* id) { eat_spaces(chunk, i); size_t j = *i; while ( j < chunk.size() && (is_id_char(chunk, j) || chunk[j] == '.') ) ++j; if ( *i == j ) goto error; *id = chunk.substr(*i, j - *i); *i = j; return true; error: reporter::error(::util::fmt("expected dotted id")); return false; } #endif static bool extract_expr(const string& chunk, size_t* i, string* expr) { eat_spaces(chunk, i); int level = 0; bool done = 0; size_t j = *i; while ( j < chunk.size() ) { switch ( chunk[j] ) { case '(': case '[': case '{': ++level; ++j; continue; case ')': if ( level == 0 ) { done = true; break; } // fall-through case ']': case '}': if ( level == 0 ) goto error; --level; ++j; continue; case ',': if ( level == 0 ) { done = true; break; } // fall-through default: ++j; } if ( done ) break; if ( *i == j ) break; } *expr = ::util::strtrim(chunk.substr(*i, j - *i)); *i = j; return true; error: reporter::error(::util::fmt("expected BinPAC++ expression")); return false; } static string::size_type looking_at(const string& chunk, string::size_type i, const char* token) { eat_spaces(chunk, &i); for ( string::size_type j = 0; j < strlen(token); ++j ) { if ( i >= chunk.size() || chunk[i++] != token[j] ) return 0; } return i; } static bool eat_token(const string& chunk, string::size_type* i, const char* token) { eat_spaces(chunk, i); auto j = looking_at(chunk, *i, token); if ( ! j ) { reporter::error(::util::fmt("expected token '%s'", token)); return false; } *i = j; return true; } static bool extract_port(const string& chunk, size_t* i, Port* port) { eat_spaces(chunk, i); string s; size_t j = *i; while ( j < chunk.size() && isdigit(chunk[j]) ) ++j; if ( *i == j ) goto error; s = chunk.substr(*i, j - *i); ::util::atoi_n(s.begin(), s.end(), 10, &port->port); *i = j; if ( chunk[*i] != '/' ) goto error; (*i)++; if ( looking_at(chunk, *i, "tcp") ) { port->proto = TRANSPORT_TCP; eat_token(chunk, i, "tcp"); } else if ( looking_at(chunk, *i, "udp") ) { port->proto = TRANSPORT_UDP; eat_token(chunk, i, "udp"); } else if ( looking_at(chunk, *i, "icmp") ) { port->proto = TRANSPORT_ICMP; eat_token(chunk, i, "icmp"); } else goto error; return true; error: reporter::error(::util::fmt("cannot parse expected port specification")); return false; } bool Manager::LoadPac2Events(const string& path) { std::ifstream in(path); if ( ! in ) { reporter::error(::util::fmt("cannot open %s", path)); return false; } PLUGIN_DBG_LOG(HiltiPlugin, "Loading events from %s", path.c_str()); int lineno = 0; string chunk; PIMPL::pac2_event_list new_events; while ( ! in.eof() ) { reporter::push_location(path, ++lineno); string line; std::getline(in, line); // Skip comments and empty lines. auto i = line.find_first_not_of(" \t"); if ( i == string::npos ) goto next_line; if ( line[i] == '#' ) goto next_line; if ( chunk.size() ) chunk += " "; chunk += line.substr(i, string::npos); // See if we have a semicolon-terminated chunk now. i = line.find_last_not_of(" \t"); if ( i == string::npos ) i = line.size() - 1; if ( line[i] != ';' ) // Nope, keep adding. goto next_line; // Got it, parse the chunk. chunk = ::util::strtrim(chunk); if ( looking_at(chunk, 0, "protocol") ) { auto a = ParsePac2AnalyzerSpec(chunk); if ( ! a ) goto error; pimpl->pac2_analyzers.push_back(a); RegisterBroAnalyzer(a); PLUGIN_DBG_LOG(HiltiPlugin, "Finished processing analyzer definition for %s", a->name.c_str()); } else if ( looking_at(chunk, 0, "file") ) { auto a = ParsePac2FileAnalyzerSpec(chunk); if ( ! a ) goto error; pimpl->pac2_file_analyzers.push_back(a); RegisterBroFileAnalyzer(a); PLUGIN_DBG_LOG(HiltiPlugin, "Finished processing file analyzer definition for %s", a->name.c_str()); } else if ( looking_at(chunk, 0, "on") ) { auto ev = ParsePac2EventSpec(chunk); if ( ! ev ) goto error; ev->file = path; new_events.push_back(ev); pimpl->pac2_events.push_back(ev); HiltiPlugin.AddEvent(ev->name); PLUGIN_DBG_LOG(HiltiPlugin, "Finished processing event definition for %s", ev->name.c_str()); } else if ( looking_at(chunk, 0, "grammar") ) { size_t i = 0; if ( ! eat_token(chunk, &i, "grammar") ) return 0; string pac2; if ( ! extract_path(chunk, &i, &pac2) ) goto error; size_t j = pac2.find_last_of("/."); if ( j == string::npos || pac2[j] == '/' ) pac2 += ".pac2"; string dirname; j = path.find_last_of("/"); if ( j != string::npos ) { dirname = path.substr(0, j); pimpl->pac2_options->libdirs_pac2.push_front(dirname); } pac2 = SearchFile(pac2, dirname); if ( ! HiltiPlugin.LoadBroFile(pac2.c_str()) ) goto error; } else reporter::error("expected 'grammar', '{file,protocol} analyzer', or 'on'"); chunk = ""; next_line: reporter::pop_location(); continue; error: reporter::pop_location(); return false; } if ( chunk.size() ) { reporter::error("unterminated line at end of file"); return false; } for ( auto ev : new_events ) PopulateEvent(ev); return true; } shared_ptr<Pac2AnalyzerInfo> Manager::ParsePac2AnalyzerSpec(const string& chunk) { auto a = std::make_shared<Pac2AnalyzerInfo>(); a->location = reporter::current_location(); a->parser_orig = 0; a->parser_resp = 0; size_t i = 0; if ( ! eat_token(chunk, &i, "protocol") ) return 0; if ( ! eat_token(chunk, &i, "analyzer") ) return 0; if ( ! extract_id(chunk, &i, &a->name) ) return 0; a->name = ::util::strreplace(a->name, "::", "_"); if ( ! eat_token(chunk, &i, "over") ) return 0; string proto; if ( ! extract_id(chunk, &i, &proto) ) return 0; proto = ::util::strtolower(proto); if ( proto == "tcp" ) a->proto = TRANSPORT_TCP; else if ( proto == "udp" ) a->proto = TRANSPORT_UDP; else if ( proto == "icmp" ) a->proto = TRANSPORT_ICMP; else { reporter::error(::util::fmt("unknown transport protocol '%s'", proto)); return 0; } if ( ! eat_token(chunk, &i, ":") ) return 0; enum { orig, resp, both } dir; while ( true ) { if ( looking_at(chunk, i, "parse") ) { eat_token(chunk, &i, "parse"); if ( looking_at(chunk, i, "originator") ) { eat_token(chunk, &i, "originator"); dir = orig; } else if ( looking_at(chunk, i, "responder") ) { eat_token(chunk, &i, "responder"); dir = resp; } else if ( looking_at(chunk, i, "with") ) dir = both; else { reporter::error("invalid parse-with specification"); return 0; } if ( ! eat_token(chunk, &i, "with") ) return 0; string unit; if ( ! extract_id(chunk, &i, &unit) ) return 0; switch ( dir ) { case orig: a->unit_name_orig = unit; break; case resp: a->unit_name_resp = unit; break; case both: a->unit_name_orig = unit; a->unit_name_resp = unit; break; } } else if ( looking_at(chunk, i, "ports") ) { eat_token(chunk, &i, "ports"); if ( ! eat_token(chunk, &i, "{") ) return 0; while ( true ) { Port p; if ( ! extract_port(chunk, &i, &p) ) return 0; a->ports.push_back(p); if ( looking_at(chunk, i, "}") ) { eat_token(chunk, &i, "}"); break; } if ( ! eat_token(chunk, &i, ",") ) return 0; } } else if ( looking_at(chunk, i, "port") ) { eat_token(chunk, &i, "port"); Port p; if ( ! extract_port(chunk, &i, &p) ) return 0; a->ports.push_back(p); } else if ( looking_at(chunk, i, "replaces") ) { eat_token(chunk, &i, "replaces"); string id; if ( ! extract_id(chunk, &i, &a->replaces) ) return 0; } else { reporter::error("unexpect token"); return 0; } if ( looking_at(chunk, i, ";") ) break; // All done. if ( ! eat_token(chunk, &i, ",") ) return 0; } return a; } shared_ptr<Pac2FileAnalyzerInfo> Manager::ParsePac2FileAnalyzerSpec(const string& chunk) { auto a = std::make_shared<Pac2FileAnalyzerInfo>(); a->location = reporter::current_location(); a->parser = 0; size_t i = 0; if ( ! eat_token(chunk, &i, "file") ) return 0; if ( ! eat_token(chunk, &i, "analyzer") ) return 0; if ( ! extract_id(chunk, &i, &a->name) ) return 0; a->name = ::util::strreplace(a->name, "::", "_"); if ( ! eat_token(chunk, &i, ":") ) return 0; while ( true ) { if ( looking_at(chunk, i, "parse") ) { eat_token(chunk, &i, "parse"); if ( ! eat_token(chunk, &i, "with") ) return 0; string unit; if ( ! extract_id(chunk, &i, &unit) ) return 0; a->unit_name = unit; } else if ( looking_at(chunk, i, "mime-type") ) { eat_token(chunk, &i, "mime-type"); string mtype; if ( ! extract_path(chunk, &i, &mtype) ) return 0; a->mime_types.push_back(mtype); } else { reporter::error("unexpect token"); return 0; } if ( looking_at(chunk, i, ";") ) break; // All done. if ( ! eat_token(chunk, &i, ",") ) return 0; } return a; } shared_ptr<Pac2EventInfo> Manager::ParsePac2EventSpec(const string& chunk) { auto ev = std::make_shared<Pac2EventInfo>(); std::list<string> exprs; string path; string name; string expr; string cond; // We use a quite negative hook here to make sure these run last // after anything the grammar defines by default. int prio = -1000; size_t i = 0; if ( ! eat_token(chunk, &i, "on") ) return 0; if ( ! extract_id(chunk, &i, &path) ) return 0; if ( looking_at(chunk, i, "if") ) { eat_token(chunk, &i, "if"); if ( ! eat_token(chunk, &i, "(") ) return 0; if ( ! extract_expr(chunk, &i, &cond) ) return 0; if ( ! eat_token(chunk, &i, ")") ) return 0; } if ( ! eat_token(chunk, &i, "->") ) return 0; if ( ! eat_token(chunk, &i, "event") ) return 0; if ( ! extract_id(chunk, &i, &name) ) return 0; if ( ! eat_token(chunk, &i, "(") ) return 0; bool first = true; size_t j = 0; while ( true ) { j = looking_at(chunk, i, ")"); if ( j ) { i = j; break; } if ( ! first ) { if ( ! eat_token(chunk, &i, ",") ) return 0; } if ( ! extract_expr(chunk, &i, &expr) ) return 0; exprs.push_back(expr); first = false; } if ( looking_at(chunk, i, "&priority") ) { eat_token(chunk, &i, "&priority"); if ( ! eat_token(chunk, &i, "=") ) return 0; if ( ! extract_int(chunk, &i, &prio) ) return 0; } if ( ! eat_token(chunk, &i, ";") ) return 0; eat_spaces(chunk, &i); if ( i < chunk.size() ) { // This shouldn't actually be possible ... reporter::error("unexpected characters at end of line"); return 0; } ev->name = name; ev->path = path; ev->exprs = exprs; ev->condition = cond; ev->priority = prio; ev->location = reporter::current_location(); // These are set later. ev->hook = "<unset>"; ev->hook_local = "<unset>"; ev->unit = "<unset>"; ev->unit_type = 0; ev->unit_module = 0; return ev; } void Manager::RegisterBroAnalyzer(shared_ptr<Pac2AnalyzerInfo> a) { analyzer::Tag::subtype_t stype = pimpl->pac2_analyzers_by_subtype.size(); pimpl->pac2_analyzers_by_subtype.push_back(a); a->tag = HiltiPlugin.AddAnalyzer(a->name, a->proto, stype); } void Manager::RegisterBroFileAnalyzer(shared_ptr<Pac2FileAnalyzerInfo> a) { file_analysis::Tag::subtype_t stype = pimpl->pac2_file_analyzers_by_subtype.size(); pimpl->pac2_file_analyzers_by_subtype.push_back(a); a->tag = HiltiPlugin.AddFileAnalyzer(a->name, stype); } void Manager::BuildBroEventSignature(shared_ptr<Pac2EventInfo> ev) { type_decl_list* types = new type_decl_list(); EventHandlerPtr handler = event_registry->Lookup(ev->name.c_str()); if ( handler ) { // To enable scoped event names, export their IDs implicitly. For the // lookup we pretend to be in the right module so that Bro doesn't // tell us the ID isn't exported (doh!). auto n = ::util::strsplit(ev->name, "::"); auto mod = n.size() > 1 ? n.front() : GLOBAL_MODULE_NAME; auto id = lookup_ID(ev->name.c_str(), mod.c_str()); if ( id ) id->SetExport(); } #if 0 ODesc d; if ( handler ) handler->FType()->Describe(&d); #endif int i = 0; for ( auto e : ev->expr_accessors ) { BroType* t = nullptr; if ( e->expr == "$conn" ) { t = internal_type("connection"); Ref(t); types->append(new TypeDecl(t, strdup("c"))); } else if ( e->expr == "$file" ) { t = internal_type("fa_file"); Ref(t); types->append(new TypeDecl(t, strdup("f"))); } else if ( e->expr == "$is_orig" ) types->append(new TypeDecl(base_type(TYPE_BOOL), strdup("is_orig"))); else { string p; BroType* t = 0; if ( handler ) { p = handler->FType()->Args()->FieldName(i); t = handler->FType()->Args()->FieldType(i); Ref(t); } else { p = util::fmt("arg%d", e->nr); t = pimpl->type_converter->Convert(e->htype, e->btype); } types->append(new TypeDecl(t, strdup(p.c_str()))); } i++; } auto ftype = new FuncType(new RecordType(types), 0, FUNC_FLAVOR_EVENT); ev->bro_event_type = ftype; } #if 0 // Have patched Bro to allow field names to not match. static bool records_compatible(::RecordType* rt1, ::RecordType* rt2) { // Cannot use same_type() here as that also compares the field names, // which won't match our dummy names. if ( rt1->NumFields() != rt2->NumFields() ) return false; for ( int i = 0; i < rt1->NumFields(); ++i ) { const TypeDecl* td1 = rt1->FieldDecl(i); const TypeDecl* td2 = rt2->FieldDecl(i); if ( ! same_type(td1->type, td2->type, 0) ) return false; } return true; } #endif void Manager::InstallTypeMappings(shared_ptr<compiler::ModuleBuilder> mbuilder, ::BroType* t1, ::BroType* t2) { assert(t1->Tag() == t2->Tag()); if ( t1->Tag() == TYPE_RECORD ) { mbuilder->MapType(t1, t2); return; } if ( t1->Tag() == TYPE_VECTOR ) InstallTypeMappings(mbuilder, t1->AsVectorType()->YieldType(), t2->AsVectorType()->YieldType()); if ( t1->Tag() == TYPE_TABLE ) { if ( t1->AsTableType()->YieldType() ) InstallTypeMappings(mbuilder, t1->AsTableType()->YieldType(), t2->AsTableType()->YieldType()); } } void Manager::RegisterBroEvent(shared_ptr<Pac2EventInfo> ev) { assert(ev->bro_event_type); EventHandlerPtr handler = event_registry->Lookup(ev->name.c_str()); if ( handler ) { if ( handler->FType() ) { // Check if the event types are compatible. Also, // for record arguments we want to use the one from // the Bro event, rather than ours, which might have // just dummy field names. So we go through // (recursively for containers) and install mappings // as needed. auto a1 = ev->bro_event_type->AsFuncType()->Args(); auto a2 = handler->FType()->Args(); if ( a1->NumFields() != a2->NumFields() ) { EventSignatureMismatch(ev->name, ev->bro_event_type->AsFuncType(), handler->FType(), -1); return; } for ( int i = 0; i < a1->NumFields(); i++ ) { auto t1 = a1->FieldType(i); auto t2 = a2->FieldType(i); if ( ! same_type(t1, t2, 0, false) ) { EventSignatureMismatch(ev->name, t1, t2, i); return; } InstallTypeMappings(ev->minfo->hilti_mbuilder, t1, t2); } } ev->bro_event_handler = handler; } else ev->bro_event_handler = 0; #ifdef DEBUG ODesc d; d.SetShort(); ev->bro_event_type->Describe(&d); const char* handled = (ev->bro_event_handler ? "has handler" : "no handlers"); PLUGIN_DBG_LOG(HiltiPlugin, "New Bro event '%s: %s' (%s)", ev->name.c_str(), d.Description(), handled); #endif } void Manager::EventSignatureMismatch(const string& name, const ::BroType* have, const ::BroType* want, int arg) { ODesc dhave; ODesc dwant; if ( arg < 0 ) { dhave.SetShort(); dwant.SetShort(); } have->Describe(&dhave); want->Describe(&dwant); auto sarg = (arg >= 0 ? ::util::fmt("argument %d of ", arg) : ""); auto l = want->GetLocationInfo(); reporter::__push_location(l->filename, l->first_line); reporter::error(::util::fmt("type mismatch for %sevent handler %s: expected %s, but got %s", sarg, name, dwant.Description(), dhave.Description())); reporter::pop_location(); return; } static shared_ptr<::binpac::Expression> id_expr(const string& id) { return std::make_shared<::binpac::expression::ID>(std::make_shared<::binpac::ID>(id)); } bool Manager::CreatePac2Hook(Pac2EventInfo* ev) { if ( ! WantEvent(ev) ) return true; // Find the pac2 module that this event belongs to. PLUGIN_DBG_LOG(HiltiPlugin, "Adding pac2 hook %s for event %s", ev->hook.c_str(), ev->name.c_str()); ev->minfo->pac2_module->import(ev->unit_module->id()); auto body = std::make_shared<::binpac::statement::Block>(ev->minfo->pac2_module->body()->scope()); // If the event comes with a condition, evaluate that first. if ( ev->condition.size() ) { auto cond = pimpl->pac2_context->parseExpression(ev->condition); if ( ! cond ) { reporter::error(::util::fmt("error parsing conditional expression '%s'", ev->condition)); return false; } ::binpac::expression_list args = { cond }; auto not_ = std::make_shared<::binpac::expression::UnresolvedOperator>(::binpac::operator_::Not, args); auto return_ = std::make_shared<::binpac::statement::Return>(nullptr); auto if_ = std::make_shared<::binpac::statement::IfElse>(not_, return_); body->addStatement(if_); } // Raise the event. ::binpac::expression_list args_tuple; for ( auto m : ev->unit_type->scope()->map() ) { auto n = (m.first != "$$" ? m.first : "__dollardollar"); auto t = ::ast::tryCast<::binpac::expression::ParserState>(m.second->front()); if ( t ) args_tuple.push_back(id_expr(n)); } auto args = std::make_shared<::binpac::expression::Constant>(std::make_shared<::binpac::constant::Tuple>(args_tuple)); auto raise_name = ::util::fmt("%s::raise_%s_%p", ev->minfo->hilti_mbuilder->module()->id()->name(), ::util::strreplace(ev->name, "::", "_"), ev); ::binpac::expression_list op_args = { id_expr(raise_name), args }; auto call = std::make_shared<::binpac::expression::UnresolvedOperator>(::binpac::operator_::Call, op_args); auto stmt = std::make_shared<::binpac::statement::Expression>(call); body->addStatement(stmt); auto hook = std::make_shared<::binpac::Hook>(body, ::binpac::Hook::PARSE, ev->priority); auto hdecl = std::make_shared<::binpac::declaration::Hook>(std::make_shared<::binpac::ID>(ev->hook), hook); auto raise_result = std::make_shared<::binpac::type::function::Result>(std::make_shared<::binpac::type::Void>(), true); ::binpac::parameter_list raise_params; for ( auto m : ev->unit_type->scope()->map() ) { auto n = (m.first != "$$" ? m.first : "__dollardollar"); auto t = ::ast::tryCast<::binpac::expression::ParserState>(m.second->front()); if ( t ) { auto id = std::make_shared<::binpac::ID>(n); auto p = std::make_shared<::binpac::type::function::Parameter>(id, t->type(), false, false, nullptr); raise_params.push_back(p); } } auto raise_type = std::make_shared<::binpac::type::Function>(raise_result, raise_params, ::binpac::type::function::BINPAC_HILTI); auto raise_func = std::make_shared<::binpac::Function>(std::make_shared<::binpac::ID>(raise_name), raise_type, ev->minfo->pac2_module); auto rdecl = std::make_shared<::binpac::declaration::Function>(raise_func, ::binpac::Declaration::IMPORTED); ev->minfo->pac2_module->body()->addDeclaration(hdecl); ev->minfo->pac2_module->body()->addDeclaration(rdecl); ev->pac2_hook = hdecl; return true; } bool Manager::CreateExpressionAccessors(shared_ptr<Pac2EventInfo> ev) { int nr = 0; for ( auto e : ev->exprs ) { auto acc = std::make_shared<Pac2ExpressionAccessor>(); acc->nr = ++nr; acc->expr = e; acc->dollar_id = util::startsWith(e, "$"); if ( ! acc->dollar_id ) // We set the other fields below in a second loop. acc->pac2_func = CreatePac2ExpressionAccessor(ev, acc->nr, e); else { if ( e != "$conn" && e != "$is_orig" && e != "$file" ) { reporter::error(::util::fmt("unsupported parameters %s", e)); return false; } } ev->expr_accessors.push_back(acc); } // Resolve the code as far possible. ev->minfo->pac2_module->import(ev->unit_module->id()); pimpl->pac2_context->partialFinalize(ev->minfo->pac2_module); for ( auto acc : ev->expr_accessors ) { if ( acc->dollar_id ) continue; acc->btype = acc->pac2_func ? acc->pac2_func->function()->type()->result()->type() : nullptr; acc->htype = acc->btype ? pimpl->pac2_context->hiltiType(acc->btype, &ev->minfo->dep_types) : nullptr; acc->hlt_func = DeclareHiltiExpressionAccessor(ev, acc->nr, acc->htype); } return true; } shared_ptr<binpac::declaration::Function> Manager::CreatePac2ExpressionAccessor(shared_ptr<Pac2EventInfo> ev, int nr, const string& expr) { auto fname = ::util::fmt("accessor_%s_arg%d_%p", ::util::strreplace(ev->name, "::", "_"), nr, ev); PLUGIN_DBG_LOG(HiltiPlugin, "Defining BinPAC++ function %s for parameter %d of event %s", fname.c_str(), nr, ev->name.c_str()); auto pac2_expr = pimpl->pac2_context->parseExpression(expr); if ( ! pac2_expr ) { reporter::error(::util::fmt("error parsing expression '%s'", expr)); return nullptr; } auto stmt = std::make_shared<::binpac::statement::Return>(pac2_expr); auto body = std::make_shared<::binpac::statement::Block>(ev->minfo->pac2_module->body()->scope()); body->addStatement(stmt); auto unknown = std::make_shared<::binpac::type::Unknown>(); auto func_result = std::make_shared<::binpac::type::function::Result>(unknown, true); ::binpac::parameter_list func_params; for ( auto m : ev->unit_type->scope()->map() ) { auto n = (m.first != "$$" ? m.first : "__dollardollar"); auto t = ::ast::tryCast<::binpac::expression::ParserState>(m.second->front()); if ( t ) { auto id = std::make_shared<::binpac::ID>(n); auto p = std::make_shared<::binpac::type::function::Parameter>(id, t->type(), false, false, nullptr); func_params.push_back(p); } } auto ftype = std::make_shared<::binpac::type::Function>(func_result, func_params, ::binpac::type::function::BINPAC_HILTI); auto func = std::make_shared<::binpac::Function>(std::make_shared<::binpac::ID>(fname), ftype, ev->minfo->pac2_module, body); auto fdecl = std::make_shared<::binpac::declaration::Function>(func, ::binpac::Declaration::EXPORTED); ev->minfo->pac2_module->body()->addDeclaration(fdecl); return fdecl; } shared_ptr<::hilti::declaration::Function> Manager::DeclareHiltiExpressionAccessor(shared_ptr<Pac2EventInfo> ev, int nr, shared_ptr<::hilti::Type> rtype) { auto fname = ::util::fmt("%s::accessor_%s_arg%d_%p", ev->minfo->pac2_module->id()->name(), ::util::strreplace(ev->name, "::", "_"), nr, ev); PLUGIN_DBG_LOG(HiltiPlugin, "Declaring HILTI function %s for parameter %d of event %s", fname.c_str(), nr, ev->name.c_str()); auto result = ::hilti::builder::function::result(rtype); ::hilti::builder::function::parameter_list func_params; for ( auto m : ev->unit_type->scope()->map() ) { auto n = (m.first != "$$" ? m.first : "__dollardollar"); auto t = ::ast::tryCast<::binpac::expression::ParserState>(m.second->front()); if ( t ) { auto id = ::hilti::builder::id::node(n); auto htype = pimpl->pac2_context->hiltiType(t->type(), &ev->minfo->dep_types); auto p = ::hilti::builder::function::parameter(id, htype, false, nullptr); func_params.push_back(p); } } auto cookie = ::hilti::builder::function::parameter("cookie", ::hilti::builder::type::byName("LibBro::Pac2Cookie"), false, nullptr); func_params.push_back(cookie); auto func = ev->minfo->hilti_mbuilder->declareFunction(fname, result, func_params); ev->minfo->hilti_mbuilder->exportID(fname); return func; } void Manager::AddHiltiTypesForModule(shared_ptr<Pac2ModuleInfo> minfo) { for ( auto id : minfo->dep_types ) { if ( minfo->hilti_mbuilder->declared(id) ) continue; assert(minfo->pac2_hilti_module); auto t = minfo->pac2_hilti_module->body()->scope()->lookup(id, true); assert(t.size() == 1); auto type = ast::checkedCast<::hilti::expression::Type>(t.front())->typeValue(); minfo->hilti_mbuilder->addType(id, type); } } void Manager::AddHiltiTypesForEvent(shared_ptr<Pac2EventInfo> ev) { auto uid = ::hilti::builder::id::node(ev->unit); if ( ev->minfo->hilti_mbuilder->declared(uid) ) return; assert(ev->minfo->pac2_hilti_module); auto t = ev->minfo->pac2_hilti_module->body()->scope()->lookup(uid, true); assert(t.size() == 1); auto unit_type = ast::checkedCast<::hilti::expression::Type>(t.front())->typeValue(); ev->minfo->hilti_mbuilder->addType(ev->unit, unit_type); } bool Manager::CreateHiltiEventFunction(Pac2EventInfo* ev) { if ( ! WantEvent(ev) ) return true; string fname = ::util::fmt("raise_%s_%p", ::util::strreplace(ev->name, "::", "_"), ev); PLUGIN_DBG_LOG(HiltiPlugin, "Adding HILTI function %s for event %s", fname.c_str(), ev->name.c_str()); auto result = ::hilti::builder::function::result(::hilti::builder::void_::type()); ::hilti::builder::function::parameter_list args; for ( auto m : ev->unit_type->scope()->map() ) { auto n = (m.first != "$$" ? m.first : "__dollardollar"); auto t = ::ast::tryCast<::binpac::expression::ParserState>(m.second->front()); if ( t ) { auto id = ::hilti::builder::id::node(n); auto htype = pimpl->pac2_context->hiltiType(t->type(), &ev->minfo->dep_types); auto p = ::hilti::builder::function::parameter(id, htype, false, nullptr); args.push_back(p); } } auto cookie = ::hilti::builder::function::parameter("cookie", ::hilti::builder::type::byName("LibBro::Pac2Cookie"), false, nullptr); args.push_back(cookie); auto mbuilder = ev->minfo->hilti_mbuilder; pimpl->compiler->pushModuleBuilder(mbuilder.get()); auto func = mbuilder->pushFunction(fname, result, args); mbuilder->exportID(fname); mbuilder->builder()->addInstruction(::hilti::instruction::profiler::Start, ::hilti::builder::string::create(string("bro/") + fname)); if ( pimpl->compile_scripts && pimpl->pac2_to_compiler ) CreateHiltiEventFunctionBodyForHilti(ev); else CreateHiltiEventFunctionBodyForBro(ev); mbuilder->builder()->addInstruction(::hilti::instruction::profiler::Stop, ::hilti::builder::string::create(string("bro/") + fname)); mbuilder->popFunction(); // pimpl->compiler->popModuleBuilder(); ev->hilti_raise = func; return true; } bool Manager::CreateHiltiEventFunctionBodyForBro(Pac2EventInfo* ev) { auto mbuilder = ev->minfo->hilti_mbuilder; pimpl->hilti_context->resolveTypes(mbuilder->module()); ::hilti::builder::tuple::element_list vals; int i = 0; for ( auto e : ev->expr_accessors ) { auto val = mbuilder->addTmp("val", ::hilti::builder::type::byName("LibBro::BroVal")); if ( e->expr == "$conn" ) { mbuilder->builder()->addInstruction(val, ::hilti::instruction::flow::CallResult, ::hilti::builder::id::create("LibBro::cookie_to_conn_val"), ::hilti::builder::tuple::create( { ::hilti::builder::id::create("cookie") } )); } else if ( e->expr == "$file" ) { mbuilder->builder()->addInstruction(val, ::hilti::instruction::flow::CallResult, ::hilti::builder::id::create("LibBro::cookie_to_file_val"), ::hilti::builder::tuple::create( { ::hilti::builder::id::create("cookie") } )); } else if ( e->expr == "$is_orig" ) { mbuilder->builder()->addInstruction(val, ::hilti::instruction::flow::CallResult, ::hilti::builder::id::create("LibBro::cookie_to_is_orig"), ::hilti::builder::tuple::create( { ::hilti::builder::id::create("cookie") } )); } else { auto tmp = mbuilder->addTmp("t", e->htype); auto func_id = e->hlt_func ? e->hlt_func->id() : ::hilti::builder::id::node("null-function>"); auto args = ::hilti::builder::tuple::element_list(); for ( auto m : ev->unit_type->scope()->map() ) { auto n = (m.first != "$$" ? m.first : "__dollardollar"); auto t = ::ast::tryCast<::binpac::expression::ParserState>(m.second->front()); if ( t ) args.push_back(::hilti::builder::id::create(n)); } args.push_back(::hilti::builder::id::create("cookie")); mbuilder->builder()->addInstruction(tmp, ::hilti::instruction::flow::CallResult, ::hilti::builder::id::create(func_id), ::hilti::builder::tuple::create(args)); ev->minfo->value_converter->Convert(tmp, val, e->btype, ev->bro_event_type->AsFuncType()->Args()->FieldType(i)); } vals.push_back(val); i++; } auto canon_name = ::util::strreplace(ev->name, "::", "_"); auto handler = mbuilder->addGlobal(util::fmt("__bro_handler_%s_%p", canon_name, ev), ::hilti::builder::type::byName("LibBro::BroEventHandler")); auto cond = mbuilder->addTmp("no_handler", ::hilti::builder::boolean::type()); mbuilder->builder()->addInstruction(cond, ::hilti::instruction::operator_::Equal, handler, ::hilti::builder::caddr::create()); auto blocks = mbuilder->builder()->addIf(cond); auto block_true = std::get<0>(blocks); auto block_cont = std::get<1>(blocks); mbuilder->pushBuilder(block_true); mbuilder->builder()->addInstruction(handler, ::hilti::instruction::flow::CallResult, ::hilti::builder::id::create("LibBro::get_event_handler"), ::hilti::builder::tuple::create({ ::hilti::builder::bytes::create(ev->name) })); mbuilder->builder()->addInstruction(::hilti::instruction::flow::Jump, block_cont->block()); mbuilder->popBuilder(block_true); mbuilder->pushBuilder(block_cont); mbuilder->builder()->addInstruction(::hilti::instruction::flow::CallVoid, ::hilti::builder::id::create("LibBro::raise_event"), ::hilti::builder::tuple::create({ handler, ::hilti::builder::tuple::create(vals) } )); return true; } bool Manager::CreateHiltiEventFunctionBodyForHilti(Pac2EventInfo* ev) { assert(ev->bro_event_handler->LocalHandler()); auto mbuilder = ev->minfo->hilti_mbuilder; auto conversion_builder = mbuilder->ConversionBuilder(); ::hilti::builder::tuple::element_list args; int i = 0; for ( auto e : ev->expr_accessors ) { if ( e->expr == "$conn" ) { auto conn_val = mbuilder->addTmp("conn_val", ::hilti::builder::type::byName("LibBro::BroVal")); mbuilder->builder()->addInstruction(conn_val, ::hilti::instruction::flow::CallResult, ::hilti::builder::id::create("LibBro::cookie_to_conn_val"), ::hilti::builder::tuple::create( { ::hilti::builder::id::create("cookie") } )); auto arg = conversion_builder->ConvertBroToHilti(conn_val, ::connection_type, false); args.push_back(arg); } else if ( e->expr == "$file" ) { auto fa_val = mbuilder->addTmp("file_val", ::hilti::builder::type::byName("LibBro::BroVal")); mbuilder->builder()->addInstruction(fa_val, ::hilti::instruction::flow::CallResult, ::hilti::builder::id::create("LibBro::cookie_to_file_val"), ::hilti::builder::tuple::create( { ::hilti::builder::id::create("cookie") } )); auto arg = conversion_builder->ConvertBroToHilti(fa_val, ::fa_file_type, false); args.push_back(arg); } else if ( e->expr == "$is_orig" ) { auto arg = mbuilder->addTmp("is_orig", ::hilti::builder::boolean::type()); mbuilder->builder()->addInstruction(arg, ::hilti::instruction::flow::CallResult, ::hilti::builder::id::create("LibBro::cookie_to_is_orig_boolean"), ::hilti::builder::tuple::create( { ::hilti::builder::id::create("cookie") } )); args.push_back(arg); } else { // TODO: If BinPAC++'s and Bro's mapping to HILTI // don't match, we need to do more conversion here // ... Update: first example below for integers ... auto arg = mbuilder->addTmp("t", e->htype); auto func_id = e->hlt_func ? e->hlt_func->id() : ::hilti::builder::id::node("null-function>"); auto eargs = ::hilti::builder::tuple::element_list(); for ( auto m : ev->unit_type->scope()->map() ) { auto n = (m.first != "$$" ? m.first : "__dollardollar"); auto t = ::ast::tryCast<::binpac::expression::ParserState>(m.second->front()); if ( t ) eargs.push_back(::hilti::builder::id::create(n)); } eargs.push_back(::hilti::builder::id::create("cookie")); mbuilder->builder()->addInstruction(arg, ::hilti::instruction::flow::CallResult, ::hilti::builder::id::create(func_id), ::hilti::builder::tuple::create(eargs)); if ( auto itype = ::ast::tryCast<::hilti::type::Integer>(e->htype) ) { if ( itype->width() != 64 ) { auto arg64 = mbuilder->addTmp("t", ::hilti::builder::integer::type(64)); mbuilder->builder()->addInstruction(arg64, ::hilti::instruction::integer::ZExt, arg); arg = arg64; } } args.push_back(arg); } i++; } auto targs = ::hilti::builder::tuple::create(args); mbuilder->HiltiCallEventHilti(ev->bro_event_handler->LocalHandler(), targs, nullptr); return true; } void Manager::ExtractParsers(hlt_list* parsers) { hlt_exception* excpt = 0; hlt_execution_context* ctx = hlt_global_execution_context(); hlt_iterator_list i = hlt_list_begin(parsers, &excpt, ctx); hlt_iterator_list end = hlt_list_end(parsers, &excpt, ctx); std::map<string, binpac_parser*> parser_map; while ( ! (hlt_iterator_list_eq(i, end, &excpt, ctx) || excpt) ) { binpac_parser* p = *(binpac_parser**) hlt_iterator_list_deref(i, &excpt, ctx); char* name = hlt_string_to_native(p->name, &excpt, ctx); parser_map.insert(std::make_tuple(name, p)); hlt_free(name); i = hlt_iterator_list_incr(i, &excpt, ctx); } for ( auto a : pimpl->pac2_analyzers ) { if ( a->unit_name_orig.size() ) { auto i = parser_map.find(a->unit_name_orig); if ( i != parser_map.end() ) { a->parser_orig = i->second; GC_CCTOR(a->parser_orig, hlt_BinPACHilti_Parser, ctx); } } if ( a->unit_name_resp.size() ) { auto i = parser_map.find(a->unit_name_resp); if ( i != parser_map.end() ) { a->parser_resp = i->second; GC_CCTOR(a->parser_resp, hlt_BinPACHilti_Parser, ctx); } } } for ( auto a : pimpl->pac2_file_analyzers ) { if ( a->unit_name.empty() ) continue; auto i = parser_map.find(a->unit_name); if ( i != parser_map.end() ) { a->parser = i->second; GC_CCTOR(a->parser, hlt_BinPACHilti_Parser, ctx); } } for ( auto p : parser_map ) { GC_DTOR(p.second, hlt_BinPACHilti_Parser, ctx); } } string Manager::AnalyzerName(const analyzer::Tag& tag) { return pimpl->pac2_analyzers_by_subtype[tag.Subtype()]->name; } string Manager::FileAnalyzerName(const file_analysis::Tag& tag) { return pimpl->pac2_file_analyzers_by_subtype[tag.Subtype()]->name; } struct __binpac_parser* Manager::ParserForAnalyzer(const analyzer::Tag& tag, bool is_orig) { if ( is_orig ) return pimpl->pac2_analyzers_by_subtype[tag.Subtype()]->parser_orig; else return pimpl->pac2_analyzers_by_subtype[tag.Subtype()]->parser_resp; } struct __binpac_parser* Manager::ParserForFileAnalyzer(const file_analysis::Tag& tag) { return pimpl->pac2_file_analyzers_by_subtype[tag.Subtype()]->parser; } analyzer::Tag Manager::TagForAnalyzer(const analyzer::Tag& tag) { analyzer::Tag replaces = pimpl->pac2_analyzers_by_subtype[tag.Subtype()]->replaces_tag; return replaces ? replaces : tag; } std::pair<bool, Val*> Manager::RuntimeCallFunction(const Func* func, Frame* parent, val_list* args) { Val* result = 0; if ( ! (func->HasBodies() || HaveCustomHandler(func)) ) // For events raised directly, rather than being queued, we // arrive here. Ignore if we don't have a handler. // // TODO: Should these direct events have a separate entry // point in the plugin API? result = new Val(0, TYPE_VOID); else result = RuntimeCallFunctionInternal(func, args); if ( result ) { // We use a VOID value internally to be able to pass around a // non-null pointer. However, Bro's plugin API has changed, // it now wants null for a void function. if ( result->Type()->Tag() == TYPE_VOID ) { Unref(result); result = 0; } return std::pair<bool, Val*>(true, result); } else return std::pair<bool, Val*>(false, 0); } bool Manager::HaveCustomHandler(const ::Func* ev) { return pimpl->compiler->HaveCustomHandler(ev); } bool Manager::HaveCustomHiltiCode() { return pimpl->hlt_files.size(); } bool Manager::RuntimeRaiseEvent(Event* event) { auto efunc = event->Handler()->LocalHandler(); if ( efunc && (efunc->HasBodies() || HaveCustomHandler(efunc)) ) { auto result = RuntimeCallFunctionInternal(efunc, event->Args()); Unref(result); } val_list* args = event->Args(); loop_over_list(*args, i) Unref((*args)[i]); Unref(event); return true; } ::Val* Manager::RuntimeCallFunctionInternal(const ::Func* func, val_list* args) { // TODO: We should cache the nativeFunction() lookup here between // calls to speed it up, unless that method itself is already as fast // as we would that get that way. assert(pimpl->llvm_linked_module); assert(pimpl->llvm_execution_engine); auto id = func->GetUniqueFuncID(); void* native = 0; if ( pimpl->native_functions.size() <= id ) pimpl->native_functions.resize(id + 1); native = pimpl->native_functions[id]; if ( ! native ) { // First try again to get it, it could be a custom user // function that we haven't used yet. auto symbol = pimpl->compiler->HiltiStubSymbol(func, nullptr, true); native = pimpl->hilti_context->nativeFunction(pimpl->llvm_linked_module, pimpl->llvm_execution_engine, symbol); if ( native ) pimpl->native_functions[id] = native; else { reporter::warning(::util::fmt("no HILTI function %s for %s", symbol, func->Name())); return new ::Val(0, ::TYPE_ERROR); } } hlt_exception* excpt = 0; hlt_execution_context* ctx = hlt_global_execution_context(); __hlt_context_clear_exception(ctx); // TODO: HILTI should take care of this. #ifdef BRO_PLUGIN_HAVE_PROFILING profile_update(PROFILE_HILTI_LAND, PROFILE_START); #endif ::Val* result = nullptr; switch ( args->length() ) { case 0: typedef ::Val* (*e0)(hlt_exception**, hlt_execution_context*); result = (*(e0)native)(&excpt, ctx); break; case 1: typedef ::Val* (*e1)(Val*, hlt_exception**, hlt_execution_context*); result = (*(e1)native)((*args)[0], &excpt, ctx); break; case 2: typedef ::Val* (*e2)(Val*, Val*, hlt_exception**, hlt_execution_context*); result = (*(e2)native)((*args)[0], (*args)[1], &excpt, ctx); break; case 3: typedef ::Val* (*e3)(Val*, Val*, Val*, hlt_exception**, hlt_execution_context*); result = (*(e3)native)((*args)[0], (*args)[1], (*args)[2], &excpt, ctx); break; case 4: typedef ::Val* (*e4)(Val*, Val*, Val*, Val*, hlt_exception**, hlt_execution_context*); result = (*(e4)native)((*args)[0], (*args)[1], (*args)[2], (*args)[3], &excpt, ctx); break; case 5: typedef ::Val* (*e5)(Val*, Val*, Val*, Val*, Val*, hlt_exception**, hlt_execution_context*); result = (*(e5)native)((*args)[0], (*args)[1], (*args)[2], (*args)[3], (*args)[4], &excpt, ctx); break; default: reporter::error(::util::fmt("function/event %s with %d parameters not yet supported in RuntimeCallFunction()", func->Name(), args->length())); return new ::Val(0, ::TYPE_ERROR); } #ifdef BRO_PLUGIN_HAVE_PROFILING profile_update(PROFILE_HILTI_LAND, PROFILE_STOP); #endif if ( excpt ) { hlt_exception* etmp = 0; char* e = hlt_exception_to_asciiz(excpt, &etmp, ctx); reporter::error(::util::fmt("event/function %s raised exception: %s", func->Name(), e)); hlt_free(e); GC_DTOR(excpt, hlt_exception, ctx); } return result ? result : new ::Val(0, ::TYPE_VOID); } void Manager::RegisterNativeFunction(const ::Func* func, void* native) { auto id = func->GetUniqueFuncID(); pimpl->native_functions[id] = native; } bool Manager::WantEvent(Pac2EventInfo* ev) { EventHandlerPtr handler = event_registry->Lookup(ev->name.c_str()); return handler || pimpl->compile_all; } bool Manager::WantEvent(shared_ptr<Pac2EventInfo> ev) { return WantEvent(ev.get()); } void Manager::DumpDebug() { std::cerr << "BinPAC++ analyzer summary:" << std::endl; std::cerr << std::endl; std::cerr << " Modules" << std::endl; for ( PIMPL::pac2_module_list::iterator i = pimpl->pac2_modules.begin(); i != pimpl->pac2_modules.end(); i++ ) { auto minfo = *i; std::cerr << " " << minfo->module->id()->name() << " (from " << minfo->path << ")" << std::endl; } std::cerr << std::endl; std::cerr << " Protocol Analyzers" << std::endl; string location; // Location where the analyzer was defined. string name; // Name of the analyzer. std::list<Port> ports; // The ports associated with the analyzer. string unit_name_orig; // The fully-qualified name of the unit type to parse the originator side. string unit_name_resp; // The fully-qualified name of the unit type to parse the originator side. shared_ptr<binpac::type::Unit> unit_orig; // The type of the unit to parse the originator side. shared_ptr<binpac::type::Unit> unit_resp; // The type of the unit to parse the originator side. for ( auto i = pimpl->pac2_analyzers.begin(); i != pimpl->pac2_analyzers.end(); i++ ) { auto a = *i; string proto = transportToString(a->proto); std::list<string> ports; for ( auto p : a->ports ) ports.push_back(p); std::cerr << " " << a->name << " [" << proto << ", subtype " << a->tag.Subtype() << "] [" << a->location << "]" << std::endl; std::cerr << " Ports : " << (ports.size() ? ::util::strjoin(ports, ", ") : "none") << std::endl; std::cerr << " Orig parser: " << (a->unit_orig ? a->unit_orig->unit_type->id()->pathAsString() : "none" ) << " "; string desc = "not compiled"; if ( a->parser_orig ) { assert(a->parser_orig); hlt_exception* excpt = 0; auto s = hlt_string_to_native(a->parser_orig->description, &excpt, hlt_global_execution_context()); desc = ::util::fmt("compiled; unit description: \"%s\"", s); hlt_free(s); } std::cerr << "[" << desc << "]" << std::endl; std::cerr << " Resp parser: " << (a->unit_resp ? a->unit_resp->unit_type->id()->pathAsString() : "none" ) << " "; desc = "not compiled"; if ( a->parser_resp ) { assert(a->parser_resp); hlt_exception* excpt = 0; auto s = hlt_string_to_native(a->parser_resp->description, &excpt, hlt_global_execution_context()); desc = ::util::fmt("compiled; unit description: \"%s\"", s); hlt_free(s); } std::cerr << "[" << desc << "]" << std::endl; std::cerr << std::endl; } std::cerr << std::endl; std::cerr << " File Analyzers" << std::endl; for ( auto i = pimpl->pac2_file_analyzers.begin(); i != pimpl->pac2_file_analyzers.end(); i++ ) { auto a = *i; std::cerr << " " << a->name << " [" << "subtype " << a->tag.Subtype() << "] [" << a->location << "]" << std::endl; std::cerr << " MIME types : " << (a->mime_types.size() ? ::util::strjoin(a->mime_types, ", ") : "none") << std::endl; std::cerr << " Parser : " << (a->unit ? a->unit->unit_type->id()->pathAsString() : "none" ) << " "; string desc = "not compiled"; if ( a->parser ) { hlt_exception* excpt = 0; auto s = hlt_string_to_native(a->parser->description, &excpt, hlt_global_execution_context()); desc = ::util::fmt("compiled; unit description: \"%s\"", s); hlt_free(s); } std::cerr << "[" << desc << "]" << std::endl; std::cerr << std::endl; } std::cerr << std::endl; std::cerr << " Units" << std::endl; for ( Pac2AST::unit_map::const_iterator i = pimpl->pac2_ast->Units().begin(); i != pimpl->pac2_ast->Units().end(); i++ ) { auto uinfo = i->second; std::cerr << " " << uinfo->name << std::endl; } std::cerr << std::endl; std::cerr << " Events" << std::endl; for ( PIMPL::pac2_event_list::iterator i = pimpl->pac2_events.begin(); i != pimpl->pac2_events.end(); i++ ) { auto ev = *i; string args; for ( auto e : ev->expr_accessors ) { if ( args.size() ) args += ", "; if ( e->btype ) args += ::util::fmt("arg%d: %s", e->nr, e->btype->render()); else args += e->expr; } std::cerr << " * " << ev->unit << "/" << ev->hook_local << " -> " << ev->name << '(' << args << ") [unit: " << ev->unit_module->id()->name() << "] " << ev->location << "]" << std::endl; std::cerr << " - [Bro] " << ev->name << ": "; if ( ev->bro_event_type ) { ODesc d; d.SetShort(); ev->bro_event_type->Describe(&d); std::cerr << d.Description() << " [" << (ev->bro_event_handler ? "has handler" : "no handler") << "]" << std::endl; } else std::cerr << "(not created)" << std::endl; std::cerr << " - [BinPAC++] "; if ( ev->pac2_hook ) { auto id = ev->pac2_hook->id(); auto hook = ev->pac2_hook->hook(); std::cerr << id->pathAsString() << std::endl; } else std::cerr << "(not created)" << std::endl; std::cerr << " - [HILTI] "; if ( ev->hilti_raise ) { auto id = ev->hilti_raise->id(); auto func = ev->hilti_raise->function(); std::cerr << id->pathAsString() << ": " << func->type()->render() << std::endl; } else std::cerr << "(not created)" << std::endl; std::cerr << std::endl; } std::cerr << std::endl; } void Manager::DumpCode(bool all) { #if 0 std::cerr << ::util::fmt("\n=== Final code: %s.pac2\n", pimpl->pac2_module->id()->name()) << std::endl; if ( pimpl->pac2_context && pimpl->pac2_module ) pimpl->pac2_context->print(pimpl->pac2_module, std::cerr); else std::cerr << "(No BinPAC++ code generated.)" << std::endl; if ( ! all ) { std::cerr << ::util::fmt("\n=== Final code: %s.hlt\n", pimpl->hilti_module->id()->name()) << std::endl; if ( pimpl->hilti_context && pimpl->hilti_module ) pimpl->hilti_context->print(pimpl->hilti_module, std::cerr); else std::cerr << "(No HILTI code generated.)" << std::endl; } else { for ( auto m : pimpl->hilti_modules ) { std::cerr << ::util::fmt("\n=== Final code: %s.hlt\n", m->id()->name()) << std::endl; pimpl->hilti_context->print(m, std::cerr); } } #endif } void Manager::DumpMemoryStatistics() { hlt_memory_stats stats = hlt_memory_statistics(); uint64_t heap = stats.size_heap / 1024 / 1024; uint64_t alloced = stats.size_alloced / 1024 / 1024; uint64_t size_stacks = stats.size_stacks / 1024 / 1024; uint64_t num_stacks = stats.num_stacks; uint64_t total_refs = stats.num_refs; uint64_t current_allocs = stats.num_allocs - stats.num_deallocs; fprintf(stderr, "%" PRIu64 "M heap, " "%" PRIu64 "M alloced, " "%" PRIu64 "M in %" PRIu64 " stacks, " "%" PRIu64 " allocations, " "%" PRIu64 " totals refs" "\n", heap, alloced, size_stacks, num_stacks, current_allocs, total_refs); }
[ "robin@icir.org" ]
robin@icir.org
a19afbf05abe528c4f58e81ca8c9a53214cdc441
7aa0db9b8bdafe14adfd48abf4ca3d8fcdbfcfe7
/Dfs.cpp
f8bc3dd145d9acc8b1e48bcf818e640bce127d18
[]
no_license
MonikaDjordjevic/Bubbles-game-
78e3040912682684af6dafd8bdee9974db300f62
5dd39e8c2fd75fa56df0ecc8d699bbe67886da4b
refs/heads/master
2020-12-02T21:24:07.011919
2017-07-05T11:20:28
2017-07-05T11:20:28
96,310,432
0
0
null
null
null
null
UTF-8
C++
false
false
1,213
cpp
#include "Dfs.hpp" Dfs::Dfs(GameState* gameState) { this->gameState = gameState; int x = gameState->getWidth(); int y = gameState->getHeight(); for(int i = 0; i < x; i++) { visited.push_back(std::vector<bool>()); for(int j = 0; j < y; j++) { visited.back().push_back(false); } } } void Dfs::visit(int x, int y) { if(visited[x][y]){ //sprawdzam czy juz bylo odwiedzone return; } visited [x][y] = true; //zaznaczam ze odwiedzam queuevisit(x+1, y); queuevisit(x, y+1); queuevisit(x-1, y); queuevisit(x, y-1); } void Dfs::queuevisit(int x,int y) { if(y>=gameState->getHeight() || x>=gameState->getWidth() || y<0 || x<0) { return; } if(gameState->getField(x, y) != BLANK) { return; } if(!visited [x][y]) { queue.push_back(std::make_pair(x, y)); } } void Dfs::dfs(int x, int y) { ///dostaje wspolrzedne poczatkowe a potem na visit moge sprawdzic czy poel na ktore chce sie przesunac jest true visit(x, y); while(!queue.empty()) { std::pair<int,int> para = queue.back(); queue.pop_back(); visit(para.first, para.second); } }
[ "noreply@github.com" ]
noreply@github.com
438fac877ff9eddf1d8d4af909621c8c885039a2
84c27c13a035593be9a3196e5ad455047ba5019d
/Source/Bomber/FindWayPointQueryContext.cpp
4aaf700ebf9e824248d346688ac5f78456b72c67
[]
no_license
GinoSahagun/Unreal-Engine-Bomberman
6964aa92ae92525ab80e2be103f0b33b3291483e
cc0860ac8d3de78c6cc925cfdde536cfd494720d
refs/heads/master
2021-01-09T09:36:17.207890
2017-03-22T21:13:47
2017-03-22T21:13:47
81,166,652
0
0
null
null
null
null
UTF-8
C++
false
false
1,041
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "Bomber.h" #include "FindWayPointQueryContext.h" #include "SmartAI.h" #include "EnemyAIController.h" #include "SBotWayPoint.h" /*AI INcludes*/ #include "EnvironmentQuery/EnvQueryTypes.h" #include "EnvironmentQuery/Items/EnvQueryItemType_Actor.h" void UFindWayPointQueryContext::ProvideContext(FEnvQueryInstance & QueryInstance, FEnvQueryContextData & ContextData) const { Super::ProvideContext(QueryInstance, ContextData); //Get the Owner of this Query and cast it to an actor //Then, get the actor's controller and cast to it our AIController //This code works for our case but avoid that many casts and one-liners in cpp. AEnemyAIController* myController = Cast<AEnemyAIController>((Cast<AActor>((QueryInstance.Owner).Get()))); if (myController && myController->GetSeeingPawn()) { //Set the context SeeingPawn to the provided context data UEnvQueryItemType_Actor::SetContextHelper(ContextData, myController->GetSeeingPawn()); } }
[ "sahagun.gino@gmail.com" ]
sahagun.gino@gmail.com
a59a84d47996b10753b1b8c9677540542507bd36
22729f0eb84230e5becbca11fb86707f61f81516
/src/ivcam/sr300-fw-update-device.cpp
4632907cb3336ae2d080cf5a66646b564420d353
[ "GPL-1.0-or-later", "OFL-1.1", "GPL-2.0-only", "GPL-3.0-only", "BSL-1.0", "MIT", "Apache-2.0", "LGPL-2.1-only", "LicenseRef-scancode-public-domain", "Zlib", "BSD-2-Clause", "BSD-3-Clause", "BSD-1-Clause", "Unlicense" ]
permissive
lips-hci/ae400-realsense-sdk
742cc375d421ee41c04d1934b5bec23d607f39ed
2554f30bdcbf71b5b7279fef494176f3fbd6c6c7
refs/heads/master
2023-04-27T01:57:34.504808
2023-03-21T09:21:34
2023-04-13T06:11:17
227,797,796
9
4
Apache-2.0
2023-08-25T07:42:36
2019-12-13T08:59:00
C++
UTF-8
C++
false
false
1,438
cpp
// License: Apache 2.0. See LICENSE file in root directory. // Copyright(c) 2019 Intel Corporation. All Rights Reserved. #include "sr300-fw-update-device.h" #include "ivcam-private.h" #include <chrono> #include <thread> namespace librealsense { sr300_update_device::sr300_update_device(std::shared_ptr<context> ctx, bool register_device_notifications, std::shared_ptr<platform::usb_device> usb_device) : update_device(ctx, register_device_notifications, usb_device), _name("Intel RealSense SR300 Recovery"), _product_line("SR300") { _serial_number = parse_serial_number(_serial_number_buffer); } void sr300_update_device::update(const void* fw_image, int fw_image_size, update_progress_callback_ptr callback) const { update_device::update(fw_image, fw_image_size, callback); // wait for the device to come back from recovery state, TODO: check cause std::this_thread::sleep_for(std::chrono::seconds(10)); } std::string sr300_update_device::parse_serial_number(const std::vector<uint8_t>& buffer) const { if (buffer.size() != sizeof(serial_number_data)) throw std::runtime_error("DFU - failed to parse serial number!"); std::stringstream rv; for (auto i = 0; i < ivcam::module_serial_size; i++) rv << std::setfill('0') << std::setw(2) << std::hex << static_cast<int>(buffer[i]); return rv.str(); } }
[ "timcheng@lips-hci.com" ]
timcheng@lips-hci.com
90f40fbb7b205a5bbf4872888459afa8e43de070
4a560ee9d60c7b0e0956b7c990f6c3a510ac4643
/dijskhtras.cpp
0ea4ab9238eb2cac452a8fe2086658d7e8289c3b
[]
no_license
navjot888/Dijsktras
cd066a063bbffe4ce9dfeaca968b555552325577
2ae763d62349f4c601c37f22936d84fd801e0481
refs/heads/master
2022-12-07T13:32:32.017719
2020-08-20T02:56:26
2020-08-20T02:56:26
288,237,367
1
0
null
null
null
null
UTF-8
C++
false
false
2,869
cpp
#include<iostream> #include<set> #include<list> #include<algorithm> using namespace std; typedef struct nodes { int DEST; int COST; }node; class Graph { int N; list<node> *adjList; private: void showList(int src, list<node> lt) { list<node> :: iterator i; node tempNode; for(i = lt.begin(); i != lt.end(); i++) { tempNode = *i; cout << "(" << src << ")---("<<tempNode.DEST << "|"<<tempNode.COST<<") "; } cout << endl; } public: Graph() { N = 0; } Graph(int nodeCount) { N = nodeCount; adjList = new list<node>[N]; } void addEdge(int source, int DEST, int COST) { node newNode; newNode.DEST = DEST; newNode.COST = COST; adjList[source].push_back(newNode); } void displayEdges() { for(int i = 0; i < N; i++) { list<node> tempList = adjList[i]; showList(i, tempList); } } friend void dijkstra(Graph G, int *dist, int *prev, int start); }; void dijkstra(Graph G, int *dist, int *prev, int start) { int N = G . N; for(int u = 0; u < N; u++) { dist[u] = 9999; //set as infinity prev[u] = -1; //undefined previous } dist[start] = 0; //distance of start is 0 set<int> S; //create empty set S list<int> Q; for(int u = 0; u < N; u++) { Q.push_back(u); //add each node into queue } while(!Q.empty()) { list<int> :: iterator i; i = min_element(Q.begin(), Q.end()); int u = *i; //the minimum element from queue Q.remove(u); S.insert(u); //add u in the set list<node> :: iterator it; for(it = G.adjList[u].begin(); it != G.adjList[u].end();it++) { if((dist[u]+(it-> COST)) < dist[it-> DEST])//(u,v) { dist[it-> DEST] = (dist[u]+(it-> COST)); prev[it->DEST] = u; } } } } main() { int N = 7; Graph G(N); int dist[N], prev[N]; int start = 0; G.addEdge(0, 1, 3); G.addEdge(0, 2, 6); G.addEdge(1, 0, 3); G.addEdge(1, 2, 2); G.addEdge(1, 3, 1); G.addEdge(2, 1, 6); G.addEdge(2, 1, 2); G.addEdge(2, 3, 1); G.addEdge(2, 4, 4); G.addEdge(2, 5, 2); G.addEdge(3, 1, 1); G.addEdge(3, 2, 1); G.addEdge(3, 4, 2); G.addEdge(3, 6, 4); G.addEdge(4, 2, 4); G.addEdge(4, 3, 2); G.addEdge(4, 5, 2); G.addEdge(4, 6, 1); G.addEdge(5, 2, 2); G.addEdge(5, 4, 2); G.addEdge(5, 6, 1); G.addEdge(6, 3, 4); G.addEdge(6, 4, 1); G.addEdge(6, 5, 1); dijkstra(G, dist, prev, start); for(int i = 0; i < N; i++) if(i != start) cout<<start<<" to "<<i<<", Cost: "<<dist[i]<<" Previous: "<<prev[i]<<endl; }
[ "noreply@github.com" ]
noreply@github.com
ea872b127cad3ed48c33cb77fbea0666c5f5487b
00dc94032f9471ec209f768917d5657b656df753
/Proj_Aula/ClassAbstract/FiguraGeometrica.h
28c8a56912088dc00cc5b43300a77a75ef222b21
[]
no_license
ninjanazal/P3D_Lessons
7e0b8396849308021bb10f3fbb314bd9270a8d91
ed3f3cc4e98d5b132a0269449e337fcfbdbbc2f0
refs/heads/master
2021-03-18T09:28:59.431114
2020-05-15T14:56:41
2020-05-15T14:56:41
247,063,052
0
0
null
null
null
null
IBM852
C++
false
false
444
h
#pragma once #include <iostream> namespace ClassAbstract { class FiguraGeometrica { public: //FiguraGeometrica(); // construtor virtual ~FiguraGeometrica() { std::cout << "\nForma Destruida!\n"; } //destrutor virtual float Perimetro() = 0; // definišao do metodo de calculo do perimetro virtual float Area() = 0; //definišao do metodo de calculo da area virtual void Imprime() = 0; // definišao de metrodo para impressao }; }
[ "euricomartinss@gmail.com" ]
euricomartinss@gmail.com
2a88f31720fad017b55fbcb77a13b0ed786683ca
3ed23524a9e6c732a2d9b4261245ba2f00398f24
/tiny_collada_parser/tiny_collada_parser.cpp
4df994d2e30245b4e17635d51613803dbd176b7f
[ "Zlib" ]
permissive
doscoy/tiny_collada_parser
c5fee01198a31a621ee6baf2e38d756ef7b7d1d8
abb655071e8f04649b664aa969414e61c7af28bd
refs/heads/master
2016-08-05T10:35:01.873505
2014-01-13T06:28:57
2014-01-13T06:28:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
43,599
cpp
// mcp_parser.cpp #include "tiny_collada_parser.hpp" #include "third_party_libs/tinyxml2/tinyxml2.h" #include <cassert> #if 1 #define TINY_COLLADA_DEBUG 1 #else #define TYNE_COLLADA_DEBUG 0 #endif #if TINY_COLLADA_DEBUG #define TINY_COLLADA_TRACE(...) ::std::printf(__VA_ARGS__) #define TINY_COLLADA_ASSERT(exp) assert(exp) #else #define TINY_COLLADA_TRACE(...) (void)0 #define TINY_COLLADA_ASSERT(exp) (void)0 #endif namespace xml = tinyxml2; namespace { const char* INPUT_NODE_NAME = "input"; const char* SOURCE_NODE_NAME = "source"; const char* SEMANTIC_ATTR_NAME = "semantic"; const char* MESH_NODE_NAME = "mesh"; const char* GEOMETRY_NODE_NAME = "geometry"; const char* INDEX_NODE_NAME = "p"; const char* STRIDE_ATTR_NAME = "stride"; const char* ACCESSOR_NODE_NAME = "accessor"; const char* TECH_COMMON_NODE_NAME = "technique_common"; const char* LIB_GEOMETRY_NODE_NAME = "library_geometries"; const char* ID_ATTR_NAME = "id"; const char* OFFSET_ATTR_NAME = "offset"; const char* VERTICES_NODE_NAME = "vertices"; const char* COUNT_ATTR_NAME = "count"; void parseEffect( std::shared_ptr<tc::ColladaMaterial>& material, const xml::XMLElement* shading ); //---------------------------------------------------------------------- // child elementを取得する // 大文字小文字がバージョンによってバラバラな場合はここで吸収する const xml::XMLElement* firstChildElement( const xml::XMLElement* parent, const char* const child_name ) { TINY_COLLADA_ASSERT(parent); const xml::XMLElement* child = parent->FirstChildElement(child_name); return child; } //---------------------------------------------------------------------- // attributeを取得する // 大文字小文字がバージョンによってバラバラな場合はここで吸収する const char* getElementAttribute( const xml::XMLElement* element, const char* const attri_name ) { TINY_COLLADA_ASSERT(element); return element->Attribute(attri_name); } //====================================================================== struct PrimitiveSelector { const char* name_; tc::ColladaMesh::PrimitiveType type_; }; #define PRIMITIVE_TYPE_NUM 2 const PrimitiveSelector PRIMITIVE_TYPE_SELECT[PRIMITIVE_TYPE_NUM] = { {"triangles", tc::ColladaMesh::PRIMITIVE_TRIANGLES}, {"polylist", tc::ColladaMesh::PRIMITIVE_TRIANGLES} }; const size_t STRING_COMP_SIZE = 64; //====================================================================== // visual_sceneノードデータ struct VisualSceneData { VisualSceneData() : type_(TYPE_UNKNOWN) , url_(nullptr) , matrix_() , bind_material_(nullptr) {} void dump() { TINY_COLLADA_TRACE("VisualSceneNode:type = %d ", type_); if (url_) { TINY_COLLADA_TRACE("url = %s ", url_); } if (bind_material_) { TINY_COLLADA_TRACE("bind_material = %s", bind_material_); } TINY_COLLADA_TRACE(" matrix (%lu)", matrix_.size()); for (int i = 0; i < matrix_.size(); ++i) { if ((i % 4) == 0) { TINY_COLLADA_TRACE("\n"); } TINY_COLLADA_TRACE(" %f", matrix_[i]); } TINY_COLLADA_TRACE("\n"); } enum Type { TYPE_GEOMETRY, TYPE_UNKNOWN, }; Type type_; const char* url_; std::vector<float> matrix_; const char* bind_material_; }; using VisualScenes = std::vector<std::shared_ptr<VisualSceneData>>; //====================================================================== // material struct MaterialData { const char* id_; const char* url_; void dump() { TINY_COLLADA_TRACE("MaterialData:id %s url %s\n", id_, url_); } }; using Materials = std::vector<std::shared_ptr<MaterialData>>; //====================================================================== // material effect struct EffectData { struct Surface { Surface() : sid_(nullptr) , init_from_(nullptr) {} void setupSurface( const char* const sid, const xml::XMLElement* surface ) { sid_ = sid; const xml::XMLElement* init_from = firstChildElement(surface, "init_from"); init_from_ = init_from->GetText(); } void dump() const { printf("Surface:"); if (sid_) { printf("sid = %s", sid_); } if (init_from_) { printf ("init from %s", init_from_); } printf("\n"); } const char* sid_; const char* init_from_; }; struct Sampler2D { Sampler2D() : sid_(nullptr) , source_(nullptr) , min_filter_(nullptr) , mag_filter_(nullptr) {} void setupSampler2D( const char* const sid, const xml::XMLElement* sampler2d ) { // sid sid_ = sid; // source const xml::XMLElement* source = firstChildElement(sampler2d, "source"); if (source) { source_ = source->GetText(); } // min filter const xml::XMLElement* min_filter = firstChildElement(sampler2d, "minfilter"); if (min_filter) { min_filter_ = min_filter->GetText(); } // mag filter const xml::XMLElement* mag_filter = firstChildElement(sampler2d, "magfilter"); if (mag_filter) { mag_filter_ = mag_filter->GetText(); } } void dump() const { TINY_COLLADA_TRACE("Sampler2D: sid = %s source = %s minfil = %s magfil = %s\n", sid_, source_, min_filter_, mag_filter_); } const char* sid_; const char* source_; const char* min_filter_; const char* mag_filter_; }; void setupEffectData( const xml::XMLElement* effect ) { const char* SHADING_NAME[3] = { "blinn", "phong", "----" }; // id id_ = getElementAttribute(effect, "id"); const xml::XMLElement* profile_common = firstChildElement(effect, "profile_COMMON"); // マテリアルデータ取得 const xml::XMLElement* technique = firstChildElement(profile_common, "technique"); material_ = std::make_shared<tc::ColladaMaterial>(); id_ = getElementAttribute(effect, "id"); for (int shade_idx = 0; shade_idx < 3; ++shade_idx) { const xml::XMLElement* shading = firstChildElement(technique, SHADING_NAME[shade_idx]); if (shading) { // シェーディング material_->shading_name_ = SHADING_NAME[shade_idx]; parseEffect(material_, shading); break; } } // newparam const xml::XMLElement* newparam = firstChildElement(profile_common, "newparam"); while (newparam) { const char* sid = getElementAttribute(newparam, "sid"); const xml::XMLElement* surface = firstChildElement(newparam, "surface"); const xml::XMLElement* sampler2d = firstChildElement(newparam, "sampler2D"); if (surface) { surface_ = std::make_shared<Surface>(); surface_->setupSurface(sid, surface); } else if (sampler2d) { sampler2d_ = std::make_shared<Sampler2D>(); sampler2d_->setupSampler2D(sid, sampler2d); } newparam = newparam->NextSiblingElement("newparam"); } } void dump() { TINY_COLLADA_TRACE("EffectData: id = %s\n", id_); if (material_) { material_->dump(); } if (sampler2d_) { sampler2d_->dump(); } if (surface_) { surface_->dump(); } } EffectData() : id_(nullptr) , material_(nullptr) , sampler2d_(nullptr) , surface_(nullptr) {} const char* id_; std::shared_ptr<tc::ColladaMaterial> material_; std::shared_ptr<Sampler2D> sampler2d_; std::shared_ptr<Surface> surface_; }; using Effects = std::vector<std::shared_ptr<EffectData>>; //====================================================================== // textures struct ImageData { void dump() { TINY_COLLADA_TRACE("ImageData: id = %s init_from = %s\n", id_, init_from_); } ImageData() : id_(nullptr) , init_from_(nullptr) {} const char* id_; const char* init_from_; }; using Images = std::vector<std::shared_ptr<ImageData>>; //====================================================================== // インプットデータ struct InputData { InputData() : semantic_(nullptr) , source_(nullptr) , offset_(0) {} void dump() { TINY_COLLADA_TRACE("InputData:semantic = "); if (semantic_) { printf("%s", semantic_); } TINY_COLLADA_TRACE(" source = "); if (source_) { printf("%s", source_); } TINY_COLLADA_TRACE(" offset = %d\n", offset_); } const char* semantic_; const char* source_; int offset_; }; //====================================================================== // ソースデータ struct SourceData { SourceData() : id_(nullptr) , stride_(0) , data_() , input_(nullptr) {} void dump() { TINY_COLLADA_TRACE("SourceData:id = %s stride = %d\n", id_, stride_); } const char* id_; uint32_t stride_; std::vector<float> data_; InputData* input_; }; //====================================================================== // メッシュ情報 struct MeshInformation { //---------------------------------------------------------------------- // 指定idのinputを探す InputData* searchInputBySource( const char* const id ) { for (int i = 0; i < inputs_.size(); ++i) { InputData* input = &inputs_[i]; TINY_COLLADA_TRACE("search %s == %s\n", id, input->source_); if (std::strncmp(input->source_, id, STRING_COMP_SIZE) == 0){ return input; } } return nullptr; } //---------------------------------------------------------------------- // 指定semanticのsourceを探す SourceData* searchSourceBySemantic( const char* const semantic ) { size_t sources_size = sources_.size(); TINY_COLLADA_TRACE("\nsearchSourceBySemantic %s %lu\n", semantic, sources_size); for (int i = 0; i < sources_size; ++i) { SourceData* source = &sources_[i]; InputData* input = source->input_; if (!input) { TINY_COLLADA_TRACE("no input - %s\n", source->id_); continue; } TINY_COLLADA_TRACE(" %s %s\n", input->semantic_, input->source_); if (std::strncmp(input->semantic_, semantic, STRING_COMP_SIZE) == 0) { TINY_COLLADA_TRACE("%s - %s [%s] FOUND.\n", __FUNCTION__, semantic, input->source_); return source; } } TINY_COLLADA_TRACE("%s - %s NOT FOUND.\n", __FUNCTION__, semantic); return nullptr; } //---------------------------------------------------------------------- // inputのインデックスオフセット幅を取得 int getIndexStride() const { int max_offset = 0; for (int i = 0; i < inputs_.size(); ++i) { int offset = inputs_[i].offset_; if (offset > max_offset) { max_offset = offset; } } return max_offset + 1; } //---------------------------------------------------------------------- // データ表示 void dump() { for (int i = 0; i < sources_.size(); ++i) { sources_[i].dump(); } for (int i = 0; i < inputs_.size(); ++i) { inputs_[i].dump(); } } tc::Indices raw_indices_; std::vector<char> face_count_; std::vector<SourceData> sources_; std::vector<InputData> inputs_; }; //---------------------------------------------------------------------- // ストライド幅を取得 uint32_t getStride( const xml::XMLElement* source_node ){ const xml::XMLElement* technique_common = firstChildElement( source_node, TECH_COMMON_NODE_NAME ); const xml::XMLElement* accessor = firstChildElement( technique_common, ACCESSOR_NODE_NAME ); uint32_t stride; int check = accessor->QueryUnsignedAttribute(STRIDE_ATTR_NAME, &stride); if (check == xml::XML_NO_ATTRIBUTE) { stride = 1; } return stride; } //---------------------------------------------------------------------- // 配列データ読み込み template <typename T> void readArray( const char* text, std::vector<T>* container ){ char* value_str = std::strtok(const_cast<char*>(text), " "); while (value_str) { T v = static_cast<T>(atof(value_str)); container->push_back(v); value_str = std::strtok(nullptr, " "); } } //---------------------------------------------------------------------- // ソース解析 void readSourceNode( const xml::XMLElement* const source_node, SourceData* out ) { const int ARRAY_TYPE_MAX = 2; char array_types[ARRAY_TYPE_MAX][15] = { "float_array", "int_array" }; for (int i = 0; i < ARRAY_TYPE_MAX; ++i) { const xml::XMLElement* array_node = firstChildElement( source_node, array_types[i] ); if (!array_node) { continue; } // データのストライドを取得 out->stride_ = getStride(source_node); const char* text = array_node->GetText(); // データ数分のメモリをあらかじめリザーブ size_t data_count = 0; const char* count_str = getElementAttribute(array_node, COUNT_ATTR_NAME); if (count_str) { data_count = std::atoi(count_str); } TINY_COLLADA_TRACE("reserve %lu\n", data_count); out->data_.reserve(data_count); // データ取得 readArray(text, &out->data_); } } //---------------------------------------------------------------------- // プリミティブノード取得 const xml::XMLElement* getPrimitiveNode( const xml::XMLElement* mesh_node ) { // どのデータ構造でインデックスをもっているか調査 for (int prim_idx = 0; prim_idx < PRIMITIVE_TYPE_NUM; ++prim_idx) { // 読み込めたら存在している const xml::XMLElement* primitive_node = firstChildElement( mesh_node, PRIMITIVE_TYPE_SELECT[prim_idx].name_ ); if (primitive_node) { return primitive_node; } } return nullptr; } //---------------------------------------------------------------------- // プリミティブタイプ取得 tc::ColladaMesh::PrimitiveType getPrimitiveType( const xml::XMLElement* mesh_node ) { // どのデータ構造でインデックスをもっているか調査 for (int prim_idx = 0; prim_idx < PRIMITIVE_TYPE_NUM; ++prim_idx) { // 読み込めたら存在している const xml::XMLElement* primitive_node = firstChildElement( mesh_node, PRIMITIVE_TYPE_SELECT[prim_idx].name_ ); if (primitive_node) { return PRIMITIVE_TYPE_SELECT[prim_idx].type_; } } return tc::ColladaMesh::UNKNOWN_TYPE; } //---------------------------------------------------------------------- // visual scene読み込み void collectVisualSceneNode( VisualScenes& out, const xml::XMLElement* visual_scene_root ) { const xml::XMLElement* visual_scene = firstChildElement(visual_scene_root, "visual_scene"); while (visual_scene) { const xml::XMLElement* visual_scene_node = firstChildElement(visual_scene, "node"); while (visual_scene_node) { std::shared_ptr<VisualSceneData> vs = std::make_shared<VisualSceneData>(); // 行列取得 const xml::XMLElement* matrix_node = firstChildElement(visual_scene_node, "matrix"); const char* mtx_text = matrix_node->GetText(); readArray(mtx_text, &vs->matrix_); // タイプ判定 const xml::XMLElement* instance_geometry = firstChildElement(visual_scene_node, "instance_geometry"); if (instance_geometry) { // ジオメトリノードだった vs->type_ = VisualSceneData::TYPE_GEOMETRY; const char* attr_url = getElementAttribute(instance_geometry, "url"); if (attr_url[0] == '#') { attr_url = &attr_url[1]; } vs->url_ = attr_url; // マテリアル取得 const xml::XMLElement* bind_material = firstChildElement( instance_geometry, "bind_material" ); if (bind_material) { // マテリアル設定があった const xml::XMLElement* technique_common = firstChildElement( bind_material, "technique_common" ); const xml::XMLElement* instance_material = firstChildElement( technique_common, "instance_material" ); const char* attr_target = getElementAttribute( instance_material, "target" ); if (attr_target[0] == '#') { attr_target = &attr_target[1]; } vs->bind_material_ = attr_target; } } out.push_back(vs); visual_scene_node = visual_scene_node->NextSiblingElement("node"); } visual_scene = visual_scene->NextSiblingElement("visual_scene"); } } //---------------------------------------------------------------------- // マテリアルノード読み込み void collectMaterialNode( Materials& out, const xml::XMLElement* library_materials ) { const xml::XMLElement* material = firstChildElement(library_materials, "material"); while (material) { const xml::XMLElement* instance_effect = firstChildElement(material, "instance_effect"); std::shared_ptr<MaterialData> md = std::make_shared<MaterialData>(); md->id_ = getElementAttribute(material, "id"); while (instance_effect) { const char* attr_url = getElementAttribute(instance_effect, "url"); if (attr_url[0] == '#') { attr_url = &attr_url[1]; } md->url_ = attr_url; instance_effect = instance_effect->NextSiblingElement("instance_effect"); } out.push_back(md); material = material->NextSiblingElement("material"); } } //---------------------------------------------------------------------- // materialノード読み込み void parseEffect( std::shared_ptr<tc::ColladaMaterial>& material, const xml::XMLElement* shading ) { // エミッション const xml::XMLElement* emission = firstChildElement(shading, "emission"); if (emission) { const xml::XMLElement* color = firstChildElement(emission, "color"); if (color) { const char* text = color->GetText(); readArray(text, &material->emission_); } } // アンビエント const xml::XMLElement* ambient = firstChildElement(shading, "ambient"); if (ambient) { const xml::XMLElement* color = firstChildElement(ambient, "color"); if (color) { const char* text = color->GetText(); readArray(text, &material->ambient_); } } // ディフューズ const xml::XMLElement* diffuse = firstChildElement(shading, "diffuse"); if (diffuse) { const xml::XMLElement* color = firstChildElement(diffuse, "color"); if (color) { const char* text = color->GetText(); readArray(text, &material->diffuse_); } } // スペキュラ const xml::XMLElement* specular = firstChildElement(shading, "specular"); if (specular) { const xml::XMLElement* color = firstChildElement(specular, "color"); if (color) { const char* text = color->GetText(); readArray(text, &material->specular_); } } // リフレクティブ const xml::XMLElement* reflective = firstChildElement(shading, "reflective"); if (reflective) { const xml::XMLElement* color = firstChildElement(reflective, "color"); if (color) { const char* text = color->GetText(); readArray(text, &material->reflective_); } } // リフレクティビティ const xml::XMLElement* reflectivity = firstChildElement(shading, "reflectivity"); if (reflectivity) { const xml::XMLElement* data = firstChildElement(reflectivity, "float"); const char* val = data->GetText(); material->reflectivity_ = atof(val); } // シャイネス const xml::XMLElement* shininess = firstChildElement(shading, "shininess"); if (shininess) { const xml::XMLElement* data = firstChildElement(shininess, "float"); const char* val = data->GetText(); material->shininess_ = atof(val); } // 透明度 const xml::XMLElement* transparency = firstChildElement(shading, "transparency"); if (transparency) { const xml::XMLElement* data = firstChildElement(transparency, "float"); const char* val = data->GetText(); material->transparency_ = atof(val); } } //---------------------------------------------------------------------- // エフェクトノード読み込み void collectEffectNode( Effects& out, const xml::XMLElement* library_effects ) { const xml::XMLElement* effect = firstChildElement(library_effects, "effect"); while (effect) { std::shared_ptr<EffectData> ed = std::make_shared<EffectData>(); ed->setupEffectData(effect); out.push_back(ed); effect = effect->NextSiblingElement("effect"); } } //---------------------------------------------------------------------- // 画像パス読み込み void collectImageNode( Images& out, const xml::XMLElement* library_images ) { const xml::XMLElement* image = firstChildElement(library_images, "image"); while (image) { // ID取得 std::shared_ptr<ImageData> image_data = std::make_shared<ImageData>(); image_data->id_ = getElementAttribute(image, "id"); // テクスチャパス取得 const xml::XMLElement* init_from = firstChildElement(image, "init_from"); image_data->init_from_ = init_from->GetText(); // 次へ out.push_back(image_data); image = image->NextSiblingElement("image"); } } //---------------------------------------------------------------------- // インデックス読み込み void collectIndices( const xml::XMLElement* mesh_node, tc::Indices& indices ) { const xml::XMLElement* primitive_node = getPrimitiveNode(mesh_node); // インデックス値読み込み if (primitive_node) { const xml::XMLElement* index_node = firstChildElement(primitive_node, INDEX_NODE_NAME); const char* text = index_node->GetText(); readArray(text, &indices); } TINY_COLLADA_TRACE("Collect index size = %lu\n", indices.size()); } //---------------------------------------------------------------------- // 面の頂点数読み込み void collectFaceCount( const xml::XMLElement* mesh_node, std::vector<char>& face_count ) { const xml::XMLElement* primitive_node = getPrimitiveNode(mesh_node); // インデックス値読み込み if (primitive_node) { const xml::XMLElement* vcount_node = primitive_node->FirstChildElement("vcount"); if (vcount_node) { char* text = const_cast<char*>(vcount_node->GetText()); readArray(text, &face_count); } } TINY_COLLADA_TRACE("Collect face count size = %lu\n", face_count.size()); } //---------------------------------------------------------------------- // メッシュノードのソース情報を取得 void collectMeshSources( std::vector<SourceData>& out, const xml::XMLElement* mesh ){ // ソースノードを総なめして情報を保存 const xml::XMLElement* target = firstChildElement(mesh, SOURCE_NODE_NAME); while (target) { SourceData data; // ID保存 data.id_ = getElementAttribute(target, ID_ATTR_NAME); // 配列データ保存 readSourceNode(target, &data); // コンテナに追加 out.push_back(data); // 次へ target = target->NextSiblingElement(SOURCE_NODE_NAME); } } //---------------------------------------------------------------------- // インプット情報を取得 void collectInputNodeData( std::vector<InputData>& out, const xml::XMLElement* input_node ) { while (input_node) { InputData input; // sourceアトリビュートを取得 const char* attr_source = getElementAttribute(input_node, SOURCE_NODE_NAME); // source_nameの先頭の#を取る if (attr_source[0] == '#') { attr_source = &attr_source[1]; } input.source_ = attr_source; input.semantic_ = getElementAttribute(input_node, SEMANTIC_ATTR_NAME); // offsetアトリビュートを取得 const char* attr_offset = getElementAttribute(input_node, OFFSET_ATTR_NAME); int offset = 0; if (attr_offset) { offset = atoi(attr_offset); } input.offset_ = offset; // インプットノード保存 out.push_back(input); // 次へ input_node = input_node->NextSiblingElement(INPUT_NODE_NAME); } } //---------------------------------------------------------------------- // インプット情報を取得 void collectMeshInputs( std::vector<InputData>& out, const xml::XMLElement* mesh ){ // primitiveノード const xml::XMLElement* primitive_node = getPrimitiveNode(mesh); if (!primitive_node) { return; } const xml::XMLElement* prim_input_node = firstChildElement(primitive_node, INPUT_NODE_NAME); collectInputNodeData(out, prim_input_node); // vertices_node const xml::XMLElement* vertices = firstChildElement(mesh, VERTICES_NODE_NAME); const xml::XMLElement* vert_input_node = firstChildElement(vertices, INPUT_NODE_NAME); collectInputNodeData(out, vert_input_node); } std::shared_ptr<tc::ColladaMaterial> searchMaterial( const char* bind_material, const Materials& materials, const Effects& effects ) { // マテリアルを探す const char* effect_url = nullptr; for (int i = 0; i < materials.size(); ++i) { if (std::strncmp(materials[i]->id_, bind_material, 64) == 0) { // あった effect_url = materials[i]->url_; break; } } if (!effect_url) { // 指定マテリアルは存在しなかった return nullptr; } // エフェクトを探す std::shared_ptr<tc::ColladaMaterial> mat = nullptr; for (int i = 0; i < effects.size(); ++i) { if (std::strncmp(effect_url, effects[i]->id_, 64) == 0) { // あった mat = effects[i]->material_; } } return mat; } void transposeMatrix(std::vector<float>& mtx) { for (int x = 0; x < 4; ++x) { for (int y = x; y < 4;++y) { if (x == y) { continue; } int xy = x * 4 + y; int yx = y * 4 + x; std::swap(mtx[xy], mtx[yx]); } } } } // unname namespace namespace tc { class Parser::Impl { public: Impl() : scenes_() { } ~Impl() { } //---------------------------------------------------------------------- Result parseCollada( const xml::XMLDocument* const doc ) { // ルートノード取得 const xml::XMLElement* root_node = doc->RootElement(); // visual_scene解析 VisualScenes visual_scenes; const xml::XMLElement* library_visual_scene = firstChildElement( root_node, "library_visual_scenes" ); collectVisualSceneNode(visual_scenes, library_visual_scene); // マテリアルノード解析 Materials materials; const xml::XMLElement* library_materials = firstChildElement(root_node, "library_materials"); if (library_materials) { collectMaterialNode(materials, library_materials); } // エフェクトノード解析 Effects effects; const xml::XMLElement* library_effects = firstChildElement(root_node, "library_effects"); if (library_effects) { collectEffectNode(effects, library_effects); } // テクスチャパス解析 Images images; const xml::XMLElement* library_images = firstChildElement(root_node, "library_images"); if (library_images) { collectImageNode(images, library_images); } // ダンプ for (int i = 0; i < visual_scenes.size(); ++i) { visual_scenes[i]->dump(); } for (int i = 0; i < materials.size(); ++i) { materials[i]->dump(); } for (int i = 0; i < effects.size(); ++i) { effects[i]->dump(); } for (int i = 0; i < images.size(); ++i) { images[i]->dump(); } // ジオメトリノード解析 const xml::XMLElement* library_geometries = firstChildElement( root_node, LIB_GEOMETRY_NODE_NAME ); for (int vs_idx = 0; vs_idx < visual_scenes.size(); ++vs_idx) { std::shared_ptr<VisualSceneData>& vs = visual_scenes[vs_idx]; if (vs->type_ != VisualSceneData::TYPE_GEOMETRY) { continue; } const xml::XMLElement* geometry = firstChildElement( library_geometries, GEOMETRY_NODE_NAME ); // シーン作成 std::shared_ptr<ColladaScene> scene = std::make_shared<ColladaScene>(); // マトリックス登録 transposeMatrix(vs->matrix_); scene->matrix_ = vs->matrix_; scenes_.push_back(scene); // マテリアル設定 scene->material_ = searchMaterial(vs->bind_material_, materials, effects); // メッシュ情報生成 while (geometry) { const char* geometry_id = getElementAttribute(geometry, "id"); printf("a%s ", geometry_id); printf("b%s" , vs->url_); if (std::strncmp(vs->url_, geometry_id, STRING_COMP_SIZE) != 0) { // 次のジオメトリ geometry = geometry->NextSiblingElement(GEOMETRY_NODE_NAME); } // メッシュデータ解析 const xml::XMLElement* mesh_node = firstChildElement( geometry, MESH_NODE_NAME ); while (mesh_node) { std::shared_ptr<ColladaMesh> data = std::make_shared<ColladaMesh>(); parseMeshNode(mesh_node, data); // 頂点と法線の並びが同じになっているかチェック if (data->hasVertex()) { const ColladaMesh::ArrayData* varray = data->getVertex(); if (data->hasNormal()) { const ColladaMesh::ArrayData* narray = data->getNormals(); size_t visize = varray->data_.size(); size_t nisize = narray->data_.size(); TINY_COLLADA_TRACE("%lu[v] == %lu[n]\n", visize, nisize); TINY_COLLADA_ASSERT(visize == nisize); } } // データ登録 scene->meshes_.push_back(data); // 次へ mesh_node = mesh_node->NextSiblingElement(MESH_NODE_NAME); } break; } } return Result::Code::SUCCESS; } //---------------------------------------------------------------------- // メッシュノードの解析 void parseMeshNode( const xml::XMLElement* mesh_node, ::std::shared_ptr<tc::ColladaMesh> data ) { std::shared_ptr<MeshInformation> info = std::make_shared<MeshInformation>(); // インデックス情報保存 collectIndices(mesh_node, info->raw_indices_); collectFaceCount(mesh_node, info->face_count_); // ソースノードの情報保存 collectMeshSources(info->sources_, mesh_node); // インプットノードの情報保存 collectMeshInputs(info->inputs_, mesh_node); info->dump(); // ソースとインプットを関連付け relateSourcesToInputs(info); printf("\n\n"); for (int i = 0; i < info->sources_.size(); ++i) { SourceData* src = &info->sources_[i]; if (src->input_) { printf("SRC:%s - INPUT:%s\n", src->id_, src->input_->source_); printf(" DATA size %lu\n", src->data_.size()); } } printf("\n\n"); setupMesh(mesh_node, info, data); } //---------------------------------------------------------------------- void setupMesh( const xml::XMLElement* mesh_node, std::shared_ptr<MeshInformation> info, std::shared_ptr<tc::ColladaMesh> mesh ) { // プリミティブの描画タイプを設定 tc::ColladaMesh::PrimitiveType prim_type = getPrimitiveType(mesh_node); mesh->setPrimitiveType(prim_type); int offset_size = info->getIndexStride(); // 頂点情報 const SourceData* pos_source = info->searchSourceBySemantic("POSITION"); if (pos_source) { printf("pos_source size %lu\n", pos_source->data_.size()); mesh->vertex_.data_ = pos_source->data_; mesh->vertex_.stride_ = pos_source->stride_; if (info->face_count_.empty()) { setupIndices( mesh->vertex_.indices_, info->raw_indices_, pos_source->input_->offset_, offset_size ); } else { setupIndicesMultiFace( mesh->vertex_.indices_, info, pos_source->input_->offset_, offset_size ); } } // 法線情報 const SourceData* normal_source = info->searchSourceBySemantic("NORMAL"); if (normal_source) { printf("normal_source size %lu\n", normal_source->data_.size()); mesh->normal_.stride_ = normal_source->stride_; if (info->face_count_.empty()) { setupIndices( mesh->normal_.indices_, info->raw_indices_, normal_source->input_->offset_, offset_size ); } else { setupIndicesMultiFace( mesh->normal_.indices_, info, normal_source->input_->offset_, offset_size ); } // 頂点インデックスにあわせてデータ変更 Indices& vindices = mesh->vertex_.indices_; Indices& nindices = mesh->normal_.indices_; mesh->normal_.data_.resize(pos_source->data_.size(), 8.8); for (int vert_idx = 0; vert_idx < vindices.size(); ++vert_idx) { uint32_t vidx = vindices.at(vert_idx); uint32_t nidx = nindices.at(vert_idx); uint32_t nstride = normal_source->stride_; uint32_t from_idx = nidx * nstride; uint32_t to_idx = vidx * nstride; printf("%d-%d\n", vidx, nidx); for (int di = 0; di < nstride; ++di) { int to = to_idx + di; int from = from_idx + di; printf("  %d -> %d\n", from, to ); mesh->normal_.data_[to_idx + di] = normal_source->data_.at(from_idx + di); } } } // uv const SourceData* uv_source = info->searchSourceBySemantic("TEXCOORD"); if (uv_source) { printf("uv_source size %lu\n", uv_source->data_.size()); mesh->uv_.stride_ = uv_source->stride_; if (info->face_count_.empty()) { setupIndices( mesh->uv_.indices_, info->raw_indices_, uv_source->input_->offset_, offset_size ); } else { setupIndicesMultiFace( mesh->uv_.indices_, info, uv_source->input_->offset_, offset_size ); } // 頂点インデックスにあわせてデータ変更 Indices& vindices = mesh->vertex_.indices_; Indices& nindices = mesh->uv_.indices_; mesh->uv_.data_.resize(pos_source->data_.size(), 8.8888f); for (int vert_idx = 0; vert_idx < vindices.size(); ++vert_idx) { uint32_t vidx = vindices.at(vert_idx); uint32_t nidx = nindices.at(vert_idx); uint32_t nstride = uv_source->stride_; uint32_t from_idx = nidx * nstride; uint32_t to_idx = vidx * nstride; printf("%d-%d\n", vidx, nidx); for (int di = 0; di < nstride; ++di) { int to = to_idx + di; int from = from_idx + di; printf("  %d -> %d\n", from, to ); mesh->uv_.data_[to_idx + di] = uv_source->data_.at(from_idx + di); } } } } //---------------------------------------------------------------------- // 事前に抜いておいたインデックス一覧からインデックスのセットアップ void setupIndices( Indices& out, Indices& src, int start_offset, int stride ) { TINY_COLLADA_TRACE("%s start_offset = %d stride = %d\n", __FUNCTION__, start_offset, stride); for (int i = start_offset; i < src.size(); i += stride) { out.push_back(src.at(i)); } TINY_COLLADA_TRACE("index size = %lu\n", out.size()); } //---------------------------------------------------------------------- // 事前に抜いておいたインデックス一覧からインデックスのセットアップ2 void setupIndicesMultiFace( Indices& out, std::shared_ptr<MeshInformation>& info, int start_offset, int stride ) { int idx = start_offset; for (int i = 0; i < info->face_count_.size(); ++ i) { int vcnt = info->face_count_.at(i); if (vcnt == 3) { uint32_t idx1 = info->raw_indices_.at(idx); idx += stride; uint32_t idx2 = info->raw_indices_.at(idx); idx += stride; uint32_t idx3 = info->raw_indices_.at(idx); idx += stride; out.push_back(idx1); out.push_back(idx2); out.push_back(idx3); } else if (vcnt == 4) { uint32_t idx1 = info->raw_indices_.at(idx); idx += stride; uint32_t idx2 = info->raw_indices_.at(idx); idx += stride; uint32_t idx3 = info->raw_indices_.at(idx); idx += stride; uint32_t idx4 = info->raw_indices_.at(idx); idx += stride; out.push_back(idx1); out.push_back(idx2); out.push_back(idx3); out.push_back(idx1); out.push_back(idx3); out.push_back(idx4); } } } //---------------------------------------------------------------------- // メッシュから抜いたinputsとsourcesを関連付ける void relateSourcesToInputs( std::shared_ptr<MeshInformation>& info ) { TINY_COLLADA_TRACE("%s\n", __FUNCTION__); auto src_it = info->sources_.begin(); auto src_end = info->sources_.end(); while (src_it != src_end) { InputData* input = info->searchInputBySource(src_it->id_); src_it->input_ = input; TINY_COLLADA_TRACE(" %s", src_it->id_); if (input) { TINY_COLLADA_TRACE(" OK\n"); TINY_COLLADA_TRACE(" %s %s\n", input->semantic_, input->source_); } else { TINY_COLLADA_TRACE(" NG\n"); } ++src_it; } } //---------------------------------------------------------------------- // メッシュリスト取得 const ColladaScenes* getScenes() const { return &scenes_; } private: ColladaScenes scenes_; }; // class Parser::Impl //---------------------------------------------------------------------- Parser::Parser() : impl_(nullptr) { impl_.reset(new Impl()); } //---------------------------------------------------------------------- Parser::~Parser() { } //---------------------------------------------------------------------- Result Parser::parse( const char* const dae_path ) { // tiny xmlを使って.daeを読み込む xml::XMLDocument doc; xml::XMLError load_error = doc.LoadFile(dae_path); if (load_error != xml::XML_SUCCESS) { return Result::Code::READ_ERROR; } // doc.Print(); // 解析 Result parse_result = impl_->parseCollada(&doc); if (parse_result.isFailed()) { return parse_result; } return Result::Code::SUCCESS; } //const Meshes* Parser::meshes() const //{ // return impl_->getMeshList(); //} const ColladaScenes* Parser::scenes() const { return impl_->getScenes(); } //---------------------------------------------------------------------- // データをコンソールに出力 void ColladaMesh::dump() { printf("--- Vertex data dump ---\n"); vertex_.dump(); printf("\n"); printf("--- Normal data dump ---\n"); normal_.dump(); printf("\n"); } //---------------------------------------------------------------------- // データをコンソールに出力 void ColladaMesh::ArrayData::dump() { if (!isValidate()) { printf("This ArrayData is invalidate data.\n"); return; } printf("vertices size = %lu stride = %hhd\n", data_.size(), stride_); size_t data_size = data_.size(); // データ if (data_size > 0) { for (size_t i = 0; i < data_size; ++i) { printf(" %f", data_[i]); } printf("\n"); } else { printf("nothing.\n"); } // インデックス printf("indices size = %lu\n", indices_.size()); size_t idx_size = indices_.size(); // データ if (idx_size > 0) { for (size_t i = 0; i < idx_size; ++i) { printf(" %d", indices_[i]); } printf("\n"); } else { printf("nothing.\n"); } } } // namespace tc
[ "doscoy.t@gmail.com" ]
doscoy.t@gmail.com
2571f74e836ed29e33eafde273d3eff5959adec9
32f00c7cf80914434e6c771a6400810497148700
/src/Up.h
b59e6221fa17780f64a559b8132379668c4def6b
[ "MIT" ]
permissive
hgu-sit22005/telloproject-NaGyungMin15
753a10fbcc38ab3b0cfecbc160b0d443b15c202c
30429e7cc922cf811db4c85d1aa266029c6c29b6
refs/heads/master
2020-09-14T09:55:17.936531
2019-11-24T10:30:38
2019-11-24T10:30:38
223,096,137
0
0
null
null
null
null
UTF-8
C++
false
false
140
h
#pragma once #include "TelloPro.h" class Up: public TelloPro { public: Up(); Up(int _val); public: double get_delay(); };
[ "21500219@handong.edu" ]
21500219@handong.edu
98558d7120e0c7cbd5cc8b36241d5c98e5a8dde0
b35b6032868edc7ca74ce927676205aa217480cd
/Abstract Pattern/src/ConcreteProductB1.cpp
a143222a62f5f24bb8c093835593df8239e78fa6
[]
no_license
drewProgram/design-patterns-cpp
c59bab39e8ce8a04d6fa91c1312892bad0a8422b
cb556374d7692f632dc7cee63c4f70e94380da9a
refs/heads/main
2023-06-25T05:04:52.211887
2021-07-29T17:26:59
2021-07-29T17:26:59
375,843,877
0
0
null
null
null
null
UTF-8
C++
false
false
365
cpp
#include "ConcreteProductB1.h" std::string ConcreteProductB1::UsefulFunctionB() const { return "The result of the product B1."; } std::string ConcreteProductB1::AnotherUsefulFunctionB(const AbstractProductA& collaborator) const { const std::string result = collaborator.UsefulFunctionA(); return "The result of the B1 collaborating with ( " + result + " )"; }
[ "andrew.lascasas@gmail.com" ]
andrew.lascasas@gmail.com
78373223e2ae410da7a4f6aa67290582b46ab086
a56252fda5c9e42eff04792c6e16e413ad51ba1a
/resources/home/dnanexus/root/include/TVirtualDragManager.h
874943fcbb5edc8cb737d2a121d1df7d51599f59
[ "LGPL-2.1-or-later", "LGPL-2.1-only", "Apache-2.0" ]
permissive
edawson/parliament2
4231e692565dbecf99d09148e75c00750e6797c4
2632aa3484ef64c9539c4885026b705b737f6d1e
refs/heads/master
2021-06-21T23:13:29.482239
2020-12-07T21:10:08
2020-12-07T21:10:08
150,246,745
0
0
Apache-2.0
2019-09-11T03:22:55
2018-09-25T10:21:03
Python
UTF-8
C++
false
false
3,528
h
// $Id: TVirtualDragManager.h,v 1.1 2004/09/08 16:03:57 brun Exp $ // Author: Valeriy Onuchin 12/08/04 /************************************************************************* * Copyright (C) 1995-2004, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT_TVirtualDragManager #define ROOT_TVirtualDragManager ////////////////////////////////////////////////////////////////////////// // // // TVirtualDragManager // // // ////////////////////////////////////////////////////////////////////////// #include "TGFrame.h" enum EDragType { kDragNone, kDragMove, kDragCopy, kDragLink, kDragLasso, kDragResize }; class TVirtualDragManager { protected: Bool_t fMoveWaiting; // kTRUE if source is clicked but not moved Bool_t fDragging; // in dragging mode? Bool_t fDropping; // drop is in progress Bool_t fPasting; // paste action is in progress EDragType fDragType; // dragging type TGFrame *fSource; // frame being dragged TGFrame *fFrameUnder; // frame under drag TGFrame *fTarget; // drop target TGFrame *fPasteFrame; // protected: virtual void Init(); public: TVirtualDragManager(); virtual ~TVirtualDragManager() {} EDragType GetEDragType() const { return fDragType; } Bool_t IsMoveWaiting() const { return fMoveWaiting; } Bool_t IsDragging() const { return fDragging; } Bool_t IsDropping() const { return fDropping; } Bool_t IsPasting() const { return fPasting; } TGFrame *GetTarget() const { return fTarget; } TGFrame *GetSource() const { return fSource; } TGFrame *GetFrameUnder() const { return fFrameUnder; } TGFrame *GetPasteFrame() const { return fPasteFrame; } virtual void SetTarget(TGFrame *f) { fTarget = f; } virtual void SetSource(TGFrame *f) { fSource = f; } virtual void SetPasteFrame(TGFrame *f) { fPasteFrame = f; } virtual Bool_t StartDrag(TGFrame * = 0, Int_t = 0, Int_t = 0) { return kFALSE; } virtual Bool_t EndDrag() { return kFALSE; } virtual Bool_t Drop() { return kFALSE; } virtual Bool_t Cancel(Bool_t = kTRUE) { return kFALSE; } virtual Bool_t HandleEvent(Event_t *) { return kFALSE; } virtual Bool_t HandleTimerEvent(Event_t *, TTimer *) { return kFALSE; } virtual Bool_t IgnoreEvent(Event_t *) { return kTRUE; } virtual void SetEditable(Bool_t) {} virtual Int_t GetStrartDragX() const { return 0; } virtual Int_t GetStrartDragY() const { return 0; } virtual Int_t GetEndDragX() const { return 0; } virtual Int_t GetEndDragY() const { return 0; } static TVirtualDragManager *Instance(); ClassDef(TVirtualDragManager,0) // drag and drop manager }; R__EXTERN TVirtualDragManager *gDragManager; // global drag manager #endif
[ "slzarate96@gmail.com" ]
slzarate96@gmail.com
bf2563557aa76c90ae419fb521ea8cac218fdb68
413df0c83cdd3021f58d8abf01fd81f8290d2c28
/sketch_oct15a/sketch_oct15a.ino
d971b2870794ad3430beef67f153b5ffbde29f26
[]
no_license
RimantasSmitas/Arduino
6d7328633b0fb7f9e0c83fa8c15924e67830854b
1c9da217471d7426207780ca1fb1e139f69f4016
refs/heads/master
2020-03-11T23:40:36.056105
2019-06-24T07:34:00
2019-06-24T07:34:00
130,327,780
0
0
null
null
null
null
UTF-8
C++
false
false
2,369
ino
#define YELLOW 0 #define GREEN 1 #define RED 2 #define BLUE 3 #define BUTTON1 13 #define BUTTON2 12 #define BUTTON3 11 #define BUTTON4 10 #define SPEAKER 9 int numTones = 10; int tones[] = {261, 277, 294, 311, 330, 349, 370, 392, 415, 440}; // mid C C# D D# E F F# G G# A int nrOfLightsOn = 0; struct gamePadType { int PinNrLed; int Frequency; int PinNrButton; }; gamePadType Yellow = {0, 440, 10}; gamePadType Green = {1, 392, 11}; gamePadType Red = {2, 349, 12}; gamePadType Blue = {3, 330 , 13}; gamePadType GamePad[] = {Yellow, Green, Red, Blue}; void setup() { // put your setup code here, to run once: pinMode(YELLOW, OUTPUT); pinMode(GREEN, OUTPUT); pinMode(RED, OUTPUT); pinMode(BLUE, OUTPUT); pinMode(BUTTON1, INPUT_PULLUP); // button is connected to ground pinMode(BUTTON2, INPUT_PULLUP); // button is connected to ground pinMode(BUTTON3, INPUT_PULLUP); // button is connected to ground pinMode(BUTTON4, INPUT_PULLUP); // button is connected to ground // Testfunction(); } void PlaySoundOn(gamePadType i) { tone(SPEAKER, i.Frequency); } void PlaySoundOff(gamePadType i) { noTone(SPEAKER); } void TurnLighOn(gamePadType i) { digitalWrite(i.PinNrLed, HIGH); } void TurnLighOff(gamePadType i) { digitalWrite(i.PinNrLed, LOW); } void BlinkAndBuzz(gamePadType i) { delay(500); tone(SPEAKER, i.Frequency); digitalWrite(i.PinNrLed, HIGH); delay(500); noTone(SPEAKER); digitalWrite(i.PinNrLed, LOW); } void blink(int i) { digitalWrite(i, HIGH); delay(500); digitalWrite(i, LOW); delay(500); digitalWrite(i, HIGH); delay(500); digitalWrite(i, LOW); } void BilnkAllSeries() { blink(YELLOW); delay(500); blink(GREEN); delay(500); blink(RED); delay(500); blink(BLUE); } void BilnkAll() { delay(500); // LightsOn(); delay(500); // LightsOff(); delay(500); // LightsOn(); delay(500); // LightsOff(); delay(500); } void Hello(){ digitalWrite(YELLOW, HIGH); digitalWrite(GREEN, HIGH); digitalWrite(RED, HIGH); digitalWrite(BLUE, HIGH); } void LightsOff() { digitalWrite(YELLOW, LOW); digitalWrite(GREEN, LOW); digitalWrite(RED, LOW); digitalWrite(BLUE, LOW); } void Testfunction() { delay(500); BilnkAll(); BilnkAllSeries(); delay(500); } void loop() { // put your main code here, to run repeatedly: }
[ "Rimantas.smitas@gmail.com" ]
Rimantas.smitas@gmail.com
ded9d8da18bd0b2e2a419e2b2043903644447435
7800d0b537e9a66482ae19ee3fa3447c72d0afe1
/GPCWGame/Studentmain.cpp
61c31f7038c0c6522ef892a2c71cc868d3d50edc
[]
no_license
euanmcmen/GPCWGame
8f8f6b7fdc7953a829cb31a2347c8d94c316521c
9a351040fe6031936ade14d5034ade6b15a3b648
refs/heads/master
2016-08-11T07:08:43.401351
2015-12-07T03:07:39
2015-12-07T03:07:39
45,419,517
0
0
null
null
null
null
UTF-8
C++
false
false
15,309
cpp
#define WIN32_LEAN_AND_MEAN #define WIN32_EXTRA_LEAN #define GLX_GLXEXT_LEGACY //Must be declared so that our local glxext.h is picked up, rather than the system one //#include <windows.h> #include "GameConstants.h" #include "windowOGL.h" #include "cWNDManager.h" #include "cShapes.h" #include "cSphere.h" #include "cMaterial.h" #include "cLight.h" #include "cStarfield.h" #include "cFontMgr.h" #include "cCamera.h" #include "cInputMgr.h" #include "cSoundMgr.h" #include "cModelLoader.h" #include "cModel.h" #include "cPlayer.h" #include "Obstacle.h" #include "PlanetSphere.h" #include "TinyAsteroid.h" //Forward declare methods. void SpawnObstacle(cModelLoader* obstacleLoader, glm::vec3 scale, int type); void SpawnTinyAsteroid(cModelLoader* tinyAsteroidModel); int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR cmdLine, int cmdShow) { //Set our window settings const int windowWidth = 1024; const int windowHeight = 768; const int windowBPP = 16; //This is our window static cWNDManager* pgmWNDMgr = cWNDManager::getInstance(); // This is the input manager static cInputMgr* theInputMgr = cInputMgr::getInstance(); // This is the Font manager static cFontMgr* theFontMgr = cFontMgr::getInstance(); // This is the sound manager static cSoundMgr* theSoundMgr = cSoundMgr::getInstance(); //The example OpenGL code windowOGL theOGLWnd; //Attach our OpenGL window to our window pgmWNDMgr->attachOGLWnd(&theOGLWnd); //Attach the keyboard manager pgmWNDMgr->attachInputMgr(theInputMgr); //Attempt to create the window if (!pgmWNDMgr->createWND(windowWidth, windowHeight, windowBPP)) { //If it fails MessageBox(NULL, "Unable to create the OpenGL Window", "An error occurred", MB_ICONERROR | MB_OK); pgmWNDMgr->destroyWND(); //Reset the display and exit return 1; } if (!theOGLWnd.initOGL(windowWidth, windowHeight)) //Initialize our example { MessageBox(NULL, "Could not initialize the application", "An error occurred", MB_ICONERROR | MB_OK); pgmWNDMgr->destroyWND(); //Reset the display and exit return 1; } // Create objects in game. //Player cTexture playerTexture; playerTexture.createTexture("Models/SmallShip/shipC.png"); cModelLoader playerModel; playerModel.loadModel("Models/SmallShip/ship.obj", playerTexture); cPlayer thePlayer; thePlayer.initialise(); thePlayer.setMdlDimensions(playerModel.getModelDimensions()); thePlayer.attachInputMgr(theInputMgr); thePlayer.setUpXboxController(); //Obstacle type 0 cTexture standardObstacleTexture; standardObstacleTexture.createTexture("Models/Asteroid/asteroid.jpg"); cModelLoader standardObstacleModel; standardObstacleModel.loadModel("Models/Asteroid/asteroid.obj", standardObstacleTexture); //Obstacle type 1 cTexture altObstacleTexture; altObstacleTexture.createTexture("Models/Satellite/texture.jpg"); cModelLoader altObstacleModel; altObstacleModel.loadModel("Models/Satellite/Satellite.obj", altObstacleTexture); //Tiny asteroids cTexture tinyAsteroidTexture; tinyAsteroidTexture.createTexture("Models/TinyAsteroid/TinyAsteroid.tga"); cModelLoader tinyAsteroidModel; tinyAsteroidModel.loadModel("Models/TinyAsteroid/TinyAsteroid.obj", tinyAsteroidTexture); //Jupiter PlanetSphere jupiter; jupiter.create(glm::vec3(-30, 30, -150)); //Crete background star textures. cTexture starTexture; starTexture.createTexture("Images/star.png"); cStarfield theStarField(starTexture.getTexture(), glm::vec3(200.0f, 200.0f, 200.0f)); // Create Materials for lights cMaterial sunMaterial(lightColour4(0.0f, 0.0f, 0.0f, 1.0f), lightColour4(1.0f, 1.0f, 1.0f, 1.0f), lightColour4(1.0f, 1.0f, 1.0f, 1.0f), lightColour4(0, 0, 0, 1.0f), 5.0f); // Create Light cLight sunLight(GL_LIGHT0, lightColour4(0, 0, 0, 1), lightColour4(1, 1, 1, 1), lightColour4(1, 1, 1, 1), glm::vec4(0, 0, 20, 1), glm::vec3(0.0, 0.0, 1.0), 0.0f, 180.0f, 1.0f, 0.0f, 0.0f); cLight lfLight(GL_LIGHT1, lightColour4(0, 0, 0, 1), lightColour4(1, 1, 1, 1), lightColour4(1, 1, 1, 1), glm::vec4(30, 0, 100, 1), glm::vec3(0.0, 0.0, 1.0), 0.0f, 180.0f, 1.0f, 0.0f, 0.0f); cLight rfLight(GL_LIGHT2, lightColour4(0, 0, 0, 1), lightColour4(1, 1, 1, 1), lightColour4(1, 1, 1, 1), glm::vec4(-30, 0, 100, 1), glm::vec3(0.0, 0.0, 1.0), 0.0f, 180.0f, 1.0f, 0.0f, 0.0f); cLight cbLight(GL_LIGHT3, lightColour4(0, 0, 0, 1), lightColour4(1, 1, 1, 1), lightColour4(1, 1, 1, 1), glm::vec4(0, 2, -100, 1), glm::vec3(0.0, 0.0, 1.0), 0.0f, 180.0f, 1.0f, 0.0f, 0.0f); //Define Ambient light for scene GLfloat g_Ambient[] = { 0.2, 0.2, 0.2, 1.0 }; glLightModelfv(GL_LIGHT_MODEL_AMBIENT, g_Ambient); // load game fonts // Load Fonts LPCSTR gameFonts[1] = {"Fonts/digital-7.ttf"}; theFontMgr->addFont("SevenSeg", gameFonts[0], 36); // load game sounds // Load Sound LPCSTR gameSounds[3] = { "Audio/bgm.wav", "Audio/explosion.wav" }; theSoundMgr->add("Theme", gameSounds[0]); theSoundMgr->add("Explosion", gameSounds[1]); //Play background music. theSoundMgr->getSnd("Theme")->playAudio(AL_LOOPING); // Create third person camera. cCamera tpvCamera; tpvCamera.setTheCameraPos(glm::vec3(0.0f, 1.0f, 20.0f)); tpvCamera.setTheCameraLookAt(glm::vec3(0.0f, 0.0f, -60.0f)); tpvCamera.setTheCameraUpVector(glm::vec3(0.0f, 1.0f, 0.0f)); // pointing upwards in world space tpvCamera.setTheCameraAspectRatio(windowWidth, windowHeight); tpvCamera.setTheProjectionMatrix(75.0f, tpvCamera.getTheCameraAspectRatio(), 0.1f, 300.0f); tpvCamera.update(); // Create first person camera. cCamera fpvCamera; fpvCamera.setTheCameraPos(thePlayer.getPosition() + glm::vec3(0, 0, -2)); fpvCamera.setTheCameraLookAt(glm::vec3(0.0f, 0.0f, -60.0f)); fpvCamera.setTheCameraUpVector(glm::vec3(0.0f, 1.0f, 0.0f)); // pointing upwards in world space fpvCamera.setTheCameraAspectRatio(windowWidth, windowHeight); fpvCamera.setTheProjectionMatrix(75.0f, fpvCamera.getTheCameraAspectRatio(), 0.1f, 300.0f); fpvCamera.update(); //Clear key buffers theInputMgr->clearBuffers(theInputMgr->KEYS_DOWN_BUFFER | theInputMgr->KEYS_PRESSED_BUFFER); //Set Obstacle spawn values. float obstacleSpawnInterval = 0.4f; float obstacleSpawnAt = 1.0f; int obstacleIndex = 0; //Set tiny asteroid spawn values. float asteroidSpawnInterval = 0.1f; float asteroidSpawnAt = 0.0f; //Set the space unit countdown values. //Counts down in 100's. Displayed to the player. int spaceUnits = 10000; int spaceUnitsDecAt = 2; int spaceUnitsInterval = 1; int spaceUnitsDecrement = 100; //variable to control the spawning of the objects. Not displayed to the player. float runTime = 0.0f; //String messages to display to the player. string spaceUnitsMsg; string gameOverMsg = "Player destroyed. Press Return to restart."; string victoryText = "You have escaped the asteroid field!"; //This is the mainloop, we render frames until isRunning returns false while (pgmWNDMgr->isWNDRunning()) { pgmWNDMgr->processWNDEvents(); //Process any window events //We get the time that passed since the last frame float elapsedTime = pgmWNDMgr->getElapsedSeconds(); // Lab code goes here glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); theOGLWnd.initOGL(windowWidth,windowHeight); //Load identity matrix. glMatrixMode(GL_MODELVIEW); glLoadIdentity(); //Select the main camera based on index. if (cameraIndex == 0) glLoadMatrixf((GLfloat*)&tpvCamera.getTheViewMatrix()); else if (cameraIndex == 1) glLoadMatrixf((GLfloat*)&fpvCamera.getTheViewMatrix()); theStarField.render(0.0f); jupiter.render(elapsedTime); sunMaterial.useMaterial(); sunLight.lightOn(); lfLight.lightOn(); rfLight.lightOn(); cbLight.lightOn(); //Update the game while the player has not been hit. if (!isPlayerHit) { //Update the player. playerModel.renderMdl(thePlayer.getPosition(), thePlayer.getRotation(), thePlayer.getAxis(), thePlayer.getScale()); thePlayer.update(elapsedTime); //If the elapsed time is larger than the Obstaclespawnat value, spawn an Obstacle. if (runTime > obstacleSpawnAt) { //Spawn an Obstacle. //Use & to pass a pointer to the value, rather than the value itself. SpawnObstacle(&standardObstacleModel, glm::vec3(2, 2, 2), 0); //Increment Obstacle spawn index. obstacleIndex++; //If Obstacle index is divisable by 5, spawn an alt Obstacle. if (obstacleIndex % 5 == 0) SpawnObstacle(&altObstacleModel, glm::vec3(1, 1, 1), 1); //Increase obstacleSpawnAt obstacleSpawnAt += obstacleSpawnInterval; } //If the elapsed time is larger than the asteroidspawnat value, spawn an asteroid. if (runTime > asteroidSpawnAt) { //Spawn asteroid SpawnTinyAsteroid(&tinyAsteroidModel); //Increment asteridspawnat asteroidSpawnAt += asteroidSpawnInterval; } //If the runtime is at or the decrement time, decrement. if (runTime > spaceUnitsDecAt && spaceUnits > 0) { //Decrement space units spaceUnits -= spaceUnitsDecrement; //Increase decat spaceUnitsDecAt += spaceUnitsInterval; } //Iterate over each Obstacle. for (vector<Obstacle*>::iterator obstacleIterator = theObstacles.begin(); obstacleIterator != theObstacles.end(); ++obstacleIterator) { if ((*obstacleIterator)->isActive()) { //Render Obstacle based on type. if ((*obstacleIterator)->getType() == 0) standardObstacleModel.renderMdl((*obstacleIterator)->getPosition(), (*obstacleIterator)->getRotation(), (*obstacleIterator)->getAxis(), (*obstacleIterator)->getScale()); else if ((*obstacleIterator)->getType() == 1) altObstacleModel.renderMdl((*obstacleIterator)->getPosition(), (*obstacleIterator)->getRotation(), (*obstacleIterator)->getAxis(), (*obstacleIterator)->getScale()); //Update the Obstacle. (*obstacleIterator)->update(elapsedTime); //Check if player is colliding with the player. if (thePlayer.SphereSphereCollision((*obstacleIterator)->getPosition(), (*obstacleIterator)->getMdlRadius()) && !isPlayerHit) { //Set player hit isPlayerHit = true; if (thePlayer.checkIfShouldPlaySound()) theSoundMgr->getSnd("Explosion")->playAudio(AL_TRUE); } //If the Obstacle goes into the killzone, set it to inactive. if ((*obstacleIterator)->isInKillzone()) { //Disable the Obstacle so it isn't rendererd or updated. (*obstacleIterator)->setIsActive(false); } } } //Iterate over each tiny asteroid. for (vector<TinyAsteroid*>::iterator tinyAsteroidIterator = theTinyAsteroids.begin(); tinyAsteroidIterator != theTinyAsteroids.end(); ++tinyAsteroidIterator) { if ((*tinyAsteroidIterator)->isActive()) { { tinyAsteroidModel.renderMdl((*tinyAsteroidIterator)->getPosition(), (*tinyAsteroidIterator)->getRotation(), (*tinyAsteroidIterator)->getAxis(), (*tinyAsteroidIterator)->getScale()); (*tinyAsteroidIterator)->update(elapsedTime); } //If the Obstacle goes into the killzone, set it to inactive. if ((*tinyAsteroidIterator)->isInKillzone()) { //Disable the Obstacle so it isn't rendererd or updated. (*tinyAsteroidIterator)->setIsActive(false); } } } //Check for victory condition. if (spaceUnits <= 0) { //Delete all objects theObstacles.clear(); theTinyAsteroids.clear(); } //Update the fp camera position to the player's position. fpvCamera.setTheCameraPos(glm::vec3(thePlayer.getPosition().x, thePlayer.getPosition().y + 0.5f, 2.0f)); fpvCamera.setTheCameraLookAt(glm::vec3(thePlayer.getPosition().x, thePlayer.getPosition().y, -60)); fpvCamera.update(); //Increment runtime runTime += elapsedTime; } //If the player is not not hit, so hit, then show game over. else { //Stop the music. theSoundMgr->getSnd("Theme")->stopAudio(); //Delete all objects theObstacles.clear(); theTinyAsteroids.clear(); //Check for return key press. thePlayer.checkForRestart(); } //If the restart button is pressed, spawn the objects again. if (isRestarting) { //Set the player hit status to false. isPlayerHit = false; //Initialise the spawnAt variables obstacleSpawnAt = obstacleSpawnInterval; asteroidSpawnAt = asteroidSpawnInterval; spaceUnitsDecAt = 2; //Reset counters obstacleIndex = 0; spaceUnits = 10000; runTime = 0; //Play background music. theSoundMgr->getSnd("Theme")->playAudio(AL_LOOPING); //Unset the flag. isRestarting = false; } //Check for window closing event. if (thePlayer.checkForExit()) { DestroyWindow(pgmWNDMgr->getWNDHandle()); } //Check for sound toggle event. if (thePlayer.checkIfShouldPlaySound() && !soundEventHandled) { //Play the music. theSoundMgr->getSnd("Theme")->playAudio(AL_LOOPING); soundEventHandled = true; } else if (!thePlayer.checkIfShouldPlaySound() && !soundEventHandled) { //Stop the music. theSoundMgr->getSnd("Theme")->stopAudio(); soundEventHandled = true; } //Display text. glPushMatrix(); theOGLWnd.setOrtho2D(windowWidth, windowHeight); colour3f textColour = colour3f(255.0f, 255.0f, 255.0f); FTPoint textTopLine = FTPoint(10, 40); FTPoint textBottomLine = FTPoint(10, 80); theFontMgr->getFont("SevenSeg")->printText(soundText.c_str(), FTPoint(windowWidth - 200, 35), textColour); //Display gameplay text if the victory condition isn't met. if (!isPlayerHit && spaceUnits>0) { theFontMgr->getFont("SevenSeg")->printText("Escape the asteroid field!", textTopLine, textColour); theFontMgr->getFont("SevenSeg")->printText(("Distance remaining to exit: " + to_string(spaceUnits) + " space units.").c_str(), textBottomLine, textColour); } //Display gameover message. if (isPlayerHit) { theFontMgr->getFont("SevenSeg")->printText(gameOverMsg.c_str(), textTopLine, colour3f(255.0f, 0, 0)); //Defeat dext to be red. } //If victory condition is met, display message. if (spaceUnits <= 0) { theFontMgr->getFont("SevenSeg")->printText(victoryText.c_str(), textTopLine, colour3f(0, 255.0f, 0)); // Victory text to be green. } //Display glPopMatrix(); pgmWNDMgr->swapBuffers(); //Clear key buffers theInputMgr->clearBuffers(theInputMgr->KEYS_DOWN_BUFFER | theInputMgr->KEYS_PRESSED_BUFFER); } theOGLWnd.shutdown(); //Free any resources pgmWNDMgr->destroyWND(); //Destroy the program window return 0; //Return success } //Spawns an Obstacle which flys past the player - hopefully. void SpawnObstacle(cModelLoader* ObstacleLoader, glm::vec3 scale, int type) { //Create new obstacle. theObstacles.push_back(new Obstacle); //Get the reference of this new obstacle. It'll be at the back of the vector. theObstacles.back()->initialise(scale, type); theObstacles.back()->setMdlDimensions(ObstacleLoader->getModelDimensions()); return; } //Spawns a tiny asteroid which flys past the player. void SpawnTinyAsteroid(cModelLoader* tinyAsteroidModel) { //Create new tiny asteroid. theTinyAsteroids.push_back(new TinyAsteroid); //Get the reference of this new tiny asteroid. It'll be at the back of the vector. theTinyAsteroids.back()->initialise(glm::vec3(1, 1, 1)); return; }
[ "euanmcmen@hotmail.com" ]
euanmcmen@hotmail.com
3ae85d5465af3af97d6e8940f5fea0650e18de18
a2c38656a7006eea093e3cf9af71860784c71a0f
/src/data_alignment_padding.cpp
b917c85728db661702e7868de17e8e5b3b136dc5
[]
no_license
kaifastromai/Data-Structures
3bf4702a5f1244d42c89117b23575f66e75bc854
c6bc38ccb36a40df821dcf5f3d7a888015b1b406
refs/heads/master
2022-12-19T05:31:04.937974
2020-09-30T06:08:34
2020-09-30T06:08:34
299,823,197
0
0
null
null
null
null
UTF-8
C++
false
false
953
cpp
#include <string> #include <iostream> using namespace std; struct Foo { string first_name; char middle_initial; string last_name; }; int main() { Foo f; f.first_name = "Frank"; f.middle_initial = 'C'; f.last_name = "Clerkson"; cout << "Foo size: " << sizeof(f) << " Size of first_name: " << sizeof(f.first_name) << " Size of middle_initial: " << sizeof(f.middle_initial) << " Size of last_name: " << sizeof(f.last_name) << endl; cout << "Address f: " << (int)&f << "\n" << "Address first_name: " << (int)&f.first_name << "\n" << "middle_initial: " << (int)&f.middle_initial << "\n" << "Address last_name: " << (int)&f.last_name << endl; *(&f.middle_initial + 1) = 'A'; *(&f.middle_initial + 2) = 'B'; *(&f.middle_initial + 3) = 'C'; char *ptr = &f.middle_initial + 1; cout << "Char at +1: " << *ptr; }
[ "cephastorm@outlook.com" ]
cephastorm@outlook.com
c4c0cd927ca1e2464a7d2052b26664865cbd2448
fe2836176ca940977734312801f647c12e32a297
/UVa/Graph/Minimum Spanning Tree/11631 Dark roads/main.cpp
5274fa0294349fb902dacf701522a6f51240be12
[]
no_license
henrybear327/Sandbox
ef26d96bc5cbcdc1ce04bf507e19212ca3ceb064
d77627dd713035ab89c755a515da95ecb1b1121b
refs/heads/master
2022-12-25T16:11:03.363028
2022-12-10T21:08:41
2022-12-10T21:08:41
53,817,848
2
0
null
null
null
null
UTF-8
C++
false
false
1,050
cpp
#include <bits/stdc++.h> using namespace std; typedef pair< int, int > ii; #define N 200100 struct UFDS { int par[N]; void init() { memset(par, -1, sizeof(par)); } int root(int x) { return par[x] < 0 ? x : par[x] = root(par[x]); } void merge(int x, int y) { x = root(x); y = root(y); if(x == y) return; if(par[x] > par[y]) swap(x, y); par[x] += par[y]; par[y] = x; } } ufds; int main() { int n, m; while(scanf("%d %d", &n, &m) == 2 && (m || n)) { ufds.init(); int sum = 0; vector< pair<int, ii> > inp; for(int i = 0; i < m; i++) { int u, v, w; scanf("%d %d %d", &u, &v, &w); sum += w; inp.push_back(make_pair(w, ii(u, v))); } sort(inp.begin(), inp.end()); int early = 0, tot = 0; for(int i = 0; i < (int)inp.size() && early < n - 1; i++) { int w = inp[i].first; int u = inp[i].second.first; int v = inp[i].second.second; if(ufds.root(u) == ufds.root(v)) continue; early++; ufds.merge(u, v); tot += w; } printf("%d\n", sum - tot); } return 0; }
[ "henrybear327@gmail.com" ]
henrybear327@gmail.com
970764f2a53a08af4680adbde356c19260256be9
748ae5463007deeeadb37a0cab797e251fc7b41f
/aadcUser/frAIburg_LightController/light_controller.h
280ec198df456112daac2aef70003da854b971d2
[ "BSD-3-Clause" ]
permissive
PhilJd/frAIburg
30682c866728a6b64545b5194b753fad62674f18
7585999953486bceb945f1eb7a96cbe94ea72186
refs/heads/master
2021-04-25T12:47:24.859040
2019-03-23T10:29:02
2019-03-23T10:29:02
110,755,031
10
3
null
null
null
null
UTF-8
C++
false
false
4,825
h
/********************************************************************** Copyright (c) 2017, team frAIburg Licensed under BSD-3. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the <organization> 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 <COPYRIGHT HOLDER> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. **********************************************************************/ #ifndef AADCUSER_FRAIBURG_LIGHT_CONTROLLER_FILTER_H_ #define AADCUSER_FRAIBURG_LIGHT_CONTROLLER_FILTER_H_ #define ADTF_TEMPLATE_FILTER_NAME "frAIburg Light Controller" // keep frAIburg #define OID_ADTF_TEMPLATE_FILTER "adtf.example.light_controller" // appears in the Component Tree in ADTF #define ADTF_FILTER_DESC "Controls the lights of the car" #include "stdafx.h" #include <boost/assign/list_of.hpp> #include "slim_pins.h" #include "nonpin_types.h" #include "adtf_tools.h" #include "aadc_structs.h" #include "adtf_tools.h" class LightController : public adtf::cFilter { /*! set the filter ID and the version */ ADTF_FILTER(OID_ADTF_TEMPLATE_FILTER, ADTF_TEMPLATE_FILTER_NAME, adtf::OBJCAT_DataFilter); public: /*! default constructor for template class \param __info [in] This is the name of the filter instance. */ explicit LightController(const tChar* __info); /*! default destructor */ virtual ~LightController(); public: /// INPUT PINS /*! the input pin for template data */ slim::InputPin pin_in_light_command_; /// OUTPUT PINS /*! the output pin for template data */ slim::OutputPin pin_out_turn_left_; slim::OutputPin pin_out_turn_right_; slim::OutputPin pin_out_hazzard_lights_; slim::OutputPin pin_out_head_lights_; slim::OutputPin pin_out_brake_lights_; slim::OutputPin pin_out_reverse_lights_; /** cFILTER STATEMACHINE***************************************************/ /*! Implements the default cFilter state machine call. e*/ virtual tResult Init(tInitStage stage, ucom::IException** __exception_ptr); /*! Implements the default cFilter state machine call.*/ virtual tResult Shutdown(tInitStage stage, ucom::IException** __exception_ptr = NULL); /*! This Function will be called by all pins the filter is registered to.*/ virtual tResult OnPinEvent(adtf::IPin* source, tInt event_code, tInt param1, tInt param2, adtf::IMediaSample* media_sample); /** PIN METHODS **********************************************************/ /*! this function creates all the input pins of filter*/ tResult CreateInputPins(ucom::IException** __exception_ptr = NULL); /*! this function creates all the output pins of filter*/ tResult CreateOutputPins(ucom::IException** __exception_ptr = NULL); /*! this function creates all the output pins of filter*/ tResult SetPinIDs(); tResult ProcessLightCommand(IMediaSample* pMediaSample); tResult TransmitBoolValue(slim::OutputPin& oPin, tBool bValue); /** USER *****************************************************************/ /*! func is doing .... * \param sample the new media sample * \return Standard Result Code. */ //tResult YourFunc(IMediaSample* sample); }; // ***************************************************************************** #endif // AADCUSER_FRAIBURG_LIGHT_CONTROLLER_FILTER_H_ /*! *@} */
[ "jundp@informatik.uni-freiburg.de" ]
jundp@informatik.uni-freiburg.de
eab16cfac9ac5173cb77e0b91fd27946051bcf91
dc4f4c16c4aa230b4141a5ddfeada215b0451e5a
/.localhistory/C/Users/Martin Samsonstuen/Dropbox/bildebehandlingsprosjekt/bildebehandling/Bildebehandling/Bildebehandling/1537863730$Source.cpp
0326eee0a30adefc321417665c6076887321ea68
[]
no_license
zeathd/Bildebehandling
ea2317121cdccc82f8ed757c438254f5f79b4c83
84367e0d4e1a9fbd7d845b4b086ec509834be436
refs/heads/master
2020-03-29T18:34:08.444584
2018-09-25T08:52:15
2018-09-25T08:52:15
150,220,821
0
0
null
null
null
null
UTF-8
C++
false
false
197
cpp
#include <iostream> using namespace std; #include "Bilde.h" int main() { Bilde *testbilde = new Bilde; testbilde->lesBitmapFil("tester.bmp"); delete testbilde; testbilde = 0; return 0; }
[ "Martin.Samsonstuen@hotmail.com" ]
Martin.Samsonstuen@hotmail.com
ff006b4c9e868160b5817ae2f74fa5f128be4c87
e217eaf05d0dab8dd339032b6c58636841aa8815
/Ifc4/src/OpenInfraPlatform/Ifc4/entity/IfcCoolingTowerType.cpp
1264728f6903d78cc0ded235b429efe51494f00f
[]
no_license
bigdoods/OpenInfraPlatform
f7785ebe4cb46e24d7f636e1b4110679d78a4303
0266e86a9f25f2ea9ec837d8d340d31a58a83c8e
refs/heads/master
2021-01-21T03:41:20.124443
2016-01-26T23:20:21
2016-01-26T23:20:21
57,377,206
0
1
null
2016-04-29T10:38:19
2016-04-29T10:38:19
null
UTF-8
C++
false
false
4,969
cpp
/*! \verbatim * \copyright Copyright (c) 2015 Julian Amann. All rights reserved. * \author Julian Amann <julian.amann@tum.de> (https://www.cms.bgu.tum.de/en/team/amann) * \brief This file is part of the OpenInfraPlatform. * \endverbatim */ #include <sstream> #include <limits> #include "OpenInfraPlatform/Ifc4/model/Ifc4Exception.h" #include "OpenInfraPlatform/Ifc4/reader/ReaderUtil.h" #include "OpenInfraPlatform/Ifc4/writer/WriterUtil.h" #include "OpenInfraPlatform/Ifc4/Ifc4EntityEnums.h" #include "include/IfcCoolingTowerType.h" #include "include/IfcCoolingTowerTypeEnum.h" #include "include/IfcGloballyUniqueId.h" #include "include/IfcIdentifier.h" #include "include/IfcLabel.h" #include "include/IfcOwnerHistory.h" #include "include/IfcPropertySetDefinition.h" #include "include/IfcRelAggregates.h" #include "include/IfcRelAssigns.h" #include "include/IfcRelAssignsToProduct.h" #include "include/IfcRelAssociates.h" #include "include/IfcRelDeclares.h" #include "include/IfcRelDefinesByType.h" #include "include/IfcRelNests.h" #include "include/IfcRepresentationMap.h" #include "include/IfcText.h" namespace OpenInfraPlatform { namespace Ifc4 { // ENTITY IfcCoolingTowerType IfcCoolingTowerType::IfcCoolingTowerType() { m_entity_enum = IFCCOOLINGTOWERTYPE; } IfcCoolingTowerType::IfcCoolingTowerType( int id ) { m_id = id; m_entity_enum = IFCCOOLINGTOWERTYPE; } IfcCoolingTowerType::~IfcCoolingTowerType() {} // method setEntity takes over all attributes from another instance of the class void IfcCoolingTowerType::setEntity( shared_ptr<Ifc4Entity> other_entity ) { shared_ptr<IfcCoolingTowerType> other = dynamic_pointer_cast<IfcCoolingTowerType>(other_entity); if( !other) { return; } m_GlobalId = other->m_GlobalId; m_OwnerHistory = other->m_OwnerHistory; m_Name = other->m_Name; m_Description = other->m_Description; m_ApplicableOccurrence = other->m_ApplicableOccurrence; m_HasPropertySets = other->m_HasPropertySets; m_RepresentationMaps = other->m_RepresentationMaps; m_Tag = other->m_Tag; m_ElementType = other->m_ElementType; m_PredefinedType = other->m_PredefinedType; } void IfcCoolingTowerType::getStepLine( std::stringstream& stream ) const { stream << "#" << m_id << "=IFCCOOLINGTOWERTYPE" << "("; if( m_GlobalId ) { m_GlobalId->getStepParameter( stream ); } else { stream << "$"; } stream << ","; if( m_OwnerHistory ) { stream << "#" << m_OwnerHistory->getId(); } else { stream << "$"; } stream << ","; if( m_Name ) { m_Name->getStepParameter( stream ); } else { stream << "$"; } stream << ","; if( m_Description ) { m_Description->getStepParameter( stream ); } else { stream << "$"; } stream << ","; if( m_ApplicableOccurrence ) { m_ApplicableOccurrence->getStepParameter( stream ); } else { stream << "$"; } stream << ","; writeEntityList( stream, m_HasPropertySets ); stream << ","; writeEntityList( stream, m_RepresentationMaps ); stream << ","; if( m_Tag ) { m_Tag->getStepParameter( stream ); } else { stream << "$"; } stream << ","; if( m_ElementType ) { m_ElementType->getStepParameter( stream ); } else { stream << "$"; } stream << ","; if( m_PredefinedType ) { m_PredefinedType->getStepParameter( stream ); } else { stream << "$"; } stream << ");"; } void IfcCoolingTowerType::getStepParameter( std::stringstream& stream, bool ) const { stream << "#" << m_id; } void IfcCoolingTowerType::readStepData( std::vector<std::string>& args, const std::map<int,shared_ptr<Ifc4Entity> >& map ) { const int num_args = (int)args.size(); if( num_args<10 ){ std::stringstream strserr; strserr << "Wrong parameter count for entity IfcCoolingTowerType, expecting 10, having " << num_args << ". Object id: " << getId() << std::endl; throw Ifc4Exception( strserr.str().c_str() ); } #ifdef _DEBUG if( num_args>10 ){ std::cout << "Wrong parameter count for entity IfcCoolingTowerType, expecting 10, having " << num_args << ". Object id: " << getId() << std::endl; } #endif m_GlobalId = IfcGloballyUniqueId::readStepData( args[0] ); readEntityReference( args[1], m_OwnerHistory, map ); m_Name = IfcLabel::readStepData( args[2] ); m_Description = IfcText::readStepData( args[3] ); m_ApplicableOccurrence = IfcIdentifier::readStepData( args[4] ); readEntityReferenceList( args[5], m_HasPropertySets, map ); readEntityReferenceList( args[6], m_RepresentationMaps, map ); m_Tag = IfcLabel::readStepData( args[7] ); m_ElementType = IfcLabel::readStepData( args[8] ); m_PredefinedType = IfcCoolingTowerTypeEnum::readStepData( args[9] ); } void IfcCoolingTowerType::setInverseCounterparts( shared_ptr<Ifc4Entity> ptr_self_entity ) { IfcEnergyConversionDeviceType::setInverseCounterparts( ptr_self_entity ); } void IfcCoolingTowerType::unlinkSelf() { IfcEnergyConversionDeviceType::unlinkSelf(); } } // end namespace Ifc4 } // end namespace OpenInfraPlatform
[ "julian.amann@tum.de" ]
julian.amann@tum.de
1ddf5e5263604140d6b181feef5893297b1972ae
05ee2e3ef095e61d8dfa359112359704a6d33c69
/Project2/Project2/ElementMultime.h
dc3b98cc8c6dea56d420f082c8b0b2d68cff8d70
[]
no_license
Daniela02/Tema-2-POO
1808f238736b76e3dcd38d02ca4de5ec7656f5bf
96935f7e24dc404b6a061144d7187d7680867626
refs/heads/master
2020-03-12T17:38:59.535812
2018-05-03T08:54:22
2018-05-03T08:54:22
130,741,324
0
0
null
null
null
null
UTF-8
C++
false
false
424
h
#pragma once #include "ElementMultime.h" #include <iostream> using namespace std; class ElementMultime { public: int x; ElementMultime(); ElementMultime(int); ElementMultime(ElementMultime &); virtual ~ElementMultime(){} ElementMultime & operator = (const ElementMultime &); friend istream &operator >> (istream &, ElementMultime &); friend ostream &operator << (ostream &, ElementMultime &); };
[ "noreply@github.com" ]
noreply@github.com
e6cf36a22a1a6d89a83b7f666d8856a4b04657f4
c764fb0ff4193f97e29b3178d776b8ae7e9fd677
/project/lezhi/可执行文件/moc_GroupBox.cpp
bd1c56d3f740e1683a19a8867215ad43f8a21ef9
[]
no_license
ooshell/qtCode
0ea0293c6c7daccfb2d43378431c8f20b2c6e940
738056da71c5e8601337a911ed9e3064db5433d4
refs/heads/master
2020-09-04T23:36:25.411840
2019-11-06T06:15:09
2019-11-06T06:15:09
219,923,818
0
0
null
2019-11-06T06:05:47
2019-11-06T06:05:47
null
UTF-8
C++
false
false
4,415
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'GroupBox.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.5.1) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include "../../01-22-VideoPlayer/GroupBox.h" #include <QtCore/qbytearray.h> #include <QtCore/qmetatype.h> #if !defined(Q_MOC_OUTPUT_REVISION) #error "The header file 'GroupBox.h' doesn't include <QObject>." #elif Q_MOC_OUTPUT_REVISION != 67 #error "This file was generated using the moc from 5.5.1. It" #error "cannot be used with the include files from this version of Qt." #error "(The moc has changed too much.)" #endif QT_BEGIN_MOC_NAMESPACE struct qt_meta_stringdata_GroupBox_t { QByteArrayData data[4]; char stringdata0[40]; }; #define QT_MOC_LITERAL(idx, ofs, len) \ Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ qptrdiff(offsetof(qt_meta_stringdata_GroupBox_t, stringdata0) + ofs \ - idx * sizeof(QByteArrayData)) \ ) static const qt_meta_stringdata_GroupBox_t qt_meta_stringdata_GroupBox = { { QT_MOC_LITERAL(0, 0, 8), // "GroupBox" QT_MOC_LITERAL(1, 9, 15), // "signalMovePoint" QT_MOC_LITERAL(2, 25, 0), // "" QT_MOC_LITERAL(3, 26, 13) // "doubleClicked" }, "GroupBox\0signalMovePoint\0\0doubleClicked" }; #undef QT_MOC_LITERAL static const uint qt_meta_data_GroupBox[] = { // content: 7, // revision 0, // classname 0, 0, // classinfo 2, 14, // methods 0, 0, // properties 0, 0, // enums/sets 0, 0, // constructors 0, // flags 2, // signalCount // signals: name, argc, parameters, tag, flags 1, 1, 24, 2, 0x06 /* Public */, 3, 0, 27, 2, 0x06 /* Public */, // signals: parameters QMetaType::Void, QMetaType::QPoint, 2, QMetaType::Void, 0 // eod }; void GroupBox::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) { if (_c == QMetaObject::InvokeMetaMethod) { GroupBox *_t = static_cast<GroupBox *>(_o); Q_UNUSED(_t) switch (_id) { case 0: _t->signalMovePoint((*reinterpret_cast< QPoint(*)>(_a[1]))); break; case 1: _t->doubleClicked(); break; default: ; } } else if (_c == QMetaObject::IndexOfMethod) { int *result = reinterpret_cast<int *>(_a[0]); void **func = reinterpret_cast<void **>(_a[1]); { typedef void (GroupBox::*_t)(QPoint ); if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&GroupBox::signalMovePoint)) { *result = 0; } } { typedef void (GroupBox::*_t)(); if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&GroupBox::doubleClicked)) { *result = 1; } } } } const QMetaObject GroupBox::staticMetaObject = { { &QWidget::staticMetaObject, qt_meta_stringdata_GroupBox.data, qt_meta_data_GroupBox, qt_static_metacall, Q_NULLPTR, Q_NULLPTR} }; const QMetaObject *GroupBox::metaObject() const { return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; } void *GroupBox::qt_metacast(const char *_clname) { if (!_clname) return Q_NULLPTR; if (!strcmp(_clname, qt_meta_stringdata_GroupBox.stringdata0)) return static_cast<void*>(const_cast< GroupBox*>(this)); return QWidget::qt_metacast(_clname); } int GroupBox::qt_metacall(QMetaObject::Call _c, int _id, void **_a) { _id = QWidget::qt_metacall(_c, _id, _a); if (_id < 0) return _id; if (_c == QMetaObject::InvokeMetaMethod) { if (_id < 2) qt_static_metacall(this, _c, _id, _a); _id -= 2; } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { if (_id < 2) *reinterpret_cast<int*>(_a[0]) = -1; _id -= 2; } return _id; } // SIGNAL 0 void GroupBox::signalMovePoint(QPoint _t1) { void *_a[] = { Q_NULLPTR, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) }; QMetaObject::activate(this, &staticMetaObject, 0, _a); } // SIGNAL 1 void GroupBox::doubleClicked() { QMetaObject::activate(this, &staticMetaObject, 1, Q_NULLPTR); } QT_END_MOC_NAMESPACE
[ "523090538@qq.com" ]
523090538@qq.com
1901366b6ae673a0790210be63bd9af215321247
c2dce5941201390ee01abc300f62fd4e4d3281e0
/include/cetty/util/SecureRandom.h
d83c31442a70367774049daf6ddb127f47572e1e
[ "Apache-2.0" ]
permissive
justding/cetty2
1cf2b7b5808fe0ca9dd5221679ba44fcbba2b8dc
62ac0cd1438275097e47a9ba471e72efd2746ded
refs/heads/master
2020-12-14T09:01:47.987777
2015-11-08T10:38:59
2015-11-08T10:38:59
66,538,583
1
0
null
2016-08-25T08:11:20
2016-08-25T08:11:20
null
UTF-8
C++
false
false
1,112
h
/* Copyright 2012 10gen 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. */ #if (CETTY_OS == CETTY_OS_MAC_OS_X || CETTY_OS == CETTY_OS_LINUX) #include <fstream> #endif #include <cetty/Types.h> namespace cetty { namespace util { /** * More secure random numbers * Suitable for nonce/crypto * Slower than PseudoRandom, so only use when really need */ class SecureRandom { public: SecureRandom(); ~SecureRandom(); int64_t nextInt64(); private: #if (CETTY_OS == CETTY_OS_MAC_OS_X || CETTY_OS == CETTY_OS_LINUX) std::ifstream stream_; #endif }; } }
[ "frankee.zhou@gmail.com" ]
frankee.zhou@gmail.com
1a8114a7e2207753052cbb1b73482bf2e6b511f6
aa4f95b04a683f06577d3c2035594ae6bf7bcc49
/GameEngineTK/FollowCamera.cpp
440171ffcf3e863c8b0c2c76073a6a6ed705debe
[]
no_license
HimetyanSamaruha/GameEngineTK
d05b0c766fdc13d5bdede7e9919ce48ee6bc8246
86c72a91d1470dede97886e505c485d4b3d2a919
refs/heads/master
2021-01-19T13:49:49.494629
2017-06-02T09:04:40
2017-06-02T09:04:40
88,112,267
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
1,648
cpp
#include "FollowCamera.h" using namespace DirectX; using namespace DirectX::SimpleMath; const float FollowCamera::CAMERA_DISTANCE = 5.0f; const float FollowCamera::CAMERA_DISTANCE_FPS = 0.01f; FollowCamera::FollowCamera(int w, int h) :Camera(w, h) { m_target_pos = Vector3::Zero; m_target_rot = 0.0f; maincamera = 1; m_keyboard = nullptr; } void FollowCamera::Update() { Keyboard::State keyboardstate = m_keyboard->GetState(); m_tracker.Update(keyboardstate); Vector3 Refpos, Eyepos; if (m_tracker.IsKeyReleased(Keyboard::Keys::C)) { maincamera = maincamera*-1; } if(maincamera==1) { //TPSカメラ Refpos = m_target_pos + Vector3(0, 2, 0); Vector3 cameraV(0.0f, 0.0f, CAMERA_DISTANCE); Matrix rot = Matrix::CreateRotationY(m_target_rot); cameraV = Vector3::TransformNormal(cameraV, rot); Eyepos = Refpos + cameraV; //ゴム紐カメラ Eyepos = m_eyepos + (Eyepos - m_eyepos)*0.03f; Refpos = m_refpos + (Refpos - m_refpos)*0.15f; } else if(maincamera==-1) { //FPSカメラ Eyepos = m_target_pos + Vector3(0, 1.0f, 0); Vector3 cameraV(0, 0, -CAMERA_DISTANCE); Matrix rotmat = Matrix::CreateRotationY(m_target_rot); cameraV = Vector3::TransformNormal(cameraV, rotmat); Refpos = m_eyepos + cameraV; } Seteyepos(Eyepos); Setrefpos(Refpos); //基底クラスの更新 Camera::Update(); } void FollowCamera::SetTargetpos(DirectX::SimpleMath::Vector3 taregtpos) { this->m_target_pos = taregtpos; } void FollowCamera::SetTagetAngle(float targetangle) { this->m_target_rot = targetangle; } void FollowCamera::SetKeyboard(DirectX::Keyboard * keyborard) { m_keyboard = keyborard; }
[ "himetyansamaruha@gmail.com" ]
himetyansamaruha@gmail.com
4f49454fc2ec1d7ce4c254c6bae4ed64a93eb77e
592640e3420f7ac3814fe7f8c4f755e8fe046ca2
/Asteroids/src/PingPong/GameCtrlSystem.cpp
4d4f976c69d377359cd27b8152c54fbe7484d63f
[]
no_license
nestcmartin/SDL2-Projects
9e3a233b29c3b171623d0868928bb1d76689c41c
58929acb94ca3df723d4999d03564b9b107c590c
refs/heads/master
2022-11-14T07:12:17.828667
2020-07-06T16:07:36
2020-07-06T16:07:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,039
cpp
#include "GameCtrlSystem.h" #include "Manager.h" #include "Score.h" #include "GameState.h" #include "messages.h" #include "PhysicsSystem.h" GameCtrlSystem::GameCtrlSystem() : System(ecs::_sys_GameCtrl) { } void GameCtrlSystem::recieve(const msg::Message &msg) { switch (msg.id) { case msg::_PLAYER_INFO: { auto gameState = mngr_->getHandler(ecs::_hdlr_GameInfo)->getComponent< GameState>(ecs::GameState); if (gameState->ready_ || msg.senderClientId == mngr_->getClientId()) return; gameState->ready_ = true; mngr_->send<msg::Message>(msg::_PLAYER_INFO); break; } case msg::_CLIENT_DISCONNECTED: { auto gameState = mngr_->getHandler(ecs::_hdlr_GameInfo)->getComponent< GameState>(ecs::GameState); auto score = mngr_->getHandler(ecs::_hdlr_GameInfo)->getComponent<Score>( ecs::Score); gameState->ready_ = false; gameState->currRound_ = 0; score->leftScore_ = score->rightScore_ = 0; break; } case msg::_START_REQ: { auto gameState = mngr_->getHandler(ecs::_hdlr_GameInfo)->getComponent< GameState>(ecs::GameState); if (mngr_->getClientId() == 0 && !gameState->running_) { Vector2D v = mngr_->getSystem<PhysicsSystem>(ecs::_sys_Physics)->resetBallVelocity(); mngr_->send<msg::StartRoundMsg>(v.getX(), v.getY()); } break; } case msg::_START_ROUND: startRound(); break; case msg::_BALL_SIDE_EXIT_: onBallExit(static_cast<const msg::BallSideExitMsg&>(msg).side); break; default: break; } } void GameCtrlSystem::init() { // create the GameInfo entity Entity *gameInfo = mngr_->addEntity(); gameInfo->addComponent<Score>(); gameInfo->addComponent<GameState>(); mngr_->setHandler(ecs::_hdlr_GameInfo, gameInfo); mngr_->send<msg::Message>(msg::_PLAYER_INFO); } void GameCtrlSystem::update() { auto gameState = mngr_->getHandler(ecs::_hdlr_GameInfo)->getComponent< GameState>(ecs::GameState); if (gameState->ready_) { if (!gameState->running_) { InputHandler *ih = game_->getInputHandler(); if (ih->keyDownEvent()) { mngr_->send<msg::Message>(msg::_START_REQ); } } } } void GameCtrlSystem::onBallExit(uint8_t side) { auto gameState = mngr_->getHandler(ecs::_hdlr_GameInfo)->getComponent< GameState>(ecs::GameState); gameState->running_ = false; auto score = mngr_->getHandler(ecs::_hdlr_GameInfo)->getComponent<Score>( ecs::Score); switch (side) { case 0: score->rightScore_++; break; case 1: score->leftScore_++; break; default: break; } mngr_->getSystem<PhysicsSystem>(ecs::_sys_Physics)->resetBallPosition(); } void GameCtrlSystem::startRound() { auto gameState = mngr_->getHandler(ecs::_hdlr_GameInfo)->getComponent< GameState>(ecs::GameState); // if game is over, reset score, rounds, etc. if (gameState->currRound_ == gameState->maxRounds_) { gameState->currRound_ = 0; auto score = mngr_->getHandler(ecs::_hdlr_GameInfo)->getComponent<Score>( ecs::Score); score->leftScore_ = score->rightScore_ = 0; } gameState->running_ = true; gameState->currRound_++; }
[ "nestorcmartin@gmail.com" ]
nestorcmartin@gmail.com
4bd85872bef594b5b41df4505130ecc049b1c759
09d9b50726c2e5cdc768c57930a84edc984d2a6e
/LIGHT OJ/Greedy/1166 - Old Sorting.cpp
077d8b174996405b2f02926328906e9deb4035cf
[]
no_license
omar-sharif03/Competitive-Programming
86b4e99f16a6711131d503eb8e99889daa92b53d
c8bc015af372eeb328c572d16038d0d0aac6bb6a
refs/heads/master
2022-11-15T08:22:08.474648
2020-07-15T12:30:53
2020-07-15T12:30:53
279,789,803
0
0
null
null
null
null
UTF-8
C++
false
false
561
cpp
#include<bits/stdc++.h> using namespace std; int ara[110],n; int func(int i) { if(ara[i]==i)return 0; else{ for(int j=i+1;j<=n;j++){ if(ara[j]==i){ swap(ara[j],ara[i]); return 1; } } } } int main() { int t,cas=0; cin>>t; while(t--){ scanf("%d",&n); for(int i=1;i<=n;i++) scanf("%d",&ara[i]); int count=0; for(int i=1;i<=n;i++){ count+=func(i); } printf("Case %d: %d\n",++cas,count); } }
[ "omar.sharif1303@gmail.com" ]
omar.sharif1303@gmail.com
7b5e06ec76500c4425e0ec9082543244a79a2a88
9ded61896225dbb9ea63a5f45ff56702954ffaae
/codeforces/1765a.cpp
1590df6fe2d5798a73f0e71e22ea4945a15eb6ac
[ "MIT" ]
permissive
djulcac/competitive-programming
03c2c7c1b046da62dbdffa8bd1a6e7ca4a6364d7
bbe8b8035f2ead3bced803c735adc297f78fb647
refs/heads/master
2023-04-30T11:28:21.532380
2023-02-01T19:07:31
2023-02-01T19:07:31
170,201,379
0
0
MIT
2023-02-01T19:07:32
2019-02-11T20:59:03
C++
UTF-8
C++
false
false
381
cpp
// 2022-11-27T05:36:29.498002 #include<bits/stdc++.h> using namespace std; typedef long long ll; #define _int int #define F(i,a,b) for(_int i=a,_=a<b;(_&&i<b)||(!_&&i>b);_?i++:i--) #define f(i,n) for(_int i=0;i<n;i++) ll solve(){ ll n,k,m,t,nn; cin>>n; return 0; } int main(){ ll T = 1; // cin>>T; // while(T--) solve(); while(T--) cout<<solve()<<endl; return 0; } //3.2
[ "djulcac@uni.pe" ]
djulcac@uni.pe
ec587008f4c18fe8dd90bb49d5ac4810f4c346cb
aa8c872ca975de05b97d166c8b774e1fb1bc9cdc
/src/main_oper.hpp
108bd6c9b1a0a90ded35bac7de30b24795141700
[ "MIT" ]
permissive
flisboac/ukoct
f9254f9be58c37fa6eae8d1f7b623725b283409d
221c33b5e3f0ff9d3eb25fa90a081cfa327dad11
refs/heads/master
2020-05-16T03:10:23.621161
2014-10-19T08:00:02
2014-10-19T08:00:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
163
hpp
#ifndef MAIN_OPER_HPP_ #define MAIN_OPER_HPP_ #include "main.hpp" extern const IOptionGroupCallback* const oper_operationCallback; #endif /* MAIN_OPER_HPP_ */
[ "flisboa.costa@gmail.com" ]
flisboa.costa@gmail.com
ce7de4fa68f04ad1720fb0c4df94503d1deb85c0
77780f9ccc465ae847c92c3a35c8933b0c63fa4e
/剑指offer题解/翻转单词顺序.cpp
662ebdc2f00d8a0d39f07fc2e66aaf203a8215a2
[]
no_license
changmu/StructureAndAlgorithm
0e41cf43efba6136849193a0d45dfa9eb7c9c832
d421179dece969bc1cd4e478e514f2de968c591a
refs/heads/master
2021-07-18T04:04:46.512455
2020-05-17T11:50:26
2020-05-17T11:50:26
30,492,355
1
0
null
null
null
null
WINDOWS-1253
C++
false
false
813
cpp
/************************************************************* * ΐύΘηΚδΘλΧΦ·ϋ΄®"I am a student."£¬ΤςΚδ³φ"student. a am I"΅£ *************************************************************/ void Reverse(char *pBegin, char *pEnd) { if (pBegin == NULL || pEnd == NULL) return; for (; pBegin < pEnd; ++pBegin, --pEnd) { char temp = *pBegin; *pBegin = *pEnd; *pEnd = temp; } } char *ReverseSentence(char *pData) { if (pData == NULL) return NULL; char *pBegin = pData; char *pEnd = pData; while (*pEnd != NULL) ++pEnd; --pEnd; Reverse(pBegin, pEnd); pBegin = pEnd = pData; while (*pBegin != NULL) { if (pBegin == ' ') pEnd = ++pBegin; else if (pEnd == ' ' || pEnd == '\0') { Reverse(pBegin, pEnd - 1); pBegin = ++pEnd; } else ++pEnd; } return pData; }
[ "2276479303@qq.com" ]
2276479303@qq.com
0a78c0cb7f9d41fe196b7c50779526d3eed5e0e4
fc25601d60cfbd408a816f93edfac5859c4bd649
/MyBenechia/TextBrick.cpp
fd05a35599556a2bea678bd6277b3b5ca0cd15e6
[]
no_license
SKMBOSS/WINDOW_API
b5d458d8b2ff2627cdbb31932ae5109c34989c53
4fc9b8c319ef22f3268f4011e6a8791890c3ac41
refs/heads/master
2020-07-12T12:51:47.478359
2019-10-24T05:02:08
2019-10-24T05:02:08
204,821,161
0
0
null
null
null
null
UTF-8
C++
false
false
755
cpp
#include "TextBrick.h" TextBrick::TextBrick() { } TextBrick::~TextBrick() { } TextBrick::TextBrick(int rtPos, int _speed, string _targetText) { SetSpeed(_speed); targetText = _targetText; SetRtCollider(rtPos); } void TextBrick::Update() { DownBrick(); } void TextBrick::Render(HDC hdc) { RenderBrick(hdc); } void TextBrick::SetRtCollider(int rtPos) { int spaceArea = targetText.length(); rtCollider.left = rtPos - spaceArea * 5; rtCollider.top = 0; rtCollider.right = rtPos + spaceArea * 5; rtCollider.bottom = 35; } void TextBrick::RenderBrick(HDC hdc) { Rectangle(hdc, rtCollider.left, rtCollider.top, rtCollider.right, rtCollider.bottom); DrawText(hdc, targetText.c_str(), -1, &rtCollider, DT_CENTER | DT_VCENTER | DT_SINGLELINE); }
[ "zzangjungsu@gmail.com" ]
zzangjungsu@gmail.com
f159271bd77abb3fc0e40c337422b4acf0e81c16
3ea34c23f90326359c3c64281680a7ee237ff0f2
/Data/2765/E
3bb083caed7904dc0105ad6ea725a98ed69f9de4
[]
no_license
lcnbr/EM
c6b90c02ba08422809e94882917c87ae81b501a2
aec19cb6e07e6659786e92db0ccbe4f3d0b6c317
refs/heads/master
2023-04-28T20:25:40.955518
2020-02-16T23:14:07
2020-02-16T23:14:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
80,868
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | foam-extend: Open Source CFD | | \\ / O peration | Version: 4.0 | | \\ / A nd | Web: http://www.foam-extend.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volVectorField; location "Data/2765"; object E; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 -1 0 0 0 0]; internalField nonuniform List<vector> 4096 ( (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-167926.935393695,89423.9164277705,78503.0189659233) (-177593.319168631,85759.276625029,170337.061509525) (-200000.102647277,78070.1319371328,292267.032219665) (-242271.075273461,66020.3896613297,468517.717831807) (-318516.892405515,49756.1067763317,737278.503460991) (-455399.086052236,31022.8833391131,1161654.70617412) (-703211.95842449,13973.4580390631,1850893.20655957) (-1151109.21122965,3541.01481155435,2998461.40297768) (-1898545.66867932,62.7654108631756,4896944.30624611) (-2645307.45161856,-262.422382087565,7542514.18024685) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-177615.69585061,192201.637979923,74837.9742984568) (-187375.674137053,185261.105565343,162711.819495198) (-210107.874317705,170612.274240976,280277.551509058) (-253359.232144362,147314.332572766,452342.840741985) (-331736.581310706,115162.054535474,718673.474293545) (-471893.063391207,76879.1716655907,1144710.24935826) (-722444.271003525,40646.4331622942,1840481.54523855) (-1168660.68646246,17697.4808546723,2994985.76565784) (-1910250.26547629,8665.67363918115,4896633.12290585) (-2650758.0830485,4408.74521290115,7542720.03835931) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-199726.023899479,324023.594754718,67904.0671246844) (-209650.942861253,314664.678463543,148151.437087742) (-233102.571223868,294808.838347473,257057.444205118) (-278511.882374459,262654.451493313,420229.207659033) (-361893.928819124,216820.936976923,680464.254036695) (-510732.093638947,159543.742445225,1108531.77689601) (-769903.427243348,101557.937925207,1817523.69937646) (-1212364.30608935,61711.7507224243,2985873.735598) (-1938407.30302865,40667.9222649794,4892278.79000092) (-2663512.23914045,22034.1193348617,7538165.65501942) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-240986.338770656,506409.856340465,58600.0771849082) (-251074.874529276,495942.918101516,128396.712076213) (-275436.572714129,473686.639756041,224955.483381765) (-323975.02060227,437165.138208713,374419.817268629) (-415631.644002743,383655.184865921,623217.213382386) (-581160.380965768,313361.28989698,1050560.04689639) (-860881.362208193,235313.293841489,1777686.05318829) (-1296957.8524991,171558.368611211,2964797.28779859) (-1990007.81550796,121870.040165874,4873602.98540558) (-2686025.85086697,65562.9501563087,7516100.00545127) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-314922.656672922,773106.934373172,48225.5786402105) (-324972.219115393,762902.111314285,106238.604542832) (-349814.426282197,741264.411395616,188475.259185454) (-401001.696441847,705646.675440064,320995.418395951) (-501210.12000631,652871.081165806,552989.642102375) (-687395.225741267,581184.538579609,972561.619160994) (-999473.901083999,493327.492996361,1714021.32109012) (-1425809.18723194,396188.039980395,2915200.83695292) (-2065030.46158289,284730.577095207,4817370.76160658) (-2718574.76213289,150898.944700213,7450609.52919555) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-448419.241979176,1183391.80861212,38134.3677402339) (-457974.793998457,1174305.89499973,84705.3780532359) (-482004.242968469,1155017.86781757,152956.164599756) (-532714.581355014,1122960.87845081,268356.542944014) (-633987.520524062,1073813.82987357,481401.314760327) (-823718.614739837,1001461.80370008,884842.664379704) (-1136778.46150821,897884.74490561,1617063.87397866) (-1543756.67689027,753093.242685316,2803915.34816402) (-2146339.00214846,551355.38056209,4683629.54684565) (-2759555.87228395,294310.666330021,7299773.69749973) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-693450.988226544,1847677.97697767,29164.8198609841) (-701935.247456978,1839856.16751359,65549.7948041106) (-723503.768944292,1823060.30483727,121011.126728701) (-769835.944610438,1794446.48318472,219361.466605225) (-863923.244297791,1747892.30366235,409206.237114231) (-1042247.08668681,1671410.59662051,781504.530880612) (-1336083.75960523,1542928.46054285,1472544.57484862) (-1706139.88932335,1329294.35507249,2602483.35178477) (-2267507.53019832,994542.565637016,4426803.69690812) (-2826387.49735937,541864.81951351,7005637.04108411) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-1141625.08636115,2967907.10539454,21395.9579442834) (-1148404.41057748,2960813.5472776,48842.988757768) (-1165776.79393989,2945226.66506007,92453.4224748733) (-1203472.60131517,2917411.62058132,172960.886393431) (-1280813.66615451,2868696.48732381,332970.368886476) (-1429090.12895127,2780189.06808631,653282.026371935) (-1675190.89992051,2612233.94039615,1259167.4464391) (-1974766.91380319,2295160.82482798,2268067.89048683) (-2487417.13722524,1775593.68935059,3974433.90399849) (-2954141.38100384,1006424.69592853,6464015.40858726) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-1892125.97482133,4845675.48807077,14357.592145077) (-1896760.44990448,4838619.24669746,33312.3426297029) (-1908559.58901602,4822411.18399636,64687.4127093712) (-1933914.03716197,4791592.51687476,124420.553577887) (-1985008.1116997,4733398.43468979,244726.717911601) (-2080954.54745893,4620347.01162022,485523.321836624) (-2242047.35707278,4397509.89379614,942294.725509417) (-2481344.2269419,3969999.92951237,1748799.84776695) (-2892970.03654572,3211733.43477128,3205630.13889188) (-3176982.52246738,1931048.65509296,5457988.70219485) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-2642331.25360436,7480686.5907239,7320.15095123426) (-2644679.36382687,7473418.79709743,17199.9643781364) (-2650559.81116483,7456189.0054579,33981.9540814642) (-2663012.60682166,7422167.05704859,66420.0207293474) (-2687752.1207226,7355597.61346573,131972.962676042) (-2733961.10053938,7223304.32180278,262976.753032846) (-2814571.92562183,6959972.45210405,515086.120346748) (-2950392.95248677,6444603.48430927,990875.5180366) (-3176273.69003898,5453526.93257153,1925355.71027527) (-3198802.32153593,3527826.80406286,3527379.88284134) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (24808438.181072,79698.4431334267,68888.0218387375) (24792259.6241986,75948.517181476,148038.142727955) (24755042.2784766,67916.1955157932,250031.147526108) (24685581.4601473,54864.635116565,392265.558426627) (24561871.729107,36489.9639988166,600338.554353114) (24341749.6518587,14470.5187913549,913670.879088589) (23937920.4540378,-5295.95927122495,1402786.00733531) (23139808.8499872,-13993.8932176474,2250813.42077396) (21338877.7463794,-11612.5880897855,4149954.1752429) (16447826.6694063,-5728.15131849698,10187499.7869744) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (24791959.6964153,169981.490157589,65093.14214785) (24775737.8584702,162885.726019292,139993.982140681) (24738199.0934791,147545.350413882,237009.440883642) (24667430.1909853,122083.967592559,373952.266715916) (24540308.2235426,84923.3029031225,578425.70439627) (24314011.0814406,37956.4545858984,893987.205207825) (23904003.0243325,-6878.68846824108,1394074.22050682) (23109209.3588346,-26018.2162993996,2253180.07972931) (21319855.612505,-19456.731780093,4155869.92687614) (16439515.6755535,-8344.14193803082,10193163.7403314) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (24754566.8333081,282643.905174125,57996.3092136122) (24738319.4871291,273155.586928757,124707.599751664) (24700060.1614602,252416.451683933,211625.347235498) (24626193.1369511,217114.634947387,336841.241993075) (24490259.5088843,163024.428711178,531538.259919553) (24245410.7342162,89085.351763038,849218.116325224) (23811924.6314619,10551.2909979263,1374911.65959176) (23024713.4533667,-22894.7430364542,2259662.00831075) (21270718.4861507,-10920.5796482991,4166951.64843738) (16419130.2657205,-475.010413776165,10201391.5934901) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (24685795.7070311,432304.562410609,48508.8783995838) (24669575.9371975,421916.813819883,104048.421219632) (24630393.9885479,399189.167553643,176396.725525804) (24551681.1108812,360042.564020988,282764.2464067) (24399504.2482608,298016.740846372,457587.623445908) (24112724.0906249,207068.773909913,770671.311146297) (23607158.2089943,96683.041337674,1341451.57104195) (22832256.9785019,42699.2999083337,2271594.27853405) (21171360.7566305,46876.8100299217,4177379.89815514) (16380959.5307012,33037.3091798809,10201833.7784314) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (24564766.8833389,639422.364006603,38144.2398300201) (24548899.0215329,629742.909041664,81398.4853977692) (24509515.5426104,608915.640411839,137293.625084998) (24426649.1790856,573822.023197332,220814.871819014) (24255854.7203282,520023.774704023,366694.579064872) (23906182.9427377,444816.174944214,660320.590989514) (23238922.473268,356018.986043333,1287539.85336972) (22475320.6594286,278224.893475813,2275835.99457961) (21015578.402798,203437.497685832,4163618.02398053) (16324188.8345485,109957.569314811,10168885.748602) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (24349295.8309752,938092.699134799,28566.173355237) (24334493.855091,930104.822337103,60687.1924081739) (24296986.9112,913275.819099463,102287.440990005) (24215607.973239,885616.846445597,167121.644585712) (24042810.5903985,843719.524434062,291579.365371045) (23683091.7323409,782873.50564168,571663.269030716) (23007321.2772708,698575.834681157,1209958.2630518) (22277466.7786022,590690.126503555,2201221.15596938) (20882842.0336462,430186.809259472,4070242.39003897) (16259069.0421723,227487.771755033,10059038.8545802) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (23949649.9952056,1399259.24086638,20684.0562741617) (23936725.8951598,1393113.57281183,43965.7446205334) (23903479.6184921,1380498.57537641,74711.1823451729) (23829586.4043211,1360534.22676632,125323.034530781) (23668438.3590264,1330794.5499506,230837.987127945) (23324392.063391,1284463.7478086,487560.176320968) (22668894.486663,1203778.80086367,1102330.54530801) (22010218.4666917,1060645.19795845,2040968.69927594) (20686230.4740153,774637.686424288,3867731.39933525) (16147948.1948804,414098.777165388,9831736.28312305) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (23150787.2980724,2217176.75594079,14621.6819299276) (23140595.7319466,2212233.72108903,31452.9725664628) (23114116.6232127,2202213.83666354,54795.8755646422) (23054412.6636377,2186728.0803893,95668.3384265812) (22921619.9762196,2164306.1786833,184674.648757517) (22629726.2153411,2128181.67285122,407091.960860543) (22055923.1486605,2045267.04941274,959441.245168344) (21626490.8852972,1788512.37393599,1755267.85152815) (20289895.9488381,1370035.76697312,3507508.26635388) (15890902.7574165,783589.35577266,9417925.13076402) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (21345119.6075088,4095142.37500428,9740.38004427279) (21338260.3883947,4090393.46270105,21511.381570995) (21320598.8018396,4080145.3985442,39373.0102725384) (21281550.7525943,4062234.3107541,73353.5715892925) (21198433.8718594,4030420.7860845,148748.562066803) (21029409.1370539,3967154.7574153,324363.374427868) (20724807.2690881,3824832.84940795,702894.529709734) (20297089.4504,3500840.21956841,1337084.58817336) (19089267.0643974,2928369.47217116,2921465.36347013) (15109025.8857384,1909210.12276333,8634787.76971152) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (16450063.7741028,10122701.4448236,4997.4839113298) (16446627.4029099,10117705.8593164,11329.9019969924) (16437951.7275801,10106364.4624901,21550.8807439846) (16419202.9468331,10084821.6190923,41699.6001890654) (16380568.7544329,10042999.7621434,85751.3304126139) (16304613.9735288,9956958.65923543,182323.935962198) (16164048.2962038,9774296.01292465,379192.132057783) (15894884.3364726,9394787.57208165,764919.072023154) (15109630.4407241,8629620.99378053,1902715.00108865) (12285494.7134429,6726534.4187709,6726045.25154013) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-432374.969438601,63132.9223754419,52728.6466973009) (-450216.804859088,59372.4786107378,110881.015706323) (-490566.868734227,51004.8926760634,180533.688803266) (-563964.172399561,36640.3079684938,268487.431943785) (-689634.574577957,14894.7792835557,380147.374907379) (-899428.283984664,-13289.5231370922,509663.252450057) (-1242554.90069736,-39230.8722219098,604417.897969298) (-1785656.5937201,-44603.5429093073,449535.303148039) (-2564389.69086404,-30634.7255833423,-741514.115463048) (-3143575.84022524,-14049.0933915849,-6261014.0938777) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-451218.745170859,132463.78655993,48895.9959637457) (-468762.216510721,125325.865670674,102491.102446829) (-508699.347067686,109252.648127632,166190.206104189) (-582169.856434049,80711.7683123206,246767.211741785) (-709766.344421083,34752.0489865504,352032.928564521) (-925247.932662482,-30742.4180996475,483793.256192252) (-1276404.0595969,-99019.6543043243,599037.540766082) (-1814240.87784491,-110556.512424856,463489.165523306) (-2578727.67879213,-68608.5306527683,-724905.319547933) (-3148644.90357711,-28724.3005237105,-6247021.11472292) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-493341.870192945,213675.924251638,41744.9843716105) (-510257.858761785,204233.616888362,86462.9976069345) (-549461.540439177,182584.808901003,137700.957294984) (-623656.348087231,142467.885456618,200842.743751062) (-757861.699727253,72166.4999544829,286597.919956716) (-995556.276728443,-43697.068050612,415567.999414365) (-1389677.01584518,-194278.083258371,587476.494237541) (-1913338.51864222,-215354.81485329,505375.187236929) (-2622193.83267644,-110242.802301327,-685029.803725139) (-3162596.44293681,-38607.7161527926,-6218371.26087669) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-568682.965788248,310912.417866286,32290.5977668716) (-584693.557168846,300943.110497248,64899.0170863826) (-622776.295400036,278037.736784436,97664.791712973) (-698505.617132164,234796.057770467,130571.765974519) (-847687.050351428,154236.542462768,170741.440640527) (-1150550.73962315,409.511185114436,264958.110214945) (-1741841.74150622,-271612.39458023,566340.790599428) (-2237911.77647951,-314227.684751345,610430.834041019) (-2731154.25085316,-108858.188534183,-613390.353680258) (-3192508.22659332,-23716.4144395634,-6179765.47953691) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-695185.384759027,423605.877617581,22307.2269087925) (-709913.288722528,415043.299039996,42067.7671836444) (-745899.950761561,396106.187718918,54463.2281830939) (-821671.833641695,362565.263850177,50063.4533928744) (-988593.675408383,306842.703170861,16954.1069833489) (-1415945.90697456,221626.729810198,-7085.84336737707) (-2812873.51383127,124423.22516014,523722.942553627) (-3336348.97074918,80397.5421915134,815815.764350692) (-2944986.99821272,70744.192807338,-528172.797417846) (-3241548.73696153,44864.1378111841,-6155967.3595964) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-903876.356020787,538021.517506667,13804.965669097) (-916796.056026439,531968.452693706,23218.1416950063) (-949049.798563233,519448.928775201,20960.5289640267) (-1019556.91445423,499360.242134602,-5621.14306514456) (-1181913.71488365,469200.80302111,-68206.5190711718) (-1608317.70976179,424116.543597236,-104238.472193384) (-2937515.81719977,360205.710896518,479864.555102868) (-3417023.26290024,323493.522340806,806307.035018162) (-3044756.41023836,233625.657846585,-553927.567574479) (-3290623.12797995,116392.03968554,-6200714.88073432) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-1245098.34767221,600009.668869889,7808.61007668609) (-1255761.55229262,596576.499844772,10736.4289401706) (-1282903.00439408,590742.323533215,874.075630336007) (-1344399.83401726,585017.422328644,-35748.4476632056) (-1493542.05119839,583708.785650499,-113227.601505684) (-1911254.98674931,589631.242050959,-168046.831256836) (-3298068.80572925,590727.682851818,443442.907742338) (-3741345.86461241,676836.906298018,716712.273651418) (-3195725.62146797,378258.709689009,-670916.26414542) (-3371653.37941817,157015.881516698,-6316890.11311594) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-1789777.71550111,411150.098681996,4473.00232351215) (-1797807.56623068,409520.075076371,4981.14383136718) (-1818533.55936191,408284.613264311,-4862.54476301657) (-1866773.8226474,413449.730340672,-37059.9479277431) (-1990232.40870771,440765.429604133,-107215.788391816) (-2373596.59807325,527580.111767934,-166793.426132451) (-3888848.83072048,713908.812078819,529845.842583652) (-3169133.76908843,458883.960143766,418471.861685707) (-3315780.56323561,169256.109129863,-891800.607119257) (-3496891.26506759,1637.81356834245,-6473580.09812452) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-2571124.96905097,-800457.004699289,2900.09850316288) (-2576333.54991806,-801759.762110184,3822.29256454108) (-2589591.38165516,-802990.134157085,335.642042870333) (-2619266.18247649,-800607.563329277,-9741.71065422157) (-2687293.06654491,-787903.245930762,-20297.6781528308) (-2849928.62496526,-758019.915776895,19688.5299731738) (-3205355.8731097,-736261.598147253,275070.500959116) (-3321397.30490899,-901669.083004331,129158.71797825) (-3626743.34710292,-1051525.47546069,-1059000.86736875) (-3684025.42250763,-914484.216681078,-6474779.11031118) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-3148744.3489979,-6328191.50246097,1591.03942448965) (-3151299.56474296,-6329827.99624423,2634.65977346457) (-3157647.13443558,-6332483.18873949,2774.99493377298) (-3171363.38980467,-6335266.78747994,3048.97428422776) (-3200589.89721714,-6338429.96086052,9782.75942611933) (-3261852.37158188,-6348427.3676219,41704.9749439096) (-3374971.98367663,-6390427.89828983,109939.97352903) (-3500680.64814644,-6500690.88425929,-20424.8220349687) (-3685130.79203446,-6480563.7232532,-921576.922921841) (-3556267.85331876,-5559387.28016044,-5559862.87411879) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-511424.153522433,44189.9861618308,34859.1979220006) (-526544.997768994,40719.3015764967,70468.0892554131) (-559867.934582674,32770.8930582714,106998.262045592) (-618009.038916248,18352.6629381303,142690.465624146) (-711907.803024475,-5295.84665044228,170259.540721105) (-856409.175738038,-39162.1774255667,166402.609900046) (-1064178.81373117,-73127.5208821935,61154.0438160571) (-1321815.47438835,-73230.7301991343,-329456.345316555) (-1527865.54998653,-44977.4882600504,-1321002.99793398) (-1327674.39018726,-19084.4946515542,-3117819.95332039) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-528543.622262135,90159.4438055834,31355.4194475214) (-542809.52566534,83587.6926141934,62534.3375644452) (-574280.280527422,68264.4448612637,92621.7192211923) (-629333.847586077,39061.2432401094,119077.130071235) (-718958.784160665,-13484.7295968423,136458.452757213) (-859287.074627772,-101159.967631873,132495.384928816) (-1065694.30047853,-212357.433827194,61015.5387554541) (-1315508.95448154,-209699.724592016,-301247.390215032) (-1517730.54652673,-112092.898342606,-1295129.11239786) (-1321454.62973248,-42636.0538574324,-3098767.82703668) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-566082.489392563,138109.232342063,24790.8306631437) (-578675.477896571,129549.288112123,47246.8542999987) (-606464.141922344,109054.655263032,63459.2453813955) (-655180.375822024,67462.717226148,66581.79913015) (-735852.241289177,-17768.3889976504,48856.0000928793) (-870426.61190672,-198782.153100635,21348.5207399043) (-1097849.5882214,-546476.215878524,63639.8751674555) (-1315784.61128528,-539916.485267977,-203697.27151355) (-1493096.36286274,-219181.654308286,-1225705.98536157) (-1306270.58266556,-68488.2585655171,-3056179.64092475) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-630862.471405898,184068.874928634,16219.863031088) (-641144.9259844,175426.131741276,26794.3882174952) (-663519.95326396,154674.694349249,21918.006995205) (-701928.547655656,111430.820830679,-18627.1660858337) (-765164.846321855,13228.7386821425,-132146.497795197) (-890065.826847349,-265003.368242802,-326410.195428843) (-1342260.27288625,-1342545.38888747,70077.5089601303) (-1412149.73180908,-1412554.73670615,116953.71572787) (-1435752.82944946,-322605.017193633,-1075024.34279049) (-1275568.27457025,-72739.6955868102,-2987712.85779233) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-733301.088774279,214610.143333355,7574.43561052882) (-740919.047286414,207903.65110758,6102.67480811365) (-756576.050123248,192738.276645269,-21284.8081262116) (-779191.142007357,164496.169739136,-116830.848669006) (-795237.7608735,113431.109018064,-410389.133539815) (-716557.938734942,29279.123396854,-1404059.5934191) (7.29122000935699e-05,1.93805226605371e-05,-4.75771759278862e-05) (27.6693029285795,-122.073951989393,1206899.70340279) (-1206672.81010275,-28938.9889993459,-825080.512901508) (-1220268.31800805,-4201.19478986556,-2914899.43265195) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-886668.829035957,196496.947586309,905.668762219055) (-891730.832415039,192740.877465163,-8996.78120677011) (-901195.356822681,185367.299438365,-49480.2457404115) (-910950.646968997,174320.639211578,-167910.982698091) (-899286.655551784,157464.549328825,-494571.482340729) (-761326.682071944,121211.939522606,-1433495.32615633) (6.5546307669975e-05,2.53339515862118e-05,-3.63493442659114e-05) (-94.5609592169903,-644.391252674441,1178257.9650837) (-1178005.50017646,82726.206598853,-800158.140576393) (-1219775.46472128,35374.01948798,-2910581.01811284) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-1100800.41039601,55023.0303223499,-2824.02001222804) (-1103706.61112361,54219.7180643812,-16357.8017804707) (-1108176.75532397,54807.2804063382,-60524.0318185393) (-1108139.78602313,62312.6853664963,-184776.125967591) (-1076708.71486245,86708.4707958947,-530853.383770611) (-893130.115655161,127099.606029624,-1554865.92137177) (0.000177424075855821,-6.49928230625511e-05,-4.80605513264961e-05) (183.792541393031,1249004.81633788,1262113.53272332) (-1261849.73821509,258133.940239657,-847170.084170369) (-1269430.09478294,31726.0344708979,-2945745.38378853) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-1360721.39339502,-370497.639696562,-3535.65208718739) (-1362095.22588988,-369319.219711941,-15709.054651671) (-1363289.22651337,-363115.142226568,-53030.9648673105) (-1357658.63938609,-339410.216445902,-160423.246316231) (-1316799.76054157,-256653.572115727,-490493.85157075) (-1105923.09146025,50981.7238638533,-1682049.47601796) (411.644113792984,1397223.17128187,1249397.60171428) (-1248788.41508858,306440.873997954,271616.190054346) (-1570951.78577818,-141870.151344559,-1073208.49581887) (-1375635.54577206,-185586.03779244,-2977152.14285108) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-1560801.93685298,-1378522.48017989,-2298.19171465576) (-1561358.77094292,-1377152.51197258,-9439.67842913428) (-1561387.52907569,-1371457.21284694,-29301.4603882143) (-1557120.70875279,-1353135.47182044,-77721.6787373763) (-1537162.29851322,-1301616.06468154,-182889.954203246) (-1475794.53879796,-1170279.90794045,-335762.408566247) (-1396616.73667027,-906177.888057137,158899.514333334) (-1598483.50863679,-1081239.59274509,-176333.815195825) (-1718303.76809275,-1110161.03688465,-1116482.50866589) (-1408109.79018255,-786879.427875807,-2791104.75090762) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-1346279.54215018,-3180046.65946991,-940.627557670692) (-1346498.99201278,-3179161.24167647,-3732.47058395506) (-1346428.5183848,-3175448.69868105,-10959.6008006291) (-1344742.21676458,-3164529.16295423,-26187.0827069082) (-1338470.22646105,-3138445.20882211,-51477.6093224378) (-1325052.88157558,-3087088.55892202,-71468.4483471827) (-1320850.00813671,-3015893.82769166,-15874.4842525395) (-1392422.81618258,-3000396.49275897,-204975.416202502) (-1411648.74129522,-2795785.28261728,-792833.221209114) (-1128799.30745299,-2003365.65966614,-2003815.53528454) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-558055.324033604,26961.4268467331,19669.7436644403) (-568223.397159295,24321.3801465735,37026.7629081697) (-589751.387402992,18224.9508518165,48685.2648766656) (-624863.452914722,6917.44290093208,48622.2359742085) (-676489.10488033,-12438.5491699136,25642.0869999759) (-747199.351772179,-42114.7691831524,-41452.9677827351) (-834372.690493614,-74694.458546094,-196564.632474202) (-915855.155856897,-66946.6678468591,-535578.283158798) (-907781.295943287,-34827.6338649008,-1120834.90333715) (-645529.785864188,-12822.1077707169,-1790157.39988948) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-571018.637666797,52414.4183997624,17022.0238516331) (-579901.744427651,47484.4850044266,30951.1377560862) (-598353.845936616,35854.208508731,37395.4455083644) (-627332.388711971,13033.2808007381,29278.1487344586) (-667571.962332975,-30535.0699621565,-4012.15230098901) (-718974.4638633,-112420.009205558,-74019.5230430568) (-780960.124310068,-244550.866897766,-188897.290859849) (-857844.055385561,-209958.517932522,-503550.339870153) (-869767.436583949,-87418.6393022865,-1098922.44437555) (-628425.994866724,-27377.5376357476,-1777395.64937627) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-598861.9885065,73113.0591582964,12080.8583554003) (-605293.515531242,66859.3800150593,19324.0009794434) (-617675.457057221,51785.2525335602,14604.272089494) (-633849.449400413,20529.6194206804,-14222.992952058) (-647568.788036786,-47220.7753517913,-85820.7408148145) (-644024.04450195,-218503.510124719,-206139.807300415) (-603283.163746108,-790852.167322334,-154404.931351138) (-662820.00650926,-636220.36470449,-381107.689355188) (-760861.337646885,-161782.49789007,-1038978.85598328) (-584797.905148402,-37733.7707912324,-1750095.30034496) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-644917.045096166,81341.1408819637,5826.49196660039) (-648138.086422371,75394.5881723351,4284.44424728996) (-652277.336132358,61414.7428471006,-16587.66319785) (-650030.660421037,33978.2088521474,-81934.1398639371) (-620253.584272705,-16962.3388576887,-257103.8384072) (-495554.190685029,-91481.4373767588,-778637.547317479) (3.42268613214939e-05,5.1554805102374e-06,-1.61277456126895e-05) (80.4730530848119,-197.003721617395,93213.3892119933) (-495931.549530022,-93411.5048123969,-914978.88378512) (-498454.151755349,-17396.0999359701,-1712430.6774553) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-712879.459048244,61002.8211887064,-83.3100327736017) (-712861.882644523,56883.4117648942,-9629.29826723114) (-708784.518876908,47937.1582938613,-43943.244960336) (-688874.274477269,32574.3825250717,-132856.286163353) (-622684.450296099,9287.1570702549,-331659.092668686) (-436802.962676627,-15500.1724501223,-687395.333653615) (-4.91545620710718e-06,1.2933825456505e-06,8.71644432292358e-05) (7.86210830374154e-05,1.08474803271675e-05,-1.72655481978261e-06) (195.46832776314,-155.366260545013,-838902.74658689) (-377917.386212487,-3672.89492114205,-1694976.88339725) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-803654.396147773,-17854.6474144987,-4156.96428497882) (-801054.597887189,-19444.7340636698,-18505.0529842656) (-790730.958465296,-21808.1649938795,-59224.1280539125) (-758405.333588098,-23041.3420683973,-156153.716841343) (-669555.802160735,-20084.4287946784,-356512.984367449) (-450604.466366923,-10647.338166791,-672088.034355796) (3.79850687733928e-07,5.85126551620147e-06,6.60591918515884e-05) (5.80764243326417e-05,2.05682406136759e-05,-1.41007035313339e-06) (306.324220438908,-1013.50178149962,-842233.59504247) (-360257.029556099,-14248.0470692955,-1691176.8780595) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-907736.582514287,-205170.383816367,-5748.09147985623) (-903601.062020785,-204439.783558559,-20858.5910877851) (-889847.543916412,-200552.184606932,-60443.7828822975) (-850961.232655996,-187449.269751417,-153214.408566404) (-749216.909621445,-153653.097581034,-347137.545021047) (-503384.996545597,-85957.5340656729,-661572.46823175) (8.97164280782335e-06,0.000102477629563897,7.73006000215875e-05) (0.00010076003663075,-1.45042640225518e-06,-8.98349320669879e-07) (687.864609453213,-51042.068502206,-855030.200080502) (-387487.087058784,-74519.976568931,-1676701.27830502) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-990117.527482624,-570834.270884733,-4939.97884403689) (-985725.329383581,-568842.227992612,-16907.4309162885) (-971930.623008379,-561478.755185432,-47339.4638427703) (-933873.320925464,-539122.995597193,-119451.056457614) (-833112.613510205,-477285.217582446,-279506.083487559) (-576594.02679268,-319147.290289665,-575645.391931146) (0.000120007946612471,-4.54034524758528e-06,-7.65247520035374e-06) (330.546902697051,-43426.5015847664,-50745.2820334035) (-505234.891442659,-289378.365283974,-878125.879587156) (-508304.928015926,-218143.558917146,-1601832.91499509) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-964411.128036739,-1164342.60776262,-2882.47193835753) (-960974.837532821,-1162625.60703946,-9483.0263016166) (-950542.688591137,-1156830.51624552,-24976.105726088) (-922429.68597623,-1141090.11951606,-57700.0045837812) (-847444.164679901,-1103235.28244639,-121468.073553143) (-640010.549461283,-1019830.73687006,-256568.616309416) (614.098272854454,-830700.348281847,-43099.0019511418) (-513297.055167037,-875406.024698402,-296305.93230727) (-693840.611773741,-803709.253002516,-806438.200907738) (-541793.771200123,-507693.660535286,-1383204.11827202) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-675243.865568394,-1834228.12282705,-1150.16151736144) (-673469.998472476,-1833123.99457131,-3680.76752582584) (-668231.345174868,-1829456.43860827,-9252.01837301249) (-654956.704522455,-1820231.23221634,-19896.417914862) (-623147.473835988,-1800391.25559476,-38063.1973915411) (-553235.993427053,-1762414.14202212,-67296.6803880231) (-435920.969128932,-1695399.1818735,-87526.8858041681) (-522802.170649142,-1608265.81089327,-224287.745142745) (-545200.404305175,-1384380.96673454,-510064.368400784) (-396706.022270466,-874717.740255895,-875133.573862709) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-581275.960704366,13848.9193875978,9371.71728317094) (-586713.206170621,12498.4567644092,15363.0695300885) (-597361.446941815,9511.76592492965,13461.3631439818) (-612604.725758071,4378.97938130106,-3176.3433939711) (-630949.183982951,-3554.96107445942,-45161.3032168946) (-649788.695990088,-13915.4060528412,-128656.552946138) (-663656.197211184,-21289.5804223167,-278083.465806261) (-657453.369423643,-8923.388454464,-527561.86378505) (-579899.354705425,3222.86856255634,-858666.673585438) (-363869.305709579,4310.76129928453,-1144637.91503939) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-589569.005543254,24381.1926472436,8018.09461681324) (-593684.849691203,21909.6717714503,12389.9848733253) (-601142.616064739,16371.625939966,8318.89498641486) (-609890.607577148,6377.41749314744,-11121.3242602583) (-616060.868468651,-10651.586965303,-55535.7922337388) (-614809.55508836,-37569.2378382722,-136046.869223247) (-605600.573182293,-66884.6140364064,-265811.386736929) (-602140.780019337,-14909.8326198276,-515528.217937794) (-545906.582750294,21531.9241697783,-857698.127378656) (-349063.613305645,16300.5841752084,-1149050.33181566) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-606848.605048838,26836.1683426226,5531.64084696413) (-608503.296700027,23809.216900072,6841.87688712743) (-609774.720062709,16985.4042140053,-1672.63838142088) (-605212.627088409,4160.83905553605,-28092.8822558176) (-583860.482041076,-20052.6982435087,-82400.0769733214) (-528453.960434359,-70120.9726200572,-165418.426259136) (-434017.456281955,-187554.964169505,-214013.78359019) (-439182.884070724,26680.1074705502,-479240.846119104) (-458663.57951802,103146.806507085,-863053.486585282) (-314727.577002455,48633.9966128575,-1165457.22716887) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-633769.276308841,13148.623511924,2539.77604336991) (-632321.004714923,10474.0930391115,57.8181968835808) (-625568.677526163,4751.47669323592,-14416.9128885424) (-603039.377570194,-5015.11460384069,-52232.242080008) (-540554.166077276,-19508.826227709,-132475.532291233) (-382353.187237855,-32761.802088159,-283035.706270306) (2.86028987359218e-05,4.84703648554158e-06,4.57725376125672e-06) (390.106395823366,-243.073641363028,-402910.326502201) (-280768.877127214,402718.184154382,-917644.376552314) (-256413.381197827,103148.519730862,-1214199.67022783) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-669738.126655335,-29921.0146216674,-71.6942593130775) (-665412.819596126,-31434.8232560017,-5611.8410125947) (-651470.88451991,-34099.8553042601,-24074.1433720967) (-614298.822189559,-37030.7612297371,-66633.9490339112) (-525473.024156479,-37626.624419844,-145727.576981394) (-335513.958045428,-29301.1578420459,-250477.225858709) (-4.49651528957556e-06,3.14548982663473e-08,6.53228389024387e-06) (6.98515729423881e-05,3.15212718347963e-06,1.24729369238723e-05) (-251.228590601365,-47.4388046938665,-1217189.98113426) (-188612.60132746,13978.7811127977,-1317325.02740121) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-709961.283014817,-122060.416214251,-1553.71154037563) (-703671.441685835,-122128.515032941,-8243.17596479316) (-685127.107658501,-121034.765071603,-26912.1170042497) (-639445.680133205,-115702.545855274,-67199.9858336065) (-537089.007034171,-99847.0775486913,-137446.327831321) (-332517.51263703,-63491.9484891917,-221342.49091407) (-1.33496209216513e-07,2.44564819554382e-06,-2.0291313997867e-11) (4.8399158955518e-05,3.34498422664307e-06,9.48438804264706e-06) (-335.125033609574,-629.379856116925,-1203021.30357688) (-176621.988412972,-41482.2884533229,-1331195.27515389) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-740497.479929837,-287656.241656146,-1643.27714256674) (-733536.483647461,-286680.860117491,-7155.51043134285) (-713772.185110967,-282713.017365226,-21552.6169431633) (-666415.508125914,-270436.035872682,-51364.8514558364) (-561567.448050252,-237679.757581606,-101181.632994116) (-350733.86034641,-159310.953243715,-158013.764438776) (6.56007671937593e-06,6.29812111344059e-06,-2.39929533657846e-11) (8.40232777435489e-05,4.28109328263164e-06,1.58006258382598e-05) (-43.9713273001098,-557071.263781857,-1243513.73927273) (-187625.727802977,-195369.148841497,-1289488.23814039) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-731864.728722211,-545300.45961579,-608.58080076652) (-725619.357227687,-544258.397010301,-3137.01606384433) (-708279.213791412,-540232.833987661,-9268.6086583773) (-667144.071515537,-527791.646947073,-18642.246993914) (-574720.589395696,-491797.2032444,-22916.8254456298) (-377146.976126441,-382846.298902538,1171.4695469567) (0.000104614823872147,1.72820309340719e-05,4.7107172963254e-06) (100.153517280347,-557366.511360894,-556592.56363963) (-259343.330410981,-478151.320341526,-881404.06811163) (-239645.10537547,-251693.745989595,-1093739.29360398) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-634661.960607766,-875561.14930905,511.522264290175) (-630206.980600306,-875466.677237101,951.945558564453) (-618167.249154024,-874839.33476564,3183.00689942334) (-590418.647330091,-873912.466736532,17292.7880427586) (-528708.157403947,-879221.241921296,85980.819443698) (-387602.107249178,-933367.298378452,384093.376707502) (210.796139400532,-1267604.29676478,-557136.980505515) (-265649.63597378,-885166.497489668,-476984.41356999) (-339238.04649221,-655241.120602091,-654497.178590955) (-243711.269629256,-362710.249558286,-841563.17659315) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-391998.514656071,-1159437.4450947,630.944873335767) (-389790.800197396,-1160084.65031776,1569.71967891984) (-383930.456704402,-1161633.0455052,4062.54194801655) (-371042.371937347,-1165670.95271528,11906.6953416474) (-344716.672372169,-1177585.67578611,31840.3277426545) (-295238.128366158,-1209535.41471582,50010.5790191242) (-219198.675937824,-1259857.9508793,-174458.060057459) (-249922.157186657,-1085764.95840657,-246739.61260304) (-246205.629278234,-839371.265099286,-361604.24313278) (-164422.779659456,-478110.855683,-478486.879619078) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-590552.631610259,5447.23680454548,3829.43410133867) (-592829.653263842,5414.69691131401,4531.18428324216) (-596531.705769768,5662.41074338468,-1960.96763218861) (-599869.424692263,7059.72642224844,-21755.9951202415) (-599880.076593545,11317.7593121812,-64142.8618218268) (-592340.909124254,21044.1930708004,-142634.841758462) (-571173.861395626,36812.0924949852,-271929.270069) (-525764.333131251,46462.5563934518,-450080.862754844) (-424548.534847387,37279.0524973749,-642710.735110262) (-244984.124252613,19151.542446768,-780747.459013984) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-594916.624925176,7017.84844583978,3777.00774062666) (-596279.627135056,7009.68748529833,4776.79461049757) (-597816.210708743,7685.14611822857,-572.346120346577) (-596905.463461522,10986.218926975,-17483.9827406992) (-589285.140863135,21481.4741577186,-54423.4251917544) (-570032.705938319,48749.3805089084,-126905.461779911) (-538078.437459822,104767.069491633,-262382.57449904) (-506821.084522586,148114.009354699,-459353.72295705) (-415854.863244408,108815.851334333,-660942.241299898) (-241522.148330498,50665.9194010575,-799998.083229327) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-603412.732456976,-189.314939129059,3771.29079310432) (-603087.807060104,-112.457079836135,5477.94571831274) (-600445.337741775,1082.24187153063,2751.46764407497) (-590742.43006243,6205.78327042811,-6938.29372535627) (-565375.882305144,23181.0187091337,-27122.4380127065) (-511814.009784626,75964.1710015815,-70977.1791551094) (-427515.278668773,246553.843419889,-219266.130696554) (-477750.1158252,466213.839299262,-498798.728886641) (-410419.830903551,280995.217834215,-719221.844000974) (-239423.317582006,106949.628817222,-850809.812837593) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-614949.257470133,-22920.8404712949,3911.50669345758) (-612517.405255539,-22718.3168873093,6713.76704154286) (-604462.691891102,-21258.3193811802,7948.34265919037) (-582574.613944018,-16388.0015801762,10077.363883622) (-528410.568824169,-4494.62416927113,25609.4095089285) (-394219.977209833,14049.5889436243,99390.7815388643) (1.93320482831276e-05,-5.99601433359495e-06,1.27322458097472e-05) (-554534.476649873,-797.952406842884,-684141.255300964) (-473685.516833958,683150.336258182,-893379.734018177) (-255874.663231049,170936.745824628,-957905.568992357) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-626672.677511959,-70207.0305730993,4220.74095842146) (-622372.23179254,-69770.1068702421,8231.9431377734) (-609589.815445066,-67847.2397146989,12939.7943964492) (-577572.403371962,-62253.4492525492,22078.8232512285) (-502740.729216595,-49300.7575479704,44152.6616900356) (-336010.324201897,-26343.7831579977,85042.3999481275) (-8.17994206097244e-06,-1.69952035885638e-06,-1.07891183468105e-06) (4.73667262045056e-05,-2.78780387446225e-06,2.40249195614121e-05) (-863245.716198405,-209.60094103956,-1405562.72477016) (-320348.884197368,25937.4852094285,-1128827.18128504) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-632230.303291889,-152646.732892315,4708.7225962896) (-626854.156615842,-152066.548800473,10187.8794565356) (-611676.386861853,-149754.349964598,18644.2689097867) (-575419.111652523,-142755.225062622,35119.4762391777) (-493952.477372348,-124424.444431016,67106.6334604029) (-321174.779186129,-81792.662940156,111212.77979166) (-1.4985475288147e-06,-9.53766045673644e-07,1.56275697682755e-12) (3.33257351813587e-05,-4.39848676602192e-06,1.66841082284758e-05) (-817392.531614742,-423.406061835326,-1379286.68237527) (-322777.425677952,-52526.5733899503,-1154667.18651091) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-619313.635474518,-279113.699913219,5283.12256559451) (-613977.982296107,-278858.938165946,12517.0105797105) (-599431.118042017,-277276.253519577,25697.8470657365) (-565755.389882041,-271180.230711834,53462.7344710741) (-491327.402118427,-250880.502581728,109678.746689963) (-329864.635744007,-185804.797841324,192821.656988723) (3.32311908997961e-06,1.10546906306521e-06,-1.74141134119453e-12) (4.60274030615945e-05,7.97827369646012e-06,2.5619112478061e-05) (-895483.339517578,-816478.077102448,-1431123.19966432) (-321917.837143587,-247443.861625961,-1101913.8020877) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-568265.404981401,-448283.548721066,5570.52506704373) (-564013.958312082,-449016.252574316,14122.4405598146) (-552960.054729782,-450260.391113388,31787.4190919962) (-529134.001663826,-451147.034641623,73744.1531700713) (-480616.976300105,-445927.680537971,174687.718030722) (-373200.383402938,-393527.022609778,378463.350075672) (6.1436828153305e-05,3.11977039160498e-05,1.0429551554268e-05) (-658401.810617573,-823369.598315511,-816099.712286071) (-471936.19879026,-558230.998619998,-861753.922389245) (-238846.912268503,-255840.083225518,-854155.893896656) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-454512.49878623,-633333.43423693,4900.42369432353) (-451829.930360084,-635414.596876561,12921.7177563465) (-445475.599091688,-640930.72084563,30900.397426252) (-434773.480067728,-654841.585594903,78949.7811171663) (-427234.420089676,-695538.383406315,227086.746671241) (-484642.864975974,-841338.341807543,771938.823595791) (-1001567.17162097,-1487313.90010933,-823050.09296627) (-491788.264799897,-869662.374661957,-550618.687793697) (-326734.607476177,-562363.983620405,-558989.141809339) (-177070.398120985,-283524.504193118,-597945.592350001) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-260199.278103491,-767964.84206467,2832.1712751619) (-258987.050871544,-770784.179715304,7398.0047880556) (-256216.279499325,-778178.120322719,16931.2270600674) (-252062.898453716,-795071.619197302,38181.7871788384) (-250160.465285741,-833238.856016638,81326.052702726) (-266655.417081849,-914673.882016629,126078.88162751) (-334225.327315198,-1041004.88813865,-205203.478965791) (-245652.786340922,-836078.076435983,-243057.148037506) (-178496.60952467,-593302.56993636,-279827.581475114) (-99880.1316525232,-313783.448411755,-314111.285263408) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-593141.285909573,1053.11916166581,1535.53513765224) (-593947.005260824,1919.28474424946,733.602390384716) (-594656.538428783,4347.02756629021,-5488.5925168941) (-593399.603788526,10026.8636961069,-21985.2771167391) (-587105.1619906,21927.1321742912,-56687.3238939739) (-570826.099570725,43355.4189287358,-121557.552376242) (-536174.794532319,70001.2060154408,-226557.825254992) (-468856.91124589,65533.9817489774,-348999.228889326) (-356306.137959204,46094.5766129468,-463336.20239046) (-195098.717487142,22677.9649130889,-535899.574069015) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-594784.845918607,-1454.91387801912,2376.25403311296) (-595341.661147137,207.688826393502,3149.88396305258) (-595577.108673928,5063.57132733521,194.238167194593) (-593798.440723106,17151.5226927088,-10037.4435678247) (-587541.518332429,45394.9128764428,-35248.8468006782) (-573935.841120866,106981.900823389,-94972.193512781) (-547312.846931411,215410.553641103,-231147.131666856) (-481186.793504634,177268.379638566,-368515.820574382) (-365825.10208618,114345.274021909,-486796.279141576) (-199870.993124911,52837.5978548907,-558607.067288968) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-597184.625123557,-11747.5268774391,4064.5056660012) (-597302.613527269,-9571.60309373192,8058.6040532895) (-596660.341476902,-2983.83544102451,12321.0145567805) (-593837.278021902,14309.9715606152,18257.4136483504) (-588217.181879041,60111.5783163193,26382.0477823725) (-585368.916580385,193521.352096572,13397.5033049485) (-603313.65510983,674087.290907674,-269480.857520557) (-527779.702144164,389365.547445679,-431548.439008701) (-396965.796086339,217717.875677836,-548375.075481842) (-213955.490084367,90529.114906915,-611534.420031507) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-598240.860955456,-34746.9227931608,6290.99940104771) (-597805.581707859,-32655.0798568189,14662.6526164643) (-595949.788577241,-26479.6964289888,29645.6102905704) (-591209.449289496,-11474.2515483749,64064.6687450316) (-585061.903336732,21064.0707446897,159763.51082922) (-606818.332535166,72019.6578735357,493863.560377585) (-895568.971848254,-848.520940402885,-554360.747303748) (-669662.000416839,553410.668125947,-603278.344217049) (-477097.604342799,293501.861124091,-675650.242154476) (-245300.437048183,106461.672572676,-702157.026003089) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-594026.355291661,-75846.6343100633,8453.38929660881) (-593080.614095137,-74353.7208961291,20860.412638513) (-589861.977755103,-70064.8052332525,44717.6837528077) (-580842.447899141,-60186.8280337632,96700.3047653683) (-555099.879153323,-40634.8832769026,210758.408723699) (-462487.028837689,-11669.3047957249,420924.076028746) (3.40801783888077e-05,-1.75101084169353e-05,-2.84069332610962e-05) (-884835.09621679,-190.513731369879,-863113.260000573) (-615701.188673233,45521.195161836,-862677.121563493) (-291464.808721571,23465.4713965558,-808564.995863161) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-578240.438003187,-139823.024218994,9986.52462022606) (-577120.173989419,-139281.466247428,25180.2873451015) (-573653.835644218,-137590.502194794,54683.433089012) (-564159.661162828,-133163.646915239,116400.801480792) (-536034.534599664,-121911.769431494,239759.744862698) (-434825.86106107,-90609.4541920391,432350.97613395) (2.3491377844831e-05,-2.51422506776169e-05,-2.05510787286397e-05) (-831629.072800527,-266.747375608974,-817244.628528134) (-625803.733082545,-78674.6111134942,-884637.62078499) (-300313.116469175,-51719.1252221824,-831917.333375031) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-541412.52416202,-228243.34777467,10519.2122431707) (-540603.27680968,-229036.581728175,26899.6222374871) (-538384.471073287,-230906.754971922,59169.228045887) (-532830.811414702,-234640.482408215,127721.485071518) (-516276.162876338,-240282.425355547,271040.901753478) (-442871.497012441,-229256.259278451,522694.568108332) (3.54463658476638e-05,-3.50059207143393e-05,-2.61426357777085e-05) (-915680.058759442,-658691.355005788,-895449.560694614) (-618981.239896022,-393101.126676501,-857525.144753158) (-286707.13917975,-164451.760933634,-780003.207005546) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-471507.467444642,-334755.993675426,9754.70836399332) (-471314.943891334,-337034.125651822,25053.2378668927) (-471302.642688744,-342962.962058068,55452.0329119936) (-473484.277364708,-356952.353129783,122114.179334444) (-488079.501323267,-392763.500003462,282057.779005525) (-566942.769441774,-505247.691700653,751791.597466576) (-1023807.49670746,-1001999.21607379,-658423.092591807) (-688837.919520683,-657054.109076689,-629624.229617795) (-452774.6173015,-413247.655007179,-628639.282775871) (-222452.985671691,-194167.302653448,-615317.667652877) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-357330.071652936,-439464.003683946,7525.58287522769) (-357545.33835269,-442943.730491049,19150.595707059) (-358770.933320238,-451991.976701715,41474.9445792605) (-364138.285269784,-472448.610139419,86336.0067909571) (-384473.047781826,-518794.097462491,169605.231942135) (-451648.051016692,-623664.971953554,255027.698235756) (-615024.568364571,-820234.734683812,-313279.386410614) (-452848.641571015,-623728.716884597,-385544.4018316) (-301957.727112442,-414291.953404734,-409276.983797775) (-153158.482830784,-206443.786749286,-420912.414992126) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-195413.675424643,-508299.239969837,4049.6336070431) (-195669.750442677,-512326.811566159,10115.4142532847) (-196642.376801156,-522464.733702366,21014.2685557594) (-200015.258540176,-543471.136259818,39989.1547626193) (-210289.162799588,-583478.411438218,64802.1662522001) (-235676.123282541,-648374.564720457,58532.4652198001) (-272231.656288366,-707061.613567857,-116634.326922998) (-219494.451408812,-590626.911203968,-175894.467535736) (-152541.781737675,-414962.325372503,-201178.923354964) (-79235.8738808393,-214015.904216746,-214251.063659193) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-593264.74330335,-625.273600025935,748.730993797282) (-593681.577143211,477.122840417004,6.18003576659976) (-593705.290671913,3369.78569200753,-4314.85341310343) (-591579.20524921,9613.11244789592,-15748.364400322) (-583922.035893436,21483.1180001745,-40414.6084976631) (-564518.067089326,40242.1750717525,-86964.816050807) (-522748.643344146,58920.4306491195,-159311.397888098) (-444889.915376069,53273.6520011251,-236552.045759038) (-327260.379561246,36652.6985446442,-302250.502701641) (-174360.630240196,17944.6354247383,-340933.225373325) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-593312.962528207,-3905.17460281596,1808.01761238993) (-594099.719857546,-1809.06519491835,2852.26435812748) (-595158.817445894,3911.43120020533,1892.32762189636) (-595488.134723381,17042.6137444407,-3847.47967437075) (-592920.025503776,44659.7248437493,-21645.5793466008) (-582539.177443361,95530.0647707195,-68330.1327230769) (-551131.471790379,159450.295468159,-165041.372683145) (-470434.216696098,130717.743926324,-253238.041416888) (-344721.100130033,83286.5474020288,-320975.892230413) (-182856.678888201,38831.5555805597,-358877.126622949) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-592159.031943442,-12859.3309163207,3928.56313338978) (-593673.2798582,-10128.2241954076,8618.38846481088) (-596824.314559504,-2358.35247098402,15052.1452186001) (-602394.724700599,16840.8905677783,23811.3150739551) (-612209.676593299,63204.2408267699,29259.2938051895) (-628148.32041023,172020.124284434,-4451.36187867932) (-636166.793701788,381762.887820815,-193910.815639379) (-537611.357924175,247414.470591836,-300775.88652489) (-386567.338973208,137585.284530983,-365473.080766975) (-202086.014999145,59222.8900251145,-397733.890296746) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-587143.313025948,-30649.6174505927,6692.7386047636) (-589608.141422391,-28047.0172029998,16414.0913268822) (-595632.830394518,-20539.9701179506,34278.7507911235) (-609037.502779029,-1241.15543790604,70188.8502863488) (-640641.984793471,50898.6616936221,138074.510876233) (-718160.174443876,216173.82627958,205262.650789808) (-874602.22455531,894389.062268256,-328330.270950583) (-677898.441645683,338003.15795548,-410682.517085375) (-461089.471540844,154803.057186847,-443908.4225432) (-233254.958286713,60259.9119614385,-456990.923240996) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-573846.434220851,-60150.2119449797,9320.67342357442) (-577221.714744038,-58516.1439387996,23930.9008082768) (-586026.848411524,-54020.7495913363,53576.5509380877) (-607213.270712759,-43644.8072088641,122351.025522665) (-663481.738794223,-21717.061666678,303348.608523865) (-842187.046576503,15764.1246629061,883458.327879348) (-1554248.7471272,-515.486561649301,-884682.445370505) (-890362.07661693,52711.7717586206,-593864.078773499) (-551543.586740779,35228.225453216,-538446.84897232) (-266982.988394415,14513.1014514548,-517181.858789502) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-546252.586897073,-103107.465357518,10969.4023064276) (-550245.983247035,-102877.015964258,28456.0835895008) (-560813.604305564,-102408.133654656,64003.2363141659) (-586259.397654755,-101931.854335075,144390.019932304) (-651961.755443535,-102280.828261356,340881.007370849) (-846468.361300584,-98861.3766820496,867149.008955327) (-1521303.5079161,-497.551130502479,-831381.974933085) (-914400.518944208,-84616.1884748025,-611282.56855596) (-570706.060409993,-72041.0441735412,-559110.971601779) (-275138.646035253,-38175.7327963973,-531596.607787845) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-497140.239631691,-158556.097162614,11176.347274771) (-501303.468158259,-159942.71798682,28942.2406459138) (-512389.476366306,-163992.841302166,64531.9535864404) (-538868.030944675,-175475.245036153,144112.563817497) (-606512.029647379,-212258.806186197,344326.408513376) (-809378.271336736,-353491.303072618,965463.109228249) (-1581331.45834763,-1024009.52546645,-915434.063616606) (-884997.613842159,-432082.919233796,-598649.777774906) (-537406.445689739,-227073.738465237,-525191.877689503) (-256516.788885377,-100277.324888774,-493280.635891495) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-419070.448603194,-220810.725587146,9817.60958308346) (-422843.418602729,-223503.666836336,24907.0331439929) (-432773.986653693,-230686.573022948,53072.1088297269) (-455405.760085332,-247842.460916045,107360.807430242) (-506745.139426984,-289359.024310806,203126.66365857) (-622102.221555626,-390148.084882563,294942.897582359) (-836036.054523128,-593454.753479106,-323383.316589313) (-629512.089474999,-421288.909722812,-393503.156145986) (-412495.434001093,-262604.853994491,-398251.223917148) (-203208.941256864,-124950.114076874,-392822.479143864) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-307369.819275515,-277955.725453106,7184.74748854133) (-310189.118598786,-281426.752852863,17751.6137511634) (-317480.090542221,-290163.707358447,35937.905308647) (-333327.916268622,-308589.99196859,65875.0673600265) (-365518.3030345,-344831.442591538,102392.740893429) (-423193.826078375,-407879.288668958,91669.7197415052) (-488103.031160214,-477623.079520839,-151083.491421129) (-400065.068650826,-390532.436182911,-234623.537881215) (-273815.984814479,-264959.850343644,-260410.283830017) (-138230.403225839,-132559.124030267,-267729.35348157) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-163787.784372106,-313328.185901827,3746.56939618465) (-165294.457181624,-317116.961690315,9061.48497258189) (-169074.668899594,-326231.2713569,17561.3410694741) (-176908.49980782,-343793.607573146,29658.1979416726) (-191414.416738255,-373453.64107846,39405.6503672601) (-213223.751979384,-412912.799473312,21986.78986845) (-228955.374084624,-435015.582843412,-63896.9890127174) (-193738.681528537,-371269.930948684,-108915.264127219) (-136095.085856608,-262487.57531826,-127834.23503367) (-69789.3101468183,-134821.978193514,-135017.944604443) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-592959.4278988,-664.571454202188,359.256049651041) (-593356.312312821,43.4425782528084,-9.45135898485472) (-593424.488857703,1879.02813535981,-2169.281308556) (-591379.578549252,5688.79874858524,-8057.70675709932) (-583415.946783518,12457.664423412,-21021.4602904257) (-562428.391341518,22196.035580878,-45307.171619114) (-517021.132594773,30571.606623798,-81606.2889922915) (-435247.215419153,27793.4865885773,-119042.47553779) (-316106.949816073,19256.6175922063,-149452.522875164) (-166622.984263258,9481.46244295833,-166671.631295066) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-592294.467525624,-2736.98827372481,1053.92181694171) (-593401.821623685,-1384.47805920568,1783.94422054109) (-595280.203429721,2208.96382308402,1575.39451664503) (-597016.111125069,10077.9120985413,-1285.74243162765) (-595813.756542811,25329.9490859857,-11264.2960551686) (-584583.226173772,49928.3688982381,-36952.5806421126) (-547576.861309359,74486.9366696131,-84422.5211689442) (-463063.886932692,63611.8801603268,-127611.244504101) (-335373.085488896,41504.692344175,-159207.333897204) (-176119.871502269,19660.2184172622,-176122.897257435) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-589505.298949504,-7833.03067373009,2442.30940606608) (-591971.678834092,-6062.74167824306,5418.97200099822) (-597435.767320378,-1202.39144170874,9441.7800266648) (-606994.815680351,10148.5555314589,13971.2275735033) (-621041.943349603,34778.4272068911,13355.0162089092) (-634450.832341854,82012.6709477639,-12426.7739089947) (-622062.471262253,143319.663264973,-95363.82294389) (-526715.175793821,107132.185218859,-149780.310132771) (-376883.266887102,63102.4256705204,-181062.115545231) (-195806.050094066,28092.5487414242,-195774.410774471) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-581772.984662076,-17438.1900515634,4234.83101396202) (-585999.923270262,-15745.7154939293,10309.5866775197) (-596307.908493076,-11027.1470018212,20809.4203361928) (-617152.146162633,470.75727653018,38601.8619747224) (-655800.196357286,27944.959422159,60593.5413232695) (-716411.682496211,91985.7552137913,48871.9651095761) (-765358.963291548,214528.48041498,-131580.113304186) (-633860.236169569,125382.243072309,-193868.376633746) (-440005.878310421,64273.33995302,-216122.884146682) (-223898.177048957,26486.4649086605,-223873.581551672) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-564481.167481858,-32707.0121492403,5903.55535868667) (-570380.217993139,-31691.545898932,15007.8890127902) (-585369.338375071,-28964.8198178608,32288.0517923822) (-617625.938245363,-22885.4520153787,66056.9286168925) (-683669.837488156,-10421.2640211407,124611.250754122) (-808238.388881058,11234.0007686308,171414.347503842) (-979722.810033431,32126.789639693,-220709.898814658) (-759128.699277675,28418.5265885637,-254979.559670141) (-504214.407354559,15860.1163619,-253895.515465242) (-250324.448296024,6210.82853681775,-250278.419191781) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-531717.460770596,-54145.0411177493,6902.90284203091) (-538645.536760822,-54112.406213883,17723.3166707686) (-556314.618220706,-54136.9512972506,38396.462065295) (-594600.54596519,-54717.4170888931,78569.5754492439) (-673065.510595875,-57037.0606756206,146289.127256063) (-819274.534981587,-62000.8839499878,192330.185655678) (-1011658.66874983,-60804.0772913002,-224383.786579605) (-787369.685275381,-55454.5003519834,-267541.593307881) (-519916.946329758,-38931.7262936544,-263538.864732569) (-256397.873352372,-19642.4582281697,-256426.350650468) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-477431.325198145,-80793.3479549635,6939.39240366572) (-484384.307096771,-81803.6972672261,17711.5223955221) (-502007.066181677,-84676.1864781796,37868.3473918222) (-539713.012038862,-92300.7819117097,76296.6933088277) (-615836.898401283,-112757.547585744,141342.048972855) (-757073.045999742,-166467.704367757,193503.644053621) (-950624.100575311,-278970.819519384,-219036.971490582) (-731669.609304453,-176805.881883728,-251013.594496545) (-480777.536912986,-102330.893095779,-244243.336471168) (-236641.085911668,-47047.9387823631,-236713.558890686) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-396311.57587024,-109519.770226866,5967.54953894885) (-402268.347495068,-111263.32002454,14852.1011886057) (-417036.856591395,-115817.329032929,30256.1136810588) (-447151.497653363,-126146.934502688,55848.0038400687) (-502845.270463156,-148460.565364927,87651.1526554296) (-590386.041500242,-191521.449901233,80988.718133521) (-671396.409838378,-245792.582632195,-116829.163438415) (-554642.874209474,-192062.400854931,-176441.859732722) (-378292.703272853,-124085.307814363,-188890.17574239) (-189514.112640377,-60052.4089477027,-189580.534193533) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-286262.787003018,-134894.225884306,4267.42338493881) (-290499.734686438,-137008.547466962,10323.266915015) (-300730.998605124,-142180.720160325,19937.5661053136) (-320573.148360934,-152527.786466288,33563.6501612239) (-354030.330861045,-171045.108039648,44660.2206624916) (-398610.209669344,-198194.026327266,26749.1806794947) (-425364.79484593,-218740.744223119,-63040.8940438643) (-362385.922293921,-184422.724834368,-108359.716421332) (-254102.028485791,-127370.743779186,-124788.236785198) (-129397.938844344,-64186.9394377769,-129486.170676618) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (-150784.718230811,-150089.108153942,2191.81612834132) (-152943.402100998,-152369.287819823,5201.50140057801) (-158060.819138132,-157625.12532518,9632.05680396853) (-167631.151765538,-167249.686912944,15076.6092083433) (-182635.93884107,-182320.933828891,17573.9571004004) (-200172.437753371,-199934.118180236,6262.73472735988) (-206466.308879322,-206293.014764407,-28674.0599366526) (-177858.394870148,-177721.392320519,-51255.6791088922) (-126668.137461733,-126524.213692575,-61529.1575903774) (-65162.9163091461,-65108.9285964532,-65233.5622693745) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) (0,0,0) ) ; boundaryField { fuel { type fixedValue; value uniform (0.1 0 0); } air { type fixedValue; value uniform (-0.1 0 0); } outlet { type zeroGradient; } frontAndBack { type empty; } } // ************************************************************************* //
[ "huberlulu@gmail.com" ]
huberlulu@gmail.com
2dd1c216a84a8edd33573cc2b7835d4908c8df39
d85b1f3ce9a3c24ba158ca4a51ea902d152ef7b9
/testcases/CWE78_OS_Command_Injection/s07/CWE78_OS_Command_Injection__wchar_t_environment_system_74a.cpp
09423faeb9f5195999a95d8025bbc8c62485aa25
[]
no_license
arichardson/juliet-test-suite-c
cb71a729716c6aa8f4b987752272b66b1916fdaa
e2e8cf80cd7d52f824e9a938bbb3aa658d23d6c9
refs/heads/master
2022-12-10T12:05:51.179384
2022-11-17T15:41:30
2022-12-01T15:25:16
179,281,349
34
34
null
2022-12-01T15:25:18
2019-04-03T12:03:21
null
UTF-8
C++
false
false
3,220
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE78_OS_Command_Injection__wchar_t_environment_system_74a.cpp Label Definition File: CWE78_OS_Command_Injection.one_string.label.xml Template File: sources-sink-74a.tmpl.cpp */ /* * @description * CWE: 78 OS Command Injection * BadSource: environment Read input from an environment variable * GoodSource: Fixed string * Sinks: system * BadSink : Execute command in data using system() * Flow Variant: 74 Data flow: data passed in a map from one function to another in different source files * * */ #include "std_testcase.h" #include <map> #include <wchar.h> #ifdef _WIN32 #define FULL_COMMAND L"dir " #else #include <unistd.h> #define FULL_COMMAND L"ls " #endif #define ENV_VARIABLE L"ADD" #ifdef _WIN32 #define GETENV _wgetenv #else #define GETENV getenv #endif using namespace std; namespace CWE78_OS_Command_Injection__wchar_t_environment_system_74 { #ifndef OMITBAD /* bad function declaration */ void badSink(map<int, wchar_t *> dataMap); void bad() { wchar_t * data; map<int, wchar_t *> dataMap; wchar_t data_buf[100] = FULL_COMMAND; data = data_buf; { /* Append input from an environment variable to data */ size_t dataLen = wcslen(data); wchar_t * environment = GETENV(ENV_VARIABLE); /* If there is data in the environment variable */ if (environment != NULL) { /* POTENTIAL FLAW: Read data from an environment variable */ wcsncat(data+dataLen, environment, 100-dataLen-1); } } /* Put data in a map */ dataMap[0] = data; dataMap[1] = data; dataMap[2] = data; badSink(dataMap); } #endif /* OMITBAD */ #ifndef OMITGOOD /* good function declarations */ /* goodG2B uses the GoodSource with the BadSink */ void goodG2BSink(map<int, wchar_t *> dataMap); static void goodG2B() { wchar_t * data; map<int, wchar_t *> dataMap; wchar_t data_buf[100] = FULL_COMMAND; data = data_buf; /* FIX: Append a fixed string to data (not user / external input) */ wcscat(data, L"*.*"); /* Put data in a map */ dataMap[0] = data; dataMap[1] = data; dataMap[2] = data; goodG2BSink(dataMap); } void good() { goodG2B(); } #endif /* OMITGOOD */ } /* close namespace */ /* Below is the main(). It is only used when building this testcase on * its own for testing or for building a binary to use in testing binary * analysis tools. It is not used when compiling all the testcases as one * application, which is how source code analysis tools are tested. */ #ifdef INCLUDEMAIN using namespace CWE78_OS_Command_Injection__wchar_t_environment_system_74; /* so that we can use good and bad easily */ int main(int argc, char * argv[]) { /* seed randomness */ srand( (unsigned)time(NULL) ); #ifndef OMITGOOD printLine("Calling good()..."); good(); printLine("Finished good()"); #endif /* OMITGOOD */ #ifndef OMITBAD printLine("Calling bad()..."); bad(); printLine("Finished bad()"); #endif /* OMITBAD */ return 0; } #endif
[ "Alexander.Richardson@cl.cam.ac.uk" ]
Alexander.Richardson@cl.cam.ac.uk
b8a92e8324f7ae859672ea1257bde4f2daa6f805
bef2bdbfa41d617dbddca554ce7bfe9ceb474261
/src/Explosion.hpp
54e0d5869d8b76128b3f876bebc0d7858721e03f
[]
no_license
rooooooooob/fathom
0495cb3312f8103f2e7b4524c0ea2d083dc22976
9216c1e10b0b3869207613931b0bacbdaab76c91
refs/heads/master
2021-01-19T19:32:20.670799
2015-09-27T15:46:30
2015-09-27T15:46:30
42,344,554
0
0
null
null
null
null
UTF-8
C++
false
false
474
hpp
#ifndef FATHOM_EXPLOSION_HPP #define FATHOM_EXPLOSION_HPP #include "jam-engine/Core/Entity.hpp" #include "jam-engine/Graphics/Animation.hpp" namespace fathom { class Explosion : public je::Entity { public: Explosion(je::Level *level, const sf::Vector2f& pos); private: void draw(sf::RenderTarget& target, const sf::RenderStates &states) const override; void onUpdate() override; int maskIndex; je::Animation anim; }; } // fathom #endif // FATHOM_EXPLOSION_HPP
[ "raftias@gmail.com" ]
raftias@gmail.com