blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
247
content_id
stringlengths
40
40
detected_licenses
listlengths
0
57
license_type
stringclasses
2 values
repo_name
stringlengths
4
111
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
58
visit_date
timestamp[ns]date
2015-07-25 18:16:41
2023-09-06 10:45:08
revision_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
committer_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
github_id
int64
3.89k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
25 values
gha_event_created_at
timestamp[ns]date
2012-06-07 00:51:45
2023-09-14 21:58:52
gha_created_at
timestamp[ns]date
2008-03-27 23:40:48
2023-08-24 19:49:39
gha_language
stringclasses
159 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
10.5M
extension
stringclasses
111 values
filename
stringlengths
1
195
text
stringlengths
7
10.5M
e3904a350a115f80362a1a9f88072ac41deff764
6d083cca609e45c3f12b66fbb8901af043f07376
/PersFunc.h
8e5ee0bed02fe62fc93f5e73d2fa37e45dcadb6b
[]
no_license
kokkosik/FamTREE
9ef88aa69e7f7422ef0e40d779d7164a681db0d0
5f2af74b7770c4346f23cdb8a1537db7b1464be0
refs/heads/master
2020-03-18T14:59:52.255677
2018-05-25T16:34:58
2018-05-25T16:34:58
134,880,355
0
0
null
null
null
null
UTF-8
C++
false
false
490
h
PersFunc.h
#ifndef PERSFUNC_H #define PERSFUNC_H #include<string> #include "Person.h" #include"Female.h" using namespace std; Person* add(Person *p,int &n,string fileName); Person* findPerson(Person *p,string name,int n); void save(Person *p,int n,string fileName); void Parents(Person *p,int n,string filename); void infoParents(Person* p,int n); //============================================================== void menu(); int Perssize(string fileName); #endif // PERSFUNC_H
2c6e02ed07d2170aec0d34ed898bdcec318759ea
3fc99c31d5fb74447d868955c22abba4bb0a54d4
/code/array/string_input.cpp
ed6cd58b19a8a4bb075010001d59dd53ad5d52a2
[]
no_license
Pacific-Pacifico/Meetup-C
21e37858e4435831ec02619fb8c2d068284caf5b
969431c85d0feebe259be01158b63ca6dd117095
refs/heads/main
2023-04-14T07:12:16.327160
2021-04-30T03:59:05
2021-04-30T03:59:05
354,528,491
2
0
null
null
null
null
UTF-8
C++
false
false
356
cpp
string_input.cpp
#include <iostream> #include <cstdio> #include <string.h> using namespace std; int main() { char str[100]; cout<<"Enter ur name: "; // cin>>str; // gets(str); cin.get(str,21); cout<<"Length of the str="<<strlen(str)<<endl; // string my_str; // cout<<"Enter ur name: "; // getline(cin,my_str); // cout<<my_str<<endl; }
f0f53fc58fa3fdb018770d4d1ece2b7162e17058
d4426a08c79e7bf5ee9f5942feaf40af0a74be25
/library/include/Button.h
a23f4b330816b3258b7b7d098590ad105c098b6a
[]
no_license
cmarrin/avrm8r
41f4f098d284864dcd7b3f8ab7d56374907c71a5
9fa64e785519a8190a9eb522aca7b3e325df26f9
refs/heads/master
2021-05-28T08:36:23.172220
2014-04-13T15:41:50
2014-04-13T15:41:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,071
h
Button.h
// // Button.h // // Created by Chris Marrin on 3/19/2011. // // /* Copyright (c) 2009-2011 Chris Marrin (chris@marrin.com) 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 Marrinator 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 HOLDER 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. */ #pragma once #include "EventListener.h" #include "TimerEvent.h" namespace m8r { ////////////////////////////////////////////////////////////////////////////// // // Class: Button // // Debounced button on a port pin // ////////////////////////////////////////////////////////////////////////////// const uint8_t NoButton = 0xff; class ButtonBase { public: ButtonBase() : m_debounceTestsRemaining(0) , m_debounceValue(false) , m_value(false) { } void _handleEvent(bool value, uint8_t numDebounceTests); private: uint8_t m_debounceTestsRemaining; bool m_debounceValue; bool m_value; }; template <class Bit, uint8_t debounceTimerCount = 10, uint8_t numDebounceTests = 5> class Button : public ButtonBase, public EventListener { public: Button() : _event(debounceTimerCount) { _bit = true; // Activate pullup System::startEventTimer(&_event); } // EventListener override virtual void handleEvent(EventType type, EventParam param) { if (type != EV_EVENT_TIMER || &_event != (TimerEvent*) param) return; _handleEvent(!_bit, numDebounceTests); } private: Bit _bit; RepeatingTimerEvent _event; }; class ButtonSetBase { public: virtual void handleEvent(EventType, EventParam) = 0; virtual bool state(uint8_t b) const = 0; virtual uint8_t readButton(bool peek = false) = 0; protected: static bool _handleEvent(bool newValue, bool& currentValue, bool& debounceValue, uint8_t& debounceTestsRemaining, uint8_t numDebounceTests); }; template<class... Bits> class ButtonSet : public ButtonSetBase, public EventListener { static const uint8_t _numButtons = sizeof...(Bits); static const uint8_t _debounceTimerCount = 10; static const uint8_t _numDebounceTests = 5; public: ButtonSet() : _event(_debounceTimerCount) { memset(_state, 0, (_numButtons + 7) / 8); addButton<0, Bits...>(); System::startEventTimer(&_event); } uint8_t numButtons() const { return _numButtons; } uint8_t port(uint8_t i) const { ASSERT(i < _numButtons, AssertButtonOutOfRange); return _bits[i].port(); } uint8_t pin(uint8_t i) const { ASSERT(i < _numButtons, AssertButtonOutOfRange); return _bits[i].pin(); } virtual void handleEvent(EventType type, EventParam param) override { switch(type) { case EV_EVENT_TIMER: if (&_event != (TimerEvent*) param) { return; } for (uint8_t i = 0; i < _numButtons; ++i) { if (_handleEvent(!_bits[i], _value[i], _debounceValue[i], _debounceTestsRemaining[i], _numDebounceTests)) { System::handleEvent(_value[i] ? EV_BUTTON_DOWN : EV_BUTTON_UP, this); setState(i, _value[i]); _lastButton = i; } } break; default: break; } } virtual bool state(uint8_t b) const override { ASSERT(b < _numButtons, AssertButtonOutOfRange); return _state[b / 8] & (1 << (b % 8)); } virtual uint8_t readButton(bool peek = false) override { uint8_t retval = _lastButton; if (!peek) { _lastButton = NoButton; } return retval; } private: template<uint8_t n, class AddBit, class... AddBits> void addButton() { ASSERT(n < _numButtons, AssertButtonTooMany); _bits[n] = AddBit(); _bits[n] = true; // Activate pullup _debounceTestsRemaining[n] = 0; _debounceValue[n] = false; _value[n] = false; addButton<n + 1, AddBits...>(); } void setState(uint8_t i, bool state) { if (state) { _state[i / 8] |= 1 << (i % 8); } else { _state[i / 8] &= ~(1 << (i % 8)); } } template<uint8_t n> void addButton() { } RepeatingTimerEvent _event; uint8_t _state[(_numButtons + 7) / 8]; DynamicInputBitBase _bits[_numButtons]; uint8_t _debounceTestsRemaining[_numButtons]; bool _debounceValue[_numButtons]; bool _value[_numButtons]; uint8_t _lastButton = NoButton; }; template<uint8_t rows, uint8_t cols> class ButtonMatrix : public ButtonSetBase { }; }
89d58229de5a5b2224d4f4ccf904134205bc9182
a1ee978f69eaff520213f00a646cdce408adf42b
/lab 9/MyForm.cpp
56e748110634ee35eec642fabff175dd3695ddfb
[]
no_license
JohnSutray/music-cpp
63aee1102ce16b9b0e7c191512cda197d71e096d
6004cd5936b0866fac28cbc4b6de23112ae6e6c7
refs/heads/master
2023-04-20T12:46:47.438590
2021-05-19T12:36:12
2021-05-19T12:36:12
368,859,348
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
1,592
cpp
MyForm.cpp
#include "MyForm.h" #include <Windows.h> using namespace System::Timers; using namespace System::Threading; using namespace lab9; //То ,что указывалось при создании CLR проекта using namespace System; int WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int) { Application::EnableVisualStyles(); Application::SetCompatibleTextRenderingDefault(false); Application::Run(gcnew MyForm); return 0; } System::Void lab9::MyForm::exit_button3_Click(System::Object^ sender, System::EventArgs^ e) { Application::Exit(); } System::Void lab9::MyForm::listBox1_SelectedIndexChanged(System::Object^ sender, System::EventArgs^ e) { return System::Void(); } System::Void lab9::MyForm::listBox1_SelectedIndexClick(System::Object^ sender, System::EventArgs^ e) { return System::Void(); } System::Void lab9::MyForm::added_button1_Click(System::Object^ sender, System::EventArgs^ e) { listBox1->Items->Add(i); listBox1->Items[i] = input_textBox1->Text; i++; } System::Void lab9::MyForm::input_textBox1_TextChanged(System::Object^ sender, System::EventArgs^ e) { return System::Void(); } System::Void lab9::MyForm::listBox1_MouseClick(System::Object^ sender, System::Windows::Forms::MouseEventArgs^ e) { } System::Void lab9::MyForm::delete_button2_Click(System::Object^ sender, System::EventArgs^ e) { if (listBox1->SelectedIndex != -1) { listBox1->Items->RemoveAt(listBox1->SelectedIndex); } } System::Void lab9::MyForm::MyForm_Load(System::Object^ sender, System::EventArgs^ e) { richTextBox1->Text = "Окунь 1 кг 5 рублей"; }
73bbf21bf93454c7cf55c52803594ab388b326fa
7101b53574ad4e2338b05450b7f3448c50f61005
/include/GoogleVoiceAssistant.h
4c029cf313156c71bf9579d57d32a9594584ac3f
[ "Apache-2.0" ]
permissive
kobeya/GVA-demo
4d6af374ea95be32aee8214947600e6a3e8bd2c4
41a57bfff01ab0de2f56ddcd7611514e550472ff
refs/heads/master
2022-08-07T00:52:39.986363
2020-06-01T16:10:09
2020-06-01T16:10:09
268,522,738
0
0
null
null
null
null
UTF-8
C++
false
false
4,243
h
GoogleVoiceAssistant.h
/** * @file GoogleVoiceAssistant.h * @author Alex Li (alex.li@tymphany.com) * @brief * @version 0.1 * @date 2018-10-29 * * @copyright Copyright (c) 2018 * */ #pragma once #include <condition_variable> #include <thread> #include "AudioStream.h" #include "KeyWordObserverInterface.h" #include "Player.h" #include "VoiceAssistant.h" #include <grpc++/grpc++.h> #include "google/assistant/embedded/v1alpha2/embedded_assistant.grpc.pb.h" #include "google/assistant/embedded/v1alpha2/embedded_assistant.pb.h" using google::assistant::embedded::v1alpha2::AssistRequest; using google::assistant::embedded::v1alpha2::AssistResponse; using google::assistant::embedded::v1alpha2::AudioInConfig_Encoding; using google::assistant::embedded::v1alpha2::AudioOutConfig_Encoding; using google::assistant::embedded::v1alpha2::EmbeddedAssistant; namespace VoiceAssistantService { class GoogleVoiceAssistant : public VoiceAssistant, public KeyWord::KeyWordObserverInterface { public: struct GoogleVoiceAssistantConfig { std::string api_endpoint; std::string device_id; std::string device_model_id; std::string language_code; AudioOutConfig_Encoding output_encoding; AudioInConfig_Encoding input_encoding; uint16_t output_sample_rate_hertz; uint16_t input_sample_rate_hertz; std::string credentials_file_path; }; /** * @brief Construct a new Google Voice Assistnat object. * */ GoogleVoiceAssistant( GoogleVoiceAssistantConfig&& config, std::unique_ptr<Audio::AudioOutputStream::Writer> writer, std::shared_ptr<Audio::AudioInputStream::Reader> reader, std::unique_ptr<Audio::Player::Player> player); /** * @brief Destroy the Google Voice Assistnat object * */ ~GoogleVoiceAssistant(); /** * @brief override KeyWordObserverInterface::onKeyWordDetected * * @param keyWord */ void onKeyWordDetected(std::string keyWord, size_t readerIndex) override; /** * @brief override KeyWordObserverInterface::onStateChanged. GVA doesn't * care about this * * @param state */ void onStateChanged(KeyWordDetectorState state) override; private: /** * @brief init GVA * */ void init(); /** * @brief Create a channel to connect to Google. * * @param host domain name of a gRPC API endpoint * @return std::shared_ptr<grpc::Channel> */ std::shared_ptr<grpc::Channel> createChannel(const std::string& host); /** * @brief thread loop used by @c m_thread * */ void threadLoop(); /** * @brief refreshClient. Call it before new request * * @return true refresh succeed * @return false refresh failed */ bool refreshClient(); /** * @brief Set the @c m_state. This method will lock @c m_stateMtx so it's * thread safe * * @param newState */ void setState( VoiceAssistantObserverInterface::VoiceAssistantState&& newState); /** * @brief Create a text request * * @param textRequest * @return AssistRequest */ AssistRequest createRequest(const std::string& textRequest); /** * @brief Create a audio request * * @return AssistRequest */ AssistRequest createRequest(); std::unique_ptr<std::thread> m_thread; std::atomic<bool> m_isRunning; std::atomic<bool> m_isReadingInput; std::mutex m_stateMtx; VoiceAssistantObserverInterface::VoiceAssistantState m_state; std::condition_variable m_cvStateChange; GoogleVoiceAssistantConfig m_gvaConfig; std::shared_ptr<grpc::CallCredentials> m_callCredentials; std::unique_ptr<EmbeddedAssistant::Stub> m_assistantStub; std::shared_ptr<grpc::Channel> m_channel; std::unique_ptr<grpc::ClientContext> m_clientContext; std::unique_ptr<grpc::ClientReaderWriter<AssistRequest, AssistResponse>> m_clientRW; std::unique_ptr<Audio::AudioOutputStream::Writer> m_writer; std::shared_ptr<Audio::AudioInputStream::Reader> m_reader; std::unique_ptr<Audio::Player::Player> m_player; }; } // namespace VoiceAssistantService
278929ca78d2f24beeff6eaef0af0f8af1700854
5d0ddbd6f42843ded4d5ba18966dc130725607d2
/c13.code/uintah/branches/pearls/src/CCA/Ports/Output.h
0e4c187925c78c4e1b372a2923544d442695fecb
[ "MIT" ]
permissive
alvarodlg/lotsofcoresbook2code
b93ad62e015d205e4f550028ceb54254023021ee
a2dbeb306fa29ae6663ae29b2c4c132608375cf0
refs/heads/master
2020-12-31T03:02:22.579614
2015-09-02T15:23:18
2015-09-02T15:23:18
54,509,919
2
1
null
2016-03-22T21:27:56
2016-03-22T21:27:56
null
UTF-8
C++
false
false
5,411
h
Output.h
/* * The MIT License * * Copyright (c) 1997-2015 The University of Utah * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ #ifndef UINTAH_HOMEBREW_OUTPUT_H #define UINTAH_HOMEBREW_OUTPUT_H #include <CCA/Ports/SchedulerP.h> #include <Core/Containers/ConsecutiveRangeSet.h> #include <Core/Grid/GridP.h> #include <Core/Grid/Variables/MaterialSetP.h> #include <Core/Grid/Variables/ComputeSet.h> #include <Core/OS/Dir.h> #include <Core/Parallel/UintahParallelPort.h> #include <Core/ProblemSpec/ProblemSpecP.h> #include <string> namespace Uintah { using SCIRun::Dir; class ProcessorGroup; class Patch; class VarLabel; /************************************** CLASS Output Short description... GENERAL INFORMATION Output.h Steven G. Parker Department of Computer Science University of Utah Center for the Simulation of Accidental Fires and Explosions (C-SAFE) KEYWORDS Output DESCRIPTION Long description... WARNING ****************************************/ class SimulationState; class Output : public UintahParallelPort { public: Output(); virtual ~Output(); ////////// // Insert Documentation Here: virtual void problemSetup(const ProblemSpecP& params, SimulationState* state) = 0; virtual void initializeOutput(const ProblemSpecP& params) = 0; ////////// // Call this when restarting from a checkpoint after calling // problemSetup. virtual void restartSetup(Dir& restartFromDir, int startTimestep, int timestep, double time, bool fromScratch, bool removeOldDir) = 0; ////////// // set timeinfoFlags and virtual void reduceUdaSetup(Dir& fromDir) = 0; virtual bool needRecompile(double time, double delt, const GridP& grid) = 0; ////////// // Call this after all other tasks have been added to the scheduler virtual void finalizeTimestep(double t, double delt, const GridP&, SchedulerP&, bool recompile = false ) = 0; // schedule all output tasks virtual void sched_allOutputTasks(double delt, const GridP&, SchedulerP&, bool recompile = false ) = 0; ////////// // Call this after a timestep restart to make sure we still // have an output timestep virtual void reEvaluateOutputTimestep(double old_delt, double new_delt)=0; ////////// // Call this after the timestep has been executed. virtual void findNext_OutputCheckPoint_Timestep(double delt, const GridP&) = 0; ////////// // update or write to the xml files virtual void writeto_xml_files(double delt, const GridP& grid) = 0; ////////// // Insert Documentation Here: virtual const std::string getOutputLocation() const = 0; ////////// // Get the current time step virtual int getCurrentTimestep() const = 0; ////////// // Get the current time step virtual double getCurrentTime() const = 0; // Get the time the next output will occur virtual double getNextOutputTime() const = 0; // Get the timestep the next output will occur virtual int getNextOutputTimestep() const = 0; // Get the time the next checkpoint will occur virtual double getNextCheckpointTime() const = 0; // Get the timestep the next checkpoint will occur virtual int getNextCheckpointTimestep() const = 0; // Returns true if data will be output this timestep virtual bool isOutputTimestep() const = 0; // Returns true if data will be checkpointed this timestep virtual bool isCheckpointTimestep() const = 0; // Returns true if the label is being saved virtual bool isLabelSaved( const std::string & label ) const = 0; // update output interval virtual void updateOutputInterval( double inv ) = 0; //get output interval virtual double getOutputInterval() const = 0; // update checkpoint interval virtual void updateCheckpointInterval( double inv ) = 0; //get checkpoint interval virtual double getCheckpointInterval() const = 0; ////////// // Get the directory of the current time step for outputting info. virtual const std::string& getLastTimestepOutputLocation() const = 0; private: Output( const Output& ); Output& operator=( const Output& ); }; } // End namespace Uintah #endif
7ec56f54236291a7c5c6ec3a1ff5bc1247f00977
1e2f78226da2d4af877545cdb269d141c3265fcd
/SimpleLock.h
674cd67ffa157ec82ccc5f2ad5d7b648c5b47901
[]
no_license
hellocjfeii/SimpleLock
701ab5f1f119b4543c2d92055bb12221ec2e98bb
1f755be678bfe1779cd3fad1596c8123a5d627dd
refs/heads/master
2021-01-23T05:34:46.653785
2013-10-25T08:29:46
2013-10-25T08:29:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
649
h
SimpleLock.h
/* * SimpleLock.h * * Created on: 2013.10.25 * Author: cjfeii@126.com */ #ifndef SIMPLELOCK_H__ #define SIMPLELOCK_H_ #include <time.h> using namespace std; // A simple exclusive lock. class SimpleLock { public: SimpleLock(); ~SimpleLock(); public: void lock(); bool tryLock(); void unlock(); private: enum { FREE = 0, LOCKED = 1 }; volatile unsigned char m_lock; }; // A simple auto exclusive lock. class SimpleAutoLock { private: SimpleLock *m_pLock; public: SimpleAutoLock(SimpleLock* pLocker) { m_pLock = pLocker; m_pLock->lock(); } ~SimpleAutoLock() { m_pLock->unlock(); } }; #endif /* SIMPLELOCK_H_ */
1499407be053e8efd7aa1c05807e71b6293aaac1
5e09b49b621c2ff7bfd3749b287d854368b3783c
/headers/sscanf.cpp
9146d0b0dba39f3bd032bb78b7ecf0164607c670
[]
no_license
robUx4/vlc-msvc
071dd5caf84a078002428ca9c6f0f85408464b64
66fdad2c30d558ca45bde99fc3eea396f93c3d2d
refs/heads/master
2021-01-17T03:21:25.008743
2018-11-05T15:11:48
2018-11-05T15:11:48
37,052,261
1
0
null
null
null
null
UTF-8
C++
false
false
743
cpp
sscanf.cpp
#include <cstdio> int __CRTDECL sscanf( _In_z_ char const* const _Buffer, _In_z_ _Scanf_format_string_ char const* const _Format, ...) { int _Result; va_list _ArgList; __crt_va_start(_ArgList, _Format); _Result = _vsscanf_l(_Buffer, _Format, NULL, _ArgList); __crt_va_end(_ArgList); return _Result; } int __CRTDECL _vsscanf_l( _In_z_ char const* const _Buffer, _In_z_ _Printf_format_string_ char const* const _Format, _In_opt_ _locale_t const _Locale, va_list _ArgList ) { return __stdio_common_vsscanf( _CRT_INTERNAL_LOCAL_SCANF_OPTIONS, _Buffer, (size_t)-1, _Format, _Locale, _ArgList); }
6cb7368148d7e36b6db5f34a4563da9f5e010830
d4b2b40fc58708b8e93ec83cda3c2949e13b5df4
/gui/ui_mainWindow.h
e7a8849a37de532c3b2fbc131d0210244a55bdb9
[]
no_license
ericaddison/BEMRI
536a36c06d5477e442ccc4da2be97e102e6e1d65
64a466d6b361b3ae5dd62141d62b2f96f0983519
refs/heads/master
2020-05-18T06:50:26.072289
2013-10-16T17:52:20
2013-10-16T17:52:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,084
h
ui_mainWindow.h
/******************************************************************************** ** Form generated from reading UI file 'mainWindow.ui' ** ** Created by: Qt User Interface Compiler version 4.8.5 ** ** WARNING! All changes made in this file will be lost when recompiling UI file! ********************************************************************************/ #ifndef UI_MAINWINDOW_H #define UI_MAINWINDOW_H #include <QtCore/QVariant> #include <QtGui/QAction> #include <QtGui/QApplication> #include <QtGui/QButtonGroup> #include <QtGui/QFrame> #include <QtGui/QGridLayout> #include <QtGui/QGroupBox> #include <QtGui/QHBoxLayout> #include <QtGui/QHeaderView> #include <QtGui/QLabel> #include <QtGui/QLineEdit> #include <QtGui/QMainWindow> #include <QtGui/QMenuBar> #include <QtGui/QSpacerItem> #include <QtGui/QStatusBar> #include <QtGui/QVBoxLayout> #include <QtGui/QWidget> #include "qcustomplot.h" QT_BEGIN_NAMESPACE class Ui_MainWindow { public: QWidget *centralwidget; QHBoxLayout *horizontalLayout; QVBoxLayout *verticalLayout; QSpacerItem *verticalSpacer; QGroupBox *intrinsicBox; QGridLayout *gridLayout; QLabel *label_2; QLineEdit *mass2Edit; QLabel *label_3; QLineEdit *mass1Edit; QLineEdit *eccEdit; QLabel *label_4; QLabel *label; QWidget *widget_2; QLineEdit *smaEdit; QSpacerItem *verticalSpacer_2; QVBoxLayout *verticalLayout_3; QLabel *plotTitle; QFrame *frame; QHBoxLayout *horizontalLayout_2; QCustomPlot *customPlot; QMenuBar *menubar; QStatusBar *statusbar; void setupUi(QMainWindow *MainWindow) { if (MainWindow->objectName().isEmpty()) MainWindow->setObjectName(QString::fromUtf8("MainWindow")); MainWindow->resize(675, 500); centralwidget = new QWidget(MainWindow); centralwidget->setObjectName(QString::fromUtf8("centralwidget")); horizontalLayout = new QHBoxLayout(centralwidget); horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout")); verticalLayout = new QVBoxLayout(); verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); verticalLayout->addItem(verticalSpacer); intrinsicBox = new QGroupBox(centralwidget); intrinsicBox->setObjectName(QString::fromUtf8("intrinsicBox")); gridLayout = new QGridLayout(intrinsicBox); gridLayout->setObjectName(QString::fromUtf8("gridLayout")); label_2 = new QLabel(intrinsicBox); label_2->setObjectName(QString::fromUtf8("label_2")); label_2->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); gridLayout->addWidget(label_2, 1, 0, 1, 1); mass2Edit = new QLineEdit(intrinsicBox); mass2Edit->setObjectName(QString::fromUtf8("mass2Edit")); mass2Edit->setMaximumSize(QSize(75, 16777215)); gridLayout->addWidget(mass2Edit, 1, 1, 1, 1); label_3 = new QLabel(intrinsicBox); label_3->setObjectName(QString::fromUtf8("label_3")); label_3->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); gridLayout->addWidget(label_3, 2, 0, 1, 1); mass1Edit = new QLineEdit(intrinsicBox); mass1Edit->setObjectName(QString::fromUtf8("mass1Edit")); mass1Edit->setMaximumSize(QSize(75, 16777215)); gridLayout->addWidget(mass1Edit, 0, 1, 1, 1); eccEdit = new QLineEdit(intrinsicBox); eccEdit->setObjectName(QString::fromUtf8("eccEdit")); eccEdit->setMaximumSize(QSize(75, 16777215)); gridLayout->addWidget(eccEdit, 2, 1, 1, 1); label_4 = new QLabel(intrinsicBox); label_4->setObjectName(QString::fromUtf8("label_4")); label_4->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); gridLayout->addWidget(label_4, 3, 0, 1, 1); label = new QLabel(intrinsicBox); label->setObjectName(QString::fromUtf8("label")); label->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter); gridLayout->addWidget(label, 0, 0, 1, 1); widget_2 = new QWidget(intrinsicBox); widget_2->setObjectName(QString::fromUtf8("widget_2")); gridLayout->addWidget(widget_2, 4, 0, 1, 1); smaEdit = new QLineEdit(intrinsicBox); smaEdit->setObjectName(QString::fromUtf8("smaEdit")); smaEdit->setMaximumSize(QSize(75, 16777215)); gridLayout->addWidget(smaEdit, 3, 1, 1, 1); verticalLayout->addWidget(intrinsicBox); verticalSpacer_2 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); verticalLayout->addItem(verticalSpacer_2); horizontalLayout->addLayout(verticalLayout); verticalLayout_3 = new QVBoxLayout(); verticalLayout_3->setObjectName(QString::fromUtf8("verticalLayout_3")); plotTitle = new QLabel(centralwidget); plotTitle->setObjectName(QString::fromUtf8("plotTitle")); plotTitle->setAlignment(Qt::AlignCenter); verticalLayout_3->addWidget(plotTitle); frame = new QFrame(centralwidget); frame->setObjectName(QString::fromUtf8("frame")); frame->setMinimumSize(QSize(450, 400)); frame->setFrameShape(QFrame::StyledPanel); frame->setFrameShadow(QFrame::Raised); horizontalLayout_2 = new QHBoxLayout(frame); horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2")); customPlot = new QCustomPlot(frame); customPlot->setObjectName(QString::fromUtf8("customPlot")); horizontalLayout_2->addWidget(customPlot); smaEdit->raise(); customPlot->raise(); verticalLayout_3->addWidget(frame); horizontalLayout->addLayout(verticalLayout_3); MainWindow->setCentralWidget(centralwidget); menubar = new QMenuBar(MainWindow); menubar->setObjectName(QString::fromUtf8("menubar")); menubar->setGeometry(QRect(0, 0, 675, 20)); MainWindow->setMenuBar(menubar); statusbar = new QStatusBar(MainWindow); statusbar->setObjectName(QString::fromUtf8("statusbar")); MainWindow->setStatusBar(statusbar); QWidget::setTabOrder(mass1Edit, mass2Edit); QWidget::setTabOrder(mass2Edit, eccEdit); QWidget::setTabOrder(eccEdit, smaEdit); retranslateUi(MainWindow); QMetaObject::connectSlotsByName(MainWindow); } // setupUi void retranslateUi(QMainWindow *MainWindow) { MainWindow->setWindowTitle(QApplication::translate("MainWindow", "Binary Explorer", 0, QApplication::UnicodeUTF8)); intrinsicBox->setTitle(QApplication::translate("MainWindow", "Intrinsic Binary Info", 0, QApplication::UnicodeUTF8)); label_2->setText(QApplication::translate("MainWindow", "Mass 2:", 0, QApplication::UnicodeUTF8)); mass2Edit->setText(QApplication::translate("MainWindow", "1", 0, QApplication::UnicodeUTF8)); label_3->setText(QApplication::translate("MainWindow", "Eccentricity:", 0, QApplication::UnicodeUTF8)); mass1Edit->setText(QApplication::translate("MainWindow", "1", 0, QApplication::UnicodeUTF8)); eccEdit->setText(QApplication::translate("MainWindow", "0", 0, QApplication::UnicodeUTF8)); label_4->setText(QApplication::translate("MainWindow", "Semi-Major Axis:", 0, QApplication::UnicodeUTF8)); label->setText(QApplication::translate("MainWindow", "Mass 1:", 0, QApplication::UnicodeUTF8)); smaEdit->setText(QApplication::translate("MainWindow", "1", 0, QApplication::UnicodeUTF8)); plotTitle->setText(QApplication::translate("MainWindow", "<html><head/><body><p><span style=\" font-size:xx-large; font-weight:600; font-style:italic; color:#ff0000;\">Orbit Plot</span></p></body></html>", 0, QApplication::UnicodeUTF8)); } // retranslateUi }; namespace Ui { class MainWindow: public Ui_MainWindow {}; } // namespace Ui QT_END_NAMESPACE #endif // UI_MAINWINDOW_H
7e1b37f9ee7924f64a3119539337e6c4be93ef7b
ffcae3227a8ce86ae97b6d834ca26debd850954d
/include/UI/DialogWindow.hpp
b33d0d8a9094b07841fb0fadb7952f6e81526501
[ "MIT" ]
permissive
tylerwinkler/msg-game
14ad0b3282b77722723fdc41840ea62f7e09e0f0
7db1ead37b61d54b87224c38d15a8b1d5e348755
refs/heads/master
2021-05-02T07:52:10.947231
2018-08-06T16:52:28
2018-08-06T16:52:28
120,840,302
0
0
null
null
null
null
UTF-8
C++
false
false
582
hpp
DialogWindow.hpp
#ifndef MSG_GAME_UI_DIALOGWINDOW_HPP #define MSG_GAME_UI_DIALOGWINDOW_HPP #include "SFML/Graphics/RectangleShape.hpp" #include "SFML/Graphics/Text.hpp" #include "UI/Frame.hpp" class DialogComponent; class DialogWindow : public Frame { public: DialogWindow(); public: void open(DialogComponent& dialog); void onRender(sf::RenderTarget& target) final override; private: void alignSpeakerText(); void cropText(); private: sf::Text m_speaker; sf::Text m_text; sf::RectangleShape m_rect; }; // DialogWindow #endif // MSG_GAME_UI_DIALOGWINDOW_HPP
47d4581f475d2c368f0cf4613657fb6ea9dec9a7
d978b6610b3b11c4a2a0b2dadc966168adc02834
/mf.cpp
92292fdbe07e4662c665dd9cfa72fa12b7fb3771
[ "ISC" ]
permissive
PJBoy/Metroid-level-editor
2043cc0503fa6f8e273bb35b2b96591a30ab2a66
bf2779f5ab634fb6a3d499ee9c220c8d77992478
refs/heads/master
2021-10-25T02:34:48.913371
2021-10-17T16:50:07
2021-10-17T16:50:07
109,970,996
6
0
null
null
null
null
UTF-8
C++
false
false
173
cpp
mf.cpp
#include "global.h" import mf; Mf::Mf(std::filesystem::path filepath) try : Gba(filepath) { throw std::runtime_error("Invalid Metroid Fusion ROM"s); } LOG_RETHROW
b71a67358477e918d598f628d58ee4ad9719ba54
a81c07a5663d967c432a61d0b4a09de5187be87b
/third_party/blink/renderer/modules/scheduler/scheduler.cc
5c7398ce02585b4def0274f2773eafdc67ca3d6e
[ "BSD-3-Clause", "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0", "LicenseRef-scancode-warranty-disclaimer", "LGPL-2.1-only", "GPL-2.0-only", "LGPL-2.0-only", "BSD-2-Clause", "LicenseRef-scancode-other-copyleft" ]
permissive
junxuezheng/chromium
c401dec07f19878501801c9e9205a703e8643031
381ce9d478b684e0df5d149f59350e3bc634dad3
refs/heads/master
2023-02-28T17:07:31.342118
2019-09-03T01:42:42
2019-09-03T01:42:42
205,967,014
2
0
BSD-3-Clause
2019-09-03T01:48:23
2019-09-03T01:48:23
null
UTF-8
C++
false
false
3,506
cc
scheduler.cc
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "third_party/blink/renderer/modules/scheduler/scheduler.h" #include "base/memory/weak_ptr.h" #include "third_party/blink/renderer/core/execution_context/execution_context.h" #include "third_party/blink/renderer/modules/scheduler/scheduler_post_task_options.h" #include "third_party/blink/renderer/modules/scheduler/task_queue.h" #include "third_party/blink/renderer/platform/scheduler/public/frame_scheduler.h" #include "third_party/blink/renderer/platform/scheduler/public/web_scheduling_priority.h" namespace blink { const char Scheduler::kSupplementName[] = "Scheduler"; Scheduler* Scheduler::From(Document& document) { Scheduler* scheduler = Supplement<Document>::From<Scheduler>(document); if (!scheduler) { scheduler = MakeGarbageCollected<Scheduler>(&document); Supplement<Document>::ProvideTo(document, scheduler); } return scheduler; } Scheduler::Scheduler(Document* document) : ContextLifecycleObserver(document) { if (document->IsContextDestroyed()) return; DCHECK(document->GetScheduler()); DCHECK(document->GetScheduler()->ToFrameScheduler()); CreateGlobalTaskQueues(document); } void Scheduler::ContextDestroyed(ExecutionContext* context) { global_task_queues_.clear(); } void Scheduler::Trace(Visitor* visitor) { visitor->Trace(global_task_queues_); visitor->Trace(current_task_queue_); ScriptWrappable::Trace(visitor); ContextLifecycleObserver::Trace(visitor); Supplement<Document>::Trace(visitor); } TaskQueue* Scheduler::currentTaskQueue() { // The |current_task_queue_| will only be set if the task currently running // was scheduled through window.scheduler. In other cases, e.g. setTimeout, // |current_task_queue_| will be nullptr, in which case we return the default // priority global task queue. if (current_task_queue_) return current_task_queue_; return GetTaskQueue(WebSchedulingPriority::kDefaultPriority); } void Scheduler::OnTaskStarted(TaskQueue* task_queue, Task*) { // This is not reentrant; tasks are not nested. This allows us to set // |current_task_queue_| to nullptr when this task completes. DCHECK_EQ(current_task_queue_, nullptr); current_task_queue_ = task_queue; } void Scheduler::OnTaskCompleted(TaskQueue* task_queue, Task*) { DCHECK(current_task_queue_); DCHECK_EQ(current_task_queue_, task_queue); current_task_queue_ = nullptr; } TaskQueue* Scheduler::getTaskQueue(AtomicString priority) { return GetTaskQueue(TaskQueue::WebSchedulingPriorityFromString(priority)); } TaskQueue* Scheduler::GetTaskQueue(WebSchedulingPriority priority) { if (global_task_queues_.IsEmpty()) return nullptr; return global_task_queues_[static_cast<int>(priority)]; } Task* Scheduler::postTask(V8Function* callback_function, SchedulerPostTaskOptions* options, const Vector<ScriptValue>& args) { TaskQueue* task_queue = getTaskQueue(AtomicString(options->priority())); if (!task_queue) return nullptr; return task_queue->postTask(callback_function, options, args); } void Scheduler::CreateGlobalTaskQueues(Document* document) { for (size_t i = 0; i < kWebSchedulingPriorityCount; i++) { global_task_queues_.push_back(MakeGarbageCollected<TaskQueue>( document, static_cast<WebSchedulingPriority>(i), this)); } } } // namespace blink
4a3037bacc859f28f27552f641110436db95dd74
d4ea839513b59a412801dc93b846029c212df263
/chess.cpp
6a787364e29c426e64d6685641ac0c148c7f143b
[]
no_license
Nahemah1022/Chinese-Chess-Game
227f0f74720e178504087388b1b50fb991391cf3
36e5ccaad73e93ff0cd4de9e9e7116966ab368e8
refs/heads/master
2023-01-07T17:26:03.670622
2022-12-27T06:06:09
2022-12-27T06:06:09
216,219,401
0
0
null
null
null
null
UTF-8
C++
false
false
5,804
cpp
chess.cpp
#include <chess.h> #include <QDebug> #include <QPushButton> #include <QWidget> #include <QMessageBox> struct position Chess::setPosition(struct position pos){ button->setGeometry(pos.x, pos.y, 89, 91); return pos; } Chess::Chess(QGraphicsView *board, MainWindow *w, QIcon bIcon, struct position pos, bool team){ button = new button_tracking(w); this->w = w; QRegion region(QRect(16,18,56,56), QRegion::Ellipse); button->setMask(region); button->setIcon(bIcon); button->setIconSize(button->size()*3); button->setFlat(true); currentPos = setPosition(pos); this->team = team; this->board = board; isMoving = false; connect(board, SIGNAL(sendMousePosition(struct position)), this, SLOT(setMousePosition(struct position))); connect(button, SIGNAL(sendMouseOnButton(struct position)), this, SLOT(setMousePosition(struct position))); } Chess::Chess(QGraphicsView *board, EditorWIndow *e, QIcon bIcon, struct position pos, bool team, int num) { button = new button_tracking(e); this->e = e; QRegion region(QRect(17,17,55,55), QRegion::Ellipse); button->setMask(region); button->setIcon(bIcon); button->setIconSize(button->size()*3); button->setFlat(true); currentPos = setPosition(pos); homePos = currentPos; this->team = team; this->board = board; isMoving = false; typeNum = num; connect(board, SIGNAL(sendMousePosition(struct position)), this, SLOT(setMousePosition(struct position))); connect(button, SIGNAL(sendMouseOnButton(struct position)), this, SLOT(setMousePosition(struct position))); connect(button, SIGNAL(clicked()), this, SLOT(movement())); } void Chess::movement(){ if(!isMoving){ isMoving = true; } else { isMoving = false; struct position targetPos = getTargetPositionOnEditor(); if(targetPos.x < 510){ e->pos[(currentPos.x)/58][(currentPos.y)/58].currentChess = nullptr; e->pos[(targetPos.x)/58][(targetPos.y)/58].currentChess = this; } else { e->pos[(currentPos.x)/58][(currentPos.y)/58].currentChess = nullptr; } currentPos = setPosition(targetPos); } } bool Chess::isKingMeet(){ for(int i=w->redGeneral->currentPos.y-58; i>=20; i-=58){ if(w->pos[(w->redGeneral->currentPos.x-4)/58][(i-20)/58].currentChess != nullptr && !w->pos[(w->redGeneral->currentPos.x-4)/58][(i-20)/58].currentChess->isKing){ break; } else if(w->pos[(w->redGeneral->currentPos.x-4)/58][(i-20)/58].currentChess != nullptr && w->pos[(w->redGeneral->currentPos.x-4)/58][(i-20)/58].currentChess->isKing){ qDebug() << "王見王"; QMessageBox::critical(w, "警告!", "王見王"); w->resetButton->setEnabled(false); return true; } } return false; } bool Chess::isWin(struct position targetPos) { if(team && targetPos.x == w->blackGeneral->currentPos.x && targetPos.y == w->blackGeneral->currentPos.y){ delete w->pos[(targetPos.x-4)/58][(targetPos.y-20)/58].currentChess->button; w->pos[(targetPos.x-4)/58][(targetPos.y-20)/58].currentChess->~Chess(); w->pos[(currentPos.x-4)/58][(currentPos.y-20)/58].currentChess = nullptr; w->pos[(targetPos.x-4)/58][(targetPos.y-20)/58].currentChess = this; currentPos = setPosition(targetPos); isMoving = false; w->win(team); return true; } else if(!team && targetPos.x == w->redGeneral->currentPos.x && targetPos.y == w->redGeneral->currentPos.y){ delete w->pos[(targetPos.x-4)/58][(targetPos.y-20)/58].currentChess->button; w->pos[(targetPos.x-4)/58][(targetPos.y-20)/58].currentChess->~Chess(); w->pos[(currentPos.x-4)/58][(currentPos.y-20)/58].currentChess = nullptr; w->pos[(targetPos.x-4)/58][(targetPos.y-20)/58].currentChess = this; currentPos = setPosition(targetPos); isMoving = false; w->win(team); return true; } return false; } struct position Chess::getTargetPosition(){ struct position targetPos; targetPos.x = 1000; targetPos.y = 1000; for(int i=0; i<9; ++i){ for(int j=0; j<10; ++j){ if((w->pos[i][j].x-button->geometry().x())*(w->pos[i][j].x-button->geometry().x()) + (w->pos[i][j].y-button->geometry().y())*(w->pos[i][j].y-button->geometry().y()) < (targetPos.x-button->geometry().x())*(targetPos.x-button->geometry().x()) + (targetPos.y-button->geometry().y())*(targetPos.y-button->geometry().y())){ targetPos.x = w->pos[i][j].x; targetPos.y = w->pos[i][j].y; } } } return targetPos; } position Chess::getTargetPositionOnEditor() { struct position targetPos; targetPos.x = 1000; targetPos.y = 1000; if(button->geometry().x() <= 510){ for(int i=0; i<9; ++i){ for(int j=0; j<10; ++j){ if((e->pos[i][j].x-button->geometry().x())*(e->pos[i][j].x-button->geometry().x()) + (e->pos[i][j].y-button->geometry().y())*(e->pos[i][j].y-button->geometry().y()) < (targetPos.x-button->geometry().x())*(targetPos.x-button->geometry().x()) + (targetPos.y-button->geometry().y())*(targetPos.y-button->geometry().y())){ targetPos.x = e->pos[i][j].x; targetPos.y = e->pos[i][j].y; } } } return targetPos; } else { return homePos; } } void Chess::setMousePosition(struct position pos){ if(isMoving){ button->raise(); pos.x -= 43; pos.y -= 40; this->setPosition(pos); } } Chess::Chess(){ } Chess::~Chess(){ }
438a7342dd9f3e99343e4d59ad02dd155c20bfde
278f58ecb9a0b73b666f9589c289f33d6a3bd140
/src/layers/lbann_layer.cpp
b9b326c5a40ae75ba3bb5888c66060a7a4cff054
[ "Apache-2.0" ]
permissive
lichnak/lbann
1d0d5df59c1d016ef0ca1caffc8445733a52fdfd
1a90840fb01dfb2f59251503cf988c7dbd9488ce
refs/heads/master
2021-01-20T00:37:28.748212
2016-10-06T19:17:45
2016-10-06T19:17:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
20,763
cpp
lbann_layer.cpp
//////////////////////////////////////////////////////////////////////////////// // Copyright (c) 2014-2016, Lawrence Livermore National Security, LLC. // Produced at the Lawrence Livermore National Laboratory. // Written by the LBANN Research Team (B. Van Essen, et al.) listed in // the CONTRIBUTORS file. <lbann-dev@llnl.gov> // // LLNL-CODE-697807. // All rights reserved. // // This file is part of LBANN: Livermore Big Artificial Neural Network // Toolkit. For details, see http://software.llnl.gov/LBANN or // https://github.com/LLNL/LBANN. // // Licensed under the Apache License, Version 2.0 (the "Licensee"); 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. // // lbann_layer .hpp .cpp - Parent class for all layer types //////////////////////////////////////////////////////////////////////////////// #include "lbann/layers/lbann_layer.hpp" #include "lbann/regularization/lbann_regularizer.hpp" #include "lbann/utils/lbann_timer.hpp" #include <string> #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> using namespace std; using namespace El; lbann::Layer::Layer(const uint index, lbann_comm* comm, Optimizer *optimizer, uint mbsize, activation_type activation, std::vector<regularizer*> regs) : m_activation_type(activation), optimizer(optimizer), comm(comm), regularizers(regs), m_mini_batch_size(mbsize), m_effective_mbsize(mbsize), fp_time(0.0), bp_time(0.0) { Index = index; m_execution_mode = execution_mode::training; fp_input = NULL; bp_input = NULL; // Most layers use standard elemental matrix distribution WB = new DistMat(comm->get_model_grid()); WB_D = new DistMat(comm->get_model_grid()); Zs = new DistMat(comm->get_model_grid()); Ds = new DistMat(comm->get_model_grid()); Ds_Temp = new DistMat(comm->get_model_grid()); Acts = new DistMat(comm->get_model_grid()); // Initialize activation function m_activation_fn = new_activation(activation); } lbann::Layer::~Layer() { delete m_activation_fn; delete WB; delete WB_D; delete Zs; delete Ds; delete Ds_Temp; delete Acts; } DataType lbann::Layer::forwardProp(DataType prev_WBL2NormSum) { double fp_start = get_time(); // Apply connection regularization. (e.g. DropConnect). for (regularizer* reg : regularizers) reg->fp_connections(); // Layer layer's linearity. fp_linearity(*WB, *fp_input, *Zs, *Acts); // Apply weight regularization (e.g. L2 normalization). for (regularizer* reg : regularizers) reg->fp_weights(); // Apply activation function/nonlinearity. fp_nonlinearity(); // Apply activation regularization (e.g. Dropout). for (regularizer* reg : regularizers) reg->fp_activations(); fp_time += get_time() - fp_start; return prev_WBL2NormSum; } void lbann::Layer::backProp() { double bp_start = get_time(); // Get incoming loss and convert matrix distribution if necessary *Ds = *bp_input; // Backprop activation regularization. for (regularizer* reg : regularizers) reg->bp_activations(); // Backprop the activation function/nonlinearity. bp_nonlinearity(); // Backprop weight regularization. for (regularizer* reg : regularizers) reg->bp_weights(); // Backprop the layer's linearity. bp_linearity(); // Backprop connection regularization. for (regularizer* reg : regularizers) reg->bp_connections(); bp_time += get_time() - bp_start; } void lbann::Layer::summarize(lbann_summary& summarizer, int64_t step) { std::string prefix = "layer" + std::to_string(static_cast<long long>(Index)) + "/WB/"; // TODO: implement summarizer functions for other matrix distributions const ElMat& wb = get_weights_biases(); summarizer.reduce_mean(prefix + "mean", wb, step); summarizer.reduce_min(prefix + "min", wb, step); summarizer.reduce_max(prefix + "max", wb, step); summarizer.reduce_stdev(prefix + "stdev", wb, step); prefix = "layer" + std::to_string(static_cast<long long>(Index)) + "/WB_D/"; const ElMat& wb_d = get_weights_biases_gradient(); summarizer.reduce_mean(prefix + "mean", wb_d, step); summarizer.reduce_min(prefix + "min", wb_d, step); summarizer.reduce_max(prefix + "max", wb_d, step); summarizer.reduce_stdev(prefix + "stdev", wb_d, step); prefix = "layer" + std::to_string(static_cast<long long>(Index)) + "/Acts/"; const ElMat& acts = get_activations(); summarizer.reduce_mean(prefix + "mean", acts, step); summarizer.reduce_min(prefix + "min", acts, step); summarizer.reduce_max(prefix + "max", acts, step); summarizer.reduce_stdev(prefix + "stdev", acts, step); prefix = "layer" + std::to_string(static_cast<long long>(Index)) + "/"; summarizer.reduce_scalar(prefix + "fp_time", fp_time, step); summarizer.reduce_scalar(prefix + "bp_time", bp_time, step); reset_counters(); } void lbann::Layer::setup(int) { for (regularizer* reg : regularizers) reg->setup(this); } ElMat *lbann::Layer::fp_output() { return Acts; } ElMat *lbann::Layer::bp_output() { return Ds_Temp; } void lbann::Layer::setup_fp_input(ElMat *fp_input) { this->fp_input = fp_input; // cout << "Layer " << Index << " is looking at fp_input " << fp_input << endl; } void lbann::Layer::setup_bp_input(ElMat *bp_input) { this->bp_input = bp_input; // cout << "Layer " << Index << " is looking at bp_input " << bp_input << endl; } struct layer_header { uint64_t rank; uint64_t width; uint64_t height; uint64_t localwidth; uint64_t localheight; uint64_t ldim; }; static bool writeDist(int fd, const char* filename, const DistMat& M, uint64_t* bytes) { struct layer_header header; header.rank = (uint64_t) M.Grid().Rank(); header.width = (uint64_t) M.Width(); header.height = (uint64_t) M.Height(); header.localwidth = (uint64_t) M.LocalWidth(); header.localheight = (uint64_t) M.LocalHeight(); header.ldim = (uint64_t) M.LDim(); ssize_t write_rc = write(fd, &header, sizeof(header)); if (write_rc != sizeof(header)) { // error! } *bytes += write_rc; const Int localHeight = M.LocalHeight(); const Int localWidth = M.LocalWidth(); const Int lDim = M.LDim(); if(localHeight == lDim) { void* buf = (void*) M.LockedBuffer(); size_t bufsize = localHeight * localWidth * sizeof(DataType); write_rc = write(fd, buf, bufsize); if (write_rc != bufsize) { // error! } *bytes += write_rc; } else { for(Int j = 0; j < localWidth; ++j) { void* buf = (void*) M.LockedBuffer(0, j); size_t bufsize = localHeight * sizeof(DataType); write_rc = write(fd, buf, bufsize); if (write_rc != bufsize) { // error! } *bytes += write_rc; } } return true; } static bool readDist(int fd, const char* filename, DistMat& M, uint64_t* bytes) { struct layer_header header; ssize_t read_rc = read(fd, &header, sizeof(header)); if (read_rc != sizeof(header)) { // error! } *bytes += read_rc; // check that header values match up Int height = header.height; Int width = header.width; M.Resize(height, width); if(M.ColStride() == 1 && M.RowStride() == 1) { if(M.Height() == M.LDim()) { void* buf = (void*) M.Buffer(); size_t bufsize = height * width * sizeof(DataType); read_rc = read(fd, buf, bufsize); if (read_rc != bufsize) { // error! } *bytes += read_rc; } else { for(Int j = 0; j < width; ++j) { void* buf = (void*) M.Buffer(0, j); size_t bufsize = height * sizeof(DataType); read_rc = read(fd, buf, bufsize); if (read_rc != bufsize) { // error! } *bytes += read_rc; } } } else { const Int localHeight = M.LocalHeight(); const Int localWidth = M.LocalWidth(); const Int lDim = M.LDim(); if(localHeight == lDim) { void* buf = (void*) M.Buffer(); size_t bufsize = localHeight * localWidth * sizeof(DataType); read_rc = read(fd, buf, bufsize); if (read_rc != bufsize) { // error! } *bytes += read_rc; } else { for(Int jLoc = 0; jLoc < localWidth; ++jLoc) { void* buf = (void*) M.Buffer(0, jLoc); size_t bufsize = localHeight * sizeof(DataType); read_rc = read(fd, buf, bufsize); if (read_rc != bufsize) { // error! } *bytes += read_rc; } } } return true; } // TODO: we could cache these datatypes on Matrix object static void create_types(const DistMatrix<DataType> &M, MPI_Datatype* mattype, MPI_Datatype* viewtype) { // initialize to known values *mattype = MPI_DATATYPE_NULL; *viewtype = MPI_DATATYPE_NULL; // TODO: use TypeMap<>() and templating to figure this out MPI_Datatype type = DataTypeMPI; // get global width and height of matrix Int global_width = M.Width(); Int global_height = M.Height(); // get local width and height, plus leading dimension of local matrix Int W = M.LocalWidth(); Int H = M.LocalHeight(); Int LDim = M.LDim(); // create a datatype to describe libelemental data in memory, // data is stored in column-major order with a local height of H // and a local width of W, also the leading dimension LDim >= H // so there may be holes in our local buffer between consecutive // columns which we need to account for // first we have H consecutive elements in a column MPI_Datatype tmptype; MPI_Type_contiguous(H, type, &tmptype); // then there may be some holes at then end of our column, // since LDim >= H MPI_Datatype coltype; MPI_Aint extent = LDim * sizeof(DataType); MPI_Type_create_resized(tmptype, 0, extent, &coltype); MPI_Type_free(&tmptype); // finally we have W such columns MPI_Type_contiguous(W, coltype, mattype); MPI_Type_free(&coltype); MPI_Type_commit(mattype); // create datatype to desribe fileview for a collective IO operation // we will store matrix in column-major order in the file // get width and height of the process grid int rank = M.Grid().Rank(); int ranks = M.Grid().Size(); int pheight = M.Grid().Height(); int pwidth = M.Grid().Width(); // TODO: need to account for alignment if user has set this // create_darray expects processes to be in row-major order, // find our global rank in row-major order int prow = M.Grid().Row(); int pcol = M.Grid().Col(); int row_major_rank = prow * pwidth + pcol; int gsizes[2]; gsizes[0] = global_height; gsizes[1] = global_width; int distribs[2] = {MPI_DISTRIBUTE_CYCLIC, MPI_DISTRIBUTE_CYCLIC}; // TODO: if using block sizes > 1, then change dargs below (BlockHeight, BlockWidth) int dargs[2] = {1, 1}; int psizes[2]; psizes[0] = pheight; psizes[1] = pwidth; MPI_Type_create_darray(ranks, row_major_rank, 2, gsizes, distribs, dargs, psizes, MPI_ORDER_FORTRAN, type, viewtype); MPI_Type_commit(viewtype); return; } void Write_MPI(const DistMatrix<DataType> &M, std::string basename = "DistMatrix", FileFormat format = BINARY, std::string title = "") { // TODO: error out if format != BINARY // TODO: use TypeMap<>() and templating to figure this out MPI_Datatype type = DataTypeMPI; // define our file name string filename = basename + "." + FileExtension(BINARY); const char* path = filename.c_str(); // get MPI communicator MPI_Comm comm = M.Grid().Comm().comm; // get our rank int rank = M.Grid().Rank(); // first, delete the existing file if (rank == 0) { /* int unlink_rc = unlink(path); if (unlink_rc != 0) { fprintf(stderr, "Error deleting file `%s'\n", path); fflush(stderr); } */ MPI_File_delete(path, MPI_INFO_NULL); } // get global width and height of matrix Int global_width = M.Width(); Int global_height = M.Height(); // define datatypes to describe local buffer and view into file MPI_Datatype mattype, viewtype; create_types(M, &mattype, &viewtype); // define hints for creating the file (e.g., number of stripes on Lustre) MPI_Info info; MPI_Info_create(&info); MPI_Info_set(info, "striping_factor", "10"); //MPI_Info_set(info, "striping_factor", "80"); // open the file MPI_File fh; MPI_Status status; char datarep[] = "native"; int amode = MPI_MODE_WRONLY | MPI_MODE_CREATE; MPI_File_open(comm, path, amode, info, &fh); // done with the info object MPI_Info_free(&info); // truncate file to 0 bytes // MPI_File_set_size(fh, 0); // set our view to write header (height and width as unsigned 32-bit ints) MPI_Offset disp = 0; MPI_File_set_view(fh, disp, MPI_UINT32_T, MPI_UINT32_T, datarep, MPI_INFO_NULL); if (rank == 0) { uint32_t dimensions[2]; dimensions[0] = global_height; dimensions[1] = global_width; MPI_File_write_at(fh, 0, dimensions, 2, MPI_UINT32_T, &status); } disp += 2 * sizeof(uint32_t); // set view to write data MPI_File_set_view(fh, disp, type, viewtype, datarep, MPI_INFO_NULL); // write our portion of the matrix, since we set our view using create_darray, // all procs write at offset 0, the file view will take care of interleaving appropriately const char* buf = (const char*) M.LockedBuffer(); MPI_File_write_at_all(fh, 0, buf, 1, mattype, &status); // close file MPI_File_close(&fh); // free our datatypes MPI_Type_free(&mattype); MPI_Type_free(&viewtype); return; } void Read_MPI(DistMatrix<DataType> &M, std::string filename, FileFormat format = BINARY, bool sequential = false) { // TODO: error out if format != BINARY // TODO: use TypeMap<>() and templating to figure this out MPI_Datatype type = DataTypeMPI; // define our file name const char* path = filename.c_str(); // get MPI communicator MPI_Comm comm = M.Grid().Comm().comm; // get our rank int rank = M.Grid().Rank(); // open the file MPI_File fh; MPI_Status status; char datarep[] = "native"; int amode = MPI_MODE_RDONLY; int rc = MPI_File_open(comm, path, amode, MPI_INFO_NULL, &fh); if (rc != MPI_SUCCESS) { if (rank == 0) { cout << "Failed to open file `" << path << "'" << endl; } return; } // set displacement to beginning of file MPI_Offset disp = 0; // set our view to read header (height and width as unsigned 32-bit ints) uint32_t dimensions[2]; MPI_File_set_view(fh, disp, MPI_UINT32_T, MPI_UINT32_T, datarep, MPI_INFO_NULL); if (rank == 0) { MPI_File_read_at(fh, 0, dimensions, 2, MPI_UINT32_T, &status); } disp += 2 * sizeof(uint32_t); // broadcast dimensions from rank 0 MPI_Bcast(dimensions, 2, MPI_UINT32_T, 0, comm); // resize matrix to hold data Int global_height = dimensions[0]; Int global_width = dimensions[1]; M.Resize(global_height, global_width); // now define datatypes to describe local buffer and view into file MPI_Datatype mattype, viewtype; create_types(M, &mattype, &viewtype); // set view to write data MPI_File_set_view(fh, disp, type, viewtype, datarep, MPI_INFO_NULL); // write our portion of the matrix, since we set our view using create_darray, // all procs write at offset 0, the file view will take care of interleaving appropriately char* buf = (char*) M.Buffer(); MPI_File_read_at_all(fh, 0, buf, 1, mattype, &status); // close file MPI_File_close(&fh); // free our datatypes MPI_Type_free(&mattype); MPI_Type_free(&viewtype); return; } bool lbann::Layer::saveToFile(int fd, const char* dirname) { // return writeDist(fd, filename, WB); char filepath[512]; sprintf(filepath, "%s/WB_L%d_%03dx%03d", dirname, Index, WB->Height()-1, WB->Width()-1); if(WB->Grid().Rank() == 0) { cout << "Rank " << WB->Grid().Rank() << " saving layer " << Index << " to file " << filepath << endl; } Write(*WB, filepath, BINARY, ""); //Write_MPI(WB, filepath, BINARY, ""); return true; } bool lbann::Layer::loadFromFile(int fd, const char* dirname) { // return readDist(fd, filename, WB); char filepath[512]; sprintf(filepath, "%s/WB_L%d_%03dx%03d.bin", dirname, Index, WB->Height()-1, WB->Width()-1); struct stat buffer; Int restoreFileFound = 0; if (WB->Grid().Rank() == 0 && stat(filepath, &buffer) == 0) { restoreFileFound = 1; } mpi::Broadcast(&restoreFileFound, 1, 0, WB->Grid().Comm()); if (restoreFileFound == 1) { if (WB->Grid().Rank() == 0) { cout << "Rank " << WB->Grid().Rank() << " restoring layer " << Index << " from file " << filepath << endl; } Read(*WB, filepath, BINARY, 1); //Read_MPI(WB, filepath, BINARY, 1); return true; } else { return false; } } bool lbann::Layer::saveToCheckpoint(int fd, const char* filename, uint64_t* bytes) { writeDist(fd, filename, *WB, bytes); // Need to catch return value from function optimizer->saveToCheckpoint(fd, filename, bytes); return true; } bool lbann::Layer::loadFromCheckpoint(int fd, const char* filename, uint64_t* bytes) { // TODO: implement reader for other matrix distributions readDist(fd, filename, (DistMat&) *WB, bytes); // Need to catch return value from function optimizer->loadFromCheckpoint(fd, filename, bytes); return true; } bool lbann::Layer::saveToCheckpointShared(const char* dir, uint64_t* bytes) { int rank = WB->Grid().Rank(); char path[512]; sprintf(path, "%s/WB_L%d_%03dx%03d", dir, Index, WB->Height()-1, WB->Width()-1); if(rank == 0) { cout << "Saving layer " << Index << " to file " << path << endl; } Write(*WB, path, BINARY, ""); //Write_MPI(WB, path, BINARY, ""); if (rank == 0) { *bytes += 2 * sizeof(int) + WB->Height() * WB->Width() * sizeof(DataType); } optimizer->saveToCheckpointShared(dir, Index, bytes); return true; } bool lbann::Layer::loadFromCheckpointShared(const char* dir, uint64_t* bytes) { int rank = WB->Grid().Rank(); char path[512]; sprintf(path, "%s/WB_L%d_%03dx%03d.bin", dir, Index, WB->Height()-1, WB->Width()-1); // check whether WB file exists struct stat buffer; int exists = 0; if (rank == 0 && stat(path, &buffer) == 0) { exists = 1; } MPI_Bcast(&exists, 1, MPI_INT, 0, MPI_COMM_WORLD); if (! exists) { return false; } // read WB file if (rank == 0) { cout << "Restoring layer " << Index << " from file " << path << endl; } Read(*WB, path, BINARY, 1); //Read_MPI(WB, path, BINARY, 1); if (rank == 0) { *bytes += 2 * sizeof(int) + WB->Height() * WB->Width() * sizeof(DataType); } optimizer->loadFromCheckpointShared(dir, Index, bytes); return true; } void lbann::Layer::fp_nonlinearity() { // Forward propagation m_activation_fn->forwardProp(*Acts); // Set bias row back to 1.0 const Int local_row = Acts->LocalHeight() - 1; const Int global_row = Acts->GlobalRow(local_row); if(global_row == Acts->Height() - 1) { for(Int col = 0; col < Acts->LocalWidth(); ++col) { Acts->SetLocal(local_row, col, DataType(1)); } } } void lbann::Layer::bp_nonlinearity() { // Backward propagation m_activation_fn->backwardProp(*Zs); if (m_activation_type != activation_type::ID) { Hadamard(*Ds, *Zs, *Ds); } // Set bias row back to 0.0 const Int local_row = Ds->LocalHeight() - 1; const Int global_row = Ds->GlobalRow(local_row); if(global_row == Ds->Height() - 1) { for(Int col = 0; col < Ds->LocalWidth(); ++col) { Ds->SetLocal(local_row, col, DataType(0)); } } }
e0452878b3818b2a2841e36f430d11fd3b7f7ac0
b95e1521f96f2a5ef032ee592974e4b2c39af582
/1_lesson1/Lecture/2-03.cpp
366d5cf1febec30390d5b407373f1ce2341ce2d4
[]
no_license
ck1001099-Teaching/cpp_course_2021summer
8068618322ef19c1b3ec879673c94edd187c72b9
187f19f997461fea8cb4086fc81b2da9595a25dd
refs/heads/master
2023-07-13T01:27:39.248373
2021-08-21T02:26:11
2021-08-21T02:26:11
392,313,556
7
2
null
null
null
null
UTF-8
C++
false
false
262
cpp
2-03.cpp
#include <iostream> using namespace std; int main(){ cout << "紅葉晚蕭蕭,長亭酒一瓢。"; cout << "殘雲歸太華,疏雨過中條。"; cout << "樹色隨關迥,河聲入海遙。"; cout << "帝鄉明日到,猶自夢漁礁。"; return 0; }
f46b040c96726c9afd9c881baf697492c8aa94d0
1d415fdfabd9db522a4c3bca4ba66877ec5b8ef4
/data/ttmuxlistdata.h
3a05329c5017b6fffe3c47b6f2bc7f7efe67bb89
[]
no_license
panjinan333/ttcut
61b160c0c38c2ea6c8785ba258c2fa4b6d18ae1a
fc13ec3289ae4dbce6a888d83c25fbc9c3d21c1a
refs/heads/master
2022-03-23T21:55:36.535233
2010-12-23T20:58:13
2010-12-23T20:58:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,527
h
ttmuxlistdata.h
/*----------------------------------------------------------------------------*/ /* COPYRIGHT: TriTime (c) 2003/2008 / ttcut.tritime.org */ /*----------------------------------------------------------------------------*/ /* PROJEKT : TTCUT 2005 */ /* FILE : ttmuxlistdata.h */ /*----------------------------------------------------------------------------*/ /* AUTHOR : b. altendorf (E-Mail: b.altendorf@tritime.de) DATE: 03/11/2006 */ /*----------------------------------------------------------------------------*/ // ---------------------------------------------------------------------------- // *** TTMUXLISTDATA // ---------------------------------------------------------------------------- /*----------------------------------------------------------------------------*/ /* This program is free software; you can redistribute it and/or modify it */ /* under the terms of the GNU General Public License as published by the Free */ /* Software Foundation; */ /* either version 2 of the License, or (at your option) any later version. */ /* */ /* This program is distributed in the hope that it will be useful, but WITHOUT*/ /* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or */ /* FITNESS FOR A PARTICULAR PURPOSE. */ /* See the GNU General Public License for more details. */ /* */ /* You should have received a copy of the GNU General Public License along */ /* with this program; if not, write to the Free Software Foundation, */ /* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. */ /*----------------------------------------------------------------------------*/ #ifndef TTMUXLISTDATA_H #define TTMUXLISTDATA_H #include "../common/ttcut.h" #include "../common/ttmessagelogger.h" #include <QList> #include <QStringList> class QString; class QFileInfo; class TTMuxListDataItem { friend class TTMuxListData; public: TTMuxListDataItem(); TTMuxListDataItem(const TTMuxListDataItem& item); TTMuxListDataItem(QString video, QStringList audio); QString getVideoName(); void setVideoName(QString videoFilePath); QStringList getAudioNames(); void appendAudioFile(QString audioFilePath); const TTMuxListDataItem& operator=(const TTMuxListDataItem& item); private: QString videoFileName; QStringList audioFileNames; }; class TTMuxListData { public: TTMuxListData(); ~TTMuxListData(); int addItem(QString video); int addItem(QString video, QString audio); int addItem(QString video, QStringList audio); void appendAudioName(int index, QString audio); void appendItem(const TTMuxListDataItem& item); TTMuxListDataItem& itemAt(int index); QString videoFilePathAt(int index); QStringList audioFilePathsAt(int index); int count(); void deleteAll(); void removeAt(int index); void print(); private: TTMuxListDataItem createMuxListItem(QString videoFilePath); private: TTMessageLogger* log; QList<TTMuxListDataItem>data; }; #endif //TTMUXLISTDATA_H
ac95cb5a02771cd74daed2e37698126e5618d32f
640ae955703963f1e1ff315aeda0ada7a8edac1e
/libVeles/src/workflow.cc
b934eb8a58d294da55c243ad40950575243281bc
[ "Apache-2.0" ]
permissive
timmyofmexico/veles
1545641a78bb8f0e12c647cd59e5c3565fa96dba
68c95d60d71417a6c92eec76d217c963b6413a7b
refs/heads/master
2020-12-25T01:50:50.265364
2015-08-07T10:10:08
2015-08-07T10:10:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,648
cc
workflow.cc
/*! @file workflow.cc * @brief VELES workflow * @author Ernesto Sanches <ernestosanches@gmail.com> * @version 1.0 * * @section Notes * This code partially conforms to <a href="http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml">Google C++ Style Guide</a>. * * @section Copyright * Copyright 2013 Samsung R&D Institute Russia */ #include <cstdlib> #include <numeric> #include <algorithm> #include <stdexcept> #include "inc/veles/workflow.h" namespace veles { void Workflow::SetProperty(const std::string& name, std::shared_ptr<void> value) { props_[name] = value; } std::shared_ptr<void> Workflow::GetProperty(const std::string& name) { auto it = props_.find(name); return it != props_.end() ? it->second : nullptr; } void Workflow::SetProperties(const PropertiesTable& table) { props_ = table; } std::shared_ptr<Unit> Workflow::Get(size_t index) const { if (index >= Size()) { throw std::out_of_range("index"); } return units_[index]; } size_t Workflow::MaxUnitSize() const noexcept { auto max_func = [](size_t curr, std::shared_ptr<Unit> unit) { return std::max(curr, unit->OutputCount()); }; return std::accumulate(units_.begin(), units_.end(), !units_.empty() ? units_.front()->InputCount() : 0, max_func); } float* Workflow::mallocf(size_t length) { #ifndef __ANDROID__ void *ptr; return posix_memalign(&ptr, 64, length * sizeof(float)) == 0 ? static_cast<float*>(ptr) : nullptr; #else return reinterpret_cast<float*>(memalign(64, length * sizeof(float))); #endif } } // namespace veles
65b328150485aa8bf5986195d67b1a9a8b635e30
7f160f3554c8701f430c96b2b6d9aea37d5206e7
/ManagerConnection.cpp
f3051bebb734853a139df7b4e503d641bd906249
[ "MIT" ]
permissive
michalsrb/vncmanager-greeter
f214c48e66d05776afd152a2df34f072ef5a35c5
4c7889f98ab562255484b34410473349b6c4ae0f
refs/heads/master
2020-12-24T20:42:16.242164
2016-05-24T14:23:46
2016-05-24T14:23:46
57,244,465
0
1
null
null
null
null
UTF-8
C++
false
false
1,809
cpp
ManagerConnection.cpp
#include <stdio.h> #include <QtCore/QFile> #include "ManagerConnection.h" ManagerConnection::ManagerConnection() : in(stdin, QIODevice::ReadOnly) , out(stdout, QIODevice::WriteOnly) { notifier = new QSocketNotifier(fileno(stdin), QSocketNotifier::Read, this); connect(notifier, SIGNAL(activated(int)), this, SLOT(read())); } void ManagerConnection::read() { QString cmd = in.readLine(); if (cmd == "SESSIONS") readSessions(); else if (cmd == "ERROR") readError(); else if (cmd == "GET PASSWORD") askForPassword(false); else if (cmd == "GET CREDENTIALS") askForPassword(true); } void ManagerConnection::readSessions() { QMap<int, Session> list; int count; in >> count; for (int i = 0; i < count; i++) { int id; QString username; QString name; in >> id; in >> username; name = in.readLine(); list.insert(id, Session(name, username)); } emit sessionListReceived(list); } void ManagerConnection::readError() { QString line, message; while (true) { line = in.readLine(); if (line == "END ERROR") break; message += line + "\n"; } emit errorReceived(message); } void ManagerConnection::askForPassword(bool includeUsername) { emit passwordRequested(includeUsername); } void ManagerConnection::newSession() { out << "NEW" << endl; } void ManagerConnection::openSession(int id) { out << "OPEN " << id << endl; } void ManagerConnection::sendPassword(QString username, QString password) { if (username.isEmpty()) { out << "PASSWORD " << password << endl; } else { out << "CREDENTIALS " << username << " " << password << endl; } } #include "ManagerConnection.moc"
d30c1252fa6e52507d1428880f1499e9777919b2
22fff66019915c53ee8f86aa9b682c08592a01de
/foolproof.cpp
d83f5d559157ffebf3ffc3be738932c6b9d30233
[]
no_license
Alex1207/method.proc
9070e995fa550f54fa2a42d6fe87f109ba4aba0f
5ff8aea951fc7c978bb9c1566c37af0185e34da3
refs/heads/master
2021-06-15T20:08:26.491778
2017-04-25T16:24:11
2017-04-25T16:24:11
84,984,386
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
1,018
cpp
foolproof.cpp
#include "stdafx.h" //#include "iostream" //#include <fstream> #include "foolproof.h" void CheckFileExist(ifstream &File) { if (!File) { cout << "Ошибка чтения входного файла! Возможно, файла не существует.\n"; system("pause"); exit(1); } } void CheckEmptyFile(ifstream &File) { File.seekg (0, std::ios::end); int file_size = File.tellg(); File.seekg (0, std::ios::beg); if (file_size == 0) { cout << "Ошибка чтения входного файла! Файл пуст.\n"; system("pause"); exit(1); } } void CheckFileEnd(ifstream &File) { if(File.eof()) { cout << "Ошибка чтения входного файла! Неожиданный конец файла.\n"; system("pause"); exit(1); } } void CheckInputValue(ifstream &File) { if(File.fail()) { cout << "Ошибка чтения входного файла! Введены некорректные значения.\n" << endl; system("pause"); exit(1); } }
50f5565cf9dc8cba3ddb886a5c9c1a472c204234
deb2cdd2ad831312694c1590d97bc5208b1b3fea
/Code/Code/Archive/Steering2017/Test/TeensyNeopixelTest/TeensyNeopixelTest.ino
db55a771eec298cf17a8bae44fae31c498cc1a16
[]
no_license
PelleSchwartz/ecocardoc
bbc8b0c9942149734a8c991ed5cabc5b7d178ae5
9d445d333f9e0247452d3c90dd561361901e54cb
refs/heads/master
2020-09-20T11:32:19.498046
2019-11-27T15:43:08
2019-11-27T15:43:08
224,463,328
1
1
null
null
null
null
UTF-8
C++
false
false
3,181
ino
TeensyNeopixelTest.ino
#include "FastLED.h" // How many leds in your strip? #define NUM_LEDS 16 #define LED 13 // For led chips like Neopixels, which have a data line, ground, and power, you just // need to define DATA_PIN. For led chipsets that are SPI based (four wires - data, clock, // ground, and power), like the LPD8806 define both DATA_PIN and CLOCK_PIN #define DATA_PIN 2 //#define CLOCK_PIN 13 // Define the array of leds CRGB leds[NUM_LEDS]; void setup() { Serial.begin(115200); pinMode(LED, OUTPUT); pinMode(DATA_PIN, OUTPUT); // Uncomment/edit one of the following lines for your leds arrangement. // FastLED.addLeds<TM1803, DATA_PIN, RGB>(leds, NUM_LEDS); // FastLED.addLeds<TM1804, DATA_PIN, RGB>(leds, NUM_LEDS); // FastLED.addLeds<TM1809, DATA_PIN, RGB>(leds, NUM_LEDS); // FastLED.addLeds<WS2811, DATA_PIN, RGB>(leds, NUM_LEDS); // FastLED.addLeds<WS2812, DATA_PIN, RGB>(leds, NUM_LEDS); // FastLED.addLeds<WS2812B, DATA_PIN, RGB>(leds, NUM_LEDS); FastLED.addLeds<NEOPIXEL, DATA_PIN>(leds, NUM_LEDS); // FastLED.addLeds<APA104, DATA_PIN, RGB>(leds, NUM_LEDS); // FastLED.addLeds<UCS1903, DATA_PIN, RGB>(leds, NUM_LEDS); // FastLED.addLeds<UCS1903B, DATA_PIN, RGB>(leds, NUM_LEDS); // FastLED.addLeds<GW6205, DATA_PIN, RGB>(leds, NUM_LEDS); // FastLED.addLeds<GW6205_400, DATA_PIN, RGB>(leds, NUM_LEDS); // FastLED.addLeds<WS2801, RGB>(leds, NUM_LEDS); // FastLED.addLeds<SM16716, RGB>(leds, NUM_LEDS); // FastLED.addLeds<LPD8806, RGB>(leds, NUM_LEDS); // FastLED.addLeds<P9813, RGB>(leds, NUM_LEDS); // FastLED.addLeds<APA102, RGB>(leds, NUM_LEDS); // FastLED.addLeds<DOTSTAR, RGB>(leds, NUM_LEDS); // FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RGB>(leds, NUM_LEDS); // FastLED.addLeds<SM16716, DATA_PIN, CLOCK_PIN, RGB>(leds, NUM_LEDS); // FastLED.addLeds<LPD8806, DATA_PIN, CLOCK_PIN, RGB>(leds, NUM_LEDS); // FastLED.addLeds<P9813, DATA_PIN, CLOCK_PIN, RGB>(leds, NUM_LEDS); // FastLED.addLeds<APA102, DATA_PIN, CLOCK_PIN, RGB>(leds, NUM_LEDS); // FastLED.addLeds<DOTSTAR, DATA_PIN, CLOCK_PIN, RGB>(leds, NUM_LEDS); } void loop() { // Turn the LED on, then pause /*leds[0] = CRGB::Red; FastLED.show(); digitalWrite(LED, HIGH); delay(500); // Now turn the LED off, then pause leds[0] = CRGB::Black; FastLED.show(); digitalWrite(LED, LOW); delay(500);*/ rainbowCycle(1); Serial.println("Test"); } void rainbowCycle(int SpeedDelay) { byte *c; uint16_t i, j; for(j=0; j<256*5; j++) { // 5 cycles of all colors on wheel for(i=0; i< NUM_LEDS; i++) { c=Wheel(((i * 256 / NUM_LEDS) + j) & 255); leds[i] = CRGB(*c, *(c+1), *(c+2)); } FastLED.show(); delay(SpeedDelay); } } byte * Wheel(byte WheelPos) { static byte c[3]; if(WheelPos < 85) { c[0]=WheelPos * 3; c[1]=255 - WheelPos * 3; c[2]=0; } else if(WheelPos < 170) { WheelPos -= 85; c[0]=255 - WheelPos * 3; c[1]=0; c[2]=WheelPos * 3; } else { WheelPos -= 170; c[0]=0; c[1]=WheelPos * 3; c[2]=255 - WheelPos * 3; } return c; }
434da0793c9b2395519f2b6f37f54d45a7af1a4f
19194c2f2c07ab3537f994acfbf6b34ea9b55ae7
/android-29/android/telephony/SubscriptionPlan_Builder.def.hpp
8ca89161d7d467458cd0f7924904ece96ad55a09
[ "GPL-3.0-only" ]
permissive
YJBeetle/QtAndroidAPI
e372609e9db0f96602da31b8417c9f5972315cae
ace3f0ea2678967393b5eb8e4edba7fa2ca6a50c
refs/heads/Qt6
2023-08-05T03:14:11.842336
2023-07-24T08:35:31
2023-07-24T08:35:31
249,539,770
19
4
Apache-2.0
2022-03-14T12:15:32
2020-03-23T20:42:54
C++
UTF-8
C++
false
false
1,296
hpp
SubscriptionPlan_Builder.def.hpp
#pragma once #include "../../JObject.hpp" namespace android::telephony { class SubscriptionPlan; } class JString; namespace java::time { class Period; } namespace java::time { class ZonedDateTime; } namespace android::telephony { class SubscriptionPlan_Builder : public JObject { public: // Fields // QJniObject forward template<typename ...Ts> explicit SubscriptionPlan_Builder(const char *className, const char *sig, Ts...agv) : JObject(className, sig, std::forward<Ts>(agv)...) {} SubscriptionPlan_Builder(QJniObject obj) : JObject(obj) {} // Constructors // Methods static android::telephony::SubscriptionPlan_Builder createNonrecurring(java::time::ZonedDateTime arg0, java::time::ZonedDateTime arg1); static android::telephony::SubscriptionPlan_Builder createRecurring(java::time::ZonedDateTime arg0, java::time::Period arg1); android::telephony::SubscriptionPlan build() const; android::telephony::SubscriptionPlan_Builder setDataLimit(jlong arg0, jint arg1) const; android::telephony::SubscriptionPlan_Builder setDataUsage(jlong arg0, jlong arg1) const; android::telephony::SubscriptionPlan_Builder setSummary(JString arg0) const; android::telephony::SubscriptionPlan_Builder setTitle(JString arg0) const; }; } // namespace android::telephony
f918797a1a5bf864df2b5dc2840ecdff23a129a0
20ad3fe7c319e8574cefdc7fda0fb1316789d50b
/Cpp_Practice2/Cpp_Practice2/BoundCheck.cpp
9cc56eae3813010e5887601b22c71df6b3c3f990
[]
no_license
Jsfumato/Cpp_NEXT
b8e107414b7bd6634965ac809913130c9b968ecb
ceaf23a78632d371a6cca3e1f655066e4bda0c07
refs/heads/master
2020-05-26T07:21:45.155332
2015-10-14T15:26:15
2015-10-14T15:26:15
42,442,965
0
0
null
null
null
null
UTF-8
C++
false
false
1,002
cpp
BoundCheck.cpp
// // BoundCheck.cpp // Cpp_Practice2 // // Created by Jsfumato on 2015. 9. 25.. // Copyright © 2015년 Jsfumato. All rights reserved. // #include <stdio.h> #include <iostream> #include "BoundCheck.h" using namespace std; //T* arr; //int arrlen; template <class T> BoundCheckArray<T>::BoundCheckArray(int len):arrlen(len) { arr = new T[len]; cout << "생성" << endl; }; template <class T> T& BoundCheckArray<T>::operator[](int idx) { if(idx < 0 || idx >= arrlen){ cout<<"Array Index Out of bound exception" << endl; exit(1); } return arr[idx]; }; template <class T> T BoundCheckArray<T>::operator[](int idx) const { if(idx < 0 || idx >= arrlen){ cout<<"Array Index Out of bound exception" << endl; exit(1); } return arr[idx]; }; template <class T> int BoundCheckArray<T>::GetArrayLen() const { return arrlen; }; template <class T> BoundCheckArray<T>::~BoundCheckArray() { delete arr; cout << "해제" << endl; };
5dc49eda480b7d7c1fbb3e1b0d72300bb6587ac6
9509a0fc361010b73e2d81d78ef0aaab59020d5d
/main.cpp
2424fb84e255bc444085b1572c670bb40d91f039
[]
no_license
gabe-le97/DNA-Quicksort
c99cfc263af730d94bd2ace178922ba81c08dc32
a6b23e0ce0c93017642f9fa7f6f62953d4c77b6b
refs/heads/master
2020-03-12T23:31:18.493317
2018-04-24T14:35:47
2018-04-24T14:35:47
130,867,786
0
0
null
null
null
null
UTF-8
C++
false
false
1,290
cpp
main.cpp
#include "dna.h" #include "swap.h" #include "sort.h" #include <iostream> #include <string> #include <vector> using namespace std; int main() { // making dna objects to hold headers and strings DNA::DNA dna1 = DNA::DNA(">The big dog", "GATTACA"); DNA::DNA dna2 = DNA::DNA(">Apple land", "ATTAATTAGC"); DNA::DNA dna3 = DNA::DNA(">Car show", "ATTAATAGCGGATN"); DNA::DNA dna4 = DNA::DNA(">Laptop sale", "NNAGG"); DNA::DNA dna5 = DNA::DNA(">Chicken dinner", "AT"); // pushing all the dna objects into a vector vector<DNA> v = {dna1, dna2, dna3, dna4, dna5}; // calling the sort function vector<DNA> comp = sort(v, seqLenLessThan); vector<DNA> comp2 = sort(v, headerLessThan); string sortedDNAbysequence; for(unsigned long i = 0; i <= comp.size()-1; i++){ DNA a = comp[i]; sortedDNAbysequence += a.getSequence(); sortedDNAbysequence += '\n'; } cout << endl << "Sorted by Sequence Length:" << endl << sortedDNAbysequence << endl; string sortedDNAbyheader; for(unsigned long j = 0; j <= comp2.size()-1; j++){ DNA a = comp2[j]; sortedDNAbyheader += a.getHeader(); sortedDNAbyheader += '\n'; } cout << "Sorted by Header Alphabetically:" << endl << sortedDNAbyheader << endl; return 0; }
84a7d5efd5df0b59d7c94530325bb85ed271d871
5722b41690ccff7280821d38a947f5a13efd0ad4
/L1/L1.2/19.cpp
b73b02564ce82f5a539169af7bfa5842ce43eb8a
[]
no_license
Cr1stalf/Cpp
b1af4c9c92589850884d55334e4749b8def0d136
4771e611e0b6796152f524c772d1726b4a700bb9
refs/heads/main
2023-08-16T08:41:33.352909
2021-10-14T15:10:47
2021-10-14T15:10:47
410,743,170
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
277
cpp
19.cpp
#include <iostream> using namespace std; // сумму n членов арифметической прогрессии, если известны a1, d, n int main() { int a1, d, n; cin >> a1 >> d >> n; cout << ((a1 + (a1 + (n - 1) * d)) / 2) * n; return 0; }
2f21d36839e46c61a8a8df703ff61b7d3e3855d4
9f0af772234018628409bee821aa10f826f74645
/Project/Object.h
693cd63a887458f6ec817f361864aef22a21f695
[]
no_license
almog01/Bomberman-Clone
b665dea05aa38adccf738295b5879d1e3c14fe3c
34a8aa391a6ed0f3a89269f8fc59cfa592c43cac
refs/heads/master
2020-05-20T15:32:29.550169
2019-05-09T12:51:07
2019-05-09T12:51:07
185,646,896
0
1
null
null
null
null
UTF-8
C++
false
false
1,408
h
Object.h
#pragma once #include <SFML/Graphics.hpp> class Player; class Guard; class Door; class Bomb; class Explosion; class Rock; class Present; class Wall; using sf::RenderTexture; using sf::RectangleShape; using sf::FloatRect; using sf::Vector2f; using sf::Texture; class Object { public: // c-tor Object(const Texture& texture, // Object's texture const Vector2f& pos, // Object's position float size); // Object's size // d-tor virtual ~Object(); // Draws the object on a panel void draw(RenderTexture & panel); // The panel to draw on. // Returns the bounding rectangle that blocks the object (global bounds) FloatRect getGlobalBounds() const; // Returns if the object is dead or not bool isDead() const; // Collision handler for each kind of object that exist in the game (for Double Dispatch) virtual void handleCollision(Object & obj) = 0; virtual void handleCollision(Player & player) = 0; virtual void handleCollision(Guard & guard) = 0; virtual void handleCollision(Door & door) = 0; virtual void handleCollision(Bomb & Bomb) = 0; virtual void handleCollision(Explosion & explosion) = 0; virtual void handleCollision(Rock & rock) = 0; virtual void handleCollision(Present & present) = 0; virtual void handleCollision(Wall & wall) = 0; protected: RectangleShape m_object; // The object's shape bool m_isDead; // Boolean that tells if the object is dead or not };
f63391601c6a4822f9df503ef6dfb271df56f171
4cb3210d50904c8338e818817e8b9b9a3677db80
/src/http/request/request.cc
7deca2c75ffa58b56f055f8f5a6c05a9ac818774
[]
no_license
LanghaoZ/rubber-duck
7f4843594b738835bfb2eca50c06e7bbe5f3f0e4
a1944edb031e4275a0f88587c24dcfbf7df05170
refs/heads/master
2022-12-31T20:54:57.185836
2020-05-19T05:51:07
2020-05-19T05:51:07
307,592,373
0
0
null
null
null
null
UTF-8
C++
false
false
900
cc
request.cc
#include "http/request/request.h" namespace http { namespace request { std::string request_to_string(const request& req) { std::string res = request_to_digest(req); res += "\r\n"; for (auto& it : req.headers) { res += it.first; res += ": "; res += it.second; res += "\r\n"; } res += "\r\n"; res += req.body; return res; } std::string request_to_digest(const request& req) { std::string res = ""; res += method_type_to_string(req.method); res += " "; res += req.uri; res += " "; res += req.version; return res; } size_t get_request_content_length(const request& req) { int content_length = 0; auto it = req.headers.find(header::field_name_type_to_string(header::content_length)); if (it != req.headers.end()) { content_length = std::stoi(it->second); } return content_length; } } // namespace request } // namespace http
5bc453428b51e9cbd125074abe50cd1553f0a055
14b42bb249b41f764d000b6ac01d3e1ab3dc26e4
/SetupJetTree.h
be0b7dfe98800b0fe5ff0c884922f93b62702e11
[]
no_license
CmsHI/HiForestAnalysis
00395fdbf6979bc686c9c20d1e202d7e2ee0900c
69983c08269eaae44a329a67bb4a228d4c1b8c3d
refs/heads/master
2016-09-06T16:51:11.696812
2015-11-23T10:27:11
2015-11-23T10:27:11
11,662,838
2
2
null
2015-06-10T11:36:15
2013-07-25T14:39:16
C++
UTF-8
C++
false
false
13,642
h
SetupJetTree.h
////////////////////////////////////////////////////////// // This class has been automatically generated on // Wed Jun 20 12:21:51 2012 by ROOT version 5.27/06b // from TTree t/akPu3PFpatJets Jet Analysis Tree // found on file: ../Pythia30_HydjetDrum_mix01_HiForest2_v19.root ////////////////////////////////////////////////////////// #include "commonSetup.h" #include <iostream> #include <TROOT.h> #include <TChain.h> #include <TFile.h> #include <TTree.h> #include <TBranch.h> using namespace std; class Jets { public : Jets(){}; ~Jets(){}; // Declaration of leaf types Int_t evt; Float_t b; Int_t nref; Float_t rawpt[maxJets]; //[nref] Float_t jtpt[maxJets]; //[nref] Float_t jteta[maxJets]; //[nref] Float_t jty[maxJets]; //[nref] Float_t jtphi[maxJets]; //[nref] Float_t jtpu[maxJets]; //[nref] Float_t jtm[maxJets]; //[nref] Float_t discr_fr01[maxJets]; //[nref] Float_t trackMax[maxJets]; //[nref] Float_t trackSum[maxJets]; //[nref] Int_t trackN[maxJets]; //[nref] Float_t trackHardSum[maxJets]; //[nref] Int_t trackHardN[maxJets]; //[nref] Float_t chargedMax[maxJets]; //[nref] Float_t chargedSum[maxJets]; //[nref] Int_t chargedN[maxJets]; //[nref] Float_t chargedHardSum[maxJets]; //[nref] Int_t chargedHardN[maxJets]; //[nref] Float_t photonMax[maxJets]; //[nref] Float_t photonSum[maxJets]; //[nref] Int_t photonN[maxJets]; //[nref] Float_t photonHardSum[maxJets]; //[nref] Int_t photonHardN[maxJets]; //[nref] Float_t neutralMax[maxJets]; //[nref] Float_t neutralSum[maxJets]; //[nref] Int_t neutralN[maxJets]; //[nref] Float_t hcalSum[maxJets]; //[nref] Float_t ecalSum[maxJets]; //[nref] Float_t eMax[maxJets]; //[nref] Float_t eSum[maxJets]; //[nref] Int_t eN[maxJets]; //[nref] Float_t muMax[maxJets]; //[nref] Float_t muSum[maxJets]; //[nref] Int_t muN[maxJets]; //[nref] Float_t matchedPt[maxJets]; //[nref] Float_t matchedR[maxJets]; //[nref] Int_t beamId1; Int_t beamId2; Float_t pthat; Float_t refpt[maxJets]; //[nref] Float_t refeta[maxJets]; //[nref] Float_t refy[maxJets]; //[nref] Float_t refphi[maxJets]; //[nref] Float_t refdphijt[maxJets]; //[nref] Float_t refdrjt[maxJets]; //[nref] Float_t refparton_pt[maxJets]; //[nref] Int_t refparton_flavor[maxJets]; //[nref] Int_t refparton_flavorForB[maxJets]; //[nref] Float_t genChargedSum[maxJets]; //[nref] Float_t genHardSum[maxJets]; //[nref] Float_t signalChargedSum[maxJets]; //[nref] Float_t signalHardSum[maxJets]; //[nref] Int_t subid[maxJets]; //[nref] Int_t ngen; Int_t genmatchindex[maxGenJets]; //[ngen] Float_t genpt[maxGenJets]; //[ngen] Float_t geneta[maxGenJets]; //[ngen] Float_t geny[maxGenJets]; //[ngen] Float_t genphi[maxGenJets]; //[ngen] Float_t gendphijt[maxGenJets]; //[ngen] Float_t gendrjt[maxGenJets]; //[ngen] Int_t gensubid[maxGenJets]; //[ngen] Float_t smpt[maxJets]; //[nref] Float_t fr01Chg[maxJets]; //[nref] Float_t fr01EM[maxJets]; //[nref] Float_t fr01[maxJets]; //[nref] // List of branches TBranch *b_evt; //! TBranch *b_b; //! TBranch *b_nref; //! TBranch *b_rawpt; //! TBranch *b_jtpt; //! TBranch *b_jteta; //! TBranch *b_jty; //! TBranch *b_jtphi; //! TBranch *b_jtpu; //! TBranch *b_jtm; //! TBranch *b_discr_fr01; //! TBranch *b_trackMax; //! TBranch *b_trackSum; //! TBranch *b_trackN; //! TBranch *b_trackHardSum; //! TBranch *b_trackHardN; //! TBranch *b_chargedMax; //! TBranch *b_chargedSum; //! TBranch *b_chargedN; //! TBranch *b_chargedHardSum; //! TBranch *b_chargedHardN; //! TBranch *b_photonMax; //! TBranch *b_photonSum; //! TBranch *b_photonN; //! TBranch *b_photonHardSum; //! TBranch *b_photonHardN; //! TBranch *b_neutralMax; //! TBranch *b_neutralSum; //! TBranch *b_neutralN; //! TBranch *b_hcalSum; //! TBranch *b_ecalSum; //! TBranch *b_eMax; //! TBranch *b_eSum; //! TBranch *b_eN; //! TBranch *b_muMax; //! TBranch *b_muSum; //! TBranch *b_muN; //! TBranch *b_matchedPt; //! TBranch *b_matchedR; //! TBranch *b_beamId1; //! TBranch *b_beamId2; //! TBranch *b_pthat; //! TBranch *b_refpt; //! TBranch *b_refeta; //! TBranch *b_refy; //! TBranch *b_refphi; //! TBranch *b_refdphijt; //! TBranch *b_refdrjt; //! TBranch *b_refparton_pt; //! TBranch *b_refparton_flavor; //! TBranch *b_refparton_flavorForB; //! TBranch *b_genChargedSum; //! TBranch *b_genHardSum; //! TBranch *b_signalChargedSum; //! TBranch *b_signalHardSum; //! TBranch *b_subid; //! TBranch *b_ngen; //! TBranch *b_genmatchindex; //! TBranch *b_genpt; //! TBranch *b_geneta; //! TBranch *b_geny; //! TBranch *b_genphi; //! TBranch *b_gendphijt; //! TBranch *b_gendrjt; //! TBranch *b_gensubid; //! TBranch *b_smpt; //! TBranch *b_fr01Chg; //! TBranch *b_fr01EM; //! TBranch *b_fr01; //! }; void setupJetTree(TTree *t,Jets &tJets,bool doCheck = 1) { // Set branch addresses and branch pointers if (t->GetBranch("evt")) t->SetBranchAddress("evt", &tJets.evt, &tJets.b_evt); if (t->GetBranch("b")) t->SetBranchAddress("b", &tJets.b, &tJets.b_b); if (t->GetBranch("nref")) t->SetBranchAddress("nref", &tJets.nref, &tJets.b_nref); if (t->GetBranch("rawpt")) t->SetBranchAddress("rawpt", tJets.rawpt, &tJets.b_rawpt); if (t->GetBranch("jtpt")) t->SetBranchAddress("jtpt", tJets.jtpt, &tJets.b_jtpt); if (t->GetBranch("jteta")) t->SetBranchAddress("jteta", tJets.jteta, &tJets.b_jteta); if (t->GetBranch("jty")) t->SetBranchAddress("jty", tJets.jty, &tJets.b_jty); if (t->GetBranch("jtphi")) t->SetBranchAddress("jtphi", tJets.jtphi, &tJets.b_jtphi); if (t->GetBranch("jtpu")) t->SetBranchAddress("jtpu", tJets.jtpu, &tJets.b_jtpu); if (t->GetBranch("jtm")) t->SetBranchAddress("jtm", tJets.jtm, &tJets.b_jtm); if (t->GetBranch("discr_fr01")) t->SetBranchAddress("discr_fr01", tJets.discr_fr01, &tJets.b_discr_fr01); if (t->GetBranch("trackMax")) t->SetBranchAddress("trackMax", tJets.trackMax, &tJets.b_trackMax); if (t->GetBranch("trackSum")) t->SetBranchAddress("trackSum", tJets.trackSum, &tJets.b_trackSum); if (t->GetBranch("trackN")) t->SetBranchAddress("trackN", tJets.trackN, &tJets.b_trackN); if (t->GetBranch("trackHardSum")) t->SetBranchAddress("trackHardSum", tJets.trackHardSum, &tJets.b_trackHardSum); if (t->GetBranch("trackHardN")) t->SetBranchAddress("trackHardN", tJets.trackHardN, &tJets.b_trackHardN); if (t->GetBranch("chargedMax")) t->SetBranchAddress("chargedMax", tJets.chargedMax, &tJets.b_chargedMax); if (t->GetBranch("chargedSum")) t->SetBranchAddress("chargedSum", tJets.chargedSum, &tJets.b_chargedSum); if (t->GetBranch("chargedN")) t->SetBranchAddress("chargedN", tJets.chargedN, &tJets.b_chargedN); if (t->GetBranch("chargedHardSum")) t->SetBranchAddress("chargedHardSum", tJets.chargedHardSum, &tJets.b_chargedHardSum); if (t->GetBranch("chargedHardN")) t->SetBranchAddress("chargedHardN", tJets.chargedHardN, &tJets.b_chargedHardN); if (t->GetBranch("photonMax")) t->SetBranchAddress("photonMax", tJets.photonMax, &tJets.b_photonMax); if (t->GetBranch("photonSum")) t->SetBranchAddress("photonSum", tJets.photonSum, &tJets.b_photonSum); if (t->GetBranch("photonN")) t->SetBranchAddress("photonN", tJets.photonN, &tJets.b_photonN); if (t->GetBranch("photonHardSum")) t->SetBranchAddress("photonHardSum", tJets.photonHardSum, &tJets.b_photonHardSum); if (t->GetBranch("photonHardN")) t->SetBranchAddress("photonHardN", tJets.photonHardN, &tJets.b_photonHardN); if (t->GetBranch("neutralMax")) t->SetBranchAddress("neutralMax", tJets.neutralMax, &tJets.b_neutralMax); if (t->GetBranch("neutralSum")) t->SetBranchAddress("neutralSum", tJets.neutralSum, &tJets.b_neutralSum); if (t->GetBranch("neutralN")) t->SetBranchAddress("neutralN", tJets.neutralN, &tJets.b_neutralN); if (t->GetBranch("hcalSum")) t->SetBranchAddress("hcalSum", tJets.hcalSum, &tJets.b_hcalSum); if (t->GetBranch("ecalSum")) t->SetBranchAddress("ecalSum", tJets.ecalSum, &tJets.b_ecalSum); if (t->GetBranch("eMax")) t->SetBranchAddress("eMax", tJets.eMax, &tJets.b_eMax); if (t->GetBranch("eSum")) t->SetBranchAddress("eSum", tJets.eSum, &tJets.b_eSum); if (t->GetBranch("eN")) t->SetBranchAddress("eN", tJets.eN, &tJets.b_eN); if (t->GetBranch("muMax")) t->SetBranchAddress("muMax", tJets.muMax, &tJets.b_muMax); if (t->GetBranch("muSum")) t->SetBranchAddress("muSum", tJets.muSum, &tJets.b_muSum); if (t->GetBranch("muN")) t->SetBranchAddress("muN", tJets.muN, &tJets.b_muN); if (t->GetBranch("matchedPt")) t->SetBranchAddress("matchedPt", tJets.matchedPt, &tJets.b_matchedPt); if (t->GetBranch("matchedR")) t->SetBranchAddress("matchedR", tJets.matchedR, &tJets.b_matchedR); if (t->GetBranch("beamId1")) t->SetBranchAddress("beamId1", &tJets.beamId1, &tJets.b_beamId1); if (t->GetBranch("beamId2")) t->SetBranchAddress("beamId2", &tJets.beamId2, &tJets.b_beamId2); if (t->GetBranch("pthat")) t->SetBranchAddress("pthat", &tJets.pthat, &tJets.b_pthat); if (t->GetBranch("refpt")) t->SetBranchAddress("refpt", tJets.refpt, &tJets.b_refpt); if (t->GetBranch("refeta")) t->SetBranchAddress("refeta", tJets.refeta, &tJets.b_refeta); if (t->GetBranch("refy")) t->SetBranchAddress("refy", tJets.refy, &tJets.b_refy); if (t->GetBranch("refphi")) t->SetBranchAddress("refphi", tJets.refphi, &tJets.b_refphi); if (t->GetBranch("refdphijt")) t->SetBranchAddress("refdphijt", tJets.refdphijt, &tJets.b_refdphijt); if (t->GetBranch("refdrjt")) t->SetBranchAddress("refdrjt", tJets.refdrjt, &tJets.b_refdrjt); if (t->GetBranch("refparton_pt")) t->SetBranchAddress("refparton_pt", tJets.refparton_pt, &tJets.b_refparton_pt); if (t->GetBranch("refparton_flavor")) t->SetBranchAddress("refparton_flavor", tJets.refparton_flavor, &tJets.b_refparton_flavor); if (t->GetBranch("refparton_flavorForB")) t->SetBranchAddress("refparton_flavorForB", tJets.refparton_flavorForB, &tJets.b_refparton_flavorForB); if (t->GetBranch("genChargedSum")) t->SetBranchAddress("genChargedSum", tJets.genChargedSum, &tJets.b_genChargedSum); if (t->GetBranch("genHardSum")) t->SetBranchAddress("genHardSum", tJets.genHardSum, &tJets.b_genHardSum); if (t->GetBranch("signalChargedSum")) t->SetBranchAddress("signalChargedSum", tJets.signalChargedSum, &tJets.b_signalChargedSum); if (t->GetBranch("signalHardSum")) t->SetBranchAddress("signalHardSum", tJets.signalHardSum, &tJets.b_signalHardSum); if (t->GetBranch("subid")) t->SetBranchAddress("subid", tJets.subid, &tJets.b_subid); if (t->GetBranch("ngen")) t->SetBranchAddress("ngen", &tJets.ngen, &tJets.b_ngen); if (t->GetBranch("genmatchindex")) t->SetBranchAddress("genmatchindex", tJets.genmatchindex, &tJets.b_genmatchindex); if (t->GetBranch("genpt")) t->SetBranchAddress("genpt", tJets.genpt, &tJets.b_genpt); if (t->GetBranch("geneta")) t->SetBranchAddress("geneta", tJets.geneta, &tJets.b_geneta); if (t->GetBranch("geny")) t->SetBranchAddress("geny", tJets.geny, &tJets.b_geny); if (t->GetBranch("genphi")) t->SetBranchAddress("genphi", tJets.genphi, &tJets.b_genphi); if (t->GetBranch("gendphijt")) t->SetBranchAddress("gendphijt", tJets.gendphijt, &tJets.b_gendphijt); if (t->GetBranch("gendrjt")) t->SetBranchAddress("gendrjt", tJets.gendrjt, &tJets.b_gendrjt); if (t->GetBranch("gensubid")) t->SetBranchAddress("gensubid", tJets.gensubid, &tJets.b_gensubid); if (t->GetBranch("smpt")) t->SetBranchAddress("smpt", tJets.smpt, &tJets.b_smpt); if (t->GetBranch("fr01Chg")) t->SetBranchAddress("fr01Chg", tJets.fr01Chg, &tJets.b_fr01Chg); if (t->GetBranch("fr01EM")) t->SetBranchAddress("fr01EM", tJets.fr01EM, &tJets.b_fr01EM); if (t->GetBranch("fr01")) t->SetBranchAddress("fr01", tJets.fr01, &tJets.b_fr01); if (doCheck) { if (t->GetMaximum("nref")>maxJets){ cout <<"FATAL ERROR: Arrary size of nref too small!!! "<<t->GetMaximum("nref")<<endl; exit(0);} if (t->GetMaximum("ngen")>maxGenJets){ cout <<"FATAL ERROR: Arrary size of ngen too small!!! "<<t->GetMaximum("ngen")<<endl; exit(0);} } }
163032c9e6da67b7b856394d915ad08debbca27e
1408929beb0a5733b6a83668984ab0f8521979c2
/Codeforces/Global Round 5/4.cpp
6e9bfd8b771f1f3db01ce7515b52a9a86965c87a
[]
no_license
utkarshsingh99/Competitive-Coding
44eade011bbc7f3b12858c17d480a5e8746de9d8
8951cfa7b8ee2c003a37163c0daab7e1b7c63da1
refs/heads/master
2022-12-31T03:53:52.241988
2020-10-20T19:33:17
2020-10-20T19:33:17
119,350,372
1
0
null
null
null
null
UTF-8
C++
false
false
1,186
cpp
4.cpp
#include <bits/stdc++.h> #define loop(i,a,b) for(int i=a;i<b;i++) #define loopr(i,a,b) for(int i=a;i>=b;i--) #define loops(i,a,b,step) for(int i=a;i<b;i+=step) #define looprs(i,a,b,step) for(int i=a;i>=b;i-=step) #define FILE_READ_IN freopen("input.txt","r",stdin); #define FILE_READ_OUT freopen("output.txt","w",stdout); #define ull unsigned long long int #define ll long long int #define FAST ios_base::sync_with_stdio(false);cin.tie();cout.tie(); using namespace std; int main() { FAST #ifndef ONLINE_JUDGE // FILE_READ_IN // FILE_READ_OUT #endif int n; cin>>n; ll a[n]; loop(i, 0, n) { cin>>a[i]; } loop(i, 0, n) { float x = (float) a[i]/ (float) 2; int count = 1, j = i+1, loopss = 0; if(j == n) j = 0; ll high = a[i]; while(1) { if(j == i) loopss++; if(a[j] < x) { break; } else { count++; high = max(high, a[j]); x = (float) high / (float) 2; } if(j < n-1) j++; else j = 0; if(loopss > 2) { break; } } if(loopss<= 2) cout<<count<<" "; else cout<<"-1 "; } }
7ba69b928fa5c3b2cde2704df9c85cebac8ace59
e65a4dbfbfb0e54e59787ba7741efee12f7687f3
/editors/fxite/files/patch-src_tagread.cpp
27f04d9f001e7b03359875aca53a0671460b64d4
[ "BSD-2-Clause" ]
permissive
freebsd/freebsd-ports
86f2e89d43913412c4f6b2be3e255bc0945eac12
605a2983f245ac63f5420e023e7dce56898ad801
refs/heads/main
2023-08-30T21:46:28.720924
2023-08-30T19:33:44
2023-08-30T19:33:44
1,803,961
916
918
NOASSERTION
2023-09-08T04:06:26
2011-05-26T11:15:35
null
UTF-8
C++
false
false
1,389
cpp
patch-src_tagread.cpp
--- src/tagread.cpp.orig 2013-10-03 09:22:51 UTC +++ src/tagread.cpp @@ -532,11 +532,11 @@ void AutoCompleter::Show(SciDoc*sci) if (no()&&sci->PrefixAtPos(part)) { FXint partlen=part.length(); FXint len=0; // save lots of reallocs by calculating overall length first - for (FXint i=first(); i<=last(); i=next(i)) { - const char*ctag=key(i); - int taglen=strlen(ctag); - if ((taglen>partlen)&&(strncmp(part.text(),ctag,partlen)==0)) { - replace(ctag,(void*)((FXival)1)); // flag it for inclusion + for (FXint i=0; i<TotalSlotsInDict(this); ++i) { + FXString ctag=key(i); + int taglen=ctag.length(); + if ((taglen>partlen)&&(compare(part,ctag,partlen)==0)) { + ReplaceInDict(this,ctag.text(),(void*)((FXival)1)); // flag it for inclusion len+=taglen+1; // count its length } } @@ -544,10 +544,10 @@ void AutoCompleter::Show(SciDoc*sci) FXString list=FXString::null; list.length(len); list.trunc(0); - for (FXint i=first(); i<=last(); i=next(i)) { + for (FXint i=0; i<TotalSlotsInDict(this); ++i) { if (data(i)) { - const char*ctag=key(i); - replace(ctag,NULL); // reset our flag + FXString ctag=key(i); + ReplaceInDict(this,ctag.text(),NULL); // reset our flag list.append(ctag); list.append(' '); }
7651d495f04cdae665bb6f04ce265679081a8935
94237aa3ab6a23e9493d5ec48d190beffc076722
/H4/Polygon_Fill/HR.h
05fccee40e2dec70690c08d228b16a85b3915ca7
[]
no_license
Mctashuo/Computer_graphics_Grade3
d7083106d41954829822c7eb0fe9b0712b0eec4b
f921079e65c57a2ee5f70b806085d84a5dda3e44
refs/heads/master
2021-03-19T11:35:27.602067
2017-11-27T02:18:20
2017-11-27T02:18:20
109,634,522
0
0
null
null
null
null
UTF-8
C++
false
false
599
h
HR.h
// HR.h: interface for the CHR class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_HR_H__0A75AF57_55A9_4988_A1BC_94B4B5D12092__INCLUDED_) #define AFX_HR_H__0A75AF57_55A9_4988_A1BC_94B4B5D12092__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include "Fill.h" class CHR { public: CHR(); virtual ~CHR(); virtual void ReadPoint(); virtual void DrawRect(CDC *,CPoint *); virtual void FillRect(CDC *pDC,CPoint *P); public: CPoint P1[4],P2[4]; }; #endif // !defined(AFX_HR_H__0A75AF57_55A9_4988_A1BC_94B4B5D12092__INCLUDED_)
7cefedd31d135fb018c221825a6bfed3ab1dd084
8b2398a1e7adff513b25ae42d5b44831983f3001
/3DCharacterAnimation/source/AnimationLL.cpp
229fdd85f0144de6982115d5a0176ee87eb524d3
[]
no_license
y2jinc/study
92cbe325ee7a43f673bd00820a9288bda4b135ac
7257509e5a0b83975399c3da3ab041c3a7564b23
refs/heads/master
2021-01-21T04:39:24.166876
2020-08-23T05:55:16
2020-08-23T05:55:16
38,871,349
0
0
null
null
null
null
UTF-8
C++
false
false
4,688
cpp
AnimationLL.cpp
// AnimationLL.cpp written by david paull #include "stdafx.h" #include "resource.h" #include "globals.h" #include <assert.h> #include <stdio.h> #include "Mesh.h" #include "Bone.h" extern struct AnimationLL* pCurrentlySelectedAnimation; struct AnimationLL* AnimationLL_Insert( unsigned long SortKey, char* pName, struct AnimationLL*& pAnimationHeadIn) { struct AnimationLL* pAnimationHead = pAnimationHeadIn; struct AnimationLL* pInsertMe = NULL; struct AnimationLL* pThis = NULL; struct AnimationLL* pNext = NULL; /////////////////////////////////////// //// Initialize Linked List Packet //// /////////////////////////////////////// pInsertMe = (struct AnimationLL *)calloc(1,sizeof(struct AnimationLL)); sprintf(pInsertMe->pName,"%s",pName); pInsertMe->SortKey = SortKey; memset(&pInsertMe->SkeletonRootNode,0,sizeof(struct BoneH)); sprintf(pInsertMe->SkeletonRootNode.pName,"%s Skeleton Root Node",pName); // Identity(pInsertMe->SkeletonRootNode.pRotationMatrix); // Identity(pInsertMe->SkeletonRootNode.pTranslationMatrix); // Identity(pInsertMe->SkeletonRootNode.pOriginalRotationMatrix); // Identity(pInsertMe->SkeletonRootNode.pOriginalPositionMatrix); // Identity(pInsertMe->SkeletonRootNode.pCombinedMatrix); // Identity(pInsertMe->SkeletonRootNode.pRelativeMatrix); // Identity(pInsertMe->SkeletonRootNode.pAbsoluteMatrix); pInsertMe->SkeletonRootNode.flags = BONE_ROOTBONE; //////////////////////////////////////////////////////////// //// Is This The Absolute First Item Added to the list? //// //////////////////////////////////////////////////////////// if(pAnimationHead == NULL) { pAnimationHeadIn = pInsertMe; return pInsertMe; } //////////////////////////////// //// Do We Have A New Head? //// //////////////////////////////// if(pInsertMe->SortKey <= pAnimationHead->SortKey) { pInsertMe->pNext = pAnimationHead; pAnimationHeadIn = pInsertMe; return pInsertMe; } ///////////////////////////////////// //// Search For Insert Position. //// ///////////////////////////////////// pThis = pAnimationHead; while( pThis->pNext && (pInsertMe->SortKey > pThis->pNext->SortKey)) { pThis = pThis->pNext; } pNext = pThis->pNext; pThis->pNext = pInsertMe; pInsertMe->pNext = pNext; return pInsertMe; } void AnimationLL_Remove(char* pName, struct AnimationLL*& pAnimationHeadIn) { struct AnimationLL* pAnimationHead = pAnimationHeadIn; struct AnimationLL* pRemoveMe = NULL; struct AnimationLL* pThis = NULL; struct AnimationLL* pNext = NULL; struct AnimationLL* pLast = NULL; pThis = pAnimationHead; pLast = pAnimationHead; while(pThis!=NULL) { //if(pThis->UniqueID == UniqueID) if(strcmp(pThis->pName,pName)==0) {//remove this item pRemoveMe = pThis; pNext = pRemoveMe->pNext; pThis = pThis->pNext;//update this now before we delete mem pointed to by pThis /////////////////////////////////// //// Are We Removing The Head? //// /////////////////////////////////// if(pRemoveMe == pAnimationHead) {//We are removing the head if(pNext==NULL) {//we are removing the last pAnimationHeadIn = NULL; } else {//then pNext is new head pAnimationHeadIn = pNext; } } else {//We are removing a normal item pLast->pNext = pNext; } //free all Animations. //KeyFrameLL_RemoveALL(pRemoveMe->pKeyFrameHead); Bone_RemoveALL(&pRemoveMe->SkeletonRootNode); //MainMenu MainMenu if(pCurrentlySelectedAnimation==pRemoveMe) {//if we delete current Animation, clear all pointers to the data pCurrentlySelectedAnimation = NULL; } free(pRemoveMe); } else {//check next item pLast = pThis; pThis = pThis->pNext; } } } void AnimationLL_RemoveALL(struct AnimationLL*& pAnimationHeadIn) { struct AnimationLL* pRemoveMe = NULL; struct AnimationLL* pThis = NULL; pThis = pAnimationHeadIn; while(pThis!=NULL) { pRemoveMe = pThis; pThis = pThis->pNext; //free all Animations. // KeyFrameLL_RemoveALL(pRemoveMe->pKeyFrameHead); Bone_RemoveALL(&pRemoveMe->SkeletonRootNode); //MainMenu MainMenu if(pCurrentlySelectedAnimation==pRemoveMe) {//if we delete current Animation, clear all pointers to the data pCurrentlySelectedAnimation = NULL; } free(pRemoveMe); } pAnimationHeadIn = NULL; } void AnimationLL_Sort(struct AnimationLL*& pAnimationHeadIn) { struct AnimationLL* pNewAnimationHead = NULL; struct AnimationLL* pThis = NULL; pThis = pAnimationHeadIn; while(pThis!=NULL) { AnimationLL_Insert( pThis->SortKey, pThis->pName, pNewAnimationHead); pThis = pThis->pNext; } pAnimationHeadIn = pNewAnimationHead; }
d4f8528da47f2a25dbfe2a4a470978a47ad1c32a
8635195410bd90a3dc6acaba098c0610d9f6edc1
/PROYECTO_HASSE_DISCRETA/MyForm1.h
1b58fcfda5825491d08eee24a547865705d8dd77
[]
no_license
TheAnderliu/PROYECTO_HASSE_DISCRETA
40d811d7810957d796ab1e2b286cdfe389aa41b3
2d585cc01a7f70ba27b9bf0b9ec1167039a3008f
refs/heads/master
2020-04-05T08:49:11.779486
2018-11-08T15:53:01
2018-11-08T15:53:01
156,731,171
0
0
null
null
null
null
ISO-8859-1
C++
false
false
16,308
h
MyForm1.h
#pragma once #include"MyForm2.h" #include"Sistema.h" #include <string> using namespace std; namespace PROYECTO_HASSE_DISCRETA { using namespace System; using namespace System::ComponentModel; using namespace System::Collections; using namespace System::Windows::Forms; using namespace System::Data; using namespace System::Drawing; /// <summary> /// Resumen de MyForm1 /// </summary> public ref class MyForm1 : public System::Windows::Forms::Form { private: CSistema *objSistema; public: MyForm1(void) { InitializeComponent(); // //TODO: agregar código de constructor aquí // objSistema = new CSistema(); } protected: /// <summary> /// Limpiar los recursos que se estén utilizando. /// </summary> ~MyForm1() { if (components) { delete components; } } private: System::Windows::Forms::Label^ label1; protected: private: System::Windows::Forms::Label^ label2; private: System::Windows::Forms::Label^ label3; private: System::Windows::Forms::Label^ label4; private: System::Windows::Forms::TextBox^ txtPT; private: System::Windows::Forms::TextBox^ txtMI; private: System::Windows::Forms::TextBox^ txtVP; private: System::Windows::Forms::TextBox^ txtIA; private: System::Windows::Forms::Label^ label5; private: System::Windows::Forms::TextBox^ txtNombre; private: System::Windows::Forms::Button^ btnRegistrar; private: System::Windows::Forms::Button^ btnHasse; private: System::Windows::Forms::GroupBox^ groupBox1; private: System::Windows::Forms::DataGridView^ dgvProyectos; private: System::Windows::Forms::DataGridViewTextBoxColumn^ Proyecto; private: System::Windows::Forms::DataGridViewTextBoxColumn^ Puesto_de_Trabajo; private: System::Windows::Forms::DataGridViewTextBoxColumn^ Monto_de_Inversion; private: System::Windows::Forms::DataGridViewTextBoxColumn^ Volumen_de_Produccion; private: System::Windows::Forms::DataGridViewTextBoxColumn^ Cantidad_de_IA; private: System::Windows::Forms::Button^ btnOrdenarProyectos; private: System::Windows::Forms::ListBox^ lstbOrdenTopo; private: System::Windows::Forms::GroupBox^ groupBox2; private: System::Windows::Forms::Button^ btnLimpiar; private: /// <summary> /// Variable del diseñador requerida. /// </summary> System::ComponentModel::Container ^components; #pragma region Windows Form Designer generated code /// <summary> /// Método necesario para admitir el Diseñador. No se puede modificar /// el contenido del método con el editor de código. /// </summary> void InitializeComponent(void) { this->label1 = (gcnew System::Windows::Forms::Label()); this->label2 = (gcnew System::Windows::Forms::Label()); this->label3 = (gcnew System::Windows::Forms::Label()); this->label4 = (gcnew System::Windows::Forms::Label()); this->txtPT = (gcnew System::Windows::Forms::TextBox()); this->txtMI = (gcnew System::Windows::Forms::TextBox()); this->txtVP = (gcnew System::Windows::Forms::TextBox()); this->txtIA = (gcnew System::Windows::Forms::TextBox()); this->label5 = (gcnew System::Windows::Forms::Label()); this->txtNombre = (gcnew System::Windows::Forms::TextBox()); this->btnRegistrar = (gcnew System::Windows::Forms::Button()); this->btnHasse = (gcnew System::Windows::Forms::Button()); this->groupBox1 = (gcnew System::Windows::Forms::GroupBox()); this->btnOrdenarProyectos = (gcnew System::Windows::Forms::Button()); this->dgvProyectos = (gcnew System::Windows::Forms::DataGridView()); this->Proyecto = (gcnew System::Windows::Forms::DataGridViewTextBoxColumn()); this->Puesto_de_Trabajo = (gcnew System::Windows::Forms::DataGridViewTextBoxColumn()); this->Monto_de_Inversion = (gcnew System::Windows::Forms::DataGridViewTextBoxColumn()); this->Volumen_de_Produccion = (gcnew System::Windows::Forms::DataGridViewTextBoxColumn()); this->Cantidad_de_IA = (gcnew System::Windows::Forms::DataGridViewTextBoxColumn()); this->lstbOrdenTopo = (gcnew System::Windows::Forms::ListBox()); this->groupBox2 = (gcnew System::Windows::Forms::GroupBox()); this->btnLimpiar = (gcnew System::Windows::Forms::Button()); this->groupBox1->SuspendLayout(); (cli::safe_cast<System::ComponentModel::ISupportInitialize^>(this->dgvProyectos))->BeginInit(); this->groupBox2->SuspendLayout(); this->SuspendLayout(); // // label1 // this->label1->AutoSize = true; this->label1->Location = System::Drawing::Point(20, 82); this->label1->Name = L"label1"; this->label1->Size = System::Drawing::Size(202, 16); this->label1->TabIndex = 0; this->label1->Text = L"Cantidad de puestos de trabajo: "; // // label2 // this->label2->AutoSize = true; this->label2->Location = System::Drawing::Point(20, 134); this->label2->Name = L"label2"; this->label2->Size = System::Drawing::Size(127, 16); this->label2->TabIndex = 1; this->label2->Text = L"Monto de inversión: "; // // label3 // this->label3->AutoSize = true; this->label3->Location = System::Drawing::Point(20, 183); this->label3->Name = L"label3"; this->label3->Size = System::Drawing::Size(156, 16); this->label3->TabIndex = 2; this->label3->Text = L"Volumen de producción: "; // // label4 // this->label4->AutoSize = true; this->label4->Location = System::Drawing::Point(20, 238); this->label4->Name = L"label4"; this->label4->Size = System::Drawing::Size(200, 16); this->label4->TabIndex = 3; this->label4->Text = L"Cantidad de impacto ambiental: "; // // txtPT // this->txtPT->Location = System::Drawing::Point(218, 82); this->txtPT->Name = L"txtPT"; this->txtPT->Size = System::Drawing::Size(100, 22); this->txtPT->TabIndex = 4; // // txtMI // this->txtMI->Location = System::Drawing::Point(218, 134); this->txtMI->Name = L"txtMI"; this->txtMI->Size = System::Drawing::Size(100, 22); this->txtMI->TabIndex = 5; // // txtVP // this->txtVP->Location = System::Drawing::Point(218, 180); this->txtVP->Name = L"txtVP"; this->txtVP->Size = System::Drawing::Size(100, 22); this->txtVP->TabIndex = 6; // // txtIA // this->txtIA->Location = System::Drawing::Point(218, 231); this->txtIA->Name = L"txtIA"; this->txtIA->Size = System::Drawing::Size(100, 22); this->txtIA->TabIndex = 7; // // label5 // this->label5->AutoSize = true; this->label5->Location = System::Drawing::Point(20, 30); this->label5->Name = L"label5"; this->label5->Size = System::Drawing::Size(138, 16); this->label5->TabIndex = 8; this->label5->Text = L"Nombre del proyecto:"; // // txtNombre // this->txtNombre->Location = System::Drawing::Point(218, 30); this->txtNombre->Name = L"txtNombre"; this->txtNombre->Size = System::Drawing::Size(100, 22); this->txtNombre->TabIndex = 9; // // btnRegistrar // this->btnRegistrar->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 14.25F, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0))); this->btnRegistrar->Location = System::Drawing::Point(341, 19); this->btnRegistrar->Name = L"btnRegistrar"; this->btnRegistrar->Size = System::Drawing::Size(153, 144); this->btnRegistrar->TabIndex = 10; this->btnRegistrar->Text = L"Registrar"; this->btnRegistrar->UseVisualStyleBackColor = true; this->btnRegistrar->Click += gcnew System::EventHandler(this, &MyForm1::btnRegistrar_Click); // // btnHasse // this->btnHasse->Location = System::Drawing::Point(341, 205); this->btnHasse->Name = L"btnHasse"; this->btnHasse->Size = System::Drawing::Size(153, 40); this->btnHasse->TabIndex = 11; this->btnHasse->Text = L"Generar Diagrama de Hasse"; this->btnHasse->UseVisualStyleBackColor = true; this->btnHasse->Click += gcnew System::EventHandler(this, &MyForm1::btnHasse_Click); // // groupBox1 // this->groupBox1->Controls->Add(this->btnLimpiar); this->groupBox1->Controls->Add(this->btnOrdenarProyectos); this->groupBox1->Controls->Add(this->btnHasse); this->groupBox1->Controls->Add(this->btnRegistrar); this->groupBox1->Controls->Add(this->txtNombre); this->groupBox1->Controls->Add(this->label5); this->groupBox1->Controls->Add(this->txtIA); this->groupBox1->Controls->Add(this->txtVP); this->groupBox1->Controls->Add(this->txtMI); this->groupBox1->Controls->Add(this->txtPT); this->groupBox1->Controls->Add(this->label4); this->groupBox1->Controls->Add(this->label3); this->groupBox1->Controls->Add(this->label2); this->groupBox1->Controls->Add(this->label1); this->groupBox1->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0))); this->groupBox1->Location = System::Drawing::Point(31, 31); this->groupBox1->Name = L"groupBox1"; this->groupBox1->Size = System::Drawing::Size(552, 288); this->groupBox1->TabIndex = 12; this->groupBox1->TabStop = false; this->groupBox1->Text = L"Peso de indicadores:"; // // btnOrdenarProyectos // this->btnOrdenarProyectos->Location = System::Drawing::Point(341, 176); this->btnOrdenarProyectos->Name = L"btnOrdenarProyectos"; this->btnOrdenarProyectos->Size = System::Drawing::Size(153, 23); this->btnOrdenarProyectos->TabIndex = 12; this->btnOrdenarProyectos->Text = L"Ordenar proyectos"; this->btnOrdenarProyectos->UseVisualStyleBackColor = true; this->btnOrdenarProyectos->Click += gcnew System::EventHandler(this, &MyForm1::btnOrdenarProyectos_Click); // // dgvProyectos // this->dgvProyectos->AllowUserToAddRows = false; this->dgvProyectos->AllowUserToDeleteRows = false; this->dgvProyectos->AllowUserToOrderColumns = true; this->dgvProyectos->ColumnHeadersHeightSizeMode = System::Windows::Forms::DataGridViewColumnHeadersHeightSizeMode::AutoSize; this->dgvProyectos->Columns->AddRange(gcnew cli::array< System::Windows::Forms::DataGridViewColumn^ >(5) { this->Proyecto, this->Puesto_de_Trabajo, this->Monto_de_Inversion, this->Volumen_de_Produccion, this->Cantidad_de_IA }); this->dgvProyectos->Location = System::Drawing::Point(31, 341); this->dgvProyectos->Name = L"dgvProyectos"; this->dgvProyectos->ReadOnly = true; this->dgvProyectos->Size = System::Drawing::Size(552, 150); this->dgvProyectos->TabIndex = 13; // // Proyecto // this->Proyecto->HeaderText = L"Proyecto"; this->Proyecto->Name = L"Proyecto"; this->Proyecto->ReadOnly = true; // // Puesto_de_Trabajo // this->Puesto_de_Trabajo->HeaderText = L"Puestos de Trabajo"; this->Puesto_de_Trabajo->Name = L"Puesto_de_Trabajo"; this->Puesto_de_Trabajo->ReadOnly = true; // // Monto_de_Inversion // this->Monto_de_Inversion->HeaderText = L"Monto de inversión"; this->Monto_de_Inversion->Name = L"Monto_de_Inversion"; this->Monto_de_Inversion->ReadOnly = true; // // Volumen_de_Produccion // this->Volumen_de_Produccion->HeaderText = L"Volumen de producción"; this->Volumen_de_Produccion->Name = L"Volumen_de_Produccion"; this->Volumen_de_Produccion->ReadOnly = true; // // Cantidad_de_IA // this->Cantidad_de_IA->HeaderText = L"Cantidad de impacto ambiental"; this->Cantidad_de_IA->Name = L"Cantidad_de_IA"; this->Cantidad_de_IA->ReadOnly = true; // // lstbOrdenTopo // this->lstbOrdenTopo->FormattingEnabled = true; this->lstbOrdenTopo->ItemHeight = 16; this->lstbOrdenTopo->Location = System::Drawing::Point(12, 19); this->lstbOrdenTopo->Name = L"lstbOrdenTopo"; this->lstbOrdenTopo->Size = System::Drawing::Size(527, 84); this->lstbOrdenTopo->TabIndex = 14; // // groupBox2 // this->groupBox2->Controls->Add(this->lstbOrdenTopo); this->groupBox2->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0))); this->groupBox2->Location = System::Drawing::Point(31, 517); this->groupBox2->Name = L"groupBox2"; this->groupBox2->Size = System::Drawing::Size(552, 115); this->groupBox2->TabIndex = 15; this->groupBox2->TabStop = false; this->groupBox2->Text = L"Orden a desarrollar proyectos"; // // btnLimpiar // this->btnLimpiar->Location = System::Drawing::Point(341, 252); this->btnLimpiar->Name = L"btnLimpiar"; this->btnLimpiar->Size = System::Drawing::Size(153, 23); this->btnLimpiar->TabIndex = 13; this->btnLimpiar->Text = L"Limpiar"; this->btnLimpiar->UseVisualStyleBackColor = true; this->btnLimpiar->Click += gcnew System::EventHandler(this, &MyForm1::btnLimpiar_Click); // // MyForm1 // this->AutoScaleDimensions = System::Drawing::SizeF(6, 13); this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font; this->BackColor = System::Drawing::Color::SteelBlue; this->ClientSize = System::Drawing::Size(618, 688); this->Controls->Add(this->groupBox2); this->Controls->Add(this->dgvProyectos); this->Controls->Add(this->groupBox1); this->Name = L"MyForm1"; this->Text = L"Análisis de proyectos"; this->Load += gcnew System::EventHandler(this, &MyForm1::MyForm1_Load); this->groupBox1->ResumeLayout(false); this->groupBox1->PerformLayout(); (cli::safe_cast<System::ComponentModel::ISupportInitialize^>(this->dgvProyectos))->EndInit(); this->groupBox2->ResumeLayout(false); this->ResumeLayout(false); } #pragma endregion public: void MarshalString(String ^ s, string& os) { using namespace Runtime::InteropServices; const char* chars = (const char*)(Marshal::StringToHGlobalAnsi(s)).ToPointer(); os = chars; Marshal::FreeHGlobal(IntPtr((void*)chars)); } private: System::Void btnRegistrar_Click(System::Object^ sender, System::EventArgs^ e) { //Convertidor de System::String a std:string string nombre; MarshalString(txtNombre->Text, nombre); int indice1 = Convert::ToInt32(txtPT->Text); float indice2 = Convert::ToDouble(txtMI->Text); int indice3 = Convert::ToInt32(txtVP->Text); int indice4 = Convert::ToInt32(txtIA->Text); objSistema->Insertar(indice1, indice2, indice3, indice4, nombre); dgvProyectos->Rows->Add(); int cantfilas = dgvProyectos->Rows->Count - 1; dgvProyectos[0, cantfilas]->Value = txtNombre->Text; dgvProyectos[1, cantfilas]->Value = txtPT->Text; dgvProyectos[2, cantfilas]->Value = txtMI->Text; dgvProyectos[3, cantfilas]->Value = txtVP->Text; dgvProyectos[4, cantfilas]->Value = txtIA->Text; //Volviendolo a poner en blanco txtNombre->Text = ""; txtPT->Text = ""; txtMI->Text = ""; txtVP->Text = ""; txtIA->Text = ""; } private: System::Void MyForm1_Load(System::Object^ sender, System::EventArgs^ e) { } private: System::Void btnHasse_Click(System::Object^ sender, System::EventArgs^ e) { MyForm2 ^ frm2 = gcnew MyForm2(); CEmpresa** _arrefinal = new CEmpresa*[objSistema->get_arrFinal().size()]; for (int i = 0; i < objSistema->get_arrFinal().size(); i++) { _arrefinal[i] = objSistema->get_arrFinal().at(i); } frm2->recibirArreglo2(_arrefinal, objSistema->get_arrFinal().size()); frm2->RecibirArreglo(); frm2->ShowDialog(); } private: System::Void btnOrdenarProyectos_Click(System::Object^ sender, System::EventArgs^ e) { objSistema->AnalizarPT(); objSistema->AnalizarIN(); objSistema->AnalizarVP(); objSistema->AnalizarIA(); objSistema->ResultadoFinal(); objSistema->AnalizarOrdenaTopo(); int j = 0; for (int i = 0; i < objSistema->get_arrFinal().size(); i++) { String^ nombre = objSistema->get_empresa(i)->get_nombre(); j = i + 1; lstbOrdenTopo->Items->Add(j + "°.- " + nombre); } } private: System::Void btnLimpiar_Click(System::Object^ sender, System::EventArgs^ e) { objSistema->BorrarTodoArreglos(); dgvProyectos->Rows->Clear(); lstbOrdenTopo->Items->Clear(); } }; }
207e561a9be037e23244d8520a48080b8d06f328
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/com/rpc/midl/support/freelist.cxx
3458422fc2cdc738f0a7489bc0684f51049da9e1
[]
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
5,913
cxx
freelist.cxx
/*************************************************************************/ /** Copyright(c) Microsoft Corp., 1993-1999 **/ /*************************************************************************/ /************************************************************************** File FreeListMgr.cxx Title :Get and Put functions for the MIDL compiler History : 13-Apr-94 GregJen Created from freelist.hxx **************************************************************************/ #pragma warning ( disable : 4201 ) // Unnamed struct/union #pragma warning ( disable : 4514 ) // Unreferenced inline function /************************************************************************* ** includes *************************************************************************/ #include "freelist.hxx" #include <windef.h> // REVIEW: Just give up and include windows.h? #include <basetsd.h> // checked compiler has list checking #ifndef NDEBUG // turn on the below flag to get checked freelist #define LIST_CHECK #endif /************************************************************************* ** definitions *************************************************************************/ // The user should see allocated memory aligned at LONG_PTR alignment. // The allocator returns us memory with this alignment so make sure the // signature preserves it. typedef LONG_PTR HeapSignature; #define USED_SIGNATURE( pMgr, pNode ) \ ( ((HeapSignature) pMgr) % ((HeapSignature) pNode) ) #define FREE_SIGNATURE( pMgr, pNode ) \ ( ((HeapSignature) pMgr) - ((HeapSignature) pNode) ) void * FreeListMgr::Get (size_t size) { void * pEntry; #ifdef LIST_CHECK HeapSignature * pSignature; #endif /* Count this call (even if it fails). */ #ifndef NDEBUG GetCount++; #endif /* Make sure the "size" requested is the same as the previous * requests. */ MIDL_ASSERT (size == element_size); /* Get an entry from the free-list, if the free-list is not empty */ if (pHead != NULL) { pEntry = pHead; pHead = pHead->next; #ifdef LIST_CHECK // check to make sure the entry is really OK // signature is before entry pointer // signature of free nodes is ( &mgr - &node ) // signature of used nodes is ( &mgr % &node ) pSignature = ((HeapSignature *)pEntry)-1; MIDL_ASSERT( *pSignature == FREE_SIGNATURE( this, pEntry ) ); *pSignature = USED_SIGNATURE( this, pEntry ); memset( pEntry, 0xB3, size ); #endif return (void *) pEntry; } /* Get it from the allocator, since the free-list is empty */ else { #ifdef LIST_CHECK pSignature = (HeapSignature *) AllocateOnceNew( size + sizeof( *pSignature ) ); pEntry = ( (char *) pSignature ) + sizeof( *pSignature ); *pSignature = USED_SIGNATURE( this, pEntry ); memset( pEntry, 0xB2, size ); return pEntry; #else return AllocateOnceNew(size); #endif } } /* Get */ /*********************************************************************/ // This routine "releases" the given element, by putting it on // the free-list for later re-use. The given element, must be // the same size as the elements provided by the "Get" function. /*********************************************************************/ void FreeListMgr::Put (void * pEntry) { #ifdef LIST_CHECK HeapSignature * pSignature; #endif // Count this call. #ifndef NDEBUG PutCount++; #endif // Put the given element on the head of the free-list. #ifdef LIST_CHECK // check to make sure the entry is really OK // signature is before entry pointer // signature of free nodes is ( &mgr - &node ) // signature of used nodes is ( &mgr % &node ) pSignature = ((HeapSignature *)pEntry)-1; MIDL_ASSERT( *pSignature == USED_SIGNATURE( this, pEntry ) ); *pSignature = FREE_SIGNATURE( this, pEntry ); memset( pEntry, 0xA1, element_size ); #endif ( (FreeListType *) pEntry ) -> next = pHead; pHead = (FreeListType *) pEntry; }; /* Put */ #ifdef example // // Example of use... // // copy the following into a class definition and replace the X's with // the name of the class // /*********************************************************************/ // here is the free list manager for a particular class. it should // NOT be inherited unless the derived classes have no extra data members. // // Otherwise, the derived classes should have their own new and delete // elsewhere. /*********************************************************************/ private: static FreeListMgr MyFreeList( sizeof( X ) ); public: /*********************************************************************/ // Return a new element of the specified size. // // The FreeListMgr "Get" routine is used, so that the element may be // retrieved from a free-list, if possible, and extra get-memory calls // can thus be avoided. /*********************************************************************/ X * operator new (size_t size) { return (MyFreeList.Get (size)); } /*********************************************************************/ // Release an element allocated by the "New" routine. // /*********************************************************************/ void operator delete (X* pX) { MyFreeList.Put (pX); } #endif // example
237d676503744634a0313c0b7ba460354b85161c
df2db05c0b6faeebacc2a30fc1fc686dfe5bb740
/HW5/Tema2/CCaine.cpp
1ac3458162bfc159fa8d8f73178e00247b86c5b7
[]
no_license
AndreeaDraghici/OOP
204fe72a2639184cb969e8406aba3853729f1822
2bffa2209295787271c68c0ebffa65c6f15274b2
refs/heads/main
2023-05-06T22:38:02.148209
2021-06-01T09:15:47
2021-06-01T09:15:47
352,360,411
7
0
null
null
null
null
UTF-8
C++
false
false
694
cpp
CCaine.cpp
#include "CCaine.h" #include<iostream> using namespace std; void CCaine :: Citire() { cout << "Numele cainelui este: " << endl; cin >> nume; cin.get(); cout << "Inaltimea cainelui este: " << endl; cin >> inaltime; cout << "Greutatea cainelui este: " << endl; cin >> greutate; cout << "Varsta cainelui este: " << endl; cin >> varsta; cout << "Culoarea cainelui este: " << endl; cin >> culoare; cin.get(); } void CCaine :: Afisare() { cout << "Numele este: " << nume << endl;; cout << "Inaltimea este: " << inaltime <<endl; cout << "Greutatea este: " << greutate<< endl; cout << "Varsta este: " << varsta <<endl; cout << "Culoarea este: " << culoare<<endl; }
bb7a0194993ccb6c1bd0c7a87e0013040c9fe0dd
41bebc320973426797726ecc63d519defca2cdc5
/client.h
3dec8ca171790c9aedc1204facdd8711b6530997
[]
no_license
simeon-ng/battleshipServer
ffb45a0136ea6df006668d9696cdd86a7e1eb761
f82ccbc027e33ef61f0c9b47583fb3e6e345d345
refs/heads/master
2021-10-27T15:32:54.451429
2019-04-18T02:49:39
2019-04-18T02:49:39
177,119,302
0
0
null
null
null
null
UTF-8
C++
false
false
1,205
h
client.h
// client.h // Simeon Ng // Header file for Battleship client class #ifndef BATTLESHIP_CLIENT_H #define BATTLESHIP_CLIENT_H #define _WIN32_WINNT 0x501 // used by ws2tcpip.h #ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN #endif #include <windows.h> #include <winsock2.h> #include <ws2tcpip.h> #include <iphlpapi.h> #include <stdio.h> #include <cstdlib> #include <iostream> #include "networkData.h" #include "network.h" using std::cout; using std::endl; #pragma comment(lib, "Ws2_32.lib") #pragma comment(lib, "Mswsock.lib") #pragma comment(lib, "AdvApi32.lib") // Constants and library links. #define DEFAULT_BUFFER_LEN 512 // Size of buffer #define DEFAULT_PORT "54000" // Port for socket connections // Class : Client // Handles connecting the client to the server. class Client { public: Client(); ~Client() = default; int receivePackets(char *); SOCKET getConnectSocket(); private: int _result; // Will hold result of return values of: // WSAStartup() // getaddrinfo() SOCKET _ConnectSocket; // Client Socket }; #endif //BATTLESHIP_CLIENT_H
83fe12e4d58481e0b4d168f9ccafa2baa9ecfda5
8adfb1fdd7a0927509103a8288ea8920da81806b
/Skyrim Text Game/Monster.hpp
7262bc213173e2c54be7e1a5f5ec755064886d87
[]
no_license
BraedenKuether/CPP_Projects
de033a7bfdf8dba81b60ff5f5157559790f4fc65
3aa20c59fc22ac8589eab28ba9e209ec6fde1112
refs/heads/master
2020-06-29T12:50:31.456199
2019-11-11T18:46:22
2019-11-11T18:46:22
200,541,848
0
1
null
null
null
null
UTF-8
C++
false
false
568
hpp
Monster.hpp
/* Skyrim Text Game Create by Braeden Kuether 8/16/2018 */ #ifndef MONSTER_H_ #define MONSTER_H_ #include <iostream> #include <cstdlib> #include <string> #include <vector> #include <cmath> #include "Space.hpp" using namespace std; class Monster : public Space { private: int strength; string type; Item drop; public: Monster(); int get_strength(); string get_name(); void set_strength(int); void set_type(); void set_item(); bool fight(int); Item loot(vector <Item>); void set_dragon(); }; #endif
b71f2ca6a8ead8e0caa81a5d64cf7c2ba1edac87
3e51841d4d42ad57b1c8ab5883d9bffdaf2074db
/111-Minimum-Depth-of-Binary-Tree/solution.cpp
a1999b8af7bd8a10ad5dcc8114163494cb9fe9a0
[]
no_license
xh286/leetcode
f726524c05d93253293ea327c257f08cfd63faf6
dde81ea3112d1355ebc07f7f8afe00a3448f943a
refs/heads/master
2021-01-21T14:24:56.665689
2016-07-22T01:57:50
2016-07-22T01:57:50
58,489,012
0
0
null
null
null
null
UTF-8
C++
false
false
1,753
cpp
solution.cpp
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ class Solution { public: int minDepth(TreeNode* root) { if(!root) return 0; vector<TreeNode*> trav_stack; // uses push_back(x), pop_back(), back() and size(), empty(). TreeNode* subtree = root; // subtree root pointer bool subtree_visited = false; int min_depth = INT_MAX; while(true) // terminate when stack becomes empty { if(subtree && !subtree_visited) // post-order DFS needs protection with boolean to avoid infinite loop. { trav_stack.push_back(subtree); // push all nodes here, along left-chains. subtree = subtree->left; continue; } if(trav_stack.empty()) break; // return false TreeNode* parent = trav_stack.back(); // subtree is either right or left child of parent, or both (leaf, left==right==NULL). If right, done. If left, continue with right. if(subtree == parent->right) { if(subtree == parent->left) { //parent is leaf, compare if(trav_stack.size() < min_depth) min_depth = trav_stack.size(); } // pop parent trav_stack.pop_back(); subtree = parent; subtree_visited = true; } else { subtree = parent->right; subtree_visited = false; } } return min_depth; } };
b1e7c609fb97558176f7b9fd96512dd0226d21b6
e6358e3c18ae70d7adfee71351efa69e53b83f7b
/GameSource/OpenGLManagedCpp/ObjectTreeContator.cpp
c1752f00e751298982c9cb293dc8079273dd1e35
[]
no_license
gtpk/Monstone
203ddb9a46db2124a18b63d718c69a9e8408a9a5
25d5c78384ed9bcf4186fe9ab5da222df0e4b085
refs/heads/master
2020-06-13T10:39:22.868363
2017-12-05T23:54:39
2017-12-05T23:54:39
75,394,716
3
0
null
null
null
null
UTF-8
C++
false
false
32
cpp
ObjectTreeContator.cpp
#include "ObjectTreeContator.h"
eaecd14f69df0877ce1e8e744f3caca7a0239727
ce7804cbf19374e0815cdaa9a347fea2e467dd1b
/FVUtilities.h
ed0d639ed804ff5d1c175939dae5f0603a77f6ec
[]
no_license
keilladraconis/FVSE-xSE
c90a48cc28a17d0351b38677b2f98e0286c89cff
676638dbf9f82d6704cdbcfb688122e73cdf5a96
refs/heads/master
2022-04-28T19:02:08.103881
2020-04-29T16:55:45
2020-04-29T16:55:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,220
h
FVUtilities.h
#pragma once #include "GlobalDefs.h" #include "FVSEScaleform.h" #include "f4se/GameForms.h" #include "f4se/GameFormComponents.h" #include "f4se/GameReferences.h" #include "f4se/GameRTTI.h" #include "f4se/ScaleformMovie.h" #include "f4se/ScaleformValue.h" #include "RVA/RVA.h" #include <time.h> namespace FVUtilities { template <typename T> T GetOffset(const void* baseObject, int offset) { return *reinterpret_cast<T*>((uintptr_t)baseObject + offset); } BSFixedString GetDescription(TESForm *thisForm); TESForm * GetFormFromIdentifier(const std::string & identifier); UInt32 GetFormIDFromIdentifier(const std::string & identifier); void UpdateRVAAddress(); }; void PopulatePerkEntry(GFxValue * dst, GFxMovieRoot * root, BGSPerk * perk); void ModValueAV(ActorValueInfo* actorValue, Actor* actor, float delta); float GetBaseValueAV(ActorValueInfo* actorValue, Actor* actor); float GetValueAV(ActorValueInfo* actorValue, Actor* actor); float GetAVBaseValueByFormID(int formID, Actor * actor); UInt8 GetActorSex(Actor * actor); void CycleMenu_int(BSFixedString MenuName, bool open); typedef UInt8(*_HasPerk)(Actor* actor, BGSPerk* perk); extern RVA<_HasPerk> HasPerk; typedef void(*_AddPerk)(Actor* actor, BGSPerk* perk, UInt8 rank); extern RVA<_AddPerk> AddPerk; extern RVA <void*> g_UIManager; typedef void(*_UI_AddMessage)(void* menuManager, BSFixedString* menuName, unsigned int menuAction); extern RVA <_UI_AddMessage> UI_AddMessage; template<typename T> inline void Register(GFxValue *dst, const char *name, T value) { } template<> inline void Register(GFxValue *dst, const char *name, UInt32 value) { GFxValue fxValue; fxValue.SetUInt(value); dst->SetMember(name, &fxValue); } template<> inline void Register(GFxValue *dst, const char *name, UInt8 value) { GFxValue fxValue; fxValue.SetUInt(value); dst->SetMember(name, &fxValue); } template<> inline void Register(GFxValue *dst, const char *name, int value) { GFxValue fxValue; fxValue.SetInt(value); dst->SetMember(name, &fxValue); } template<> inline void Register(GFxValue *dst, const char *name, bool value) { GFxValue fxValue; fxValue.SetBool(value); dst->SetMember(name, &fxValue); } inline void RegisterString(GFxValue *dst, GFxMovieRoot *root, const char *name, const char *value) { GFxValue fxValue; root->CreateString(&fxValue, value); dst->SetMember(name, &fxValue); } inline void RegisterStringArray(GFxValue *dst, GFxMovieRoot *root, const char *name, tArray<const char*> *value) { const char **arrayString=nullptr; *arrayString = new const char[value->count]; for (int i = 0; i < value->count; i++) { arrayString[i] = value->entries[i]; } GFxValue fxValue; root->CreateString(&fxValue, *arrayString); dst->SetMember(name, &fxValue); } inline void RegisterStringArrayNew(GFxValue *dst, GFxMovieRoot *root, const char *name, tArray<BSString> *value) { GFxValue* fxArray; GFxValue fxValue; root->CreateArray(fxArray); for (int i = 0; i < value->count; i++) { root->CreateString(&fxValue, value->entries[i].Get()); fxArray->PushBack(&fxValue); } dst->SetMember(name, fxArray); }
4a73138a1636741fb6c22aa87756382ff066ed4b
48591e6fe907d1d1c15ea671db3ab32b6d60f5a6
/dizuo/ogl_textured_sphere/Model.h
e0b91dd27cb3c66ca11c03a5028703e0556c2811
[]
no_license
dizuo/dizuo
17a2da81c0ad39d77e904012cb9fbb8f6681df1b
6083ca9969d9d45b72859d9795544ccdf2d13b1c
refs/heads/master
2021-10-24T21:16:19.910030
2021-10-23T07:17:30
2021-10-23T07:17:30
1,253,554
7
5
null
null
null
null
UTF-8
C++
false
false
3,978
h
Model.h
#include <gl/glut.h> class CVertex { public: CVertex() {} CVertex(float fv1, float fv2, float fv3, float fu, float fv, float fn1, float fn2, float fn3) { v[0] = fv1; v[1] = fv2; v[2] = fv3; t[0] = fu; t[1] = fv; n[0] = fn1; n[1] = fn2; n[2] = fn3; } float v[3]; float t[2]; float n[3]; }; class CTriangle { public: int v0; int v1; int v2; CTriangle() {} CTriangle(int i0, int i1, int i2) : v0(i0) , v1(i1) , v2(i2) {} }; class CModel { public: CModel() : pVertex(0) , pTriangle(0) , triNum(0) {} ~CModel() { if (pVertex) { delete pVertex; pVertex = 0; } if (pTriangle) { delete pTriangle; pTriangle = 0; } } //----------------------------------------------------------------------------- // Name: renderSphere() // Desc: Create a sphere centered at cy, cx, cz with radius r, and // precision p. Based on a function Written by Paul Bourke. // http://astronomy.swin.edu.au/~pbourke/opengl/sphere/ //----------------------------------------------------------------------------- void SetupSphere( float cx, float cy, float cz, float r, int p ) { int verNum = p * (p+1); int triNum = verNum - 2; pVertex = new CVertex[ verNum ]; pTriangle = new CTriangle[ triNum ]; const float PI = 3.14159265358979f; const float TWOPI = 6.28318530717958f; const float PIDIV2 = 1.57079632679489f; float theta1 = 0.0; float theta2 = 0.0; float theta3 = 0.0; float ex = 0.0f; float ey = 0.0f; float ez = 0.0f; float px = 0.0f; float py = 0.0f; float pz = 0.0f; // Disallow a negative number for radius. if( r < 0 ) r = -r; // Disallow a negative number for precision. if( p < 0 ) p = -p; // If the sphere is too small, just render a OpenGL point instead. if( p < 4 || r <= 0 ) { glBegin( GL_POINTS ); glVertex3f( cx, cy, cz ); glEnd(); return; } int vCount = 0; for( int i = 0; i < p/2; ++i ) { theta1 = i * TWOPI / p - PIDIV2; theta2 = (i + 1) * TWOPI / p - PIDIV2; for( int j = 0; j <= p; ++j ) { theta3 = j * TWOPI / p; ex = cosf(theta2) * cosf(theta3); ey = sinf(theta2); ez = cosf(theta2) * sinf(theta3); px = cx + r * ex; py = cy + r * ey; pz = cz + r * ez; pVertex[ vCount++ ] = CVertex( px, py, pz, -(j/(float)p), 2*(i+1)/(float)p, ex, ey, ez ); //glNormal3f( ex, ey, ez ); //glTexCoord2f( -(j/(float)p) , 2*(i+1)/(float)p ); //glVertex3f( px, py, pz ); ex = cosf(theta1) * cosf(theta3); ey = sinf(theta1); ez = cosf(theta1) * sinf(theta3); px = cx + r * ex; py = cy + r * ey; pz = cz + r * ez; //glNormal3f( ex, ey, ez ); //glTexCoord2f( -(j/(float)p), 2*i/(float)p ); //glVertex3f( px, py, pz ); pVertex[ vCount++ ] = CVertex( px, py, pz, -(j/(float)p), 2*(i)/(float)p, ex, ey, ez ); } } for (int loop=0, tCount=0; loop<vCount-2; loop++) { if ( (loop+1)/3) { pTriangle[ tCount++ ] = CTriangle(loop-2, loop-1, loop); } } } void RenderTriangle( const CTriangle& triangle ) const { glBegin(GL_TRIANGLES); { glNormal3fv( pVertex[triangle.v0].n ); glVertex3fv( pVertex[triangle.v0].v ); glTexCoord2fv( pVertex[triangle.v0].t ); glNormal3fv( pVertex[triangle.v1].n ); glVertex3fv( pVertex[triangle.v1].v ); glTexCoord2fv( pVertex[triangle.v1].t ); glNormal3fv( pVertex[triangle.v2].n ); glVertex3fv( pVertex[triangle.v2].v ); glTexCoord2fv( pVertex[triangle.v2].t ); }glEnd(); } void RenderModel() { for (int index = 0; index < triNum; index++) { RenderTriangle( pTriangle[index] ); } } protected: CTriangle* pTriangle; CVertex* pVertex; int triNum; int verNum; };
2f69328bd5ba0b84bd2ebd670986ee43017ad630
7409724723d5fb5a5453aae91d821c6517c5a68d
/emptyExample/src/ofApp.cpp
821a7d95a6e0fd7f51a420bc1948231b160b8193
[]
no_license
xsxR00t/Striped_pattern
760799f4949adf886a7e48adf317d55e881279d3
2c44527e440806a263c9df81f3b6b42a38041c5e
refs/heads/master
2021-05-27T16:42:35.025600
2014-07-16T15:06:08
2014-07-16T15:06:08
null
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
2,651
cpp
ofApp.cpp
#include "ofApp.h" #define WINDOW_WIDTH 1024 #define WINDOW_HEIGHT 768 #define FPS 60 #define BASE_DEBUG if(baseDebug) static const bool baseDebug = false; //-------------------------------------------------------------- void ofApp::setup(){ // Window shape ofSetWindowShape(WINDOW_WIDTH, WINDOW_HEIGHT); // Frame rate(aim default 60fps) ofSetFrameRate(FPS); // Background color ofBackground(255, 255, 255); // First Pitch pitch = 2; } //-------------------------------------------------------------- void ofApp::update(){ } //-------------------------------------------------------------- void ofApp::draw(){ int i; // 座標系を中心座標に移す ofTranslate( WINDOW_WIDTH / 2, WINDOW_HEIGHT / 2 ); // y軸を反転 ofScale( 1, -1 ); //################################################## // Line Color ofSetColor( 0, 0, 0 ); BASE_DEBUG { // Base y ofLine( 0, WINDOW_WIDTH, 0, -WINDOW_WIDTH ); } // Draw all line for( i = 0; i < WINDOW_HEIGHT / 2; i+=pitch ) { // Positive region ofLine( -WINDOW_WIDTH / 2, i, WINDOW_WIDTH / 2, i ); // Negative region ofLine( -WINDOW_WIDTH / 2, -i, WINDOW_WIDTH / 2, -i ); } //################################################## } //-------------------------------------------------------------- void ofApp::keyPressed(int key){ switch(key) { case OF_KEY_UP: pitch++; break; case OF_KEY_DOWN: pitch--; break; case 'o': pitch+=10; break; case 'l': pitch-=10; break; case 'f': ofToggleFullscreen(); break; default: break; } if( pitch > WINDOW_HEIGHT / 2 ) pitch = WINDOW_HEIGHT / 2; else if( pitch < 2 ) pitch = 2; printf("Pitch : %d[pixel]\n", pitch); } //-------------------------------------------------------------- void ofApp::keyReleased(int key){ } //-------------------------------------------------------------- void ofApp::mouseMoved(int x, int y){ } //-------------------------------------------------------------- void ofApp::mouseDragged(int x, int y, int button){ } //-------------------------------------------------------------- void ofApp::mousePressed(int x, int y, int button){ } //-------------------------------------------------------------- void ofApp::mouseReleased(int x, int y, int button){ } //-------------------------------------------------------------- void ofApp::windowResized(int w, int h){ } //-------------------------------------------------------------- void ofApp::gotMessage(ofMessage msg){ } //-------------------------------------------------------------- void ofApp::dragEvent(ofDragInfo dragInfo){ }
8702dc86357ca8a1c936ffd4e6d564f961aa0b76
f5d1a4273593f1b1b0fe0b596dcea0aade936cde
/acwing/ever_day/3624.cpp
397a5753bdb40f14c5f065d08c72817a87dd8b74
[]
no_license
showmake/Contest
800632d2eca293865478929283a845ee691a2a58
b089df5c017e4441fa94c9cb31bdf32ebc5e8fad
refs/heads/master
2023-08-20T23:27:52.914941
2021-10-22T00:26:23
2021-10-22T00:26:23
387,126,107
0
0
null
null
null
null
UTF-8
C++
false
false
970
cpp
3624.cpp
#include <iostream> #include <cstring> #include <algorithm> #include <vector> #include <deque> #include <stack> #include <queue> #include <unordered_set> #include <unordered_map> #include <cmath> using namespace std; using ll= long long; using pii =pair<int,int> ; const int N=1e5+10; int n,T; unordered_map<int,int> h; int main() { ios::sync_with_stdio(false); cin>>T; while (T--) { string s; cin>>s; n=s.size(); int p=0,q=0; int res=n+1; h.clear(); while (q<n) { while (h.size()<3&&q<n) { h[s[q]-'0']++; q++; } while (p<q&&h.size()==3) { h[s[p]-'0']--; if(!h[s[p]-'0']) h.erase(s[p]-'0'); p++; } res=min(res,q-p+1); } if(res==n+1) cout<<0<<endl; else cout<<res<<endl; } return 0; }
67203c4abce6139132705e3bfa60d50ee86282e1
a0c3486c02f6846c871982b8d90f4525d4460180
/testP305/testP305/main.cpp
b6dc3944a4bd30e8d433c76626d78e2ab2d8586a
[]
no_license
Ivoripuion/pwnwin_practice
fdc4681dca8a4486be73fb57ea9b13163185ecb1
ac10417431776c96afc8b924c988fa2b1134215f
refs/heads/master
2021-03-23T18:45:38.915575
2020-03-15T13:54:44
2020-03-15T13:54:44
247,475,957
1
0
null
null
null
null
UTF-8
C++
false
false
1,428
cpp
main.cpp
#include<string.h> #include<stdlib.h> char Shellcode[]= "\x90\x90\x90\x90\x90\x90\x90\x90" /* "\x90\x90\x90\x90"//new value of cookie in .data "\xFC\x68\x6A\x0A\x38\x1E\x68\x63\x89\xD1\x4F\x68\x32\x74\x91\x0C" "\x8B\xF4\x8D\x7E\xF4\x33\xDB\xB7\x04\x2B\xE3\x66\xBB\x33\x32\x53" "\x68\x75\x73\x65\x72\x54\x33\xD2\x64\x8B\x5A\x30\x8B\x4B\x0C\x8B" "\x49\x1C\x8B\x09\x8B\x69\x08\xAD\x3D\x6A\x0A\x38\x1E\x75\x05\x95" "\xFF\x57\xF8\x95\x60\x8B\x45\x3C\x8B\x4C\x05\x78\x03\xCD\x8B\x59" "\x20\x03\xDD\x33\xFF\x47\x8B\x34\xBB\x03\xF5\x99\x0F\xBE\x06\x3A" "\xC4\x74\x08\xC1\xCA\x07\x03\xD0\x46\xEB\xF1\x3B\x54\x24\x1C\x75" "\xE4\x8B\x59\x24\x03\xDD\x66\x8B\x3C\x7B\x8B\x59\x1C\x03\xDD\x03" "\x2C\xBB\x95\x5F\xAB\x57\x61\x3D\x6A\x0A\x38\x1E\x75\xA9\x33\xDB" "\x53\x68\x77\x65\x73\x74\x68\x66\x61\x69\x6C\x8B\xC4\x53\x50\x50" "\x53\xFF\x57\xFC\x53\xFF\x57\xF8" "\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90" "\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90" "\xF4\x6F\x82\x90"//result of \x90\x90\x90\x90 xor EBP "\x90\x90\x90\x90" "\x94\xFE\x12\x00"//address of Shellcode */ ; void test(char * s, int i, char * src) { _asm int 3; char dest[200]; //_asm int 3; if(i<0x9995) { char * buf=s+i; *buf=*src; *(buf+1)=*(src+1); *(buf+2)=*(src+2); *(buf+3)=*(src+3); strcpy(dest,src); } } void main() { char * str=(char *)malloc(0x10000); //_asm int 3; test(str,0xFFFF2FB8,Shellcode); }
6b32b1b5f829b956f08e10108b86e63e4d14427b
3a26de247abe7c3e917a2d29b0f247c5299e2de0
/io_contours/intersect.h
fff8cd4cccb29f6464542eb2570eb33fcc3534bb
[]
no_license
LasseD/ContourSimplification
23b8a14ec9e4f7af52ba8ddc08ff2d811271a671
bf3489621884ac5bf021158d97a5c5806a2ed78d
refs/heads/master
2021-01-10T16:54:34.255126
2016-02-29T17:43:10
2016-02-29T17:43:10
52,808,564
1
0
null
null
null
null
UTF-8
C++
false
false
1,386
h
intersect.h
// -*- mode: c++; tab-width: 4; indent-tabs-mode: t; eval: (progn (c-set-style "stroustrup") (c-set-offset 'innamespace 0)); -*- // vi:set ts=4 sts=4 sw=4 noet : #ifndef __TEST_CONTOUR_SIMPLIFICATION_IO_CONTOURS_INTERSECT_H__ #define __TEST_CONTOUR_SIMPLIFICATION_IO_CONTOURS_INTERSECT_H__ #include <terrastream/common/common.h> #include <tpie/portability.h> #include <tpie/stream.h> #include "contour_types.h" #include <terrastream/common/tflow_types.h> #include <terrastream/common/wlabel.h> namespace terrastream{ //Takes the input stream of triangles and creates the contour segments resulting from intersecting //the triangles with the contour planes with displacement equal to the granularity. //Each segment is marked with a sign, which indicates whether //contours lying on an edge of a triangle was generated as the bottom edge or top edge of the triangle. //Finally a map_info struct is returned, this is for later ridge removal use. map_info intersect(stream<triangle> &input,elev_t granularity,stream<signed_contour_segment> &output); //Does the same as the other intersect, but for every level t, edges for contours on levels //t-z_diff and t+z_diff are added. map_info intersect(stream<triangle> &input,elev_t granularity,float z_diff, stream<signed_contour_segment> &output); } #endif /*__TEST_CONTOUR_SIMPLIFICATION_IO_CONTOURS_INTERSECT_H__*/
ab288268c00b26c88fd455425c63b3711324f3a0
a017544e321047dc0fc2478807eaca5a584588b3
/Detectron2/Modules/BatchNorm/FrozenBatchNorm2d.cpp
a26435418ec1bee98531aea4c834a36d4d2f8a22
[]
no_license
ttanzhiqiang/Detectron2_Project
d461c95ede6ed3a4affb182abf330c002ac119e8
91bf05ab3b0be0a8e20a244b2729f576160d6953
refs/heads/main
2023-07-02T08:22:52.736982
2021-08-06T10:13:00
2021-08-06T10:13:00
381,316,589
11
2
null
null
null
null
UTF-8
C++
false
false
3,420
cpp
FrozenBatchNorm2d.cpp
#include "Base.h" #include "FrozenBatchNorm2d.h" using namespace std; using namespace torch; using namespace Detectron2; /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // not converted /* def _load_from_state_dict( self, state_dict, prefix, local_metadata, strict, missing_keys, unexpected_keys, error_msgs ): version = local_metadata.get("version", None) if version is None or version < 2: # No running_mean/var in early versions # This will silent the warnings if prefix + "running_mean" not in state_dict: state_dict[prefix + "running_mean"] = torch.zeros_like(m_running_mean) if prefix + "running_var" not in state_dict: state_dict[prefix + "running_var"] = torch.ones_like(m_running_var) if version is not None and version < 3: logger = logging.getLogger(__name__) logger.info("FrozenBatchNorm {} is upgraded to version 3.".format(prefix.rstrip("."))) # In version < 3, running_var are used without +eps. state_dict[prefix + "running_var"] -= m_eps super()._load_from_state_dict( state_dict, prefix, local_metadata, strict, missing_keys, unexpected_keys, error_msgs ) def __repr__(self): return "FrozenBatchNorm2d(num_features={}, eps={})".format(self.num_features, self.eps) */ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ModulePtr FrozenBatchNorm2dImpl::convert_frozen_batchnorm(const ModulePtr &mod) { if (mod->as<nn::BatchNorm2dImpl>() /* || module.as<SyncBatchNorm>() */) { auto bn = mod->as<nn::BatchNorm2dImpl>(); FrozenBatchNorm2d res(bn->options.num_features()); if (bn->options.affine()) { res->m_weight = bn->weight.clone(); res->m_bias = bn->bias.clone(); } res->m_running_mean = bn->running_mean; res->m_running_var = bn->running_var; res->m_eps = bn->options.eps(); return res.ptr(); } ModulePtr res = mod; for (auto iter : mod->named_children()) { auto new_child = convert_frozen_batchnorm(iter.value()); res->replace_module(iter.key(), new_child); } return res; } FrozenBatchNorm2dImpl::FrozenBatchNorm2dImpl(int num_features, double eps) : m_num_features(num_features), m_eps(eps), m_weight(register_buffer("weight", torch::ones(num_features))), m_bias(register_buffer("bias", torch::zeros(num_features))), m_running_mean(register_buffer("running_mean", torch::zeros(num_features))), m_running_var(register_buffer("running_var", torch::ones(num_features) - eps)) { } std::string FrozenBatchNorm2dImpl::toString() const { return FormatString("FrozenBatchNorm2d(num_features=%d", m_num_features) + FormatString(", eps=%f)", m_eps); } torch::Tensor FrozenBatchNorm2dImpl::forward(torch::Tensor x) { if (x.requires_grad()) { // When gradients are needed, F.batch_norm will use extra memory // because its backward op computes gradients for weight/bias as well. auto scale = m_weight * (m_running_var + m_eps).rsqrt(); auto bias = m_bias - m_running_mean * scale; scale = scale.reshape({ 1, -1, 1, 1 }); bias = bias.reshape({ 1, -1, 1, 1 }); return x * scale + bias; } else { // When gradients are not needed, F.batch_norm is a single fused op // and provide more optimization opportunities. return batch_norm( x, m_weight, m_bias, m_running_mean, m_running_var, false, 0.1f, m_eps, Detectron2::cudaEnabled() ); } }
850ae00dd995fb551a98fac71b1f8a0370b47a5f
b9b966952e88619c9c5d754fea0f0e25fdb1a219
/libcaf_io/caf/io/network/scribe_impl.cpp
257cdf0990ead0a4a7a6b285e7e89da61324c8bc
[]
permissive
actor-framework/actor-framework
7b152504b95b051db292696a803b2add6dbb484d
dd16d703c91e359ef421f04a848729f4fd652d08
refs/heads/master
2023-08-23T18:22:34.479331
2023-08-23T09:31:36
2023-08-23T09:31:36
1,439,738
2,842
630
BSD-3-Clause
2023-09-14T17:33:55
2011-03-04T14:59:50
C++
UTF-8
C++
false
false
1,722
cpp
scribe_impl.cpp
// This file is part of CAF, the C++ Actor Framework. See the file LICENSE in // the main distribution directory for license terms and copyright or visit // https://github.com/actor-framework/actor-framework/blob/master/LICENSE. #include "caf/io/network/scribe_impl.hpp" #include "caf/io/network/default_multiplexer.hpp" #include "caf/logger.hpp" #include <algorithm> namespace caf::io::network { scribe_impl::scribe_impl(default_multiplexer& mx, native_socket sockfd) : scribe(network::conn_hdl_from_socket(sockfd)), launched_(false), stream_(mx, sockfd) { // nop } void scribe_impl::configure_read(receive_policy::config config) { CAF_LOG_TRACE(""); stream_.configure_read(config); if (!launched_) launch(); } void scribe_impl::ack_writes(bool enable) { CAF_LOG_TRACE(CAF_ARG(enable)); stream_.ack_writes(enable); } byte_buffer& scribe_impl::wr_buf() { return stream_.wr_buf(); } byte_buffer& scribe_impl::rd_buf() { return stream_.rd_buf(); } void scribe_impl::graceful_shutdown() { CAF_LOG_TRACE(""); stream_.graceful_shutdown(); detach(&stream_.backend(), false); } void scribe_impl::flush() { CAF_LOG_TRACE(""); stream_.flush(this); } std::string scribe_impl::addr() const { auto x = remote_addr_of_fd(stream_.fd()); if (!x) return ""; return *x; } uint16_t scribe_impl::port() const { auto x = remote_port_of_fd(stream_.fd()); if (!x) return 0; return *x; } void scribe_impl::launch() { CAF_LOG_TRACE(""); CAF_ASSERT(!launched_); launched_ = true; stream_.start(this); } void scribe_impl::add_to_loop() { stream_.activate(this); } void scribe_impl::remove_from_loop() { stream_.passivate(); } } // namespace caf::io::network
fa20fe53f7065fe27f76212085461f92bcfbbe3d
c88ee296ed0066dd13cdd5f6836037f325457ec7
/4_lesson(KR)/fraction.h
cdb611712da00643d948ee75eca6b518f59b1f35
[]
no_license
ober-man/4_sem
e272100caaca73ddb4d98abe78dd422c8cf6d7e2
678c13dab9791b7c0004b7d7aac55df6df953165
refs/heads/main
2023-04-14T04:54:58.293451
2021-04-28T15:29:36
2021-04-28T15:29:36
338,835,512
0
0
null
null
null
null
UTF-8
C++
false
false
2,378
h
fraction.h
#include<iostream> /// model of rational fraction {m/n} class Fraction { private: int m; int n; public: Fraction(); Fraction(int m_, int n_); Fraction(double num); int Integer() const; double Decimal() const; void Set(int m_, int n_); int Get_m() const; int Get_n() const; void Reduce(); friend Fraction operator + (const Fraction &frac1, const Fraction &frac2); friend Fraction operator - (const Fraction &frac1, const Fraction &frac2); friend Fraction operator * (const Fraction &frac1, const Fraction &frac2); friend Fraction operator / (const Fraction &frac1, const Fraction &frac2); friend Fraction operator + (const Fraction &frac); friend Fraction operator - (const Fraction &frac); friend Fraction operator ++ (Fraction &frac, int); /// postfix - return old version friend Fraction& operator ++ (Fraction &frac); /// prefix - return reference to transformed version friend Fraction operator -- (Fraction &frac, int); /// postfix friend Fraction& operator -- (Fraction &frac); /// prefix Fraction& operator = (const Fraction &frac); // can't be friend because of interface Fraction& operator = (const int &num); Fraction& operator = (const double &num); friend Fraction& operator += (Fraction &frac1, const Fraction &frac2); friend Fraction& operator -= (Fraction &frac1, const Fraction &frac2); friend Fraction& operator *= (Fraction &frac1, const Fraction &frac2); friend Fraction& operator /= (Fraction &frac1, const Fraction &frac2); friend bool operator == (const Fraction &frac1, const Fraction &frac2); friend bool operator != (const Fraction &frac1, const Fraction &frac2); friend bool operator > (const Fraction &frac1, const Fraction &frac2); friend bool operator < (const Fraction &frac1, const Fraction &frac2); friend bool operator >= (const Fraction &frac1, const Fraction &frac2); friend bool operator <= (const Fraction &frac1, const Fraction &frac2); friend std::ostream& operator << (std::ostream &out, const Fraction &frac); friend std::istream& operator >> (std::istream &in, Fraction &frac); }; int NOD(int a, int b); const double eps = 1e-15;
f648689bcdbfb14a5ed7c1a4f2270b871966e1df
141c98034cbf0a7218cc60411cb6c500d7d14cf7
/kv_parse.h
3fc7e60b1ff74226a08081f2afd81138700c50be
[]
no_license
Haosheng/rocksdb_comparator
70fccf2a4a83f4b94a7823c34b3fe163762d7747
3d5ac61aafa868a384d12fa1a7fa55635262b4aa
refs/heads/master
2020-06-07T21:05:04.854943
2015-07-29T14:35:52
2015-07-29T14:35:52
39,897,992
0
0
null
null
null
null
UTF-8
C++
false
false
604
h
kv_parse.h
#ifndef STORAGE_ROCKSDB_INCLUDE_KVPARSER_H_ #define STORAGE_ROCKSDB_INCLUDE_KVPARSER_H_ #include <string> #include <cstdio> #include <utility> namespace rocksdb{ class KVParser{ public: ~KVParser(){} std::pair<std::string, std::string> parse_line(std::string Line){ std::string toParse = Line; std::string key, value; std::string delimiter = ":"; std::size_t pos=0; pos = Line.find(delimiter); key = toParse.substr(0,pos); value = toParse.substr(pos+1); std::pair<std::string,std::string> result; result = std::make_pair(key,value); return result; } }; } #endif
4c4515f9272261ad3ede5fdd66cb8782d01e4bde
ee80ddf7d1de919847f1072f83c9ee3e3deeae02
/gwell/source/vi-kernel/vi-readmultipolyh.hh
ac22da2426f0d1a1cca14de2ec57a04233a48472
[]
no_license
pjakwert/gwell3d
8bef1d3616810e6a79aff12869f164cdff0ac8b5
798b928d91864ba7f2ed5b9ccd46b3d6a693908c
refs/heads/master
2020-03-26T00:42:58.091397
2018-08-10T21:48:12
2018-08-10T21:48:12
144,333,776
0
0
null
null
null
null
ISO-8859-2
C++
false
false
18,532
hh
vi-readmultipolyh.hh
#ifndef VI_READMULTIPOLYH_HH #define VI_READMULTIPOLYH_HH /*! \file vi-readmultipolyh.hh * Plik zawiera zapwiedź definicji funkcji czytającej i interpretującej * opis bryły złożonej. * \author Bogdan Kreczmer * \date 2004.06.07 */ #include <istream> #include "viexception.hh" #include "viscene.hh" class ViNTreeNode; /*! \namespace Vi * Przestrzeń nazw \b Vi zawiera definicję funkcji operujących * na strukturach biblioteki \ref viona-biblioteka "VIONA". */ namespace Vi { /*! * Funkcja czyta ze strumienia wejściowego opis bryły złożonej, * tworzy ją i umieszcza na scenie. * \param istrm - strumień wejściowy, * \param Scn - scena w której ma być umieszczona utworzona * wg. odczytanego opisu bryła złożona. * \param ListType - określa do jakiego rodzaju listy brył (normalnych * lub specjalnych) danej sceny zostanie wczytana dana bryła. * \param ObjectCreator - funkcja tworząca obiekt o nazwie, która przekazana * zostanie do niej za pomocą parametru \e ClassName. * \retval 0 - jeśli odczyt opisu i utworzenie bryły zakończyły się * powdzeniem. * \post Operacja wczytania nie powoduje usunięcia jakiekolwiek istniejącej * już bryły w danej scenie. * \exception ViException_Syntax - może być zgłoszony z kodami błędów: * \li \link vierrors.hh::ERRNUM_SYNTAX__UNEXPECTED_KEYWORD * ERRNUM_SYNTAX__UNEXPECTED_KEYWORD\endlink - * gdy napotkane słowo nie odpowiada oczekiwanemu słowu kluczowemu. * * \li \link vierrors.hh::ERRNUM_SYNTAX__UNEXPECTED_KEYWORD2 * ERRNUM_SYNTAX__UNEXPECTED_KEYWORD2\endlink - * gdy napotkane słowo nie odpowiada żadnemu żadnemu słowu * z zadanego zbioru oczekiwanych słów kluczowych. * \li \link vierrors.hh::ERRNUM_SYNTAX__UNEXPECTED_END * ERRNUM_SYNTAX__UNEXPECTED_END\endlink - * w przypadku, gdy osiągnięty został koniec strumienia, * nie zostało napotkane natomiast oczekiwane słowo kluczowe. * \li \link sxinterp.hh::ERRNUM_SX__UNEXP_CHAR * ERRNUM_SX__UNEXP_CHAR\endlink - gdy napotkany został * inny znaku niż oczekiwany. * \li \link sxinterp.hh::ERRNUM_SX__FAIL_FLOAT * ERRNUM_SX__FAIL_FLOAT\endlink - w przypadku niemożności * wczytania liczby typu \e float. * \li \link sxinterp.hh::ERRNUM_SX__FAIL_INT ERRNUM_SX__FAIL_INT\endlink - * w przypadku niemożności wczytania liczby typu \e integer. * \li \link sxinterp.hh::ERRNUM_SX__NO_KEYWORDS * ERRNUM_SX__NO_KEYWORDS\endlink - gdy brak listy ze słowami * kluczowymi. * \li \link sxinterp.hh::ERRNUM_SX__START_NO_KEYWORD * ERRNUM_SX__START_NO_KEYWORD\endlink - gdy napotkany znak * nie może być początkiem żadnego słowa kluczowego. * \li \link sxinterp.hh::ERRNUM_SX__NO_KEYWORD * ERRNUM_SX__NO_KEYWORD\endlink * - gdy znalezione słowo nie jest żadnym z oczekiwanych * słów kluczowych. * \li \link sxinterp.hh::ERRNUM_SX__NO_WORD ERRNUM_SX__NO_WORD\endlink - * gdy nie znaleziono żadnego słowa. * \li \link vierrors.hh::ERRNUM_MULTI__MOVE2LIST_FAILED * ERRNUM_MULTI__MOVE2LIST_FAILED\endlink - gdy nie powiodła * się operacja przesunięcia utworzonej bryły złożonej z listy * tymczasowej do listy finalnej danej sceny. * \li \link vierrors.hh::ERRNUM_POLYH__CREATE_FAILED * ERRNUM_POLYH__CREATE_FAILED\endlink - gdy nie powiodł się * odczyt klasy finalnej opisu danego węzła. * \exception ViException - może być zgłoszony z kodami błędów: * \li \link vierrors.hh::ERRMSG_POLYH__CREATE_FAILED * ERRMSG_POLYH__CREATE_FAILED\endlink - gdy nie * powiodło się utworzenie obiektu na podstawie otrzymanego * opisu. */ void ReadMultiPolyh( std::istream & istrm, ViScene & Scn, Vi::MultiPolyhListType ListType, ViNTreeNode * (*ObjectCreator)(const char *ClassName) = 0L ); //throw (ViException_Syntax); /*! * \anchor ReadMultiPolyh-file-excep * Funkcja czyta z pliku opis bryły złożonej, * tworzy ją i umieszcza na scenie. * \param FileName - nazwa pilku, * \param Scn - scena w której ma być umieszczona utworzona * wg. odczytanego opisu bryła złożona. * \param ListType - określa do jakiego rodzaju listy brył (normalnych * lub specjalnych) danej sceny zostanie wczytana dana bryła. * \param ObjectCreator - funkcja tworząca obiekt o nazwie, która przekazana * zostanie do niej za pomocą parametru \e ClassName. * * \post Operacja wczytania nie powoduje usunięcia jakiekolwiek istniejącej * już bryły w danej scenie. * * \exception ViException_File - zgłaszany jest kodem błedu * \link vierrors.hh::ERRNUM_FILE__OPEN2READ_FAILED * ERRNUM_FILE__OPEN2READ_FAILED\endlink. Zgłaszany on * jest w przypadku niepowodzenia operacji otwarcia do otczytu * pliku. * \exception ViException_Syntax - może być zgłoszony z kodami błędów: * \li \link vierrors.hh::ERRNUM_SYNTAX__UNEXPECTED_KEYWORD * ERRNUM_SYNTAX__UNEXPECTED_KEYWORD\endlink - * gdy napotkane słowo nie odpowiada oczekiwanemu słowu kluczowemu. * * \li \link vierrors.hh::ERRNUM_SYNTAX__UNEXPECTED_KEYWORD2 * ERRNUM_SYNTAX__UNEXPECTED_KEYWORD2\endlink - * gdy napotkane słowo nie odpowiada żadnemu żadnemu słowu * z zadanego zbioru oczekiwanych słów kluczowych. * \li \link vierrors.hh::ERRNUM_SYNTAX__UNEXPECTED_END * ERRNUM_SYNTAX__UNEXPECTED_END\endlink - * w przypadku, gdy osiągnięty został koniec strumienia, * nie zostało napotkane natomiast oczekiwane słowo kluczowe. * \li \link sxinterp.hh::ERRNUM_SX__UNEXP_CHAR * ERRNUM_SX__UNEXP_CHAR\endlink - gdy napotkany został * inny znaku niż oczekiwany. * \li \link sxinterp.hh::ERRNUM_SX__FAIL_FLOAT * ERRNUM_SX__FAIL_FLOAT\endlink - w przypadku niemożności * wczytania liczby typu \e float. * \li \link sxinterp.hh::ERRNUM_SX__FAIL_INT ERRNUM_SX__FAIL_INT\endlink - * w przypadku niemożności wczytania liczby typu \e integer. * \li \link sxinterp.hh::ERRNUM_SX__NO_KEYWORDS * ERRNUM_SX__NO_KEYWORDS\endlink - gdy brak listy ze słowami * kluczowymi. * \li \link sxinterp.hh::ERRNUM_SX__START_NO_KEYWORD * ERRNUM_SX__START_NO_KEYWORD\endlink - gdy napotkany znak * nie może być początkiem żadnego słowa kluczowego. * \li \link sxinterp.hh::ERRNUM_SX__NO_KEYWORD * ERRNUM_SX__NO_KEYWORD\endlink * - gdy znalezione słowo nie jest żadnym z oczekiwanych * słów kluczowych. * \li \link sxinterp.hh::ERRNUM_SX__NO_WORD ERRNUM_SX__NO_WORD\endlink - * gdy nie znaleziono żadnego słowa. * \li \link vierrors.hh::ERRNUM_MULTI__MOVE2LIST_FAILED * ERRNUM_MULTI__MOVE2LIST_FAILED\endlink - gdy nie powiodła * się operacja przesunięcia utworzonej bryły złożonej z listy * tymczasowej do listy finalnej danej sceny. * \li \link vierrors.hh::ERRNUM_POLYH__CREATE_FAILED * ERRNUM_POLYH__CREATE_FAILED\endlink - gdy nie powiodł się * odczyt klasy finalnej opisu danego węzła. * \exception ViException - może być zgłoszony z kodami błędów: * \li \link vierrors.hh::ERRMSG_POLYH__CREATE_FAILED * ERRMSG_POLYH__CREATE_FAILED\endlink - gdy nie * powiodło się utworzenie obiektu na podstawie otrzymanego * opisu. */ void ReadMultiPolyh( const char * FileName, ViScene & Scn, Vi::MultiPolyhListType ListType, ViNTreeNode * (*ObjectCreator)(const char *ClassName) = 0L ); // throw (ViException, ViException_File, ViException_Syntax); /*! * \anchor ReadMultiPolyh-file-noexcep * Funkcja czyta z pliku opis bryły złożonej, * tworzy ją i umieszcza na scenie. Jest ona wersją funkcji * \ref ReadMultiPolyh-file-excep "ReadMultiPolyh", która mogła * zgłaszać wyjątki.\n * W niniejszej funkcji mechanizm obsługi błędów został uproszczony. * Funkcja sama przechwytuje wszystkie wyjątki i na zewnątrz przekazuje * tylko obiekt z kodem błędu i komunikatem o błędzie.\n * Dokonane uproszczenie wynika z tego, że wszystkie zgłaszane błędy * są błędami typu fatalnego. Ich obsługa praktycznie można sprowadzić * jedynie do wyświetlenia otrzymanego komunikatu.\n * \param FileName - nazwa pilku, * \param Scn - scena w której ma być umieszczona utworzona * wg. odczytanego opisu bryła złożona. * \param ListType - określa do jakiego rodzaju listy brył (normalnych * lub specjalnych) danej sceny zostanie wczytana dana bryła. * \param Excep - w przypadku wystąpinia błędu zawiera kod błędu i * odpowiedni komunikat. * Wszystkie kody błędów wymienione są w opisie * funkcji \ref ReadMultiPolyh-file-excep "ReadMultiPolyh", * która może zgłaszać wyjątki. * \param ObjectCreator - funkcja tworząca obiekt o nazwie, która przekazana * zostanie do niej za pomocą parametru \e ClassName. * * \post Operacja wczytania nie powoduje usunięcia jakiekolwiek istniejącej * już bryły w danej scenie. * \retval 0 - gdy operacja zakończyła się powodzeniem, * \retval -1 - gdy nie powiodła się operacja otwarcia danego pliku * do odczytu. Komunikat błędu i jego kod * (w tym przypadku będzie to zawsze błąd o kodzie * \link vierrors.hh::ERRNUM_FILE__OPEN2READ_FAILED * ERRNUM_FILE__OPEN2READ_FAILED\endlink) * dostępny jest poprzez obiekt Excep * (patrz metody * \link Ba::Exception::GetErrID GetErrID\endlink i * \link Ba::Exception::GetErrMsg GetErrMsg\endlink). * \retval -2 - gdy wystąpił błąd odczytu opisu bryły złożonej. * Komunikat błędu i jego kod * dostępny jest poprzez obiekt Excep * (patrz metody * \link Ba::Exception::GetErrID GetErrID\endlink i * \link Ba::Exception::GetErrMsg GetErrMsg\endlink). * Wykaz zgłaszanych wyjątków znajduje się * w opisie wersji funkcji * \ref ReadMultiPolyh-file-excep "ReadMultiPolyh" ze zgłaszaniem * wyjątków. */ int ReadMultiPolyh( const char * FileName, ViScene & Scn, Vi::MultiPolyhListType ListType, ViException & Excep, ViNTreeNode * (*ObjectCreator)(const char *ClassName) = 0L ); /*! * \anchor ReadMultiPolyh-file-noexcep * Funkcja czyta z pliku opis bryły złożonej, * tworzy ją i przekazuje wskaźnik do niej wskaźnik. Jest ona wersją funkcji * \ref ReadMultiPolyh-file-excep "ReadMultiPolyh", która mogła * zgłaszać wyjątki.\n * W niniejszej funkcji mechanizm obsługi błędów został uproszczony. * Funkcja sama przechwytuje wszystkie wyjątki i na zewnątrz przekazuje * tylko obiekt z kodem błędu i komunikatem o błędzie.\n * Dokonane uproszczenie wynika z tego, że wszystkie zgłaszane błędy * są błędami typu fatalnego. Ich obsługa praktycznie można sprowadzić * jedynie do wyświetlenia otrzymanego komunikatu.\n * \param FileName - nazwa pilku, * \param Scn - (\b in) scena w której ma być umieszczona utworzona * wg. odczytanego opisu bryła złożona. * \param ppMultiPolyh - wskaźnik do zmiennej wskaźnikowej, w której * wpisany zostaje adres do utworzonej bryły złożonej, * o ile operacja odczytu jej opisu przebiegła pomyślnie. * \param Excep - (\b out) w przypadku wystąpinia błędu zawiera kod błędu i * odpowiedni komunikat. * Wszystkie kody błędów wymienione są w opisie * funkcji \ref ReadMultiPolyh-file-excep "ReadMultiPolyh", * która może zgłaszać wyjątki. * \param ObjectCreator - funkcja tworząca obiekt o nazwie, która przekazana * zostanie do niej za pomocą parametru \e ClassName. * * \post Operacja wczytania nie powoduje usunięcia jakiekolwiek istniejącej * już bryły w danej scenie. * \retval 0 - gdy operacja zakończyła się powodzeniem, * \retval -1 - gdy nie powiodła się operacja otwarcia danego pliku * do odczytu. Komunikat błędu i jego kod * (w tym przypadku będzie to zawsze błąd o kodzie * \link vierrors.hh::ERRNUM_FILE__OPEN2READ_FAILED * ERRNUM_FILE__OPEN2READ_FAILED\endlink) * dostępny jest poprzez obiekt Excep * (patrz metody * \link Ba::Exception::GetErrID GetErrID\endlink i * \link Ba::Exception::GetErrMsg GetErrMsg\endlink). * \retval -2 - gdy wystąpił błąd odczytu opisu bryły złożonej. * Komunikat błędu i jego kod * dostępny jest poprzez obiekt Excep * (patrz metody * \link Ba::Exception::GetErrID GetErrID\endlink i * \link Ba::Exception::GetErrMsg GetErrMsg\endlink). * Wykaz zgłaszanych wyjątków znajduje się * w opisie wersji funkcji * \ref ReadMultiPolyh-file-excep "ReadMultiPolyh" ze zgłaszaniem * wyjątków. */ int ReadMultiPolyh( const char * FileName, const ViScene& Scn, ViMultiPolyh ** ppMultiPolyh, ViException & Excep, ViNTreeNode * (*ObjectCreator)(const char *ClassName) = 0L ); /*! * \anchor ReadMultiPolyh-file-noexcep * Funkcja czyta z pliku opis bryły złożonej, * tworzy ją i przekazuje wskaźnik do niej wskaźnik. Jest ona wersją funkcji * \ref ReadMultiPolyh-file-excep "ReadMultiPolyh", która mogła * zgłaszać wyjątki.\n * Niniejsza funkcja nie odwołuje się do całęj sceny, a jedynie jako * jeden ze swoich parametrów wymaga referencji na listę bibliotek * brył wzorcowych. * * Ponadto w niniejsza funkcja zawiera uproszczony mechanizm obsługi błędów. * Funkcja sama przechwytuje wszystkie wyjątki i na zewnątrz przekazuje * tylko obiekt z kodem błędu i komunikatem o błędzie.\n * Dokonane uproszczenie wynika z tego, że wszystkie zgłaszane błędy * są błędami typu fatalnego. Ich obsługa praktycznie można sprowadzić * jedynie do wyświetlenia otrzymanego komunikatu.\n * \param FileName - nazwa pilku, * \param PatteLibList - (\b in) lista bibliotek brył wzorcowych, * które mają być podstawą tworzenia brył elementarnych * jako składników całej bryły złożonej * wg. odczytanego jej opisu. * \param ppMultiPolyh - wskaźnik do zmiennej wskaźnikowej, w której * wpisany zostaje adres do utworzonej bryły złożonej, * o ile operacja odczytu jej opisu przebiegła pomyślnie. * \param Excep - (\b out) w przypadku wystąpinia błędu zawiera kod błędu i * odpowiedni komunikat. * Wszystkie kody błędów wymienione są w opisie * funkcji \ref ReadMultiPolyh-file-excep "ReadMultiPolyh", * która może zgłaszać wyjątki. * \param ObjectCreator - funkcja tworząca obiekt o nazwie, która przekazana * zostanie do niej za pomocą parametru \e ClassName. * * \post Operacja wczytania nie powoduje usunięcia jakiekolwiek istniejącej * już bryły w danej scenie. * \retval 0 - gdy operacja zakończyła się powodzeniem, * \retval -1 - gdy nie powiodła się operacja otwarcia danego pliku * do odczytu. Komunikat błędu i jego kod * (w tym przypadku będzie to zawsze błąd o kodzie * \link vierrors.hh::ERRNUM_FILE__OPEN2READ_FAILED * ERRNUM_FILE__OPEN2READ_FAILED\endlink) * dostępny jest poprzez obiekt Excep * (patrz metody * \link Ba::Exception::GetErrID GetErrID\endlink i * \link Ba::Exception::GetErrMsg GetErrMsg\endlink). * \retval -2 - gdy wystąpił błąd odczytu opisu bryły złożonej. * Komunikat błędu i jego kod * dostępny jest poprzez obiekt Excep * (patrz metody * \link Ba::Exception::GetErrID GetErrID\endlink i * \link Ba::Exception::GetErrMsg GetErrMsg\endlink). * Wykaz zgłaszanych wyjątków znajduje się * w opisie wersji funkcji * \ref ReadMultiPolyh-file-excep "ReadMultiPolyh" ze zgłaszaniem * wyjątków. */ int ReadMultiPolyh( const char * FileName, const ViPatteLibList& PatteLibList, ViMultiPolyh ** ppMultiPolyh, ViException & Excep, ViNTreeNode * (*ObjectCreator)(const char *ClassName) ); }; #endif
64bdaaa8c19a36b26cda468f240a6aea377c4780
18677e8db4cfd2e5f4c8167bde56a7434e3761a2
/game/game.h
10d395e972cfb8aa6a4c1b409ffcb7fef2084132
[]
no_license
ChickenGameProject/Chicken
d4c3a5098aa4e91dd4cc76282ee3e22f32dad414
82ae052a5a172bef372576db1e46ad472aae6524
refs/heads/master
2021-01-17T11:14:38.438237
2016-06-25T22:32:55
2016-06-25T22:32:55
59,895,274
0
1
null
2016-06-01T12:26:24
2016-05-28T13:13:57
null
UTF-8
C++
false
false
780
h
game.h
#ifndef GAME_H #define GAME_H #include <QGraphicsView> #include <QGraphicsScene> #include <QMouseEvent> #include <QString> #include<QMediaPlayer> #include "player.h" #include <QVector> #include "life.h" #include "score.h" #include "level.h" #include "button.h" class Game : public QGraphicsView{ Q_OBJECT public: Game(QWidget* parent=NULL); virtual ~Game(){} QGraphicsScene* scene; void displayMenu(); void mouseMoveEvent(QMouseEvent *event); void setPlayer(); void decreaseLife(); void increaseLife(); void GameOver(); public slots: void start(); void restart(); public: // Player * ship1; QVector<Life*> life; Score * score; Level * level; Button * restartt; Button * exitt; }; #endif // GAME_H
c7f1e949948fe5dcaf5ee0d78d62e621951f53bb
cb39b564459244d9df0563f8874cecd30ec33283
/proj1.cpp
3079e155e5c9d88653d864b8f41749885b808629
[]
no_license
KaiGVilbig/202_proj1-rotate_text
6cd5fae6ff0ab211a44c82e0e40bfed12557e26e
3ccd71f9e2d549d1263ace5c0a9f9a5e77091745
refs/heads/master
2022-12-18T10:01:35.741568
2020-09-29T19:44:38
2020-09-29T19:44:38
299,721,152
0
0
null
null
null
null
UTF-8
C++
false
false
4,746
cpp
proj1.cpp
#include <iostream> #include <fstream> #include <iomanip> #include <cmath> #include <cstdlib> using namespace std; const int BOARDER_SIZE = 75; int mainMenu(); int load(char pic[][BOARDER_SIZE]); int create(char pic[][BOARDER_SIZE]); int display(char pic[][BOARDER_SIZE]); int rotate(char pic[][BOARDER_SIZE]); int invert(char pic[][BOARDER_SIZE]); int main() { char pic[BOARDER_SIZE][BOARDER_SIZE] = { ' ' }; int menuChoice; cout << "\n"; cout << "Welcome to the ASCII art tool"; do { menuChoice = mainMenu(); switch (menuChoice) { case 1: load(pic); break; case 2: create(pic); break; case 3: display(pic); break; case 4: rotate(pic); break; case 5: invert(pic); break; } } while (menuChoice != 6); cout << "Thank you for using the ASCII art tool\n"; return 0; } int mainMenu() { int choice; do { cout << "\n"; cout << "What would you like to do?\n"; cout << "1. Load ASCII art from file\n" "2. Create ASCII art manually\n" "3. Display art\n" "4. Rotate art\n" "5. Invert art\n" "6. Exit\n"; cin >> choice; } while (choice < 1 || choice > 6); return choice; } int create(char pic[][BOARDER_SIZE]) { int xCoord; int yCoord; char character; cout << "This will modify the current art\n"; //make sure user enters number between 0 inclusive and 75 exclusive do { cout << "Enter the x coordinate between 0 and 75\n"; cin >> xCoord; } while (xCoord < 0 || xCoord > BOARDER_SIZE); //make sure user enters number between 0 inclusive and 75 exclusive do { cout << "Enter the y coordinate between 0 and 75\n"; cin >> yCoord; } while (yCoord < 0 || yCoord > BOARDER_SIZE); cout << "Enter the character for that location:\n"; cin >> character; //yCoord is first since when printing to the screen, //the first term (yCoord) is the one that prints vertical pic[yCoord][xCoord] = character; return 0; } int invert(char pic[][BOARDER_SIZE]) { char invertedPic[BOARDER_SIZE][BOARDER_SIZE] = { ' ' }; int choice; cout << "Would you like to invert it vertically or horizontally?\n"; cout << "1. Vertical\n" "2. Horizontal\n"; cin >> choice; //input validation while (choice != 1 && choice != 2) { cout << "Would you like to invert it vertically or horizontally?\n"; cout << "1. Vertical\n" "2. Horizontal\n"; cin >> choice; } switch (choice) { case 1: //since inverting vertically is supposed to look like the image //was rotated twice, the program just calls rotate function twice rotate(pic); rotate(pic); break; case 2: for (int i = 0; i < BOARDER_SIZE; i++) { for (int j = 0; j < BOARDER_SIZE; j++) { invertedPic[i][j] = pic[i][(BOARDER_SIZE - 1) - j]; } } for (int i = 0; i < BOARDER_SIZE; i++) { for (int j = 0; j < BOARDER_SIZE; j++) { pic[i][j] = ' '; pic[i][j] = invertedPic[i][j]; } } break; } return 0; } int rotate(char pic[][BOARDER_SIZE]) { char rotatedPic[BOARDER_SIZE][BOARDER_SIZE] = { ' ' }; for (int i = 0; i < BOARDER_SIZE; i++) { for (int j = 0; j < BOARDER_SIZE; j++) { //use a temp array so that the program does not lose //needed characters when rotating rotatedPic[i][j] = pic[(BOARDER_SIZE - 1) - j][i]; } } //used to test to see if rotate worked properly //display(rotatedPic); //changing the origional pic array to the rotated pic array for (int i = 0; i < BOARDER_SIZE; i++) { for (int j = 0; j < BOARDER_SIZE; j++) { pic[i][j] = ' '; pic[i][j] = rotatedPic[i][j]; } } return 0; } int display(char pic[][BOARDER_SIZE]) { for (int i = 0; i < BOARDER_SIZE; i++) { for (int j = 0; j < BOARDER_SIZE; j++) { cout << pic[i][j]; } cout << "\n"; } return 0; } int load(char pic[][BOARDER_SIZE]) { ifstream file; string whichFile; int x; int y; char character; cout << "What is the name of the data file to import?\n"; cin >> whichFile; file.open(whichFile.c_str()); // clear the array so that the program can put a different pic into it // when the user wants to load in a different pic for (int i = 0; i < BOARDER_SIZE; i++) { for (int j = 0; j < BOARDER_SIZE; j++) { pic[i][j] = ' '; } } for (int i = 0; i < BOARDER_SIZE; i++) { for (int j = 0; j < BOARDER_SIZE; j++) { file >> x >> y; file >> character; pic[x][y] = character; //use to test to make sure my code above works //cout << pic[i][j]; } //same as comment above //cout << "\n"; } file.close(); cout << "Done\n"; return 0; }
6b47f5814cf1beb1c72b8feea9ee49e4ecf492cc
9ada6ca9bd5e669eb3e903f900bae306bf7fd75e
/case3/ddtFoam_Tutorial/0.007600000/fH
1f4b9f1f1cf9106b2341f9ad9aaea2849f963710
[]
no_license
ptroyen/DDT
a6c8747f3a924a7039b71c96ee7d4a1618ad4197
6e6ddc7937324b04b22fbfcf974f9c9ea24e48bf
refs/heads/master
2020-05-24T15:04:39.786689
2018-01-28T21:36:40
2018-01-28T21:36:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
123,594
fH
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.1.1 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "0.007600000"; object fH; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 0 0 0 0 0]; internalField nonuniform List<scalar> 12384 ( 0.0275382 0.0272283 0.0268856 0.0266191 0.0264497 0.0264467 0.0265541 0.026757 0.0270328 0.0273782 0.0278105 0.0282734 0.0286219 0.0292074 0.0248714 0.0247949 0.0249435 0.0254694 0.02597 0.0264724 0.0268888 0.0271413 0.0272762 0.0273617 0.0273284 0.0272755 0.0271698 0.0270201 0.0268271 0.0266095 0.0264074 0.0262341 0.0261232 0.0260574 0.0260332 0.0260482 0.0260787 0.0261057 0.0261526 0.0262117 0.0263089 0.0264547 0.0257391 0.0239605 0.0299114 0.030886 0.0308902 0.0305724 0.0303047 0.0300824 0.0298887 0.029715 0.0295505 0.0294245 0.029318 0.0292383 0.0291592 0.0291075 0.029089 0.0291066 0.0291497 0.0291843 0.0292195 0.0292436 0.0292607 0.0292815 0.0292872 0.0292957 0.0293063 0.0293292 0.0294665 0.029911 0.029558 0.0292285 0.0308627 0.0310296 0.0307239 0.0306513 0.0306267 0.0306084 0.0305812 0.0305511 0.030511 0.0304736 0.0304407 0.0304191 0.0304003 0.0303991 0.0304033 0.030419 0.0304396 0.0304638 0.0304874 0.0305159 0.0305382 0.0305763 0.0305977 0.0306495 0.0306977 0.0307538 0.0307911 0.0307923 0.0307556 0.0306819 0.0321733 0.0322294 0.0323474 0.0324117 0.032459 0.0324408 0.0323681 0.0322856 0.0322214 0.0321425 0.0321351 0.0320529 0.0320729 0.0320075 0.0320256 0.0319853 0.0319846 0.0319809 0.0319735 0.032008 0.0320934 0.0321219 0.0318708 0.0320949 0.0322449 0.0322456 0.0321894 0.0321363 0.0321141 0.0320677 0.0357329 0.0355275 0.03577 0.0360882 0.0362411 0.0363014 0.0363294 0.0363312 0.0363275 0.0363051 0.0362798 0.0362546 0.0362294 0.0361959 0.0361508 0.0361091 0.0360631 0.0360305 0.0359999 0.0359721 0.0359485 0.0359157 0.0358924 0.035868 0.0358252 0.0357456 0.0356291 0.035469 0.0352237 0.035043 0.032582 0.0326826 0.0331489 0.0338256 0.0342522 0.0344633 0.0345173 0.0344426 0.0343427 0.0341656 0.0339551 0.0337425 0.0335472 0.0333821 0.0332504 0.033147 0.033075 0.033012 0.0329605 0.0328642 0.0328494 0.0327682 0.0327012 0.0324991 0.0322926 0.0317412 0.0285325 0.0276467 0.0280215 0.0283228 0.0351967 0.0365391 0.0370959 0.0376284 0.0377692 0.037714 0.0376093 0.0375034 0.0374159 0.0373684 0.0373511 0.0373548 0.0373769 0.0374105 0.037439 0.037483 0.0375413 0.0376094 0.0376791 0.0375837 0.0363373 0.0351332 0.0350931 0.0351429 0.0351569 0.0351849 0.0352443 0.0353121 0.0353087 0.0351908 0.0334281 0.0333989 0.0334138 0.0334326 0.0333963 0.0333271 0.0332253 0.0331233 0.0330395 0.0329639 0.0329131 0.032847 0.0327714 0.0327847 0.0327535 0.0327395 0.0326733 0.0331588 0.037325 0.0380388 0.0378227 0.0377467 0.0376484 0.0375415 0.0374179 0.0373505 0.0374359 0.0377851 0.0385945 0.0398044 0.0335562 0.0333404 0.033344 0.0335147 0.03372 0.0338377 0.0338693 0.0338205 0.0337296 0.0336827 0.0335603 0.0334288 0.0332681 0.0332015 0.0331713 0.0330566 0.0329414 0.0327883 0.0328459 0.0346555 0.0362921 0.03636 0.0363862 0.0364181 0.0364381 0.0364932 0.0365776 0.0367018 0.0368706 0.037032 0.0342958 0.0343432 0.0346264 0.0348286 0.0348373 0.0348212 0.0347854 0.0347369 0.0346777 0.0345965 0.0345111 0.0343956 0.034238 0.0340171 0.033861 0.0359092 0.0384627 0.0386221 0.0383568 0.0380947 0.0379425 0.0378916 0.0378719 0.0378894 0.0379068 0.0379264 0.0379574 0.0379891 0.038066 0.0385559 0.0360819 0.0358992 0.036271 0.0369628 0.0366191 0.0364224 0.0364135 0.0364292 0.0364918 0.0365093 0.0366154 0.036644 0.0367657 0.0368292 0.0369393 0.036991 0.0370694 0.0371188 0.0371554 0.0371493 0.0371076 0.03706 0.0370046 0.0369152 0.0368509 0.0367302 0.0366245 0.0364587 0.0365155 0.0363933 0.0391071 0.0388415 0.0384719 0.0384446 0.0388529 0.0393332 0.0404854 0.0475337 0.0522009 0.052595 0.0526573 0.0526479 0.0526071 0.0525601 0.0524407 0.052338 0.0522051 0.0520287 0.0518526 0.0516573 0.0516423 0.0518241 0.0520447 0.0522544 0.0522103 0.0520505 0.0517398 0.0512427 0.0494355 0.0476794 0.0266669 0.0260761 0.0254384 0.0251979 0.0252436 0.0253931 0.0255977 0.0257994 0.0260246 0.0263591 0.0268813 0.0276578 0.0284284 0.0291697 0.0248468 0.0247842 0.0250317 0.0256597 0.026436 0.0272343 0.027806 0.0280318 0.0280796 0.028031 0.0279353 0.0277442 0.0274641 0.0269848 0.0264176 0.0259293 0.0256187 0.0254769 0.0254282 0.0253937 0.0253684 0.0253534 0.0253863 0.0254827 0.0256523 0.0258608 0.0260738 0.0263407 0.0262314 0.0251468 0.0300635 0.0309254 0.0308128 0.0304046 0.0300065 0.0296064 0.029237 0.0289206 0.0286672 0.0284849 0.0283749 0.0282982 0.0282769 0.0283726 0.0285193 0.0287043 0.0288718 0.0290058 0.0291008 0.029164 0.0291931 0.0292088 0.0292112 0.0292069 0.0292073 0.0292206 0.0292848 0.0296149 0.0299048 0.0298644 0.0309389 0.0309382 0.0307185 0.0307155 0.0307535 0.0307754 0.0307556 0.0306939 0.0305853 0.0304481 0.0303049 0.0301898 0.0301329 0.0301397 0.0302051 0.0302684 0.0303081 0.0303264 0.0303303 0.0303256 0.0303248 0.0303348 0.0303649 0.0304193 0.0304982 0.0305936 0.0306878 0.0307483 0.0307576 0.0307161 0.0321644 0.03218 0.03229 0.0323903 0.0323815 0.0321579 0.0319461 0.0318073 0.0317132 0.0316526 0.0316015 0.0315702 0.0315322 0.0315047 0.0314896 0.0314912 0.0315349 0.0316131 0.0317006 0.0317985 0.0319271 0.0320608 0.0319695 0.031991 0.0322657 0.03216 0.0317501 0.0316745 0.0319741 0.0322947 0.0356785 0.0356079 0.0360069 0.0363774 0.0365806 0.03667 0.0366713 0.0366107 0.0365322 0.0364585 0.0363955 0.0363254 0.0362429 0.0361326 0.0360095 0.0358888 0.0357921 0.0357267 0.0356898 0.0356717 0.035672 0.0356815 0.035709 0.035736 0.0357515 0.0357335 0.0356572 0.0355379 0.0353542 0.0351434 0.0325948 0.0331193 0.0343575 0.0355107 0.035907 0.0357509 0.0354117 0.035046 0.0346374 0.0340658 0.0335127 0.0330609 0.0327551 0.0325628 0.0324492 0.0323997 0.0323923 0.0324047 0.0324205 0.0324469 0.0324835 0.0325152 0.0325363 0.0324957 0.0323589 0.0320747 0.0306006 0.0285633 0.0279716 0.0285701 0.0348454 0.0364603 0.0374961 0.0378609 0.037494 0.0370879 0.036827 0.0367233 0.0367164 0.036751 0.0367996 0.0368438 0.0368651 0.0369106 0.0369608 0.0370154 0.0371207 0.0372662 0.0374573 0.0375632 0.037153 0.0359742 0.0350416 0.0348243 0.034758 0.0347562 0.0349042 0.0351232 0.0354606 0.0356015 0.033448 0.0334665 0.0336404 0.0336561 0.0334739 0.0331958 0.0328918 0.032612 0.0323778 0.0322007 0.0320689 0.0319866 0.0319863 0.0320721 0.0322094 0.0323929 0.0325097 0.0327112 0.0348179 0.0376044 0.0381239 0.0380834 0.0380272 0.0377531 0.0372977 0.0368586 0.036631 0.0366871 0.0374499 0.0393101 0.0335564 0.0333127 0.033459 0.0340047 0.034343 0.0343398 0.0341098 0.033736 0.0333881 0.0330781 0.0328107 0.0326226 0.0324991 0.0324837 0.0325313 0.0326203 0.0326946 0.0326884 0.0326193 0.0334121 0.0353602 0.0363245 0.0363681 0.0363056 0.0361436 0.0362423 0.0364215 0.0365807 0.0367751 0.0370144 0.034343 0.0344329 0.0349303 0.0350648 0.0349244 0.0346958 0.0344126 0.0341634 0.0340057 0.033963 0.0340447 0.0341361 0.0341776 0.0340965 0.0339184 0.0342728 0.0357413 0.0375413 0.0383657 0.0380393 0.0377797 0.0376881 0.0377594 0.0378478 0.0379735 0.038047 0.0380567 0.0380428 0.0380887 0.0385953 0.0362998 0.03651 0.0368548 0.0367649 0.0364841 0.0364505 0.0365185 0.0366132 0.036684 0.0367592 0.0367878 0.0368409 0.0368907 0.0369921 0.0371051 0.0372721 0.0373949 0.0374922 0.0374854 0.037317 0.0370345 0.0367218 0.0364707 0.0364409 0.0365232 0.0366028 0.0365947 0.036482 0.0364919 0.0364261 0.0411876 0.0393567 0.0376751 0.0377025 0.0385482 0.0401763 0.0449329 0.0508038 0.0525122 0.0526329 0.0526075 0.0525095 0.0523431 0.0521681 0.0519742 0.0517796 0.0515173 0.0511554 0.0505569 0.0498252 0.0490345 0.0488215 0.0494 0.0503464 0.0512276 0.0517589 0.0517482 0.0513503 0.0493734 0.0475383 0.0256822 0.0248769 0.024666 0.0249242 0.0254321 0.0259472 0.0263559 0.0266079 0.0266706 0.0266251 0.0266802 0.0270838 0.0280575 0.0290941 0.0248291 0.0247741 0.0250476 0.025761 0.0267491 0.0276916 0.0281918 0.0283087 0.0283347 0.0282842 0.0281471 0.0278901 0.0275098 0.0267832 0.0259977 0.025552 0.0254196 0.0254622 0.0255469 0.0256097 0.0256183 0.0255582 0.0254675 0.0253762 0.0253553 0.0254827 0.0257257 0.0260822 0.0263166 0.0257108 0.0301591 0.0309717 0.0308212 0.0304066 0.0299827 0.0295338 0.0290683 0.0286357 0.0283033 0.0281282 0.0280377 0.02796 0.0280036 0.0282726 0.0286425 0.0289682 0.0291635 0.0292697 0.0293163 0.0293295 0.0293279 0.0293149 0.0292818 0.0292374 0.0291884 0.0291514 0.0291551 0.0293311 0.0297366 0.0299931 0.0309623 0.0308789 0.0307707 0.0309044 0.0310333 0.0310657 0.0310082 0.0309036 0.0307726 0.0305578 0.0302544 0.0300234 0.0299853 0.0300877 0.0302349 0.0303148 0.0303197 0.0302905 0.0302438 0.0301916 0.0301518 0.0301392 0.0301475 0.0301881 0.0302671 0.0303775 0.0305044 0.0306261 0.0307038 0.0307077 0.0321557 0.032104 0.0322011 0.0323363 0.0319872 0.0316769 0.0315349 0.0314809 0.0314308 0.0313812 0.031295 0.0312195 0.0311555 0.0311008 0.0310722 0.0310729 0.0311317 0.0312277 0.0313525 0.0315 0.031688 0.0319166 0.0320118 0.0319363 0.0320389 0.0317421 0.031137 0.0309738 0.0313242 0.0318574 0.0356463 0.0357257 0.0362771 0.0367253 0.0369461 0.0369788 0.0368776 0.0367236 0.0365589 0.0364503 0.0363889 0.0363083 0.0361496 0.035945 0.0357591 0.0356285 0.0355695 0.0355528 0.035556 0.0355613 0.035559 0.0355575 0.0355657 0.0355906 0.0356228 0.03565 0.0356487 0.0355729 0.0354332 0.03522 0.0326578 0.0337322 0.035586 0.0367459 0.0366188 0.035953 0.0352908 0.0347711 0.0341959 0.0333713 0.0326976 0.0323083 0.0321236 0.0320747 0.0321021 0.0321791 0.0322561 0.0323248 0.0323629 0.0324006 0.0323769 0.0323914 0.0324091 0.0324249 0.0323757 0.0322135 0.0316662 0.0299594 0.0283032 0.0283813 0.0345648 0.0364176 0.0379808 0.0373896 0.0367687 0.0365143 0.0365227 0.0366364 0.0367913 0.0369519 0.0370891 0.0371865 0.0372342 0.0372374 0.0372228 0.0371626 0.0370907 0.0370815 0.0371929 0.0374021 0.0374359 0.0368849 0.0358017 0.0349244 0.0344604 0.0344073 0.0345678 0.0347065 0.0350525 0.035677 0.0334745 0.0337368 0.0339568 0.0337534 0.0332819 0.0327807 0.0323041 0.0318812 0.0315198 0.031244 0.0310605 0.0309864 0.0309877 0.0311396 0.0313865 0.0317341 0.0320869 0.0323289 0.0332611 0.0358936 0.0379548 0.0383603 0.0383661 0.0379754 0.0372328 0.036566 0.0361354 0.0361408 0.036626 0.0385645 0.0335316 0.0333325 0.0338866 0.0345656 0.034594 0.0341611 0.0334914 0.0328361 0.0323361 0.0319037 0.0316295 0.0314183 0.0313236 0.0313123 0.0314489 0.0316798 0.0319803 0.0322582 0.0323747 0.032717 0.0342233 0.0359422 0.0364164 0.0361941 0.0357099 0.0358674 0.0362509 0.0365882 0.0367913 0.0370053 0.0344739 0.0349907 0.0351744 0.0350268 0.0346266 0.0340558 0.0334388 0.0329158 0.0325425 0.0323886 0.0324854 0.032779 0.033242 0.0336381 0.0337787 0.0337685 0.0341665 0.0355704 0.037208 0.037935 0.0378171 0.0377359 0.0378423 0.0380698 0.0383015 0.0384029 0.0383128 0.0381296 0.0381355 0.0386746 0.0365833 0.0368836 0.0368494 0.0365877 0.0364854 0.0365704 0.0366944 0.0367932 0.0368443 0.0368539 0.0368543 0.0368078 0.0367711 0.0367254 0.0367443 0.0368307 0.037013 0.0371887 0.0372083 0.036933 0.0363199 0.0358001 0.0352911 0.0350515 0.0351224 0.0356241 0.0361668 0.0363761 0.0364576 0.0364374 0.0433194 0.0394015 0.0371758 0.0382821 0.0403433 0.0442133 0.0496952 0.0523108 0.0525944 0.0524744 0.0521858 0.0518294 0.0515292 0.0513227 0.051263 0.0512843 0.0512995 0.0511728 0.0507 0.0496068 0.0478833 0.0463921 0.0459361 0.0466975 0.0475573 0.0494321 0.0507307 0.0505237 0.0480921 0.0472177 0.0244904 0.0243529 0.024847 0.0256889 0.0264614 0.0270052 0.0273506 0.0275928 0.0277762 0.0276139 0.0271926 0.0270716 0.0276991 0.028985 0.0248165 0.024758 0.0249707 0.0256185 0.0266291 0.0276544 0.0281931 0.0283449 0.0283396 0.0282628 0.0281586 0.0279079 0.0274384 0.0265207 0.0257304 0.0255389 0.0256749 0.0258802 0.0260361 0.0261084 0.0261145 0.0260716 0.0259349 0.0257093 0.0254559 0.0253514 0.0254664 0.0258033 0.0262322 0.0259639 0.0301822 0.0310326 0.0309552 0.0306755 0.0303889 0.0299989 0.0294207 0.0287363 0.0282551 0.028044 0.0279556 0.0278754 0.0281423 0.0286971 0.0291518 0.0293469 0.0293618 0.0292953 0.029198 0.0291301 0.0291087 0.0291385 0.0291837 0.0292056 0.0291798 0.0291219 0.0290791 0.0291571 0.029531 0.0299702 0.0309685 0.0308647 0.0308737 0.0311119 0.0312316 0.0311604 0.0310245 0.0309453 0.0308651 0.0306637 0.0301715 0.0298048 0.0299011 0.0301322 0.030297 0.030291 0.0302036 0.0300682 0.029915 0.0297894 0.0297264 0.0297277 0.0297791 0.0298705 0.029992 0.0301348 0.0302961 0.0304647 0.0306084 0.0306766 0.0321539 0.0320469 0.0321553 0.0320837 0.0315371 0.0313982 0.0313951 0.0313741 0.0312858 0.031129 0.0309514 0.0307784 0.0306487 0.0305703 0.0305447 0.0305959 0.0306967 0.0308512 0.0310142 0.031198 0.0314192 0.0316897 0.0319365 0.0319598 0.031916 0.0317162 0.0312377 0.0308477 0.0312867 0.031864 0.0356355 0.03581 0.0364878 0.037021 0.0372835 0.0372989 0.0371277 0.0368082 0.0364813 0.0363615 0.036334 0.0361998 0.0359594 0.0357097 0.0355565 0.0355231 0.0355761 0.0356625 0.035746 0.0357971 0.0357956 0.0357436 0.0356687 0.0355997 0.0355711 0.0355786 0.0355983 0.0355734 0.0354656 0.0352687 0.0327371 0.0342545 0.0365085 0.0376099 0.0371959 0.036217 0.0352363 0.0347072 0.0339735 0.0329162 0.0322623 0.0320065 0.0319693 0.0320599 0.0322144 0.0323835 0.0325406 0.0326668 0.0327402 0.0327213 0.0326477 0.0325565 0.0324759 0.0324247 0.0323687 0.0322609 0.0320063 0.030925 0.028925 0.0283307 0.0346949 0.0376908 0.0376507 0.0367351 0.0364259 0.036437 0.0366026 0.0368415 0.0370851 0.0373208 0.0375154 0.0376646 0.0377477 0.0377688 0.0377329 0.0376082 0.037417 0.0372225 0.0371191 0.0372196 0.0374008 0.0372958 0.0366187 0.0355707 0.0346306 0.0342897 0.0344781 0.0345647 0.0346912 0.0354786 0.0336867 0.0342786 0.0341522 0.0335414 0.0328633 0.0322391 0.0316344 0.0310719 0.0305939 0.0302177 0.0299956 0.0299097 0.0299778 0.030168 0.0305006 0.0309603 0.0314981 0.0319366 0.0324549 0.0342312 0.0367613 0.0381611 0.0383693 0.0377697 0.0368116 0.0360867 0.0355667 0.0355029 0.0360414 0.0378942 0.0334069 0.0335314 0.0345242 0.0348506 0.034337 0.0334447 0.032641 0.0319695 0.0314126 0.0309652 0.0306008 0.0304124 0.0302704 0.0303119 0.0304871 0.0307791 0.0311665 0.0316251 0.0319971 0.0323014 0.0333643 0.0352353 0.0363784 0.036153 0.035435 0.0356325 0.0361541 0.0365785 0.0368592 0.0370268 0.0348056 0.0352231 0.0351985 0.034849 0.0341288 0.0332163 0.0322659 0.031478 0.0309002 0.0306499 0.0307111 0.0310789 0.0316915 0.0324177 0.0331134 0.0334197 0.0335494 0.0343557 0.0358906 0.0373348 0.0377507 0.0376779 0.0378209 0.0381618 0.0384791 0.0386041 0.0384424 0.0381918 0.0382445 0.0388614 0.0367428 0.0369459 0.0367467 0.0365536 0.0366045 0.0367722 0.0369394 0.0370757 0.0371683 0.0372189 0.0372171 0.037166 0.037067 0.0369294 0.0367851 0.0366827 0.0366955 0.0368366 0.0369616 0.0367961 0.036083 0.0354095 0.034753 0.0340856 0.0339167 0.034482 0.0354628 0.0361097 0.0363839 0.0364384 0.0445727 0.0393248 0.0372193 0.0403562 0.0438925 0.0485588 0.0519522 0.0525769 0.0523575 0.0518668 0.0512239 0.050569 0.0500793 0.0497945 0.0498501 0.0500661 0.0505178 0.0509834 0.0511607 0.0507901 0.0492256 0.0463643 0.0446876 0.0450098 0.045384 0.0457452 0.0472979 0.0475543 0.046003 0.0473445 0.0240301 0.0246139 0.025723 0.0266789 0.0272673 0.027525 0.027603 0.027678 0.0279128 0.0281682 0.0278675 0.0273303 0.0275919 0.0288833 0.0248116 0.0247367 0.0248654 0.0253149 0.0261756 0.0271983 0.027849 0.0280287 0.0279462 0.0278016 0.0278653 0.0277446 0.0272615 0.0262168 0.0256535 0.0257803 0.0260329 0.0262203 0.0262536 0.026201 0.0261648 0.0261699 0.0261379 0.0259898 0.0257067 0.0254125 0.0253447 0.0256013 0.0261159 0.0260576 0.0301345 0.0311023 0.0311841 0.0311503 0.0311245 0.0308447 0.0300261 0.0289458 0.0282896 0.0280136 0.027859 0.027928 0.0285922 0.0292504 0.0294638 0.0293372 0.0290747 0.0288116 0.0286397 0.0285558 0.028561 0.0286574 0.0288071 0.0289624 0.0290603 0.0290657 0.0290217 0.0290513 0.029382 0.0299351 0.0309726 0.0308758 0.0309806 0.0312613 0.0313016 0.0310539 0.0308499 0.0308557 0.0308941 0.0307424 0.0300959 0.0296112 0.0299077 0.0302629 0.0302876 0.0301232 0.0298676 0.0295955 0.0293687 0.0292215 0.0291662 0.0292005 0.0293036 0.0294645 0.0296638 0.0298715 0.0300816 0.0302925 0.0304971 0.0306369 0.0321588 0.032026 0.03208 0.0314857 0.0312943 0.0313615 0.0313806 0.0312824 0.031055 0.0307613 0.0304662 0.0302328 0.0300744 0.0300073 0.0299879 0.0300555 0.0302233 0.0304392 0.0306729 0.0309156 0.0311673 0.0314591 0.0317842 0.0319466 0.0319061 0.0317548 0.0314951 0.0308984 0.031569 0.0322264 0.035635 0.0358222 0.0365811 0.0371969 0.0374726 0.0375167 0.037293 0.0367789 0.0363177 0.0362346 0.0362105 0.0360424 0.0357521 0.0355298 0.0354817 0.0355782 0.035743 0.0359239 0.0360811 0.0361753 0.036194 0.0361139 0.0359665 0.0357869 0.0356429 0.035573 0.035561 0.0355525 0.0354768 0.0352914 0.0327656 0.0345813 0.0371093 0.0382985 0.0379803 0.0367215 0.0352376 0.0347204 0.0338486 0.0325996 0.032024 0.0318887 0.031964 0.0321567 0.0323998 0.0326714 0.0329265 0.0331261 0.0332177 0.0332011 0.0330735 0.0328941 0.0326909 0.0325222 0.0323949 0.0322743 0.0320918 0.0314143 0.0294583 0.028431 0.0353233 0.0384396 0.0370083 0.0364677 0.0363907 0.036474 0.0367172 0.0370268 0.037334 0.0376184 0.0378659 0.0380515 0.0381694 0.0382045 0.038176 0.0380497 0.0378225 0.0375374 0.0372653 0.03717 0.0372957 0.0373742 0.0370715 0.0362461 0.0351181 0.0343962 0.0344661 0.0345427 0.034479 0.035209 0.034583 0.0348048 0.0340124 0.0331173 0.0324432 0.0317397 0.0309851 0.0302773 0.0297059 0.0292859 0.0290142 0.0289348 0.0289964 0.0292593 0.0296643 0.0302155 0.0308768 0.0315062 0.0319957 0.033136 0.0353702 0.0372575 0.0378723 0.0372069 0.0362324 0.0355959 0.0350993 0.0349549 0.0355635 0.0374226 0.0333493 0.0340743 0.0350275 0.0347032 0.0337186 0.0327945 0.0320583 0.0313773 0.0307793 0.030223 0.0298385 0.0295499 0.0294636 0.0294547 0.0296384 0.0299706 0.0304317 0.0309894 0.0315468 0.031964 0.0327942 0.0345674 0.0361614 0.0360992 0.035318 0.0356705 0.0363639 0.0367238 0.0369817 0.0370773 0.0353064 0.0353847 0.0351759 0.0344796 0.0333891 0.0321617 0.0309625 0.0300184 0.0293821 0.0290609 0.0291108 0.029428 0.0301004 0.0309807 0.0320215 0.0327941 0.0331424 0.0337083 0.0349699 0.0368316 0.0375831 0.0374893 0.0376291 0.0380583 0.0385051 0.0387468 0.0386999 0.0385088 0.0385706 0.0390602 0.0367993 0.0369396 0.0367052 0.0366204 0.0367787 0.0369997 0.0371999 0.0373635 0.0374744 0.0375365 0.0375286 0.0375047 0.0374482 0.0373166 0.0371202 0.0368879 0.036678 0.0366276 0.0367717 0.0368181 0.0361897 0.0354446 0.0347042 0.0336749 0.0333456 0.0338056 0.0348978 0.0358213 0.0362764 0.0364322 0.0455578 0.0403665 0.0376795 0.0429826 0.0471272 0.0510138 0.0525153 0.0524007 0.0517926 0.0508961 0.0498586 0.0488723 0.0481007 0.0477416 0.0477138 0.0481517 0.0489315 0.0498301 0.0506822 0.0512317 0.0508855 0.048229 0.0445654 0.0445633 0.0463602 0.0463186 0.0454841 0.0455748 0.0457239 0.0486305 0.0243541 0.0254492 0.0266013 0.0273768 0.0277649 0.0278424 0.0276992 0.0275768 0.0276626 0.0280577 0.0282225 0.0276589 0.0276394 0.0288262 0.0248082 0.0247098 0.0247401 0.0249404 0.0254504 0.0262639 0.0269251 0.0271183 0.0269319 0.0268869 0.0272828 0.0274823 0.027033 0.0259665 0.0257517 0.026039 0.0262622 0.0262207 0.026036 0.0259052 0.0258625 0.0259036 0.026018 0.026057 0.0258701 0.0255304 0.0253182 0.0254797 0.0260251 0.0260914 0.0299913 0.0311336 0.0313939 0.0315826 0.0317513 0.0314986 0.0302488 0.0289489 0.0282471 0.0279264 0.0277293 0.028214 0.0291981 0.0295391 0.0293425 0.0288984 0.0285011 0.0282605 0.0281493 0.0281164 0.0281404 0.0282287 0.0284073 0.0286414 0.0288485 0.0289498 0.0289514 0.0289791 0.0292972 0.0299274 0.0309815 0.0308879 0.0310473 0.0313421 0.0312878 0.0309179 0.0306691 0.0307223 0.0309062 0.0307751 0.0299875 0.0294926 0.0300061 0.0303375 0.0301486 0.029794 0.0294086 0.0290801 0.0288393 0.0286978 0.0286582 0.0287076 0.0288442 0.0290598 0.0293198 0.0295996 0.0298706 0.0301335 0.0303932 0.0305964 0.0321771 0.0320263 0.0318101 0.0311349 0.0312828 0.0314148 0.0313477 0.0311136 0.0307571 0.0303696 0.0300291 0.0298189 0.0296961 0.0296548 0.0296598 0.0297237 0.0298487 0.0300826 0.0303604 0.030664 0.0309508 0.0312577 0.0316242 0.0318966 0.0319247 0.0318149 0.0316404 0.0310419 0.0320743 0.0327388 0.0356449 0.0357569 0.0364995 0.0371654 0.0374681 0.0374833 0.0371922 0.0365341 0.036159 0.0361457 0.0361022 0.0358799 0.0355742 0.0354384 0.0355042 0.0356949 0.0359354 0.0361753 0.0363826 0.0365183 0.0365504 0.0364887 0.0363161 0.0360568 0.0357999 0.0356297 0.0355552 0.0355311 0.0354727 0.0353035 0.0327907 0.0346242 0.0373303 0.0386995 0.0387262 0.037285 0.0353088 0.034752 0.0338305 0.0324187 0.0319118 0.0318419 0.0319792 0.0322253 0.0325444 0.0329205 0.0332958 0.0335936 0.0337452 0.0336996 0.0335158 0.0332464 0.032943 0.0326691 0.0324534 0.0322833 0.0321104 0.0315943 0.0297946 0.0285604 0.0363178 0.0379929 0.0368427 0.0365828 0.0364002 0.0364901 0.036799 0.0371575 0.0375133 0.0378489 0.0381532 0.0383696 0.0385106 0.0385617 0.0385247 0.0384124 0.0381728 0.0378652 0.0375063 0.0372498 0.0372203 0.037346 0.0372574 0.0367112 0.0356459 0.0347069 0.0345675 0.0345444 0.0344198 0.0349926 0.0353775 0.0348394 0.0335774 0.0328191 0.032182 0.0313171 0.0304345 0.0296256 0.0290527 0.0286189 0.0283814 0.0282938 0.02836 0.0285887 0.0289911 0.029597 0.03033 0.0310889 0.0316642 0.0324859 0.0342172 0.035998 0.0367432 0.0362349 0.0355501 0.0351812 0.0347959 0.0345919 0.0351971 0.0371322 0.0335988 0.0349261 0.0352294 0.0343387 0.0332478 0.032431 0.0316849 0.0308978 0.0301953 0.0295901 0.029194 0.0290214 0.0289003 0.0289552 0.0290766 0.0293537 0.029833 0.0304573 0.0311297 0.0316708 0.0324073 0.0340738 0.0359262 0.0359657 0.0352701 0.0359309 0.0368005 0.0370362 0.0371498 0.0371451 0.0354132 0.0355478 0.0349839 0.0339096 0.0325396 0.0310642 0.0297851 0.0287898 0.0281381 0.0278361 0.0278393 0.0281461 0.0287899 0.0297063 0.0309146 0.0319902 0.0327083 0.0333087 0.0344218 0.0365719 0.0374279 0.0372439 0.0373272 0.0377027 0.0382 0.0386775 0.0389949 0.0391392 0.0392182 0.0393667 0.0368068 0.0369502 0.0367235 0.0367253 0.0369509 0.0371971 0.0373888 0.0374988 0.0375075 0.0374747 0.0374662 0.0375012 0.0375587 0.0375626 0.037442 0.0372016 0.0368841 0.0366171 0.0366075 0.0367805 0.0364309 0.0356911 0.0349488 0.0339051 0.0333167 0.0336539 0.0346784 0.0356148 0.0362039 0.0364219 0.0463745 0.0423364 0.0381653 0.0448668 0.0492312 0.0519075 0.0524836 0.052019 0.0510774 0.0498127 0.0484203 0.0470342 0.0460113 0.0453077 0.045374 0.0459434 0.0470902 0.0484024 0.0496149 0.0507163 0.0513601 0.05063 0.0458285 0.0431949 0.0465105 0.0506612 0.048467 0.0471447 0.0478264 0.0514573 0.025013 0.0262323 0.0273187 0.0280409 0.0283862 0.0284247 0.0281595 0.0277641 0.0276038 0.0278828 0.0282719 0.0278744 0.0277326 0.0288591 0.0248124 0.024693 0.0246816 0.0246629 0.0247744 0.0251953 0.0256254 0.0257587 0.0256422 0.0258846 0.0266924 0.0272227 0.0267906 0.0258155 0.0259007 0.0262636 0.026244 0.0259296 0.025734 0.0257545 0.0258085 0.0258226 0.0258906 0.0260018 0.0259295 0.025603 0.0253136 0.0254157 0.0259835 0.0261037 0.0297839 0.0310752 0.0314946 0.0317634 0.031827 0.0312977 0.0298509 0.0286693 0.0280416 0.0277525 0.0277201 0.0287745 0.0296217 0.0294843 0.0289287 0.028411 0.0281081 0.0280095 0.0279875 0.0280032 0.0280066 0.0280481 0.0281671 0.028388 0.0286406 0.0288146 0.0288702 0.0289202 0.0292811 0.0299662 0.0309919 0.0308977 0.0310577 0.0313605 0.031279 0.0308954 0.0305944 0.0306394 0.0309273 0.0307588 0.0298275 0.0294669 0.030166 0.0303089 0.0299004 0.0294139 0.0290011 0.0286816 0.0284659 0.0283511 0.0283161 0.0283645 0.0284943 0.0287367 0.0290285 0.0293624 0.0296896 0.0300062 0.030312 0.0305649 0.0321916 0.0319487 0.0314088 0.0310947 0.0313748 0.0314293 0.0312709 0.0309456 0.0305152 0.0300883 0.0297883 0.0296428 0.0296083 0.0296002 0.0296023 0.0296024 0.0296676 0.0298419 0.0301354 0.0304651 0.0307794 0.0311065 0.0314866 0.0318345 0.0319352 0.0318728 0.0316777 0.0314933 0.0330099 0.0335574 0.0356592 0.0356569 0.0362632 0.0368872 0.0372074 0.0371495 0.036689 0.0361861 0.0360265 0.0360929 0.0359931 0.0357252 0.0354506 0.0354033 0.0355335 0.0357745 0.0360567 0.0363264 0.0365603 0.036712 0.0367696 0.0367314 0.0365696 0.0362881 0.0359664 0.0357151 0.035574 0.0355174 0.0354603 0.0352976 0.0327176 0.0344819 0.0372193 0.0388251 0.0390621 0.0377446 0.0354242 0.0348133 0.0339468 0.0324045 0.0318608 0.0318096 0.0319624 0.0322332 0.032609 0.0330593 0.0335397 0.0339096 0.0341027 0.0340588 0.0338311 0.0335015 0.0331463 0.0328029 0.0325149 0.0322914 0.0320969 0.0316216 0.0299181 0.0286836 0.0371499 0.0374713 0.0371893 0.0368094 0.0364261 0.0364897 0.0368338 0.037221 0.0376128 0.03799 0.0383332 0.0385609 0.0387225 0.0387837 0.0387503 0.0386407 0.0384135 0.0381109 0.037727 0.0373822 0.0372218 0.0373037 0.0373005 0.0369453 0.0360184 0.0350239 0.0347515 0.0345837 0.0344484 0.0348745 0.0356437 0.0344934 0.0332939 0.0327467 0.0320328 0.0310131 0.0300782 0.0292558 0.0287322 0.0282938 0.0280831 0.0279865 0.0280136 0.0282093 0.0285929 0.0291819 0.0299408 0.0307618 0.031421 0.0321143 0.033421 0.0348634 0.0354722 0.0351965 0.0349664 0.0349426 0.034671 0.0344416 0.0350552 0.037017 0.0341649 0.0355008 0.0351928 0.0340436 0.0330218 0.0322196 0.0313876 0.0304714 0.0297717 0.0291215 0.0288814 0.0287161 0.0286898 0.0286961 0.0287998 0.0290094 0.0294337 0.0300538 0.030796 0.0314356 0.0322058 0.0338493 0.0357814 0.0356741 0.0352911 0.036407 0.0372831 0.0373915 0.0373673 0.0372542 0.0360949 0.0356322 0.0345906 0.0333319 0.0318689 0.0302992 0.0290826 0.0281025 0.027485 0.0271608 0.0271092 0.0273084 0.0278963 0.0287635 0.0300069 0.0312653 0.0322834 0.0330093 0.0341992 0.0366068 0.0372894 0.0370433 0.0370138 0.0371558 0.0373597 0.0376285 0.0379742 0.0383971 0.0388393 0.0391102 0.0367702 0.0370113 0.0367806 0.0368208 0.0370788 0.0373307 0.0374804 0.0374866 0.037356 0.0372107 0.037148 0.0372409 0.0374118 0.0375812 0.0376131 0.0374676 0.0371542 0.0367488 0.0364999 0.0366505 0.036676 0.0360616 0.0353873 0.0345294 0.0337934 0.0338777 0.0346571 0.0355241 0.0361602 0.0364315 0.0468166 0.0447662 0.0385355 0.0451372 0.0502046 0.0521262 0.0523509 0.0516484 0.0504637 0.0489127 0.0471559 0.0454385 0.0439237 0.043003 0.0428784 0.0436891 0.0452153 0.0471003 0.0487373 0.0499159 0.0508641 0.0516019 0.0486314 0.042309 0.0426721 0.0510187 0.0533163 0.0520545 0.0519354 0.0531501 0.0255076 0.0268304 0.0280105 0.0287321 0.0289346 0.0287986 0.0285766 0.0281639 0.0277724 0.027916 0.0283016 0.0279434 0.0278453 0.028998 0.024807 0.024689 0.024609 0.0244966 0.0243301 0.024323 0.0243729 0.0244014 0.0244913 0.0250666 0.0262613 0.0270305 0.0265861 0.02574 0.0260873 0.0263653 0.0260304 0.0256646 0.0257055 0.0259209 0.0260429 0.0260053 0.0259326 0.0259742 0.0259135 0.025596 0.0253029 0.0254115 0.0260205 0.0261051 0.0295214 0.0308432 0.0314046 0.0316652 0.0315525 0.0305008 0.0291833 0.0282373 0.0277177 0.0275644 0.0279666 0.0293509 0.0297129 0.0292057 0.0285435 0.0281578 0.0280014 0.0279939 0.0280214 0.0280367 0.0280328 0.0280202 0.0280696 0.0282455 0.0285004 0.028703 0.0287963 0.0289099 0.0293753 0.0300216 0.0310055 0.0309021 0.0310021 0.0312945 0.0312604 0.0309096 0.030557 0.0306495 0.0309624 0.0306882 0.0296317 0.029486 0.030281 0.0301965 0.0296228 0.0291292 0.0287344 0.028442 0.0282607 0.0281758 0.0281478 0.028185 0.0282909 0.0285277 0.0288353 0.0292031 0.0295697 0.0299321 0.030281 0.030545 0.0322374 0.0318639 0.0310802 0.031244 0.0314125 0.0314237 0.0312097 0.0308563 0.0303955 0.0299704 0.0297102 0.0296274 0.0296303 0.0296453 0.0296429 0.0296133 0.0296061 0.0297406 0.0300137 0.0303552 0.0306837 0.0310197 0.0314096 0.0317894 0.03195 0.0319201 0.0315335 0.0325612 0.0342286 0.0345467 0.0356886 0.035578 0.0359513 0.0363988 0.0366237 0.0364916 0.0361495 0.0359492 0.0359965 0.0360291 0.0358708 0.0356024 0.0353711 0.0353703 0.0355143 0.0357763 0.0360823 0.0363459 0.0365883 0.0367582 0.0368273 0.0368033 0.0366833 0.0364128 0.0360759 0.0357789 0.0355931 0.0355069 0.0354363 0.0352995 0.0327125 0.0341209 0.036637 0.0385745 0.0391203 0.0380446 0.0356033 0.0348708 0.0342191 0.0325392 0.0318484 0.0317778 0.0319052 0.0321821 0.0325574 0.0330401 0.0335384 0.033945 0.034196 0.034147 0.0339008 0.033573 0.0332171 0.0328586 0.0325435 0.0322746 0.0320533 0.0315606 0.0298826 0.0287735 0.037679 0.0377192 0.0378538 0.0372021 0.036506 0.0364588 0.0368068 0.0372256 0.0376434 0.0380389 0.0383829 0.0386431 0.0388342 0.0389162 0.038873 0.0387697 0.0385492 0.0382732 0.037883 0.0374926 0.0372551 0.0372746 0.0372881 0.0370304 0.036243 0.035302 0.0348948 0.034648 0.0346081 0.0350082 0.0355464 0.0342589 0.0333109 0.0328122 0.0320368 0.030917 0.0300083 0.029187 0.0286743 0.0282273 0.0279961 0.0278904 0.0279312 0.0280869 0.0284386 0.029007 0.0297506 0.0305885 0.0312764 0.0319172 0.0329208 0.0339537 0.0343785 0.0344203 0.0346905 0.0349226 0.0346793 0.0344349 0.0351349 0.0370189 0.0349402 0.0357575 0.035207 0.0339539 0.0329177 0.0320923 0.0311869 0.0302146 0.0295323 0.0289084 0.028733 0.0286212 0.0285964 0.0286354 0.0286899 0.0288529 0.0292186 0.0298555 0.0306159 0.0313098 0.0321229 0.0338298 0.0356805 0.0352733 0.0355889 0.0369402 0.0374361 0.0373588 0.0372585 0.0372028 0.0366159 0.0354092 0.0342646 0.0330444 0.0315358 0.0299611 0.0287891 0.0278269 0.0271632 0.0267791 0.0267197 0.0268903 0.0273861 0.028214 0.0294417 0.0307622 0.0319635 0.0328216 0.0342797 0.0368167 0.0371801 0.0369626 0.0369388 0.0369209 0.0368869 0.0368106 0.0367287 0.0367366 0.0369589 0.0373109 0.0366999 0.0370018 0.0368842 0.0368847 0.0371337 0.0373965 0.03751 0.0374409 0.0372028 0.036964 0.0368669 0.0369494 0.0371935 0.0374735 0.0376473 0.037619 0.037354 0.0369409 0.036531 0.0364455 0.0368019 0.0364872 0.0358886 0.0352209 0.0345664 0.0343628 0.0348445 0.035555 0.0361905 0.0363983 0.0447819 0.0471549 0.0438607 0.0425782 0.0495118 0.052112 0.0522685 0.0514392 0.0501351 0.0484583 0.0465143 0.0445143 0.0426833 0.0413827 0.0412819 0.0421134 0.0437605 0.0460331 0.0481132 0.0495191 0.0503647 0.0514919 0.0508218 0.043548 0.0389516 0.0448084 0.0525109 0.0528606 0.0519535 0.0499328 0.0258255 0.0274095 0.0286639 0.029163 0.0289688 0.0286047 0.0284471 0.0283028 0.0280139 0.028076 0.0283435 0.0279234 0.027949 0.0290081 0.0281871 0.02659 0.025085 0.0247347 0.0245778 0.0244382 0.024217 0.0239387 0.0237361 0.0237094 0.0238794 0.024645 0.0260659 0.0269028 0.0264246 0.0257187 0.0262821 0.0263412 0.0257976 0.0255844 0.0258246 0.0261313 0.0262485 0.0261548 0.0260078 0.0259779 0.0258384 0.0255069 0.0252683 0.0254861 0.0260999 0.0260941 0.0261187 0.0272802 0.02934 0.0305014 0.0310652 0.0311958 0.0306661 0.0294999 0.0284681 0.0276986 0.0273759 0.0274866 0.028447 0.0296417 0.0296262 0.0289614 0.0283613 0.0280825 0.0279964 0.0280154 0.0280576 0.02808 0.0280722 0.0280346 0.0280533 0.0282016 0.0284403 0.0286258 0.0287411 0.0289749 0.0295252 0.0300489 0.0299913 0.0304599 0.0310064 0.0309157 0.0309117 0.0311323 0.0311169 0.0308204 0.0305725 0.0307388 0.0309867 0.0305569 0.02943 0.0295983 0.0303035 0.0300437 0.0294416 0.0289967 0.028625 0.0283524 0.0281914 0.028118 0.0280887 0.0281231 0.0282001 0.0284632 0.0287638 0.02915 0.0295396 0.0299268 0.0302633 0.0305551 0.0321827 0.0323981 0.0320186 0.0312413 0.031003 0.0313009 0.0314355 0.031423 0.0312134 0.0308654 0.0304139 0.0299917 0.0297343 0.0296474 0.0296457 0.0296529 0.0296416 0.02962 0.0296184 0.0297361 0.0300011 0.0303461 0.0306586 0.0310004 0.0313976 0.0317908 0.0319726 0.0318644 0.0317296 0.0340796 0.0351557 0.0355447 0.0358444 0.0360673 0.0357658 0.0355725 0.0357103 0.0359241 0.0360217 0.0359373 0.0358498 0.0358931 0.0359808 0.0359251 0.0357554 0.0355236 0.0353169 0.0352978 0.0354303 0.0356944 0.0359903 0.0362527 0.0364817 0.0366728 0.0367645 0.0367627 0.0366535 0.0364088 0.0360914 0.0358004 0.0355985 0.0354951 0.0354201 0.0352897 0.0345099 0.0331726 0.032699 0.0337097 0.0358849 0.0379798 0.0389464 0.0381744 0.0358133 0.0349177 0.0345857 0.0328863 0.0319055 0.0317382 0.0318382 0.0320729 0.0324207 0.0328593 0.033328 0.0337139 0.0339247 0.0339378 0.0337664 0.0334908 0.0331672 0.032829 0.0325033 0.032225 0.0319776 0.0314068 0.0297228 0.0291289 0.0360006 0.0385158 0.038118 0.0386546 0.0388561 0.037857 0.0366746 0.0364068 0.0367282 0.037174 0.0376005 0.0379882 0.0383172 0.0385809 0.0387799 0.0388871 0.0388562 0.0387508 0.0385591 0.0382916 0.0379113 0.0375333 0.037279 0.0372554 0.0372622 0.0370082 0.0362238 0.0352639 0.0348317 0.0348425 0.0355229 0.0361406 0.0364421 0.0362269 0.0356079 0.0344923 0.0335089 0.0329799 0.0322055 0.0310862 0.0301535 0.0293591 0.0288166 0.0283689 0.0281239 0.0280048 0.0280351 0.0281781 0.028522 0.0290603 0.0297722 0.0305668 0.0312352 0.0318414 0.0326216 0.0332948 0.0336786 0.0342011 0.0348954 0.0350888 0.0347334 0.0346176 0.0356589 0.036431 0.0355423 0.0356838 0.0357808 0.0357778 0.0353113 0.0340038 0.0328997 0.0320838 0.0311433 0.030168 0.0294855 0.0288651 0.0287142 0.0285908 0.0285788 0.0285974 0.0286676 0.0288191 0.0291788 0.0298116 0.0306028 0.0313059 0.0322111 0.0341591 0.0354962 0.0350068 0.0361325 0.0370177 0.0369789 0.0367998 0.0367421 0.0368855 0.0373077 0.037262 0.0367374 0.0351202 0.0341744 0.0330735 0.0315285 0.0300466 0.0288522 0.0279172 0.0272027 0.0267736 0.0266423 0.0268219 0.0272908 0.0280392 0.0292526 0.0305923 0.0318357 0.0327857 0.0347318 0.0370097 0.0371324 0.0370655 0.0371683 0.0372873 0.0373299 0.0371938 0.0369744 0.0366878 0.0364417 0.0364929 0.0368813 0.0370988 0.0369811 0.0369942 0.0369717 0.0369335 0.0371042 0.037377 0.0375246 0.0374858 0.0372157 0.0369239 0.0367527 0.036831 0.037064 0.0373872 0.0376246 0.0376778 0.0374577 0.0370641 0.0366561 0.0363156 0.0367414 0.0369062 0.0364723 0.035882 0.035343 0.0350299 0.0352096 0.035753 0.0362881 0.0363725 0.0362959 0.0377848 0.0411399 0.0457925 0.050337 0.0459763 0.0468526 0.0508859 0.052164 0.0516433 0.0502528 0.0485414 0.0466043 0.0446004 0.0426934 0.0413718 0.0411841 0.0418293 0.0434828 0.0456552 0.0478867 0.0493778 0.0501173 0.0511159 0.0513161 0.045948 0.037867 0.038169 0.0455961 0.0476746 0.0453393 0.0437817 0.0632193 0.0708274 0.0260574 0.0279453 0.029112 0.0292102 0.0285778 0.0280191 0.0279808 0.0281595 0.0281611 0.0282423 0.0282674 0.0278987 0.0280497 0.0289456 0.0281146 0.0263946 0.0251824 0.0248315 0.0246127 0.0244187 0.0241716 0.023859 0.0236164 0.0235875 0.0237549 0.0245655 0.0260005 0.0268039 0.026329 0.025761 0.0263944 0.0262697 0.0257036 0.0255801 0.0258412 0.026119 0.0262224 0.0261618 0.0260309 0.0259063 0.0256833 0.0253794 0.0252853 0.0256438 0.0261594 0.0260769 0.0264214 0.0276472 0.0290906 0.0300233 0.0304352 0.0302821 0.0295175 0.0285706 0.0276614 0.0271254 0.0271489 0.0275859 0.0288501 0.0297356 0.0295432 0.0288577 0.028323 0.0280661 0.0279974 0.0280221 0.0280541 0.0280673 0.0280595 0.0280472 0.0280783 0.0282198 0.028424 0.028599 0.0288206 0.029238 0.0297893 0.030032 0.0301237 0.0306912 0.0310016 0.0309322 0.0308381 0.0309179 0.0308826 0.0306875 0.0306309 0.0308801 0.0309867 0.0303645 0.0292431 0.0297175 0.0303141 0.0299356 0.0293978 0.0290026 0.0286624 0.0283934 0.0282238 0.0281429 0.0281171 0.0281648 0.0282642 0.0285353 0.028839 0.0292301 0.0296089 0.0299648 0.0303167 0.0310631 0.0323711 0.0320715 0.0314823 0.0309114 0.0310398 0.0312551 0.0314277 0.0314462 0.0312705 0.0309715 0.0305594 0.0301402 0.0298513 0.029714 0.0296664 0.0296624 0.0296542 0.0296536 0.0297 0.0298538 0.030111 0.0304217 0.0307169 0.0310654 0.0314751 0.0318347 0.0319335 0.0319653 0.0334629 0.0348673 0.0354806 0.0359439 0.0360688 0.0360367 0.0358071 0.0355874 0.035597 0.0356678 0.0357175 0.0357537 0.0358252 0.0359035 0.035907 0.0357823 0.0356827 0.0354758 0.0352634 0.0351992 0.035287 0.035518 0.035804 0.0360657 0.0362775 0.0364502 0.0365791 0.0365832 0.0364848 0.0362794 0.0360186 0.0357674 0.0355834 0.0354792 0.0354067 0.0352712 0.0347124 0.0333473 0.0327276 0.0334287 0.0352388 0.0371959 0.0384563 0.0380856 0.0361202 0.0349636 0.0349285 0.0334652 0.0320891 0.031738 0.0317686 0.0319477 0.0322145 0.0325716 0.0329682 0.0333389 0.0335346 0.0335854 0.0334784 0.0332783 0.0329952 0.0326993 0.0323883 0.0321329 0.0318381 0.031081 0.0295843 0.0294657 0.036056 0.0390955 0.0387112 0.0400305 0.0402086 0.0388133 0.0370257 0.0363731 0.0366019 0.0370412 0.0374599 0.0378437 0.0381623 0.0384048 0.0385951 0.0386876 0.0387084 0.0386208 0.0384376 0.038194 0.0378278 0.0374951 0.0372742 0.0372391 0.0372168 0.0369122 0.0360545 0.0351514 0.0349809 0.0351427 0.0362517 0.0371072 0.0374471 0.0373713 0.0367241 0.0351587 0.0338306 0.0332408 0.0325561 0.0314676 0.0305215 0.0297223 0.0291735 0.0287083 0.0284344 0.0283246 0.0283297 0.028492 0.0288178 0.0293299 0.0299825 0.0306841 0.0313024 0.0318579 0.032428 0.0329079 0.0336624 0.0346535 0.035366 0.0352139 0.0349235 0.0351312 0.0358545 0.0360807 0.0356858 0.0359208 0.035919 0.0358429 0.0355021 0.0341884 0.033001 0.0321958 0.0312792 0.0303358 0.0296076 0.0290464 0.0287902 0.0286532 0.0286235 0.0286292 0.0287221 0.0289211 0.0293603 0.0299867 0.030752 0.0314381 0.0326005 0.0346443 0.0350575 0.0351227 0.0363335 0.0367615 0.0367898 0.0370795 0.0375906 0.0381335 0.0382118 0.0378186 0.0366059 0.0348968 0.0342862 0.0333433 0.0319165 0.0304693 0.0293019 0.0283541 0.0276041 0.0271091 0.0269299 0.0270422 0.0275234 0.028289 0.0294407 0.0307638 0.0318812 0.0330488 0.0354846 0.037161 0.0371704 0.0372999 0.0376996 0.0381068 0.0383668 0.0383821 0.0381806 0.037671 0.0370115 0.0364022 0.03623 0.0363105 0.0367021 0.0370205 0.037085 0.0370397 0.0370776 0.0372696 0.0374627 0.0375503 0.0373952 0.0371583 0.0369556 0.0369538 0.037137 0.0374103 0.0376159 0.0376746 0.037472 0.0371078 0.0367347 0.0363015 0.0363907 0.0371169 0.0372124 0.0366689 0.0360157 0.0357028 0.0356614 0.0359591 0.0363599 0.0363592 0.0362069 0.0364033 0.038134 0.0432825 0.04944 0.0522277 0.0485681 0.0484787 0.0507524 0.0515882 0.0508963 0.0493075 0.0474395 0.0455935 0.0438886 0.0426861 0.0423728 0.042954 0.0444117 0.0463247 0.0482594 0.049497 0.0500413 0.050896 0.0513696 0.04748 0.0378938 0.0335797 0.036395 0.0373937 0.035767 0.0405976 0.0648695 0.0704709 0.0262923 0.0283269 0.0293033 0.0290844 0.0281325 0.0275597 0.0275832 0.02787 0.0280792 0.0281415 0.0280583 0.0279697 0.028369 0.0289138 0.0281893 0.0265131 0.0251502 0.0248812 0.0246662 0.0244429 0.0241894 0.023912 0.0237049 0.0236662 0.0239339 0.0248224 0.0261001 0.0267416 0.0262791 0.0258351 0.0264289 0.0262697 0.0257298 0.0255383 0.0256939 0.0259195 0.0260208 0.0259862 0.025856 0.0256808 0.025457 0.0252877 0.0254463 0.0258692 0.0261817 0.0261461 0.0270853 0.0279666 0.0288478 0.0294898 0.0296579 0.0292884 0.0285082 0.0273771 0.0266767 0.0267025 0.0270843 0.0277144 0.0290492 0.0297811 0.0295544 0.0289052 0.028397 0.0281081 0.0280069 0.0280116 0.028027 0.0280423 0.0280445 0.0280618 0.0281256 0.0282707 0.0284784 0.0287303 0.0291283 0.0296371 0.029952 0.030027 0.0303725 0.0308578 0.0310145 0.0309539 0.0308157 0.030784 0.0307334 0.0306811 0.0307931 0.0310319 0.0309226 0.0300796 0.0291212 0.0298047 0.0303239 0.0299203 0.0294505 0.029119 0.0288143 0.0285607 0.0283823 0.0283026 0.0282938 0.0283497 0.0284991 0.0287597 0.0290532 0.0293973 0.029723 0.030092 0.0306926 0.0317244 0.0321763 0.0316118 0.0311162 0.0308707 0.0309602 0.0311424 0.0313988 0.0314595 0.0313558 0.031139 0.0308101 0.0304092 0.0300611 0.0298696 0.0297643 0.0297528 0.0297578 0.0297956 0.0298861 0.0300588 0.0302927 0.0305668 0.0308679 0.031228 0.0316064 0.0318668 0.0320145 0.0327351 0.0339549 0.0343776 0.0350428 0.0356738 0.0359423 0.0359391 0.0358112 0.035644 0.035641 0.0356754 0.0357292 0.0357929 0.0358359 0.0358081 0.0357233 0.0356443 0.035656 0.0354608 0.0352275 0.0350969 0.0351001 0.0352629 0.0355233 0.0357886 0.0359978 0.0361559 0.0362501 0.0362856 0.0362221 0.0360829 0.0358891 0.0356942 0.0355428 0.0354432 0.0353604 0.0352277 0.0348169 0.0335325 0.0327585 0.0332142 0.0346195 0.0363076 0.0377419 0.037829 0.0363165 0.0350456 0.0351151 0.0342574 0.0325132 0.0318159 0.0317239 0.0318224 0.0320029 0.0322514 0.0325501 0.0328327 0.0330551 0.0331335 0.0330846 0.032934 0.0327188 0.0324697 0.0322217 0.0319818 0.0315998 0.0307327 0.0295593 0.0297895 0.0359941 0.0399229 0.0395013 0.0411746 0.0414714 0.0398722 0.0376792 0.0364206 0.0364442 0.0368488 0.0372524 0.0376187 0.0379274 0.0381492 0.0383244 0.0384204 0.0384354 0.0383437 0.038181 0.0379568 0.0376541 0.0373994 0.0372475 0.0372113 0.0371266 0.0367311 0.0358012 0.0351886 0.0353448 0.0355174 0.0368513 0.0380823 0.0386224 0.0387119 0.0379361 0.0359907 0.0342668 0.0335344 0.0330202 0.0320641 0.0310989 0.0302921 0.0297399 0.029275 0.0289908 0.0288207 0.0288294 0.0289933 0.0293153 0.0297811 0.0303479 0.0309287 0.0314431 0.0319011 0.0324268 0.0332813 0.034307 0.0353179 0.0355609 0.0353848 0.0353924 0.0355846 0.0357511 0.03569 0.0356905 0.0357483 0.0357364 0.0357987 0.0356782 0.0345114 0.0331987 0.0324387 0.0315936 0.0307005 0.0299439 0.0293631 0.0290357 0.0288429 0.0287772 0.0288297 0.0289661 0.029254 0.0297217 0.0303446 0.0310318 0.031862 0.0332474 0.0348421 0.0346146 0.0353883 0.0363079 0.0365649 0.0369483 0.0377399 0.038426 0.0385667 0.0383253 0.0377957 0.0366619 0.035045 0.0345465 0.0338615 0.0326317 0.0312579 0.0300746 0.0291282 0.0284074 0.0279371 0.0276981 0.0278026 0.0282237 0.028986 0.0300441 0.0311299 0.0321753 0.033768 0.0363174 0.0372487 0.0372557 0.0375733 0.0381925 0.0387405 0.0390378 0.0390773 0.0389657 0.0386226 0.0379703 0.0370482 0.0362687 0.036001 0.0361246 0.0365619 0.0369579 0.037083 0.0371234 0.0371972 0.0373384 0.0374819 0.0375043 0.0374273 0.0373239 0.0372917 0.0373726 0.0375044 0.037619 0.0376259 0.0374204 0.0370742 0.0367207 0.0363731 0.0360641 0.0369062 0.0379024 0.0381497 0.0374103 0.0365085 0.0362067 0.0362009 0.0363947 0.0362828 0.0361591 0.0366681 0.0396893 0.0463206 0.0518551 0.0540606 0.0523827 0.0490279 0.0490001 0.050552 0.0510731 0.0504739 0.0490441 0.0474212 0.0459494 0.0449574 0.0446713 0.0450847 0.0462868 0.0477433 0.049079 0.0497524 0.0499803 0.0507709 0.0513692 0.0480129 0.0373018 0.0305768 0.029857 0.0295037 0.0289402 0.0402095 0.0645862 0.0694826 0.0264442 0.0285309 0.0293762 0.0290419 0.0280265 0.0274407 0.0273744 0.0275735 0.0278007 0.0278968 0.0279968 0.028299 0.028876 0.0290972 0.0289562 0.0274965 0.0252917 0.0249467 0.0247903 0.0246094 0.0244047 0.0242014 0.0240564 0.0240693 0.0243978 0.0251786 0.0261515 0.0266713 0.0263074 0.0258629 0.0264348 0.0263656 0.0258523 0.025533 0.0255049 0.0256001 0.0256582 0.0256381 0.0255508 0.0254147 0.0253246 0.0254088 0.0257307 0.0260835 0.0262121 0.0263563 0.0272546 0.0280971 0.0286561 0.0289646 0.0287801 0.027987 0.0266562 0.0258207 0.0258477 0.0264904 0.0271271 0.0277398 0.0290649 0.0298099 0.0296575 0.0290894 0.0285721 0.0282479 0.0280796 0.0280365 0.0280179 0.0280349 0.0280605 0.0281101 0.0282302 0.0284035 0.0286923 0.0290759 0.0295463 0.029866 0.029894 0.0300171 0.0304647 0.0309076 0.0310435 0.031041 0.0308827 0.0308106 0.030791 0.0308625 0.0310297 0.0310764 0.0307092 0.0297304 0.0290367 0.0298347 0.0303558 0.0299814 0.0295879 0.0293452 0.0291075 0.0288842 0.0287247 0.0286564 0.0286584 0.0287091 0.0288688 0.0290754 0.0293326 0.0296539 0.0300313 0.0306023 0.0314295 0.0320448 0.0318341 0.0313 0.0309706 0.0308826 0.0308343 0.030953 0.0312962 0.0314686 0.031431 0.0313096 0.0310918 0.0307792 0.0304217 0.0301571 0.0300052 0.0299651 0.0299927 0.0300533 0.0301555 0.0303271 0.030543 0.0308083 0.03112 0.0314516 0.0317468 0.0319662 0.0322951 0.0328507 0.0330466 0.0331942 0.0338659 0.034784 0.0355572 0.0358149 0.0357775 0.0356548 0.0356547 0.0356704 0.0356828 0.0356763 0.0356309 0.0355707 0.0355357 0.0355709 0.0356565 0.0354784 0.0352291 0.0350338 0.0349255 0.0349775 0.0351707 0.0354254 0.0356602 0.0358267 0.0359187 0.0359373 0.0359151 0.0358305 0.0357137 0.0355877 0.0354804 0.0353981 0.0353273 0.0352283 0.0347981 0.0334848 0.0326945 0.0329319 0.0339598 0.0354384 0.0370051 0.0374908 0.0363795 0.0351682 0.0351388 0.0350052 0.0332961 0.0320491 0.0317486 0.0317634 0.0318524 0.0319696 0.032143 0.0323264 0.032505 0.0326159 0.0326068 0.0325283 0.0323817 0.0322084 0.0320139 0.0317651 0.0312839 0.0304405 0.0296873 0.0306112 0.0365884 0.0407798 0.0411413 0.0422488 0.0424278 0.0407354 0.0386332 0.0366707 0.0362876 0.0366045 0.0369844 0.0373317 0.0376107 0.0378197 0.0379487 0.0380099 0.0380341 0.0379671 0.0378378 0.0376506 0.0374491 0.0372991 0.0372156 0.0371398 0.0369541 0.036401 0.0355742 0.0356161 0.036261 0.036254 0.0373762 0.0389209 0.0399131 0.0400716 0.0390677 0.0369547 0.0348912 0.033853 0.0335326 0.0328194 0.0319076 0.0310696 0.0304665 0.0300516 0.0297662 0.0296302 0.0296049 0.029732 0.0299897 0.0303609 0.0307916 0.0312304 0.0316694 0.0321988 0.0330409 0.034194 0.0348892 0.0354458 0.0355688 0.0355638 0.0356234 0.0356402 0.0355042 0.0353348 0.0353571 0.0353791 0.0355276 0.0356859 0.0357862 0.0349581 0.0335259 0.0327742 0.0320581 0.0312292 0.0304847 0.029907 0.0295125 0.0293239 0.0292732 0.0293001 0.0294858 0.0298092 0.030261 0.0308494 0.0315765 0.0325659 0.0338708 0.0346952 0.0345174 0.0355456 0.0362167 0.036464 0.0369324 0.037783 0.038452 0.0385857 0.0382968 0.0377787 0.0369112 0.0353558 0.0347928 0.0344685 0.0335478 0.0323599 0.031188 0.0302433 0.0295334 0.0290856 0.0288574 0.028955 0.0293331 0.0299863 0.0307996 0.0317459 0.0330485 0.0349921 0.0370108 0.0373254 0.0373669 0.0377425 0.0383727 0.038886 0.0391227 0.0391648 0.0391318 0.0389477 0.0384979 0.0376021 0.0365871 0.0359618 0.0359172 0.036141 0.0365437 0.0368878 0.0370467 0.0371513 0.037248 0.0373512 0.037437 0.0374784 0.0374833 0.0374847 0.0375076 0.0375523 0.0375884 0.0375216 0.0372934 0.0369729 0.0366332 0.0363735 0.0359584 0.0361487 0.0376827 0.0394768 0.0404595 0.040253 0.039144 0.0384743 0.0380023 0.0374115 0.0374381 0.0408583 0.0465911 0.051964 0.053765 0.0540426 0.0537247 0.0513027 0.0486285 0.0489816 0.0500557 0.0506217 0.0503787 0.049497 0.0485245 0.0477792 0.0475175 0.0477983 0.0485449 0.0493093 0.0497801 0.0498079 0.0498627 0.050764 0.0513216 0.047598 0.0358304 0.0281419 0.0264455 0.0264288 0.028158 0.0430003 0.0624852 0.0683075 0.0265238 0.0285696 0.029438 0.0292035 0.0282946 0.0276027 0.0273966 0.0274631 0.0276294 0.0278207 0.0281653 0.0287357 0.0293039 0.0294965 0.029619 0.0288226 0.026344 0.0252911 0.0250204 0.0249062 0.024803 0.0246998 0.024643 0.0247045 0.0249804 0.0255482 0.0261985 0.0265967 0.0264077 0.0258652 0.0263922 0.0265096 0.0260934 0.0257194 0.0255168 0.0254377 0.0254201 0.0254011 0.0253886 0.025398 0.0255209 0.0257635 0.0260538 0.0261579 0.0259951 0.0259164 0.0264919 0.0276985 0.0280983 0.0277823 0.0269845 0.0257438 0.0249394 0.0248763 0.0252427 0.026272 0.0271917 0.0276548 0.0288939 0.0298039 0.0298182 0.029374 0.0288819 0.028522 0.0282895 0.0281814 0.0281388 0.0281406 0.0281718 0.0282807 0.0284436 0.0287011 0.0290558 0.0294763 0.0297431 0.0297267 0.0295661 0.0297973 0.0304203 0.0308931 0.0310356 0.031129 0.0310498 0.031013 0.0310338 0.0310948 0.0310989 0.0309116 0.030314 0.0294086 0.0289877 0.029812 0.030404 0.0301075 0.0297695 0.0296233 0.0295055 0.0293694 0.0292566 0.029197 0.0292051 0.029261 0.0293993 0.0296289 0.0299147 0.0303172 0.030844 0.0314628 0.0319401 0.0319405 0.0315425 0.0312006 0.0310603 0.031072 0.0308184 0.0307362 0.0310838 0.0314254 0.0314677 0.0314374 0.03134 0.0311471 0.0308847 0.0306353 0.0304729 0.0304153 0.0304134 0.0304633 0.0305678 0.0307165 0.0309206 0.0311675 0.0314341 0.0316801 0.0318726 0.032022 0.0321738 0.032131 0.0317571 0.0317358 0.0321332 0.0330423 0.0344006 0.0355042 0.0356591 0.0355065 0.0354872 0.0354684 0.035441 0.0354123 0.0354004 0.0354101 0.0354526 0.035552 0.0356672 0.0355362 0.0352914 0.0350571 0.0348545 0.0347577 0.0348152 0.0349914 0.0352215 0.0354462 0.0355995 0.0356811 0.0356843 0.0356561 0.0355925 0.0355181 0.0354457 0.0353852 0.0353295 0.0352637 0.0345003 0.0333331 0.0326259 0.0327274 0.0334256 0.0348392 0.0365364 0.0371098 0.0363325 0.0353071 0.0350777 0.0353097 0.0343803 0.0326175 0.0318998 0.0317904 0.0318114 0.0318411 0.0318666 0.0319457 0.0320033 0.0320912 0.0321155 0.0320779 0.0319947 0.0318654 0.0316822 0.0313834 0.0309464 0.030535 0.0304875 0.0329378 0.0383715 0.0422065 0.0431022 0.0435267 0.042971 0.0409864 0.039546 0.0373544 0.0362067 0.036342 0.0366675 0.0369915 0.0372611 0.0374544 0.0375701 0.0376157 0.0376248 0.0375718 0.037491 0.0373902 0.0372921 0.0372106 0.037118 0.0369567 0.0366124 0.0359898 0.0355631 0.0364866 0.0377728 0.0380717 0.03878 0.0400407 0.0410615 0.0410062 0.0397015 0.0377569 0.0357657 0.0342031 0.0339583 0.0336208 0.0329078 0.0320874 0.0314572 0.0309434 0.0306695 0.0305242 0.0304887 0.0305573 0.0307358 0.0309969 0.0313335 0.0317514 0.0323036 0.0330581 0.0340002 0.0347227 0.034973 0.0351907 0.0353393 0.0354231 0.0354513 0.0353721 0.0351418 0.0349728 0.0348826 0.0350264 0.0353323 0.0355561 0.0357072 0.0354459 0.0339865 0.0331567 0.0326068 0.0319215 0.0312376 0.0306708 0.0302993 0.0300757 0.0299591 0.0300605 0.0302421 0.0305643 0.0310121 0.0316008 0.0323651 0.0332905 0.0340863 0.0343361 0.034595 0.0355807 0.0362192 0.0365128 0.0369106 0.037559 0.0382169 0.0384779 0.0382444 0.0377018 0.0370798 0.0357956 0.0349897 0.0350015 0.0345556 0.0337133 0.0327151 0.031775 0.0310464 0.0305582 0.0303415 0.0303564 0.0306529 0.0311343 0.0318713 0.0329618 0.034568 0.0363886 0.037434 0.0374078 0.0374718 0.0377601 0.0382108 0.0385939 0.0388164 0.0389352 0.0390275 0.0389464 0.0385977 0.0377349 0.036656 0.0359364 0.0358768 0.0360566 0.0363635 0.0366595 0.0368883 0.0370178 0.037137 0.0372219 0.0373017 0.0373726 0.0374233 0.0374578 0.0374822 0.0375045 0.0374879 0.0373572 0.0371144 0.0367905 0.0364756 0.0362739 0.035945 0.0355439 0.0362103 0.0382789 0.0406678 0.042805 0.0442396 0.0453021 0.0463458 0.0448014 0.0471064 0.0514048 0.0538737 0.0538469 0.0530007 0.0520769 0.0521933 0.0515405 0.0493571 0.0480424 0.0482749 0.049218 0.0499913 0.0502123 0.0501289 0.0499806 0.0499255 0.0499513 0.0500067 0.0499364 0.0497226 0.0494998 0.0497625 0.0509737 0.0511849 0.0458483 0.0329215 0.0264516 0.0261679 0.0270971 0.0319513 0.0505157 0.0608031 0.0664642 0.0264921 0.0284518 0.0294471 0.0294657 0.0288653 0.0281691 0.0278025 0.0277702 0.027883 0.0281167 0.0285279 0.0290811 0.0295547 0.0297622 0.0297677 0.0293444 0.0281111 0.02665 0.0257901 0.0253954 0.0252049 0.025114 0.0250956 0.0251682 0.0253852 0.0257752 0.0261919 0.0265157 0.0265905 0.0258598 0.0262569 0.0266259 0.0264042 0.0260879 0.025852 0.0257042 0.0256352 0.0256191 0.0256683 0.0257745 0.0259437 0.0261159 0.0261368 0.0258915 0.025372 0.0248388 0.0248488 0.025843 0.0264119 0.025625 0.0249767 0.024511 0.0245099 0.0245482 0.0248236 0.0260616 0.0272952 0.0275527 0.0285073 0.0296844 0.0299502 0.0297189 0.0293172 0.0289668 0.028711 0.0285557 0.0284586 0.0284595 0.028519 0.0286428 0.0288418 0.0291198 0.0294516 0.0296997 0.029723 0.0295101 0.0293372 0.0294664 0.0302016 0.0307319 0.0309057 0.0310076 0.0310357 0.0310469 0.0310297 0.0309756 0.0308478 0.0304332 0.0297454 0.0292003 0.0289809 0.0297107 0.0304531 0.0302768 0.029956 0.0298801 0.0299223 0.0299444 0.029968 0.0300179 0.0301 0.0302229 0.0304163 0.0306936 0.0310415 0.0314284 0.0318054 0.0320405 0.032103 0.0318392 0.0315079 0.031313 0.0313002 0.0314242 0.0310047 0.0306379 0.030769 0.0313033 0.0314579 0.0314837 0.0314829 0.031426 0.0313082 0.0311532 0.0310594 0.0310077 0.0310278 0.0310376 0.0311178 0.031228 0.0313717 0.0315313 0.0316754 0.0317714 0.0318063 0.031802 0.0317075 0.0314551 0.031258 0.0312611 0.0313109 0.0315724 0.0324784 0.0343279 0.0355952 0.0357242 0.0355936 0.0354717 0.0354173 0.0354081 0.0354151 0.0354377 0.035479 0.0355681 0.0356699 0.0356199 0.0354209 0.0351881 0.0349419 0.0347383 0.0346241 0.0346213 0.0347045 0.0348571 0.0350213 0.0351606 0.0352605 0.0353003 0.0352977 0.0352629 0.0352073 0.0351322 0.0350074 0.0347869 0.0341196 0.0336788 0.0328969 0.0327806 0.0333461 0.0347764 0.0363451 0.0367275 0.0361484 0.0353704 0.0350643 0.0352931 0.0353031 0.0336421 0.0322713 0.0319274 0.0319125 0.031934 0.0318953 0.0318357 0.0317946 0.0317431 0.0317307 0.0316896 0.0316292 0.0315443 0.0314349 0.0313307 0.0313519 0.0319412 0.0342089 0.0375507 0.0411604 0.0431893 0.0435976 0.0435338 0.042405 0.0403778 0.0397842 0.0386486 0.0364944 0.0361412 0.0363241 0.0365985 0.0368524 0.0370553 0.0371826 0.0372436 0.0372693 0.0372632 0.0372201 0.0371772 0.0371112 0.0370102 0.0368458 0.0365865 0.0361377 0.0356982 0.0357138 0.0369176 0.038338 0.0393526 0.0401527 0.0409108 0.041094 0.0406511 0.0393257 0.0378778 0.036696 0.0347419 0.0342064 0.0342338 0.0339344 0.0333453 0.032729 0.0322283 0.0318629 0.0316467 0.0315691 0.0315911 0.0317227 0.0319647 0.0323192 0.0328099 0.0334423 0.0341719 0.0347848 0.0351328 0.0353135 0.0353228 0.0352458 0.0351822 0.0351323 0.0350069 0.0348611 0.0347789 0.0348158 0.0350452 0.0353231 0.0354472 0.035527 0.0357487 0.034639 0.0335731 0.0331421 0.0326721 0.0321283 0.0316368 0.0312629 0.0310565 0.03101 0.0310479 0.0312292 0.0315181 0.0319241 0.032441 0.0330404 0.0336207 0.0339651 0.0341244 0.0346872 0.0355925 0.0363117 0.0367463 0.037118 0.0375946 0.0380659 0.0382733 0.0380361 0.0374879 0.0370386 0.0362379 0.0351682 0.0352734 0.0353633 0.0350576 0.0344524 0.0337369 0.0330152 0.0325119 0.0321942 0.0322224 0.0324459 0.0329055 0.0337083 0.0348213 0.0362596 0.0374194 0.0376223 0.0375423 0.0375831 0.0377635 0.0380019 0.0382568 0.0384951 0.0386929 0.0388255 0.0387728 0.038393 0.0374865 0.0364303 0.0358505 0.0359086 0.0362006 0.0364768 0.0366636 0.0367774 0.036906 0.0369868 0.0370706 0.0371542 0.0372034 0.0372677 0.0373109 0.0373509 0.0373645 0.0373016 0.0371372 0.0368744 0.0365103 0.0361871 0.0360278 0.035839 0.0353992 0.0351298 0.0353991 0.036177 0.0377672 0.0398852 0.0427156 0.0461015 0.0499354 0.0533127 0.0542285 0.0538939 0.0526426 0.0509772 0.0498964 0.0497634 0.0497022 0.0486157 0.047144 0.0465082 0.0468568 0.0478118 0.0486641 0.0492131 0.0495493 0.0497437 0.0496794 0.0495018 0.0491504 0.0489411 0.0491246 0.0499978 0.0512934 0.0504599 0.0421787 0.0298602 0.0268718 0.0276799 0.0319505 0.0422222 0.0576088 0.0586296 0.0640153 0.0263939 0.0281521 0.0293502 0.0296188 0.0294849 0.0291069 0.0287643 0.0286061 0.0286336 0.0288112 0.0290956 0.0294378 0.0297239 0.0298474 0.0297166 0.0291139 0.0284327 0.0276853 0.026878 0.026226 0.0257853 0.025539 0.0254425 0.0254878 0.0256623 0.0259269 0.0261945 0.026456 0.026786 0.0261042 0.0259935 0.0266149 0.0266514 0.026467 0.0262921 0.0261491 0.0260628 0.0260257 0.0260357 0.0260658 0.0260757 0.0260045 0.0257789 0.0253772 0.0248645 0.0245716 0.0246157 0.0247425 0.0249486 0.0247748 0.0247074 0.0248244 0.0248874 0.0247352 0.024915 0.0263157 0.0275024 0.027554 0.0279939 0.0292941 0.0299415 0.0300146 0.0297866 0.029508 0.029338 0.0291664 0.0291049 0.0290642 0.029108 0.0292155 0.0293652 0.0295569 0.0297387 0.0298268 0.0297722 0.0296454 0.0296237 0.0297161 0.0298066 0.0300068 0.0303242 0.0303942 0.0304963 0.0305083 0.0304542 0.0302759 0.0299547 0.0296089 0.0293503 0.029204 0.0290581 0.0295545 0.0304368 0.0304541 0.0301484 0.030026 0.0301574 0.0303273 0.0305271 0.030746 0.0309547 0.0311564 0.0313741 0.0315712 0.0317603 0.0318747 0.0319064 0.0318919 0.0318487 0.0317367 0.0316477 0.0315765 0.0315703 0.0314873 0.0310885 0.0306679 0.0305332 0.0309854 0.0314143 0.0314649 0.0314866 0.0314995 0.0314903 0.0314655 0.031444 0.0314491 0.031467 0.0314751 0.0315088 0.0315437 0.0315831 0.0316075 0.0316033 0.031567 0.0314874 0.0313553 0.0312163 0.0310836 0.0310585 0.0311072 0.0311869 0.0313053 0.0315946 0.032968 0.0350164 0.0358089 0.0357099 0.035511 0.0354618 0.0354731 0.0354932 0.0355112 0.035536 0.0355909 0.0356386 0.0356744 0.0355909 0.0353959 0.0351749 0.0349425 0.0347389 0.0346102 0.0345392 0.0345302 0.0345404 0.0345686 0.0346133 0.0346485 0.0346623 0.0346486 0.0346068 0.0345398 0.0344645 0.0343794 0.0346418 0.0345469 0.0336705 0.0335127 0.0341494 0.0353186 0.0361783 0.0362708 0.0358032 0.035308 0.0350819 0.0351764 0.0355304 0.0349061 0.0330212 0.032177 0.0320409 0.03213 0.0322173 0.03224 0.0321924 0.0321228 0.0320771 0.0320497 0.0320782 0.0321544 0.0323662 0.0328605 0.0338701 0.0356105 0.0378644 0.0396753 0.0406919 0.0411078 0.04134 0.0408816 0.0398081 0.0389866 0.0393505 0.0398329 0.0374168 0.0361458 0.0360489 0.0361869 0.0363655 0.0365407 0.036683 0.0367779 0.0368329 0.0368525 0.0368237 0.0367728 0.0366809 0.0365331 0.0363184 0.0360112 0.0356922 0.0355072 0.0356512 0.0361973 0.036891 0.037694 0.0384191 0.038926 0.0389914 0.0385378 0.0378609 0.0372866 0.0370762 0.0357048 0.0344087 0.0344452 0.0345675 0.0344569 0.0341881 0.0338186 0.0335235 0.0333144 0.0331981 0.0332122 0.0333184 0.0335429 0.0338625 0.034273 0.0347378 0.0351493 0.0354531 0.0356931 0.0358463 0.0358448 0.0357389 0.0356158 0.0354516 0.0353173 0.0352054 0.0351844 0.0352851 0.0353554 0.0353807 0.0353282 0.0353414 0.0357652 0.0354386 0.0340924 0.0335611 0.0333286 0.0330004 0.0326747 0.0324035 0.0321846 0.0320971 0.0321349 0.0322507 0.032453 0.0327249 0.0330399 0.0333638 0.033641 0.0338381 0.0341222 0.0347165 0.0354628 0.0361715 0.0367462 0.0372065 0.0375711 0.0377788 0.0377775 0.0375069 0.0370814 0.0368223 0.0364927 0.0354395 0.0352812 0.035703 0.0359396 0.0359516 0.0357552 0.0354565 0.0351612 0.0349557 0.0349198 0.0351256 0.0355377 0.0361833 0.0369248 0.0376883 0.0380721 0.0380677 0.0380273 0.0380646 0.0381185 0.0382312 0.0383733 0.0385492 0.0386544 0.0386367 0.0383975 0.0378222 0.0368838 0.0360409 0.0358569 0.0361017 0.0363943 0.0365364 0.0366415 0.0367335 0.0368342 0.0369111 0.0369767 0.0370138 0.0370561 0.0371034 0.03714 0.0371653 0.0371416 0.0370432 0.0368589 0.036599 0.0360627 0.0356307 0.0354616 0.0353072 0.0351236 0.0351593 0.0353601 0.0356274 0.0360241 0.0365361 0.0379608 0.0411781 0.0471422 0.0522271 0.0538896 0.0532564 0.0517131 0.0502826 0.0491822 0.048176 0.0472327 0.0461486 0.0449312 0.0442345 0.0442682 0.0447048 0.0454218 0.0461277 0.0466913 0.0470453 0.0472875 0.0475022 0.0478165 0.0482744 0.0492719 0.0507921 0.0512122 0.0483289 0.037306 0.0299873 0.030514 0.0347955 0.0427575 0.0521942 0.0568386 0.0567413 0.0614913 0.026285 0.027823 0.0291381 0.0295956 0.029673 0.0296503 0.0295981 0.0295248 0.029504 0.0295407 0.0296118 0.0296935 0.0297537 0.0297469 0.0295251 0.0288802 0.0281088 0.0275854 0.0271778 0.0267942 0.0264665 0.0262337 0.0261081 0.0260797 0.0261239 0.0262045 0.0263107 0.0264653 0.0268014 0.0266252 0.0256972 0.0264933 0.0267113 0.0266495 0.0265704 0.0264681 0.0263702 0.0262859 0.0262085 0.0261072 0.0260031 0.0258589 0.0256823 0.0254771 0.0252973 0.0252067 0.0252738 0.025364 0.0253869 0.0254102 0.025438 0.0254223 0.0253109 0.0249483 0.0252124 0.0271216 0.0276799 0.0275741 0.027613 0.0284562 0.0296964 0.0301001 0.0300936 0.0299602 0.0299311 0.0298434 0.0298896 0.0298389 0.0298719 0.0298995 0.0299331 0.0299882 0.0300194 0.0300368 0.0300305 0.0300153 0.0300203 0.0300457 0.0300753 0.0300654 0.030019 0.0299892 0.0299737 0.0299429 0.0298932 0.029827 0.0297336 0.0296542 0.0295505 0.0294002 0.0291622 0.0295032 0.0302632 0.0305786 0.0303727 0.0300812 0.0301798 0.0303389 0.0305049 0.030692 0.0308769 0.031037 0.0311572 0.0312415 0.0312714 0.031253 0.0311907 0.0310972 0.0310358 0.0310148 0.031036 0.0310752 0.0310797 0.0309453 0.03074 0.0305652 0.0305009 0.0305816 0.0312703 0.0314397 0.0314389 0.0314522 0.0314415 0.0314404 0.0314274 0.0314262 0.0314163 0.0314063 0.0314073 0.0313943 0.0313734 0.03134 0.0312907 0.0312298 0.0311674 0.0311061 0.0310633 0.0310513 0.0310713 0.0311121 0.0311631 0.0312521 0.0315373 0.0328725 0.0350592 0.0357406 0.035614 0.0355063 0.0354922 0.0355098 0.0355267 0.0355401 0.0355534 0.0355635 0.0355635 0.0355759 0.0356567 0.0356019 0.035389 0.0352375 0.0350321 0.0348564 0.0347711 0.0347451 0.0347656 0.0347954 0.0348292 0.0348482 0.0348616 0.0348728 0.034883 0.0348983 0.0349231 0.0349927 0.0351445 0.0351033 0.0348724 0.0348844 0.0351741 0.0355404 0.0356994 0.0356063 0.0353816 0.0351753 0.0350947 0.0351528 0.0355389 0.0354351 0.0340692 0.0325972 0.0321752 0.0322323 0.0324656 0.0327015 0.0329184 0.0331038 0.0332653 0.0334491 0.0336591 0.0339472 0.0343379 0.0348522 0.0354825 0.0361077 0.0365062 0.0368472 0.0370707 0.0372853 0.0375789 0.0377599 0.037996 0.0383731 0.0391997 0.0400211 0.0391047 0.0363997 0.0359368 0.0359382 0.035982 0.0360359 0.0360666 0.0360361 0.0360488 0.0360634 0.0360151 0.0359798 0.0359042 0.0357983 0.0356735 0.0355509 0.0354535 0.0354167 0.0354627 0.0355405 0.0356313 0.0357612 0.0359478 0.0360927 0.0362854 0.0363712 0.0365112 0.0366347 0.0368383 0.0365918 0.034929 0.0343297 0.0347394 0.034933 0.035028 0.0350242 0.0350304 0.0350244 0.0350537 0.0350625 0.03512 0.035209 0.0353253 0.0354541 0.035554 0.0356348 0.0356778 0.0357173 0.0357025 0.0356445 0.0355729 0.0355093 0.035438 0.0353801 0.035328 0.0352722 0.0352222 0.0351631 0.0351215 0.0351056 0.0351778 0.0355644 0.0359025 0.0348058 0.0338188 0.0336961 0.0336222 0.0335266 0.0334935 0.0334079 0.0334353 0.0334322 0.0334709 0.0335392 0.0336416 0.033766 0.0339066 0.0340591 0.0342529 0.0345296 0.0348877 0.0352814 0.0356688 0.0360287 0.0363461 0.0365756 0.0367179 0.0367801 0.0367571 0.0366408 0.0366306 0.0365075 0.0357194 0.035208 0.0356591 0.0361746 0.036528 0.036767 0.0369702 0.0370939 0.0372226 0.0373234 0.0374726 0.0376752 0.0378677 0.0380914 0.0381966 0.0382209 0.0382077 0.038209 0.0381945 0.0381937 0.0381808 0.038161 0.0381026 0.0380029 0.0378407 0.0375941 0.0370789 0.0362251 0.0357916 0.0360629 0.0363335 0.0364034 0.0364854 0.0365683 0.0366462 0.0367131 0.0367745 0.0368224 0.0368423 0.0368642 0.0368469 0.0368681 0.0368481 0.0368341 0.0367648 0.0366357 0.0363487 0.0353662 0.0347109 0.0347356 0.034961 0.0352975 0.035767 0.036291 0.0367424 0.0370484 0.0372028 0.0375189 0.0386408 0.044091 0.0514496 0.0535184 0.0527331 0.0515938 0.0506355 0.0495441 0.0482249 0.0469844 0.0458812 0.0450103 0.0445729 0.0444028 0.0444548 0.044664 0.0449848 0.0454688 0.0459639 0.0465621 0.0471323 0.0477728 0.0486578 0.0503225 0.0516185 0.0490079 0.0450822 0.0423837 0.0416509 0.0443761 0.0480337 0.0521174 0.0553141 0.0556803 0.0557548 0.0595063 0.027533 0.0272306 0.0268877 0.0266198 0.0264532 0.0264478 0.0265569 0.026755 0.0270315 0.0273765 0.0278075 0.0282709 0.0286182 0.0292097 0.0248723 0.024796 0.0249419 0.0254567 0.0259548 0.0264702 0.0268825 0.0271374 0.0272977 0.0273381 0.027341 0.0272715 0.0271699 0.0270199 0.0268271 0.0266085 0.0264072 0.0262351 0.0261223 0.0260585 0.0260297 0.0260508 0.0260728 0.0261091 0.0261528 0.026212 0.0263088 0.0264552 0.0257381 0.0239603 0.0299131 0.0308849 0.0308869 0.0305674 0.0303023 0.0300854 0.0298989 0.0297181 0.0295571 0.0294275 0.0293247 0.0292334 0.0291668 0.0291057 0.0290923 0.029113 0.0291406 0.0291878 0.0292193 0.0292442 0.0292652 0.0292772 0.0292885 0.0292954 0.0293073 0.0293287 0.0294655 0.0299106 0.0295567 0.0292315 0.0308626 0.0310296 0.0307242 0.0306511 0.0306274 0.0306067 0.0305835 0.0305498 0.0305105 0.0304735 0.0304407 0.0304193 0.0304003 0.030399 0.0304033 0.0304192 0.0304397 0.0304635 0.0304875 0.0305133 0.0305459 0.0305648 0.0306078 0.0306449 0.0306997 0.0307531 0.0307913 0.0307923 0.0307557 0.0306818 0.0321732 0.0322292 0.0323473 0.0324118 0.0324592 0.032441 0.0323686 0.032288 0.0322086 0.0321726 0.0320928 0.0320993 0.032027 0.0320476 0.0319966 0.0320009 0.0319822 0.0319774 0.0319747 0.032008 0.0320927 0.0321221 0.03187 0.0320913 0.032245 0.0322438 0.0321897 0.0321299 0.0321148 0.0320682 0.0357326 0.0355287 0.0357771 0.0360904 0.0362419 0.0363119 0.036319 0.0363351 0.0363271 0.0363053 0.0362795 0.036254 0.0362295 0.0361959 0.0361514 0.036108 0.0360645 0.0360262 0.0360012 0.0359741 0.035946 0.0359199 0.035894 0.0358647 0.0358253 0.0357455 0.0356293 0.035469 0.0352237 0.035043 0.0325821 0.0326862 0.0331302 0.0337938 0.0342346 0.0344692 0.034519 0.0344473 0.0343429 0.0341657 0.0339553 0.0337423 0.0335473 0.0333818 0.0332509 0.033149 0.0330672 0.0330249 0.0329415 0.0328887 0.0328073 0.0328106 0.0326722 0.0325063 0.0322934 0.0317422 0.0285207 0.0276463 0.0280205 0.0283223 0.0351899 0.0365376 0.0370954 0.0376282 0.0377693 0.0377139 0.0376105 0.0375012 0.0374139 0.0373685 0.0373534 0.0373552 0.0373743 0.0374108 0.0374412 0.0374852 0.0375423 0.0376105 0.0376784 0.037583 0.0363308 0.0351307 0.0350909 0.0351417 0.0351564 0.0351862 0.0352448 0.0353114 0.0353079 0.0351909 0.0334286 0.0333989 0.0334134 0.0334322 0.0333961 0.0333242 0.0332288 0.0331248 0.0330326 0.0329759 0.0329076 0.0328438 0.0327915 0.0327592 0.0327651 0.032736 0.0326786 0.0331537 0.0373006 0.0380404 0.0378205 0.0377382 0.0376483 0.0375382 0.0374178 0.0373484 0.0374357 0.0377782 0.038593 0.0398046 0.0335568 0.0333397 0.0333436 0.0335149 0.0337205 0.0338384 0.0338652 0.0338164 0.0337449 0.0336676 0.0335742 0.0334049 0.033303 0.0332214 0.0331364 0.0330538 0.0329463 0.0327939 0.0328372 0.0346488 0.0362923 0.0363606 0.0363867 0.036416 0.0364395 0.0364932 0.0365812 0.036693 0.0368737 0.0370317 0.0342983 0.0343368 0.0346282 0.0348287 0.0348359 0.034819 0.0347843 0.0347363 0.0346739 0.0345972 0.0345097 0.0343993 0.0342338 0.034012 0.0338803 0.0358901 0.0384718 0.0386222 0.0383395 0.0381073 0.0379409 0.0378805 0.0378853 0.0378888 0.0379031 0.0379289 0.0379581 0.0379894 0.038072 0.0385603 0.0360826 0.0358984 0.0362714 0.0369656 0.0366179 0.0364238 0.0364094 0.0364425 0.0364614 0.0365483 0.0365694 0.0366869 0.036739 0.0368578 0.0369106 0.0370081 0.0370617 0.0371222 0.0371577 0.0371409 0.0371086 0.0370695 0.0369856 0.0369344 0.03684 0.036745 0.0366204 0.0364592 0.0365163 0.0363933 0.039103 0.0388237 0.0384773 0.0384342 0.0389227 0.0393166 0.0406711 0.0474897 0.0521625 0.0526093 0.0526506 0.0526451 0.0526162 0.0525415 0.0524708 0.0523268 0.0521967 0.0520705 0.0517992 0.0516788 0.0516369 0.0518018 0.0520835 0.0522104 0.0522291 0.0520596 0.0517396 0.0512665 0.0494937 0.0476246 0.0266771 0.0261221 0.0254499 0.025196 0.0252374 0.0253922 0.025602 0.0258085 0.0260336 0.0263664 0.026893 0.0276681 0.028441 0.0291689 0.0248474 0.0247838 0.0250274 0.0256652 0.0264401 0.0272459 0.0277951 0.0280416 0.0280695 0.0280503 0.0279232 0.0277474 0.0274641 0.0269848 0.0264175 0.0259282 0.0256165 0.0254759 0.0254277 0.0253947 0.0253674 0.025356 0.0253849 0.0254838 0.0256524 0.0258599 0.0260738 0.0263407 0.0262314 0.0251462 0.0300648 0.0309242 0.0308124 0.0304011 0.0300047 0.0296049 0.0292355 0.0289255 0.0286664 0.0284912 0.0283726 0.0282949 0.0282842 0.0283609 0.0285219 0.0287041 0.0288754 0.0290063 0.0291013 0.0291609 0.0291961 0.0292067 0.0292109 0.0292073 0.0292074 0.0292211 0.0292852 0.0296143 0.0299019 0.0298643 0.0309387 0.0309382 0.0307187 0.0307156 0.0307532 0.0307734 0.0307575 0.0306922 0.0305862 0.0304483 0.0303045 0.0301898 0.0301329 0.0301396 0.0302051 0.0302685 0.0303076 0.0303269 0.0303298 0.0303271 0.0303233 0.0303346 0.0303652 0.0304187 0.0304979 0.0305938 0.0306876 0.0307479 0.0307576 0.030716 0.0321643 0.0321801 0.0322901 0.0323901 0.0323813 0.0321556 0.0319493 0.0318042 0.031717 0.0316532 0.0316025 0.0315609 0.0315356 0.0315072 0.0314901 0.0314913 0.0315353 0.0316116 0.0316993 0.0317982 0.0319275 0.0320613 0.031969 0.0319906 0.0322626 0.0321549 0.0317415 0.0316577 0.0319687 0.0322937 0.0356777 0.035608 0.0360098 0.0363798 0.036583 0.0366702 0.0366737 0.03661 0.036533 0.0364578 0.0363942 0.0363249 0.0362434 0.0361327 0.0360088 0.0358902 0.03579 0.035728 0.0356894 0.0356728 0.0356701 0.0356842 0.0357091 0.0357353 0.0357512 0.0357338 0.0356573 0.0355379 0.0353541 0.0351433 0.0325964 0.033121 0.034356 0.0355067 0.0359002 0.0357444 0.035413 0.035045 0.0346373 0.034066 0.0335111 0.0330636 0.0327541 0.0325613 0.0324516 0.0323989 0.0323927 0.0324019 0.0324286 0.0324497 0.0324804 0.0325206 0.0325348 0.032497 0.0323577 0.0320723 0.0305941 0.0285585 0.0279725 0.028572 0.0348429 0.0364524 0.0374875 0.0378618 0.0374943 0.0370882 0.0368287 0.036722 0.0367148 0.0367513 0.0367996 0.0368447 0.0368732 0.0369053 0.0369562 0.0370195 0.0371213 0.0372668 0.0374583 0.0375615 0.0371522 0.0359738 0.0350419 0.0348267 0.0347565 0.0347619 0.034901 0.0351214 0.035465 0.0356011 0.0334483 0.033467 0.0336381 0.0336545 0.0334742 0.0331947 0.0328937 0.0326129 0.0323814 0.0321973 0.032065 0.0319996 0.0319744 0.0320639 0.0322147 0.032391 0.0325072 0.0327074 0.0348133 0.0376157 0.0381255 0.0380855 0.0380297 0.0377581 0.0372952 0.0368611 0.0366259 0.0367007 0.0374649 0.0393149 0.0335564 0.0333101 0.0334592 0.0340051 0.0343479 0.0343395 0.0341056 0.0337468 0.0333817 0.0330817 0.0328066 0.032602 0.0325135 0.0324758 0.0325434 0.0326213 0.0326906 0.0326886 0.0326181 0.0334157 0.0353581 0.036325 0.0363684 0.0363033 0.0361582 0.0362335 0.0364265 0.0365786 0.0367816 0.0370142 0.0343421 0.0344342 0.03493 0.0350632 0.034924 0.0347008 0.0344125 0.0341645 0.034004 0.0339666 0.0340361 0.0341389 0.0341691 0.0341091 0.03392 0.0342516 0.0357565 0.0375079 0.0383426 0.0380584 0.0377614 0.0377046 0.037741 0.037856 0.0379683 0.038044 0.0380551 0.0380401 0.0380829 0.0385775 0.0362995 0.0365113 0.036846 0.0367661 0.0364832 0.0364503 0.0365224 0.0366044 0.0366946 0.0367447 0.036804 0.0368307 0.0368973 0.0369807 0.0371236 0.0372489 0.0374078 0.0374868 0.0374826 0.0373257 0.0370316 0.0367237 0.0364726 0.0364422 0.0365244 0.0366016 0.0365955 0.0364827 0.0364924 0.0364267 0.0411264 0.0393362 0.0376774 0.0377055 0.0386189 0.0400942 0.0448964 0.0508515 0.0525089 0.0526328 0.0526175 0.0524996 0.0523493 0.052162 0.051984 0.0517818 0.051526 0.0511295 0.0505772 0.0497995 0.0490623 0.0487626 0.0494077 0.0503409 0.0512091 0.0517487 0.0517403 0.0513644 0.0493981 0.0474618 0.0256828 0.0249124 0.0246821 0.0249219 0.0254139 0.0259211 0.0263323 0.0265902 0.0266644 0.0266224 0.0266776 0.0270726 0.0280447 0.0290941 0.0248285 0.0247749 0.0250404 0.0257474 0.0267248 0.0276779 0.0281745 0.0283214 0.0283259 0.0282927 0.028149 0.0278931 0.0275095 0.0267845 0.0259966 0.0255516 0.0254171 0.0254632 0.0255481 0.0256098 0.0256177 0.0255587 0.0254652 0.0253785 0.0253582 0.0254821 0.0257236 0.0260811 0.0263157 0.0257111 0.0301599 0.0309711 0.0308209 0.0304077 0.0299849 0.0295332 0.0290698 0.0286302 0.0283064 0.0281314 0.0280379 0.0279622 0.0279992 0.0282714 0.0286499 0.028972 0.0291643 0.0292633 0.0293151 0.0293301 0.0293292 0.0293139 0.029283 0.0292378 0.0291872 0.0291517 0.0291553 0.0293313 0.0297377 0.0299935 0.0309626 0.0308787 0.03077 0.0309047 0.0310338 0.0310671 0.0310069 0.0309059 0.0307734 0.0305554 0.0302547 0.0300231 0.0299851 0.0300877 0.0302349 0.0303151 0.0303195 0.0302894 0.0302435 0.0301918 0.0301529 0.0301388 0.0301464 0.0301879 0.0302673 0.0303775 0.0305052 0.0306267 0.0307034 0.0307077 0.0321557 0.0321039 0.0322 0.0323362 0.0319878 0.0316727 0.0315345 0.0314768 0.0314426 0.0313706 0.0312968 0.0312212 0.0311567 0.0311009 0.0310707 0.0310747 0.0311327 0.0312295 0.031353 0.0314996 0.0316887 0.0319168 0.0320118 0.0319368 0.0320409 0.0317492 0.0311348 0.0309627 0.0313185 0.031855 0.0356467 0.0357267 0.0362787 0.0367244 0.036949 0.0369768 0.0368814 0.0367206 0.0365593 0.0364485 0.0363879 0.0363089 0.0361506 0.0359439 0.0357584 0.0356298 0.0355703 0.0355526 0.035557 0.0355623 0.0355591 0.0355554 0.0355657 0.0355908 0.0356231 0.03565 0.0356486 0.0355728 0.0354335 0.0352198 0.0326583 0.0337356 0.0355935 0.0367422 0.0366193 0.0359457 0.0352918 0.0347707 0.0341949 0.0333697 0.0327012 0.0323061 0.0321246 0.0320704 0.0321059 0.0321746 0.03226 0.0323187 0.0323763 0.0323755 0.0323989 0.0323861 0.0324083 0.0324272 0.0323756 0.032213 0.0316641 0.0299587 0.028306 0.0283804 0.0345658 0.036421 0.0379823 0.0373901 0.0367676 0.0365153 0.036522 0.0366369 0.0367923 0.0369518 0.0370883 0.0371875 0.0372321 0.0372389 0.0372255 0.0371585 0.0370916 0.0370825 0.0371937 0.0374027 0.0374327 0.0368839 0.0358012 0.0349233 0.0344646 0.0344095 0.0345669 0.0347055 0.0350723 0.0356766 0.0334746 0.0337379 0.0339574 0.0337526 0.033283 0.032778 0.0323058 0.0318814 0.0315182 0.0312427 0.0310621 0.0309837 0.0310094 0.0311335 0.0313911 0.0317301 0.0320856 0.0323318 0.0332589 0.0358727 0.0379331 0.0383524 0.0383553 0.0379856 0.0372272 0.036566 0.0361394 0.0361345 0.0366116 0.0385492 0.033532 0.0333335 0.033885 0.0345639 0.0345936 0.0341647 0.0334781 0.0328628 0.0323042 0.0319278 0.031624 0.031434 0.0312993 0.0313129 0.0314427 0.0316963 0.0319779 0.0322528 0.0323735 0.0327225 0.0342214 0.035946 0.036408 0.0361894 0.035732 0.0358581 0.0362421 0.0365799 0.0367892 0.0370027 0.0344729 0.0349881 0.0351761 0.0350251 0.0346259 0.0340559 0.0334544 0.0329182 0.0325336 0.0323809 0.032472 0.0327944 0.0332421 0.0336264 0.0337988 0.0337677 0.0341863 0.0355503 0.0372118 0.0379404 0.0378177 0.0377251 0.0378532 0.0380722 0.0382918 0.038415 0.0383141 0.038124 0.038133 0.0386985 0.0365862 0.0368835 0.0368492 0.0365902 0.0364842 0.0365708 0.0366948 0.0367934 0.0368357 0.0368647 0.0368393 0.036824 0.0367609 0.0367283 0.0367402 0.0368417 0.0370066 0.0371887 0.0372131 0.0369197 0.0363457 0.0357758 0.0353188 0.0350224 0.0351396 0.0356237 0.0361647 0.0363782 0.0364584 0.0364359 0.0432982 0.0393506 0.0372077 0.0382417 0.0403838 0.0442219 0.0496336 0.052321 0.0525881 0.0524726 0.0521826 0.0518297 0.0515152 0.0513295 0.0512478 0.0512987 0.0512995 0.0511733 0.050666 0.0496263 0.0478796 0.0463572 0.0460354 0.0465832 0.0476074 0.0494091 0.0507389 0.0505348 0.0480469 0.0471449 0.0244922 0.0243463 0.0248413 0.0256943 0.0264736 0.0270153 0.0273592 0.0275959 0.027776 0.0276129 0.0271941 0.0270716 0.0277015 0.028979 0.0248185 0.0247594 0.0249787 0.0256285 0.0266495 0.0276748 0.028207 0.028352 0.02834 0.02827 0.0281596 0.0279066 0.0274393 0.0265194 0.0257335 0.0255453 0.0256846 0.0258824 0.0260364 0.026108 0.0261144 0.0260694 0.0259333 0.0257069 0.0254551 0.0253525 0.025468 0.0258056 0.0262327 0.0259648 0.0301828 0.031032 0.0309549 0.0306769 0.0303928 0.0300005 0.029427 0.0287373 0.0282534 0.0280438 0.0279559 0.027876 0.0281431 0.0286973 0.029152 0.0293529 0.0293625 0.0292883 0.0292005 0.0291311 0.0291077 0.0291389 0.0291826 0.029205 0.0291787 0.0291221 0.0290788 0.0291563 0.0295321 0.0299698 0.0309681 0.0308647 0.0308734 0.0311111 0.0312326 0.0311612 0.0310195 0.0309497 0.0308688 0.0306575 0.0301717 0.0298048 0.0299011 0.0301323 0.0302969 0.0302913 0.0302032 0.0300697 0.0299139 0.0297896 0.0297233 0.0297294 0.0297803 0.0298695 0.0299917 0.0301359 0.0302963 0.0304641 0.0306084 0.0306767 0.0321537 0.032047 0.0321553 0.0320854 0.031539 0.0313983 0.0313954 0.0313735 0.0312857 0.0311302 0.030951 0.030783 0.0306447 0.0305677 0.0305476 0.0305882 0.0306976 0.0308477 0.0310129 0.0312 0.0314178 0.0316886 0.0319371 0.0319585 0.0319177 0.0317175 0.0312406 0.0308625 0.0312937 0.0318689 0.0356365 0.035809 0.0364888 0.0370235 0.0372856 0.0372972 0.0371258 0.0368106 0.0364801 0.0363619 0.0363361 0.0362005 0.0359594 0.03571 0.0355565 0.035523 0.035575 0.0356615 0.0357455 0.0357949 0.0357971 0.0357433 0.0356688 0.0356005 0.0355707 0.0355784 0.0355983 0.0355736 0.0354654 0.0352687 0.0327269 0.0342556 0.0365147 0.0376078 0.037199 0.0362141 0.0352307 0.0347088 0.0339728 0.0329193 0.0322607 0.0320038 0.0319687 0.0320635 0.0322129 0.0323826 0.0325432 0.0326714 0.0327214 0.0327244 0.0326503 0.0325563 0.0324776 0.0324252 0.0323691 0.0322596 0.0320078 0.0309228 0.0289229 0.028332 0.0346851 0.0377218 0.0376599 0.036736 0.0364256 0.0364359 0.0366016 0.0368416 0.0370854 0.0373182 0.0375184 0.0376631 0.0377483 0.0377672 0.0377284 0.0376066 0.0374178 0.0372153 0.0371252 0.0372209 0.037401 0.0372997 0.0366271 0.0355696 0.0346233 0.0342907 0.0344785 0.0345669 0.0346844 0.0354756 0.0336871 0.0342787 0.0341538 0.0335414 0.0328618 0.0322418 0.0316337 0.0310691 0.0305913 0.0302296 0.0299858 0.0299051 0.0299526 0.030172 0.0305064 0.030959 0.0314962 0.0319357 0.0324599 0.0342347 0.0367902 0.0381641 0.0383659 0.037781 0.0368209 0.0360885 0.0355619 0.0355052 0.0360545 0.0379094 0.0334082 0.0335331 0.034521 0.0348501 0.03434 0.0334473 0.0326338 0.0319716 0.0314185 0.0309568 0.0306209 0.0303706 0.0303035 0.0303093 0.0304741 0.030774 0.0311693 0.0316228 0.0319944 0.0322996 0.0333673 0.035233 0.0363735 0.0361393 0.0354357 0.0356395 0.0361579 0.0365856 0.0368597 0.0370279 0.0348075 0.0352227 0.0351987 0.0348448 0.0341336 0.0332133 0.0322744 0.0314769 0.0309339 0.0306781 0.0307388 0.0310895 0.0316729 0.0324415 0.0330988 0.0334088 0.0335678 0.0343236 0.0359324 0.0373162 0.0377496 0.0376676 0.0378371 0.0381525 0.0384766 0.0386029 0.0384441 0.038207 0.0382461 0.0388343 0.0367416 0.0369474 0.0367491 0.036552 0.0366037 0.0367724 0.0369404 0.0370756 0.0371688 0.037219 0.0372165 0.0371638 0.0370681 0.0369329 0.036784 0.03668 0.0366934 0.0368422 0.0369592 0.0368002 0.0360766 0.035412 0.0347513 0.0340881 0.0339218 0.0344868 0.0354566 0.0361092 0.0363809 0.0364379 0.0445798 0.0392852 0.0372171 0.0403915 0.0438521 0.048599 0.0519423 0.0525726 0.0523603 0.0518659 0.0512232 0.0505632 0.05007 0.0498339 0.0498086 0.0500882 0.0505222 0.0509902 0.0511993 0.0507992 0.0491524 0.046345 0.0447362 0.0449894 0.0454657 0.0457428 0.047231 0.0476053 0.0459336 0.0472817 0.0240289 0.0246027 0.0257016 0.0266576 0.0272564 0.027524 0.0275991 0.0276792 0.0279162 0.0281693 0.0278632 0.0273278 0.0275872 0.0288803 0.0248106 0.0247347 0.0248487 0.0253065 0.0261602 0.0271731 0.0278322 0.0280221 0.0279306 0.0277965 0.0278603 0.0277483 0.0272633 0.0262193 0.02565 0.0257737 0.0260426 0.0262158 0.0262504 0.026201 0.0261665 0.0261695 0.0261414 0.0259846 0.025707 0.0254117 0.0253456 0.0256022 0.0261162 0.0260568 0.0301352 0.0311024 0.0311838 0.0311501 0.0311252 0.0308396 0.0300233 0.0289479 0.0282918 0.0280109 0.0278577 0.0279178 0.0285891 0.0292438 0.0294485 0.0293379 0.0290672 0.0288097 0.0286358 0.0285601 0.0285683 0.028659 0.0288051 0.0289636 0.0290606 0.0290651 0.0290217 0.0290519 0.0293818 0.0299358 0.0309735 0.0308743 0.0309821 0.0312588 0.0313029 0.0310568 0.0308466 0.030858 0.0308926 0.0307419 0.0300954 0.0296138 0.0299088 0.0302622 0.030287 0.0301237 0.0298684 0.0295935 0.029368 0.0292211 0.0291661 0.0292003 0.0293032 0.0294645 0.0296624 0.0298733 0.0300806 0.0302923 0.0304973 0.0306368 0.0321585 0.0320266 0.0320818 0.0314857 0.0312938 0.0313611 0.0313788 0.0312838 0.0310582 0.0307589 0.030467 0.0302289 0.0300811 0.0299985 0.029988 0.0300736 0.0302251 0.0304428 0.0306744 0.0309164 0.0311642 0.0314587 0.0317847 0.0319457 0.0319073 0.0317558 0.0315021 0.0308817 0.0315623 0.032217 0.0356359 0.035822 0.0365774 0.0371934 0.0374745 0.0375145 0.0373026 0.0367747 0.0363192 0.0362357 0.0362102 0.0360422 0.0357517 0.0355305 0.0354822 0.0355761 0.0357443 0.0359248 0.0360809 0.0361818 0.0361931 0.036117 0.0359675 0.0357862 0.0356429 0.0355731 0.035561 0.0355525 0.0354769 0.0352913 0.0327905 0.03458 0.0371076 0.0382964 0.0379923 0.0367103 0.03524 0.034717 0.0338507 0.0325949 0.0320236 0.0318907 0.0319672 0.0321546 0.0323999 0.0326734 0.032924 0.0331269 0.0332304 0.0331968 0.0330767 0.0328872 0.032694 0.0325222 0.0323945 0.0322749 0.0320919 0.0314144 0.029461 0.0284311 0.0353342 0.0384298 0.0370067 0.036468 0.0363902 0.0364741 0.036717 0.0370259 0.0373331 0.0376173 0.03787 0.038051 0.0381658 0.0382062 0.0381769 0.0380545 0.0378285 0.0375308 0.0372703 0.0371653 0.0372931 0.0373689 0.0370729 0.036247 0.0351261 0.034393 0.0344648 0.0345417 0.0344857 0.0352108 0.0345825 0.0348073 0.0340107 0.0331145 0.0324409 0.0317424 0.0309878 0.0302868 0.0297003 0.0292792 0.0290293 0.0289314 0.0290267 0.0292557 0.0296618 0.0302154 0.0308755 0.0315076 0.0319932 0.0331329 0.035361 0.0372467 0.0378683 0.0372054 0.0362246 0.0355885 0.0351043 0.0349507 0.0355539 0.0374118 0.0333482 0.0340854 0.0350235 0.034707 0.0337207 0.0327933 0.0320479 0.0313967 0.0307609 0.0302418 0.0298034 0.0295916 0.0294214 0.0294641 0.0296472 0.0299763 0.0304336 0.0309976 0.0315499 0.0319654 0.0327828 0.0345637 0.0361625 0.0361103 0.0353312 0.035667 0.0363382 0.0367252 0.0369726 0.0370764 0.0353056 0.0353834 0.0351799 0.0344772 0.0333946 0.0321342 0.0309314 0.0299815 0.0293125 0.0290249 0.029055 0.0294437 0.0300684 0.0310249 0.0320106 0.0327826 0.0331643 0.0336817 0.0350193 0.0367998 0.0375912 0.0374772 0.0376451 0.0380455 0.0385106 0.0387441 0.0386983 0.0385106 0.038586 0.0390712 0.0367996 0.0369411 0.0367032 0.0366204 0.0367789 0.0369984 0.0372011 0.0373634 0.03748 0.0375273 0.037536 0.0375055 0.0374459 0.0373148 0.0371226 0.036886 0.0366844 0.0366269 0.03677 0.036816 0.0361804 0.0354519 0.0347066 0.0336625 0.0333529 0.0338107 0.0349063 0.0358174 0.0362847 0.0364299 0.0455786 0.040286 0.0377299 0.0429596 0.0471254 0.0510307 0.0525143 0.0524096 0.0517887 0.0509017 0.0498768 0.0488673 0.0481472 0.0476906 0.0477446 0.0481635 0.0488966 0.0498221 0.0507247 0.0511965 0.050853 0.0483154 0.0446483 0.0445225 0.0464504 0.0462437 0.0455427 0.0456057 0.0457159 0.0485931 0.0243522 0.0254525 0.0266088 0.0273805 0.0277634 0.0278399 0.0277012 0.0275767 0.0276579 0.028053 0.0282165 0.0276621 0.0276382 0.0288361 0.0248084 0.0247081 0.0247611 0.0249495 0.0254622 0.0262957 0.0269606 0.0271382 0.0269323 0.0268851 0.0272855 0.0274774 0.0270311 0.025961 0.0257534 0.026038 0.0262663 0.0262127 0.026033 0.0259031 0.0258617 0.0259032 0.0260181 0.0260559 0.0258759 0.0255291 0.0253121 0.0254786 0.0260216 0.0260914 0.0299912 0.0311311 0.0313926 0.0315777 0.0317496 0.0315 0.0302321 0.0289578 0.0282458 0.0279251 0.0277302 0.0282137 0.0291964 0.0295547 0.0293449 0.0288987 0.0285045 0.0282574 0.0281559 0.0281165 0.028131 0.0282299 0.0284085 0.0286402 0.0288489 0.0289526 0.0289523 0.0289762 0.0292966 0.0299268 0.0309812 0.0308899 0.0310487 0.0313386 0.0312802 0.0309263 0.0306733 0.030725 0.0309023 0.0307738 0.0299862 0.0294913 0.0300065 0.0303371 0.0301493 0.0297936 0.0294081 0.0290803 0.0288404 0.0287012 0.0286532 0.0287149 0.0288497 0.0290529 0.0293236 0.0296021 0.0298684 0.0301339 0.0303932 0.0305963 0.0321767 0.0320267 0.0318084 0.0311339 0.0312834 0.0314146 0.0313479 0.0311113 0.0307623 0.0303645 0.0300385 0.0298096 0.0297022 0.0296454 0.0296571 0.0297087 0.029843 0.0300741 0.030372 0.0306619 0.0309507 0.0312584 0.0316232 0.0318987 0.0319251 0.0318159 0.0316372 0.0310614 0.0320907 0.0327581 0.0356422 0.0357557 0.0365033 0.0371692 0.0374644 0.0374828 0.0371782 0.0365293 0.0361555 0.0361477 0.0361043 0.035879 0.0355721 0.0354383 0.0355046 0.0356938 0.0359349 0.0361777 0.0363816 0.0365159 0.0365511 0.0364837 0.0363101 0.0360544 0.0357995 0.0356299 0.0355553 0.0355311 0.0354725 0.035303 0.0327474 0.0346323 0.0373502 0.0386952 0.0387296 0.0372831 0.0353072 0.0347548 0.0338264 0.0324248 0.0319127 0.0318383 0.0319776 0.0322262 0.0325435 0.0329208 0.0332944 0.0335951 0.0337341 0.0337034 0.033518 0.0332408 0.0329446 0.032671 0.0324523 0.0322838 0.0321082 0.031596 0.0297923 0.0285601 0.0363334 0.0379825 0.0368339 0.036583 0.0363996 0.036491 0.0367993 0.03716 0.0375125 0.0378536 0.0381482 0.0383654 0.0385104 0.0385629 0.0385283 0.038397 0.0381838 0.037857 0.0375108 0.0372439 0.0372302 0.0373515 0.0372471 0.0367079 0.0356418 0.0347055 0.0345676 0.0345436 0.0344166 0.0349925 0.0353783 0.03484 0.0335738 0.0328215 0.0321756 0.0313313 0.0304029 0.0296588 0.0290235 0.0286265 0.028383 0.0282839 0.02834 0.0285776 0.0290052 0.0295927 0.0303305 0.0310906 0.0316646 0.0324906 0.0342148 0.0360262 0.0367413 0.0362403 0.0355492 0.0351804 0.0347922 0.0345882 0.0352127 0.0371404 0.0335977 0.0349445 0.0352312 0.0343455 0.0332485 0.0324343 0.0316705 0.0309292 0.0301604 0.0295894 0.0292218 0.0289792 0.0289623 0.0289465 0.0290704 0.0293625 0.0298403 0.0304554 0.0311266 0.0316743 0.032423 0.034088 0.0359325 0.0359535 0.0352678 0.0359512 0.0367985 0.0370478 0.0371533 0.0371452 0.0354141 0.0355475 0.0349885 0.0339045 0.0325347 0.0310898 0.0298085 0.0288224 0.0281942 0.0278603 0.0278609 0.0281533 0.0287707 0.0297453 0.0308704 0.0320025 0.0327217 0.0332825 0.0344814 0.0365378 0.0374403 0.0372357 0.0373357 0.0376946 0.0382071 0.0386734 0.0389993 0.0391372 0.0392183 0.0393485 0.0368074 0.0369508 0.0367245 0.0367254 0.0369506 0.0371956 0.0373919 0.0374946 0.0375114 0.0374761 0.0374652 0.0375057 0.0375575 0.0375604 0.0374441 0.0372034 0.036883 0.0366129 0.0366024 0.0367822 0.036422 0.0356966 0.0349465 0.0339101 0.03331 0.0336377 0.0346588 0.0356252 0.036195 0.0364283 0.0463904 0.0422372 0.038168 0.044891 0.0492153 0.0519147 0.0524929 0.0520198 0.0510835 0.0498143 0.0483748 0.0470539 0.0459402 0.045387 0.0453017 0.0459902 0.0470784 0.0483951 0.0496421 0.0506727 0.0514062 0.0506897 0.0457784 0.0431254 0.0467091 0.0507513 0.048657 0.047063 0.0479299 0.0514454 0.0250115 0.0262194 0.0273086 0.0280421 0.0283847 0.0284256 0.0281622 0.0277708 0.0276029 0.0278848 0.0282777 0.0278733 0.0277362 0.0288512 0.0248126 0.0246972 0.0246683 0.0246414 0.0247757 0.0251724 0.0255957 0.0257357 0.0256287 0.0258737 0.0266891 0.0272248 0.0267935 0.0258135 0.0258986 0.0262608 0.0262464 0.025935 0.0257321 0.0257519 0.0258092 0.0258206 0.0258916 0.0260005 0.0259314 0.0256056 0.0253184 0.0254155 0.0259869 0.0261032 0.0297728 0.0310789 0.0314974 0.0317619 0.0318266 0.0313142 0.0298211 0.0286796 0.0280383 0.0277531 0.0277267 0.0287776 0.0296088 0.0294868 0.0289397 0.0283975 0.0281183 0.0280046 0.0279909 0.0279964 0.0280116 0.0280448 0.0281674 0.0283896 0.0286389 0.0288153 0.0288692 0.0289223 0.0292823 0.0299658 0.0309926 0.0308947 0.0310585 0.0313577 0.0312819 0.030897 0.0305981 0.0306354 0.0309251 0.0307606 0.0298282 0.02946 0.030164 0.0303095 0.0299015 0.0294126 0.029 0.0286791 0.0284649 0.0283462 0.0283167 0.0283638 0.0285026 0.0287247 0.029034 0.0293633 0.0296878 0.0300065 0.0303118 0.0305649 0.032192 0.0319482 0.0314064 0.0310962 0.0313757 0.0314302 0.0312717 0.0309434 0.0305195 0.0300847 0.0297865 0.0296484 0.0296048 0.0296032 0.0296017 0.0296164 0.0296705 0.0298424 0.0301323 0.030467 0.0307792 0.0311063 0.0314869 0.0318331 0.0319351 0.0318697 0.0316793 0.0314603 0.0329717 0.0335404 0.0356619 0.0356524 0.03626 0.0368826 0.0372061 0.0371549 0.0367015 0.0361924 0.0360284 0.0360928 0.0359934 0.0357254 0.0354493 0.0354049 0.0355343 0.0357733 0.0360588 0.036325 0.0365599 0.0367137 0.0367703 0.0367319 0.0365725 0.0362902 0.0359679 0.0357152 0.0355741 0.0355177 0.0354599 0.0353018 0.0327468 0.0344643 0.0372014 0.0388244 0.0390594 0.0377379 0.0354349 0.0348082 0.0339505 0.0323999 0.031859 0.0318144 0.0319604 0.032238 0.0326028 0.0330661 0.0335337 0.0339132 0.034104 0.0340579 0.0338339 0.0335052 0.0331387 0.0328053 0.0325175 0.03229 0.0320995 0.0316209 0.0299201 0.0286853 0.0371514 0.0374802 0.0371942 0.0368104 0.0364276 0.03649 0.0368334 0.0372228 0.0376102 0.0379929 0.0383184 0.0385726 0.0387263 0.0387855 0.0387563 0.0386313 0.0384289 0.0381 0.0377226 0.0373724 0.0372295 0.0373075 0.0372997 0.0369433 0.036021 0.0350294 0.0347536 0.0345819 0.0344485 0.0348734 0.0356436 0.0344897 0.0332951 0.0327482 0.0320294 0.0310373 0.030038 0.0293083 0.0286834 0.0283259 0.0280699 0.0279814 0.0280333 0.028209 0.0285924 0.0291771 0.0299446 0.0307617 0.0314201 0.0321163 0.03342 0.0348567 0.035464 0.0351923 0.0349669 0.0349393 0.0346602 0.0344482 0.035064 0.0370261 0.0341651 0.0355032 0.0352003 0.0340353 0.0330195 0.0322262 0.0313629 0.0305352 0.0296666 0.0292106 0.0288529 0.028729 0.0286686 0.0287148 0.0287905 0.0289917 0.0294251 0.0300582 0.0307929 0.0314379 0.0321921 0.033822 0.0357676 0.0356907 0.0352871 0.0364171 0.0372772 0.0373938 0.0373668 0.0372591 0.036091 0.0356255 0.0345924 0.0333531 0.0318282 0.0303562 0.0290218 0.0281108 0.0274547 0.0271547 0.0270759 0.027329 0.0278587 0.0288231 0.029959 0.0312953 0.0322808 0.0329924 0.0342437 0.0365901 0.0372999 0.0370355 0.0370216 0.0371544 0.0373681 0.0376228 0.03797 0.038378 0.0388208 0.0391272 0.0367699 0.037006 0.0367823 0.0368211 0.0370806 0.0373289 0.0374828 0.037483 0.0373593 0.0371987 0.0371598 0.0372318 0.0374214 0.0375786 0.0376118 0.0374683 0.0371527 0.0367503 0.0365021 0.0366534 0.0366785 0.0360638 0.0353816 0.0345274 0.033802 0.0338888 0.0346742 0.0355186 0.0361733 0.0364215 0.0468131 0.0447118 0.0386143 0.0451191 0.0502046 0.0521266 0.0523422 0.051651 0.0504644 0.0489057 0.047177 0.0454283 0.0439928 0.0429845 0.0428796 0.0437091 0.0452327 0.0470658 0.0487594 0.0499023 0.0508971 0.0515946 0.0485236 0.0422701 0.0428271 0.0509673 0.0533479 0.0519114 0.0521263 0.0531605 0.0255088 0.0268333 0.0280043 0.0287358 0.0289359 0.028792 0.0285653 0.0281555 0.0277749 0.0279158 0.0283054 0.0279395 0.0278477 0.0290073 0.024804 0.0246849 0.0246105 0.0245134 0.0243449 0.0243204 0.0243869 0.0244052 0.0245053 0.0250769 0.026273 0.0270306 0.0265843 0.0257352 0.0260922 0.0263684 0.0260219 0.0256644 0.0257077 0.0259245 0.0260452 0.0259977 0.0259335 0.0259747 0.0259184 0.0255921 0.0253029 0.0254104 0.0260191 0.0261051 0.0295284 0.0308461 0.0314051 0.0316662 0.0315433 0.0305231 0.029173 0.0282436 0.0277148 0.0275633 0.0279656 0.0293622 0.0297052 0.0291991 0.0285666 0.0281356 0.0280059 0.027993 0.0280191 0.0280368 0.0280334 0.0280224 0.0280646 0.0282463 0.0284992 0.0287028 0.0287969 0.0289099 0.0293748 0.0300217 0.031002 0.0309037 0.0310008 0.0312947 0.0312581 0.0309105 0.0305588 0.0306405 0.0309627 0.0306863 0.0296325 0.029499 0.0302776 0.0301965 0.029626 0.0291263 0.0287367 0.0284397 0.0282627 0.0281753 0.0281502 0.0281766 0.0283085 0.0285171 0.0288385 0.0292021 0.0295693 0.0299326 0.0302812 0.0305449 0.0322381 0.0318633 0.0310793 0.0312444 0.0314115 0.0314235 0.0312105 0.0308553 0.0303996 0.0299594 0.0297177 0.0296287 0.029629 0.0296448 0.0296445 0.0296114 0.0296174 0.0297301 0.0300147 0.030357 0.0306812 0.03102 0.0314084 0.0317886 0.0319482 0.0319218 0.0315359 0.0325779 0.0342319 0.0345536 0.0356851 0.0355862 0.0359521 0.0364014 0.036624 0.0364929 0.0361423 0.0359462 0.0359913 0.0360319 0.0358717 0.0356048 0.0353747 0.035369 0.0355125 0.03578 0.0360775 0.0363509 0.0365836 0.0367623 0.0368247 0.0368018 0.036684 0.0364157 0.0360732 0.0357788 0.0355915 0.035507 0.0354369 0.0352978 0.0326951 0.0341174 0.0366473 0.0385851 0.0391202 0.038047 0.035585 0.0348731 0.0342165 0.0325467 0.0318524 0.0317727 0.0319072 0.0321759 0.0325628 0.033035 0.0335437 0.0339417 0.0341943 0.0341473 0.0339051 0.0335742 0.0332124 0.0328628 0.0325405 0.0322765 0.0320538 0.0315609 0.0298824 0.0287712 0.0376756 0.0377218 0.0378566 0.0372012 0.036505 0.036458 0.0368066 0.037227 0.0376426 0.0380388 0.0383828 0.0386557 0.0388248 0.0389113 0.0388832 0.0387537 0.038575 0.0382577 0.0378776 0.0374866 0.0372602 0.0372745 0.0372891 0.0370313 0.0362394 0.0352957 0.0348896 0.0346538 0.0346036 0.0350191 0.0355489 0.0342623 0.033307 0.0328196 0.0320038 0.0309741 0.0299416 0.0292471 0.0286281 0.0282555 0.0279928 0.0278949 0.0279222 0.0280814 0.0284438 0.0289991 0.029755 0.0305858 0.0312773 0.0319202 0.0329175 0.0339627 0.0343729 0.0344213 0.0346885 0.034924 0.0346855 0.0344363 0.0351468 0.0370275 0.0349421 0.0357553 0.0352066 0.0339605 0.0329152 0.0320996 0.0311603 0.0302792 0.0294178 0.029011 0.0287 0.0286218 0.0286017 0.0286242 0.0287074 0.0288498 0.0292294 0.0298416 0.0306266 0.0313023 0.0321236 0.0338626 0.0356769 0.0352509 0.0355566 0.0369187 0.0374482 0.0373546 0.0372529 0.037199 0.0366121 0.0354187 0.0342427 0.0330656 0.0314923 0.0300167 0.0287333 0.0278492 0.0271398 0.0268067 0.0267157 0.026901 0.0273683 0.0282448 0.0293634 0.0308029 0.031966 0.032802 0.0343027 0.0368075 0.0371846 0.0369686 0.0369332 0.0369203 0.0368832 0.0368018 0.0367344 0.0367484 0.0369682 0.0373642 0.0366964 0.037012 0.0368817 0.0368844 0.0371357 0.0373909 0.0375163 0.0374368 0.0372068 0.0369628 0.0368654 0.0369472 0.0371951 0.0374739 0.0376479 0.0376186 0.0373588 0.0369414 0.0365293 0.0364475 0.0368046 0.0364917 0.035884 0.0352241 0.0345477 0.0343613 0.0348367 0.0355589 0.0361756 0.0364165 0.0447163 0.0471356 0.0439039 0.0425517 0.0495313 0.0521114 0.0522692 0.0514341 0.0501417 0.0484493 0.0465354 0.0445339 0.042658 0.0413766 0.0413038 0.0420399 0.0438296 0.0459855 0.0481184 0.0495353 0.050359 0.0514647 0.050807 0.0436478 0.038986 0.0447205 0.0524549 0.0527821 0.0517035 0.0498439 0.0258139 0.0274058 0.0286744 0.0291542 0.0289684 0.0286114 0.0284469 0.0283085 0.0280172 0.028082 0.0283373 0.0279246 0.02796 0.0289973 0.0281849 0.0265611 0.0250608 0.0247392 0.0245792 0.0244364 0.0242002 0.0239334 0.0237345 0.0237064 0.023877 0.0246203 0.0260384 0.0268941 0.0264293 0.0257266 0.026275 0.0263428 0.0257959 0.0255848 0.0258256 0.026129 0.0262457 0.0261544 0.0260157 0.0259737 0.0258387 0.0255079 0.0252723 0.0254865 0.0260998 0.0260933 0.0261161 0.0272913 0.0293359 0.0304971 0.0310608 0.0312002 0.0306429 0.0295175 0.0284567 0.0277074 0.027372 0.0274903 0.028441 0.0296537 0.0296196 0.0289499 0.0283758 0.0280726 0.0279974 0.0280176 0.0280574 0.028079 0.028075 0.0280363 0.0280532 0.0282034 0.0284403 0.0286263 0.0287401 0.0289746 0.0295253 0.0300489 0.0299916 0.0304533 0.0310072 0.0309181 0.0309077 0.0311305 0.0311186 0.0308187 0.0305765 0.0307327 0.0309859 0.0305629 0.0294247 0.0295885 0.0303106 0.0300436 0.0294365 0.0289962 0.0286269 0.0283538 0.0281929 0.0281195 0.0280922 0.028109 0.028238 0.028428 0.0287791 0.0291455 0.0295405 0.0299265 0.0302623 0.0305562 0.0321827 0.0323982 0.0320186 0.0312417 0.0310019 0.0313009 0.0314352 0.0314229 0.0312133 0.0308675 0.0304125 0.0299849 0.029742 0.0296486 0.0296472 0.0296524 0.0296402 0.0296185 0.0296187 0.0297319 0.0300137 0.0303397 0.0306615 0.0310016 0.0313984 0.0317937 0.0319758 0.0318621 0.0317306 0.0340819 0.035161 0.0355445 0.0358455 0.0360673 0.03577 0.0355667 0.035705 0.0359223 0.0360211 0.0359389 0.0358532 0.035892 0.0359784 0.0359243 0.0357558 0.0355222 0.0353144 0.035297 0.0354299 0.0356947 0.0359896 0.0362542 0.0364815 0.0366723 0.0367693 0.0367596 0.0366527 0.0364011 0.0360903 0.0358017 0.0355974 0.0354949 0.035421 0.0352872 0.0345103 0.0331687 0.0326968 0.0337068 0.0358895 0.0379761 0.0389446 0.0381725 0.0358286 0.0349161 0.0345876 0.0328779 0.0319016 0.031744 0.0318323 0.032076 0.0324188 0.0328585 0.0333297 0.0337184 0.0339153 0.0339358 0.0337668 0.0334917 0.033168 0.0328278 0.0325041 0.0322238 0.0319787 0.0314066 0.0297204 0.0291304 0.0360337 0.0385185 0.0381284 0.0386678 0.0388581 0.0378553 0.0366735 0.0364096 0.0367276 0.0371747 0.0375987 0.0379901 0.0383215 0.0385839 0.0387764 0.0388775 0.0388558 0.0387462 0.0385736 0.038278 0.0379212 0.0375298 0.0372805 0.037254 0.037264 0.0370088 0.0362231 0.035261 0.0348361 0.0348405 0.0355297 0.0361396 0.0364493 0.036233 0.0356157 0.0344985 0.0335031 0.0329859 0.0321825 0.0311277 0.0301048 0.0293932 0.0287887 0.0283876 0.0281043 0.0280172 0.0280297 0.028188 0.0285219 0.0290609 0.0297754 0.0305648 0.0312361 0.0318409 0.032618 0.0332966 0.0336779 0.0342049 0.0349038 0.0350855 0.0347303 0.0346121 0.0356621 0.0364319 0.0355486 0.0356817 0.035781 0.0357834 0.0353103 0.0339966 0.032901 0.0320853 0.0311293 0.0302191 0.0293921 0.0289778 0.0286466 0.0286098 0.0285778 0.0285981 0.0286703 0.0288217 0.0291793 0.0298086 0.0306091 0.0313026 0.0322268 0.0341403 0.0355134 0.0350187 0.0361303 0.0370096 0.036986 0.0367931 0.0367435 0.0368956 0.0373026 0.0372562 0.0367405 0.0351251 0.0341855 0.0330679 0.0315381 0.0300555 0.0288459 0.0279386 0.0271991 0.0267469 0.0266443 0.026808 0.0272876 0.0280877 0.0291841 0.0306367 0.0318234 0.0327658 0.0347344 0.0370125 0.0371314 0.0370638 0.0371658 0.0373002 0.0373213 0.0372091 0.0369591 0.0366755 0.0364616 0.0364729 0.0368924 0.0370926 0.0369825 0.0369956 0.036971 0.036934 0.0371049 0.0373648 0.0375433 0.0374699 0.0372292 0.0369103 0.0367487 0.0368273 0.0370691 0.0373888 0.0376256 0.0376773 0.0374521 0.0370665 0.0366562 0.0363133 0.036744 0.0369005 0.0364642 0.0358904 0.0353428 0.0350379 0.035207 0.0357578 0.0362886 0.0363646 0.0364153 0.0373919 0.0410862 0.0460048 0.0503575 0.045974 0.0468734 0.05089 0.0521651 0.0516398 0.0502584 0.0485207 0.046617 0.0446023 0.0426953 0.0413838 0.0411853 0.0418657 0.043438 0.0456977 0.0478512 0.049401 0.0500964 0.0511231 0.0513037 0.0460389 0.0378811 0.0380067 0.0452899 0.0477671 0.0448377 0.0421905 0.0622467 0.0708689 0.0260673 0.0279497 0.0291196 0.0292111 0.0285743 0.0280135 0.0279863 0.0281638 0.0281571 0.0282335 0.0282741 0.0278932 0.0280322 0.0289315 0.0281166 0.0264111 0.0251968 0.0248334 0.0246115 0.0244218 0.0241747 0.0238625 0.0236206 0.0235844 0.0237555 0.0245878 0.0260347 0.0268146 0.0263253 0.0257596 0.0263962 0.0262687 0.0257029 0.025581 0.0258451 0.0261196 0.0262213 0.0261649 0.0260267 0.025907 0.0256864 0.0253758 0.0252882 0.0256432 0.0261593 0.0260756 0.0264423 0.027648 0.0290915 0.0300189 0.0304384 0.0302856 0.0295014 0.028585 0.0276451 0.0271306 0.0271465 0.0275854 0.0288475 0.0297527 0.0295328 0.0288602 0.0283238 0.0280568 0.028002 0.0280205 0.0280553 0.0280655 0.0280602 0.0280444 0.0280744 0.028222 0.0284237 0.0286007 0.028821 0.0292396 0.0297896 0.0300316 0.0301185 0.0306953 0.0310047 0.0309282 0.0308437 0.0309199 0.0308841 0.0306858 0.0306351 0.0308757 0.0309819 0.0303652 0.029246 0.0297194 0.030308 0.0299375 0.0293999 0.0290023 0.0286591 0.0283965 0.0282228 0.0281457 0.0281132 0.0281515 0.0283065 0.0284874 0.0288621 0.0292245 0.0296118 0.0299634 0.0303182 0.0310638 0.0323716 0.0320716 0.0314829 0.0309113 0.0310382 0.0312552 0.0314293 0.0314451 0.0312712 0.0309741 0.0305603 0.0301386 0.0298549 0.0297089 0.0296714 0.0296627 0.0296538 0.0296533 0.0297005 0.0298493 0.0301218 0.0304134 0.030721 0.0310648 0.031473 0.0318352 0.0319328 0.0319662 0.033453 0.034866 0.0354786 0.0359453 0.0360681 0.0360372 0.0358125 0.0355908 0.0356022 0.0356728 0.0357183 0.0357524 0.0358237 0.0359034 0.035909 0.0357837 0.0356824 0.0354766 0.0352647 0.0351984 0.0352879 0.0355176 0.0358028 0.0360634 0.0362726 0.0364549 0.0365756 0.03659 0.0364856 0.0362892 0.0360208 0.0357687 0.0355835 0.0354776 0.0354023 0.0352668 0.0347159 0.0333656 0.0327296 0.0334326 0.0352302 0.0372052 0.0384599 0.0380784 0.0361105 0.0349687 0.0349324 0.0334712 0.0320924 0.0317337 0.0317703 0.0319462 0.032214 0.0325694 0.0329768 0.0333291 0.0335495 0.0335896 0.033481 0.0332667 0.0330026 0.0326908 0.0323964 0.0321295 0.0318363 0.0310799 0.0295817 0.029477 0.0360476 0.0391098 0.0387023 0.0400152 0.0402033 0.0388102 0.037026 0.0363722 0.0366009 0.0370416 0.0374604 0.0378453 0.0381539 0.0384072 0.0385977 0.0387093 0.0387019 0.0386155 0.038454 0.0381703 0.0378442 0.0374954 0.0372745 0.0372375 0.0372154 0.036914 0.0360485 0.0351507 0.0349777 0.0351549 0.0362525 0.0371153 0.0374395 0.0373837 0.0367102 0.0351787 0.0338082 0.0332505 0.0325351 0.0315133 0.0304837 0.0297573 0.0291446 0.0287346 0.0284277 0.0283032 0.0283328 0.0284875 0.0288154 0.0293293 0.0299819 0.0306839 0.0313015 0.0318598 0.0324244 0.032912 0.03366 0.0346463 0.0353619 0.0352166 0.0349221 0.0351284 0.0358414 0.0360657 0.0356926 0.0359236 0.0359191 0.0358381 0.0355013 0.0341964 0.0329957 0.0321963 0.0312682 0.0303584 0.0295758 0.0290881 0.0287621 0.0286632 0.0286093 0.0286261 0.0287126 0.0289343 0.0293411 0.0300046 0.0307327 0.031456 0.0325736 0.0346491 0.0350549 0.035129 0.0363409 0.0367524 0.0367915 0.0370988 0.0375952 0.0381413 0.0382132 0.0378147 0.0366058 0.0348854 0.0342848 0.0333491 0.0319099 0.0304735 0.029283 0.0283519 0.0276281 0.0271568 0.0269232 0.0270808 0.0274975 0.0283 0.0294429 0.0307615 0.0318826 0.033058 0.03545 0.0371631 0.0371677 0.0373077 0.0376941 0.0381052 0.0383497 0.0383951 0.0381661 0.0376882 0.0370078 0.0363997 0.0362278 0.0363127 0.036692 0.037015 0.0370873 0.0370427 0.0370769 0.0372678 0.037479 0.0375276 0.0374095 0.0371464 0.0369629 0.0369462 0.0371421 0.0374097 0.0376154 0.0376746 0.0374755 0.0371065 0.0367326 0.0363041 0.0363933 0.0371152 0.0372192 0.0366666 0.0360106 0.0357074 0.0356587 0.0359635 0.0363622 0.0363503 0.0362401 0.0362458 0.0381568 0.0429826 0.0494841 0.052219 0.0485805 0.0484846 0.0507583 0.0515869 0.0509049 0.0492985 0.0474677 0.0455803 0.0438976 0.0426672 0.0423542 0.0429866 0.0443729 0.0463504 0.0482375 0.0495124 0.050025 0.0508999 0.051381 0.047514 0.0376703 0.0335921 0.0361852 0.0376578 0.0353536 0.0404982 0.0645988 0.070474 0.0262792 0.0283334 0.0292981 0.0290962 0.0281428 0.0275583 0.0275788 0.0278684 0.028074 0.0281387 0.0280611 0.0279716 0.0283665 0.0289114 0.0282012 0.0265266 0.0251463 0.0248794 0.0246645 0.0244381 0.0241868 0.0239123 0.0237038 0.0236804 0.0239286 0.0248005 0.0260692 0.0267357 0.0262864 0.0258312 0.0264283 0.0262709 0.0257294 0.0255373 0.0256959 0.0259189 0.0260205 0.0259847 0.0258611 0.0256783 0.0254429 0.0252973 0.0254358 0.0258694 0.026183 0.0261503 0.0270945 0.0279789 0.0288483 0.0294881 0.0296567 0.0292886 0.0285017 0.0273973 0.0266668 0.0267041 0.0270828 0.0277169 0.0290507 0.0297926 0.0295434 0.0289116 0.0283876 0.0281069 0.0280136 0.0280064 0.0280316 0.0280403 0.028045 0.0280578 0.0281269 0.0282751 0.0284733 0.028736 0.0291258 0.0296354 0.0299516 0.0300249 0.0303628 0.0308523 0.0310126 0.0309592 0.0308111 0.0307803 0.0307322 0.0306799 0.0307942 0.0310327 0.0309183 0.0300823 0.0291218 0.0297989 0.0303269 0.029917 0.029452 0.0291211 0.0288151 0.0285579 0.0283839 0.0283064 0.0282833 0.0283581 0.0285036 0.0287409 0.0290675 0.0293914 0.0297269 0.0300916 0.0306923 0.0317252 0.0321742 0.031613 0.0311168 0.0308691 0.03096 0.0311426 0.0313968 0.0314642 0.0313567 0.0311438 0.0308059 0.0304046 0.0300622 0.0298678 0.0297653 0.0297434 0.0297556 0.0297951 0.0298855 0.0300576 0.0302964 0.0305638 0.0308713 0.0312258 0.031607 0.0318637 0.0320134 0.0327406 0.0339556 0.0343763 0.0350435 0.0356671 0.0359392 0.0359355 0.0358112 0.0356433 0.0356371 0.0356715 0.0357262 0.0357917 0.0358343 0.0358092 0.0357233 0.0356429 0.0356557 0.0354601 0.0352265 0.0350968 0.0351002 0.0352621 0.0355246 0.0357896 0.0360004 0.0361407 0.036254 0.0362826 0.0362228 0.0360734 0.0358857 0.0356928 0.0355439 0.0354455 0.0353635 0.0352316 0.0348174 0.0335316 0.0327597 0.0332158 0.0346233 0.0363072 0.0377395 0.0378296 0.0363184 0.0350365 0.0351135 0.0342511 0.0325212 0.0318192 0.0317234 0.0318279 0.0320021 0.03225 0.0325398 0.0328429 0.033046 0.0331343 0.0330764 0.0329379 0.0327194 0.0324694 0.0322217 0.0319825 0.0315998 0.0307314 0.0295576 0.0297771 0.035927 0.0399186 0.039501 0.0411422 0.0414841 0.0398676 0.0376832 0.036415 0.0364372 0.0368494 0.0372563 0.0376248 0.0379207 0.0381513 0.0383165 0.0383986 0.0384239 0.0383464 0.0381937 0.0379399 0.0376654 0.0374011 0.0372471 0.0372107 0.0371269 0.0367277 0.0357942 0.0351873 0.0353417 0.0355037 0.0368422 0.0380691 0.038615 0.0387128 0.0379227 0.0360208 0.0342333 0.03355 0.0330127 0.0320838 0.0310723 0.0303143 0.0297097 0.0292917 0.0289889 0.0288508 0.0288346 0.0289995 0.0293116 0.029784 0.0303484 0.0309288 0.0314427 0.0319037 0.032424 0.0332723 0.0343111 0.0353217 0.0355565 0.0353891 0.0353922 0.0355881 0.0357413 0.0356726 0.0356981 0.0357476 0.035738 0.035799 0.0356772 0.0345084 0.0332061 0.0324348 0.0315984 0.0307049 0.0299299 0.0293718 0.0290173 0.0288705 0.0288206 0.0288301 0.0289759 0.0292524 0.029726 0.0303386 0.0310393 0.0318512 0.0332534 0.0348528 0.0345991 0.0353924 0.0363087 0.0365666 0.0369436 0.0377376 0.0384204 0.0385574 0.0383274 0.0377951 0.0366574 0.0350522 0.0345474 0.0338598 0.0326243 0.0312591 0.0300588 0.0291205 0.0283945 0.0278932 0.0276783 0.0277834 0.0282247 0.0289994 0.0300321 0.0311247 0.0321929 0.0337969 0.036288 0.0372596 0.0372489 0.0375843 0.0381873 0.0387541 0.0390283 0.0390881 0.0389577 0.0386316 0.0379778 0.0370405 0.0362679 0.0360024 0.0361271 0.0365691 0.0369463 0.0370831 0.0371326 0.0371987 0.0373445 0.0374704 0.0375136 0.0374266 0.0373236 0.0372935 0.0373728 0.0375042 0.0376192 0.0376246 0.0374166 0.0370784 0.0367173 0.0363715 0.0360798 0.0368957 0.037902 0.0381363 0.037432 0.0364956 0.036198 0.0361931 0.0363546 0.0363404 0.0362134 0.0365224 0.0397197 0.046099 0.0519191 0.0540284 0.0523938 0.0490302 0.0489988 0.050552 0.0510786 0.0504672 0.0490369 0.0474219 0.0459821 0.044987 0.044628 0.0451285 0.046232 0.0477769 0.0490703 0.0497523 0.0499826 0.0507658 0.0513728 0.0480429 0.0372407 0.0307322 0.0296997 0.0294664 0.0289836 0.0399472 0.0644044 0.0694951 0.0264552 0.0285225 0.0293745 0.0290434 0.0280243 0.0274407 0.0273715 0.0275766 0.0278005 0.0278968 0.0279885 0.0283034 0.028871 0.0290996 0.0289466 0.0274428 0.0252693 0.0249484 0.0247905 0.0246058 0.0244008 0.0241984 0.0240513 0.024064 0.0243997 0.0251922 0.0261701 0.0266719 0.0263011 0.0258648 0.0264357 0.0263659 0.0258495 0.0255325 0.025507 0.0255989 0.0256576 0.0256402 0.0255428 0.025417 0.0253241 0.0254202 0.0257243 0.0260838 0.0262129 0.0263612 0.0272644 0.028091 0.0286565 0.0289633 0.0287805 0.0279811 0.026666 0.025821 0.0258483 0.0264874 0.0271241 0.0277436 0.0290659 0.0298122 0.029655 0.0290851 0.0285726 0.0282425 0.02809 0.0280263 0.0280275 0.0280336 0.028053 0.0281107 0.0282246 0.0284182 0.0286762 0.0290752 0.0295521 0.0298606 0.029883 0.0300109 0.0304622 0.0309091 0.0310452 0.0310377 0.0308861 0.0308147 0.0307906 0.0308628 0.031031 0.0310787 0.0307093 0.0297291 0.0290396 0.0298378 0.0303541 0.0299825 0.0295897 0.0293448 0.0291058 0.0288855 0.028733 0.0286524 0.0286539 0.0287152 0.0288626 0.0290701 0.0293476 0.0296428 0.0300333 0.0306011 0.0314297 0.0320456 0.0318341 0.0312998 0.0309715 0.0308822 0.0308342 0.0309517 0.0312953 0.0314682 0.031432 0.031312 0.0310914 0.030769 0.030437 0.0301442 0.0300259 0.0299715 0.0299924 0.0300515 0.0301637 0.0303229 0.030542 0.030808 0.0311192 0.0314515 0.0317443 0.0319644 0.0322933 0.0328421 0.0330434 0.0331846 0.0338584 0.0347829 0.0355487 0.035815 0.035777 0.0356576 0.0356551 0.035672 0.0356822 0.0356765 0.0356301 0.0355729 0.0355374 0.035571 0.0356563 0.035478 0.0352288 0.0350332 0.0349238 0.0349771 0.0351742 0.0354271 0.0356664 0.0358365 0.0359132 0.0359404 0.0359153 0.0358356 0.0357154 0.0355877 0.03548 0.0353979 0.0353287 0.0352286 0.0347904 0.0335049 0.0326974 0.0329333 0.0339594 0.035436 0.0370049 0.0374898 0.0363764 0.0351756 0.0351354 0.0350054 0.0332911 0.0320494 0.0317497 0.0317638 0.0318524 0.0319767 0.0321297 0.0323274 0.032509 0.0326155 0.0326123 0.0325272 0.0323854 0.0322043 0.0320171 0.0317634 0.0312832 0.03044 0.029688 0.030628 0.0365233 0.0407678 0.0411323 0.0422366 0.0424255 0.0407334 0.038634 0.0366707 0.0362847 0.0366031 0.0369835 0.0373326 0.0376191 0.0378196 0.0379561 0.0380292 0.0380301 0.0379768 0.0378302 0.0376441 0.0374523 0.0373011 0.0372167 0.037142 0.0369579 0.0364024 0.0355795 0.0356141 0.0362437 0.036268 0.037365 0.0389363 0.0399085 0.0400987 0.0390415 0.0370031 0.0348626 0.0338676 0.0335292 0.0328305 0.0318864 0.0310912 0.0304638 0.0300347 0.0297565 0.0296122 0.029597 0.0297231 0.0299907 0.0303594 0.0307898 0.0312334 0.031669 0.0322032 0.0330417 0.0341864 0.0348907 0.0354398 0.0355719 0.0355656 0.0356229 0.0356425 0.0354994 0.0353188 0.0353502 0.0353812 0.0355292 0.0356875 0.0357871 0.0349615 0.0335222 0.0327735 0.0320584 0.0312384 0.0304769 0.0299116 0.0295271 0.0293009 0.0292006 0.0293001 0.0294795 0.0298051 0.0302682 0.0308464 0.0315769 0.0325718 0.0338702 0.0346842 0.0345263 0.0355453 0.0362186 0.0364706 0.0369345 0.0377945 0.0384764 0.0385702 0.0382976 0.0377785 0.0369065 0.0353524 0.0347913 0.0344624 0.0335591 0.0323633 0.03121 0.0302631 0.0295563 0.0291059 0.028881 0.028945 0.0293476 0.0299763 0.0307967 0.0317476 0.0330257 0.0350464 0.0369971 0.037317 0.0373606 0.0377476 0.0383602 0.0388967 0.0391072 0.0391784 0.0391301 0.0389441 0.0385007 0.0376074 0.0365861 0.0359654 0.0359187 0.036131 0.0365477 0.0368789 0.0370534 0.0371624 0.0372438 0.0373443 0.0374409 0.0374804 0.037483 0.0374849 0.0375079 0.0375528 0.0375901 0.0375215 0.0372931 0.036973 0.0366341 0.0363736 0.0359647 0.0361275 0.0377011 0.0394685 0.0404817 0.0402369 0.0392389 0.0381878 0.0382921 0.0373945 0.0377219 0.0404428 0.0466516 0.0519249 0.0539264 0.054011 0.0536881 0.0513018 0.0486276 0.0489811 0.050061 0.0506305 0.0503694 0.049519 0.0484985 0.0477906 0.0474978 0.0478278 0.0485271 0.049336 0.0497626 0.0497988 0.049877 0.0507641 0.0513207 0.0476093 0.0355684 0.0281906 0.026396 0.0264559 0.0283299 0.0428327 0.0623338 0.0684134 0.0265151 0.0285642 0.0294372 0.0292132 0.0283105 0.0275958 0.0273979 0.0274617 0.0276283 0.0278225 0.028167 0.0287397 0.0293006 0.029497 0.029624 0.0288667 0.0263479 0.0252869 0.0250258 0.0249091 0.0248059 0.0247011 0.0246462 0.0247051 0.0249807 0.0255458 0.0261961 0.0265955 0.0264133 0.0258657 0.0263921 0.0265082 0.0260927 0.0257196 0.0255165 0.0254414 0.0254206 0.0254024 0.0253843 0.0254087 0.0255147 0.0257682 0.0260574 0.0261555 0.0259986 0.0259186 0.026478 0.0277041 0.0280958 0.0277817 0.0269723 0.0257418 0.0249467 0.0248654 0.0252538 0.0262696 0.0271865 0.0276563 0.0288966 0.0298074 0.0298229 0.0293694 0.0288806 0.0285207 0.0282983 0.0281779 0.0281383 0.0281317 0.0281815 0.0282741 0.0284509 0.0287021 0.0290602 0.0294635 0.0297529 0.0297253 0.0295674 0.0297823 0.0304345 0.0308856 0.0310361 0.0311347 0.0310484 0.0310184 0.0310335 0.0310937 0.0310987 0.0309144 0.0303208 0.0294061 0.0289906 0.0298092 0.0304056 0.0301071 0.0297668 0.0296229 0.0295059 0.0293684 0.0292529 0.0291969 0.0292043 0.0292684 0.0294003 0.0296175 0.0299213 0.030316 0.0308414 0.0314616 0.0319401 0.031944 0.0315423 0.0312019 0.0310614 0.0310713 0.0308188 0.0307372 0.0310837 0.0314247 0.0314653 0.0314376 0.0313402 0.0311501 0.030884 0.0306362 0.0304776 0.0303935 0.0304193 0.0304604 0.0305686 0.0307151 0.0309216 0.0311665 0.0314345 0.0316824 0.0318735 0.0320223 0.032172 0.0321235 0.0317575 0.0317367 0.0321364 0.0330443 0.0343838 0.0355161 0.0356594 0.0355084 0.0354847 0.0354689 0.0354403 0.0354132 0.0353992 0.0354109 0.0354533 0.0355537 0.035668 0.0355343 0.0352908 0.0350561 0.0348573 0.0347595 0.0348165 0.0349906 0.0352159 0.0354418 0.0356064 0.0356744 0.0356866 0.0356538 0.0355926 0.0355193 0.0354468 0.0353843 0.0353265 0.0352538 0.0345098 0.0333312 0.0326205 0.0327278 0.0334332 0.0348356 0.0365395 0.0371059 0.0363356 0.0352953 0.0350815 0.03531 0.0343802 0.0326139 0.0319 0.0317897 0.0318133 0.0318412 0.031877 0.0319235 0.0320168 0.0320899 0.0321154 0.032078 0.0319935 0.0318656 0.0316798 0.0313831 0.0309456 0.0305352 0.0305028 0.0329387 0.0383451 0.0421803 0.0431084 0.0435357 0.0429554 0.0409738 0.0395477 0.0373602 0.0362204 0.0363429 0.0366667 0.036989 0.0372564 0.0374537 0.037563 0.0376142 0.0376179 0.0375788 0.0374906 0.0373846 0.0372933 0.0372104 0.0371215 0.0369559 0.0366122 0.0359934 0.0355625 0.0364715 0.0377627 0.0380882 0.0387584 0.0400602 0.041067 0.0409891 0.0396813 0.0377679 0.0357192 0.0342311 0.033948 0.0336292 0.032894 0.0321103 0.0314189 0.0309824 0.0306784 0.0305333 0.0304925 0.0305629 0.0307342 0.0309979 0.0313338 0.0317532 0.0322994 0.0330603 0.0340122 0.0347206 0.0349741 0.0351902 0.0353388 0.0354222 0.0354478 0.035375 0.0351402 0.0349646 0.0348692 0.0350174 0.0353346 0.0355595 0.0357088 0.035447 0.0339848 0.0331571 0.0326079 0.0319213 0.03123 0.0306689 0.0302998 0.0300782 0.030026 0.0300544 0.0302562 0.0305656 0.0310118 0.0315995 0.0323646 0.0332914 0.0340861 0.0343355 0.0345982 0.0355831 0.0362237 0.0365166 0.0369031 0.037554 0.0382092 0.038471 0.0382513 0.0377046 0.0370776 0.03579 0.0349884 0.0350002 0.0345525 0.0337021 0.0326956 0.0317623 0.0310121 0.0305613 0.0303062 0.0303819 0.0306304 0.0311395 0.0318798 0.032955 0.0345182 0.036438 0.0374296 0.0374095 0.0374682 0.0377673 0.0382064 0.0385977 0.0388122 0.0389343 0.0390231 0.0389389 0.0386023 0.0377371 0.0366566 0.0359391 0.0358717 0.0360624 0.0363588 0.0366642 0.0368814 0.0370246 0.037134 0.0372215 0.0373022 0.0373717 0.0374239 0.0374564 0.037482 0.0375054 0.0374883 0.0373576 0.0371101 0.0367946 0.0364766 0.0362744 0.0359457 0.0355284 0.0362554 0.0382492 0.0406502 0.0428363 0.0443525 0.0450694 0.0466252 0.0447215 0.0466512 0.0512448 0.0538766 0.0538576 0.0529442 0.0521183 0.0521764 0.0515556 0.0493485 0.0480437 0.0482742 0.0492226 0.0499764 0.0502097 0.0501419 0.0499957 0.0499038 0.0499543 0.0500013 0.0499572 0.0496845 0.0494801 0.0497976 0.0509819 0.0511559 0.0459366 0.0329248 0.0265011 0.0261862 0.027001 0.0321694 0.050353 0.060651 0.0666129 0.0264934 0.0284518 0.0294472 0.0294707 0.0288752 0.0281711 0.0278095 0.0277685 0.027883 0.0281188 0.0285253 0.0290834 0.0295537 0.0297623 0.0297726 0.0293124 0.0280729 0.0266189 0.0257841 0.0253911 0.0252041 0.0251132 0.0250964 0.0251673 0.0253854 0.0257746 0.0261908 0.0265151 0.0265928 0.0258615 0.0262559 0.0266252 0.0264047 0.0260895 0.0258514 0.0257015 0.0256316 0.0256245 0.0256656 0.0257762 0.0259436 0.0261178 0.0261384 0.0258884 0.0253661 0.0248399 0.0248367 0.0258377 0.0264256 0.0256336 0.024959 0.0245144 0.0245089 0.0245475 0.0248232 0.0260733 0.0272909 0.0275562 0.0285108 0.0296841 0.0299526 0.0297252 0.0293137 0.0289697 0.0287197 0.0285333 0.028473 0.0284624 0.0285182 0.0286394 0.0288412 0.0291223 0.029447 0.0297004 0.029728 0.0295044 0.0293119 0.0295073 0.0301482 0.0307334 0.0309055 0.0310056 0.0310358 0.0310403 0.0310316 0.0309793 0.0308503 0.0304241 0.0297513 0.0291963 0.0289868 0.0297095 0.0304516 0.0302767 0.0299561 0.0298813 0.0299232 0.0299447 0.0299692 0.0300179 0.0300971 0.030223 0.0304199 0.0306929 0.0310399 0.0314343 0.0317991 0.0320425 0.0321059 0.0318419 0.0315089 0.0313125 0.0313025 0.0314235 0.0310037 0.0306384 0.0307685 0.0313051 0.0314578 0.0314832 0.0314827 0.0314252 0.0313004 0.0311633 0.0310532 0.031023 0.031017 0.0310387 0.0311127 0.03123 0.0313723 0.0315309 0.0316751 0.0317724 0.031808 0.0318027 0.0317104 0.0314527 0.0312526 0.0312598 0.0313115 0.0315786 0.0324968 0.0343164 0.0355953 0.0357181 0.0356015 0.0354717 0.0354183 0.0354074 0.0354157 0.0354379 0.0354778 0.0355665 0.0356703 0.0356189 0.0354212 0.0351883 0.0349428 0.0347349 0.0346214 0.0346205 0.0347054 0.0348531 0.0350204 0.0351638 0.0352593 0.0352997 0.0352976 0.0352639 0.0352079 0.0351324 0.0350071 0.0347896 0.0341216 0.0336793 0.0328986 0.0327746 0.0333548 0.0347784 0.0363514 0.0367202 0.0361446 0.0353667 0.0350652 0.0352969 0.035302 0.0336415 0.0322719 0.0319273 0.0319103 0.0319303 0.0318988 0.0318413 0.0317834 0.0317579 0.0317207 0.0316921 0.0316297 0.0315412 0.0314359 0.0313299 0.0313509 0.0319459 0.0342403 0.037574 0.0411412 0.043177 0.0436176 0.0435309 0.0423869 0.0403665 0.0397856 0.038645 0.0364899 0.0361432 0.0363212 0.0365974 0.0368537 0.0370589 0.0371874 0.0372476 0.0372702 0.0372534 0.0372236 0.037178 0.0371138 0.0370064 0.036845 0.0365819 0.0361373 0.0356994 0.0357155 0.0369259 0.0383362 0.0393681 0.040139 0.0409282 0.0410854 0.0406479 0.039314 0.0379169 0.036681 0.034782 0.0341854 0.0342416 0.0339207 0.0333455 0.0327405 0.0322113 0.0318523 0.0316595 0.0315602 0.0315906 0.0317232 0.0319626 0.0323232 0.0328102 0.0334358 0.034172 0.0347923 0.0351293 0.0353156 0.0353186 0.035248 0.0351905 0.0351097 0.0350147 0.0348564 0.0347787 0.0348206 0.0350416 0.0353209 0.0354517 0.035528 0.0357495 0.0346412 0.033572 0.0331404 0.0326685 0.0321284 0.0316377 0.0312751 0.0310613 0.0309654 0.0310513 0.0312247 0.0315181 0.0319247 0.0324404 0.0330397 0.0336197 0.0339656 0.0341224 0.0346866 0.03559 0.0363064 0.0367515 0.0371105 0.0376102 0.0380655 0.0382666 0.0380396 0.0374864 0.0370381 0.0362377 0.0351643 0.0352747 0.0353616 0.0350549 0.034464 0.0337349 0.0330491 0.0325014 0.0322307 0.0322007 0.0324367 0.0329288 0.0336752 0.0348426 0.0362324 0.0374375 0.0376276 0.0375472 0.0375847 0.0377576 0.0380061 0.0382559 0.0384912 0.0386936 0.0388302 0.0387821 0.0383865 0.037479 0.0364322 0.0358461 0.035911 0.0361972 0.0364864 0.0366469 0.0367919 0.0368923 0.0370011 0.0370725 0.037136 0.0372173 0.0372603 0.0373142 0.0373503 0.0373604 0.0373034 0.0371397 0.0368707 0.0365129 0.0361892 0.0360288 0.0358385 0.0353912 0.035151 0.035343 0.0362493 0.0377199 0.0398532 0.0428345 0.0462078 0.0498625 0.0532158 0.0542323 0.0539075 0.0526398 0.0509953 0.0498754 0.0497633 0.0497226 0.0486078 0.0471478 0.0465062 0.0468615 0.0477981 0.0486456 0.0492193 0.0495686 0.0497166 0.0497149 0.049457 0.049194 0.0489331 0.0491024 0.0500151 0.0513011 0.0504154 0.0423719 0.029841 0.0267564 0.0278157 0.0319137 0.0425425 0.057609 0.0584461 0.0641246 0.0263947 0.0281757 0.0293512 0.0296204 0.0294797 0.0291019 0.0287615 0.0286009 0.028634 0.0288078 0.0290926 0.0294393 0.0297224 0.029848 0.0297147 0.0291172 0.0284401 0.0276871 0.0268851 0.0262275 0.0257875 0.0255395 0.0254443 0.0254872 0.0256637 0.0259293 0.0261963 0.0264575 0.0267853 0.0261041 0.0259948 0.0266142 0.0266525 0.0264664 0.0262906 0.0261539 0.0260612 0.026026 0.0260329 0.026065 0.0260765 0.0260054 0.0257755 0.0253749 0.0248619 0.024571 0.0246197 0.0247414 0.0249517 0.0247716 0.0247135 0.0248267 0.0248867 0.0247347 0.0249087 0.0263254 0.027498 0.0275542 0.0279918 0.0292878 0.0299362 0.0300156 0.0297755 0.029535 0.0293026 0.0291921 0.0290845 0.0290723 0.0291102 0.0292113 0.0293676 0.0295583 0.0297368 0.0298278 0.0297738 0.0296436 0.029621 0.029724 0.029807 0.0300122 0.0303236 0.0303934 0.0304909 0.0305097 0.0304491 0.0302781 0.0299594 0.0296104 0.0293522 0.0291987 0.0290593 0.029553 0.0304367 0.0304536 0.0301481 0.0300264 0.0301589 0.0303274 0.0305256 0.0307446 0.0309531 0.0311625 0.0313659 0.031579 0.0317562 0.0318733 0.0319079 0.0318943 0.0318509 0.0317374 0.031648 0.0315761 0.031569 0.0314895 0.0310795 0.0306665 0.0305339 0.0309873 0.0314159 0.0314646 0.0314848 0.0315009 0.0314905 0.0314678 0.0314485 0.0314436 0.0314595 0.0314856 0.0315027 0.0315466 0.0315839 0.0316085 0.0316028 0.0315658 0.0314853 0.0313551 0.0312179 0.0310858 0.031058 0.0311065 0.0311876 0.0313059 0.0315968 0.0329833 0.035033 0.0358155 0.0357039 0.0355088 0.0354619 0.0354726 0.0354932 0.0355095 0.0355395 0.0355893 0.0356395 0.0356743 0.0355922 0.0353958 0.0351754 0.0349446 0.0347386 0.0346086 0.0345423 0.0345277 0.0345429 0.0345679 0.0346133 0.0346491 0.0346621 0.0346469 0.0346041 0.0345398 0.0344655 0.0343822 0.0346374 0.0345435 0.0336618 0.0335128 0.0341544 0.0353169 0.0361753 0.0362623 0.0358068 0.0352991 0.0350861 0.0351763 0.0355295 0.034904 0.0330206 0.0321779 0.03204 0.032129 0.0322181 0.0322376 0.0321993 0.0321245 0.032069 0.0320597 0.0320687 0.0321604 0.0323644 0.0328612 0.033872 0.035615 0.0378847 0.0396864 0.0407012 0.0411085 0.0413242 0.0408543 0.0398001 0.0389842 0.0393522 0.0398333 0.037415 0.0361464 0.0360493 0.0361871 0.0363677 0.0365437 0.0366819 0.0367783 0.0368324 0.0368481 0.0368267 0.0367752 0.0366792 0.0365364 0.0363166 0.0360098 0.035693 0.035505 0.0356532 0.0361991 0.0368912 0.0376777 0.0384063 0.0389114 0.0389861 0.0385394 0.0378345 0.0372921 0.0370806 0.0357289 0.0343746 0.0344407 0.0345942 0.034463 0.0341656 0.0338436 0.0335232 0.033304 0.0331969 0.0332106 0.0333233 0.0335367 0.0338621 0.0342786 0.0347362 0.0351443 0.0354537 0.0356914 0.0358505 0.0358299 0.0357577 0.0356002 0.035463 0.0353107 0.0352107 0.0351811 0.0352753 0.0353607 0.035381 0.035328 0.0353376 0.0357614 0.0354395 0.0340929 0.0335607 0.0333184 0.033008 0.0326748 0.032391 0.0322006 0.0321079 0.0321264 0.0322518 0.0324544 0.0327238 0.0330401 0.033364 0.0336412 0.0338382 0.0341202 0.0347144 0.0354628 0.0361743 0.0367504 0.0372025 0.0375631 0.0377873 0.0377908 0.0375129 0.0370835 0.0368252 0.0364942 0.0354381 0.0352827 0.0357079 0.0359313 0.0359526 0.0357557 0.035455 0.0351659 0.0349561 0.034926 0.0351209 0.0355459 0.0361492 0.0369588 0.0376746 0.0380857 0.0380438 0.0380511 0.038048 0.038118 0.0382278 0.0383829 0.0385392 0.0386519 0.0386402 0.0383968 0.0378178 0.0368892 0.0360364 0.0358613 0.0361037 0.0363896 0.0365412 0.0366385 0.0367363 0.0368285 0.0369209 0.0369677 0.0370147 0.0370622 0.0370986 0.0371426 0.0371656 0.037141 0.0370414 0.0368615 0.0365981 0.0360653 0.0356352 0.035464 0.0353094 0.035132 0.0351574 0.035357 0.0356434 0.0359885 0.0365895 0.0379051 0.0414322 0.0471475 0.0521736 0.0539067 0.0532669 0.0516992 0.0503139 0.0491611 0.0481818 0.0472308 0.0461452 0.0449462 0.0442279 0.0442704 0.0447113 0.0454049 0.0461245 0.0466989 0.0470408 0.0472762 0.0475213 0.0477935 0.048292 0.0492751 0.0507818 0.051238 0.0482563 0.0369736 0.0303563 0.0302479 0.0349415 0.042426 0.052243 0.0565532 0.0565897 0.0616221 0.0262904 0.0278034 0.0291124 0.0295954 0.0296702 0.0296545 0.0295934 0.0295258 0.029504 0.0295391 0.0296118 0.0296942 0.0297528 0.0297484 0.0295255 0.0288803 0.0281088 0.0275858 0.0271785 0.0267945 0.0264668 0.0262338 0.0261074 0.0260808 0.0261234 0.0262046 0.026311 0.0264652 0.026802 0.0266252 0.0256967 0.0264937 0.0267132 0.0266467 0.0265606 0.0264763 0.0263752 0.0262844 0.0262011 0.026116 0.0259977 0.0258589 0.0256831 0.0254765 0.0252969 0.0252076 0.0252728 0.0253738 0.0253871 0.0254136 0.0254362 0.0254247 0.0253149 0.0249468 0.0252066 0.0271219 0.0276802 0.0275744 0.0276126 0.0284558 0.0296978 0.0301131 0.0300747 0.0299878 0.0298821 0.0299058 0.02983 0.0298812 0.0298595 0.0298925 0.0299441 0.0299836 0.0300232 0.0300347 0.0300311 0.0300143 0.0300206 0.0300435 0.0300768 0.0300633 0.0300204 0.0299897 0.029971 0.0299435 0.0298932 0.0298219 0.0297397 0.0296506 0.029549 0.0294009 0.0291628 0.0295017 0.0302632 0.0305784 0.0303714 0.0300803 0.0301827 0.0303381 0.0305007 0.0306893 0.0308806 0.0310393 0.0311587 0.0312384 0.031271 0.0312529 0.0311914 0.0310974 0.0310359 0.0310145 0.0310366 0.0310759 0.0310817 0.0309415 0.0307375 0.0305624 0.0305024 0.0305823 0.0312695 0.0314389 0.0314395 0.031452 0.0314456 0.0314338 0.0314314 0.0314269 0.0314187 0.0314051 0.0314071 0.0313944 0.0313741 0.0313403 0.0312902 0.0312294 0.0311673 0.0311062 0.031062 0.0310508 0.0310745 0.0311114 0.0311622 0.0312537 0.0315454 0.0328748 0.035061 0.0357406 0.0356142 0.0355062 0.0354922 0.0355098 0.0355266 0.0355403 0.0355532 0.0355634 0.0355637 0.0355752 0.0356569 0.0356016 0.0353892 0.0352376 0.0350327 0.0348565 0.0347665 0.0347508 0.0347643 0.0347938 0.0348289 0.0348488 0.0348613 0.0348723 0.0348825 0.0348988 0.0349233 0.0349917 0.0351412 0.035108 0.0348713 0.0348806 0.035176 0.0355492 0.0356973 0.0356091 0.0353596 0.0351789 0.0350915 0.0351522 0.0355438 0.0354356 0.0340692 0.0325973 0.0321754 0.0322329 0.0324626 0.0327095 0.032916 0.0330967 0.0332728 0.0334422 0.0336647 0.0339468 0.0343397 0.0348534 0.0354836 0.0361099 0.0365119 0.0368536 0.0370865 0.037295 0.0375543 0.0377663 0.0379894 0.0383752 0.0392051 0.0400238 0.0391044 0.0363987 0.0359375 0.0359366 0.0359838 0.0360319 0.0360466 0.036053 0.0360533 0.0360543 0.036033 0.0359676 0.0359044 0.0357981 0.0356761 0.0355505 0.0354539 0.0354179 0.0354631 0.0355387 0.035627 0.0357711 0.0359484 0.0361388 0.0362222 0.0363879 0.0364981 0.0366283 0.0368412 0.0365923 0.0349278 0.0343283 0.034739 0.0349404 0.0350069 0.0350513 0.0350229 0.035028 0.0350477 0.0350705 0.035121 0.0352095 0.0353258 0.0354506 0.0355566 0.0356328 0.0356778 0.0357166 0.0357023 0.0356449 0.0355737 0.0355015 0.0354451 0.0353796 0.035323 0.0352767 0.0352226 0.0351695 0.0351117 0.0351029 0.0351737 0.0355643 0.035902 0.0348054 0.0338205 0.0336995 0.0336153 0.033537 0.0334474 0.033464 0.033401 0.033439 0.0334725 0.0335387 0.0336413 0.0337657 0.0339067 0.0340592 0.0342532 0.0345293 0.0348878 0.0352803 0.0356669 0.03603 0.0363417 0.0365869 0.0367131 0.0367801 0.036754 0.0366461 0.0366397 0.0365077 0.0357131 0.0352084 0.035659 0.036174 0.0365311 0.0367772 0.0369401 0.0371197 0.0372089 0.0373211 0.0374784 0.0376536 0.0379019 0.0380726 0.0382024 0.0382161 0.0382142 0.0382011 0.0382011 0.0381869 0.0381843 0.0381614 0.0381063 0.0380065 0.0378521 0.037577 0.0370699 0.0362257 0.0357869 0.036055 0.0363343 0.0364005 0.0364855 0.0365702 0.0366423 0.0367167 0.0367747 0.0368153 0.0368515 0.0368519 0.0368676 0.0368458 0.0368608 0.03683 0.0367662 0.0366388 0.0363439 0.0353579 0.0347131 0.0347319 0.0349629 0.035298 0.0357606 0.0362933 0.03674 0.0370402 0.0372244 0.0374819 0.038869 0.0439832 0.0514178 0.0535328 0.052741 0.0515801 0.0506486 0.0495317 0.0482446 0.0469664 0.0458872 0.0450074 0.0445772 0.0444036 0.0444549 0.0446414 0.0450274 0.0454475 0.0459871 0.046538 0.0471211 0.0477805 0.0486715 0.0503338 0.0516072 0.0490362 0.0451009 0.0422904 0.0419889 0.0441785 0.0480838 0.0520878 0.0551574 0.0556292 0.0557661 0.0598413 ) ; boundaryField { wand { type zeroGradient; } frontAndBack { type empty; } } // ************************************************************************* //
c99a0fe2e2832ab616736be17356edd1751e50ac
db557a30a28f77774cf4662c119a9197fb3ae0a0
/VulkanExtensionFunctions/vkCreateSharedSwapchainsKHR.cpp
a8f1f50166c15e4ed2313d818663ef525a6cd3c7
[ "Apache-2.0" ]
permissive
dkaip/jvulkan-natives-Linux-x86_64
b076587525a5ee297849e08368f32d72098ae87e
ea7932f74e828953c712feea11e0b01751f9dc9b
refs/heads/master
2021-07-14T16:57:14.386271
2020-09-13T23:04:39
2020-09-13T23:04:39
183,515,517
0
0
null
null
null
null
UTF-8
C++
false
false
6,188
cpp
vkCreateSharedSwapchainsKHR.cpp
/* * Copyright 2019-2020 Douglas Kaip * * 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. */ /* * vkCreateSharedSwapchainsKHR.cpp * * Created on: Oct 25, 2019 * Author: Douglas Kaip */ #include "com_CIMthetics_jvulkan_VulkanCore_NativeProxies.h" #include "JVulkanHelperFunctions.hh" #include "slf4j.hh" /* * Class: com_CIMthetics_jvulkan_VulkanCore_NativeProxies * Method: vkCreateSharedSwapchainsKHR * Signature: (Lcom/CIMthetics/jvulkan/VulkanCore/Handles/VkDevice;Ljava/util/Collection;Lcom/CIMthetics/jvulkan/VulkanCore/Structures/VkAllocationCallbacks;Ljava/util/Collection;)Lcom/CIMthetics/jvulkan/VulkanCore/Enums/VkResult; */ JNIEXPORT jobject JNICALL Java_com_CIMthetics_jvulkan_VulkanCore_NativeProxies_vkCreateSharedSwapchainsKHR (JNIEnv *env, jobject, jobject jVkDevice, jobject jVkSwapchainCreateInfoKHRCollection, jobject jAlternateAllocator, jobject jVkSwapchainKHRCollection) { VkDevice_T *deviceHandle = (VkDevice_T *)jvulkan::getHandleValue(env, jVkDevice); if (env->ExceptionOccurred()) { LOGERROR(env, "%s", "Could not retrieve VkDevice handle"); return jvulkan::createVkResult(env, VK_RESULT_MAX_ENUM); } std::vector<void *> memoryToFree(5); int numberOfVkSwapchainCreateInfoKHRs = 0; VkSwapchainCreateInfoKHR *vkSwapchainCreateInfoKHRs = nullptr; jvulkan::getVkSwapchainCreateInfoKHRCollection( env, jVkSwapchainCreateInfoKHRCollection, &vkSwapchainCreateInfoKHRs, &numberOfVkSwapchainCreateInfoKHRs, &memoryToFree); if (env->ExceptionOccurred()) { LOGERROR(env, "%s", "Error calling getVkSwapchainCreateInfoKHRCollection"); return jvulkan::createVkResult(env, VK_RESULT_MAX_ENUM); } VkAllocationCallbacks *allocatorCallbacks = nullptr; if (jAlternateAllocator != nullptr) { allocatorCallbacks = new VkAllocationCallbacks(); jvulkan::getAllocatorCallbacks(env, jAlternateAllocator, allocatorCallbacks); } VkSwapchainKHR swapchains[numberOfVkSwapchainCreateInfoKHRs]; VkResult result = vkCreateSharedSwapchainsKHR( deviceHandle, numberOfVkSwapchainCreateInfoKHRs, vkSwapchainCreateInfoKHRs, allocatorCallbacks, swapchains); jvulkan::freeMemory(&memoryToFree); // Free up the allocator callback structure if created. delete allocatorCallbacks; allocatorCallbacks = nullptr; jclass vkSwapchainKHRCollectionClass = env->GetObjectClass(jVkSwapchainKHRCollection); if (env->ExceptionOccurred()) { LOGERROR(env, "%s", "Could not find class for jVkSwapchainKHRCollection"); return jvulkan::createVkResult(env, VK_RESULT_MAX_ENUM); } jmethodID methodId = env->GetMethodID(vkSwapchainKHRCollectionClass, "size", "()I"); if (env->ExceptionOccurred()) { LOGERROR(env, "%s", "Could not find method id for size"); return jvulkan::createVkResult(env, VK_RESULT_MAX_ENUM); } jint numberOfElements = env->CallIntMethod(jVkSwapchainKHRCollection, methodId); if (env->ExceptionOccurred()) { LOGERROR(env, "%s", "Error calling CallIntMethod"); return jvulkan::createVkResult(env, VK_RESULT_MAX_ENUM); } if (numberOfVkSwapchainCreateInfoKHRs != numberOfElements) { LOGERROR(env, "%s", "The collection size for resulting swapchain collection must be the same as jVkSwapchainCreateInfoKHRCollection."); return jvulkan::createVkResult(env, VK_RESULT_MAX_ENUM); } jmethodID iteratorMethodId = env->GetMethodID(vkSwapchainKHRCollectionClass, "iterator", "()Ljava/util/Iterator;"); if (env->ExceptionOccurred()) { LOGERROR(env, "%s", "Could not find method id for iterator"); return jvulkan::createVkResult(env, VK_RESULT_MAX_ENUM); } jobject iteratorObject = env->CallObjectMethod(jVkSwapchainKHRCollection, iteratorMethodId); if (env->ExceptionOccurred()) { LOGERROR(env, "%s", "Error calling CallObjectMethod"); return jvulkan::createVkResult(env, VK_RESULT_MAX_ENUM); } jclass iteratorClass = env->GetObjectClass(iteratorObject); if (env->ExceptionOccurred()) { LOGERROR(env, "%s", "Could not find class for iteratorObject"); return jvulkan::createVkResult(env, VK_RESULT_MAX_ENUM); } jmethodID hasNextMethodId = env->GetMethodID(iteratorClass, "hasNext", "()Z"); if (env->ExceptionOccurred()) { LOGERROR(env, "%s", "Could not find method id for hasNext"); return jvulkan::createVkResult(env, VK_RESULT_MAX_ENUM); } jmethodID nextMethod = env->GetMethodID(iteratorClass, "next", "()Ljava/lang/Object;"); if (env->ExceptionOccurred()) { LOGERROR(env, "%s", "Could not find method id for next"); return jvulkan::createVkResult(env, VK_RESULT_MAX_ENUM); } int i = 0; do { jboolean hasNext = env->CallBooleanMethod(iteratorObject, hasNextMethodId); if (env->ExceptionOccurred()) { LOGERROR(env, "%s", "Error calling CallBooleanMethod"); break; } if (hasNext == false) { break; } jobject jVkSwapchainKHRObject = env->CallObjectMethod(iteratorObject, nextMethod); if (env->ExceptionOccurred()) { LOGERROR(env, "%s", "Error calling CallObjectMethod"); break; } /* * Now transfer the VkPipeline data to Java */ jvulkan::setHandleValue(env, jVkSwapchainKHRObject, swapchains[i]); if (env->ExceptionOccurred()) { LOGERROR(env, "%s", "Error calling setHandleValue"); break; } i++; } while(true); return jvulkan::createVkResult(env, result); }
062dfdada831e1341fbcebe874e404918fc3e445
a37d4e859eb081098ea3cf2b0d2438a12d9986aa
/codeforces-submissions/Codeforces Beta Round #84 (Div. 2 Only)/A. Nearly Lucky Number.cpp
5b3f8d0aeb0615616f90bc81cf1d876ed435427c
[]
no_license
pg30/Competitive-Submissions
098932c5c61f8a5d10d975df5d7f07d819d233df
6c34d0821f1c35c984f611ac5dcf74f060176035
refs/heads/main
2023-05-09T02:20:02.295763
2021-06-02T10:10:41
2021-06-02T10:10:41
324,169,608
0
0
null
null
null
null
UTF-8
C++
false
false
327
cpp
A. Nearly Lucky Number.cpp
#include<bits/stdc++.h> #define ll long long using namespace std; int main() { ll int n,count=0; cin >> n; while(n>0) { int a = n%10; n = n/10; if(a==4 || a==7) count++; } if(count==4||count==7) cout << "YES" << endl; else cout << "NO" << endl; }
b7385066f7cb22176097ac156d621880771e9ef1
f975b1e92e8e2682767b297e81621807c856bda3
/src/game/Core/InputManager.cpp
fc031991850710bd033f3532ddd38c64e4767dad
[]
no_license
teamfisk/AgileBreakOut
6aaaba5e1a3060dd21dfe376c6f2695df482bded
22349fe0a696902df9694e37e2567627c47d4d95
refs/heads/master
2020-04-15T14:52:23.722282
2015-10-23T15:42:46
2015-10-23T15:42:46
41,863,654
0
1
null
null
null
null
UTF-8
C++
false
false
9,973
cpp
InputManager.cpp
/* This file is part of Daydream Engine. Copyright 2014 Adam Byléhn, Tobias Dahl, Simon Holmberg, Viktor Ljung Daydream Engine is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Daydream Engine is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with Daydream Engine. If not, see <http://www.gnu.org/licenses/>. */ #include "PrecompiledHeader.h" #include "Core/InputManager.h" void dd::InputManager::Initialize() { // TODO: Gamepad //m_LastGamepadAxisState = std::array<GamepadAxisState, XUSER_MAX_COUNT>(); //m_LastGamepadButtonState = std::array<GamepadButtonState, XUSER_MAX_COUNT>(); EVENT_SUBSCRIBE_MEMBER(m_ELockMouse, &InputManager::OnLockMouse); EVENT_SUBSCRIBE_MEMBER(m_EUnlockMouse, &InputManager::OnUnlockMouse); } void dd::InputManager::Update(double dt) { EventBroker->Process<InputManager>(); m_LastKeyState = m_CurrentKeyState; m_LastMouseState = m_CurrentMouseState; m_LastMouseX = m_CurrentMouseX; m_LastMouseY = m_CurrentMouseY; // Keyboard input for (int i = 0; i <= GLFW_KEY_LAST; ++i) { m_CurrentKeyState[i] = glfwGetKey(m_GLFWWindow, i); if (m_CurrentKeyState[i] != m_LastKeyState[i]) { // Publish key events if (m_CurrentKeyState[i]) { Events::KeyDown e; e.KeyCode = i; EventBroker->Publish(e); } else { Events::KeyUp e; e.KeyCode = i; EventBroker->Publish(e); } } } // Mouse buttons for (int i = 0; i <= GLFW_MOUSE_BUTTON_LAST; ++i) { m_CurrentMouseState[i] = glfwGetMouseButton(m_GLFWWindow, i); if (m_CurrentMouseState[i] != m_LastMouseState[i]) { double x, y; glfwGetCursorPos(m_GLFWWindow, &x, &y); // Publish mouse button events if (m_CurrentMouseState[i]) { Events::MousePress e; e.Button = i; e.X = x; e.Y = y; EventBroker->Publish(e); } else { Events::MouseRelease e; e.Button = i; e.X = x; e.Y = y; EventBroker->Publish(e); } } } // Mouse movement glfwGetCursorPos(m_GLFWWindow, &m_CurrentMouseX, &m_CurrentMouseY); m_CurrentMouseDeltaX = m_CurrentMouseX - m_LastMouseX; m_CurrentMouseDeltaY = m_CurrentMouseY - m_LastMouseY; if (m_CurrentMouseDeltaX != 0 || m_CurrentMouseDeltaY != 0) { // Publish mouse move events Events::MouseMove e; e.X = m_CurrentMouseX; e.Y = m_CurrentMouseY; e.DeltaX = m_CurrentMouseDeltaX; e.DeltaY = m_CurrentMouseDeltaY; EventBroker->Publish(e); } // // Lock mouse while holding LMB // if (m_CurrentMouseState[GLFW_MOUSE_BUTTON_LEFT]) // { // m_LastMouseX = m_Renderer->Width() / 2.f; // xpos; // m_LastMouseY = m_Renderer->Height() / 2.f; // ypos; // glfwSetCursorPos(m_GLFWWindow, m_LastMouseX, m_LastMouseY); // } // // Hide/show cursor with LMB // if (m_CurrentMouseState[GLFW_MOUSE_BUTTON_LEFT] && !m_LastMouseState[GLFW_MOUSE_BUTTON_LEFT]) // { // glfwSetInputMode(m_GLFWWindow, GLFW_CURSOR, GLFW_CURSOR_HIDDEN); // } // if (!m_CurrentMouseState[GLFW_MOUSE_BUTTON_LEFT] && m_LastMouseState[GLFW_MOUSE_BUTTON_LEFT]) // { // glfwSetInputMode(m_GLFWWindow, GLFW_CURSOR, GLFW_CURSOR_NORMAL); // } // TODO: Xbox360 controller /*DWORD dwResult; for (int i = 0; i < MAX_GAMEPADS; i++) { XINPUT_STATE state = { 0 }; // Simply get the state of the controller from XInput. dwResult = XInputGetState(i, &state); if (dwResult == 0) { if(std::abs(state.Gamepad.sThumbLX) <= XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE) state.Gamepad.sThumbLX = 0; if(std::abs(state.Gamepad.sThumbLY) <= XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE) state.Gamepad.sThumbLY = 0; if(std::abs(state.Gamepad.sThumbRX) <= XINPUT_GAMEPAD_RIGHT_THUMB_DEADZONE) state.Gamepad.sThumbRX = 0; if(std::abs(state.Gamepad.sThumbRY) <= XINPUT_GAMEPAD_RIGHT_THUMB_DEADZONE) state.Gamepad.sThumbRY = 0; if(std::abs(state.Gamepad.bLeftTrigger) <= XINPUT_GAMEPAD_TRIGGER_THRESHOLD) state.Gamepad.bLeftTrigger = 0; if(std::abs(state.Gamepad.bRightTrigger) <= XINPUT_GAMEPAD_TRIGGER_THRESHOLD) state.Gamepad.bRightTrigger = 0; m_CurrentGamepadAxisState[i][static_cast<int>(Gamepad::Axis::LeftX)] = state.Gamepad.sThumbLX / 32767.f; m_CurrentGamepadAxisState[i][static_cast<int>(Gamepad::Axis::LeftY)] = state.Gamepad.sThumbLY / 32767.f; m_CurrentGamepadAxisState[i][static_cast<int>(Gamepad::Axis::RightX)] = state.Gamepad.sThumbRX / 32767.f; m_CurrentGamepadAxisState[i][static_cast<int>(Gamepad::Axis::RightY)] = state.Gamepad.sThumbRY / 32767.f; m_CurrentGamepadAxisState[i][static_cast<int>(Gamepad::Axis::LeftTrigger)] = state.Gamepad.bLeftTrigger / 255.f; m_CurrentGamepadAxisState[i][static_cast<int>(Gamepad::Axis::RightTrigger)] = state.Gamepad.bRightTrigger / 255.f; PublishGamepadAxisIfChanged(i, Gamepad::Axis::LeftX); PublishGamepadAxisIfChanged(i, Gamepad::Axis::LeftY); PublishGamepadAxisIfChanged(i, Gamepad::Axis::RightX); PublishGamepadAxisIfChanged(i, Gamepad::Axis::RightY); PublishGamepadAxisIfChanged(i, Gamepad::Axis::LeftTrigger); PublishGamepadAxisIfChanged(i, Gamepad::Axis::RightTrigger); m_CurrentGamepadButtonState[i][static_cast<int>(Gamepad::Button::Up)] = static_cast<bool>(state.Gamepad.wButtons & XINPUT_GAMEPAD_DPAD_UP); m_CurrentGamepadButtonState[i][static_cast<int>(Gamepad::Button::Down)] = static_cast<bool>(state.Gamepad.wButtons & XINPUT_GAMEPAD_DPAD_DOWN); m_CurrentGamepadButtonState[i][static_cast<int>(Gamepad::Button::Left)] = static_cast<bool>(state.Gamepad.wButtons & XINPUT_GAMEPAD_DPAD_LEFT); m_CurrentGamepadButtonState[i][static_cast<int>(Gamepad::Button::Right)] = static_cast<bool>(state.Gamepad.wButtons & XINPUT_GAMEPAD_DPAD_RIGHT); m_CurrentGamepadButtonState[i][static_cast<int>(Gamepad::Button::Start)] = static_cast<bool>(state.Gamepad.wButtons & XINPUT_GAMEPAD_START); m_CurrentGamepadButtonState[i][static_cast<int>(Gamepad::Button::Back)] = static_cast<bool>(state.Gamepad.wButtons & XINPUT_GAMEPAD_BACK); m_CurrentGamepadButtonState[i][static_cast<int>(Gamepad::Button::LeftThumb)] = static_cast<bool>(state.Gamepad.wButtons & XINPUT_GAMEPAD_LEFT_THUMB); m_CurrentGamepadButtonState[i][static_cast<int>(Gamepad::Button::RightThumb)] = static_cast<bool>(state.Gamepad.wButtons & XINPUT_GAMEPAD_RIGHT_THUMB); m_CurrentGamepadButtonState[i][static_cast<int>(Gamepad::Button::LeftShoulder)] = static_cast<bool>(state.Gamepad.wButtons & XINPUT_GAMEPAD_LEFT_SHOULDER); m_CurrentGamepadButtonState[i][static_cast<int>(Gamepad::Button::RightShoulder)] = static_cast<bool>(state.Gamepad.wButtons & XINPUT_GAMEPAD_RIGHT_SHOULDER); m_CurrentGamepadButtonState[i][static_cast<int>(Gamepad::Button::A)] = static_cast<bool>(state.Gamepad.wButtons & XINPUT_GAMEPAD_A); m_CurrentGamepadButtonState[i][static_cast<int>(Gamepad::Button::B)] = static_cast<bool>(state.Gamepad.wButtons & XINPUT_GAMEPAD_B); m_CurrentGamepadButtonState[i][static_cast<int>(Gamepad::Button::X)] = static_cast<bool>(state.Gamepad.wButtons & XINPUT_GAMEPAD_X); m_CurrentGamepadButtonState[i][static_cast<int>(Gamepad::Button::Y)] = static_cast<bool>(state.Gamepad.wButtons & XINPUT_GAMEPAD_Y); PublishGamepadButtonIfChanged(i, Gamepad::Button::Up); PublishGamepadButtonIfChanged(i, Gamepad::Button::Down); PublishGamepadButtonIfChanged(i, Gamepad::Button::Left); PublishGamepadButtonIfChanged(i, Gamepad::Button::Right); PublishGamepadButtonIfChanged(i, Gamepad::Button::Start); PublishGamepadButtonIfChanged(i, Gamepad::Button::Back); PublishGamepadButtonIfChanged(i, Gamepad::Button::LeftThumb); PublishGamepadButtonIfChanged(i, Gamepad::Button::RightThumb); PublishGamepadButtonIfChanged(i, Gamepad::Button::LeftShoulder); PublishGamepadButtonIfChanged(i, Gamepad::Button::RightShoulder); PublishGamepadButtonIfChanged(i, Gamepad::Button::A); PublishGamepadButtonIfChanged(i, Gamepad::Button::B); PublishGamepadButtonIfChanged(i, Gamepad::Button::X); PublishGamepadButtonIfChanged(i, Gamepad::Button::Y); } }*/ m_LastKeyState = m_CurrentKeyState; m_LastMouseState = m_CurrentMouseState; m_LastMouseX = m_CurrentMouseX; m_LastMouseY = m_CurrentMouseY; m_LastGamepadAxisState = m_CurrentGamepadAxisState; m_LastGamepadButtonState = m_CurrentGamepadButtonState; } void dd::InputManager::PublishGamepadAxisIfChanged(int gamepadID, Gamepad::Axis axis) { float currentValue = m_CurrentGamepadAxisState[gamepadID][static_cast<int>(axis)]; float lastValue = m_LastGamepadAxisState[gamepadID][static_cast<int>(axis)]; if (currentValue != lastValue) { Events::GamepadAxis e; e.GamepadID = gamepadID; e.Axis = axis; e.Value = currentValue; EventBroker->Publish(e); } } void dd::InputManager::PublishGamepadButtonIfChanged(int gamepadID, Gamepad::Button button) { bool currentState = m_CurrentGamepadButtonState[gamepadID][static_cast<int>(button)]; float lastState = m_LastGamepadButtonState[gamepadID][static_cast<int>(button)]; if (currentState != lastState) { if (currentState == true) { Events::GamepadButtonDown e; e.GamepadID = gamepadID; e.Button = button; EventBroker->Publish(e); } else { Events::GamepadButtonUp e; e.GamepadID = gamepadID; e.Button = button; EventBroker->Publish(e); } } } bool dd::InputManager::OnLockMouse(const Events::LockMouse &event) { m_MouseLocked = true; glfwSetInputMode(m_GLFWWindow, GLFW_CURSOR, GLFW_CURSOR_DISABLED); return true; } bool dd::InputManager::OnUnlockMouse(const Events::UnlockMouse &event) { m_MouseLocked = false; glfwSetInputMode(m_GLFWWindow, GLFW_CURSOR, GLFW_CURSOR_NORMAL); return true; }
3a2513fcd2f0d08b0cce527244ec316e9a184a98
d255a6c41b2d41e9351673a2b09872297ec051eb
/pat_a1003/pat_a1003_2.cpp
6e7c90771724336416e982ef9d6c0756ce0dc49c
[]
no_license
wangruici/pat_doing
9080e0adfc57fed801090c2ab4edd6e36729e5e4
440090c5bbea219fd1dd56465512038488781436
refs/heads/master
2021-01-24T01:22:18.170878
2018-04-18T13:58:07
2018-04-18T13:58:07
122,806,167
3
0
null
null
null
null
UTF-8
C++
false
false
680
cpp
pat_a1003_2.cpp
#include <cstdio> #include <cstring> #include <vector> #include <set> #include <algorithm> using std::vector; using std::set; using std::fill; const int MAXV=510; const int INF=0x3fffffff; struct Node{ int v,dis; Node(int _v,int _dis):v(_v),dis(_dis){} }; vector<Node> Adj[MAXV]; int n,m,st,ed,weight[MAXV]; int d[MAXV],w[MAXV],num[MAXV]; set<int> pre[MAXV]; void Bellman(int s){ fill(d,d+MAXV,INF); memset(num,0,sizeof(num)); memset(w,0,sizeof(w)); d[s]=0; w[s]=weight[s]; num[s]=1; for(int i=0;i<n-1;++i){ for(int u=0;u<n;++u){ for(int j=0;j<Adj[u].size();++j){ int v=Adj[u][j].v; int dis=Adj[u][j].dis; if(d[u]+dis<d[v]){ } } } } }
54ba53fa3f1b83d222b4b3b799be024c42ea91d1
6c015426302feda2c29721a7e3039b89883fd0cd
/programmazione 2/esercizi vecchi/doppioni/doppioni.cpp
441e6a56b2b2ae1f9bd05a2ada5c4bdca97237f6
[]
no_license
FoxAlex98/UniCT
9e59aeacb88d604d2783436b86fd134a63701445
3582d97d85953b153651f247c52db9007336667d
refs/heads/master
2020-09-08T06:53:08.083163
2019-11-11T19:11:37
2019-11-11T19:19:00
221,051,474
2
0
null
null
null
null
UTF-8
C++
false
false
1,020
cpp
doppioni.cpp
#include<iostream> #include<fstream> using namespace std; int main() { ifstream in; ofstream out; in.open ("input.txt"); out.open("output.txt"); int N,conta=0; int *v,*d; bool flag; for(int i=0;i<10;i++) { in>>N; v=new int[N]; d=new int[N]; for(int j=0;j<N;j++) { in>>v[j]; d[i]=0; } conta=0; for(int k=0;k<N;k++) { flag=false; for(int h=0;h<N;h++) { if(d[h]==v[k]) { flag=true; } } if(!flag) { d[k]=v[k]; for(int z=0;z<N;z++) { if(v[k]==v[z]&&k!=z) { conta++; } } } } out<<conta<<endl; } in.close(); out.close(); return 0; }
68592d735c3e1012e585b420e44c524fe1fe1a06
52ca17dca8c628bbabb0f04504332c8fdac8e7ea
/boost/math/special_functions/detail/bessel_i0.hpp
05e93cc165e3f2f1e463159b26f9c328a70d6eb8
[]
no_license
qinzuoyan/thirdparty
f610d43fe57133c832579e65ca46e71f1454f5c4
bba9e68347ad0dbffb6fa350948672babc0fcb50
refs/heads/master
2021-01-16T17:47:57.121882
2015-04-21T06:59:19
2015-04-21T06:59:19
33,612,579
0
0
null
2015-04-08T14:39:51
2015-04-08T14:39:51
null
UTF-8
C++
false
false
85
hpp
bessel_i0.hpp
#include "thirdparty/boost_1_58_0/boost/math/special_functions/detail/bessel_i0.hpp"
c05f0a77cbb570ae8be7704560fb9c12cb97b8e5
82bba04be05e518845b99d749a3293668725e9e7
/QHG3_python_package/QHG3/genes/GSTest.cpp
42e913a83a721c8b212c4c72eaae95e283b99d01
[]
no_license
Achandroth/QHG
e914618776f38ed765da3f9c64ec62b983fc3df3
7e64d82dc3b798a05f2a725da4286621d2ba9241
refs/heads/master
2023-06-04T06:24:41.078369
2018-07-04T11:01:08
2018-07-04T11:01:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,830
cpp
GSTest.cpp
#include <stdio.h> #include <string.h> #include "types.h" #include "GeneUtils.h" #include "GenomeSegments.h" //---------------------------------------------------------------------------- // display // void display(ulong *pGenome, int iNumBlocks, GenomeSegments *pGS) { // pGS->showMasks(); int iNumSegments = pGS->getNumSegments(); int iSegSize = pGS->getSegmentSize(0); printf("%03d segments of length %03d\n", iNumSegments, iSegSize); char pNuc[33]; pNuc[32] = '\0'; for (int i = 0; i < iNumSegments; i++) { ulong lDummy = 0; ulong *p = pGS->getMaskedSegment(pGenome, i); int iFirstBlock = pGS->getFirstBlock(i); printf(" "); for (int j = 0; j < iFirstBlock; j++) { printf("%s ", GeneUtils::blockToNucStr(lDummy, pNuc)); } for (int j = 0; j < pGS->getMaskLength(i); j++) { printf("%s ", GeneUtils::blockToNucStr(p[j], pNuc)); } for (int j = iFirstBlock+pGS->getMaskLength(i); j < iNumBlocks; j++) { printf("%s ", GeneUtils::blockToNucStr(lDummy, pNuc)); } printf("\n---\n"); } } //---------------------------------------------------------------------------- // compare // create 2 pseudo genomes of size 2*masklen // by applying a msak to each of the original genomes' two strands // then use GeneUtils::calcDist() // int compare(GenomeSegments *pGS, ulong *pGenome1, ulong *pGenome2, int iNumBlocks) { ulong *p1 = NULL; ulong *p2 = NULL; int iPrevLen = 0; int iNumSegments = pGS->getNumSegments(); printf("Comparing\n"); for (int i = 0; i < iNumSegments; i++) { printf("-- segment %d; size %d\n", i, pGS->getSegmentSize(i)); int iMaskLen = pGS->getMaskLength(i); if (iPrevLen < iMaskLen) { iPrevLen = iMaskLen; if (p1 != NULL) { delete[] p1; } p1 = new ulong[2*iMaskLen]; if (p2 != NULL) { delete[] p2; } p2 = new ulong[2*iMaskLen]; } ulong *p; // create masked parts for first strand p = pGS->getMaskedSegment(pGenome1, i); memcpy(p1, p, iMaskLen*sizeof(ulong)); p = pGS->getMaskedSegment(pGenome2, i); memcpy(p2, p, iMaskLen*sizeof(ulong)); // create masked parts for second strand p = pGS->getMaskedSegment(pGenome1+iNumBlocks, i); memcpy(p1+iMaskLen, p, iMaskLen*sizeof(ulong)); p = pGS->getMaskedSegment(pGenome2+iNumBlocks, i); memcpy(p2+iMaskLen, p, iMaskLen*sizeof(ulong)); int iDist = GeneUtils::calcDist(p1, p2,iMaskLen*GeneUtils::NUCSINBLOCK); printf("Dist#%d : %d\n", i, iDist); } return 0; } //---------------------------------------------------------------------------- // main // int main(int iArgC, char *apArgV[]) { int iResult = -1; uchar cGeneBlock = 0x66; // 0xe4 int iGenomeSize = 100; int iNumBlocks = GeneUtils::numNucs2Blocks(iGenomeSize); int iLastBit = 2*(GeneUtils::NUCSINBLOCK - iGenomeSize); ulong *pGenome1 = new ulong[2*iNumBlocks]; memset(pGenome1, cGeneBlock, iNumBlocks*sizeof(ulong)); memset(pGenome1+iNumBlocks, cGeneBlock, iNumBlocks*sizeof(ulong)); pGenome1[iNumBlocks-1] >>= iLastBit; pGenome1[2*iNumBlocks-1] >>= iLastBit; GeneUtils::showGenome(pGenome1, iGenomeSize, SHOW_NUC); cGeneBlock = 0xe4; ulong *pGenome2 = new ulong[2*iNumBlocks]; memset(pGenome2, cGeneBlock, iNumBlocks*sizeof(ulong)); memset(pGenome2+iNumBlocks, cGeneBlock, iNumBlocks*sizeof(ulong)); pGenome2[iNumBlocks-1] >>= iLastBit; pGenome2[2*iNumBlocks-1] >>= iLastBit; GeneUtils::showGenome(pGenome2, iGenomeSize, SHOW_NUC); GenomeSegments *pGS = GenomeSegments::createInstance(iGenomeSize, 4); if (pGS != NULL) { display(pGenome1, iNumBlocks, pGS); delete pGS; } else { printf("Couldn't create GenomeSegments1\n"); } iResult = 0; pGS = GenomeSegments::createInstance(iGenomeSize); if (pGS != NULL) { if (iResult == 0) { iResult = pGS->addSegment(12, 33); } if (iResult == 0) { iResult = pGS->addSegment(46,10); } if (iResult == 0) { iResult = pGS->addSegment(56, 22); } if (iResult == 0) { iResult = pGS->addSegment(88, 44); } if (iResult == 0) { display(pGenome1, iNumBlocks, pGS); } else { printf("problem\n"); } compare(pGS, pGenome1, pGenome2, iNumBlocks); delete pGS; } else { printf("Couldn't create GenomeSegments2\n"); } delete[] pGenome1; delete[] pGenome2; return iResult; }
d075f968f5d2cf2df36282085e02ba08f6db2163
8f7c8beaa2fca1907fb4796538ea77b4ecddc300
/content/browser/renderer_host/file_utilities_message_filter.cc
e09e63e00d8013d923a4822faee39556fa84ea84
[ "BSD-3-Clause" ]
permissive
lgsvl/chromium-src
8f88f6ae2066d5f81fa363f1d80433ec826e3474
5a6b4051e48b069d3eacbfad56eda3ea55526aee
refs/heads/ozone-wayland-62.0.3202.94
2023-03-14T10:58:30.213573
2017-10-26T19:27:03
2017-11-17T09:42:56
108,161,483
8
4
null
2017-12-19T22:53:32
2017-10-24T17:34:08
null
UTF-8
C++
false
false
2,004
cc
file_utilities_message_filter.cc
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/browser/renderer_host/file_utilities_message_filter.h" #include "base/files/file_util.h" #include "base/task_scheduler/lazy_task_runner.h" #include "content/browser/child_process_security_policy_impl.h" #include "content/common/file_utilities_messages.h" namespace { base::LazySequencedTaskRunner g_file_utility_task_runner = LAZY_SEQUENCED_TASK_RUNNER_INITIALIZER( base::TaskTraits(base::MayBlock(), base::TaskPriority::USER_VISIBLE)); } // namespace namespace content { FileUtilitiesMessageFilter::FileUtilitiesMessageFilter(int process_id) : BrowserMessageFilter(FileUtilitiesMsgStart), process_id_(process_id) { } FileUtilitiesMessageFilter::~FileUtilitiesMessageFilter() { } base::TaskRunner* FileUtilitiesMessageFilter::OverrideTaskRunnerForMessage( const IPC::Message& message) { if (IPC_MESSAGE_CLASS(message) == FileUtilitiesMsgStart) return g_file_utility_task_runner.Get().get(); return nullptr; } bool FileUtilitiesMessageFilter::OnMessageReceived( const IPC::Message& message) { bool handled = true; IPC_BEGIN_MESSAGE_MAP(FileUtilitiesMessageFilter, message) IPC_MESSAGE_HANDLER(FileUtilitiesMsg_GetFileInfo, OnGetFileInfo) IPC_MESSAGE_UNHANDLED(handled = false) IPC_END_MESSAGE_MAP() return handled; } void FileUtilitiesMessageFilter::OnGetFileInfo( const base::FilePath& path, base::File::Info* result, base::File::Error* status) { *result = base::File::Info(); *status = base::File::FILE_OK; // Get file metadata only when the child process has been granted // permission to read the file. if (!ChildProcessSecurityPolicyImpl::GetInstance()->CanReadFile( process_id_, path)) { return; } if (!base::GetFileInfo(path, result)) *status = base::File::FILE_ERROR_FAILED; } } // namespace content
0e9ecbfa2f18b2acf57e9301dae5d2623787b635
0330844f10a8cc530bab0789a64ed56271372839
/Backend/Testing/line_num.cpp
c1492882fab6a5afa6d0c33d22b9b6728691ab39
[]
no_license
aynoor/Automated-Program-Repair-and-Visualization
c6606049d11e3bab9951f109cecf5204630a9fc6
bfb9e831214de61e2b5fff258694442f053174c7
refs/heads/master
2020-12-31T05:09:52.907193
2017-03-01T23:45:02
2017-03-01T23:45:02
58,306,549
4
1
null
null
null
null
UTF-8
C++
false
false
1,853
cpp
line_num.cpp
#include "llvm/IR/LLVMContext.h" #include "llvm/IR/DebugInfo.h" #include "llvm/IR/Metadata.h" #include "llvm/IR/Module.h" #include "llvm/IRReader/IRReader.h" #include "llvm/Pass.h" #include "llvm/Support/raw_ostream.h" #include "llvm/Support/SourceMgr.h" #include "llvm/IR/InstIterator.h" #include "llvm/IR/CallSite.h" #include "llvm/Analysis/CallGraph.h" #include "llvm/IR/LegacyPassManager.h" #include "llvm/IR/InstrTypes.h" #include "llvm/Transforms/IPO/PassManagerBuilder.h" #include "llvm/IR/IRBuilder.h" #include "llvm/Transforms/Utils/BasicBlockUtils.h" #include "llvm/IR/Function.h" #include <iostream> #include <string> #include <cstring> using namespace llvm; using namespace std; int main(int argc, char **argv) { if (argc < 2) { errs() << "Usage: " << argv[0] << " <IR file>\n"; return 1; } // Parse the input LLVM IR file into a module. SMDiagnostic Err; std::unique_ptr<Module> m = parseIRFile(argv[1], Err, getGlobalContext()); if (!m) { Err.print(argv[0], errs()); return 1; } // ... use module for (auto& F : m->getFunctionList()) { bool printed = false; for (auto &B : F) { for (auto &I : B) { unsigned current_line_num; if (DILocation *Loc = I.getDebugLoc()) { // Here I is an LLVM instruction unsigned Line = Loc->getLine(); if (printed == false) { //StringRef File = Loc->getFilename(); //StringRef Dir = Loc->getDirectory(); errs() << Loc->getFilename() << "\n"; errs() << Loc->getDirectory() << "\n"; errs() << F.getName() << "\n"; printed = true; } if (current_line_num != Line) { cout << Line << endl; current_line_num = Line; } } } } } }
2bf9e3475435a930827661515188a5634e1fa7fb
38b9daafe39f937b39eefc30501939fd47f7e668
/tutorials/2WayCouplingOceanWave3D/EvalResults180628-fully/56.6/p_rgh
326d8b687ea5333cada7eacb712917b7a3b09f8f
[]
no_license
rubynuaa/2-way-coupling
3a292840d9f56255f38c5e31c6b30fcb52d9e1cf
a820b57dd2cac1170b937f8411bc861392d8fbaa
refs/heads/master
2020-04-08T18:49:53.047796
2018-08-29T14:22:18
2018-08-29T14:22:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
196,797
p_rgh
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 3.0.1 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "56.6"; object p_rgh; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [1 -1 -2 0 0 0 0]; internalField nonuniform List<scalar> 21420 ( 382.904 381.282 376.14 367.54 355.527 340.316 322.118 301.171 277.728 252.119 224.665 195.681 165.55 134.62 103.244 71.7498 40.4568 9.68083 -20.3129 -49.2877 -77.0332 -103.378 -128.202 -151.24 -172.477 -192.44 -210.881 -227.776 -243.141 -257.02 -269.462 -280.521 -290.26 -298.732 -305.991 -312.088 -317.066 -320.969 -323.805 -325.596 -326.355 -326.111 -324.836 -322.507 -319.104 -314.579 -308.874 -301.935 -293.69 -284.045 -272.93 -260.266 -245.978 -229.996 -212.189 -193.905 -173.216 -150.991 -127.11 -101.773 -75.0803 -47.2475 -18.4951 10.9731 40.8772 70.911 100.808 130.234 158.879 186.42 212.53 236.902 259.241 279.238 296.618 311.104 322.462 329.976 334.643 336 333.947 328.232 318.963 306.249 290.271 271.281 249.547 225.391 199.136 171.127 141.696 111.165 79.8495 48.0621 16.1047 -15.7239 -47.1347 -77.8564 -107.65 -136.302 -163.597 -189.483 -213.82 -236.534 -257.584 -276.951 -294.641 -310.677 -325.091 -337.932 -349.268 -359.153 -367.641 -374.812 -380.738 -385.465 -389.044 -391.522 -392.931 -393.291 -392.616 -390.914 -388.18 -384.401 -379.558 -373.626 -366.573 -358.365 -348.963 -338.324 -326.405 -313.154 -298.531 -282.512 -265.052 -246.123 -225.709 -203.806 -180.433 -155.633 -129.473 -102.056 -73.5192 -44.04 -13.839 16.8188 47.6248 78.2361 108.276 137.347 165.038 190.927 214.605 235.684 253.793 268.604 279.841 287.279 290.645 290.069 285.381 276.649 263.97 247.55 227.638 204.533 178.585 150.195 119.79 87.8185 54.7415 21.0165 -12.9136 -46.6417 -79.8016 -112.07 -143.18 -172.921 -201.133 -227.708 -252.585 -275.738 -297.172 -316.934 -335.092 -351.682 -366.75 -380.344 -392.51 -403.292 -412.727 -420.853 -427.71 -433.336 -437.762 -441.026 -443.156 -444.174 -444.095 -442.935 -440.701 -437.397 -433.013 -427.534 -420.928 -413.155 -404.16 -393.878 -382.235 -369.157 -354.578 -338.424 -320.633 -301.154 -279.953 -257.02 -232.373 -206.065 -178.185 -148.868 -118.289 -86.668 -54.2731 -21.409 11.5774 44.3054 76.364 107.325 136.752 164.202 189.238 211.449 230.452 245.897 257.501 265.04 268.256 267.25 261.887 252.269 238.517 220.877 199.645 175.174 147.869 118.177 86.5634 53.5027 19.4712 -15.0748 -49.703 -84.0145 -117.656 -150.318 -181.734 -211.682 -239.988 -266.523 -291.198 -313.965 -334.808 -353.743 -370.823 -386.102 -399.645 -411.526 -421.811 -430.536 -437.734 -443.399 -447.54 -450.143 -451.193 -450.625 -448.443 -444.785 -439.587 -432.78 -424.296 -414.106 -402.246 -388.79 -373.74 -356.935 -340.454 -325.848 -297.431 -274.498 -249.265 -222.951 -195.67 -167.476 -138.372 -108.348 -77.416 -45.5657 -12.8665 20.5881 54.7306 89.2991 124.131 158.878 193.209 226.786 259.127 289.77 318.288 344.217 367.155 386.723 402.582 414.481 422.218 425.753 425.051 420.145 411.015 397.881 381.103 360.995 337.881 312.115 284.17 254.458 223.44 191.542 159.174 126.789 94.7288 63.3109 32.8376 3.49911 -24.5404 -51.154 -76.2965 -99.9345 -122.082 -142.758 -161.993 -179.767 -195.527 -210.813 -224.889 -237.738 -249.364 -259.76 -268.911 -276.805 -283.423 -288.746 -292.76 -295.451 -296.818 -296.849 -295.189 -292.061 -287.436 383.054 381.419 376.273 367.668 355.647 340.426 322.215 301.254 277.796 252.171 224.701 195.701 165.555 134.61 103.221 71.7145 40.4109 9.62591 -20.3753 -49.356 -77.1058 -103.453 -128.277 -151.313 -172.552 -192.512 -210.951 -227.843 -243.205 -257.081 -269.52 -280.576 -290.312 -298.781 -306.038 -312.132 -317.109 -321.01 -323.845 -325.635 -326.396 -326.151 -324.877 -322.55 -319.149 -314.626 -308.925 -301.989 -293.748 -284.106 -272.995 -260.336 -246.051 -230.075 -212.285 -193.964 -173.289 -151.067 -127.184 -101.843 -75.1452 -47.3057 -18.5453 10.9324 40.8472 70.8925 100.802 130.242 158.9 186.456 212.581 236.967 259.322 279.334 296.729 311.228 322.592 330.134 334.79 336.159 334.101 328.382 319.106 306.381 290.391 271.385 249.636 225.463 199.191 171.165 141.718 111.171 79.8417 48.0411 16.0716 -15.7677 -47.188 -77.9178 -107.718 -136.376 -163.673 -189.562 -213.9 -236.614 -257.663 -277.028 -294.717 -310.75 -325.162 -338 -349.334 -359.216 -367.701 -374.871 -380.795 -385.52 -389.099 -391.576 -392.985 -393.345 -392.67 -390.969 -388.236 -384.459 -379.617 -373.687 -366.637 -358.431 -349.031 -338.395 -326.479 -313.23 -298.61 -282.594 -265.136 -246.209 -225.796 -203.894 -180.52 -155.719 -129.556 -102.135 -73.5926 -44.1057 -13.895 16.7746 47.5942 78.2207 108.278 137.366 165.076 190.984 214.681 235.778 253.902 268.727 279.975 287.421 290.803 290.21 285.524 276.786 264.099 247.666 227.739 204.616 178.65 150.24 119.816 87.8249 54.7295 20.9877 -12.9573 -46.6981 -79.8681 -112.144 -143.261 -173.006 -201.219 -227.794 -252.67 -275.822 -297.252 -317.011 -335.166 -351.754 -366.82 -380.411 -392.576 -403.355 -412.789 -420.913 -427.769 -433.394 -437.819 -441.082 -443.212 -444.228 -444.15 -442.99 -440.756 -437.452 -433.07 -427.592 -420.989 -413.218 -404.226 -393.947 -382.308 -369.234 -354.659 -338.509 -320.72 -301.244 -280.045 -257.112 -232.465 -206.154 -178.27 -148.948 -118.361 -86.7305 -54.3241 -21.4467 11.5544 44.2989 76.3754 107.355 136.801 164.271 189.326 211.555 230.574 246.033 257.648 265.195 268.425 267.404 262.042 252.417 238.655 221 199.751 175.262 147.937 118.225 86.591 53.5109 19.4611 -15.1015 -49.7442 -84.0684 -117.721 -150.391 -181.814 -211.767 -240.077 -266.613 -291.289 -314.055 -334.897 -353.829 -370.907 -386.182 -399.722 -411.6 -421.882 -430.605 -437.801 -443.465 -447.605 -450.205 -451.253 -450.681 -448.497 -444.841 -439.641 -432.832 -424.346 -414.152 -402.288 -388.827 -373.772 -356.965 -340.448 -325.777 -297.534 -274.545 -249.291 -222.975 -195.695 -167.503 -138.402 -108.383 -77.4545 -45.6073 -12.9095 20.5455 54.6912 89.2657 124.107 158.866 193.212 226.807 259.167 289.831 318.369 344.317 367.274 386.858 402.731 414.64 422.388 425.937 425.208 420.289 411.158 398.017 381.225 361.1 337.968 312.182 284.218 254.486 223.45 191.534 159.15 126.751 94.6799 63.2529 32.7728 3.42993 -24.612 -51.2263 -76.368 -100.004 -122.149 -142.822 -162.052 -179.821 -195.588 -210.869 -224.942 -237.79 -249.416 -259.811 -268.962 -276.857 -283.475 -288.798 -292.812 -295.504 -296.87 -296.9 -295.242 -292.116 -287.492 383.338 381.708 376.543 367.925 355.888 340.646 322.41 301.42 277.932 252.275 224.773 195.742 165.565 134.591 103.174 71.644 40.3191 9.51594 -20.5001 -49.4927 -77.2512 -103.602 -128.427 -151.46 -172.7 -192.656 -211.091 -227.977 -243.334 -257.203 -269.636 -280.686 -290.416 -298.879 -306.132 -312.222 -317.195 -321.092 -323.926 -325.714 -326.478 -326.233 -324.96 -322.636 -319.239 -314.722 -309.026 -302.097 -293.862 -284.229 -273.125 -260.473 -246.197 -230.233 -212.472 -194.082 -173.433 -151.216 -127.329 -101.981 -75.2717 -47.4186 -18.6418 10.8549 40.7913 70.8598 100.795 130.261 158.948 186.533 212.687 237.104 259.489 279.531 296.956 311.482 322.856 330.443 335.093 336.485 334.416 328.688 319.398 306.654 290.638 271.604 249.823 225.616 199.311 171.252 141.772 111.195 79.8371 48.0103 16.0166 -15.8437 -47.2824 -78.0281 -107.841 -136.51 -163.812 -189.706 -214.045 -236.759 -257.805 -277.168 -294.852 -310.88 -325.286 -338.119 -349.447 -359.322 -367.8 -374.967 -380.887 -385.609 -389.185 -391.66 -393.067 -393.426 -392.752 -391.052 -388.321 -384.546 -379.707 -373.781 -366.734 -358.533 -349.137 -338.505 -326.595 -313.352 -298.737 -282.725 -265.271 -246.348 -225.937 -204.036 -180.663 -155.858 -129.69 -102.261 -73.7069 -44.2048 -13.9751 16.7179 47.5645 78.2212 108.312 137.436 165.181 191.127 214.86 235.991 254.147 268.999 280.268 287.727 291.14 290.515 285.832 277.082 264.376 247.917 227.957 204.8 178.796 150.347 119.883 87.8528 54.7204 20.945 -13.0298 -46.796 -79.9863 -112.278 -143.406 -173.158 -201.375 -227.951 -252.825 -275.972 -297.393 -317.149 -335.298 -351.88 -366.94 -380.527 -392.688 -403.463 -412.894 -421.015 -427.867 -433.489 -437.911 -441.172 -443.3 -444.316 -444.236 -443.075 -440.843 -437.539 -433.159 -427.684 -421.084 -413.318 -404.332 -394.06 -382.428 -369.362 -354.794 -338.65 -320.867 -301.395 -280.199 -257.268 -232.619 -206.304 -178.412 -149.078 -118.477 -86.8271 -54.398 -21.4942 11.5363 44.3132 76.4249 107.441 136.925 164.433 189.526 211.79 230.84 246.326 257.963 265.523 268.781 267.73 262.369 252.729 238.946 221.262 199.979 175.452 148.088 118.334 86.6596 53.5404 19.454 -15.1416 -49.8137 -84.1632 -117.837 -150.525 -181.96 -211.923 -240.24 -266.78 -291.456 -314.221 -335.059 -353.985 -371.057 -386.326 -399.86 -411.731 -422.007 -430.726 -437.918 -443.578 -447.715 -450.312 -451.354 -450.774 -448.584 -444.932 -439.73 -432.918 -424.428 -414.229 -402.357 -388.886 -373.821 -357.012 -340.423 -325.629 -297.723 -274.625 -249.334 -223.013 -195.735 -167.548 -138.455 -108.445 -77.5247 -45.6836 -12.99 20.4678 54.6183 89.2041 124.063 158.847 193.222 226.851 259.25 289.954 318.532 344.52 367.513 387.129 403.029 414.959 422.729 426.295 425.53 420.581 411.445 398.29 381.469 361.312 338.142 312.318 284.314 254.543 223.469 191.519 159.103 126.677 94.5821 63.1368 32.6433 3.29157 -24.7552 -51.3709 -76.5111 -100.144 -122.283 -142.949 -162.171 -179.93 -195.709 -210.981 -225.049 -237.894 -249.518 -259.913 -269.064 -276.959 -283.578 -288.902 -292.917 -295.609 -296.975 -297.003 -295.35 -292.227 -287.606 383.753 382.145 376.95 368.311 356.25 340.975 322.701 301.669 278.135 252.431 224.881 195.802 165.579 134.561 103.105 71.538 40.1813 9.3508 -20.6876 -49.698 -77.4695 -103.827 -128.652 -151.68 -172.923 -192.872 -211.3 -228.179 -243.527 -257.387 -269.809 -280.85 -290.571 -299.027 -306.272 -312.357 -317.324 -321.216 -324.046 -325.834 -326.6 -326.355 -325.084 -322.764 -319.374 -314.864 -309.178 -302.259 -294.034 -284.412 -273.321 -260.68 -246.416 -230.468 -212.748 -194.265 -173.65 -151.439 -127.547 -102.187 -75.462 -47.5883 -18.787 10.7383 40.7071 70.8104 100.783 130.29 159.019 186.648 212.846 237.308 259.738 279.826 297.295 311.862 323.252 330.898 335.56 336.974 334.889 329.148 319.837 307.063 291.01 271.932 250.104 225.847 199.492 171.383 141.854 111.232 79.8311 47.9652 15.9355 -15.9568 -47.4231 -78.1928 -108.025 -136.71 -164.019 -189.92 -214.262 -236.976 -258.019 -277.377 -295.054 -311.075 -325.472 -338.297 -349.616 -359.482 -367.951 -375.113 -381.025 -385.742 -389.313 -391.785 -393.189 -393.548 -392.875 -391.176 -388.447 -384.675 -379.841 -373.919 -366.879 -358.683 -349.294 -338.669 -326.766 -313.532 -298.923 -282.919 -265.472 -246.554 -226.147 -204.248 -180.873 -156.064 -129.889 -102.447 -73.8754 -44.3501 -14.092 16.636 47.5233 78.2252 108.366 137.543 165.343 191.345 215.134 236.316 254.519 269.411 280.711 288.191 291.64 290.985 286.301 277.53 264.795 248.297 228.289 205.078 179.018 150.51 119.986 87.897 54.7091 20.8831 -13.1365 -46.9409 -80.1617 -112.478 -143.623 -173.386 -201.608 -228.184 -253.054 -276.196 -297.603 -317.353 -335.493 -352.066 -367.119 -380.699 -392.853 -403.623 -413.048 -421.164 -428.013 -433.629 -438.047 -441.306 -443.431 -444.444 -444.363 -443.202 -440.97 -437.668 -433.29 -427.819 -421.226 -413.467 -404.489 -394.228 -382.606 -369.551 -354.994 -338.859 -321.085 -301.62 -280.429 -257.499 -232.848 -206.526 -178.623 -149.272 -118.647 -86.9693 -54.506 -21.5628 11.5122 44.3377 76.502 107.574 137.114 164.679 189.829 212.146 231.243 246.77 258.438 266.019 269.309 268.229 262.865 253.2 239.385 221.658 200.323 175.739 148.315 118.5 86.7644 53.5865 19.4453 -15.2001 -49.9161 -84.3037 -118.009 -150.723 -182.179 -212.157 -240.483 -267.028 -291.706 -314.468 -335.301 -354.218 -371.282 -386.54 -400.064 -411.925 -422.192 -430.904 -438.091 -443.746 -447.878 -450.47 -451.504 -450.916 -448.712 -445.067 -439.864 -433.047 -424.551 -414.343 -402.46 -388.975 -373.895 -357.082 -340.39 -325.415 -298.003 -274.74 -249.398 -223.071 -195.794 -167.616 -138.535 -108.538 -77.6301 -45.799 -13.11 20.3455 54.5073 89.1107 123.997 158.817 193.237 226.918 259.375 290.139 318.777 344.824 367.872 387.537 403.477 415.439 423.236 426.81 426.032 421.034 411.879 398.7 381.837 361.629 338.404 312.521 284.459 254.629 223.499 191.495 159.032 126.564 94.4351 62.9624 32.4487 3.08379 -24.9702 -51.5879 -76.7259 -100.353 -122.485 -143.141 -162.35 -180.093 -195.89 -211.148 -225.209 -238.051 -249.673 -260.066 -269.217 -277.113 -283.733 -289.058 -293.074 -295.767 -297.132 -297.157 -295.511 -292.393 -287.776 384.312 382.717 377.499 368.828 356.733 341.414 323.09 302.001 278.406 252.639 225.025 195.882 165.598 134.522 103.011 71.3963 39.997 9.13023 -20.9379 -49.972 -77.7608 -104.127 -128.952 -151.974 -173.22 -193.161 -211.58 -228.448 -243.784 -257.631 -270.041 -281.07 -290.779 -299.224 -306.46 -312.536 -317.496 -321.381 -324.207 -325.996 -326.761 -326.518 -325.25 -322.936 -319.553 -315.054 -309.38 -302.475 -294.263 -284.657 -273.582 -260.955 -246.707 -230.78 -213.108 -194.517 -173.943 -151.739 -127.838 -102.463 -75.716 -47.8149 -18.981 10.5824 40.5944 70.7441 100.767 130.329 159.113 186.8 213.058 237.579 260.069 280.217 297.746 312.367 323.781 331.482 336.193 337.623 335.521 329.763 320.422 307.609 291.506 272.371 250.479 226.156 199.734 171.557 141.964 111.28 79.823 47.9047 15.8269 -16.1078 -47.6115 -78.413 -108.271 -136.978 -164.297 -190.208 -214.553 -237.265 -258.305 -277.656 -295.325 -311.335 -325.722 -338.535 -349.841 -359.694 -368.155 -375.308 -381.211 -385.919 -389.485 -391.952 -393.354 -393.711 -393.038 -391.341 -388.615 -384.847 -380.019 -374.104 -367.071 -358.884 -349.503 -338.888 -326.994 -313.771 -299.172 -283.177 -265.739 -246.828 -226.426 -204.529 -181.154 -156.339 -130.153 -102.695 -74.1001 -44.5437 -14.2475 16.5268 47.4684 78.231 108.439 137.687 165.56 191.636 215.498 236.749 255.016 269.962 281.304 288.811 292.291 291.625 286.929 278.129 265.355 248.804 228.733 205.451 179.314 150.727 120.123 87.956 54.6941 20.8007 -13.2789 -47.134 -80.3957 -112.744 -143.912 -173.689 -201.918 -228.494 -253.36 -276.494 -297.885 -317.624 -335.754 -352.315 -367.357 -380.927 -393.074 -403.836 -413.254 -421.364 -428.205 -433.815 -438.229 -441.483 -443.605 -444.616 -444.533 -443.371 -441.139 -437.839 -433.465 -427.999 -421.414 -413.665 -404.699 -394.45 -382.843 -369.803 -355.259 -339.138 -321.376 -301.92 -280.735 -257.807 -233.153 -206.822 -178.903 -149.53 -118.875 -87.1589 -54.6498 -21.654 11.4801 44.3705 76.6053 107.751 137.367 165.009 190.234 212.621 231.781 247.363 259.074 266.682 269.998 268.908 263.53 253.832 239.971 222.186 200.782 176.122 148.619 118.722 86.9042 53.6481 19.4339 -15.2781 -50.0529 -84.4911 -118.24 -150.987 -182.47 -212.468 -240.807 -267.36 -292.039 -314.797 -335.624 -354.528 -371.581 -386.826 -400.336 -412.184 -422.439 -431.142 -438.321 -443.97 -448.096 -450.68 -451.705 -451.106 -448.881 -445.248 -440.041 -433.218 -424.714 -414.495 -402.598 -389.093 -373.993 -357.175 -340.351 -325.142 -298.368 -274.884 -249.482 -223.148 -195.874 -167.706 -138.641 -108.663 -77.7713 -45.9527 -13.2718 20.1854 54.3597 88.986 123.908 158.776 193.255 227.006 259.54 290.384 319.104 345.23 368.351 388.081 404.074 416.078 423.907 427.484 426.705 421.656 412.463 399.247 382.327 362.052 338.753 312.792 284.651 254.743 223.537 191.464 158.937 126.413 94.2386 62.7294 32.1889 2.80633 -25.2573 -51.8775 -77.0124 -100.632 -122.754 -143.396 -162.588 -180.313 -196.129 -211.371 -225.423 -238.259 -249.878 -260.27 -269.422 -277.318 -283.939 -289.266 -293.284 -295.977 -297.341 -297.364 -295.726 -292.615 -288.003 385.014 383.424 378.189 369.475 357.337 341.964 323.576 302.417 278.745 252.899 225.205 195.982 165.621 134.472 102.894 71.2187 39.7661 8.85392 -21.2514 -50.3151 -78.1253 -104.504 -129.327 -152.342 -173.591 -193.522 -211.93 -228.785 -244.106 -257.937 -270.331 -281.344 -291.038 -299.47 -306.694 -312.76 -317.711 -321.587 -324.409 -326.197 -326.963 -326.721 -325.456 -323.15 -319.778 -315.292 -309.632 -302.744 -294.55 -284.963 -273.908 -261.3 -247.071 -231.168 -213.545 -194.844 -174.312 -152.114 -128.203 -102.808 -76.0342 -48.0987 -19.2242 10.3871 40.4528 70.6609 100.747 130.376 159.231 186.989 213.321 237.917 260.482 280.705 298.307 312.996 324.452 332.194 336.987 338.429 336.31 330.531 321.155 308.292 292.126 272.919 250.948 226.542 200.035 171.775 142.1 111.341 79.8122 47.8282 15.6907 -16.2973 -47.848 -78.6892 -108.579 -137.314 -164.644 -190.568 -214.917 -237.629 -258.664 -278.007 -295.665 -311.662 -326.034 -338.834 -350.124 -359.962 -368.412 -375.552 -381.443 -386.142 -389.701 -392.162 -393.559 -393.915 -393.242 -391.547 -388.825 -385.063 -380.242 -374.335 -367.311 -359.135 -349.765 -339.162 -327.281 -314.071 -299.483 -283.501 -266.074 -247.172 -226.776 -204.882 -181.505 -156.684 -130.484 -103.005 -74.3818 -44.7866 -14.4426 16.3895 47.3988 78.2377 108.529 137.866 165.831 192.001 215.954 237.292 255.637 270.651 282.045 289.588 293.092 292.437 287.716 278.881 266.055 249.438 229.287 205.916 179.685 150.999 120.294 88.0293 54.6749 20.6966 -13.4578 -47.376 -80.6892 -113.077 -144.274 -174.069 -202.307 -228.883 -253.742 -276.867 -298.236 -317.964 -336.079 -352.626 -367.654 -381.213 -393.349 -404.103 -413.512 -421.613 -428.447 -434.048 -438.456 -441.705 -443.823 -444.83 -444.745 -443.582 -441.35 -438.052 -433.683 -428.225 -421.649 -413.913 -404.961 -394.729 -383.139 -370.118 -355.592 -339.487 -321.739 -302.295 -281.119 -258.193 -233.536 -207.193 -179.255 -149.853 -119.16 -87.3967 -54.8306 -21.7688 11.4392 44.4111 76.7338 107.973 137.684 165.421 190.74 213.216 232.455 248.105 259.869 267.511 270.85 269.767 264.362 254.623 240.705 222.846 201.356 176.602 148.998 118.998 87.0786 53.7246 19.4189 -15.3765 -50.2248 -84.7263 -118.528 -151.318 -182.835 -212.857 -241.213 -267.774 -292.455 -315.21 -336.027 -354.916 -371.954 -387.183 -400.676 -412.507 -422.748 -431.44 -438.609 -444.249 -448.368 -450.944 -451.956 -451.346 -449.093 -445.474 -440.264 -433.433 -424.919 -414.686 -402.771 -389.242 -374.117 -357.291 -340.313 -324.824 -298.806 -275.049 -249.586 -223.244 -195.973 -167.819 -138.774 -108.82 -77.948 -46.146 -13.4741 19.9819 54.1736 88.8288 123.796 158.724 193.277 227.116 259.746 290.69 319.512 345.737 368.95 388.761 404.821 416.877 424.743 428.327 427.54 422.447 413.201 399.932 382.939 362.581 339.189 313.131 284.89 254.884 223.584 191.423 158.817 126.224 93.9921 62.4373 31.8633 2.45885 -25.6166 -52.2399 -77.3709 -100.982 -123.09 -143.716 -162.886 -180.589 -196.426 -211.649 -225.69 -238.519 -250.135 -260.525 -269.677 -277.575 -284.197 -289.526 -293.545 -296.239 -297.601 -297.624 -295.996 -292.892 -288.286 385.86 384.268 379.017 370.254 358.062 342.624 324.16 302.915 279.151 253.211 225.42 196.102 165.648 134.412 102.753 71.0048 39.4882 8.52143 -21.6284 -50.7276 -78.5634 -104.958 -129.778 -152.785 -174.035 -193.955 -212.349 -229.189 -244.492 -258.304 -270.678 -281.673 -291.35 -299.765 -306.975 -313.028 -317.969 -321.836 -324.652 -326.438 -327.204 -326.964 -325.704 -323.408 -320.047 -315.576 -309.935 -303.068 -294.895 -285.33 -274.299 -261.712 -247.506 -231.631 -214.05 -195.256 -174.76 -152.565 -128.642 -103.223 -76.4169 -48.4399 -19.5168 10.1521 40.2821 70.5603 100.723 130.432 159.371 187.217 213.636 238.322 260.976 281.288 298.979 313.75 325.266 333.053 337.934 339.39 337.258 331.453 322.035 309.112 292.872 273.578 251.511 227.005 200.396 172.035 142.264 111.412 79.7986 47.7356 15.5264 -16.5258 -48.1328 -79.0217 -108.95 -137.718 -165.063 -191.001 -215.356 -238.066 -259.095 -278.428 -296.074 -312.055 -326.411 -339.193 -350.464 -360.284 -368.72 -375.845 -381.723 -386.411 -389.96 -392.414 -393.807 -394.16 -393.488 -391.796 -389.078 -385.322 -380.509 -374.613 -367.6 -359.436 -350.08 -339.491 -327.624 -314.432 -299.856 -283.889 -266.476 -247.585 -227.196 -205.306 -181.927 -157.098 -130.883 -103.379 -74.7208 -45.0797 -14.6778 16.2236 47.3141 78.2447 108.636 138.08 166.156 192.438 216.501 237.943 256.384 271.479 282.937 290.523 294.052 293.411 288.662 279.784 266.897 250.199 229.953 206.476 180.13 151.324 120.499 88.1164 54.6507 20.5703 -13.6737 -47.6678 -81.043 -113.478 -144.709 -174.526 -202.774 -229.351 -254.202 -277.315 -298.659 -318.372 -336.47 -352.999 -368.011 -381.557 -393.68 -404.423 -413.821 -421.913 -428.736 -434.329 -438.729 -441.972 -444.084 -445.088 -445 -443.836 -441.604 -438.309 -433.945 -428.495 -421.931 -414.21 -405.276 -395.063 -383.496 -370.496 -355.991 -339.906 -322.176 -302.746 -281.579 -258.658 -233.995 -207.64 -179.678 -150.242 -119.503 -87.6831 -55.0488 -21.9077 11.3892 44.459 76.8871 108.237 138.063 165.915 191.347 213.929 233.265 248.997 260.825 268.51 271.87 270.799 265.362 255.574 241.587 223.639 202.046 177.179 149.453 119.33 87.2871 53.8155 19.3999 -15.4957 -50.4322 -85.0098 -118.875 -151.717 -183.273 -213.326 -241.702 -268.273 -292.956 -315.705 -336.512 -355.383 -372.403 -387.612 -401.084 -412.895 -423.119 -431.797 -438.953 -444.584 -448.694 -451.26 -452.26 -451.636 -449.349 -445.746 -440.531 -433.691 -425.165 -414.915 -402.978 -389.42 -374.266 -357.429 -340.285 -324.478 -299.296 -275.226 -249.71 -223.358 -196.091 -167.955 -138.934 -109.008 -78.1609 -46.3785 -13.7181 19.7361 53.9487 88.6386 123.66 158.659 193.302 227.246 259.992 291.057 320.001 346.345 369.669 389.578 405.719 417.836 425.744 429.341 428.538 423.403 414.092 400.756 383.676 363.216 339.713 313.537 285.178 255.054 223.64 191.374 158.672 125.996 93.6951 62.0855 31.4714 2.04091 -26.0486 -52.6753 -77.8015 -101.401 -123.494 -144.1 -163.247 -180.922 -196.78 -211.982 -226.009 -238.831 -250.442 -260.832 -269.983 -277.882 -284.507 -289.838 -293.859 -296.554 -297.915 -297.935 -296.319 -293.225 -288.627 386.852 385.255 379.98 371.164 358.91 343.394 324.841 303.497 279.625 253.574 225.67 196.24 165.679 134.341 102.587 70.7541 39.1627 8.13225 -22.0694 -51.2099 -79.0755 -105.489 -130.308 -153.3 -174.552 -194.46 -212.839 -229.661 -244.942 -258.732 -271.084 -282.057 -291.713 -300.11 -307.303 -313.341 -318.27 -322.126 -324.935 -326.72 -327.484 -327.248 -325.993 -323.708 -320.361 -315.908 -310.289 -303.445 -295.298 -285.758 -274.756 -262.194 -248.014 -232.166 -214.62 -195.758 -175.287 -153.094 -129.154 -103.708 -76.8644 -48.8391 -19.8592 9.87685 40.0819 70.4421 100.693 130.497 159.535 187.481 214.003 238.793 261.551 281.967 299.762 314.628 326.223 334.064 339.034 340.508 338.363 332.53 323.063 310.07 293.742 274.347 252.168 227.545 200.817 172.338 142.454 111.495 79.7813 47.6263 15.3334 -16.7936 -48.4662 -79.4111 -109.384 -138.181 -165.562 -191.509 -215.868 -238.578 -259.6 -278.921 -296.551 -312.514 -326.851 -339.612 -350.862 -360.662 -369.08 -376.188 -382.05 -386.724 -390.263 -392.709 -394.096 -394.447 -393.775 -392.085 -389.373 -385.625 -380.822 -374.937 -367.938 -359.788 -350.448 -339.875 -328.026 -314.853 -300.292 -284.343 -266.945 -248.067 -227.687 -205.801 -182.421 -157.582 -131.349 -103.816 -75.1177 -45.4233 -14.9539 16.0285 47.2138 78.2515 108.76 138.328 166.535 192.947 217.14 238.704 257.255 272.445 283.979 291.617 295.175 294.547 289.768 280.84 267.88 251.089 230.731 207.128 180.648 151.703 120.737 88.2168 54.6206 20.4211 -13.9274 -48.0103 -81.4578 -113.948 -145.219 -175.061 -203.32 -229.897 -254.74 -277.839 -299.151 -318.848 -336.926 -353.435 -368.428 -381.957 -394.067 -404.796 -414.183 -422.263 -429.074 -434.656 -439.047 -442.283 -444.389 -445.388 -445.298 -444.132 -441.9 -438.608 -434.25 -428.81 -422.26 -414.556 -405.643 -395.454 -383.912 -370.937 -356.457 -340.396 -322.686 -303.273 -282.118 -259.2 -234.533 -208.162 -180.173 -150.697 -119.905 -88.0187 -55.3047 -22.0713 11.3295 44.5138 77.0651 108.545 138.505 166.492 192.056 214.762 234.21 250.038 261.941 269.678 273.065 272.002 266.531 256.685 242.618 224.566 202.852 177.851 149.984 119.716 87.5295 53.9203 19.3761 -15.6364 -50.6759 -85.3422 -119.281 -152.183 -183.787 -213.874 -242.272 -268.856 -293.541 -316.284 -337.076 -355.929 -372.928 -388.112 -401.56 -413.348 -423.551 -432.212 -439.355 -444.976 -449.075 -451.629 -452.615 -451.977 -449.659 -446.066 -440.843 -433.991 -425.452 -415.183 -403.22 -389.629 -374.44 -357.589 -340.274 -324.133 -299.809 -275.41 -249.852 -223.489 -196.228 -168.112 -139.12 -109.228 -78.4099 -46.6509 -14.0049 19.4542 53.6849 88.4144 123.498 158.582 193.329 227.395 260.277 291.485 320.572 347.055 370.509 390.532 406.768 418.957 426.913 430.526 429.703 424.52 415.138 401.719 384.535 363.957 340.324 314.01 285.512 255.25 223.705 191.315 158.501 125.729 93.347 61.6735 31.0128 1.55195 -26.5538 -53.1842 -78.3045 -101.891 -123.966 -144.549 -163.67 -181.31 -197.189 -212.369 -226.382 -239.195 -250.801 -261.189 -270.341 -278.241 -284.869 -290.202 -294.226 -296.922 -298.281 -298.299 -296.696 -293.613 -289.024 387.988 386.384 381.079 372.206 359.879 344.275 325.62 304.161 280.167 253.988 225.955 196.397 165.712 134.258 102.396 70.4661 38.789 7.6858 -22.575 -51.7623 -79.6621 -106.1 -130.921 -153.885 -175.142 -195.038 -213.4 -230.2 -245.457 -259.221 -271.547 -282.495 -292.127 -300.503 -307.677 -313.699 -318.613 -322.457 -325.259 -327.043 -327.803 -327.571 -326.324 -324.051 -320.72 -316.288 -310.692 -303.875 -295.759 -286.248 -275.277 -262.744 -248.595 -232.775 -215.257 -196.346 -175.896 -153.701 -129.742 -104.264 -77.3772 -49.2968 -20.2515 9.56097 39.8518 70.306 100.659 130.569 159.72 187.782 214.421 239.33 262.206 282.741 300.654 315.632 327.324 335.229 340.289 341.783 339.627 333.762 324.239 311.167 294.739 275.226 252.92 228.162 201.297 172.684 142.669 111.589 79.7603 47.4998 15.1113 -17.1012 -48.8491 -79.8576 -109.882 -138.714 -166.132 -192.09 -216.455 -239.163 -260.177 -279.486 -297.098 -313.041 -327.354 -340.092 -351.318 -361.095 -369.492 -376.58 -382.425 -387.083 -390.609 -393.046 -394.427 -394.775 -394.104 -392.417 -389.711 -385.971 -381.179 -375.308 -368.324 -360.19 -350.868 -340.314 -328.486 -315.335 -300.79 -284.862 -267.482 -248.618 -228.249 -206.368 -182.986 -158.137 -131.883 -104.318 -75.5733 -45.8178 -15.2717 15.8037 47.0973 78.2574 108.901 138.612 166.966 193.529 217.869 239.574 258.252 273.551 285.172 292.87 296.462 295.844 291.034 282.049 269.005 252.106 231.621 207.874 181.24 152.135 121.008 88.3298 54.584 20.2483 -14.2199 -48.4043 -81.9342 -114.488 -145.804 -175.674 -203.946 -230.523 -255.355 -278.441 -299.713 -319.393 -337.447 -353.933 -368.905 -382.415 -394.508 -405.223 -414.596 -422.663 -429.461 -435.03 -439.411 -442.638 -444.738 -445.732 -445.638 -444.47 -442.239 -438.95 -434.599 -429.171 -422.636 -414.952 -406.063 -395.9 -384.387 -371.442 -356.991 -340.956 -323.27 -303.876 -282.734 -259.822 -235.149 -208.76 -180.74 -151.219 -120.367 -88.4043 -55.5991 -22.26 11.2596 44.5749 77.2672 108.896 139.009 167.151 192.866 215.715 235.292 251.23 263.22 271.015 274.433 273.376 267.869 257.958 243.797 225.626 203.774 178.619 150.59 120.156 87.8053 54.0385 19.3468 -15.7993 -50.9567 -85.7242 -119.748 -152.718 -184.375 -214.502 -242.926 -269.523 -294.21 -316.946 -337.723 -356.553 -373.527 -388.684 -402.104 -413.865 -424.045 -432.687 -439.815 -445.423 -449.509 -452.051 -453.023 -452.369 -450.034 -446.434 -441.201 -434.335 -425.78 -415.489 -403.497 -389.869 -374.64 -357.77 -340.283 -323.783 -300.347 -275.598 -250.013 -223.638 -196.383 -168.291 -139.333 -109.479 -78.6956 -46.9637 -14.3351 19.1296 53.3809 88.1553 123.311 158.491 193.357 227.564 260.602 291.972 321.224 347.867 371.469 391.624 407.968 420.239 428.249 431.881 431.038 425.801 416.338 402.822 385.519 364.804 341.022 314.551 285.894 255.474 223.776 191.245 158.304 125.42 92.9468 61.2005 30.4866 0.991361 -27.1326 -53.767 -78.8802 -102.452 -124.505 -145.064 -164.157 -181.755 -197.652 -212.809 -226.807 -239.61 -251.211 -261.597 -270.749 -278.651 -285.281 -290.618 -294.645 -297.342 -298.699 -298.715 -297.127 -294.057 -289.479 389.269 387.656 382.316 373.379 360.971 345.268 326.497 304.909 280.776 254.454 226.275 196.573 165.749 134.163 102.179 70.14 38.3666 7.18155 -23.1459 -52.3856 -80.3239 -106.789 -131.619 -154.54 -175.804 -195.688 -214.031 -230.807 -246.037 -259.771 -272.069 -282.988 -292.594 -300.945 -308.097 -314.101 -318.999 -322.83 -325.624 -327.405 -328.162 -327.934 -326.696 -324.436 -321.123 -316.714 -311.146 -304.36 -296.277 -286.8 -275.863 -263.364 -249.247 -233.458 -215.963 -197.021 -176.587 -154.386 -130.405 -104.892 -77.956 -49.8136 -20.6944 9.20397 39.5914 70.1516 100.618 130.65 159.927 188.119 214.89 239.933 262.941 283.61 301.656 316.762 328.569 336.551 341.701 343.217 341.05 335.15 325.564 312.402 295.86 276.217 253.765 228.856 201.837 173.072 142.911 111.692 79.7349 47.3559 14.8599 -17.4491 -49.282 -80.362 -110.444 -139.317 -166.775 -192.746 -217.118 -239.824 -260.829 -280.122 -297.715 -313.634 -327.922 -340.633 -351.831 -361.582 -369.956 -377.022 -382.846 -387.487 -390.999 -393.426 -394.8 -395.144 -394.473 -392.79 -390.09 -386.361 -381.582 -375.725 -368.758 -360.643 -351.341 -340.808 -329.003 -315.878 -301.35 -285.447 -268.087 -249.24 -228.883 -207.007 -183.623 -158.763 -132.486 -104.885 -76.0882 -46.2642 -15.6318 15.5481 46.9639 78.2622 109.056 138.929 167.451 194.184 218.69 240.554 259.376 274.799 286.517 294.283 297.914 297.305 292.462 283.412 270.274 253.253 232.623 208.714 181.907 152.621 121.311 88.4546 54.5402 20.0508 -14.5522 -48.8509 -82.4733 -115.098 -146.465 -176.367 -204.653 -231.228 -256.048 -279.12 -300.345 -320.007 -338.034 -354.493 -369.441 -382.93 -395.005 -405.704 -415.061 -423.113 -429.896 -435.451 -439.821 -443.038 -445.13 -446.118 -446.02 -444.85 -442.62 -439.335 -434.992 -429.576 -423.059 -415.398 -406.535 -396.403 -384.923 -372.01 -357.591 -341.587 -323.928 -304.556 -283.429 -260.522 -235.844 -209.436 -181.381 -151.809 -120.888 -88.8403 -55.9326 -22.4745 11.1791 44.6417 77.4928 109.289 139.576 167.892 193.778 216.788 236.51 252.572 264.661 272.524 275.977 274.925 269.378 259.393 245.126 226.821 204.812 179.484 151.272 120.65 88.114 54.1691 19.3113 -15.9851 -51.2754 -86.1567 -120.275 -153.323 -185.04 -215.211 -243.664 -270.276 -294.966 -317.693 -338.449 -357.258 -374.202 -389.328 -402.716 -414.447 -424.601 -433.22 -440.332 -445.925 -449.998 -452.526 -453.482 -452.812 -450.461 -446.851 -441.603 -434.722 -426.149 -415.833 -403.808 -390.138 -374.865 -357.971 -340.318 -323.409 -300.919 -275.791 -250.194 -223.803 -196.556 -168.492 -139.572 -109.763 -79.0183 -47.3176 -14.7077 18.75 53.0337 87.8596 123.096 158.384 193.385 227.75 260.964 292.518 321.956 348.781 372.551 392.853 409.32 421.683 429.753 433.409 432.541 427.245 417.692 404.065 386.627 365.759 341.807 315.159 286.322 255.724 223.855 191.165 158.079 125.071 92.4937 60.6655 29.8921 0.358399 -27.7856 -54.4242 -79.5289 -103.083 -125.113 -145.644 -164.706 -182.256 -198.17 -213.303 -227.284 -240.076 -251.672 -262.055 -271.208 -279.113 -285.746 -291.086 -295.116 -297.815 -299.171 -299.182 -297.613 -294.558 -289.991 390.696 389.071 383.692 374.685 362.185 346.371 327.473 305.741 281.452 254.971 226.63 196.766 165.787 134.055 101.937 69.7751 37.8947 6.61883 -23.7826 -53.08 -81.0619 -107.556 -132.402 -155.264 -176.539 -196.411 -214.733 -231.482 -246.681 -260.383 -272.648 -283.536 -293.112 -301.437 -308.564 -314.547 -319.427 -323.245 -326.028 -327.806 -328.561 -328.337 -327.109 -324.863 -321.571 -317.188 -311.65 -304.897 -296.852 -287.413 -276.513 -264.053 -249.971 -234.213 -216.738 -197.781 -177.36 -155.15 -131.143 -105.591 -78.6014 -50.3904 -21.1884 8.80525 39.3004 69.9783 100.572 130.739 160.156 188.492 215.409 240.601 263.757 284.573 302.766 318.018 329.96 338.036 343.273 344.809 342.632 336.695 327.04 313.777 297.109 277.319 254.706 229.627 202.436 173.501 143.177 111.805 79.7047 47.1941 14.5784 -17.838 -49.7652 -80.9248 -111.07 -139.991 -167.489 -193.476 -217.855 -240.559 -261.553 -280.83 -298.4 -314.293 -328.553 -341.235 -352.402 -362.124 -370.471 -377.513 -383.315 -387.936 -391.432 -393.847 -395.213 -395.554 -394.883 -393.204 -390.513 -386.794 -382.029 -376.189 -369.241 -361.147 -351.867 -341.358 -329.577 -316.483 -301.972 -286.097 -268.76 -249.931 -229.588 -207.719 -184.333 -159.461 -133.158 -105.517 -76.6631 -46.7633 -16.035 15.2612 46.8126 78.2648 109.228 139.279 167.988 194.91 219.603 241.644 260.626 276.187 288.015 295.857 299.531 298.931 294.052 284.929 271.686 254.529 233.738 209.648 182.647 153.16 121.646 88.5907 54.4882 19.8276 -14.9255 -49.3512 -83.0763 -115.78 -147.203 -177.14 -205.441 -232.015 -256.82 -279.873 -301.051 -320.691 -338.686 -355.115 -370.037 -383.503 -395.557 -406.238 -415.579 -423.613 -430.38 -435.919 -440.276 -443.482 -445.566 -446.548 -446.445 -445.273 -443.042 -439.761 -435.427 -430.026 -423.528 -415.892 -407.06 -396.961 -385.518 -372.641 -358.259 -342.289 -324.66 -305.313 -284.203 -261.303 -236.619 -210.189 -182.096 -152.467 -121.471 -89.3278 -56.3061 -22.7156 11.0871 44.7139 77.7416 109.725 140.204 168.715 194.791 217.982 237.866 254.067 266.266 274.205 277.697 276.648 271.059 260.991 246.606 228.151 205.967 180.446 152.029 121.198 88.4551 54.3116 19.269 -16.1948 -51.633 -86.6406 -120.865 -153.998 -185.781 -216.001 -244.487 -271.114 -295.807 -318.524 -339.257 -358.042 -374.953 -390.043 -403.395 -415.093 -425.217 -433.812 -440.905 -446.483 -450.541 -453.053 -453.993 -453.306 -450.943 -447.315 -442.05 -435.152 -426.56 -416.216 -404.155 -390.439 -375.116 -358.192 -340.381 -322.994 -301.529 -275.995 -250.394 -223.985 -196.747 -168.714 -139.838 -110.079 -79.3782 -47.7132 -15.1258 18.3276 52.6441 87.5262 122.852 158.26 193.411 227.954 261.365 293.124 322.77 349.797 373.753 394.222 410.824 423.291 431.427 435.109 434.215 428.853 419.201 405.449 387.859 366.819 342.679 315.833 286.796 256 223.94 191.073 157.827 124.679 91.9867 60.0677 29.2283 -0.347755 -28.5136 -55.1564 -80.2511 -103.785 -125.789 -146.29 -165.318 -182.815 -198.743 -213.849 -227.813 -240.594 -252.183 -262.565 -271.718 -279.625 -286.261 -291.606 -295.64 -298.341 -299.695 -299.7 -298.153 -295.114 -290.561 392.27 390.631 385.206 376.123 363.523 347.587 328.546 306.656 282.196 255.538 227.018 196.977 165.827 133.934 101.667 69.3705 37.3725 5.99687 -24.4858 -53.8463 -81.8766 -108.403 -133.274 -156.057 -177.346 -197.208 -215.506 -232.225 -247.39 -261.056 -273.285 -284.138 -293.682 -301.977 -309.078 -315.037 -319.898 -323.7 -326.473 -328.247 -328.999 -328.778 -327.562 -325.332 -322.063 -317.708 -312.203 -305.488 -297.484 -288.088 -277.23 -264.813 -250.767 -235.042 -217.586 -198.625 -178.216 -155.995 -131.959 -106.363 -79.3138 -51.0277 -21.7346 8.36408 38.9781 69.7856 100.519 130.834 160.406 188.9 215.979 241.333 264.653 285.63 303.985 319.398 331.496 339.69 345.006 346.561 344.375 338.396 328.665 315.293 298.485 278.532 255.74 230.474 203.094 173.972 143.468 111.927 79.6691 47.0135 14.2664 -18.2684 -50.2995 -81.5468 -111.763 -140.736 -168.277 -194.282 -218.667 -241.369 -262.352 -281.61 -299.156 -315.02 -329.248 -341.897 -353.031 -362.721 -371.037 -378.053 -383.83 -388.43 -391.909 -394.31 -395.668 -396.005 -395.334 -393.66 -390.977 -387.271 -382.521 -376.699 -369.772 -361.701 -352.445 -341.962 -330.21 -317.149 -302.657 -286.814 -269.501 -250.693 -230.364 -208.503 -185.116 -160.23 -133.9 -106.215 -77.2989 -47.3159 -16.4826 14.9417 46.6428 78.2644 109.413 139.663 168.578 195.709 220.607 242.844 262.004 277.717 289.667 297.594 301.315 300.723 295.805 286.603 273.243 255.936 234.965 210.676 183.461 153.75 122.013 88.7372 54.4269 19.5776 -15.341 -49.9064 -83.7445 -116.535 -148.02 -177.994 -206.312 -232.883 -257.669 -280.682 -301.849 -321.444 -339.404 -355.8 -370.693 -384.133 -396.165 -406.826 -416.148 -424.164 -430.912 -436.434 -440.776 -443.971 -446.046 -447.02 -446.913 -445.737 -443.507 -440.231 -435.906 -430.52 -424.044 -416.436 -407.637 -397.576 -386.173 -373.336 -358.995 -343.062 -325.466 -306.147 -285.056 -262.164 -237.474 -211.021 -182.886 -153.195 -122.114 -89.8675 -56.7204 -22.9841 10.9829 44.7904 78.0132 110.202 140.895 169.62 195.908 219.296 239.36 255.715 268.036 276.058 279.595 278.548 272.912 262.754 248.238 229.616 207.239 181.505 152.861 121.8 88.8278 54.4651 19.2187 -16.4298 -52.0305 -87.1771 -121.517 -154.743 -186.599 -216.874 -245.394 -272.039 -296.734 -319.441 -340.148 -358.905 -375.779 -390.83 -404.142 -415.802 -425.894 -434.463 -441.535 -447.097 -451.139 -453.634 -454.555 -453.852 -451.482 -447.828 -442.541 -435.625 -427.012 -416.637 -404.536 -390.77 -375.392 -358.433 -340.477 -322.636 -302.062 -276.221 -250.614 -224.181 -196.954 -168.957 -140.13 -110.428 -79.7764 -48.1507 -15.591 17.8686 52.2113 87.1538 122.577 158.119 193.435 228.174 261.802 293.788 323.664 350.914 375.078 395.729 412.482 425.063 433.272 436.983 436.061 430.626 420.866 406.974 389.217 367.987 343.639 316.575 287.316 256.301 224.031 190.967 157.544 124.244 91.4246 59.4058 28.4941 -1.12801 -29.3173 -55.964 -81.0472 -104.559 -126.533 -147.002 -165.992 -183.429 -199.369 -214.449 -228.394 -241.163 -252.746 -263.125 -272.278 -280.188 -286.829 -292.179 -296.217 -298.921 -300.273 -300.268 -298.748 -295.728 -291.188 393.99 392.336 386.861 377.694 364.985 348.914 329.718 307.654 283.007 256.155 227.44 197.204 165.868 133.799 101.368 68.9253 36.7989 5.31453 -25.2565 -54.6857 -82.7686 -109.332 -134.227 -156.924 -178.226 -198.077 -216.351 -233.037 -248.164 -261.79 -273.98 -284.795 -294.304 -302.565 -309.638 -315.571 -320.411 -324.196 -326.958 -328.724 -329.476 -329.258 -328.056 -325.844 -322.6 -318.276 -312.807 -306.133 -298.173 -288.825 -278.012 -265.641 -251.636 -235.947 -218.514 -199.543 -179.155 -156.92 -132.851 -107.208 -80.094 -51.7261 -22.334 7.8798 38.6237 69.5726 100.459 130.936 160.677 189.345 216.598 242.129 265.627 286.781 305.312 320.902 333.178 341.529 346.902 348.472 346.278 340.256 330.442 316.949 299.989 279.858 256.87 231.399 203.811 174.485 143.784 112.057 79.6275 46.8138 13.9229 -18.741 -50.8855 -82.2285 -112.521 -141.552 -169.138 -195.162 -219.556 -242.254 -263.225 -282.462 -299.981 -315.813 -330.007 -342.619 -353.718 -363.372 -371.657 -378.643 -384.393 -388.969 -392.428 -394.815 -396.164 -396.497 -395.827 -394.157 -391.483 -387.79 -383.057 -377.256 -370.351 -362.306 -353.077 -342.622 -330.899 -317.865 -303.415 -287.597 -270.311 -251.525 -231.214 -209.362 -185.973 -161.073 -134.713 -106.981 -77.9966 -47.9231 -16.9752 14.5887 46.4533 78.2605 109.612 140.079 169.22 196.579 221.703 244.154 263.509 279.391 291.474 299.495 303.268 302.683 297.724 288.434 274.946 257.473 236.307 211.799 184.348 154.394 122.41 88.8932 54.3551 19.2994 -15.8003 -50.5177 -84.4793 -117.364 -148.915 -178.93 -207.266 -233.833 -258.599 -281.568 -302.719 -322.268 -340.188 -356.547 -371.408 -384.82 -396.828 -407.467 -416.769 -424.765 -431.493 -436.996 -441.321 -444.504 -446.569 -447.536 -447.423 -446.244 -444.014 -440.742 -436.428 -431.058 -424.606 -417.029 -408.266 -398.246 -386.887 -374.096 -359.799 -343.906 -326.347 -307.059 -285.989 -263.107 -238.41 -211.932 -183.752 -153.993 -122.821 -90.4601 -57.1764 -23.2808 10.8657 44.8708 78.3065 110.721 141.647 170.608 197.126 220.733 240.993 257.517 269.972 278.087 281.671 280.626 274.94 264.683 250.022 231.218 208.629 182.66 153.768 122.454 89.2316 54.6288 19.1594 -16.6909 -52.4689 -87.7673 -122.234 -155.561 -187.497 -217.83 -246.388 -273.052 -297.748 -320.444 -341.121 -359.848 -376.682 -391.689 -404.957 -416.576 -426.632 -435.171 -442.221 -447.766 -451.79 -454.268 -455.168 -454.449 -452.081 -448.388 -443.077 -436.141 -427.505 -417.097 -404.951 -391.132 -375.695 -358.694 -340.61 -322.391 -302.434 -276.488 -250.853 -224.392 -197.176 -169.221 -140.449 -110.81 -80.2126 -48.632 -16.1018 17.3564 51.731 86.7398 122.27 157.957 193.454 228.408 262.274 294.511 324.639 352.134 376.525 397.377 414.295 426.999 435.289 439.032 438.079 432.565 422.687 408.642 390.7 369.262 344.686 317.382 287.882 256.626 224.125 190.848 157.232 123.763 90.8061 58.6786 27.6884 -1.98337 -30.1976 -56.8478 -81.9176 -105.404 -127.346 -147.78 -166.727 -184.103 -200.047 -215.101 -229.026 -241.783 -253.358 -263.735 -272.89 -280.803 -287.448 -292.803 -296.847 -299.554 -300.905 -300.886 -299.398 -296.398 -291.874 395.859 394.186 388.656 379.399 366.57 350.354 330.989 308.736 283.885 256.823 227.894 197.448 165.909 133.648 101.041 68.4387 36.1729 4.57079 -26.0955 -55.5992 -83.7379 -110.344 -135.263 -157.864 -179.18 -199.021 -217.267 -233.918 -249.004 -262.586 -274.733 -285.506 -294.977 -303.203 -310.244 -316.15 -320.966 -324.732 -327.481 -329.238 -329.992 -329.779 -328.589 -326.397 -323.181 -318.89 -313.46 -306.831 -298.919 -289.622 -278.861 -266.539 -252.578 -236.928 -219.525 -200.537 -180.177 -157.926 -133.822 -108.127 -80.943 -52.4861 -22.9873 7.35174 38.2362 69.3385 100.39 131.043 160.968 189.825 217.267 242.989 266.679 288.026 306.746 322.529 335.008 343.575 348.961 350.544 348.342 342.274 332.372 318.748 301.621 281.296 258.095 232.4 204.585 175.037 144.122 112.195 79.5788 46.5938 13.5474 -19.2565 -51.5242 -82.9711 -113.347 -142.44 -170.073 -196.118 -220.52 -243.214 -264.171 -283.386 -300.875 -316.673 -330.829 -343.402 -354.461 -364.078 -372.328 -379.281 -385.002 -389.552 -392.991 -395.362 -396.701 -397.029 -396.359 -394.695 -392.032 -388.353 -383.639 -377.859 -370.979 -362.961 -353.761 -343.337 -331.646 -318.642 -304.237 -288.446 -271.189 -252.429 -232.135 -210.294 -186.904 -161.989 -135.598 -107.814 -78.7573 -48.586 -17.5141 14.201 46.2429 78.2519 109.824 140.527 169.913 197.522 222.892 245.577 265.144 281.209 293.437 301.561 305.389 304.812 299.808 290.424 276.797 259.143 237.763 213.016 185.309 155.089 122.837 89.0575 54.2715 18.9913 -16.3046 -51.1869 -85.2823 -118.269 -149.891 -179.95 -208.304 -234.866 -259.609 -282.532 -303.659 -323.16 -341.037 -357.357 -372.182 -385.564 -397.547 -408.163 -417.443 -425.417 -432.122 -437.604 -441.912 -445.08 -447.135 -448.094 -447.975 -446.792 -444.562 -441.295 -436.992 -431.641 -425.215 -417.67 -408.947 -398.971 -387.66 -374.92 -360.67 -344.822 -327.304 -308.049 -287.003 -264.131 -239.428 -212.923 -184.694 -154.862 -123.592 -91.1072 -57.6752 -23.6069 10.7345 44.9541 78.6211 111.281 142.46 171.678 198.447 222.291 242.766 259.474 272.075 280.292 283.928 282.884 277.144 266.779 251.961 232.958 210.137 183.912 154.75 123.161 89.6656 54.8015 19.0898 -16.9795 -52.9499 -88.4126 -123.016 -156.453 -188.474 -218.87 -247.469 -274.153 -298.851 -321.534 -342.178 -360.87 -377.661 -392.62 -405.84 -417.414 -427.429 -435.938 -442.964 -448.491 -452.496 -454.954 -455.833 -455.096 -452.744 -448.996 -443.658 -436.7 -428.04 -417.595 -405.402 -391.525 -376.025 -358.974 -340.774 -322.221 -302.651 -276.827 -251.112 -224.617 -197.414 -169.505 -140.793 -111.224 -80.6884 -49.1569 -16.6619 16.7969 51.2036 86.2831 121.929 157.773 193.468 228.655 262.782 295.291 325.694 353.457 378.095 399.166 416.263 429.103 437.479 441.258 440.27 434.671 424.664 410.452 392.309 370.645 345.821 318.256 288.492 256.975 224.224 190.714 156.887 123.237 90.1298 57.8847 26.81 -2.91493 -31.1554 -57.8085 -82.8628 -106.321 -128.228 -148.624 -167.523 -184.837 -200.778 -215.805 -229.71 -242.453 -254.021 -264.396 -273.552 -281.468 -288.119 -293.479 -297.529 -300.24 -301.59 -301.553 -300.105 -297.125 -292.617 397.876 396.184 390.593 381.238 368.281 351.907 332.36 309.901 284.829 257.541 228.381 197.707 165.949 133.482 100.683 67.9096 35.4935 3.76454 -27.004 -56.5875 -84.785 -111.44 -136.397 -158.866 -180.207 -200.04 -218.256 -234.867 -249.908 -263.444 -275.543 -286.272 -295.701 -303.889 -310.896 -316.773 -321.564 -325.31 -328.044 -329.789 -330.545 -330.339 -329.162 -326.991 -323.804 -319.549 -314.163 -307.582 -299.723 -290.481 -279.776 -267.505 -253.594 -237.984 -220.612 -201.612 -181.285 -159.015 -134.871 -109.121 -81.8617 -53.309 -23.695 6.77925 37.815 69.0826 100.313 131.156 161.279 190.34 217.986 243.913 267.807 289.361 308.288 324.278 336.982 345.871 351.182 352.775 350.568 344.453 334.456 320.691 303.383 282.847 259.415 233.478 205.418 175.629 144.484 112.34 79.5226 46.3532 13.1391 -19.8157 -52.216 -83.7748 -114.241 -143.4 -171.083 -197.149 -221.56 -244.251 -265.192 -284.382 -301.839 -317.599 -331.714 -344.245 -355.261 -364.838 -373.05 -379.969 -385.657 -390.18 -393.596 -395.951 -397.279 -397.602 -396.933 -395.275 -392.622 -388.959 -384.265 -378.509 -371.655 -363.666 -354.498 -344.107 -332.452 -319.482 -305.12 -289.363 -272.137 -253.404 -233.13 -211.3 -187.911 -162.979 -136.555 -108.717 -79.5821 -49.306 -18.1007 13.7773 46.0108 78.2371 110.048 141.006 170.658 198.536 224.172 247.111 266.909 283.172 295.559 303.794 307.683 307.113 302.06 292.574 278.795 260.946 239.334 214.328 186.343 155.836 123.294 89.2291 54.1748 18.6517 -16.8557 -51.9159 -86.1548 -119.25 -150.949 -181.055 -209.428 -235.983 -260.701 -283.574 -304.672 -324.123 -341.952 -358.229 -373.016 -386.366 -398.32 -408.912 -418.169 -426.12 -432.801 -438.259 -442.547 -445.702 -447.745 -448.696 -448.57 -447.383 -445.152 -441.89 -437.599 -432.267 -425.869 -418.36 -409.68 -399.753 -388.494 -375.808 -361.609 -345.811 -328.335 -309.117 -288.097 -265.239 -240.529 -213.996 -185.714 -155.803 -124.427 -91.8096 -58.2181 -23.9635 10.5881 45.0396 78.9562 111.88 143.334 172.829 199.871 223.973 244.681 261.588 274.347 282.674 286.368 285.325 279.526 269.044 254.056 234.836 211.764 185.262 155.808 123.92 90.1287 54.9824 19.0087 -17.2968 -53.4749 -89.1144 -123.864 -157.419 -189.532 -219.995 -248.637 -275.342 -300.042 -322.711 -343.318 -361.974 -378.715 -393.623 -406.79 -418.315 -428.287 -436.762 -443.763 -449.27 -453.255 -455.692 -456.548 -455.791 -453.474 -449.65 -444.282 -437.302 -428.616 -418.132 -405.887 -391.949 -376.381 -359.274 -340.966 -322.112 -302.688 -277.28 -251.39 -224.854 -197.667 -169.809 -141.164 -111.673 -81.2035 -49.7274 -17.2712 16.1852 50.6257 85.7809 121.552 157.565 193.473 228.914 263.323 296.127 326.829 354.882 379.789 401.096 418.388 431.374 439.844 443.662 442.637 436.945 426.8 412.405 394.044 372.135 347.042 319.196 289.146 257.347 224.325 190.563 156.509 122.663 89.3943 57.0227 25.8574 -3.92389 -32.1916 -58.8467 -83.8834 -107.311 -129.179 -149.533 -168.383 -185.627 -201.56 -216.561 -230.445 -243.173 -254.734 -265.107 -274.264 -282.184 -288.841 -294.208 -298.265 -300.981 -302.331 -302.277 -300.868 -297.91 -293.418 400.043 398.329 392.672 383.212 370.117 353.573 333.829 311.15 285.841 258.308 228.9 197.98 165.987 133.299 100.295 67.3369 34.7595 2.89458 -27.9831 -57.6513 -85.911 -112.619 -137.642 -159.917 -181.31 -201.134 -219.317 -235.885 -250.878 -264.362 -276.412 -287.093 -296.476 -304.623 -311.594 -317.439 -322.203 -325.928 -328.647 -330.382 -331.137 -330.938 -329.774 -327.627 -324.47 -320.255 -314.915 -308.387 -300.584 -291.401 -280.757 -268.542 -254.683 -239.117 -221.775 -202.77 -182.479 -160.186 -136.001 -110.191 -82.8509 -54.1961 -24.4579 6.16125 37.3594 68.8046 100.227 131.272 161.608 190.889 218.755 244.9 269.012 290.785 309.934 326.146 339.097 348.411 353.562 355.166 352.957 346.794 336.694 322.777 305.275 284.512 260.83 234.632 206.307 176.26 144.866 112.49 79.4577 46.0906 12.6967 -20.4197 -52.9618 -84.641 -115.203 -144.434 -172.169 -198.258 -222.677 -245.363 -266.287 -285.45 -302.872 -318.592 -332.663 -345.148 -356.118 -365.651 -373.824 -380.705 -386.36 -390.852 -394.243 -396.58 -397.897 -398.215 -397.547 -395.895 -393.254 -389.609 -384.935 -379.204 -372.38 -364.423 -355.288 -344.933 -333.315 -320.383 -306.067 -290.346 -273.154 -254.451 -234.199 -212.382 -188.993 -164.045 -137.585 -109.69 -80.4722 -50.0844 -18.7365 13.3164 45.7554 78.2157 110.283 141.515 171.453 199.622 225.545 248.758 268.805 285.282 297.84 306.195 310.149 309.587 304.482 294.887 280.943 262.882 241.021 215.735 187.451 156.634 123.778 89.4069 54.0634 18.279 -17.4555 -52.7064 -87.0988 -120.31 -152.091 -182.246 -210.64 -237.186 -261.875 -284.694 -305.757 -325.155 -342.933 -359.163 -373.909 -387.224 -399.15 -409.715 -418.947 -426.874 -433.528 -438.96 -443.229 -446.367 -448.399 -449.34 -449.207 -448.015 -445.784 -442.527 -438.248 -432.937 -426.568 -419.099 -410.465 -400.59 -389.388 -376.76 -362.617 -346.871 -329.443 -310.265 -289.274 -266.43 -241.714 -215.151 -186.814 -156.819 -125.329 -92.5685 -58.806 -24.3518 10.4254 45.1261 79.3109 112.519 144.268 174.062 201.399 225.778 246.737 263.86 276.791 285.236 288.991 287.949 282.087 271.48 256.307 236.854 213.51 186.709 156.941 124.73 90.6203 55.1702 18.9145 -17.6446 -54.0454 -89.8742 -124.78 -158.461 -190.672 -221.207 -249.895 -276.622 -301.322 -323.976 -344.542 -363.158 -379.847 -394.697 -407.808 -419.279 -429.205 -437.643 -444.618 -450.106 -454.069 -456.484 -457.313 -456.534 -454.229 -450.348 -444.95 -437.947 -429.235 -418.708 -406.407 -392.403 -376.763 -359.592 -341.183 -322.049 -302.515 -277.889 -251.687 -225.102 -197.932 -170.133 -141.562 -112.155 -81.7593 -50.3437 -17.932 15.5207 49.996 85.2312 121.135 157.331 193.469 229.183 263.896 297.02 328.044 356.41 381.606 403.168 420.67 433.813 442.385 446.245 445.18 439.389 429.094 414.503 395.907 373.733 348.351 320.2 289.844 257.741 224.427 190.395 156.097 122.039 88.5977 56.0909 24.8293 -5.01155 -33.3074 -59.9634 -84.9799 -108.373 -130.199 -150.509 -169.313 -186.468 -202.394 -217.367 -231.23 -243.944 -255.497 -265.868 -275.027 -282.952 -289.615 -294.989 -299.053 -301.775 -303.127 -303.064 -301.689 -298.753 -294.278 402.361 400.622 394.895 385.323 372.079 355.354 335.399 312.483 286.919 259.123 229.45 198.268 166.023 133.097 99.8744 66.7192 33.9695 1.95983 -29.034 -58.7915 -87.1169 -113.878 -139.01 -161.01 -182.489 -202.305 -220.451 -236.973 -251.913 -265.342 -277.338 -287.967 -297.302 -305.405 -312.337 -318.149 -322.885 -326.587 -329.288 -331.016 -331.766 -331.575 -330.426 -328.304 -325.18 -321.007 -315.716 -309.244 -301.503 -292.384 -281.802 -269.65 -255.847 -240.326 -223.014 -204.012 -183.761 -161.441 -137.21 -111.338 -83.9119 -55.1483 -25.2776 5.49645 36.8684 68.5035 100.131 131.393 161.955 191.472 219.574 245.952 270.294 292.299 311.682 328.13 341.349 351.094 356.094 357.716 355.511 349.297 339.089 325.01 307.299 286.292 262.342 235.862 207.255 176.93 145.271 112.646 79.384 45.8052 12.2198 -21.0685 -53.7625 -85.5706 -116.235 -145.541 -173.329 -199.445 -223.871 -246.551 -267.456 -286.59 -303.974 -319.65 -333.675 -346.11 -357.032 -366.518 -374.647 -381.49 -387.108 -391.569 -394.933 -397.251 -398.556 -398.868 -398.201 -396.556 -393.929 -390.301 -385.65 -379.946 -373.153 -365.229 -356.131 -345.814 -334.236 -321.345 -307.077 -291.396 -274.241 -255.569 -235.342 -213.539 -190.151 -165.187 -138.69 -110.735 -81.429 -50.9226 -19.4229 12.8165 45.4754 78.186 110.528 142.053 172.298 200.779 227.01 250.518 270.833 287.54 300.282 308.767 312.791 312.236 307.075 297.363 283.242 264.954 242.824 217.237 188.632 157.483 124.291 89.5895 53.9355 17.8712 -18.1061 -53.5603 -88.1163 -121.451 -153.318 -183.525 -211.939 -238.474 -263.134 -285.893 -306.916 -326.256 -343.979 -360.159 -374.862 -388.14 -400.034 -410.572 -419.778 -427.678 -434.304 -439.708 -443.954 -447.077 -449.096 -450.027 -449.886 -448.689 -446.457 -443.205 -438.939 -433.65 -427.314 -419.886 -411.302 -401.483 -390.341 -377.776 -363.694 -348.005 -330.627 -311.492 -290.534 -267.705 -242.984 -216.39 -187.994 -157.91 -126.299 -93.3858 -59.4401 -24.7729 10.2454 45.2125 79.6842 113.197 145.263 175.378 203.029 227.707 248.936 266.291 279.406 287.98 291.801 290.761 284.831 274.088 258.718 239.013 215.376 188.255 158.148 125.591 91.1396 55.3633 18.8059 -18.0245 -54.6631 -90.6937 -125.766 -159.581 -191.895 -222.507 -251.244 -277.993 -302.693 -325.323 -345.858 -364.423 -381.054 -395.843 -408.892 -420.305 -430.181 -438.58 -445.528 -450.996 -454.937 -457.328 -458.128 -457.321 -455.008 -451.088 -445.661 -438.634 -429.895 -419.323 -406.962 -392.888 -377.172 -359.929 -341.418 -322.029 -302.226 -278.564 -252.002 -225.36 -198.211 -170.476 -141.985 -112.671 -82.356 -51.0077 -18.6455 14.8012 49.3117 84.6313 120.677 157.067 193.452 229.46 264.5 297.968 329.338 358.041 383.548 405.384 423.111 436.424 445.104 449.01 447.901 442.003 431.548 416.746 397.897 375.44 349.747 321.271 290.585 258.156 224.529 190.207 155.647 121.365 87.7384 55.0876 23.7239 -6.17932 -34.5038 -61.1594 -86.1528 -109.508 -131.288 -151.554 -170.311 -187.359 -203.278 -218.226 -232.066 -244.765 -256.31 -266.679 -275.84 -283.77 -290.44 -295.823 -299.894 -302.624 -303.98 -303.913 -302.569 -299.653 -295.197 404.831 403.066 397.263 387.57 374.168 357.249 337.068 313.9 288.063 259.987 230.031 198.568 166.055 132.877 99.4203 66.0551 33.1222 0.958959 -30.158 -60.0091 -88.4031 -115.218 -140.494 -162.148 -183.749 -203.554 -221.66 -238.13 -253.013 -266.384 -278.322 -288.895 -298.179 -306.236 -313.126 -318.902 -323.608 -327.285 -329.969 -331.687 -332.434 -332.249 -331.117 -329.021 -325.933 -321.805 -316.567 -310.154 -302.478 -293.428 -282.914 -270.829 -257.084 -241.613 -224.334 -205.332 -185.131 -162.78 -138.501 -112.562 -85.0458 -56.1666 -26.1551 4.78392 36.3411 68.1779 100.023 131.516 162.32 192.086 220.44 247.067 271.655 293.902 313.531 330.229 343.728 353.913 358.772 360.425 358.229 351.964 341.642 327.389 309.454 288.186 263.948 237.168 208.257 177.636 145.694 112.805 79.2989 45.4955 11.7073 -21.7635 -54.6199 -86.5647 -117.337 -146.723 -174.562 -200.715 -225.142 -247.815 -268.7 -287.802 -305.145 -320.775 -334.748 -347.132 -358 -367.437 -375.521 -382.322 -387.902 -392.328 -395.665 -397.962 -399.255 -399.562 -398.895 -397.258 -394.644 -391.036 -386.409 -380.735 -373.974 -366.087 -357.028 -346.75 -335.215 -322.37 -308.151 -292.513 -275.398 -256.76 -236.56 -214.773 -191.388 -166.406 -139.871 -111.853 -82.4542 -51.8224 -20.1615 12.2757 45.1696 78.1468 110.782 142.62 173.193 202.007 228.567 252.391 272.994 289.948 302.887 311.511 315.609 315.063 309.843 300.004 285.695 267.163 244.743 218.834 189.886 158.382 124.829 89.7755 53.7894 17.426 -18.8097 -54.4799 -89.2089 -122.674 -154.632 -184.894 -213.329 -239.851 -264.469 -287.178 -308.149 -327.428 -345.091 -361.217 -375.874 -389.113 -400.974 -411.483 -420.662 -428.534 -435.129 -440.503 -444.724 -447.83 -449.836 -450.757 -450.608 -449.405 -447.171 -443.925 -439.673 -434.406 -428.104 -420.72 -412.19 -402.432 -391.355 -378.858 -364.84 -349.211 -331.888 -312.8 -291.877 -269.067 -244.341 -217.715 -189.257 -159.077 -127.337 -94.2628 -60.1222 -25.2286 10.0465 45.2977 80.0755 113.913 146.317 176.774 204.764 229.761 251.279 268.883 282.196 290.908 294.8 293.761 287.76 276.872 261.288 241.313 217.364 189.899 159.43 126.502 91.6851 55.5603 18.6812 -18.4385 -55.3301 -91.5745 -126.823 -160.779 -193.204 -223.896 -252.684 -279.457 -304.155 -326.758 -347.261 -365.77 -382.339 -397.062 -410.044 -421.394 -431.217 -439.575 -446.494 -451.941 -455.859 -458.225 -458.994 -458.152 -455.825 -451.872 -446.415 -439.364 -430.598 -419.978 -407.551 -393.403 -377.606 -360.284 -341.67 -322.051 -301.889 -279.228 -252.347 -225.623 -198.501 -170.838 -142.435 -113.223 -82.9948 -51.7202 -19.4138 14.0244 48.5703 83.9785 120.174 156.772 193.42 229.742 265.134 298.97 330.712 359.775 385.615 407.745 425.713 439.206 448.002 451.958 450.802 444.789 434.163 419.136 400.016 377.255 351.23 322.405 291.368 258.591 224.63 189.998 155.16 120.637 86.8144 54.0109 22.5396 -7.42872 -35.7821 -62.4357 -87.4029 -110.716 -132.447 -152.665 -171.378 -188.299 -204.212 -219.135 -232.953 -245.635 -257.173 -267.54 -276.704 -284.639 -291.317 -296.708 -300.789 -303.527 -304.889 -304.826 -303.506 -300.612 -296.175 407.454 405.66 399.776 389.956 376.385 359.259 338.838 315.4 289.273 260.899 230.641 198.88 166.082 132.636 98.9312 65.3431 32.2159 -0.109826 -31.3563 -61.3064 -89.7693 -116.637 -142.052 -163.375 -185.096 -204.882 -222.942 -239.357 -254.179 -267.487 -279.363 -289.878 -299.107 -307.114 -313.961 -319.698 -324.372 -328.023 -330.688 -332.396 -333.14 -332.96 -331.848 -329.778 -326.729 -322.648 -317.466 -311.117 -303.51 -294.534 -284.095 -272.078 -258.396 -242.979 -225.737 -206.73 -186.593 -164.204 -139.875 -113.866 -86.2537 -57.2523 -27.0916 4.02299 35.776 67.8268 99.9033 131.642 162.702 192.732 221.354 248.244 273.093 295.595 315.479 332.444 346.22 356.857 361.588 363.294 361.114 354.798 344.355 329.917 311.744 290.197 265.652 238.551 209.316 178.38 146.138 112.969 79.2022 45.1618 11.1591 -22.506 -55.5349 -87.624 -118.511 -147.98 -175.874 -202.063 -226.49 -249.156 -270.018 -289.086 -306.386 -321.965 -335.884 -348.212 -359.025 -368.408 -376.444 -383.202 -388.742 -393.131 -396.438 -398.714 -399.993 -400.295 -399.63 -398.001 -395.402 -391.814 -387.213 -381.569 -374.844 -366.995 -357.977 -347.742 -336.252 -323.456 -309.289 -293.698 -276.625 -258.025 -237.853 -216.084 -192.702 -167.704 -141.129 -113.044 -83.5492 -52.7853 -20.9542 11.6924 44.8355 78.0969 111.042 143.214 174.136 203.305 230.217 254.378 275.289 292.508 305.658 314.429 318.606 318.069 312.786 302.813 288.302 269.509 246.781 220.528 191.214 159.33 125.393 89.9635 53.6229 16.9412 -19.5687 -55.4672 -90.3789 -123.982 -156.035 -186.355 -214.811 -241.316 -265.882 -288.548 -309.457 -328.669 -346.268 -362.337 -376.945 -390.143 -401.97 -412.448 -421.599 -429.441 -436.003 -441.343 -445.54 -448.627 -450.62 -451.53 -451.372 -450.163 -447.927 -444.685 -440.447 -435.206 -428.939 -421.603 -413.13 -403.436 -392.429 -380.003 -366.056 -350.491 -333.227 -314.188 -293.304 -270.515 -245.785 -219.126 -190.603 -160.323 -128.446 -95.2006 -60.8538 -25.7197 9.82728 45.3802 80.4834 114.665 147.429 178.253 206.602 231.94 253.768 271.637 285.163 294.021 297.989 296.952 290.875 279.833 264.021 243.757 219.473 191.642 160.786 127.463 92.256 55.76 18.5386 -18.8884 -56.0478 -92.5188 -127.953 -162.059 -194.598 -225.375 -254.217 -281.013 -305.71 -328.284 -348.75 -367.199 -383.701 -398.352 -411.262 -422.546 -432.312 -440.625 -447.515 -452.942 -456.835 -459.174 -459.908 -459.027 -456.677 -452.697 -447.21 -440.137 -431.343 -420.671 -408.175 -393.948 -378.067 -360.658 -341.938 -322.116 -301.61 -279.749 -252.744 -225.887 -198.801 -171.218 -142.911 -113.809 -83.6762 -52.4827 -20.2385 13.1881 47.7691 83.2698 119.625 156.443 193.37 230.028 265.795 300.026 332.165 361.613 387.809 410.251 428.476 442.161 451.082 455.091 453.883 447.749 436.941 421.672 402.264 379.179 352.8 323.604 292.193 259.045 224.728 189.767 154.632 119.854 85.8236 52.8588 21.2744 -8.76134 -37.1437 -63.7934 -88.7308 -111.997 -133.675 -153.844 -172.509 -189.293 -205.196 -220.095 -233.889 -246.555 -258.085 -268.451 -277.617 -285.559 -292.245 -297.646 -301.736 -304.485 -305.855 -305.8 -304.503 -301.628 -297.211 410.231 408.407 402.436 392.48 378.73 361.384 340.709 316.985 290.549 261.859 231.28 199.204 166.104 132.373 98.4055 64.582 31.249 -1.24817 -32.6306 -62.6843 -91.2166 -118.129 -143.583 -164.794 -186.535 -206.29 -224.299 -240.654 -255.411 -268.651 -280.461 -290.914 -300.086 -308.04 -314.84 -320.538 -325.177 -328.801 -331.445 -333.138 -333.882 -333.71 -332.616 -330.576 -327.566 -323.536 -318.414 -312.132 -304.6 -295.701 -285.341 -273.397 -259.785 -244.423 -227.22 -208.211 -188.146 -165.714 -141.331 -115.25 -87.5367 -58.407 -28.0883 3.21238 35.1723 67.4495 99.7706 131.768 163.1 193.41 222.315 249.483 274.607 297.379 317.528 334.765 348.816 359.884 364.535 366.321 364.166 357.799 347.228 332.593 314.167 292.322 267.451 240.008 210.429 179.159 146.598 113.132 79.0919 44.8023 10.5734 -23.2984 -56.5089 -88.7501 -119.757 -149.314 -177.264 -203.491 -227.915 -250.574 -271.411 -290.442 -307.696 -323.22 -337.082 -349.35 -360.104 -369.431 -377.416 -384.129 -389.626 -393.976 -397.253 -399.505 -400.771 -401.067 -400.404 -398.784 -396.2 -392.634 -388.061 -382.45 -375.762 -367.954 -358.979 -348.79 -337.347 -324.603 -310.492 -294.951 -277.924 -259.363 -239.221 -217.473 -194.097 -169.081 -142.465 -114.311 -84.7158 -53.8131 -21.8029 11.0651 44.4718 78.0346 111.31 143.835 175.127 204.674 231.961 256.48 277.719 295.221 308.595 317.523 321.785 321.258 315.909 305.792 291.066 271.995 248.937 222.318 192.615 160.328 125.982 90.1517 53.4339 16.4142 -20.3853 -56.5247 -91.6292 -125.377 -157.53 -187.909 -216.386 -242.871 -267.382 -289.999 -310.84 -329.981 -347.511 -363.519 -378.075 -391.23 -403.021 -413.468 -422.589 -430.4 -436.927 -442.23 -446.4 -449.468 -451.448 -452.346 -452.178 -450.962 -448.723 -445.487 -441.263 -436.047 -429.818 -422.532 -414.121 -404.496 -393.563 -381.214 -367.341 -351.845 -334.643 -315.658 -294.817 -272.052 -247.319 -220.626 -192.035 -161.648 -129.628 -96.2011 -61.6367 -26.2483 9.58644 45.459 80.9068 115.455 148.6 179.812 208.546 234.246 256.403 274.557 288.308 297.323 301.372 300.337 294.18 282.973 266.918 246.345 221.704 193.484 162.216 128.472 92.8506 55.9601 18.3756 -19.3764 -56.8189 -93.5288 -129.158 -163.421 -196.081 -226.947 -255.845 -282.665 -307.358 -329.902 -350.327 -368.712 -385.14 -399.714 -412.548 -423.759 -433.465 -441.731 -448.59 -453.998 -457.866 -460.177 -460.873 -459.945 -457.572 -453.565 -448.048 -440.953 -432.131 -421.405 -408.834 -394.524 -378.553 -361.05 -342.221 -322.22 -301.425 -280.054 -253.231 -226.145 -199.113 -171.617 -143.414 -114.432 -84.4012 -53.2966 -21.1219 12.29 46.905 82.5019 119.024 156.076 193.301 230.316 266.483 301.134 333.696 363.555 390.128 412.904 431.402 445.292 454.345 458.411 457.148 450.885 439.882 424.356 404.641 381.212 354.457 324.867 293.058 259.516 224.822 189.511 154.062 119.014 84.7637 51.6291 19.9264 -10.1789 -38.59 -65.2335 -90.1374 -113.352 -134.971 -155.088 -173.715 -190.332 -206.231 -221.106 -234.875 -247.524 -259.046 -269.412 -278.581 -286.529 -293.225 -298.636 -302.737 -305.497 -306.877 -306.835 -305.558 -302.704 -298.307 413.165 411.308 405.244 395.143 381.204 363.626 342.681 318.653 291.89 262.865 231.947 199.536 166.118 132.087 97.8421 63.77 30.2198 -2.45771 -33.9826 -64.1438 -92.7472 -119.692 -145.088 -166.408 -188.069 -207.778 -225.731 -242.022 -256.709 -269.877 -281.618 -292.005 -301.115 -309.014 -315.765 -321.42 -326.024 -329.619 -332.241 -333.918 -334.661 -334.497 -333.421 -331.413 -328.445 -324.468 -319.41 -313.2 -305.747 -296.931 -286.653 -274.789 -261.25 -245.947 -228.785 -209.773 -189.795 -167.311 -142.872 -116.715 -88.8964 -59.632 -29.1467 2.35039 34.529 67.0449 99.6241 131.894 163.513 194.118 223.323 250.784 276.197 299.252 319.679 337.191 351.504 362.682 367.611 369.509 367.389 360.971 350.266 335.424 316.728 294.567 269.347 241.542 211.598 179.973 147.076 113.297 78.9691 44.4168 9.94965 -24.1399 -57.542 -89.9437 -121.077 -150.725 -178.734 -204.998 -229.418 -252.07 -272.878 -291.87 -309.075 -324.541 -338.342 -350.546 -361.237 -370.504 -378.437 -385.102 -390.555 -394.864 -398.107 -400.336 -401.588 -401.879 -401.218 -399.607 -397.041 -393.498 -388.953 -383.377 -376.728 -368.964 -360.035 -349.893 -338.501 -325.813 -311.759 -296.273 -279.294 -260.775 -240.667 -218.942 -195.572 -170.539 -143.881 -115.655 -85.9556 -54.9081 -22.7101 10.3908 44.0764 77.9574 111.582 144.481 176.165 206.113 233.797 258.698 280.286 298.089 311.703 320.797 325.148 324.632 319.212 308.944 293.989 274.621 251.213 224.205 194.089 161.374 126.593 90.3382 53.2198 15.8422 -21.2627 -57.6554 -92.9621 -126.861 -159.118 -189.558 -218.058 -244.517 -268.967 -291.531 -312.298 -331.363 -348.82 -364.763 -379.264 -392.374 -404.127 -414.542 -423.632 -431.411 -437.901 -443.162 -447.304 -450.354 -452.319 -453.206 -453.027 -451.802 -449.56 -446.329 -442.12 -436.931 -430.742 -423.509 -415.163 -405.611 -394.757 -382.491 -368.697 -353.274 -336.138 -317.211 -296.416 -273.678 -248.943 -222.215 -193.553 -163.056 -130.883 -97.2662 -62.472 -26.8164 9.3222 45.532 81.3441 116.279 149.828 181.452 210.594 236.68 259.186 277.643 291.634 300.816 304.951 303.918 297.677 286.297 269.981 249.079 224.059 195.426 163.721 129.53 93.4687 56.16 18.1912 -19.9037 -57.6453 -94.6059 -130.44 -164.867 -197.654 -228.613 -257.569 -284.413 -309.102 -331.613 -351.992 -370.307 -386.657 -401.148 -413.899 -425.034 -434.674 -442.891 -449.719 -455.109 -458.95 -461.232 -461.887 -460.903 -458.504 -454.473 -448.927 -441.811 -432.962 -422.178 -409.526 -395.128 -379.065 -361.46 -342.516 -322.358 -301.308 -280.125 -253.861 -226.388 -199.435 -172.034 -143.943 -115.09 -85.1708 -54.1631 -22.0659 11.3273 45.975 81.6716 118.37 155.667 193.208 230.602 267.194 302.293 335.306 365.6 392.576 415.705 434.492 448.6 457.793 461.921 460.597 454.197 442.988 427.189 407.148 383.354 356.201 326.193 293.962 260.004 224.91 189.228 153.447 118.114 83.6324 50.3194 18.4934 -11.6832 -40.1224 -66.757 -91.6231 -114.782 -136.336 -156.399 -175.006 -191.401 -207.317 -222.167 -235.91 -248.542 -260.056 -270.422 -279.595 -287.55 -294.255 -299.679 -303.792 -306.564 -307.957 -307.927 -306.672 -303.838 -299.462 416.256 414.363 408.201 397.948 383.808 365.985 344.755 320.406 293.296 263.917 232.642 199.878 166.123 131.777 97.2393 62.9052 29.1265 -3.73993 -35.4138 -65.6866 -94.3627 -121.333 -146.619 -168.162 -189.696 -209.348 -227.238 -243.46 -258.072 -271.165 -282.831 -293.149 -302.194 -310.035 -316.735 -322.345 -326.911 -330.475 -333.074 -334.738 -335.476 -335.322 -334.265 -332.289 -329.366 -325.446 -320.454 -314.32 -306.95 -298.223 -288.032 -276.254 -262.79 -247.553 -230.435 -211.414 -191.54 -168.994 -144.499 -118.263 -90.3344 -60.9289 -30.2684 1.43596 33.8445 66.6115 99.4625 132.02 163.938 194.855 224.376 252.148 277.863 301.217 321.938 339.727 354.296 365.479 370.814 372.858 370.782 364.312 353.467 338.404 319.422 296.926 271.338 243.148 212.819 180.819 147.568 113.459 78.8301 44.0024 9.28511 -25.0325 -58.636 -91.2072 -122.473 -152.216 -180.284 -206.586 -230.999 -253.643 -274.421 -293.371 -310.523 -325.928 -339.664 -351.801 -362.424 -371.628 -379.505 -386.121 -391.527 -395.792 -399.001 -401.205 -402.444 -402.73 -402.071 -400.47 -397.922 -394.404 -389.89 -384.351 -377.743 -370.025 -361.145 -351.052 -339.713 -327.084 -313.091 -297.664 -280.736 -262.262 -242.189 -220.489 -197.128 -172.079 -145.377 -117.078 -87.2702 -56.0722 -23.6772 9.66804 43.6476 77.8642 111.857 145.153 177.249 207.621 235.726 261.033 282.992 301.113 314.982 324.252 328.697 328.194 322.7 312.269 297.072 277.389 253.608 226.188 195.636 162.468 127.227 90.521 52.9781 15.2229 -22.2033 -58.8615 -94.3796 -128.437 -160.801 -191.305 -219.827 -246.258 -270.638 -293.146 -313.833 -332.815 -350.194 -366.068 -380.512 -393.575 -405.289 -415.67 -424.729 -432.475 -438.924 -444.138 -448.253 -451.283 -453.233 -454.108 -453.918 -452.684 -450.438 -447.211 -443.018 -437.856 -431.709 -424.533 -416.256 -406.782 -396.011 -383.833 -370.123 -354.777 -337.712 -318.846 -298.102 -275.394 -250.659 -223.897 -195.16 -164.547 -132.214 -98.3973 -63.3617 -27.4246 9.03314 45.5987 81.7945 117.137 151.114 183.174 212.747 239.241 262.12 280.897 295.143 304.503 308.73 307.7 301.371 289.805 273.212 251.96 226.539 197.468 165.299 130.634 94.1074 56.3561 17.9814 -20.4742 -58.53 -95.7536 -131.802 -166.4 -199.319 -230.375 -259.391 -286.259 -310.939 -333.42 -353.746 -371.987 -388.252 -402.655 -415.317 -426.37 -435.94 -444.105 -450.902 -456.275 -460.09 -462.34 -462.951 -461.902 -459.483 -455.425 -449.848 -442.711 -433.838 -422.992 -410.253 -395.762 -379.601 -361.889 -342.826 -322.522 -301.241 -279.958 -254.662 -226.606 -199.768 -172.468 -144.498 -115.786 -85.9856 -55.0843 -23.073 10.2975 44.9756 80.775 117.658 155.214 193.088 230.885 267.928 303.503 336.993 367.75 395.151 418.655 437.749 452.086 461.428 465.621 464.232 457.687 446.26 430.173 409.787 385.606 358.031 327.582 294.906 260.506 224.989 188.917 152.786 117.152 82.4272 48.9274 16.9732 -13.2763 -41.7425 -68.3653 -93.1889 -116.285 -137.77 -157.775 -176.391 -192.492 -208.453 -223.28 -236.995 -249.608 -261.114 -271.482 -280.659 -288.622 -295.338 -300.773 -304.899 -307.686 -309.093 -309.079 -307.845 -305.031 -300.676 419.507 417.575 411.308 400.894 386.544 368.462 346.931 322.243 294.767 265.015 233.362 200.226 166.118 131.441 96.595 61.9858 27.9668 -5.09715 -36.9259 -67.3156 -96.0636 -123.059 -148.233 -170.002 -191.412 -211 -228.821 -244.969 -259.502 -272.514 -284.102 -294.346 -303.324 -311.104 -317.749 -323.312 -327.839 -331.371 -333.945 -335.595 -336.327 -336.181 -335.147 -333.205 -330.328 -326.467 -321.546 -315.492 -308.21 -299.577 -289.481 -277.79 -264.407 -249.24 -232.172 -213.136 -193.382 -170.763 -146.211 -119.896 -91.8518 -62.2994 -31.4547 0.468035 33.1174 66.1481 99.2841 132.144 164.378 195.62 225.471 253.573 279.603 303.273 324.3 342.374 357.206 368.439 374.161 376.374 374.351 367.831 356.838 341.544 322.26 299.409 273.429 244.832 214.094 181.699 148.075 113.62 78.6757 43.5605 8.57995 -25.9755 -59.7914 -92.5409 -123.945 -153.785 -181.914 -208.241 -232.672 -255.294 -276.039 -294.943 -312.041 -327.379 -341.046 -353.113 -363.666 -372.803 -380.62 -387.185 -392.542 -396.761 -399.933 -402.111 -403.336 -403.618 -402.963 -401.374 -398.844 -395.352 -390.87 -385.37 -378.806 -371.136 -362.307 -352.266 -340.983 -328.416 -314.489 -299.124 -282.25 -263.824 -243.79 -222.117 -198.768 -173.703 -146.956 -118.581 -88.6616 -57.3077 -24.707 8.89419 43.1826 77.7527 112.133 145.846 178.378 209.197 237.748 263.484 285.836 304.297 318.436 327.891 332.437 331.948 326.374 315.774 300.32 280.302 256.127 228.27 197.257 163.61 127.883 90.6998 52.7069 14.5529 -23.2104 -60.1461 -95.8857 -130.108 -162.583 -193.152 -221.697 -248.082 -272.411 -294.844 -315.444 -334.337 -351.634 -367.435 -381.819 -394.833 -406.506 -416.853 -425.881 -433.592 -439.997 -445.16 -449.245 -452.255 -454.191 -455.053 -454.852 -453.607 -451.356 -448.134 -443.956 -438.823 -432.72 -425.603 -417.4 -408.008 -397.326 -385.241 -371.621 -356.356 -339.365 -320.565 -299.876 -277.203 -252.47 -225.672 -196.858 -166.125 -133.624 -99.5971 -64.3089 -28.0756 8.71653 45.6563 82.2559 118.027 152.453 184.975 215.006 241.932 265.204 284.323 298.838 308.386 312.712 311.685 305.263 293.501 276.614 254.99 229.143 199.609 166.949 131.784 94.7652 56.547 17.7456 -21.0892 -59.4748 -96.9726 -133.244 -168.02 -201.076 -232.233 -261.312 -288.204 -312.874 -335.321 -355.59 -373.75 -389.925 -404.233 -416.8 -427.765 -437.262 -445.371 -452.138 -457.496 -461.284 -463.501 -464.064 -462.938 -460.5 -456.416 -450.809 -443.655 -434.756 -423.845 -411.013 -396.424 -380.163 -362.334 -343.148 -322.706 -301.218 -279.71 -255.483 -226.794 -200.114 -172.919 -145.079 -116.519 -86.8472 -56.0611 -24.1454 9.19726 43.903 79.8084 116.884 154.711 192.938 231.16 268.681 304.761 338.758 370.004 397.856 421.755 441.174 455.753 465.252 469.514 468.057 461.358 449.701 433.308 412.557 387.968 359.949 329.033 295.887 261.022 225.06 188.575 152.074 116.124 81.1453 47.4504 15.3632 -14.9602 -43.4519 -70.0597 -94.8356 -117.863 -139.272 -159.213 -177.854 -193.618 -209.645 -224.443 -238.128 -250.722 -262.221 -272.591 -281.773 -289.744 -296.472 -301.92 -306.06 -308.863 -310.286 -310.292 -309.077 -306.283 -301.95 422.918 420.945 414.567 403.984 389.411 371.057 349.21 324.164 296.303 266.156 234.107 200.58 166.101 131.076 95.9072 61.0103 26.7387 -6.53148 -38.5211 -69.032 -97.8537 -124.869 -149.947 -171.914 -193.216 -212.733 -230.48 -246.549 -260.999 -273.925 -285.43 -295.596 -304.503 -312.219 -318.807 -324.322 -328.807 -332.306 -334.854 -336.486 -337.215 -337.076 -336.065 -334.158 -331.331 -327.532 -322.686 -316.716 -309.527 -300.993 -290.996 -279.398 -266.104 -251.009 -233.997 -214.944 -195.321 -172.619 -148.012 -121.614 -93.4505 -63.7455 -32.7073 -0.555214 32.3464 65.6536 99.0883 132.264 164.83 196.413 226.608 255.055 281.415 305.418 326.763 345.139 360.233 371.578 377.651 380.055 378.095 371.524 360.376 344.836 325.231 302.004 275.611 246.585 215.417 182.608 148.592 113.776 78.501 43.0866 7.83144 -26.9725 -61.0116 -93.9472 -125.495 -155.437 -183.626 -209.978 -234.423 -257.023 -277.732 -296.588 -313.627 -328.895 -342.49 -354.482 -364.961 -374.027 -381.781 -388.294 -393.6 -397.769 -400.903 -403.054 -404.265 -404.542 -403.892 -402.316 -399.807 -396.344 -391.897 -386.435 -379.918 -372.299 -363.524 -353.537 -342.311 -329.811 -315.953 -300.654 -283.837 -265.462 -245.469 -223.827 -200.492 -175.411 -148.619 -120.166 -90.1311 -58.6152 -25.801 8.06828 42.6802 77.6224 112.41 146.562 179.553 210.843 239.864 266.054 288.824 307.643 322.068 331.718 336.369 335.895 330.238 319.457 303.731 283.358 258.766 230.446 198.947 164.796 128.555 90.868 52.3994 13.8252 -24.2888 -61.513 -97.4832 -131.875 -164.465 -195.102 -223.672 -249.996 -274.275 -296.625 -317.131 -335.93 -353.138 -368.862 -383.183 -396.146 -407.778 -418.09 -427.086 -434.762 -441.121 -446.226 -450.281 -453.271 -455.192 -456.042 -455.828 -454.573 -452.315 -449.098 -444.936 -439.831 -433.775 -426.721 -418.596 -409.289 -398.702 -386.717 -373.191 -358.012 -341.098 -322.369 -301.741 -279.106 -254.378 -227.544 -198.65 -167.79 -135.114 -100.868 -65.3151 -28.7713 8.37198 45.7037 82.7273 118.95 153.849 186.856 217.371 244.752 268.441 287.921 302.721 312.468 316.898 315.876 309.358 297.389 280.19 258.172 231.877 201.854 168.676 132.982 95.4432 56.7332 17.4827 -21.7505 -60.4817 -98.2648 -134.769 -169.729 -202.928 -234.189 -263.332 -290.248 -314.907 -337.318 -357.525 -375.598 -391.676 -405.884 -418.349 -429.22 -438.64 -446.692 -453.427 -458.774 -462.535 -464.717 -465.23 -464.009 -461.562 -457.45 -451.811 -444.641 -435.719 -424.736 -411.807 -397.112 -380.746 -362.797 -343.482 -322.907 -301.235 -279.477 -256.216 -226.959 -200.472 -173.387 -145.687 -117.29 -87.7555 -57.0964 -25.2858 8.02394 42.7534 78.7672 116.044 154.156 192.753 231.426 269.452 306.067 340.6 372.364 400.691 425.008 444.768 459.603 469.268 473.603 472.071 465.211 453.311 436.596 415.46 390.441 361.952 330.546 296.904 261.549 225.118 188.2 151.311 115.029 79.7838 45.8856 13.6609 -16.7369 -45.2525 -71.8416 -96.5641 -119.516 -140.841 -160.708 -179.345 -194.833 -210.894 -225.657 -239.31 -251.884 -263.377 -273.749 -282.936 -290.917 -297.656 -303.119 -307.275 -310.095 -311.535 -311.564 -310.368 -307.593 -303.285 426.492 424.474 417.979 407.218 392.411 373.772 351.592 326.17 297.902 267.342 234.875 200.939 166.071 130.683 95.1748 59.9763 25.4398 -8.04482 -40.2012 -70.8375 -99.7353 -126.77 -151.764 -173.897 -195.106 -214.548 -232.215 -248.2 -262.561 -275.397 -286.815 -296.9 -305.732 -313.381 -319.91 -325.373 -329.816 -333.278 -335.799 -337.408 -338.137 -338.008 -337.019 -335.15 -332.373 -328.641 -323.872 -317.99 -310.901 -302.472 -292.578 -281.081 -267.878 -252.862 -235.913 -216.845 -197.349 -174.561 -149.901 -123.421 -95.1323 -65.2687 -34.0282 -1.63524 31.53 65.1264 98.8739 132.38 165.292 197.232 227.787 256.594 283.3 307.649 329.331 348.022 363.381 374.901 381.299 383.909 382.02 375.399 364.089 348.292 328.351 304.729 277.899 248.418 216.795 183.548 149.123 113.928 78.3089 42.5825 7.04146 -28.0228 -62.2952 -95.4267 -127.124 -157.17 -185.422 -211.799 -236.254 -258.831 -279.501 -298.304 -315.282 -330.475 -343.995 -355.909 -366.309 -375.301 -382.989 -389.448 -394.702 -398.815 -401.91 -404.033 -405.23 -405.503 -404.856 -403.294 -400.808 -397.376 -392.964 -387.544 -381.078 -373.512 -364.794 -354.864 -343.697 -331.268 -317.484 -302.256 -285.499 -267.177 -247.229 -225.622 -202.303 -177.207 -150.369 -121.839 -91.6852 -60.0013 -26.9651 7.18321 42.1353 77.4669 112.684 147.297 180.767 212.555 242.072 268.74 291.952 311.151 325.876 335.735 340.499 340.04 334.296 323.326 307.313 286.565 261.531 232.725 200.714 166.032 129.249 91.0309 52.0602 13.0444 -25.4353 -62.9598 -99.17 -133.739 -166.447 -197.153 -225.751 -252.003 -276.231 -298.489 -318.895 -337.591 -354.706 -370.349 -384.604 -397.517 -409.104 -419.381 -428.344 -435.985 -442.296 -447.336 -451.362 -454.33 -456.237 -457.073 -456.846 -455.578 -453.312 -450.099 -445.952 -440.878 -434.87 -427.883 -419.84 -410.625 -400.137 -388.258 -374.832 -359.744 -342.911 -324.258 -303.696 -281.105 -256.383 -229.514 -200.54 -169.547 -136.688 -102.213 -66.3844 -29.5164 7.99483 45.7374 83.2045 119.9 155.296 188.814 219.84 247.703 271.831 291.693 306.797 316.755 321.295 320.277 313.659 301.471 283.94 261.504 234.735 204.196 170.474 134.222 96.1366 56.9091 17.1871 -22.4635 -61.5551 -99.6357 -136.38 -171.532 -204.879 -236.247 -265.457 -292.395 -317.04 -339.412 -359.552 -377.531 -393.504 -407.607 -419.961 -430.732 -440.07 -448.062 -454.766 -460.104 -463.841 -465.987 -466.447 -465.11 -462.67 -458.525 -452.852 -445.669 -436.726 -425.671 -412.634 -397.817 -381.347 -363.277 -343.827 -323.123 -301.287 -279.334 -256.751 -227.135 -200.843 -173.87 -146.321 -118.1 -88.7131 -58.1902 -26.4968 6.77294 41.5223 77.6475 115.134 153.543 192.53 231.678 270.239 307.419 342.518 374.828 403.657 428.413 448.534 463.638 473.477 477.89 476.278 469.249 457.093 440.038 418.496 393.024 364.042 332.119 297.956 262.086 225.163 187.789 150.493 113.863 78.3399 44.2299 11.8637 -18.6089 -47.1459 -73.7122 -98.3752 -121.245 -142.477 -162.258 -180.804 -196.191 -212.204 -226.922 -240.54 -253.094 -264.58 -274.957 -284.15 -292.139 -298.892 -304.37 -308.543 -311.382 -312.842 -312.892 -311.716 -308.963 -304.679 430.231 428.164 421.545 410.597 395.545 376.606 354.078 328.259 299.564 268.571 235.666 201.3 166.025 130.258 94.3948 58.8818 24.0677 -9.63944 -41.9679 -72.7358 -101.709 -128.77 -153.68 -175.952 -197.082 -216.445 -234.027 -249.923 -264.191 -276.93 -288.257 -298.257 -307.011 -314.59 -321.057 -326.467 -330.864 -334.29 -336.781 -338.37 -339.094 -338.975 -338.01 -336.179 -333.456 -329.793 -325.106 -319.316 -312.33 -304.013 -294.23 -282.835 -269.73 -254.8 -237.924 -218.876 -199.434 -176.587 -151.881 -125.316 -96.8987 -66.8715 -35.4191 -2.7733 30.6664 64.5648 98.639 132.491 165.764 198.074 229.004 258.186 285.256 309.965 332.002 351.025 366.664 378.399 385.098 387.936 386.128 379.457 367.975 351.905 331.607 307.562 280.27 250.312 218.214 184.51 149.658 114.07 78.0927 42.0419 6.20498 -29.131 -63.6475 -96.9834 -128.835 -158.988 -187.302 -213.703 -238.164 -260.717 -281.345 -300.093 -317.007 -332.119 -345.56 -357.392 -367.71 -376.624 -384.242 -390.645 -395.842 -399.898 -402.952 -405.045 -406.228 -406.499 -405.857 -404.309 -401.847 -398.446 -394.071 -388.698 -382.285 -374.775 -366.117 -356.246 -345.141 -332.787 -319.081 -303.927 -287.234 -268.968 -249.068 -227.5 -204.202 -179.091 -152.206 -123.596 -93.3231 -61.4653 -28.1996 6.23843 41.5468 77.2861 112.952 148.049 182.023 214.332 244.372 271.547 295.224 314.825 329.87 339.945 344.823 344.386 338.554 327.384 311.066 289.919 264.419 235.101 202.552 167.312 129.959 91.18 51.6798 12.1988 -26.6619 -64.4982 -100.958 -135.708 -168.538 -199.314 -227.945 -254.108 -278.283 -300.44 -320.737 -339.323 -356.338 -371.896 -386.082 -398.94 -410.483 -420.724 -429.655 -437.261 -443.522 -448.485 -452.483 -455.43 -457.323 -458.146 -457.904 -456.621 -454.346 -451.135 -447.004 -441.96 -436.004 -429.086 -421.132 -412.013 -401.63 -389.864 -376.544 -361.548 -344.802 -326.229 -305.739 -283.197 -258.485 -231.58 -202.522 -171.392 -138.341 -103.628 -67.5121 -30.307 7.58886 45.7619 83.6929 120.883 156.799 190.854 222.418 250.789 275.38 295.644 311.065 321.245 325.901 324.892 318.171 305.753 287.872 264.995 237.725 206.646 172.349 135.507 96.8447 57.0705 16.854 -23.2335 -62.6989 -101.09 -138.08 -173.429 -206.931 -238.408 -267.685 -294.645 -319.273 -341.602 -361.67 -379.546 -395.406 -409.398 -421.637 -432.302 -441.554 -449.483 -456.156 -461.49 -465.204 -467.312 -467.719 -466.234 -463.819 -459.638 -453.931 -446.739 -437.779 -426.649 -413.492 -398.549 -381.976 -363.775 -344.182 -323.35 -301.365 -279.248 -257.053 -227.386 -201.226 -174.369 -146.983 -118.951 -89.7186 -59.347 -27.781 5.44615 40.2058 76.4437 114.149 152.868 192.265 231.912 271.038 308.816 344.512 377.397 406.754 431.974 452.474 467.86 477.881 482.377 480.68 473.473 461.048 443.635 421.667 395.718 366.218 333.753 299.043 262.631 225.192 187.338 149.616 112.623 76.8101 42.4803 9.96842 -20.5786 -49.1341 -75.6732 -100.27 -123.049 -144.181 -163.863 -182.227 -197.694 -213.575 -228.237 -241.817 -254.35 -265.83 -276.214 -285.413 -293.411 -300.179 -305.674 -309.864 -312.724 -314.204 -314.279 -313.123 -310.391 -306.134 434.137 432.017 425.267 414.123 398.813 379.562 356.668 330.434 301.288 269.84 236.478 201.662 165.963 129.8 93.5648 57.7249 22.6193 -11.3181 -43.8238 -74.7288 -103.779 -130.867 -155.698 -178.083 -199.143 -218.424 -235.916 -251.717 -265.887 -278.524 -289.755 -299.666 -308.339 -315.845 -322.247 -327.601 -331.951 -335.339 -337.8 -339.366 -340.085 -339.975 -339.036 -337.245 -334.578 -330.987 -326.386 -320.693 -313.816 -305.617 -295.949 -284.663 -271.663 -256.822 -240.031 -221.105 -201.509 -178.698 -153.954 -127.303 -98.7518 -68.5561 -36.882 -3.97129 29.7542 63.9676 98.3828 132.594 166.246 198.941 230.261 259.828 287.278 312.365 334.773 354.148 370.097 382.068 389.055 392.139 390.419 383.698 372.038 355.683 335.012 310.53 282.755 252.294 219.693 185.507 150.206 114.207 77.8564 41.4682 5.32567 -30.2931 -65.0667 -98.6147 -130.626 -160.89 -189.265 -215.689 -240.151 -262.681 -283.264 -301.953 -318.801 -333.826 -347.184 -358.931 -369.163 -377.995 -385.539 -391.885 -397.027 -401.018 -404.028 -406.09 -407.259 -407.527 -406.89 -405.358 -402.922 -399.556 -395.221 -389.895 -383.537 -376.086 -367.492 -357.682 -346.64 -334.365 -320.744 -305.669 -289.042 -270.835 -250.986 -229.461 -206.188 -181.065 -154.131 -125.44 -95.046 -63.0106 -29.5073 5.23278 40.913 77.0794 113.215 148.818 183.32 216.177 246.765 274.474 298.644 318.662 334.045 344.351 349.352 348.934 343.008 331.628 314.989 293.423 267.433 237.576 204.461 168.634 130.682 91.3109 51.2523 11.2844 -27.9703 -66.1294 -102.846 -137.783 -170.735 -201.581 -230.251 -256.309 -280.425 -302.473 -322.651 -341.12 -358.028 -373.496 -387.61 -400.415 -411.914 -422.119 -431.019 -438.588 -444.798 -449.67 -453.644 -456.571 -458.451 -459.261 -459.003 -457.704 -455.417 -452.209 -448.093 -443.081 -437.178 -430.332 -422.471 -413.453 -403.18 -391.535 -378.327 -363.428 -346.772 -328.284 -307.873 -285.386 -260.688 -233.749 -204.606 -173.333 -140.081 -105.122 -68.7062 -31.1499 7.14676 45.7694 84.1848 121.894 158.354 192.973 225.103 254.008 279.083 299.776 315.536 325.95 330.723 329.724 322.899 310.237 291.982 268.635 240.838 209.189 174.287 136.825 97.5599 57.2144 16.4834 -24.0569 -63.9096 -102.621 -139.865 -175.416 -209.076 -240.665 -270.012 -296.993 -321.601 -343.882 -363.872 -381.64 -397.382 -411.259 -423.378 -433.929 -443.089 -450.952 -457.595 -462.928 -466.618 -468.688 -469.047 -467.404 -465.026 -460.794 -455.049 -447.85 -438.878 -427.67 -414.382 -399.313 -382.637 -364.288 -344.546 -323.588 -301.46 -279.184 -257.082 -227.784 -201.617 -174.883 -147.671 -119.84 -90.7759 -60.5651 -29.1436 4.03473 38.7998 75.1519 113.083 152.125 191.952 232.126 271.848 310.255 346.58 380.072 409.984 435.691 456.589 472.271 482.482 487.065 485.279 477.886 465.178 447.389 424.972 398.523 368.48 335.446 300.163 263.183 225.202 186.847 148.679 111.305 75.1913 40.6335 7.97201 -22.6484 -51.2191 -77.7263 -102.25 -124.929 -145.952 -165.524 -183.693 -199.266 -215.002 -229.601 -243.141 -255.652 -267.128 -277.521 -286.725 -294.734 -301.516 -307.03 -311.24 -314.12 -315.623 -315.725 -314.587 -311.878 -307.65 438.212 436.035 429.147 417.796 402.218 382.639 359.363 332.692 303.074 271.151 237.309 202.023 165.882 129.308 92.6829 56.5035 21.0919 -13.0831 -45.7706 -76.8184 -105.948 -133.066 -157.812 -180.293 -201.29 -220.486 -237.882 -253.584 -267.65 -280.18 -291.31 -301.128 -309.716 -317.146 -323.48 -328.777 -333.078 -336.426 -338.856 -340.394 -341.111 -341.01 -340.098 -338.347 -335.738 -332.223 -327.713 -322.12 -315.358 -307.284 -297.738 -286.566 -273.675 -258.93 -242.232 -223.465 -203.644 -180.898 -156.121 -129.384 -100.694 -70.3245 -38.419 -5.23083 28.7915 63.3327 98.1036 132.689 166.735 199.832 231.555 261.519 289.366 314.846 337.645 357.396 373.678 385.907 393.18 396.528 394.905 388.132 376.285 359.63 338.562 313.611 285.32 254.327 221.2 186.513 150.749 114.325 77.5896 40.853 4.39493 -31.5182 -66.5605 -100.33 -132.506 -162.883 -191.318 -217.764 -242.221 -264.726 -285.261 -303.886 -320.665 -335.597 -348.869 -360.526 -370.667 -379.413 -386.88 -393.168 -398.252 -402.171 -405.137 -407.165 -408.319 -408.584 -407.954 -406.438 -404.029 -400.701 -396.407 -391.13 -384.832 -377.442 -368.917 -359.17 -348.19 -336.001 -322.47 -307.477 -290.92 -272.776 -252.982 -231.503 -208.261 -183.126 -156.142 -127.37 -96.8538 -64.6388 -30.8901 4.16369 40.2329 76.8463 113.473 149.605 184.656 218.088 249.253 277.522 302.214 322.677 338.417 348.959 354.084 353.692 347.674 336.076 319.105 297.089 270.574 240.148 206.439 169.999 131.418 91.4259 50.7772 10.301 -29.3602 -67.8512 -104.835 -139.962 -173.038 -203.953 -232.655 -258.617 -282.66 -304.582 -324.634 -342.976 -359.775 -375.151 -389.191 -401.945 -413.398 -423.564 -432.433 -439.967 -446.124 -450.913 -454.853 -457.755 -459.62 -460.416 -460.142 -458.823 -456.524 -453.316 -449.217 -444.235 -438.388 -431.618 -423.855 -414.943 -404.784 -393.267 -380.178 -365.38 -348.82 -330.421 -310.095 -287.671 -262.991 -236.017 -206.789 -175.369 -141.908 -106.694 -69.9691 -32.0475 6.66509 45.7568 84.6744 122.924 159.956 195.166 227.893 257.363 282.951 304.087 320.2 330.862 335.766 334.778 327.844 314.926 296.277 272.432 244.084 211.842 176.311 138.199 98.2982 57.3515 16.0803 -24.9342 -65.191 -104.233 -141.738 -177.496 -211.318 -243.021 -272.439 -299.439 -324.023 -346.254 -366.162 -383.82 -399.434 -413.193 -425.181 -435.609 -444.673 -452.463 -459.076 -464.413 -468.08 -470.11 -470.427 -468.802 -466.27 -461.976 -456.195 -449.001 -440.02 -428.729 -415.298 -400.093 -383.315 -364.812 -344.914 -323.832 -301.568 -279.132 -256.995 -228.184 -202.007 -175.412 -148.386 -120.773 -91.8825 -61.8519 -30.5793 2.4978 37.2922 73.7643 111.931 151.309 191.587 232.315 272.663 311.735 348.723 382.853 413.348 439.566 460.882 476.874 487.282 491.958 490.076 482.49 469.484 451.3 428.413 401.439 370.828 337.197 301.313 263.738 225.193 186.31 147.677 109.906 73.4798 38.6859 5.87122 -24.8209 -53.4029 -79.8731 -104.315 -126.886 -147.79 -167.245 -185.221 -200.883 -216.484 -231.014 -244.511 -256.999 -268.472 -278.878 -288.087 -296.106 -302.904 -308.438 -312.668 -315.571 -317.098 -317.227 -316.108 -313.424 -309.227 442.459 440.219 433.184 421.619 405.76 385.839 362.164 335.035 304.921 272.501 238.158 202.381 165.779 128.779 91.7461 55.2155 19.4819 -14.9371 -47.8101 -79.009 -108.215 -135.379 -160.016 -182.584 -203.523 -222.632 -239.925 -255.523 -269.48 -281.897 -292.921 -302.642 -311.141 -318.493 -324.757 -329.994 -334.244 -337.551 -339.947 -341.452 -342.17 -342.08 -341.193 -339.486 -336.936 -333.502 -329.085 -323.597 -316.955 -309.014 -299.596 -288.543 -275.767 -261.123 -244.526 -225.897 -205.903 -183.192 -158.385 -131.561 -102.726 -72.1799 -40.0323 -6.5534 27.7765 62.6585 97.7995 132.774 167.23 200.744 232.886 263.259 291.52 317.405 340.617 360.77 377.407 389.93 397.458 401.096 399.576 392.756 380.71 363.737 342.255 316.817 287.991 256.447 222.77 187.558 151.308 114.441 77.3026 40.2052 3.42142 -32.7978 -68.1206 -102.122 -134.468 -164.96 -193.455 -219.92 -244.371 -266.849 -287.331 -305.888 -322.597 -337.428 -350.611 -362.175 -372.221 -380.876 -388.261 -394.491 -399.515 -403.356 -406.276 -408.268 -409.406 -409.668 -409.044 -407.545 -405.166 -401.881 -397.63 -392.405 -386.17 -378.845 -370.391 -360.709 -349.794 -337.695 -324.261 -309.356 -292.87 -274.792 -255.056 -233.63 -210.425 -185.279 -158.243 -129.389 -98.7502 -66.3498 -32.35 3.02828 39.5017 76.5844 113.723 150.406 186.029 220.065 251.833 280.692 305.925 326.86 342.984 353.779 359.028 358.661 352.546 340.714 323.388 300.901 273.841 242.821 208.494 171.41 132.169 91.5231 50.2526 9.2448 -30.8328 -69.6669 -106.927 -142.245 -175.447 -206.427 -235.108 -261.072 -284.98 -306.765 -326.684 -344.895 -361.579 -376.858 -390.819 -403.517 -414.924 -425.05 -433.891 -441.39 -447.495 -452.162 -456.092 -458.972 -460.825 -461.607 -461.316 -459.975 -457.659 -454.453 -450.368 -445.417 -439.628 -432.936 -425.278 -416.477 -406.436 -395.056 -382.093 -367.396 -350.937 -332.635 -312.401 -290.049 -265.389 -238.384 -209.07 -177.497 -143.817 -108.34 -71.2943 -32.9954 6.14841 45.7279 85.1685 123.976 161.604 197.431 230.782 260.843 286.983 308.589 325.074 335.992 341.016 340.055 333.011 319.831 300.769 276.406 247.483 214.62 178.412 139.598 99.0314 57.457 15.6272 -25.8758 -66.5482 -105.926 -143.697 -179.665 -213.649 -245.471 -274.961 -301.981 -326.539 -348.711 -368.532 -386.073 -401.546 -415.184 -427.039 -437.337 -446.296 -454.011 -460.593 -465.937 -469.587 -471.577 -471.859 -470.367 -467.577 -463.203 -457.382 -450.191 -441.208 -429.83 -416.242 -400.893 -384.018 -365.348 -345.286 -324.081 -301.684 -279.089 -256.88 -228.493 -202.389 -175.954 -149.129 -121.745 -93.0428 -63.2022 -32.1107 0.898891 35.6931 72.2791 110.689 150.414 191.163 232.473 273.483 313.255 350.939 385.74 416.847 443.6 465.355 481.671 492.284 497.056 495.074 487.287 473.97 455.372 431.991 404.467 373.261 339.007 302.494 264.295 225.16 185.725 146.607 108.421 71.6719 36.6337 3.6623 -27.099 -55.6874 -82.1155 -106.467 -128.919 -149.695 -169.03 -186.814 -202.541 -218.016 -232.475 -245.927 -258.391 -269.862 -280.284 -289.497 -297.528 -304.344 -309.898 -314.151 -317.076 -318.629 -318.787 -317.685 -315.029 -310.867 446.878 444.572 437.382 425.593 409.44 389.162 365.072 337.463 306.827 273.889 239.024 202.735 165.653 128.212 90.751 53.859 17.7855 -16.8831 -49.9447 -81.3028 -110.585 -137.798 -162.315 -184.963 -205.844 -224.861 -242.045 -257.534 -271.378 -283.675 -294.588 -304.208 -312.615 -319.885 -326.077 -331.251 -335.448 -338.714 -341.076 -342.546 -343.262 -343.182 -342.323 -340.659 -338.172 -334.821 -330.503 -325.123 -318.609 -310.807 -301.524 -290.593 -277.942 -263.403 -246.91 -228.395 -208.289 -185.582 -160.748 -133.836 -104.851 -74.1249 -41.7242 -7.94096 26.7072 61.9434 97.4692 132.849 167.732 201.678 234.251 265.047 293.736 320.045 343.682 364.255 381.286 394.139 401.934 405.854 404.448 397.576 385.325 368.025 346.109 320.157 290.762 258.629 224.368 188.607 151.853 114.529 76.9778 39.5105 2.3943 -34.1407 -69.759 -104.002 -136.522 -167.13 -195.682 -222.163 -246.604 -269.048 -289.479 -307.961 -324.6 -339.321 -352.411 -363.878 -373.825 -382.384 -389.682 -395.854 -400.821 -404.576 -407.446 -409.4 -410.521 -410.78 -410.161 -408.679 -406.331 -403.091 -398.886 -393.714 -387.546 -380.289 -371.909 -362.295 -351.445 -339.444 -326.112 -311.299 -294.895 -276.883 -257.21 -235.841 -212.682 -187.529 -160.44 -131.505 -100.746 -68.1552 -33.8956 1.81736 38.7101 76.2832 113.96 151.22 187.441 222.106 254.509 283.988 309.8 331.223 347.745 358.799 364.177 363.837 357.618 345.544 327.849 304.876 277.251 245.603 210.616 172.861 132.929 91.5975 49.676 8.11155 -32.3927 -71.5753 -109.119 -144.631 -177.954 -208.999 -237.653 -263.614 -287.381 -309.022 -328.802 -346.869 -363.429 -378.605 -392.482 -405.124 -416.485 -426.573 -435.386 -442.854 -448.907 -453.57 -457.375 -460.226 -462.069 -462.834 -462.522 -461.154 -458.82 -455.612 -451.543 -446.622 -440.893 -434.281 -426.733 -418.048 -408.132 -396.895 -384.066 -369.476 -353.121 -334.92 -314.784 -292.517 -267.881 -240.848 -211.451 -179.723 -145.816 -110.068 -72.6868 -33.9946 5.59695 45.6835 85.6714 125.061 163.305 199.78 233.78 264.459 291.163 313.266 330.147 341.339 346.496 345.556 338.4 324.939 305.431 280.512 250.984 217.473 180.567 141.037 99.7774 57.5492 15.1402 -26.8703 -67.9761 -107.701 -145.743 -181.921 -216.069 -248.011 -277.58 -304.617 -329.141 -351.243 -370.966 -388.385 -403.713 -417.229 -428.951 -439.115 -447.955 -455.59 -462.137 -467.489 -471.123 -473.073 -473.314 -471.952 -468.895 -464.437 -458.582 -451.409 -442.424 -430.956 -417.197 -401.694 -384.732 -365.886 -345.654 -324.332 -301.808 -279.053 -256.72 -228.709 -202.764 -176.509 -149.899 -122.762 -94.2543 -64.6253 -33.7186 -0.822145 33.977 70.6857 109.349 149.434 190.677 232.597 274.302 314.813 353.228 388.734 420.482 447.797 470.01 486.666 497.49 502.361 500.276 492.281 478.637 459.604 435.707 407.607 375.78 340.873 303.703 264.851 225.102 185.088 145.465 106.847 69.7638 34.4731 1.3415 -29.4856 -58.0748 -84.4555 -108.707 -131.03 -151.668 -170.878 -188.474 -204.237 -219.596 -233.982 -247.387 -259.828 -271.298 -281.741 -290.957 -299 -305.833 -311.41 -315.687 -318.636 -320.216 -320.404 -319.317 -316.693 -312.568 451.474 449.096 441.742 429.719 413.259 392.61 368.087 339.976 308.791 275.314 239.904 203.081 165.501 127.605 89.6951 52.4326 15.9986 -18.9237 -52.1758 -83.7039 -113.058 -140.343 -164.69 -187.431 -208.254 -227.175 -244.243 -259.618 -273.343 -285.513 -296.31 -305.825 -314.138 -321.322 -327.439 -332.549 -336.691 -339.913 -342.241 -343.671 -344.387 -344.316 -343.487 -341.867 -339.444 -336.181 -331.967 -326.697 -320.317 -312.663 -303.523 -292.719 -280.197 -265.768 -249.386 -230.977 -210.793 -188.072 -163.214 -136.213 -107.071 -76.1627 -43.4974 -9.39516 25.5819 61.1855 97.1116 132.91 168.237 202.635 235.653 266.885 296.008 322.764 346.838 367.849 385.319 398.541 406.585 410.801 409.518 402.601 390.132 372.478 350.102 323.6 293.606 260.864 226.003 189.674 152.402 114.608 76.6287 38.7816 1.32129 -35.5415 -71.4701 -105.963 -138.661 -169.387 -197.994 -224.486 -248.914 -271.321 -291.699 -310.102 -326.669 -341.269 -354.264 -365.63 -375.474 -383.932 -391.137 -397.25 -402.16 -405.814 -408.642 -410.555 -411.655 -411.91 -411.294 -409.826 -407.511 -404.318 -400.16 -395.043 -388.945 -381.757 -373.456 -363.908 -353.123 -341.224 -328.001 -313.286 -296.972 -279.025 -259.419 -238.114 -215.01 -189.853 -162.713 -133.699 -102.825 -70.0498 -35.5241 0.530175 37.8582 75.9349 114.168 152.027 188.87 224.197 257.263 287.397 313.83 335.774 352.716 364.033 369.54 369.235 362.914 350.583 332.499 308.998 280.766 248.461 212.798 174.354 133.706 91.6554 49.0464 6.90308 -34.0331 -73.564 -111.401 -147.108 -180.555 -211.663 -240.297 -266.233 -289.864 -311.335 -330.961 -348.877 -365.306 -380.376 -394.169 -406.754 -418.074 -428.124 -436.91 -444.35 -450.351 -455.011 -458.677 -461.505 -463.336 -464.086 -463.754 -462.355 -459.997 -456.786 -452.734 -447.843 -442.178 -435.65 -428.212 -419.648 -409.857 -398.774 -386.084 -371.606 -355.363 -337.269 -317.239 -295.066 -270.457 -243.4 -213.928 -182.045 -147.904 -111.882 -74.1601 -35.0637 4.98961 45.6001 86.1501 126.152 165.04 202.198 236.889 268.224 295.514 318.131 335.423 346.897 352.189 351.28 344.009 330.254 310.274 284.767 254.608 220.418 182.797 142.52 100.532 57.614 14.6041 -27.931 -69.4782 -109.553 -147.863 -184.248 -218.561 -250.621 -280.272 -307.319 -331.801 -353.827 -373.445 -390.728 -405.935 -419.316 -430.907 -440.935 -449.638 -457.187 -463.697 -469.056 -472.684 -474.599 -474.799 -473.671 -470.273 -465.715 -459.824 -452.669 -443.69 -432.125 -418.181 -402.5 -385.452 -366.416 -346.005 -324.568 -301.93 -279.019 -256.471 -228.828 -203.133 -177.077 -150.696 -123.821 -95.5193 -66.1175 -35.4281 -2.62527 32.1556 68.9817 107.907 148.361 190.12 232.682 275.118 316.406 355.587 391.835 424.254 452.156 474.849 491.859 502.902 507.874 505.683 497.475 483.488 463.999 439.561 410.859 378.383 342.795 304.939 265.403 225.016 184.395 144.248 105.178 67.7516 32.1998 -1.09525 -31.9835 -60.5671 -86.8952 -111.036 -133.218 -153.706 -172.793 -190.197 -205.972 -221.222 -235.535 -248.89 -261.307 -272.779 -283.25 -292.465 -300.521 -307.374 -312.973 -317.278 -320.251 -321.859 -322.077 -321.002 -318.416 -314.333 456.249 453.792 446.265 433.997 417.219 396.183 371.21 342.573 310.813 276.776 240.797 203.417 165.32 126.957 88.5737 50.9348 14.1157 -21.0623 -54.5043 -86.2178 -115.634 -143.019 -167.139 -189.996 -210.755 -229.574 -246.519 -261.775 -275.377 -287.412 -298.088 -307.493 -315.707 -322.804 -328.843 -333.886 -337.971 -341.149 -343.443 -344.819 -345.544 -345.483 -344.683 -343.109 -340.752 -337.582 -333.476 -328.319 -322.08 -314.584 -305.593 -294.919 -282.535 -268.221 -251.952 -233.643 -213.416 -190.662 -165.785 -138.693 -109.388 -78.2968 -45.3542 -10.918 24.398 60.383 96.7245 132.958 168.746 203.61 237.09 268.775 298.336 325.556 350.084 371.555 389.493 403.156 411.497 415.938 414.784 407.822 395.123 377.109 354.255 327.195 296.583 263.201 227.703 190.776 152.96 114.678 76.2525 38.0182 0.20404 -36.9985 -73.2519 -108.005 -140.885 -171.736 -200.397 -226.898 -251.314 -273.68 -293.995 -312.321 -328.81 -343.274 -356.172 -367.432 -377.166 -385.517 -392.624 -398.676 -403.535 -407.075 -409.86 -411.73 -412.804 -413.051 -412.441 -410.988 -408.706 -405.564 -401.457 -396.395 -390.369 -383.256 -375.035 -365.553 -354.834 -343.042 -329.931 -315.319 -299.101 -281.219 -261.68 -240.442 -217.402 -192.241 -165.046 -135.954 -104.961 -72.0045 -37.212 -0.804325 36.975 75.5755 114.38 152.847 190.329 226.343 260.1 290.919 317.996 340.483 357.874 369.472 375.109 374.848 368.426 355.826 337.335 313.272 284.416 251.442 215.078 175.888 134.479 91.6843 48.3605 5.624 -35.7445 -75.6373 -113.777 -149.678 -183.261 -214.435 -243.047 -268.924 -292.399 -313.697 -333.154 -350.915 -367.204 -382.164 -395.868 -408.393 -419.674 -429.69 -438.45 -445.864 -451.811 -456.353 -459.99 -462.805 -464.626 -465.359 -465.008 -463.571 -461.185 -457.967 -453.935 -449.07 -443.473 -437.037 -429.708 -421.267 -411.603 -400.678 -388.134 -373.771 -357.647 -339.668 -319.753 -297.681 -273.099 -246.019 -216.476 -184.43 -150.046 -113.744 -75.6742 -36.1698 4.35621 45.5086 86.6345 127.257 166.803 204.669 240.08 272.101 300.016 323.179 340.913 352.68 358.087 357.226 349.846 335.782 315.292 289.166 258.346 223.445 185.062 143.99 101.258 57.6356 14.0197 -29.0449 -71.0446 -111.47 -150.048 -186.643 -221.116 -253.292 -283.026 -310.083 -334.511 -356.452 -375.954 -393.095 -408.181 -421.436 -432.901 -442.789 -451.343 -458.792 -465.258 -470.599 -474.228 -476.109 -476.248 -475.105 -471.603 -466.971 -461.056 -453.929 -444.934 -433.261 -419.195 -403.423 -386.181 -366.944 -346.348 -324.8 -302.051 -278.975 -256.03 -228.923 -203.5 -177.656 -151.522 -124.924 -96.8384 -67.6836 -37.23 -4.49791 30.2115 67.1579 106.355 147.189 189.488 232.722 275.926 318.033 358.016 395.042 428.163 456.681 479.876 497.254 508.522 513.594 511.298 502.87 488.524 468.557 443.555 414.222 381.071 344.772 306.2 265.948 224.901 183.642 142.952 103.41 65.631 29.8096 -3.65266 -34.5959 -63.1663 -89.437 -113.456 -135.484 -155.811 -174.779 -191.975 -207.746 -222.893 -237.132 -250.437 -262.829 -274.303 -284.812 -294.021 -302.091 -308.966 -314.588 -318.921 -321.92 -323.556 -323.807 -322.739 -320.198 -316.162 461.204 458.664 450.953 438.431 421.32 399.882 374.444 345.256 312.889 278.271 241.7 203.742 165.108 126.267 87.3818 49.3655 12.131 -23.302 -56.9317 -88.8482 -118.312 -145.744 -169.741 -192.664 -213.349 -232.059 -248.872 -264.005 -277.479 -289.37 -299.921 -309.212 -317.325 -324.33 -330.289 -335.264 -339.29 -342.422 -344.684 -346 -346.733 -346.682 -345.913 -344.384 -342.096 -339.022 -335.029 -329.988 -323.898 -316.568 -307.734 -297.194 -284.956 -270.76 -254.611 -236.399 -216.157 -193.355 -168.464 -141.28 -111.803 -80.5306 -47.2974 -12.5111 23.1539 59.5339 96.3073 132.989 169.258 204.605 238.564 270.715 300.727 328.42 353.414 375.374 393.801 407.957 416.649 421.274 420.258 413.256 400.321 381.924 358.566 330.899 299.618 265.554 229.391 191.846 153.476 114.699 75.8209 37.193 -0.97967 -38.5286 -75.1225 -110.142 -143.202 -174.176 -202.879 -229.379 -253.768 -276.087 -296.332 -314.577 -330.992 -345.31 -358.109 -369.259 -378.886 -387.124 -394.124 -400.112 -404.913 -408.322 -411.087 -412.919 -413.965 -414.205 -413.603 -412.165 -409.919 -406.832 -402.777 -397.77 -391.818 -384.782 -376.646 -367.23 -356.584 -344.911 -331.919 -317.418 -301.295 -283.49 -264.018 -242.856 -219.896 -194.734 -167.477 -138.314 -107.205 -74.0532 -38.9893 -2.21813 36.0293 75.1834 114.596 153.702 191.843 228.575 263.045 294.58 322.334 345.384 363.239 375.117 380.847 380.669 374.142 361.263 342.34 317.694 288.177 254.48 217.371 177.431 135.252 91.6877 47.6112 4.25685 -37.5521 -77.7832 -116.224 -152.323 -186.029 -217.242 -245.818 -271.616 -294.93 -316.046 -335.332 -352.936 -369.084 -383.931 -397.545 -410.012 -421.262 -431.252 -439.99 -447.381 -453.279 -457.715 -461.311 -464.12 -465.933 -466.641 -466.272 -464.793 -462.371 -459.137 -455.125 -450.288 -444.743 -438.412 -431.2 -422.885 -413.348 -402.585 -390.199 -375.956 -359.956 -342.094 -322.305 -300.351 -275.806 -248.709 -219.112 -186.907 -152.263 -115.672 -77.2406 -37.3118 3.69657 45.4142 87.1437 128.413 168.629 207.225 243.384 276.114 304.67 328.393 346.59 358.667 364.215 363.404 355.909 341.519 320.491 293.724 262.224 226.595 187.428 145.535 102.018 57.6735 13.4196 -30.1986 -72.6641 -113.434 -152.276 -189.06 -223.69 -255.973 -285.804 -312.871 -337.229 -359.073 -378.452 -395.451 -410.425 -423.569 -434.919 -444.662 -453.061 -460.388 -466.818 -472.12 -475.775 -477.643 -477.711 -476.408 -473.118 -468.251 -462.303 -455.206 -446.204 -434.414 -420.202 -404.309 -386.873 -367.425 -346.631 -324.95 -302.123 -278.904 -255.607 -229.104 -203.867 -178.243 -152.366 -126.072 -98.2088 -69.3284 -39.1271 -6.49892 28.136 65.2062 104.688 145.908 188.773 232.711 276.722 319.691 360.513 398.357 432.213 461.373 485.092 502.854 514.352 519.522 517.124 508.472 493.747 473.282 447.689 417.697 383.844 346.803 307.485 266.483 224.754 182.824 141.574 101.536 63.3982 27.2978 -6.33543 -37.326 -65.8745 -92.0835 -115.968 -137.829 -157.978 -176.832 -193.813 -209.562 -224.608 -238.773 -252.026 -264.392 -275.87 -286.43 -295.624 -303.71 -310.609 -316.255 -320.617 -323.643 -325.309 -325.593 -324.529 -322.041 -318.056 466.341 463.713 455.81 443.02 425.565 403.708 377.787 348.024 315.017 279.799 242.612 204.052 164.86 125.535 86.115 47.7253 10.0374 -25.6456 -59.457 -91.6042 -121.092 -148.426 -172.594 -195.44 -216.037 -234.631 -251.302 -266.307 -279.649 -291.388 -301.808 -310.981 -318.99 -325.9 -331.776 -336.681 -340.645 -343.731 -345.964 -347.207 -347.955 -347.911 -347.175 -345.691 -343.473 -340.5 -336.627 -331.7 -325.767 -318.615 -309.945 -299.54 -287.454 -273.383 -257.36 -239.247 -219.012 -196.149 -171.256 -143.98 -114.32 -82.8699 -49.3304 -14.1766 21.8471 58.6355 95.8569 133.004 169.771 205.619 240.074 272.707 303.187 331.356 356.831 379.307 398.262 412.963 422.191 426.824 425.931 418.903 405.714 386.913 363.026 334.729 302.76 268.006 231.164 192.984 154.045 114.762 75.4116 36.3765 -2.16762 -40.0806 -77.0476 -112.35 -145.592 -176.689 -205.426 -231.914 -256.274 -278.55 -298.728 -316.889 -333.181 -347.447 -360.094 -371.126 -380.641 -388.759 -395.646 -401.569 -406.326 -409.616 -412.345 -414.129 -415.135 -415.366 -414.769 -413.338 -411.124 -408.094 -404.094 -399.137 -393.256 -386.298 -378.247 -368.89 -358.319 -346.773 -333.905 -319.526 -303.503 -285.784 -266.387 -245.312 -222.46 -197.31 -169.993 -140.766 -109.562 -76.2214 -40.8765 -3.75451 34.9677 74.6861 114.721 154.496 193.327 230.811 266.029 298.319 326.794 350.446 368.798 380.971 386.835 386.707 380.078 366.907 347.534 322.284 292.047 257.616 219.744 179.061 136.092 91.714 46.8286 2.82889 -39.4121 -79.9593 -118.724 -155.005 -188.815 -220.06 -248.605 -274.323 -297.469 -318.392 -337.501 -354.94 -370.943 -385.67 -399.191 -411.603 -422.827 -432.802 -441.524 -448.888 -454.77 -459.129 -462.676 -465.467 -467.265 -467.929 -467.526 -465.995 -463.535 -460.273 -456.271 -451.474 -445.955 -439.74 -432.642 -424.472 -415.066 -404.468 -392.253 -378.138 -362.262 -344.517 -324.856 -303.044 -278.547 -251.453 -221.819 -189.483 -154.571 -117.694 -78.8958 -38.527 2.9573 45.2492 87.5923 129.53 170.45 209.805 246.758 280.24 309.467 333.776 352.457 364.845 370.436 369.768 362.169 347.459 325.858 298.436 266.235 229.853 189.857 147.079 102.749 57.6626 12.761 -31.3895 -74.3114 -115.413 -154.514 -191.471 -226.257 -258.643 -288.595 -315.666 -339.934 -361.67 -380.914 -397.767 -412.628 -425.679 -436.918 -446.506 -454.742 -461.904 -468.26 -473.556 -477.225 -479.087 -479.081 -477.613 -474.484 -469.377 -463.462 -456.436 -447.361 -435.442 -421.15 -405.197 -387.591 -367.893 -346.874 -325.059 -302.148 -278.766 -255.187 -229.27 -204.225 -178.831 -153.222 -127.253 -99.6348 -71.0483 -41.1326 -8.60108 25.9259 63.1212 102.898 144.512 187.968 232.643 277.501 321.379 363.076 401.781 436.402 466.234 490.501 508.662 520.394 525.655 523.163 514.282 499.16 478.173 451.964 421.283 386.701 348.887 308.792 267.002 224.573 181.934 140.11 99.5515 61.049 24.6598 -9.14897 -40.1768 -68.6932 -94.8378 -118.573 -140.253 -160.208 -178.965 -195.695 -211.418 -226.364 -240.456 -253.657 -265.994 -277.479 -288.104 -297.275 -305.377 -312.304 -317.974 -322.365 -325.42 -327.115 -327.435 -326.373 -323.943 -320.015 471.662 468.944 460.836 447.768 429.954 407.662 381.243 350.878 317.195 281.358 243.531 204.347 164.573 124.761 84.7651 46.0167 7.82494 -28.0975 -62.0808 -94.4928 -123.979 -151.177 -175.576 -198.326 -218.819 -237.294 -253.814 -268.691 -281.898 -293.467 -303.749 -312.797 -320.697 -327.509 -333.299 -338.133 -342.033 -345.072 -347.282 -348.429 -349.207 -349.171 -348.469 -347.033 -344.888 -342.025 -338.279 -333.468 -327.708 -320.744 -312.25 -301.969 -290.046 -276.091 -260.196 -242.176 -221.971 -199.037 -174.153 -146.789 -116.934 -85.3186 -51.4578 -15.9176 20.4732 57.6854 95.371 132.998 170.284 206.65 241.62 274.751 305.719 334.357 360.331 383.338 402.861 418.171 428.194 432.582 431.808 424.757 411.308 392.089 367.647 338.703 306.018 270.525 232.956 194.111 154.583 114.779 74.9246 35.4655 -3.4535 -41.7428 -79.1003 -114.694 -148.119 -179.337 -208.084 -234.52 -258.808 -280.991 -301.059 -319.096 -335.262 -349.468 -361.99 -372.928 -382.332 -390.237 -396.691 -401.808 -405.201 -407.248 -409.11 -410.357 -411.022 -411.057 -410.783 -410.082 -408.85 -406.947 -404.121 -400.122 -394.665 -387.787 -379.815 -370.504 -360.004 -348.585 -335.839 -321.588 -305.663 -288.014 -268.689 -247.704 -224.981 -199.861 -172.493 -143.205 -111.914 -78.4149 -42.7812 -5.30642 33.8976 74.1823 114.841 155.28 194.805 233.061 269.052 302.131 331.364 355.647 374.525 387.003 392.911 392.933 386.208 372.749 352.921 327.013 296.04 260.885 222.196 180.692 136.885 91.6678 45.9452 1.29361 -41.3572 -82.2143 -121.316 -157.749 -191.634 -222.864 -251.304 -276.811 -299.613 -320.087 -338.709 -355.611 -370.965 -384.729 -396.559 -405.801 -411.951 -414.871 -414.848 -413.141 -411.499 -409.991 -407.313 -404.492 -402.545 -401.715 -402.039 -403.294 -405.132 -407.344 -409.601 -411.947 -414.119 -415.413 -415.832 -414.605 -411.163 -404.7 -394.224 -380.251 -364.443 -346.804 -327.292 -305.665 -281.219 -254.152 -224.5 -192.047 -156.87 -119.712 -80.5476 -39.7251 2.23592 45.1003 88.0678 130.671 172.294 212.418 250.196 284.467 314.389 339.311 358.506 371.216 376.826 376.334 368.636 353.581 331.34 303.252 270.298 233.136 192.282 148.601 103.447 57.6437 12.0869 -32.5844 -75.9967 -117.416 -156.752 -193.854 -228.738 -261.122 -291.046 -317.773 -341.291 -361.768 -378.897 -392.392 -402.452 -408.973 -412.845 -414.584 -414.221 -412.747 -409.427 -403.238 -397.249 -393.268 -392.393 -393.394 -396.699 -401.166 -405.975 -409.745 -409.864 -410.599 -410.648 -404.086 -387.978 -368.064 -346.9 -325.031 -302.119 -278.604 -254.807 -229.389 -204.558 -179.408 -154.1 -128.463 -101.099 -72.8563 -43.2334 -10.8857 23.5556 60.8899 100.979 142.989 187.065 232.511 278.26 323.096 365.703 405.313 440.733 471.266 496.106 514.681 526.652 531.99 529.418 520.307 504.765 483.234 456.383 424.98 389.642 351.024 310.121 267.502 224.358 180.967 138.558 97.448 58.5796 21.8896 -12.1005 -43.1529 -71.6246 -97.703 -121.271 -142.755 -162.493 -181.183 -197.612 -213.318 -228.162 -242.18 -255.328 -267.636 -279.127 -289.842 -298.973 -307.094 -314.048 -319.744 -324.165 -327.25 -328.972 -329.333 -328.279 -325.904 -322.039 477.168 474.359 466.036 452.675 434.486 411.743 384.811 353.82 319.419 282.949 244.453 204.624 164.24 123.947 83.3233 44.2428 5.48203 -30.6566 -64.7935 -97.5243 -126.984 -154.048 -178.692 -201.33 -221.685 -240.018 -256.379 -271.127 -284.204 -295.592 -305.732 -314.654 -322.442 -329.149 -334.824 -339.495 -343.101 -345.537 -346.447 -344.812 -342.538 -340.067 -337.636 -335.401 -333.321 -331.326 -329.375 -327.051 -324.129 -320.057 -313.896 -304.402 -292.7 -278.842 -263.094 -245.225 -225.054 -202.014 -177.157 -149.692 -119.629 -87.8611 -53.6759 -17.7281 19.0318 56.68 94.8466 132.969 170.798 207.7 243.206 276.848 308.318 337.424 363.905 387.462 407.579 423.566 435.13 438.553 437.886 430.836 417.113 397.456 372.44 342.793 309.325 273.057 234.753 195.238 155.105 114.763 74.3949 34.5264 -4.73906 -43.3897 -81.115 -116.958 -150.495 -181.738 -210.32 -236.388 -260.03 -281.024 -298.919 -313.155 -323.225 -328.689 -329.564 -325.863 -317.743 -305.943 -292.354 -278.941 -268.73 -262.272 -257.495 -254.609 -253.069 -252.57 -253.903 -257.213 -261.999 -268.129 -275.913 -284.918 -293.922 -301.993 -308.506 -314.151 -318.699 -321.146 -320.633 -316.231 -306.366 -290.177 -270.917 -250.017 -227.434 -202.349 -174.94 -145.612 -114.228 -80.5933 -44.703 -6.84196 32.8584 73.7206 115.022 156.135 196.359 235.392 272.181 306.067 336.085 361.031 380.444 393.232 399.098 399.331 392.519 378.754 358.41 331.816 300.058 264.152 224.594 182.268 137.644 91.6087 45.0375 -0.23651 -43.2365 -84.3251 -123.77 -160.257 -194.007 -224.873 -252.617 -276.695 -296.78 -312.342 -322.723 -326.567 -322.2 -307.717 -284.108 -258.016 -232.331 -208.138 -186.243 -167.5 -152.351 -141.011 -132.083 -125.214 -120.659 -119.13 -120.176 -124.346 -130.792 -139.231 -149.533 -161.77 -176.191 -191.781 -209.824 -229.91 -251.887 -273.823 -293.539 -307.407 -316.301 -320.58 -318.256 -306.457 -283.726 -256.577 -227.045 -194.567 -159.137 -121.731 -82.1988 -40.9319 1.52009 44.9761 88.5661 131.856 174.204 215.116 253.717 288.807 319.435 344.981 364.717 377.766 383.399 383.093 375.282 359.872 336.918 308.198 274.435 236.511 194.766 150.171 104.157 57.6578 11.4142 -33.7615 -77.593 -119.257 -158.716 -195.766 -230.353 -261.765 -289.448 -310.488 -322.106 -321.314 -305.406 -275.999 -244.353 -214.716 -188.214 -165.288 -145.423 -127.799 -112.359 -100.455 -92.5866 -89.3903 -90.21 -94.6892 -102.746 -113.883 -129.133 -147.56 -169.485 -200.018 -237.837 -275.074 -302.447 -315.643 -320.801 -317.296 -301.891 -278.242 -254.278 -229.396 -204.854 -179.983 -155.016 -129.722 -102.603 -74.7424 -45.4676 -13.2267 21.0412 58.5097 98.9252 141.329 186.058 232.309 278.992 324.84 368.392 408.955 445.207 476.472 501.908 520.916 533.128 538.52 535.893 526.549 510.564 488.465 460.945 428.787 392.666 353.213 311.469 267.975 224.11 179.913 136.914 95.2159 55.9859 18.9846 -15.191 -46.2503 -74.6646 -100.682 -124.066 -145.341 -164.838 -183.437 -199.638 -215.265 -229.998 -243.941 -257.031 -269.305 -280.793 -291.619 -300.698 -308.849 -315.835 -321.566 -326.014 -329.132 -330.888 -331.274 -330.04 -327.545 -323.795 482.859 479.961 471.411 457.744 439.16 415.953 388.493 356.85 321.683 284.566 245.376 204.884 163.855 123.095 81.778 42.42 2.99849 -33.3409 -67.6421 -100.743 -130.081 -156.98 -181.859 -204.4 -224.573 -242.608 -257.928 -268.812 -269.274 -251.221 -229.653 -208.777 -190.063 -173.774 -159.876 -148.334 -139.184 -132.417 -128.024 -126.057 -126.034 -127.598 -130.434 -134.684 -140.21 -146.857 -155.126 -165.463 -176.991 -190.217 -205.274 -220.141 -230.822 -233.863 -234.093 -231.272 -222.852 -204.902 -180.27 -152.675 -122.473 -90.5151 -55.9628 -19.5919 17.5435 55.6253 94.288 132.913 171.309 208.766 244.83 279.005 310.983 340.568 367.552 391.682 412.418 429.097 441.984 444.704 444.172 437.126 423.119 403.001 377.376 347.002 312.742 275.716 236.681 196.475 155.724 114.839 73.9499 33.6904 -5.88539 -44.8802 -82.9057 -118.856 -152.105 -182.326 -207.897 -226.571 -234.555 -226.692 -202.113 -173.733 -145.731 -119.744 -96.469 -76.2905 -60.0268 -48.751 -41.3438 -35.8536 -31.5649 -27.8948 -25.1 -23.3784 -22.5525 -22.4983 -22.9039 -23.9985 -25.8216 -28.4352 -32.2641 -37.7002 -45.2554 -55.707 -69.3829 -86.3619 -106.018 -127.601 -151.668 -177.53 -202.473 -220.932 -228.145 -228.887 -221.791 -204.276 -177.288 -147.925 -116.508 -82.7514 -46.6739 -8.45274 31.7683 73.2092 115.188 156.959 197.92 237.744 275.364 310.091 340.907 366.558 386.535 399.64 405.535 405.91 399.02 384.924 364.016 336.714 304.092 267.511 227.034 183.944 138.519 91.6231 44.1596 -1.60717 -44.7613 -85.8804 -125.502 -161.51 -193.467 -218.881 -233.022 -229.111 -203.782 -171.63 -139.211 -108.297 -80.0976 -56.4184 -39.882 -27.7347 -18.8193 -12.6952 -8.85628 -6.49967 -4.81539 -3.56778 -2.90472 -2.83507 -2.83969 -2.90998 -3.04914 -3.28747 -3.66459 -4.1782 -4.9096 -5.8472 -7.11568 -8.84357 -11.3605 -15.1841 -21.0285 -29.96 -44.3571 -66.8553 -95.5477 -129.213 -166.324 -201.383 -223.802 -229.118 -221.356 -196.953 -161.174 -123.651 -83.8307 -42.154 0.751426 44.8376 88.9968 132.969 176.078 217.829 257.27 293.2 324.559 350.731 371.041 384.44 389.934 389.926 382.067 366.285 342.536 313.279 278.635 239.975 197.275 151.717 104.893 57.7126 10.7998 -34.7445 -78.9254 -120.637 -159.691 -194.821 -222.318 -232.402 -213.073 -172.805 -131.407 -94.1888 -64.8014 -45.4892 -32.0131 -22.1718 -15.2013 -10.3652 -7.06327 -4.78968 -3.26276 -2.39113 -1.96226 -1.86525 -1.92381 -2.18777 -2.63834 -3.12949 -3.63567 -5.08263 -8.77627 -13.2968 -19.3664 -31.621 -56.5302 -94.8852 -137.624 -179.749 -214.2 -228.21 -230.421 -222.896 -204.906 -180.409 -155.862 -130.981 -104.151 -76.713 -47.7887 -15.6616 18.351 55.967 96.7345 139.518 184.937 232.026 279.691 326.61 371.138 412.709 449.824 481.853 507.912 527.37 539.827 545.242 542.594 533.014 516.558 493.868 465.654 432.702 395.774 355.453 312.837 268.415 223.829 178.764 135.182 92.8534 53.2753 15.9403 -18.4414 -49.4973 -77.8495 -103.791 -126.944 -147.977 -167.189 -185.673 -201.762 -217.229 -231.845 -245.715 -258.745 -270.928 -281.499 -279.016 -256.431 -235.528 -217.137 -201.687 -189.824 -181.718 -177.571 -177.312 -180.722 -188.067 -199.264 488.741 485.75 476.96 462.971 443.976 420.293 392.292 359.972 323.982 286.213 246.296 205.126 163.41 122.222 80.1132 40.5072 0.293758 -36.105 -70.4832 -104.01 -133.089 -158.622 -171.741 -150.579 -120.235 -91.7918 -65.2387 -40.2232 -21.8015 -14.4014 -10.5877 -8.14277 -6.26263 -4.71343 -3.44136 -2.38394 -1.48916 -0.72963 -0.160752 -0.014989 -0.062572 -0.142664 -0.269056 -0.454345 -0.73354 -1.14155 -1.71063 -2.63758 -4.01368 -6.09655 -9.68901 -15.9044 -27.019 -44.2293 -65.4221 -89.6889 -115.519 -138.497 -145.375 -139.182 -122.409 -93.2883 -58.3012 -21.6104 15.9836 54.5405 93.7159 132.842 171.82 209.849 246.486 281.226 313.723 343.781 371.263 395.998 417.386 434.745 448.631 451.023 450.686 443.651 429.352 408.757 382.488 351.376 316.304 278.477 238.674 197.722 156.29 114.861 73.4329 32.801 -7.01306 -46.1927 -83.8099 -116.983 -140.027 -143.581 -122.283 -94.7334 -67.1562 -43.6318 -27.9155 -17.199 -9.69944 -4.80634 -1.97723 -0.656797 -0.428131 -0.485224 -0.615586 -0.789555 -0.77872 -0.643283 -0.515045 -0.439341 -0.407217 -0.404242 -0.406926 -0.42493 -0.460072 -0.510669 -0.581291 -0.681652 -0.840821 -1.06873 -1.42039 -2.02487 -2.95315 -4.4227 -6.99043 -11.4983 -19.7189 -34.7056 -57.3897 -83.5878 -111.073 -134.989 -142.306 -135.431 -116.508 -84.8265 -48.5561 -10.1176 30.578 72.5849 115.251 157.652 199.36 240.025 278.49 314.113 345.769 372.162 392.725 406.17 412.078 412.602 405.701 391.234 369.754 341.658 308.168 270.981 229.51 185.663 139.391 91.7085 43.3293 -2.94857 -45.9805 -86.2615 -122.168 -143.078 -135.592 -107.059 -75.7202 -48.3207 -29.7247 -17.531 -9.07092 -3.68072 -0.887183 -0.292302 -0.275961 -0.236636 -0.182753 -0.133881 -0.0934093 -0.0582394 -0.0263486 0.00496208 0.0244255 0.0210844 0.0148917 0.00543921 -0.00344332 -0.013186 -0.0248011 -0.0373963 -0.051646 -0.063997 -0.0774892 -0.0988291 -0.134028 -0.194003 -0.284527 -0.434285 -0.71424 -1.21561 -2.19557 -4.29394 -8.87448 -19.0458 -41.4232 -74.9224 -111.805 -139.171 -139.712 -121.567 -85.2331 -43.1683 0.0384952 44.7356 89.4182 134.057 177.891 220.495 260.805 297.592 329.706 356.494 377.399 391.228 396.489 396.83 389.004 372.741 348.154 318.43 282.821 243.435 199.736 153.154 105.559 57.7562 10.1477 -35.5168 -79.4014 -117.711 -142.262 -134.955 -101.324 -64.6722 -35.1895 -18.0933 -8.01969 -2.61945 -0.6013 -0.379546 -0.263818 -0.141823 -0.0630333 -0.0271946 -0.0121975 -0.00359933 0.00298382 0.00533831 0.00810568 0.00975596 0.0120145 0.0123758 0.00651368 -0.00567609 -0.0328153 -0.0989127 -0.482154 -0.791001 -0.700167 -0.799105 -1.34721 -2.66862 -5.54469 -11.7165 -26.1974 -53.6802 -85.4283 -115.877 -138.486 -143.766 -138.981 -127.325 -105.635 -78.6482 -50.1614 -18.1903 15.4962 53.2792 94.4266 137.56 183.698 231.66 280.348 328.405 373.938 416.575 454.586 487.411 514.12 534.048 546.753 552.142 549.525 539.708 522.749 499.444 470.51 436.725 398.966 357.746 314.223 268.811 223.525 177.518 133.37 90.3304 50.4078 12.7252 -21.8083 -52.7264 -81.0015 -106.915 -129.8 -150.402 -168.09 -178.024 -161.548 -137.701 -113.149 -89.1636 -65.9032 -42.6196 -20.8088 -7.29418 -4.63074 -2.94788 -1.845 -1.21139 -0.74819 -0.425048 -0.204315 -0.010415 -0.0283 -0.105494 -0.16765 494.84 491.725 482.674 468.375 448.937 424.764 396.211 363.192 326.31 287.892 247.213 205.365 162.888 121.257 78.2617 38.6914 -2.42239 -38.738 -70.8378 -74.6917 -53.1534 -32.3562 -13.3421 -6.09026 -3.34022 -1.20979 0.141992 0.410649 0.37105 0.317682 0.276857 0.235718 0.198888 0.165444 0.135063 0.107493 0.083339 0.0594965 0.0368875 0.0253729 0.0179132 0.00758469 -0.00323693 -0.0140097 -0.0236441 -0.0324707 -0.0400301 -0.0469432 -0.0558023 -0.0670437 -0.0877013 -0.132075 -0.21066 -0.3687 -0.737666 -1.63237 -3.80952 -9.51823 -22.5635 -40.0022 -57.3742 -63.382 -48.5753 -22.3089 14.3193 53.3747 93.0486 132.752 172.344 210.952 248.169 283.504 316.554 347.066 375.026 400.399 422.473 440.49 454.31 457.528 457.422 450.418 435.801 414.705 387.776 355.867 319.87 281.137 240.519 198.733 156.594 114.619 72.6772 31.8536 -7.09939 -41.3196 -59.8006 -52.7753 -37.6054 -21.751 -11.2794 -4.8586 -1.31498 -0.0108244 0.0471153 0.0515273 0.0433615 0.040903 0.0434596 0.0491814 0.0487386 0.0436054 0.035388 0.0215783 0.0078073 0.00751355 0.01362 0.0192854 0.0220051 0.0237688 0.0252343 0.0256773 0.0255896 0.0251174 0.0248307 0.0242772 0.0225004 0.0207899 0.0171905 0.00937863 0.000109412 -0.0148786 -0.0443432 -0.0957672 -0.197939 -0.412069 -0.886054 -1.98036 -4.57263 -11.0431 -25.1704 -43.1426 -58.532 -58.8568 -41.4439 -11.1848 29.476 72.0401 115.282 158.293 200.714 242.237 281.554 318.057 350.603 377.788 398.952 412.776 418.22 419.277 412.459 397.516 375.436 346.441 312.08 274.238 231.607 187.085 139.898 91.3919 42.2623 -3.54078 -40.9587 -59.2683 -49.6711 -32.4547 -16.9719 -7.54442 -2.29002 -0.198656 -0.0133868 0.00157469 0.0192913 0.0286659 0.0403348 0.0443531 0.0399845 0.0403665 0.0419073 0.0427119 0.0435441 0.0439606 0.0447873 0.0458915 0.0453312 0.0422494 0.0402298 0.039161 0.0384637 0.036597 0.0342753 0.0327116 0.0332439 0.0356677 0.0378437 0.0390865 0.0380064 0.0355175 0.0338375 0.0343924 0.0338059 0.0303142 0.0234087 0.00404465 -0.0382436 -0.142233 -0.433692 -1.35583 -4.44785 -14.4085 -35.514 -56.7521 -58.9595 -37.4886 -0.410349 44.8449 89.9209 135.249 179.652 223.147 264.33 301.986 334.857 362.242 383.726 398.053 402.944 403.769 396.026 379.112 353.646 323.547 286.84 246.722 201.969 154.323 105.875 57.5841 9.99788 -31.9737 -57.9178 -51.922 -33.5926 -16.4326 -6.43692 -1.51074 -0.127142 -0.0699581 -0.035675 -0.00118239 0.0236819 0.0447923 0.0652155 0.0740612 0.0696345 0.0596751 0.0521532 0.0489979 0.0478664 0.045728 0.0439602 0.0434337 0.045311 0.0470148 0.0438392 0.0349097 0.0217957 0.0220426 -0.00343831 -0.0386948 -0.0168679 0.0127729 0.0112816 -0.0124181 -0.0698746 -0.168925 -0.393688 -0.919131 -2.06938 -4.95841 -11.8263 -25.2437 -40.3461 -54.5283 -63.3754 -57.8173 -43.6412 -19.8172 12.4917 50.4003 91.8941 135.451 182.35 231.226 280.975 330.231 376.782 420.555 459.493 493.15 520.535 540.954 553.915 559.219 556.694 546.637 529.135 505.195 475.516 440.853 402.238 360.095 315.635 269.163 223.205 176.125 131.449 87.6784 47.6177 9.60662 -24.9948 -54.7671 -75.8225 -71.4377 -55.8953 -40.2988 -24.1561 -10.1535 -4.93935 -2.80222 -1.4605 -0.40875 0.354191 0.631732 0.631698 0.602809 0.546286 0.51516 0.465681 0.404983 0.33182 0.24575 0.144685 0.053476 -0.0218589 -0.0931244 -0.147387 501.17 497.87 488.549 474.007 454.048 429.361 400.261 366.517 328.656 289.618 248.12 205.5 162.249 120.435 76.5866 36.832 6.14158 2.66748 1.51528 1.25881 1.15616 0.980536 0.871057 0.756199 0.660776 0.57119 0.481548 0.422534 0.365869 0.31051 0.269009 0.228106 0.191824 0.159161 0.129688 0.103071 0.0797928 0.0567843 0.0365791 0.0252586 0.0171413 0.00736519 -0.0027573 -0.012772 -0.0212476 -0.0278042 -0.0327052 -0.0348557 -0.0346901 -0.0336688 -0.0329193 -0.0343573 -0.0357517 -0.0337242 -0.031069 -0.0280671 -0.0292541 -0.0251075 -0.0107725 0.0127443 0.0958437 0.342882 1.5928 6.96894 25.2148 55.1891 92.2949 132.496 172.831 212.057 249.867 285.818 319.481 350.443 378.841 404.863 427.655 446.329 460.163 464.183 464.356 457.402 442.459 420.817 393.211 360.461 323.388 283.594 242.063 199.376 156.603 114.331 72.8562 36.9521 15.0113 4.49149 0.443879 0.151372 0.110819 0.106559 0.0811758 0.0857438 0.0665151 0.0793438 0.0718311 0.0658659 0.0581498 0.0534373 0.0520179 0.0536832 0.0510862 0.0460046 0.0398518 0.0330809 0.0287007 0.0275876 0.0281941 0.0289085 0.0294794 0.0305491 0.0317533 0.0324171 0.033 0.0334234 0.0342832 0.0353438 0.0362374 0.0379624 0.0396254 0.041089 0.0439211 0.0469701 0.0501683 0.0534343 0.0554786 0.0592822 0.0637593 0.068656 0.0741925 0.077082 0.084943 0.1293 0.269872 0.73027 2.72582 11.4359 36.8548 72.6979 115.506 159.113 202.177 244.479 284.655 321.996 355.433 383.422 405.208 419.436 424.401 425.978 419.239 403.7 380.975 350.97 315.76 277.141 233.174 187.918 139.887 91.1931 45.3218 16.5337 4.80383 0.593558 0.284242 0.174669 0.123697 0.106275 0.108502 0.0911329 0.0673807 0.0654725 0.0573874 0.0493688 0.0505974 0.0502828 0.0457696 0.0448875 0.044786 0.0444047 0.0440987 0.0437608 0.0441143 0.0450423 0.0440457 0.0409363 0.038874 0.038071 0.0375929 0.0359564 0.0337901 0.0325248 0.0334733 0.0361066 0.0384831 0.0399018 0.0390728 0.0373813 0.0372496 0.0404888 0.0448962 0.0482508 0.0517556 0.0549535 0.0610652 0.0716454 0.0810777 0.0863454 0.0848052 0.0854802 0.102743 0.20292 0.690567 3.43462 17.2828 49.6701 90.6817 136.583 181.448 225.848 267.861 306.434 340.023 367.976 390.02 404.864 409.289 410.673 403.055 385.302 358.893 328.714 290.537 249.766 203.882 155.21 106.506 59.7854 23.4523 7.55171 1.19409 0.397197 0.205711 0.148537 0.132934 0.123092 0.114859 0.0873545 0.0553248 0.0299109 0.035794 0.0554729 0.0730812 0.0785509 0.0703983 0.0590655 0.0514782 0.0487061 0.0475738 0.0451671 0.0429324 0.0422495 0.0440953 0.046012 0.0431949 0.0326116 0.0189066 0.017021 0.0236013 0.0268581 0.0388057 0.0458272 0.044661 0.0439403 0.0439477 0.0395714 0.0344747 0.0330989 0.0337693 0.0405647 0.047795 0.0597407 0.09604 0.140481 0.305206 0.790289 2.16875 7.57077 23.1682 51.2008 89.038 133.027 180.844 230.612 281.561 332.118 379.681 424.655 464.543 499.07 527.156 548.09 561.321 566.472 564.105 553.804 535.715 511.118 480.676 445.081 405.595 362.52 317.071 269.415 222.826 174.695 129.717 85.2323 45.7178 14.3164 4.76472 1.48786 0.910107 0.885109 0.81433 0.751621 0.776941 0.751332 0.718136 0.694592 0.673895 0.652941 0.630189 0.618502 0.606839 0.569947 0.521924 0.490245 0.442671 0.384708 0.315212 0.234021 0.140455 0.0555182 -0.0162135 -0.0819359 -0.129521 507.737 504.196 494.585 479.901 459.303 434.085 404.442 369.964 330.991 291.287 249.014 205.96 161.735 117.115 72.612 35.7356 10.8074 4.40295 1.58122 1.30612 1.11503 0.953929 0.826742 0.719498 0.628535 0.540953 0.460043 0.403127 0.349148 0.296778 0.256558 0.217643 0.183052 0.151925 0.123849 0.0985371 0.0763801 0.0546099 0.0358253 0.0244845 0.0160772 0.00697491 -0.00250014 -0.0117361 -0.0196448 -0.0259264 -0.0306407 -0.0326041 -0.0334047 -0.0328494 -0.0321938 -0.0335924 -0.0343617 -0.0325848 -0.0293513 -0.0273066 -0.0268547 -0.0224736 -0.0104956 0.00807661 0.0841129 0.325045 1.43684 6.62159 24.4908 54.6456 92.0829 132.321 173.254 213.109 251.552 288.122 322.465 353.909 382.727 409.384 432.914 452.277 466.306 470.906 471.478 464.606 449.323 427.174 398.813 365.155 326.888 285.961 243.392 199.751 156.243 113.424 71.3908 35.6382 14.2804 4.24091 0.431375 0.151912 0.113689 0.0991151 0.0833 0.0821815 0.0671131 0.074713 0.0688452 0.0632981 0.0564447 0.0518612 0.0502644 0.05117 0.048777 0.0440783 0.0385771 0.0322192 0.0275674 0.0265173 0.0270635 0.0277973 0.0285009 0.0296538 0.0307768 0.0314224 0.0320352 0.0324321 0.0331783 0.0341734 0.0350044 0.0366007 0.0381452 0.0396806 0.0424482 0.0452617 0.0483384 0.0515805 0.0535489 0.0571314 0.0611577 0.0648465 0.0695402 0.0732167 0.0817158 0.124227 0.254447 0.704445 2.63173 11.0402 36.2079 71.995 115.528 159.889 203.715 246.702 287.658 325.895 360.295 389.092 411.497 426.178 431.192 432.873 426.246 410.003 386.678 355.498 319.509 279.903 234.574 188.768 140.031 90.8171 44.5936 16.0483 4.5806 0.60519 0.303666 0.180084 0.125721 0.108397 0.104854 0.0879176 0.0673642 0.0629565 0.0555818 0.0485631 0.0489258 0.0481892 0.0447847 0.0438161 0.0435946 0.0431532 0.0428677 0.0427415 0.0430091 0.0436581 0.0422856 0.0393811 0.0373064 0.0365883 0.0360579 0.0346551 0.0325996 0.0314121 0.032401 0.0349095 0.037237 0.0385711 0.0376351 0.0358639 0.0356518 0.0388921 0.0435657 0.0466366 0.0492655 0.0523426 0.0588189 0.0698402 0.0793048 0.0839207 0.0831776 0.0828749 0.0997151 0.192522 0.67263 3.37476 17.0793 49.7163 91.2024 137.758 183.192 228.472 271.306 310.82 345.141 373.615 396.196 411.663 417.076 417.764 410.295 391.557 363.939 334.094 294.003 252.94 206.013 156.447 107.043 59.7357 23.2313 7.44851 1.2606 0.389695 0.225369 0.151551 0.132618 0.120993 0.111865 0.0844992 0.0522304 0.0278367 0.0321632 0.0533213 0.0713689 0.0768693 0.0684121 0.0573668 0.0499457 0.0473908 0.0463608 0.0438533 0.0413699 0.040499 0.0423066 0.0442026 0.0417063 0.0312805 0.0148199 0.0135699 0.0216522 0.0273563 0.0375041 0.0438258 0.0434784 0.0429924 0.0424008 0.038303 0.0336718 0.0326732 0.0335034 0.0395285 0.0464912 0.0578222 0.0889178 0.127653 0.274331 0.729633 1.92657 6.58781 21.9431 49.2194 86.8217 130.403 179.006 229.488 281.774 333.98 382.627 428.902 469.751 505.18 533.985 555.457 568.988 573.973 571.765 561.218 542.482 517.211 486.004 449.419 409.034 365.019 318.47 269.757 222.718 173.429 127.211 80.8775 43.3514 15.4583 6.23988 1.88657 0.945927 0.853693 0.786134 0.736303 0.734733 0.707203 0.682674 0.660584 0.64083 0.620007 0.599869 0.588001 0.575189 0.541197 0.497371 0.46517 0.419791 0.364734 0.299013 0.222706 0.136135 0.0568275 -0.0110887 -0.0716415 -0.113636 514.565 510.626 500.795 486.08 464.696 438.954 408.739 373.467 333.291 293.133 249.986 196.281 119.836 45.6505 12.554 2.85866 1.87934 1.53154 1.34345 1.18217 1.02845 0.898239 0.782551 0.68316 0.597197 0.514076 0.439152 0.383388 0.331955 0.282756 0.243995 0.207097 0.174207 0.144615 0.117923 0.0938833 0.0728047 0.0522661 0.0349628 0.0237959 0.0154124 0.00654476 -0.00241231 -0.0110633 -0.0185255 -0.0243628 -0.0286523 -0.0307037 -0.0312435 -0.0308999 -0.0303863 -0.0317647 -0.0322316 -0.030962 -0.0288552 -0.0272142 -0.0276676 -0.0259507 -0.0232863 -0.0223363 -0.020729 -0.00782707 0.0401537 0.261445 1.06893 5.62597 27.8631 81.2674 145.833 204.161 251.223 290.373 325.426 357.386 386.636 413.957 438.283 458.378 472.738 477.991 479.008 472.246 456.502 433.662 404.428 369.747 330.262 288.07 242.143 185.188 114.438 51.8348 18.1116 3.31674 0.355795 0.220017 0.125965 0.0845692 0.0797599 0.0843993 0.0769206 0.075935 0.0653925 0.0701752 0.0654863 0.0604156 0.0543231 0.0500921 0.0483745 0.0485548 0.0462384 0.0419269 0.036931 0.0310127 0.0265944 0.0253413 0.0257858 0.0265687 0.0273508 0.0286089 0.0295646 0.0301845 0.0307495 0.0311384 0.0318117 0.0327134 0.0335235 0.035018 0.0364193 0.0379956 0.0406829 0.0432958 0.0462587 0.0494076 0.051288 0.0544728 0.0579601 0.0605316 0.0636102 0.0643984 0.0623507 0.0643514 0.0693177 0.0936044 0.188848 0.565479 2.56499 13.5851 57.6197 124.263 191.21 245.684 290.337 329.62 364.862 394.679 417.745 433.012 438.903 440.049 433.532 416.433 392.446 359.998 323.094 282.333 232.217 168.967 90.1117 32.0823 7.15413 0.806186 0.423442 0.225388 0.128499 0.108425 0.104053 0.0974533 0.0965396 0.0838898 0.0664562 0.0606845 0.0537118 0.0474033 0.0470182 0.046282 0.0435702 0.0427076 0.0425056 0.0418062 0.0413232 0.0409671 0.0410392 0.041369 0.0402426 0.0376348 0.0356621 0.0349291 0.0343237 0.0330695 0.0311955 0.0301664 0.0310859 0.0333493 0.0355153 0.0367585 0.0360474 0.0343012 0.0339764 0.0371793 0.0420231 0.0448087 0.0467752 0.049675 0.0563868 0.0675408 0.0769017 0.0801918 0.0768591 0.0704824 0.0647378 0.0630096 0.0822381 0.208352 0.858039 4.8973 28.7172 90.8176 162.49 224.579 274.071 314.953 350.024 378.992 402.096 418.293 424.765 424.637 417.634 397.609 368.755 339.302 297.08 254.186 195.661 116.665 47.232 13.9761 2.01181 0.649939 0.31557 0.145171 0.114942 0.118752 0.118547 0.115269 0.107102 0.0815419 0.0486189 0.0254829 0.0285722 0.0505625 0.0696914 0.0751701 0.0663143 0.0555406 0.0484748 0.0458825 0.0447453 0.0421251 0.039595 0.0386803 0.0403581 0.0423111 0.0400693 0.0299233 0.0122708 0.0108124 0.0183562 0.0277716 0.0347448 0.0402232 0.0407885 0.0411794 0.0409594 0.0369066 0.031662 0.029514 0.0293994 0.0316201 0.0314975 0.0309587 0.0323979 0.0304349 0.0332781 0.0558495 0.0776999 0.236455 0.876503 3.89077 21.0083 75.1766 151.726 223.716 281.864 335.593 385.221 433.208 475.101 511.503 541.028 563.055 576.93 581.753 579.686 568.893 549.436 523.482 491.519 453.816 412.511 367.897 320.147 269.853 216.601 139.557 62.7078 17.917 4.02636 1.17939 0.971218 0.850557 0.819852 0.777668 0.731355 0.694307 0.693254 0.670557 0.647843 0.627261 0.608621 0.58876 0.569832 0.557477 0.543836 0.512519 0.472433 0.440354 0.397168 0.344995 0.283008 0.211443 0.131373 0.0574366 -0.00652533 -0.062252 -0.0995066 521.603 517.094 507.186 492.546 470.201 443.885 413.196 377.317 335.343 270.521 157.21 46.1544 12.7859 2.87135 2.08088 1.78355 1.5761 1.37203 1.24053 1.10751 0.970097 0.851289 0.742275 0.647734 0.565997 0.487448 0.418037 0.3638 0.314864 0.268639 0.231458 0.19653 0.16533 0.137273 0.111975 0.0892177 0.0692193 0.0498839 0.0338346 0.0229589 0.0146454 0.00621365 -0.00220392 -0.0102922 -0.0172781 -0.0228413 -0.0268828 -0.0288566 -0.0295191 -0.0293857 -0.028951 -0.0301841 -0.0304811 -0.029152 -0.0272483 -0.0260504 -0.0262429 -0.0249718 -0.0232904 -0.0236953 -0.0261888 -0.0254647 -0.0241519 -0.0142315 0.00719035 0.150595 0.864892 4.34575 23.1277 88.983 177.071 259.762 316.951 359.254 390.44 418.346 443.617 464.616 479.541 485.393 486.607 479.718 463.52 439.974 409.682 373.011 326.388 253.607 151.95 62.0527 18.8779 2.09793 0.483796 0.239446 0.0972313 0.0701635 0.0782572 0.0688818 0.0715195 0.0774894 0.0727711 0.0712981 0.0633875 0.0661913 0.0622695 0.0575523 0.0519071 0.0479237 0.046115 0.0458289 0.0436073 0.0396756 0.035048 0.0295999 0.025537 0.0242168 0.0245162 0.0252317 0.0259625 0.0272215 0.0280618 0.028666 0.0291945 0.0295504 0.0301964 0.0309964 0.0318161 0.0332196 0.0345698 0.0361496 0.0386867 0.0412419 0.0440499 0.046927 0.0488951 0.0518769 0.0550418 0.0575254 0.060616 0.0613359 0.0584014 0.0575925 0.0550715 0.0543884 0.0573114 0.0653286 0.139206 0.508213 2.52378 14.5121 71.0016 166.722 259.056 322.849 367.929 399.78 423.5 439.487 444.41 446.577 440.409 422.361 397.508 361.965 314.618 241.499 132.386 50.9934 12.6075 1.57369 0.69475 0.262252 0.137425 0.117406 0.0912672 0.0923732 0.0965123 0.0929941 0.0916713 0.0806589 0.0652854 0.0585835 0.0516744 0.0459333 0.0450312 0.0443058 0.0420623 0.041039 0.0406601 0.0399529 0.0394426 0.0390386 0.0390328 0.0388928 0.0380977 0.0357815 0.0339381 0.0331625 0.0325196 0.0313557 0.0296896 0.0288185 0.0296494 0.0316173 0.0335678 0.0346575 0.0340394 0.0324957 0.0322994 0.0353126 0.0399099 0.0426892 0.0443773 0.0470145 0.0539691 0.0651093 0.0742804 0.0772142 0.0733218 0.066986 0.0600557 0.0523144 0.0445822 0.0449189 0.0673943 0.208321 1.01657 6.13275 38.1226 127.244 227.958 303.037 351.817 383.564 407.136 424.155 430.205 430.812 424.536 402.913 371.065 338.751 269.317 178.278 78.5883 24.2688 3.85675 1.08988 0.442936 0.173724 0.11749 0.0920663 0.0955215 0.109974 0.113673 0.111528 0.102196 0.0779202 0.0455068 0.0232584 0.025754 0.0467758 0.0668788 0.0720562 0.0633489 0.0533924 0.0468249 0.0442099 0.0428831 0.0402871 0.0376429 0.0367026 0.0383296 0.0403319 0.0384363 0.0286381 0.0113093 0.00803791 0.0162164 0.0273906 0.0329498 0.03787 0.0390634 0.0398335 0.0397471 0.0356897 0.0301357 0.0283998 0.0288748 0.0305283 0.0301741 0.0286612 0.0273035 0.0239244 0.0187947 0.0148179 0.00292152 -0.0023638 0.0110333 0.0737033 0.531242 3.0007 23.3893 122.891 244.12 331.113 387.543 437.215 480.118 517.923 548.276 570.871 585.174 589.885 587.854 576.841 556.557 529.886 497.187 458.337 416.291 370.557 312.009 206.839 85.2127 22.3029 2.5221 1.20976 0.970915 0.894784 0.829878 0.775477 0.763241 0.732276 0.692733 0.660277 0.655362 0.634827 0.613577 0.594076 0.57631 0.55736 0.539817 0.527151 0.513031 0.484026 0.447308 0.41579 0.374798 0.325491 0.267182 0.200237 0.126233 0.0574247 -0.00252891 -0.0537475 -0.0869375 528.861 523.322 513.723 499.238 475.851 449.176 414.608 323.333 167.979 40.6493 11.9785 2.94818 2.42066 2.05023 1.75743 1.59503 1.45304 1.28599 1.16682 1.04335 0.915503 0.804679 0.702019 0.612557 0.534994 0.460974 0.396277 0.344171 0.297735 0.254335 0.218861 0.185875 0.156373 0.129859 0.105957 0.0844845 0.0655768 0.0474627 0.0325579 0.0220516 0.013891 0.00585052 -0.0020592 -0.00958121 -0.0161258 -0.021282 -0.0250731 -0.0270116 -0.0277026 -0.0277692 -0.0274241 -0.0284939 -0.0287935 -0.0275182 -0.0258733 -0.0249171 -0.0251179 -0.0237345 -0.0229519 -0.0235055 -0.0257438 -0.0250181 -0.025664 -0.0270451 -0.0316618 -0.0272393 -0.00243116 0.0877751 0.577142 3.12931 16.2328 70.5272 169.921 270.011 349.644 403.97 443.751 469.523 485.295 490.629 493.154 486.507 468.966 441.18 395.656 306.025 179.747 72.1969 20.0532 1.66781 0.602951 0.261324 0.0825057 0.0576939 0.0504976 0.0514226 0.0667205 0.0638138 0.06713 0.0721483 0.069034 0.0671904 0.0608691 0.0621508 0.0587194 0.0543536 0.0492609 0.045586 0.0437304 0.043108 0.0409701 0.0373738 0.0331075 0.0281323 0.0244459 0.0230903 0.023232 0.02384 0.0245217 0.0256927 0.0264393 0.0270308 0.0275437 0.0278907 0.0285101 0.0292146 0.0300342 0.0313152 0.032547 0.0341184 0.0364297 0.0388052 0.0414775 0.0440697 0.0460853 0.0488923 0.0516899 0.054136 0.0570789 0.0578227 0.0551241 0.0536804 0.0514599 0.0500537 0.0482906 0.0400587 0.0356227 0.0409945 0.0943218 0.430106 2.43945 14.5712 75.7923 186.119 294.309 368.887 412.19 437.967 447.484 448.252 441.106 414.342 367.21 270.679 155.146 67.1062 18.6481 2.40008 1.16574 0.423727 0.135924 0.0927005 0.0884904 0.0960007 0.0843989 0.0877429 0.0919511 0.0894367 0.0871695 0.0770442 0.0633057 0.0561615 0.0493813 0.0441351 0.0428119 0.0419157 0.0399683 0.039056 0.038673 0.0379702 0.037435 0.0370268 0.0369477 0.0367677 0.0359229 0.0338714 0.0321679 0.0313739 0.0306828 0.0296171 0.0281278 0.0273932 0.0281417 0.0298295 0.0315803 0.0325186 0.0319982 0.0307566 0.0305862 0.0333673 0.0375514 0.0401039 0.041733 0.0444662 0.0513748 0.0619843 0.0705937 0.073151 0.069434 0.0635916 0.0567691 0.0488915 0.0409305 0.0354514 0.0297958 0.0240841 0.0368735 0.183234 1.16274 7.29356 44.2028 146.765 255.475 336.722 384.708 415.322 428.883 426.833 418.226 380.061 293.229 212.143 97.4336 35.3509 8.20422 2.10119 0.825103 0.227073 0.109065 0.0823896 0.0843687 0.0826363 0.0912525 0.104866 0.108818 0.106755 0.0970352 0.0738498 0.0432263 0.0216777 0.02383 0.043254 0.0624313 0.0673052 0.0597663 0.0509398 0.0449076 0.0423452 0.040725 0.0381979 0.0356386 0.0347138 0.0362837 0.0385699 0.0366088 0.0271344 0.0108299 0.0057989 0.0146763 0.0257444 0.0312778 0.0358491 0.0374668 0.0382788 0.038286 0.0344162 0.0287195 0.0271193 0.0282054 0.0294885 0.0296084 0.0281783 0.0265398 0.0232769 0.0180611 0.0128216 0.000606818 -0.010701 -0.023148 -0.0394701 -0.0454597 -0.0208707 0.355764 5.22277 46.0932 198.429 351.492 436.649 485.161 524.303 555.548 578.747 593.677 598.453 596.261 585.046 563.78 536.551 503.09 461.915 408.418 285.361 120.908 30.5397 2.54788 1.34612 1.00923 0.858974 0.81104 0.80837 0.772106 0.731613 0.718408 0.690329 0.654652 0.62584 0.617951 0.599136 0.579363 0.560974 0.544072 0.526128 0.509813 0.496934 0.48261 0.455733 0.422024 0.391413 0.352632 0.306182 0.251503 0.189058 0.120746 0.0568532 0.000904919 -0.0460961 -0.0757597 535.328 529.411 520.49 504.856 424.313 283.662 125.877 32.8608 7.75261 2.67188 2.45266 2.14286 1.98401 1.82156 1.62537 1.48888 1.36047 1.21019 1.09636 0.980206 0.861185 0.757825 0.661443 0.577116 0.503803 0.434409 0.374079 0.324414 0.28051 0.239873 0.206193 0.175151 0.147357 0.122391 0.0998932 0.0797043 0.0618895 0.0449756 0.03113 0.0210646 0.0131339 0.00551976 -0.0018861 -0.00889556 -0.0149956 -0.019805 -0.0233689 -0.0252418 -0.0259752 -0.0261422 -0.0259235 -0.0267746 -0.0271593 -0.0259543 -0.0245258 -0.0236154 -0.0238592 -0.022534 -0.0224073 -0.0228003 -0.0246417 -0.0240749 -0.0245641 -0.0265258 -0.0317351 -0.0328161 -0.0356343 -0.0385689 -0.0292301 0.0291623 0.329165 1.80219 8.39882 33.7031 104.636 207.636 310.695 393.748 442.147 462.278 465.159 445.571 386.071 292.032 171.452 73.4836 19.8699 1.53363 0.664755 0.267486 0.078257 0.0528288 0.0311061 0.0363894 0.041412 0.0469455 0.060708 0.0602614 0.0632397 0.067207 0.0649828 0.0629666 0.05789 0.0581495 0.0551037 0.0510903 0.0465199 0.0431424 0.0412711 0.0404147 0.0383562 0.0350591 0.0311088 0.0266166 0.0232765 0.0219226 0.0219442 0.0224438 0.0230414 0.0241282 0.0247895 0.0253828 0.0258754 0.0261885 0.0267766 0.0274027 0.0282016 0.0293611 0.0304904 0.0320395 0.0341071 0.0363309 0.0388428 0.0411575 0.0431714 0.0457666 0.0481965 0.0505068 0.0531245 0.0536911 0.0512784 0.0495297 0.04816 0.047069 0.0443467 0.0362211 0.0295178 0.0213297 0.00718266 0.00154001 0.0513018 0.416298 2.44728 12.2005 51.1207 141.057 227.22 288.826 317.096 311.287 291.096 215.828 132.381 60.98 18.5065 3.26291 1.89278 0.590169 0.155758 0.0675755 0.0452858 0.0637169 0.077915 0.0883671 0.0815833 0.0843015 0.0873687 0.0851681 0.0822912 0.0730236 0.0607915 0.0534489 0.0469641 0.0420937 0.0404771 0.0394827 0.0378055 0.0369721 0.0365694 0.0358869 0.0353466 0.0349438 0.0348016 0.034592 0.0336865 0.0318985 0.030332 0.0295289 0.0288092 0.0278282 0.0265014 0.0258837 0.026539 0.0280052 0.0295425 0.0303571 0.0299349 0.0289294 0.0288552 0.0314008 0.0351023 0.0374884 0.0391932 0.0420199 0.0487281 0.058554 0.0663142 0.0685422 0.0650341 0.0593729 0.0529138 0.0456123 0.0384854 0.0328414 0.0266503 0.0166625 -0.00123438 -0.0226735 -0.00904855 0.223809 1.43278 6.92173 28.6393 85.7446 162.736 225.819 257.622 250.156 228.472 153.37 78.4342 34.5967 11.183 3.06943 1.61862 0.474805 0.130482 0.0504852 0.0590798 0.0663417 0.0769375 0.0790232 0.087461 0.0992886 0.103256 0.101298 0.0915092 0.0696881 0.0416651 0.0211114 0.022795 0.0403723 0.0576196 0.0622078 0.0559366 0.0482504 0.0427845 0.0402262 0.0384278 0.036015 0.0336261 0.0327084 0.034138 0.0360818 0.0343527 0.0254873 0.0105397 0.00455398 0.0131034 0.023587 0.0294677 0.0336222 0.0354883 0.0363393 0.0364318 0.0328699 0.0273278 0.0257442 0.0272243 0.0288272 0.0288472 0.0274773 0.0258813 0.0226127 0.0175558 0.0121294 0.000791101 -0.0104494 -0.0227747 -0.0410862 -0.0629701 -0.0917099 -0.106437 -0.0121366 0.612632 9.68787 97.955 286.531 443.673 521.712 563.41 586.785 602.417 606.676 604.936 593.401 570.584 540.324 486.755 342.632 166.315 43.5932 3.76253 1.36827 0.975871 0.834671 0.800833 0.767185 0.750307 0.753374 0.723635 0.690022 0.674673 0.64898 0.616632 0.590684 0.580827 0.563431 0.545035 0.527759 0.511753 0.494929 0.47971 0.466843 0.452523 0.427624 0.396643 0.367203 0.33065 0.287049 0.235949 0.177888 0.11494 0.0557745 0.00378924 -0.0392577 -0.0658265 271.847 255.176 195.442 92.6356 26.9291 12.4576 2.69814 2.64352 2.19256 2.03888 2.0086 1.91199 1.81211 1.68625 1.51903 1.39286 1.27153 1.13493 1.02653 0.917439 0.806989 0.710699 0.62064 0.541505 0.4725 0.407701 0.351528 0.30454 0.263196 0.225261 0.193457 0.164355 0.138278 0.114867 0.0937775 0.0748735 0.058161 0.0424313 0.0295814 0.0200077 0.0123682 0.00518598 -0.00172864 -0.00822455 -0.0138959 -0.0183539 -0.0216912 -0.0234883 -0.0242592 -0.0245225 -0.0243977 -0.0250545 -0.0255194 -0.0245006 -0.0232079 -0.022415 -0.0225182 -0.0214863 -0.0213573 -0.0219697 -0.0230038 -0.0231287 -0.0241696 -0.0257431 -0.0304145 -0.0318177 -0.035176 -0.0408232 -0.0476861 -0.059193 -0.064079 -0.0381242 0.087256 0.616067 2.49802 8.85066 28.1847 70.6134 125.491 162.987 169.666 143.24 93.2206 46.4018 11.8539 1.44968 0.834727 0.226861 0.0147358 0.0206591 0.0185067 0.0285513 0.0233334 0.0317402 0.0382592 0.0443851 0.0557572 0.0566051 0.0592391 0.0623929 0.0607648 0.0587685 0.0546333 0.0542277 0.051482 0.0478137 0.0437109 0.0406126 0.0387617 0.0377428 0.0357723 0.0327472 0.0291053 0.0250559 0.0220294 0.020708 0.0206341 0.0210275 0.0215841 0.022542 0.0231627 0.0237143 0.024177 0.0244733 0.0250143 0.0255962 0.0263428 0.0273975 0.0284655 0.0299179 0.0317995 0.0338918 0.0361801 0.0382911 0.0402701 0.0425988 0.0447904 0.0469313 0.0491704 0.0496673 0.0475729 0.0458519 0.0444091 0.043101 0.0401347 0.0331412 0.0271879 0.018644 0.0028105 -0.0148425 -0.0341677 -0.0395666 0.0216679 0.410099 1.81546 8.22133 20.0964 38.2726 53.0924 51.6825 45.4298 25.5147 8.25621 3.99372 2.08372 0.738247 0.203241 0.0291675 -0.0115207 0.0103274 0.0308962 0.0566105 0.0727648 0.0825581 0.0784418 0.0803318 0.0824681 0.0804871 0.0772793 0.0688176 0.0579014 0.0506059 0.0444416 0.0398925 0.0381018 0.0370473 0.0355722 0.0347961 0.0343624 0.033708 0.0331805 0.0327884 0.0326057 0.0323593 0.0314872 0.0298935 0.0284852 0.0276699 0.026965 0.0260354 0.0248749 0.0243462 0.0249135 0.0261851 0.0275008 0.0282172 0.0278853 0.0270351 0.0271227 0.0293945 0.0326712 0.0349521 0.0367116 0.0395683 0.0459479 0.054853 0.0618095 0.0637872 0.0606032 0.055398 0.0492606 0.0423644 0.0354217 0.0301216 0.0243179 0.014972 -0.00379324 -0.0319146 -0.0578987 -0.0676199 -0.0591102 0.0179552 0.465087 2.68903 8.42371 17.8036 27.5994 27.5236 23.3685 13.0285 5.47047 2.63068 1.95123 0.601562 0.194474 0.041638 0.0248896 0.0268392 0.0497366 0.0614704 0.0718338 0.0750431 0.0829907 0.0933851 0.0972487 0.0953186 0.0856907 0.0654294 0.0399115 0.0214481 0.0224391 0.0378977 0.0529663 0.0571974 0.0520326 0.0454199 0.0404987 0.0379875 0.0362355 0.0337809 0.0315994 0.0308444 0.0319272 0.0336366 0.0318788 0.0237836 0.0103721 0.00447145 0.0121378 0.0216175 0.0274607 0.0312974 0.0333131 0.0342805 0.0342925 0.0309621 0.0258406 0.0243911 0.0256931 0.0274303 0.0280083 0.0266878 0.0251741 0.0220682 0.0171702 0.0117349 0.00120439 -0.00988803 -0.021796 -0.03944 -0.0601374 -0.0888637 -0.11302 -0.143165 -0.179267 -0.0335902 1.71741 17.1777 126.32 311.964 469.858 555.489 596.385 610.192 604.191 574.943 480.243 335.337 163.134 48.4038 6.11068 1.42364 0.876568 0.717007 0.720699 0.715546 0.728281 0.711943 0.70199 0.702868 0.676711 0.647985 0.631389 0.607713 0.578431 0.554932 0.543876 0.527734 0.510652 0.494481 0.479393 0.46366 0.44946 0.436815 0.422713 0.399675 0.371205 0.343139 0.308832 0.268071 0.220501 0.16671 0.108842 0.0542199 0.00614358 -0.0331865 -0.0570092 -0.137136 1.22973 1.75082 1.41614 1.31831 1.46728 1.72497 1.91691 1.8513 1.8362 1.82873 1.76464 1.67822 1.56493 1.41589 1.29817 1.18365 1.0592 0.956823 0.854876 0.752782 0.663328 0.579593 0.505702 0.441082 0.380846 0.328683 0.284537 0.245795 0.210515 0.180653 0.153492 0.129143 0.107292 0.0876152 0.0699952 0.0543916 0.0398255 0.0279287 0.0188859 0.0115966 0.0048567 -0.00157198 -0.00758039 -0.0128299 -0.0169566 -0.0200635 -0.0217836 -0.0225638 -0.0228941 -0.0228568 -0.0232375 -0.0237957 -0.0230459 -0.021903 -0.0211759 -0.0212541 -0.0204998 -0.0201318 -0.0213454 -0.021971 -0.0224218 -0.0239216 -0.0251527 -0.0293829 -0.0306228 -0.0339213 -0.0394496 -0.0467856 -0.0587354 -0.0704896 -0.0798218 -0.0907526 -0.0929446 -0.095024 -0.107305 -0.129427 -0.143835 -0.147028 0.431078 2.06194 1.22873 0.927699 1.01591 0.54615 0.068621 -0.0350019 -0.034888 -0.0380385 -0.00394231 0.00952456 0.0227871 0.0218449 0.0294516 0.0356971 0.0416821 0.0511348 0.0527521 0.0551405 0.0576971 0.0564939 0.054616 0.0511917 0.0503674 0.0478667 0.0445287 0.0408469 0.03801 0.0362126 0.0350895 0.0332178 0.0304446 0.027127 0.023462 0.0207302 0.0194543 0.0193104 0.0196122 0.0201255 0.0209675 0.0215301 0.0220476 0.0224595 0.0227701 0.0232548 0.0237998 0.0244867 0.0254445 0.0264712 0.0277799 0.0295306 0.0314818 0.0335197 0.0355131 0.0373819 0.0394742 0.0415099 0.043472 0.045398 0.0458273 0.043919 0.0423019 0.0409219 0.0396634 0.0366272 0.0303121 0.024211 0.0158173 0.00140621 -0.0156979 -0.0368962 -0.0586113 -0.0813916 -0.102716 -0.124432 -0.149875 -0.137789 -0.155192 -0.161704 0.0375207 0.158474 0.975479 0.608153 0.376361 0.122836 -0.000260185 -0.0420907 -0.0363891 -0.02857 0.00191166 0.0270147 0.0518482 0.0677723 0.0768794 0.0745189 0.0758939 0.0773688 0.0755473 0.0721827 0.0644664 0.0547004 0.0476304 0.0418069 0.0375709 0.0356882 0.0345959 0.0332651 0.0325343 0.0320724 0.0314632 0.0309668 0.0305869 0.0303915 0.0301043 0.0292886 0.0278483 0.0265957 0.0257936 0.025105 0.0242428 0.0232286 0.0227802 0.0232702 0.0243592 0.0254987 0.0260986 0.0258432 0.0251723 0.025383 0.0274233 0.0303092 0.0324567 0.0342249 0.0370129 0.0429399 0.0507877 0.0569152 0.0586644 0.0558666 0.0512257 0.0455839 0.039206 0.0326919 0.0276661 0.0221426 0.0130457 -0.00527443 -0.0329927 -0.059538 -0.0720187 -0.0757407 -0.0779159 -0.0842726 -0.105695 -0.133491 -0.158168 -0.172018 -0.121505 -0.0342267 0.535272 0.477886 0.21787 0.144539 -0.00542463 -0.0352312 -0.0186511 0.0115255 0.024106 0.0452683 0.0570759 0.0666566 0.0706707 0.0781757 0.0872786 0.0908422 0.0888652 0.07958 0.0610671 0.0381795 0.0218327 0.0222971 0.0355546 0.0485821 0.0523493 0.0481607 0.0424884 0.0380768 0.0356402 0.0338133 0.0315736 0.0296035 0.0289295 0.0297207 0.0311518 0.0293645 0.0220244 0.0100866 0.00464542 0.0114363 0.0198004 0.025386 0.0289873 0.0310158 0.032105 0.0320526 0.0290392 0.0243897 0.0229454 0.024124 0.0259805 0.0265066 0.0252971 0.0237241 0.0211213 0.0163876 0.0110202 0.00130826 -0.0091166 -0.020793 -0.0374665 -0.0566506 -0.0829398 -0.106712 -0.138244 -0.184838 -0.202649 -0.21398 -0.0807407 1.39313 10.3428 51.7037 148.668 232.833 257.026 233.609 159.306 77.8112 33.2913 3.89025 0.984815 0.77619 0.609759 0.589587 0.584364 0.6416 0.657045 0.674294 0.662276 0.655043 0.653424 0.630262 0.60538 0.588367 0.566512 0.539972 0.51869 0.50702 0.492027 0.476209 0.461138 0.446988 0.432345 0.419102 0.406845 0.393138 0.371868 0.345738 0.319205 0.287161 0.249232 0.205143 0.155513 0.102478 0.0522505 0.00799286 -0.0278336 -0.049193 -0.0770594 0.226843 0.799581 1.08901 1.09532 1.28131 1.51906 1.69451 1.68674 1.69088 1.68502 1.62936 1.55061 1.44678 1.31285 1.2035 1.09637 0.983093 0.887191 0.792471 0.698525 0.615762 0.538323 0.469717 0.409552 0.35384 0.305589 0.264404 0.228307 0.195646 0.167784 0.142566 0.119953 0.0996675 0.0814081 0.0650718 0.0505842 0.0371614 0.0261861 0.0177054 0.0108151 0.00452697 -0.00142173 -0.00695232 -0.0117895 -0.0155923 -0.0184758 -0.020106 -0.0208927 -0.0212768 -0.0213319 -0.0216116 -0.0220128 -0.0214518 -0.0205632 -0.0199215 -0.0198214 -0.0195464 -0.0193549 -0.0200121 -0.0211734 -0.021877 -0.0228405 -0.0246828 -0.0282311 -0.029612 -0.0326248 -0.0381171 -0.0453833 -0.0561927 -0.0669401 -0.0764524 -0.0887697 -0.097862 -0.105682 -0.11519 -0.127514 -0.137888 -0.140344 -0.141654 -0.14726 -0.0968052 -0.0677092 -0.0799457 -0.0985307 -0.0995745 -0.0879693 -0.0540421 -0.0398038 -0.00747819 0.00757286 0.0196765 0.0205847 0.0272473 0.0330909 0.0387954 0.0467577 0.0488287 0.0510241 0.0531111 0.0522284 0.0505015 0.0476321 0.0465613 0.0442709 0.0412391 0.0379428 0.035349 0.0336265 0.0324559 0.0306869 0.0281538 0.0251397 0.0218337 0.0193751 0.0181592 0.0179671 0.0181949 0.0186567 0.0193971 0.0199038 0.0203864 0.0207642 0.0210515 0.0214967 0.0219781 0.0226135 0.0234713 0.0244073 0.0256263 0.0271903 0.0289639 0.0308328 0.0326298 0.0343524 0.036268 0.0380815 0.0398632 0.0415437 0.0418318 0.0401637 0.0385949 0.0372815 0.0359827 0.0329315 0.0273323 0.0215967 0.013647 0.000428002 -0.0161193 -0.0358497 -0.0565459 -0.0797458 -0.102533 -0.12674 -0.150161 -0.159306 -0.163802 -0.16106 -0.152381 -0.154026 -0.110328 -0.115234 -0.110276 -0.107169 -0.0787729 -0.0619271 -0.0406239 -0.0283708 -0.000628924 0.0239634 0.0472211 0.0624877 0.0709803 0.0699556 0.0710381 0.0720293 0.07034 0.0669695 0.0599612 0.0512368 0.0445214 0.0390745 0.0351417 0.0332331 0.0321047 0.0309032 0.0302146 0.029742 0.0291848 0.0287268 0.0283639 0.0281646 0.0278435 0.0270447 0.025806 0.0246696 0.0238998 0.0232294 0.0224318 0.0215446 0.0211554 0.0215848 0.0225064 0.0234844 0.0239869 0.023792 0.0232907 0.0235385 0.0254059 0.0279201 0.029905 0.0316322 0.0342894 0.0396982 0.046574 0.0518822 0.0533062 0.0508142 0.0467061 0.0415228 0.0354955 0.0295368 0.0247864 0.0195041 0.011061 -0.00594736 -0.0319684 -0.0584016 -0.0716869 -0.0744609 -0.0748009 -0.0806337 -0.100623 -0.129863 -0.156311 -0.170111 -0.170015 -0.158178 -0.126186 -0.0961423 -0.107113 -0.10081 -0.0886369 -0.0580048 -0.0237372 0.00814621 0.0224929 0.0411632 0.0526612 0.0615561 0.0660742 0.0730254 0.0809288 0.0841267 0.0821317 0.0733395 0.0566216 0.0363518 0.0219408 0.0220831 0.0332263 0.0444052 0.0476953 0.0443442 0.0394911 0.0355509 0.0332079 0.0314026 0.0292986 0.027541 0.026964 0.0278126 0.0286573 0.026822 0.020276 0.00978798 0.00490989 0.0108156 0.0181402 0.0233355 0.026711 0.0286928 0.0298575 0.0297419 0.0271045 0.0229258 0.0214307 0.0224577 0.0240668 0.0247722 0.0236487 0.0220402 0.0196741 0.015136 0.0099688 0.000972694 -0.00874466 -0.0199773 -0.0355323 -0.05346 -0.0778886 -0.101037 -0.128988 -0.170818 -0.194053 -0.235929 -0.272519 -0.251015 -0.1649 0.251304 1.25906 3.16006 5.00279 3.87236 0.506156 0.625937 0.355645 0.371457 0.348844 0.417655 0.455855 0.510219 0.529729 0.586783 0.605804 0.623245 0.613568 0.60798 0.604574 0.584075 0.562329 0.545504 0.525358 0.501362 0.482056 0.470219 0.45631 0.441714 0.427737 0.41454 0.400982 0.388663 0.376925 0.363762 0.344188 0.320265 0.295385 0.26562 0.230515 0.189859 0.144287 0.0958697 0.0498956 0.00936527 -0.0231478 -0.042275 -0.0303005 0.237326 0.715644 0.971857 1.01183 1.17773 1.38458 1.53839 1.54726 1.55308 1.54698 1.49678 1.42471 1.32973 1.20974 1.10883 1.00954 0.906694 0.817619 0.730191 0.644197 0.568025 0.496844 0.433558 0.377912 0.326687 0.282284 0.244147 0.210736 0.180666 0.154853 0.131581 0.110712 0.0919973 0.075159 0.0601059 0.0467404 0.0344414 0.0243655 0.0164749 0.0100221 0.00419468 -0.00127798 -0.0063434 -0.0107762 -0.014264 -0.0169221 -0.0184591 -0.0192367 -0.0196596 -0.0198101 -0.0201856 -0.0201615 -0.0198467 -0.0190511 -0.018709 -0.0184936 -0.0185409 -0.019016 -0.0185189 -0.019974 -0.0206759 -0.0216038 -0.0240997 -0.0270171 -0.0291589 -0.0316084 -0.0368687 -0.0440658 -0.0536829 -0.0630928 -0.0717637 -0.0828742 -0.0917441 -0.0996535 -0.108943 -0.120101 -0.128961 -0.131487 -0.132775 -0.136592 -0.122398 -0.112447 -0.115405 -0.118712 -0.100997 -0.083425 -0.0523709 -0.0360562 -0.00854243 0.00610276 0.0170296 0.0191366 0.0250623 0.0304928 0.0358199 0.042586 0.0448869 0.0468984 0.0486301 0.0479732 0.0464121 0.0439857 0.0427853 0.0406888 0.0379507 0.0350069 0.0326502 0.0310163 0.0298369 0.0281782 0.0258738 0.0231455 0.0201768 0.0179723 0.0168283 0.016604 0.0167687 0.0171837 0.0178264 0.0182859 0.0187223 0.0190647 0.0193318 0.0197295 0.0201596 0.0207372 0.0214981 0.0223459 0.0234803 0.0248474 0.0264539 0.0281618 0.0297194 0.031314 0.0330097 0.0345813 0.0361351 0.0375462 0.0377168 0.0362321 0.0347422 0.0334481 0.0320346 0.0290299 0.0238716 0.0184081 0.0108787 -0.00135418 -0.0167616 -0.0350482 -0.0543065 -0.0758717 -0.0977157 -0.121304 -0.142593 -0.153239 -0.157809 -0.15383 -0.150053 -0.152357 -0.152073 -0.14888 -0.13776 -0.114507 -0.0788129 -0.0587252 -0.0397234 -0.0270436 -0.00220265 0.0211809 0.0426485 0.0570705 0.0649522 0.064892 0.0658089 0.0664624 0.0649059 0.0616422 0.0553211 0.0475469 0.0412782 0.0362334 0.0326012 0.0307156 0.0295861 0.0285023 0.0278605 0.0273973 0.0268873 0.0264698 0.0261303 0.0259288 0.025604 0.0248636 0.0237658 0.0227458 0.0220115 0.0213702 0.0206357 0.0198602 0.0195165 0.0198772 0.0206591 0.0214907 0.0219092 0.0217699 0.0213899 0.0216638 0.0233318 0.0255221 0.0273341 0.028998 0.0314931 0.0364158 0.042437 0.047025 0.048267 0.0460903 0.0422847 0.0373657 0.0317351 0.0261604 0.0216065 0.0164678 0.00828459 -0.00742398 -0.0310693 -0.05535 -0.0686113 -0.0710658 -0.0709898 -0.0765159 -0.0949416 -0.123265 -0.15114 -0.165137 -0.165741 -0.156992 -0.148976 -0.13376 -0.124902 -0.116848 -0.0909473 -0.056726 -0.0231593 0.00592735 0.0207457 0.0373711 0.048299 0.0564702 0.0611577 0.0675464 0.0744135 0.0772681 0.0753048 0.0671079 0.0521368 0.0342717 0.0217683 0.0215887 0.0308768 0.0403732 0.0432541 0.0405875 0.036455 0.0329449 0.0307255 0.0289387 0.0270356 0.0254471 0.0249417 0.025663 0.0261875 0.0243702 0.0185492 0.00945105 0.00520158 0.0102608 0.0165441 0.021317 0.0244316 0.0263405 0.0275155 0.0273812 0.025009 0.0212749 0.01988 0.0207651 0.0221934 0.022987 0.0219188 0.0204164 0.0181453 0.0138708 0.00897827 0.000646425 -0.00839993 -0.0190992 -0.0336282 -0.0500528 -0.0727596 -0.0946368 -0.120393 -0.157584 -0.18149 -0.218396 -0.253955 -0.258874 -0.272087 -0.262428 -0.236197 -0.219002 -0.180351 -0.124957 -0.00412791 0.077452 0.102645 0.196002 0.255298 0.342682 0.403262 0.462175 0.488524 0.534313 0.551926 0.572673 0.565263 0.560767 0.55621 0.538084 0.51896 0.502746 0.484231 0.462608 0.445103 0.43344 0.420578 0.407171 0.394284 0.382055 0.369572 0.358161 0.347048 0.334555 0.31662 0.2948 0.271666 0.244196 0.211905 0.174636 0.133028 0.0890403 0.0471905 0.0102916 -0.0190772 -0.0361619 0.00533979 0.239329 0.640298 0.871647 0.933951 1.07909 1.25964 1.39469 1.41161 1.41677 1.41058 1.36543 1.29996 1.21375 1.1066 1.0142 0.923037 0.830078 0.748087 0.668001 0.589789 0.520148 0.45518 0.39724 0.346167 0.299393 0.258798 0.22377 0.193084 0.165587 0.141862 0.120542 0.101424 0.0842845 0.0688706 0.0551004 0.0428622 0.0316691 0.0224775 0.0152002 0.00921693 0.00385894 -0.00114073 -0.00575041 -0.00978624 -0.0129661 -0.0154017 -0.0168379 -0.0175977 -0.0180451 -0.0182882 -0.0187817 -0.018547 -0.0183906 -0.0175734 -0.0173799 -0.0173745 -0.0173265 -0.0184051 -0.0179195 -0.018844 -0.0194432 -0.0208663 -0.0235403 -0.0262524 -0.0283401 -0.0308345 -0.035221 -0.0422638 -0.050904 -0.059089 -0.0669997 -0.0767928 -0.0849328 -0.0924057 -0.100878 -0.110893 -0.118883 -0.121724 -0.123175 -0.125066 -0.114225 -0.106155 -0.107114 -0.10806 -0.0922608 -0.0753871 -0.0489374 -0.0325366 -0.0090134 0.00488741 0.01478 0.0176078 0.0229003 0.0278754 0.0327756 0.0385653 0.0409171 0.0427563 0.044218 0.0437159 0.0423315 0.040268 0.0390248 0.0371168 0.0346629 0.0320439 0.0299172 0.0283886 0.0272308 0.0256913 0.0236056 0.0211502 0.0185042 0.016534 0.0154655 0.0152269 0.0153363 0.0157058 0.0162569 0.0166688 0.0170562 0.0173603 0.0176125 0.0179538 0.0183379 0.0188531 0.0195212 0.0202875 0.0213053 0.0225276 0.02396 0.0254814 0.0268802 0.0283165 0.0297931 0.0311953 0.0325337 0.0336694 0.03372 0.0323527 0.0309516 0.0296331 0.0281441 0.025249 0.0205879 0.0153424 0.008216 -0.00302981 -0.0172985 -0.0341337 -0.0519198 -0.0715915 -0.0921281 -0.113512 -0.133263 -0.143674 -0.148262 -0.143368 -0.141692 -0.14395 -0.144564 -0.140618 -0.128602 -0.105129 -0.0732823 -0.0540343 -0.037817 -0.0250619 -0.00294703 0.0187227 0.0382226 0.0515694 0.0588817 0.0595069 0.0603583 0.0607977 0.0593654 0.0562701 0.0505999 0.0437011 0.0379332 0.0333085 0.0299833 0.0281619 0.0270661 0.0260873 0.025492 0.0250484 0.0245828 0.0242032 0.0238881 0.0236906 0.0233658 0.0227046 0.0217172 0.0208037 0.020111 0.0195036 0.0188281 0.0181502 0.0178472 0.0181438 0.0188028 0.0195055 0.0198506 0.0197504 0.0194635 0.019762 0.0212279 0.0231394 0.0247746 0.0263479 0.0286772 0.0330769 0.0382542 0.0421859 0.0431771 0.0412008 0.0377129 0.0331985 0.028002 0.0229261 0.0185451 0.0136426 0.00587337 -0.008746 -0.0303027 -0.0520081 -0.0647226 -0.0667456 -0.0665104 -0.071586 -0.0885677 -0.115998 -0.144397 -0.158998 -0.159911 -0.152078 -0.14179 -0.129963 -0.118995 -0.109469 -0.0846344 -0.0527832 -0.0218875 0.00425753 0.0188878 0.0336909 0.0438598 0.0513347 0.0560493 0.0619094 0.0679189 0.0704289 0.0685111 0.0609648 0.0476368 0.0319912 0.0211773 0.0207397 0.0285012 0.0364589 0.0390045 0.0368925 0.0333745 0.0302724 0.0281979 0.0264573 0.0247662 0.0233671 0.0228781 0.0234678 0.0237534 0.0219992 0.0168599 0.0090067 0.00539078 0.00967397 0.0150377 0.0193468 0.0222064 0.0240243 0.0251196 0.0249968 0.0229552 0.0196152 0.0182222 0.0190199 0.0206414 0.0210879 0.0200748 0.0186724 0.0165572 0.0126177 0.00800504 0.000376662 -0.00798637 -0.0180824 -0.031528 -0.0467658 -0.0674244 -0.0880352 -0.11136 -0.14467 -0.167958 -0.201187 -0.231659 -0.237436 -0.248614 -0.241238 -0.219601 -0.201616 -0.170949 -0.11946 -0.0221981 0.0499642 0.0777497 0.16239 0.22516 0.306547 0.366 0.417863 0.448394 0.48431 0.500012 0.522747 0.517235 0.513454 0.508237 0.492241 0.475369 0.460056 0.443124 0.423721 0.407893 0.396661 0.384829 0.372586 0.360783 0.349534 0.338119 0.327613 0.317209 0.305489 0.289152 0.269354 0.248037 0.222875 0.193387 0.159465 0.12173 0.0820099 0.0441678 0.0108045 -0.0155698 -0.030768 0.0311714 0.233928 0.570205 0.77769 0.852663 0.980209 1.13761 1.25509 1.27658 1.28161 1.2755 1.2352 1.17621 1.0986 1.00352 0.919688 0.836791 0.753303 0.678581 0.605877 0.535299 0.472154 0.413355 0.360774 0.314322 0.271966 0.235155 0.203283 0.175354 0.150419 0.128815 0.109451 0.092091 0.0765322 0.0625457 0.0500582 0.0389519 0.0288486 0.020531 0.0138874 0.00839923 0.00351866 -0.00101043 -0.00517238 -0.00881782 -0.0116954 -0.0139089 -0.0152396 -0.0159724 -0.0164314 -0.0167706 -0.0173542 -0.0171635 -0.0168552 -0.0162352 -0.0160677 -0.0161662 -0.0162787 -0.0174745 -0.0173616 -0.0180889 -0.0185894 -0.0200787 -0.0224155 -0.0252057 -0.0267693 -0.0297491 -0.0335737 -0.0400411 -0.0478989 -0.0551647 -0.0623889 -0.0709802 -0.0779819 -0.0846235 -0.0920978 -0.10082 -0.10776 -0.110473 -0.111947 -0.112876 -0.10402 -0.0972237 -0.0971676 -0.096686 -0.0830994 -0.0676068 -0.0449384 -0.0291512 -0.00894962 0.00392064 0.0128104 0.0160011 0.0207267 0.0252353 0.0296874 0.0346519 0.0369551 0.038638 0.039866 0.0394883 0.0382773 0.0365158 0.0352932 0.033566 0.031377 0.0290639 0.0271543 0.0257448 0.0246363 0.0232203 0.0213465 0.0191525 0.0168005 0.0150538 0.0140704 0.0138287 0.0138962 0.0142212 0.0146884 0.0150547 0.0153929 0.0156622 0.0158795 0.0161704 0.0164986 0.0169423 0.0175201 0.0181941 0.0190895 0.020168 0.0214128 0.0227487 0.0239898 0.0252261 0.0265174 0.0277211 0.028847 0.0297583 0.0296842 0.0284372 0.027084 0.0257677 0.0242358 0.0214595 0.0171649 0.0122702 0.00552446 -0.00470439 -0.0177001 -0.0328638 -0.0490359 -0.0668713 -0.085524 -0.104671 -0.12232 -0.131967 -0.13629 -0.131982 -0.130953 -0.132552 -0.132985 -0.128689 -0.116812 -0.0949179 -0.067092 -0.0492474 -0.0350578 -0.0227067 -0.00315468 0.0165214 0.0339739 0.0461699 0.0529075 0.0540059 0.0548349 0.0551148 0.0537921 0.050908 0.0458503 0.0397579 0.0345181 0.0303248 0.0273051 0.0255845 0.0245331 0.0236545 0.0231037 0.0226836 0.0222638 0.0219213 0.0216316 0.0214385 0.0211171 0.0205112 0.0196521 0.0188395 0.0181957 0.0176261 0.0170083 0.0164122 0.0161398 0.0163817 0.0169277 0.0175145 0.017795 0.0177172 0.0175029 0.0178064 0.0190762 0.0207425 0.0221996 0.0236578 0.0257846 0.0296623 0.0340703 0.0373586 0.038065 0.036201 0.0329563 0.0288477 0.0240602 0.0193726 0.0152689 0.0106386 0.0033725 -0.00994952 -0.0291105 -0.0485622 -0.0603001 -0.062108 -0.0619404 -0.0665111 -0.0819133 -0.108036 -0.136187 -0.151182 -0.152001 -0.145059 -0.13238 -0.121205 -0.110457 -0.0996593 -0.077004 -0.0482096 -0.0203555 0.00293581 0.0169129 0.0300969 0.0394514 0.0462945 0.0509219 0.0562393 0.0614591 0.0636247 0.0617786 0.0549029 0.0431246 0.029509 0.0202111 0.0196076 0.0260349 0.0326723 0.034916 0.0332481 0.0302704 0.0275432 0.0256345 0.0240273 0.0224612 0.0212373 0.0207971 0.0212524 0.0213476 0.0196712 0.0151887 0.00841742 0.00543938 0.00898556 0.0135647 0.0174153 0.0199982 0.0217111 0.0227228 0.0226075 0.0208143 0.0178675 0.016563 0.0172093 0.0184563 0.0190848 0.0182058 0.0169233 0.0149103 0.0112678 0.00697417 -3.96541e-05 -0.00773756 -0.0171726 -0.0295317 -0.0434969 -0.0624924 -0.0815631 -0.102938 -0.132518 -0.154391 -0.18424 -0.210386 -0.216078 -0.224665 -0.217305 -0.198941 -0.182231 -0.154481 -0.108614 -0.0231604 0.0408337 0.0713696 0.145289 0.202516 0.275632 0.329181 0.375591 0.406557 0.437301 0.451716 0.473504 0.469426 0.466094 0.460585 0.446511 0.43162 0.417405 0.402028 0.384715 0.370472 0.359866 0.349061 0.337962 0.327238 0.316982 0.306625 0.297028 0.287404 0.276544 0.261772 0.243933 0.224488 0.201645 0.174951 0.144335 0.110392 0.0747979 0.0408533 0.0109377 -0.0125734 -0.0260141 0.0485164 0.222534 0.504078 0.688254 0.768349 0.880719 1.01661 1.1187 1.14246 1.14744 1.14155 1.10592 1.05332 0.984169 0.900484 0.825269 0.750752 0.676413 0.609098 0.5438 0.480731 0.424062 0.371387 0.324174 0.282383 0.244417 0.211376 0.182695 0.157553 0.135171 0.115716 0.0983144 0.0827181 0.0687439 0.0561872 0.0449823 0.0350115 0.0259837 0.018533 0.0125395 0.00756761 0.00317258 -0.000887341 -0.00460815 -0.00786907 -0.0104492 -0.0124416 -0.0136618 -0.0143589 -0.0148154 -0.0151858 -0.0157802 -0.0156146 -0.0152967 -0.014818 -0.0147971 -0.0150447 -0.0155015 -0.0165398 -0.0163922 -0.016926 -0.0176416 -0.019156 -0.0207566 -0.0235816 -0.0255174 -0.0285662 -0.0323528 -0.0377593 -0.0448791 -0.05137 -0.0577719 -0.0651661 -0.0711248 -0.0768048 -0.0832003 -0.0905998 -0.0964367 -0.0988217 -0.100142 -0.100449 -0.0932773 -0.087545 -0.0868878 -0.0855695 -0.0738805 -0.0599211 -0.040498 -0.0258461 -0.00855261 0.00312096 0.0110377 0.0143465 0.018555 0.0225974 0.0265911 0.0308399 0.033019 0.0345398 0.0355772 0.0352893 0.0342432 0.0327378 0.031576 0.0300281 0.0280932 0.0260664 0.0243678 0.0230863 0.0220474 0.0207615 0.0190944 0.0171526 0.0150733 0.0135423 0.0126503 0.0124142 0.0124502 0.0127332 0.0131238 0.0134459 0.0137318 0.0139619 0.0141441 0.0143811 0.0146596 0.0150314 0.0155185 0.0161081 0.0168755 0.017812 0.0188855 0.0200175 0.0210834 0.0221296 0.0232129 0.0242105 0.0251086 0.0257858 0.0256054 0.0244502 0.0231326 0.021822 0.0202563 0.017625 0.0136619 0.00905234 0.00277342 -0.0064751 -0.0181866 -0.0317207 -0.0461881 -0.0620411 -0.078538 -0.0953066 -0.110598 -0.119135 -0.122886 -0.119455 -0.118582 -0.119554 -0.119819 -0.115489 -0.104354 -0.0845036 -0.0604936 -0.044382 -0.0318304 -0.0201884 -0.00301687 0.0145562 0.0299572 0.0409488 0.0470502 0.0484274 0.0492193 0.0493816 0.0481792 0.0455396 0.0410672 0.0357234 0.031033 0.0272755 0.0245637 0.0229701 0.0219843 0.0212005 0.0206997 0.0203118 0.0199368 0.019632 0.0193713 0.0191873 0.0188867 0.0183435 0.0175892 0.0168711 0.0162793 0.0157526 0.015191 0.0146658 0.0144193 0.0146105 0.0150552 0.0155355 0.0157552 0.0156894 0.0155218 0.0158174 0.0169025 0.0183477 0.0196289 0.0209413 0.0228448 0.0262198 0.0299467 0.0326281 0.0330842 0.031315 0.0282992 0.024533 0.0201912 0.015872 0.0120447 0.00768939 0.000801534 -0.0112385 -0.0280397 -0.0450136 -0.0553987 -0.0570673 -0.0570551 -0.0612611 -0.0752527 -0.0997108 -0.126803 -0.14163 -0.142155 -0.135263 -0.121747 -0.11074 -0.100397 -0.0892837 -0.068911 -0.0433598 -0.0186444 0.00191021 0.0149358 0.0266416 0.0351333 0.0413288 0.0457017 0.05047 0.0549664 0.0568326 0.0551064 0.0489254 0.0386007 0.0268513 0.0188836 0.0182262 0.0234809 0.0289884 0.030955 0.029647 0.0271428 0.024763 0.0230358 0.021544 0.0201611 0.0190801 0.0186702 0.0189981 0.0189815 0.0174246 0.0135559 0.00774371 0.00533324 0.00825054 0.0121224 0.0155154 0.0178299 0.0194023 0.0203097 0.0202048 0.0186683 0.0160945 0.0148722 0.0153764 0.0163108 0.0170907 0.0162933 0.015132 0.0132981 0.00997931 0.00603302 -0.000338875 -0.0073733 -0.0160994 -0.0273627 -0.0400376 -0.057286 -0.0747833 -0.094091 -0.120639 -0.141286 -0.167619 -0.189641 -0.194936 -0.201679 -0.194724 -0.178381 -0.162218 -0.136625 -0.0944085 -0.0213273 0.034373 0.0656941 0.129834 0.181355 0.247058 0.294038 0.336571 0.365177 0.39266 0.404085 0.424924 0.421833 0.418727 0.413198 0.400872 0.387765 0.374779 0.360937 0.345602 0.332878 0.323048 0.313272 0.303303 0.293655 0.284401 0.275096 0.266417 0.257629 0.247699 0.234468 0.218541 0.201009 0.180494 0.156584 0.129238 0.099013 0.0674228 0.037276 0.0107258 -0.0100367 -0.0218265 0.0585829 0.206278 0.440846 0.602189 0.681951 0.780341 0.896827 0.984905 1.00913 1.01411 1.00863 0.977484 0.931183 0.870371 0.797494 0.730927 0.664871 0.599441 0.539634 0.481756 0.426088 0.375884 0.329293 0.287453 0.250354 0.216755 0.187477 0.162013 0.139683 0.119851 0.102567 0.0871344 0.0733074 0.0609219 0.0497977 0.0398758 0.0310437 0.0230797 0.016492 0.0111621 0.00672701 0.00282269 -0.000769676 -0.00405526 -0.00693713 -0.00922404 -0.0109961 -0.0121012 -0.0127551 -0.0132002 -0.0135073 -0.0140755 -0.0139566 -0.013851 -0.0134007 -0.0135027 -0.0139615 -0.014533 -0.015316 -0.0153658 -0.0156988 -0.0166999 -0.0184559 -0.0194496 -0.022127 -0.0245264 -0.0274351 -0.0313045 -0.0353303 -0.0415754 -0.047653 -0.0531931 -0.0593776 -0.0643148 -0.0688553 -0.0742299 -0.0803782 -0.085147 -0.0871263 -0.0881943 -0.0880455 -0.0822458 -0.0774558 -0.0764638 -0.0747332 -0.0647871 -0.0524674 -0.0359645 -0.0226716 -0.00794932 0.00245387 0.00942769 0.0126697 0.0163821 0.0199526 0.0234776 0.0270939 0.029087 0.0304418 0.0313217 0.0310975 0.0302061 0.028929 0.0278593 0.0264919 0.0248061 0.023049 0.0215578 0.020412 0.0194602 0.0183125 0.0168476 0.0151501 0.013338 0.0120076 0.0112103 0.0109887 0.0109993 0.011244 0.0115652 0.011841 0.0120747 0.0122629 0.0124105 0.0125926 0.0128182 0.0131203 0.0135198 0.0140185 0.0146606 0.0154599 0.0163612 0.0173038 0.0182046 0.0190657 0.0199417 0.0207485 0.021438 0.02189 0.0216172 0.0204954 0.0192207 0.017922 0.0163504 0.0138595 0.0102586 0.00592191 0.000164092 -0.00809901 -0.0185392 -0.0304226 -0.0431571 -0.0570382 -0.0712539 -0.0856116 -0.0985444 -0.105768 -0.108835 -0.106049 -0.105319 -0.105779 -0.105858 -0.101648 -0.0916156 -0.0741767 -0.053687 -0.0394129 -0.0283606 -0.0176004 -0.00272614 0.012723 0.0261062 0.035792 0.041248 0.0427481 0.0434983 0.0436 0.0425277 0.0401591 0.0362593 0.0316266 0.0274951 0.0241762 0.021776 0.0203303 0.0194313 0.0187396 0.0182896 0.0179386 0.0176077 0.0173392 0.017107 0.0169354 0.0166599 0.0161863 0.0155247 0.0148949 0.0143575 0.0138749 0.0133672 0.0129044 0.0126804 0.0128253 0.013178 0.0135596 0.0137232 0.0136674 0.0135274 0.0138047 0.0147176 0.0159543 0.0170697 0.0182288 0.0198886 0.0227898 0.0258394 0.0279554 0.0281643 0.026485 0.0236952 0.0202527 0.0162656 0.0124021 0.00887052 0.00479177 -0.0015373 -0.0122385 -0.0268437 -0.0414922 -0.0504513 -0.0519066 -0.0519982 -0.0558673 -0.0684467 -0.0908754 -0.116013 -0.130012 -0.130236 -0.122922 -0.109787 -0.0992165 -0.0894128 -0.0787216 -0.060673 -0.0383909 -0.0167937 0.00113801 0.0130013 0.0232802 0.0308471 0.0363624 0.0403957 0.0446118 0.0484908 0.0500814 0.0485053 0.0430302 0.0340738 0.0240305 0.0172496 0.0165781 0.0208568 0.0253901 0.0270991 0.0260839 0.0239917 0.0219445 0.0204204 0.0193806 0.0178518 0.0169104 0.0165434 0.016775 0.0166663 0.0152408 0.0119583 0.00697461 0.00506582 0.00745402 0.0107028 0.0136459 0.015684 0.0171037 0.0179023 0.017799 0.0164939 0.0143078 0.0132209 0.0135135 0.0142118 0.0150967 0.0144108 0.0133709 0.0116592 0.00867066 0.00505053 -0.000711154 -0.00707111 -0.0150408 -0.0252011 -0.0366575 -0.0521754 -0.0680099 -0.085144 -0.108807 -0.12877 -0.151443 -0.169102 -0.173783 -0.178939 -0.172425 -0.157958 -0.142644 -0.119282 -0.0813675 -0.0186932 0.0290431 0.0596718 0.115219 0.161389 0.219173 0.260478 0.298201 0.324231 0.34863 0.358886 0.376961 0.374412 0.371362 0.36602 0.355299 0.343833 0.332159 0.319842 0.306392 0.295142 0.286198 0.277462 0.268611 0.260038 0.251793 0.243534 0.235784 0.227879 0.218939 0.207233 0.193179 0.177592 0.159411 0.138277 0.114167 0.0875947 0.0599025 0.0334669 0.0102044 -0.00790901 -0.0181357 0.0624758 0.186063 0.379707 0.518731 0.594136 0.679302 0.777953 0.853194 0.876577 0.881556 0.876621 0.849798 0.809717 0.757115 0.694572 0.636663 0.579117 0.522413 0.470189 0.419738 0.371384 0.327638 0.287097 0.250631 0.21825 0.188999 0.16348 0.141255 0.121757 0.104472 0.089379 0.0759202 0.0638667 0.0530727 0.0433823 0.0347428 0.0270508 0.0201394 0.0144111 0.00975535 0.00586705 0.00246284 -0.000661821 -0.00351561 -0.00602178 -0.00801816 -0.00956925 -0.0105552 -0.0111596 -0.0115958 -0.011877 -0.0125112 -0.0123848 -0.0123946 -0.0120027 -0.0122044 -0.012608 -0.0131564 -0.013798 -0.0142053 -0.0149428 -0.0158321 -0.0179066 -0.0185572 -0.0207072 -0.0234205 -0.026431 -0.0303071 -0.032855 -0.0381439 -0.0439359 -0.0485803 -0.0536298 -0.0575239 -0.0610422 -0.0653644 -0.0702612 -0.0739677 -0.0754894 -0.0762618 -0.075768 -0.0711134 -0.0671852 -0.0660515 -0.0641785 -0.0559122 -0.0451977 -0.0313881 -0.0195793 -0.00717252 0.00190958 0.00795556 0.0109811 0.0142011 0.0172979 0.0203503 0.0233972 0.0251729 0.0263603 0.027098 0.0269271 0.0261801 0.0251077 0.024152 0.0229646 0.0215171 0.020018 0.0187302 0.0177264 0.0168755 0.0158692 0.0146038 0.0131449 0.0116366 0.010455 0.00975461 0.00955388 0.0095427 0.00975087 0.0100066 0.0102334 0.0104162 0.0105598 0.010664 0.0107946 0.0109588 0.0111879 0.0114995 0.0118988 0.0124156 0.0130734 0.0137995 0.0145629 0.0152906 0.0159637 0.0166463 0.0172588 0.0177489 0.0180086 0.0176339 0.0165586 0.0153152 0.0140326 0.0124644 0.0101125 0.00680771 0.00286111 -0.00240072 -0.00972077 -0.0188662 -0.0291327 -0.0400447 -0.0519314 -0.0638473 -0.0758221 -0.0863248 -0.0922186 -0.0945074 -0.0921766 -0.0915655 -0.0916462 -0.0915546 -0.0876566 -0.078866 -0.0640434 -0.0467364 -0.0343629 -0.0247278 -0.0150461 -0.002383 0.010943 0.0223734 0.0307436 0.0355412 0.0370459 0.0377451 0.0378096 0.0368658 0.0347914 0.0314468 0.0274896 0.0239158 0.0210384 0.018951 0.0176702 0.0168652 0.0162653 0.0158681 0.0155582 0.0152718 0.0150391 0.0148363 0.0146816 0.0144366 0.0140275 0.0134534 0.0129074 0.0124251 0.0119881 0.0115324 0.0111258 0.0109208 0.011022 0.0112902 0.0115785 0.0116836 0.0116254 0.0115026 0.0117473 0.0125125 0.0135623 0.0145062 0.0155225 0.016925 0.0193415 0.0217301 0.0233154 0.023277 0.0216664 0.0190783 0.0159598 0.0123647 0.00889511 0.00565151 0.00184672 -0.00387497 -0.0132084 -0.0256073 -0.0379263 -0.0453901 -0.0466047 -0.046792 -0.0503362 -0.0614982 -0.0814425 -0.103902 -0.116255 -0.11605 -0.108853 -0.0967437 -0.0869704 -0.0779467 -0.0681171 -0.0524448 -0.0333671 -0.0148272 0.000580472 0.0111119 0.0199994 0.0266062 0.0314342 0.0350639 0.0387282 0.0420295 0.0433672 0.0419555 0.0371882 0.0295397 0.0210656 0.0153753 0.0147206 0.0181723 0.0218784 0.0233401 0.0225531 0.0208331 0.019095 0.0177688 0.0168729 0.0155138 0.0147018 0.0143762 0.0145349 0.014377 0.0131055 0.0103425 0.00616416 0.00465953 0.00659253 0.0092766 0.0117979 0.0135572 0.014808 0.0154928 0.0154055 0.0142948 0.0124352 0.0114851 0.0116306 0.0125126 0.0131186 0.0125089 0.0115766 0.0100312 0.0073358 0.00409494 -0.00105694 -0.00677372 -0.013974 -0.0230132 -0.0331375 -0.0469977 -0.0611509 -0.0761362 -0.0972904 -0.115277 -0.134193 -0.149005 -0.153031 -0.156658 -0.150431 -0.137584 -0.123306 -0.102396 -0.0691188 -0.0159573 0.0246625 0.0533437 0.100942 0.14133 0.19093 0.227322 0.259715 0.283064 0.30413 0.315485 0.329602 0.327134 0.324027 0.319031 0.309793 0.299862 0.289551 0.278749 0.267104 0.257294 0.249321 0.241633 0.233893 0.226391 0.219163 0.211946 0.205137 0.198152 0.19025 0.180055 0.167846 0.154227 0.138388 0.120021 0.099117 0.0761387 0.0522545 0.0294535 0.00940923 -0.00614039 -0.0148759 0.0612035 0.162637 0.320056 0.437244 0.505362 0.577716 0.659821 0.723177 0.744861 0.749667 0.745382 0.72275 0.688819 0.644315 0.591718 0.542466 0.493453 0.445336 0.400745 0.357724 0.316609 0.279316 0.244795 0.213702 0.186058 0.161139 0.139381 0.12041 0.103762 0.0890269 0.0761401 0.064662 0.0543876 0.04519 0.0369369 0.029582 0.0230342 0.0171693 0.0123014 0.00833068 0.00501494 0.00210868 -0.000550041 -0.00297786 -0.00511526 -0.00682594 -0.00815793 -0.00902308 -0.00957233 -0.0099769 -0.0102876 -0.0109247 -0.0108516 -0.0108781 -0.0106254 -0.0108134 -0.0112514 -0.0117804 -0.0123609 -0.0130453 -0.0138782 -0.0152592 -0.0171166 -0.0178183 -0.0194297 -0.0222608 -0.0251957 -0.028805 -0.0307369 -0.0351443 -0.0402985 -0.0440896 -0.0479847 -0.0507865 -0.0533807 -0.0566006 -0.0602402 -0.0628988 -0.0639262 -0.0643911 -0.0636744 -0.0599904 -0.0568195 -0.0556356 -0.0537762 -0.0470331 -0.0379516 -0.0266075 -0.0164971 -0.0062315 0.00145829 0.00658906 0.00927788 0.0120225 0.0146472 0.0172321 0.0197563 0.0212864 0.0222982 0.0229066 0.0227787 0.0221663 0.0212782 0.020451 0.0194448 0.018227 0.0169735 0.015886 0.0150299 0.0142899 0.0134298 0.0123608 0.0111343 0.0098737 0.00887534 0.00827714 0.00809878 0.00807349 0.00824327 0.0084366 0.00861555 0.00874467 0.00884171 0.00890079 0.00897494 0.00907832 0.00923313 0.00945767 0.00975958 0.0101491 0.0106628 0.0112177 0.011792 0.0123407 0.0128296 0.0133134 0.0137296 0.0140241 0.0141043 0.013631 0.0125925 0.0113908 0.0101406 0.00860534 0.00640961 0.0034238 -0.000158983 -0.00489379 -0.011203 -0.0190684 -0.0277352 -0.036857 -0.0466974 -0.056358 -0.0659842 -0.0741575 -0.0786627 -0.0801312 -0.0781162 -0.0775424 -0.0774184 -0.0771774 -0.0737671 -0.0663187 -0.0540011 -0.0397056 -0.0292904 -0.0209463 -0.012584 -0.001983 0.00917207 0.0187538 0.0258241 0.0299316 0.0313467 0.0319771 0.0320179 0.0312082 0.0294378 0.0266311 0.0233224 0.020303 0.0178674 0.0160941 0.0149909 0.0142912 0.0137837 0.0134437 0.0131778 0.0129337 0.0127368 0.0125637 0.012428 0.0122125 0.0118563 0.0113734 0.0109093 0.010485 0.0100961 0.00969181 0.00933507 0.00914475 0.00920335 0.0093926 0.00959337 0.00964269 0.00956732 0.00945342 0.00966423 0.0102878 0.0111535 0.0119163 0.0127508 0.0138735 0.015772 0.017549 0.0186291 0.0183417 0.0167696 0.0143874 0.0115821 0.00844964 0.00538504 0.00247245 -0.000947371 -0.00601103 -0.0140111 -0.0243501 -0.0344264 -0.040355 -0.0412425 -0.0414513 -0.0446438 -0.0543954 -0.0714439 -0.0906987 -0.100709 -0.100057 -0.0934517 -0.0828437 -0.074206 -0.0662007 -0.0575382 -0.0442655 -0.0282946 -0.0127422 0.000205361 0.00927337 0.01679 0.0224201 0.0265489 0.0297104 0.0328257 0.0355749 0.0366819 0.0354497 0.0313981 0.0250018 0.0179913 0.0133095 0.0127041 0.0154489 0.0184295 0.0196485 0.0190509 0.017657 0.016213 0.0150866 0.014282 0.0131675 0.0124648 0.0121803 0.0122903 0.0121181 0.0110226 0.00873703 0.0053068 0.00414844 0.00568381 0.00786918 0.00996992 0.0114613 0.0125277 0.0131008 0.0130283 0.0121352 0.0106026 0.00980705 0.00970609 0.0107963 0.0111327 0.010599 0.00979304 0.00841851 0.00606203 0.00318506 -0.00135017 -0.00638841 -0.0127479 -0.020638 -0.0294683 -0.0417481 -0.0543825 -0.0673882 -0.086242 -0.100166 -0.115802 -0.129248 -0.132478 -0.134676 -0.128764 -0.117424 -0.104398 -0.0859602 -0.0576732 -0.0135361 0.0205868 0.0464015 0.0863594 0.121168 0.162997 0.19435 0.221581 0.241987 0.259822 0.271369 0.280927 0.279205 0.276662 0.272147 0.264301 0.255831 0.246917 0.237629 0.227729 0.219336 0.212399 0.205775 0.199141 0.192711 0.186508 0.18033 0.174475 0.168443 0.161618 0.152925 0.14254 0.130907 0.117414 0.101805 0.0840822 0.0646478 0.0444957 0.0252634 0.00837629 -0.00468169 -0.0119843 0.0556931 0.13663 0.261442 0.357231 0.415949 0.475702 0.542276 0.594479 0.614157 0.61829 0.614779 0.596259 0.56843 0.531915 0.488955 0.448353 0.407884 0.368257 0.331342 0.29575 0.26182 0.23098 0.202456 0.176735 0.153845 0.133247 0.115249 0.0995445 0.0857586 0.0735716 0.0629006 0.0534045 0.0449089 0.0373061 0.0304875 0.0244127 0.019005 0.0141738 0.0101592 0.00687623 0.00411454 0.00172386 -0.000468059 -0.00246965 -0.0042347 -0.00565244 -0.00676608 -0.00750086 -0.00798431 -0.00833074 -0.0086948 -0.00917372 -0.00922723 -0.00923589 -0.0092861 -0.00959606 -0.010167 -0.0107566 -0.0112616 -0.0121087 -0.0127923 -0.0148106 -0.0163205 -0.0175831 -0.0190908 -0.0211091 -0.0236768 -0.0266937 -0.0286275 -0.0322599 -0.0363782 -0.0396438 -0.0424296 -0.0440862 -0.0457563 -0.0478781 -0.050301 -0.0519461 -0.0524464 -0.0526182 -0.0518319 -0.0489495 -0.0464251 -0.0452639 -0.0435362 -0.0381658 -0.0307798 -0.0217135 -0.0134249 -0.00519622 0.00109788 0.00530975 0.0075913 0.00985911 0.0120029 0.0141174 0.0161482 0.0174115 0.0182453 0.0187314 0.0186386 0.0181503 0.0174357 0.0167479 0.0159232 0.0149312 0.0139142 0.0130243 0.0123196 0.0117004 0.0109904 0.010116 0.00911624 0.00808632 0.00725492 0.00677091 0.00662025 0.00658751 0.00672041 0.00685733 0.00698954 0.0070699 0.00712292 0.00713893 0.00716088 0.00719995 0.00728461 0.00742468 0.00762899 0.00789392 0.00826362 0.00865094 0.009037 0.00940237 0.00970472 0.00998531 0.0101996 0.010296 0.0101803 0.00960899 0.00857439 0.00740729 0.00618785 0.00469959 0.00268297 2.39459e-05 -0.00318537 -0.0073381 -0.0126515 -0.0192529 -0.0262807 -0.033592 -0.0413732 -0.0488298 -0.0561746 -0.0620983 -0.0651785 -0.0658287 -0.0639926 -0.0634217 -0.0631895 -0.0628725 -0.0600287 -0.0539309 -0.0440312 -0.0325945 -0.0240573 -0.0171316 -0.0101974 -0.0016086 0.00746374 0.0152339 0.0210029 0.0244011 0.0256513 0.0261975 0.0262233 0.0255533 0.0240953 0.0218132 0.0191312 0.0166625 0.014667 0.0132105 0.0122952 0.0117119 0.0112962 0.0110139 0.0107928 0.0105912 0.01043 0.010287 0.0101712 0.00998074 0.0096597 0.00928236 0.00890198 0.00854025 0.00820346 0.00785258 0.00754428 0.00736827 0.00738656 0.00750244 0.0076216 0.00761936 0.00752476 0.00740201 0.00757443 0.0080463 0.00872904 0.0093173 0.00994395 0.0107767 0.0121897 0.0133981 0.0139635 0.0134262 0.0118726 0.00967754 0.00714476 0.0043861 0.00168578 -0.000845131 -0.00380824 -0.00812309 -0.0147605 -0.0230787 -0.0309849 -0.03537 -0.035825 -0.035983 -0.0387878 -0.0471233 -0.0611308 -0.0766005 -0.0838979 -0.0827786 -0.0771015 -0.068302 -0.06106 -0.0542735 -0.0469902 -0.0361248 -0.0231763 -0.0105493 -2.05487e-05 0.00749579 0.0136511 0.0182864 0.0216957 0.02434 0.0268985 0.0291203 0.0300095 0.0289769 0.0256493 0.0204648 0.0148352 0.0110939 0.0105653 0.0126937 0.0150205 0.0160032 0.0155635 0.0144641 0.0133056 0.0123821 0.0116986 0.0107924 0.0102209 0.0099863 0.0100645 0.00988829 0.00896926 0.00713191 0.00440794 0.00352606 0.00472813 0.00644883 0.00814253 0.00936117 0.0102484 0.0107206 0.0106608 0.00994165 0.00870859 0.00807213 0.00822503 0.00899574 0.00918783 0.00873475 0.00802918 0.00679984 0.00474303 0.0022269 -0.00172161 -0.00611786 -0.0116965 -0.0185865 -0.0263257 -0.037288 -0.0483452 -0.0599144 -0.0753437 -0.0867246 -0.0987362 -0.109952 -0.112167 -0.112874 -0.107259 -0.0972918 -0.0856756 -0.0698582 -0.0464274 -0.0107981 0.0170791 0.0393512 0.0719596 0.101106 0.13543 0.161595 0.183921 0.201083 0.215912 0.22698 0.230495 0.230247 0.229294 0.225442 0.218907 0.211842 0.204337 0.196551 0.188337 0.181341 0.175484 0.16993 0.164394 0.159031 0.153853 0.148708 0.143814 0.138756 0.133034 0.125838 0.117259 0.107625 0.0964813 0.083624 0.0690587 0.0531256 0.0366428 0.0209233 0.00714178 -0.00348451 -0.00940068 0.0468009 0.108591 0.203529 0.278296 0.326105 0.373337 0.425129 0.466429 0.483069 0.486397 0.483892 0.469793 0.44822 0.419705 0.386149 0.354154 0.322228 0.291012 0.261803 0.23365 0.206856 0.182463 0.15992 0.139574 0.121452 0.10517 0.090936 0.0785114 0.0676047 0.0579743 0.0495374 0.0420387 0.0353353 0.0293407 0.0239687 0.0191861 0.0149327 0.0111444 0.00799933 0.00542255 0.00328479 0.00139216 -0.000331416 -0.0019099 -0.00330706 -0.00443959 -0.00535819 -0.00597926 -0.00641486 -0.00674198 -0.00712889 -0.00750646 -0.00772179 -0.00771225 -0.00801253 -0.00830137 -0.00887185 -0.00947989 -0.00998689 -0.0111026 -0.0117506 -0.0136966 -0.0149264 -0.0167515 -0.0182796 -0.0197822 -0.022011 -0.0243871 -0.0261294 -0.0291252 -0.0319364 -0.0346534 -0.0365192 -0.037345 -0.0381264 -0.0391742 -0.0404259 -0.0410915 -0.0410469 -0.0409583 -0.0402775 -0.0380431 -0.0360809 -0.0350535 -0.0335784 -0.0294486 -0.0237456 -0.0168221 -0.0103754 -0.00407861 0.000814079 0.00407898 0.005911 0.00768407 0.00934579 0.0109891 0.0125466 0.0135373 0.0141912 0.0145629 0.0144961 0.0141231 0.0135763 0.0130337 0.0123902 0.0116215 0.0108374 0.0101457 0.00959412 0.00910567 0.00854944 0.00786986 0.00709537 0.00629683 0.00563306 0.00526093 0.00514016 0.00510827 0.00520463 0.00529469 0.0053816 0.00541825 0.00542854 0.00540274 0.00537607 0.00536001 0.00537358 0.00542816 0.00553038 0.00567819 0.00590439 0.00613109 0.00634977 0.00653374 0.00664917 0.00673601 0.00675365 0.00665613 0.00635377 0.00565716 0.00462472 0.00347432 0.00227296 0.000827497 -0.00102601 -0.00337744 -0.00620536 -0.00978343 -0.0141874 -0.0194975 -0.0249184 -0.0304096 -0.0361189 -0.0413644 -0.0464232 -0.0501726 -0.0517991 -0.0516227 -0.0498418 -0.0492694 -0.0489924 -0.0486763 -0.0464103 -0.0416841 -0.0341269 -0.0253851 -0.0187459 -0.013338 -0.00786089 -0.00124165 0.0057984 0.0117862 0.0162613 0.0189311 0.0199592 0.0204056 0.0204198 0.0198929 0.0187541 0.0169851 0.0149113 0.012992 0.0114384 0.0103029 0.00958336 0.009121 0.00879679 0.00857359 0.0083996 0.00824256 0.00811718 0.0080052 0.00791273 0.00775813 0.00748433 0.00720253 0.00690312 0.00660642 0.00632296 0.00602559 0.00576209 0.0055994 0.00558179 0.00563193 0.00567744 0.00562528 0.00550895 0.00537523 0.00549403 0.0058365 0.00635185 0.00675343 0.0071818 0.0077263 0.00867942 0.00936292 0.00946592 0.00867031 0.0070929 0.00504037 0.00275333 0.000347422 -0.00198829 -0.00416463 -0.00668285 -0.0102578 -0.0155624 -0.0219241 -0.0276917 -0.0305068 -0.0304397 -0.030429 -0.0328253 -0.0397227 -0.0507048 -0.0619626 -0.0663264 -0.0647065 -0.0601779 -0.0533402 -0.0476545 -0.042243 -0.0364828 -0.0280333 -0.0180417 -0.0082832 -0.000131759 0.00577397 0.0105699 0.01419 0.0168585 0.0189497 0.0209452 0.0226612 0.0233432 0.0225256 0.0199292 0.015927 0.0116135 0.00875279 0.00831677 0.00989009 0.0116437 0.0124036 0.0120903 0.0112666 0.0103766 0.00965707 0.00911984 0.00842068 0.00796867 0.00777916 0.00783119 0.00767633 0.00694992 0.00552937 0.00346367 0.00283767 0.00373091 0.00503644 0.00633583 0.00729241 0.00798833 0.00835029 0.00831145 0.00778787 0.0068348 0.00633628 0.00651058 0.00708067 0.00718517 0.00679611 0.00621063 0.00517298 0.00344642 0.00128247 -0.00208376 -0.00583389 -0.0106157 -0.0165462 -0.0232916 -0.0323278 -0.0414417 -0.0517262 -0.0625754 -0.0731945 -0.0811248 -0.0899243 -0.0914165 -0.0913363 -0.0860665 -0.0774287 -0.0673823 -0.0542539 -0.0360456 -0.00842605 0.0134297 0.0316272 0.0572361 0.0806939 0.107706 0.128512 0.146014 0.159755 0.171518 0.180918 0.181312 0.18126 0.181441 0.178401 0.173174 0.16751 0.161463 0.155213 0.148682 0.143096 0.138372 0.133918 0.129502 0.125225 0.121095 0.117 0.113093 0.109047 0.104477 0.0987772 0.091993 0.0843668 0.0755771 0.0654671 0.0540421 0.0415759 0.0287123 0.0164598 0.00574228 -0.00250118 -0.00706652 0.0353264 0.0790091 0.146071 0.20014 0.236037 0.270819 0.308465 0.33819 0.350247 0.353211 0.351884 0.342529 0.327414 0.307031 0.282833 0.259521 0.236252 0.213495 0.192116 0.171507 0.151887 0.133996 0.117477 0.102548 0.0892316 0.0772762 0.0668177 0.0576849 0.0496648 0.0425866 0.0363808 0.030868 0.0259376 0.0215281 0.0175778 0.0140614 0.0109331 0.00815042 0.00583442 0.0039333 0.00231279 0.000932789 -0.000342865 -0.00151302 -0.00255032 -0.0033949 -0.0040935 -0.0045746 -0.00492507 -0.00520168 -0.00549758 -0.00577359 -0.00614564 -0.00619673 -0.00658445 -0.00667152 -0.0071935 -0.00776278 -0.00832191 -0.00958028 -0.0102297 -0.011958 -0.0130912 -0.0149934 -0.0165475 -0.0182599 -0.020274 -0.022187 -0.023651 -0.0260296 -0.0277983 -0.029543 -0.0304667 -0.0307875 -0.0306151 -0.0305624 -0.0306448 -0.0303388 -0.0297162 -0.0293782 -0.028728 -0.0271283 -0.0257028 -0.0248947 -0.0237758 -0.0208376 -0.0167911 -0.0119352 -0.00734414 -0.00291237 0.000576608 0.00288392 0.0042187 0.00549064 0.00667297 0.00784518 0.00894528 0.00966259 0.0101325 0.0103962 0.0103496 0.0100858 0.00970309 0.00931097 0.00884989 0.00830309 0.00774874 0.00725543 0.00685898 0.00650755 0.00610808 0.00562364 0.00507224 0.00450708 0.00402388 0.0037595 0.00367002 0.00364248 0.00370431 0.00375254 0.00379218 0.00378451 0.00374997 0.00368406 0.00360509 0.00353317 0.00347546 0.00344387 0.00344324 0.00347626 0.00355891 0.00362787 0.00368231 0.00368951 0.00362398 0.00352458 0.00335554 0.00307424 0.00261597 0.00183782 0.000780309 -0.000350735 -0.00152023 -0.00290566 -0.00460886 -0.00668305 -0.00913735 -0.0121506 -0.0157552 -0.019811 -0.0237133 -0.0274514 -0.0310878 -0.0341101 -0.0368179 -0.038409 -0.0385507 -0.0375255 -0.0356959 -0.0351296 -0.0348776 -0.0346207 -0.0329641 -0.029625 -0.024292 -0.0181477 -0.0134234 -0.00954946 -0.0055719 -0.000895021 0.00415268 0.00837786 0.0115702 0.0134893 0.0142535 0.0145899 0.0145982 0.0142192 0.0134045 0.0121447 0.0106687 0.00929762 0.00818565 0.00737224 0.00685329 0.00651845 0.0062871 0.0061263 0.00600143 0.00588963 0.00580026 0.00572026 0.00565328 0.00553911 0.00532817 0.00513746 0.00491613 0.00468493 0.00445529 0.00421 0.00398782 0.00383715 0.00378655 0.00377572 0.00375138 0.00364903 0.00350529 0.00336049 0.00342174 0.00364382 0.00399666 0.00422696 0.00445911 0.00472999 0.00521827 0.00540988 0.00510339 0.00405928 0.00244254 0.000527354 -0.00151854 -0.00358845 -0.00555841 -0.00738355 -0.00947467 -0.012313 -0.0163117 -0.0208156 -0.0245378 -0.0257779 -0.025154 -0.0249211 -0.0268854 -0.0323568 -0.0403078 -0.0472344 -0.0484583 -0.0462305 -0.0429798 -0.0381477 -0.034103 -0.030172 -0.0260209 -0.0199817 -0.0128902 -0.00595439 -0.000151344 0.00409622 0.00751961 0.0101148 0.0120286 0.0135417 0.0149724 0.0161948 0.0166814 0.0160924 0.0142288 0.0113817 0.0083334 0.00631444 0.00598538 0.00707079 0.00830041 0.00884307 0.00863414 0.00805919 0.00742939 0.00691591 0.00653128 0.00603541 0.00572547 0.00559482 0.00563071 0.00550033 0.00495939 0.00393722 0.0024864 0.0020689 0.00269566 0.00361529 0.00453675 0.00522475 0.00572082 0.00597526 0.00595486 0.00556227 0.00490304 0.0045388 0.00463795 0.00502777 0.00515564 0.00488553 0.00441824 0.00356503 0.00220322 0.000480568 -0.00220241 -0.0052125 -0.00915032 -0.0140274 -0.0196288 -0.0262467 -0.0332952 -0.0415899 -0.049189 -0.0577507 -0.0628998 -0.069113 -0.0699222 -0.0697619 -0.0648124 -0.0574573 -0.0490741 -0.0386442 -0.0252307 -0.00532138 0.0106111 0.0244071 0.0431565 0.0604882 0.0801368 0.0952685 0.107906 0.118037 0.126441 0.132542 0.133692 0.133238 0.13338 0.131112 0.127235 0.122998 0.118474 0.113806 0.108967 0.104794 0.101233 0.0978932 0.0946007 0.0914145 0.0883361 0.0852913 0.082378 0.0793657 0.0759771 0.0717607 0.0667674 0.0611595 0.0547208 0.0473431 0.0390366 0.030006 0.0207208 0.0118991 0.00420304 -0.00168463 -0.00492495 0.0220244 0.048323 0.0888148 0.122284 0.14538 0.167446 0.191061 0.208788 0.216121 0.218328 0.217797 0.212469 0.203393 0.19091 0.175966 0.161446 0.146945 0.132758 0.119388 0.106498 0.0942315 0.0830423 0.0727272 0.0634008 0.0550789 0.0476191 0.0410998 0.035415 0.0304304 0.0260414 0.0222014 0.0188021 0.0157705 0.0130685 0.0106579 0.00852294 0.00662915 0.00495161 0.00356311 0.00244036 0.00152504 0.000707928 -3.51092e-05 -0.000727556 -0.00135565 -0.00188089 -0.00233236 -0.00266816 -0.00294628 -0.00320761 -0.00350096 -0.00377936 -0.00424923 -0.00452842 -0.00507203 -0.00553725 -0.00629173 -0.00709367 -0.00800283 -0.00935161 -0.0103911 -0.0122131 -0.0135942 -0.0154926 -0.0171915 -0.0188649 -0.0206377 -0.0221863 -0.0232367 -0.0247451 -0.0255642 -0.0260464 -0.025745 -0.0249509 -0.0235701 -0.0222545 -0.0210636 -0.0196968 -0.0184651 -0.0179008 -0.0174182 -0.0163376 -0.0154046 -0.0148514 -0.0141396 -0.0123751 -0.0099602 -0.00709821 -0.00435922 -0.00173211 0.000356389 0.00173657 0.00252984 0.00328926 0.00399459 0.00469937 0.00535519 0.00579278 0.00607557 0.00623459 0.00620737 0.00605 0.00582557 0.00558827 0.00531109 0.00498398 0.00465379 0.00435804 0.00411942 0.00390729 0.00366733 0.00337683 0.00304686 0.00271895 0.00245408 0.00228096 0.00222469 0.00219772 0.00222576 0.00222802 0.00221682 0.00216057 0.00207622 0.00196067 0.00182718 0.0016881 0.00155525 0.00143557 0.00133253 0.00124581 0.00118397 0.00109722 0.000972819 0.000797555 0.000553489 0.000257648 -0.000102759 -0.000563205 -0.00118456 -0.00205514 -0.00313213 -0.00422762 -0.00534736 -0.00665198 -0.00817977 -0.00995283 -0.0120146 -0.0144458 -0.0171738 -0.0199415 -0.0223833 -0.0243988 -0.0259726 -0.0268022 -0.0272514 -0.0267289 -0.0253875 -0.023513 -0.0215666 -0.0210255 -0.020844 -0.020671 -0.0196834 -0.0176819 -0.01455 -0.010915 -0.00808651 -0.00573381 -0.00332858 -0.000530847 0.00248481 0.005006 0.00691714 0.00807159 0.0085413 0.00875751 0.00876446 0.00853907 0.00805129 0.00729699 0.00641198 0.00558719 0.00491779 0.00442817 0.00411446 0.00391224 0.00377408 0.00367768 0.00360288 0.00353586 0.00348265 0.003435 0.00339579 0.00333728 0.00327122 0.00312046 0.00296143 0.00278672 0.00260365 0.00240253 0.00221363 0.00207024 0.00198533 0.00191332 0.00181748 0.00165963 0.00148113 0.00132886 0.00133677 0.00144204 0.00161614 0.00168062 0.00171706 0.00172257 0.00171255 0.0014037 0.000640639 -0.000665233 -0.00231223 -0.00408006 -0.0058629 -0.00756578 -0.00913028 -0.0105455 -0.0121301 -0.0142084 -0.0169355 -0.0196136 -0.0213496 -0.0210602 -0.019853 -0.0193373 -0.0208623 -0.0249821 -0.0299489 -0.0325433 -0.0305464 -0.0276943 -0.0257551 -0.0228979 -0.0204823 -0.0180784 -0.0155693 -0.0119655 -0.00773339 -0.00358991 -0.000118746 0.00243946 0.00448943 0.00605438 0.00720672 0.00812117 0.00898556 0.00972281 0.0100184 0.0096656 0.00853778 0.00682888 0.00501134 0.00381137 0.00361259 0.00424432 0.00497182 0.00529693 0.0051778 0.00484141 0.00446587 0.00415977 0.0039449 0.00369458 0.00349059 0.00341117 0.00342945 0.00333715 0.00298459 0.00235137 0.00150959 0.00130385 0.00163952 0.00219409 0.00275049 0.00316849 0.0034684 0.00361394 0.00361035 0.00351134 0.00308608 0.00288842 0.00300766 0.00325044 0.00329185 0.00311868 0.00282782 0.00217346 0.00104247 -0.000439256 -0.00277563 -0.00541527 -0.00888826 -0.013107 -0.0178762 -0.0232146 -0.0288584 -0.0350825 -0.0408679 -0.0462817 -0.049327 -0.0521437 -0.0510049 -0.0493424 -0.0441559 -0.0379479 -0.0313102 -0.0237726 -0.0160914 -0.00366128 0.00625868 0.0152292 0.0270848 0.0377617 0.049959 0.0593308 0.067086 0.0734036 0.078462 0.0815756 0.0831296 0.0827403 0.0826397 0.0811447 0.0787054 0.0760444 0.0732117 0.0702958 0.0672945 0.0647045 0.0624905 0.0604281 0.0584055 0.0564497 0.0545588 0.0526883 0.0508929 0.0490317 0.0469332 0.0443099 0.0412171 0.0377328 0.0337246 0.029133 0.0239776 0.0183928 0.0126759 0.00726713 0.00256936 -0.000987624 -0.00292021 0.00762908 0.0170807 0.0321117 0.0456428 0.0562184 0.0663856 0.0771365 0.0854761 0.0898897 0.0920524 0.093033 0.0919204 0.0891323 0.0847147 0.0790843 0.0733934 0.0674962 0.0616012 0.055878 0.0502449 0.0448388 0.0398376 0.0351705 0.0308795 0.0269959 0.0234917 0.0203978 0.0176675 0.0152421 0.0130871 0.0111773 0.00947201 0.00793933 0.00656192 0.00532477 0.00422363 0.00324472 0.00238582 0.0016694 0.00106743 0.000599356 8.91481e-05 -0.000377949 -0.000837702 -0.00128099 -0.00168999 -0.00208655 -0.0024475 -0.00281451 -0.00319756 -0.00362705 -0.00407805 -0.00462096 -0.00516551 -0.00586505 -0.00663786 -0.00760309 -0.00857399 -0.00973359 -0.011131 -0.0124216 -0.0141646 -0.0155213 -0.0173143 -0.0189415 -0.0203091 -0.0216327 -0.022636 -0.0231128 -0.0235286 -0.0231972 -0.0223496 -0.0207176 -0.0184923 -0.0158554 -0.0133119 -0.0109595 -0.00870522 -0.00702797 -0.00645546 -0.00588479 -0.00543575 -0.00508745 -0.00488387 -0.00464331 -0.0040598 -0.00326868 -0.00232906 -0.00142667 -0.000559902 0.000125483 0.000582671 0.000843714 0.00109527 0.00133019 0.00156674 0.00178573 0.00193347 0.00202842 0.00208237 0.00207304 0.00201989 0.00194503 0.00186509 0.00177265 0.00166328 0.00155337 0.00145461 0.00137526 0.00130389 0.00122414 0.0011271 0.00101831 0.0009212 0.000831554 0.000768207 0.00074302 0.000715612 0.000702493 0.000652318 0.000585173 0.000473684 0.000334681 0.000164154 -3.15011e-05 -0.000236939 -0.00045063 -0.000662638 -0.000872888 -0.00109165 -0.00130408 -0.00156628 -0.00188502 -0.00225672 -0.00271141 -0.00322521 -0.00380235 -0.00447444 -0.00528948 -0.00629747 -0.00741542 -0.00850159 -0.00958677 -0.0108175 -0.0121633 -0.0135912 -0.0152153 -0.0170069 -0.0187525 -0.0201294 -0.0208813 -0.0209329 -0.0203121 -0.0188127 -0.0169542 -0.0143393 -0.0116575 -0.00917254 -0.00736589 -0.00698172 -0.00690231 -0.00684735 -0.00651729 -0.00586127 -0.00484738 -0.00365164 -0.00271221 -0.0019178 -0.00110617 -0.000174673 0.000827971 0.00165338 0.00229013 0.00268188 0.0028452 0.00292532 0.00293334 0.0028624 0.00269609 0.00243985 0.0021431 0.00186601 0.00164231 0.00147857 0.00137361 0.00130605 0.0012603 0.00122817 0.00120306 0.00118049 0.00116267 0.00114658 0.00113358 0.00111734 0.00110523 0.00103591 0.000943133 0.000824468 0.00068702 0.000529068 0.000373073 0.000234843 0.000111755 -2.83825e-05 -0.000203172 -0.000422151 -0.000636203 -0.000809222 -0.000855691 -0.000872133 -0.000866898 -0.00098839 -0.001182 -0.00151377 -0.00202572 -0.00293468 -0.00424493 -0.00586589 -0.00756094 -0.00918351 -0.0106903 -0.0120264 -0.0131533 -0.014095 -0.0150931 -0.0163182 -0.0176478 -0.0183346 -0.0178958 -0.0158772 -0.0139415 -0.0130906 -0.0140911 -0.0167335 -0.0185842 -0.016943 -0.0121213 -0.00921718 -0.00860351 -0.00768142 -0.00685212 -0.00601932 -0.00517113 -0.00398583 -0.00258019 -0.00120246 -4.7621e-05 0.000807145 0.00148993 0.00201281 0.00239633 0.00270408 0.00300152 0.00326225 0.00335934 0.00323243 0.00284868 0.00227724 0.00167582 0.00127565 0.00121044 0.00141266 0.00165314 0.00176188 0.00172715 0.00162012 0.00149687 0.00139754 0.00135476 0.00126321 0.00117963 0.00114819 0.00114925 0.00109386 0.000927047 0.000670097 0.000425618 0.000439989 0.000565176 0.000772576 0.000974815 0.00112222 0.00122766 0.00125962 0.00125902 0.00119584 0.000994501 0.000992648 0.00106943 0.00115454 0.00110993 0.000872442 0.000495003 -0.00028893 -0.00144605 -0.00299492 -0.00527529 -0.00778675 -0.0109851 -0.014607 -0.0184991 -0.0228463 -0.0270375 -0.0310941 -0.0347566 -0.03699 -0.0376415 -0.037284 -0.034274 -0.0306172 -0.0251243 -0.0195116 -0.0139261 -0.00881541 -0.00435069 0.00190626 0.00694066 0.0118577 0.0177883 0.0229768 0.0285914 0.0329141 0.0362855 0.0390499 0.0410706 0.0422002 0.0426936 0.0422614 0.0417554 0.0406199 0.0391292 0.0375508 0.0358801 0.0341841 0.0324973 0.0310095 0.0296823 0.028433 0.0272191 0.0260466 0.0249102 0.0237943 0.0227151 0.0216022 0.0203855 0.0189626 0.0173662 0.015632 0.0137194 0.0116194 0.00935979 0.00701263 0.00470785 0.00261509 0.000875248 -0.0003731 -0.000995664 ) ; boundaryField { inlet { type zeroGradient; } bottom { type zeroGradient; } outlet { type zeroGradient; } atmosphere { type totalPressure; rho none; psi none; gamma 1; p0 uniform 0; value nonuniform List<scalar> 357 ( 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.10321e-05 -4.5944e-05 -0.000107984 -0.000197904 -0.000314554 -0.000464171 -0.000643043 -0.000866097 -0.00113329 -0.00145858 -0.00184811 -0.00229973 -0.00285299 -0.00352198 -0.00424988 -0.00517995 -0.0061322 -0.0073052 -0.00862974 -0.00996869 -0.0116272 -0.0130256 -0.0147402 -0.0163819 -0.0177128 -0.0189294 -0.0197821 -0.0201592 -0.0202242 -0.0195371 -0.018242 -0.0161587 -0.0133693 -0.0103241 -0.00741404 -0.0048027 -0.00248033 -0.000909784 -9.00408e-05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3.34328e-07 -7.4335e-06 -1.96522e-05 -5.07836e-05 -8.89388e-05 -0.000171986 -0.0002748 -0.000422651 -0.000598783 -0.000808142 -0.00104553 -0.00129945 -0.00156423 -0.0018346 -0.00211165 -0.00240965 -0.00271549 -0.0030885 -0.00352928 -0.00402997 -0.00462234 -0.00527674 -0.00599807 -0.00681561 -0.00777149 -0.00888874 -0.010053 -0.0111383 -0.012219 -0.0134268 -0.0146741 -0.01589 -0.0172145 -0.0185708 -0.0196714 -0.0201828 -0.0198034 -0.0185726 -0.0166002 -0.0137977 -0.0107964 -0.00728216 -0.00418244 -0.00167855 -0.000224739 0 0 0 0 0 0 0 0 0 0 0 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.64771e-06 -3.58153e-05 -0.000102679 -0.000201535 -0.000323281 -0.000466562 -0.00061115 -0.000750852 -0.000900336 -0.0010854 -0.00131128 -0.00157076 -0.00180726 -0.00199274 -0.00206297 -0.00214823 -0.00224084 -0.00248588 -0.00282975 -0.00339233 -0.00425087 -0.00555053 -0.00720662 -0.00905948 -0.0108079 -0.012365 -0.0137087 -0.014804 -0.0156453 -0.0162906 -0.0169168 -0.0175726 -0.0180497 -0.0175258 -0.0157942 -0.0127206 -0.0102895 -0.00925224 -0.00989301 -0.0116203 -0.0118333 -0.00832072 -0.00254196 -3.5542e-06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3.17672e-07 -5.67822e-06 -9.86575e-06 -1.94144e-05 -5.39851e-05 -0.00011829 -0.000174048 -0.000122946 -9.63136e-06 0 0 0 0 0 0 0 -2.27405e-05 -6.59517e-05 -1.77348e-05 -1.14666e-06 -1.47379e-06 -3.90457e-05 -0.000181695 -0.000441165 -0.00101226 -0.0018219 -0.0029382 -0.00454894 -0.00627426 -0.00846616 -0.0108157 -0.0131963 -0.0158167 -0.0179806 -0.0196986 -0.0210699 -0.0209031 -0.0198847 -0.0179337 -0.0147443 -0.0112827 -0.00733131 -0.00388675 -0.00132838 -8.14701e-05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 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.41057e-07 -7.92437e-07 ) ; } frontBack { type empty; } } // ************************************************************************* //
eb43104d3600e41fc8f15fcdd7641926065fbccb
c07797934115e827efe18190efb765825ddbeec8
/playerbot/strategy/Engine.cpp
5c96cbadf7b08a2de62b988ee2df1a87e122ecd3
[]
no_license
conan513/mangosbot-bots
5382d9939a0a5caedb91fa0f11cd773dd554f3c4
676ca668eae7c0814547b4a09f961a8a9eb214f8
refs/heads/master
2023-06-27T06:28:31.431732
2023-06-20T16:27:16
2023-06-20T16:27:16
153,980,213
7
3
null
2018-10-21T06:32:52
2018-10-21T06:32:52
null
UTF-8
C++
false
false
24,430
cpp
Engine.cpp
#include "../../botpch.h" #include "../playerbot.h" #include <stdarg.h> #include <iomanip> #include "Engine.h" #include "../PlayerbotAIConfig.h" #include "../PerformanceMonitor.h" using namespace ai; using namespace std; Engine::Engine(PlayerbotAI* ai, AiObjectContext *factory, BotState state) : PlayerbotAIAware(ai), aiObjectContext(factory), state(state) { lastRelevance = 0.0f; testMode = false; lastExecutedAction = nullptr; } bool ActionExecutionListeners::Before(Action* action, const Event& event) { bool result = true; for (list<ActionExecutionListener*>::iterator i = listeners.begin(); i!=listeners.end(); i++) { result &= (*i)->Before(action, event); } return result; } void ActionExecutionListeners::After(Action* action, bool executed, const Event& event) { for (list<ActionExecutionListener*>::iterator i = listeners.begin(); i!=listeners.end(); i++) { (*i)->After(action, executed, event); } } bool ActionExecutionListeners::OverrideResult(Action* action, bool executed, const Event& event) { bool result = executed; for (list<ActionExecutionListener*>::iterator i = listeners.begin(); i!=listeners.end(); i++) { result = (*i)->OverrideResult(action, result, event); } return result; } bool ActionExecutionListeners::AllowExecution(Action* action, const Event& event) { bool result = true; for (list<ActionExecutionListener*>::iterator i = listeners.begin(); i!=listeners.end(); i++) { result &= (*i)->AllowExecution(action, event); } return result; } ActionExecutionListeners::~ActionExecutionListeners() { for (list<ActionExecutionListener*>::iterator i = listeners.begin(); i!=listeners.end(); i++) { delete *i; } listeners.clear(); } Engine::~Engine(void) { Reset(); strategies.clear(); } void Engine::Reset() { ActionNode* action = NULL; do { action = queue.Pop(); if (!action) break; delete action; } while (true); for (list<TriggerNode*>::iterator i = triggers.begin(); i != triggers.end(); i++) { TriggerNode* trigger = *i; delete trigger; } triggers.clear(); for (list<Multiplier*>::iterator i = multipliers.begin(); i != multipliers.end(); i++) { Multiplier* multiplier = *i; delete multiplier; } multipliers.clear(); } void Engine::Init() { Reset(); for (map<string, Strategy*>::iterator i = strategies.begin(); i != strategies.end(); i++) { Strategy* strategy = i->second; strategy->InitMultipliers(multipliers, state); strategy->InitTriggers(triggers, state); MultiplyAndPush(strategy->getDefaultActions(state), 0.0f, false, Event(), "default"); } if (testMode) { FILE* file = fopen("test.log", "w"); fprintf(file, "\n"); fclose(file); } } bool Engine::DoNextAction(Unit* unit, int depth, bool minimal, bool isStunned) { LogAction("--- AI Tick ---"); if (sPlayerbotAIConfig.logValuesPerTick) LogValues(); bool actionExecuted = false; ActionBasket* basket = NULL; time_t currentTime = time(0); aiObjectContext->Update(); ProcessTriggers(minimal); PushDefaultActions(); int iterations = 0; int iterationsPerTick = queue.Size() * (minimal ? (uint32)(sPlayerbotAIConfig.iterationsPerTick / 2) : sPlayerbotAIConfig.iterationsPerTick); do { basket = queue.Peek(); if (basket) { float relevance = basket->getRelevance(), oldRelevance = relevance; // just for reference bool skipPrerequisites = basket->isSkipPrerequisites(); Event event = basket->getEvent(); if (minimal && (relevance < 100)) continue; // NOTE: queue.Pop() deletes basket ActionNode* actionNode = queue.Pop(); Action* action = InitializeAction(actionNode); string actionName = (action ? action->getName() : "unknown"); if (!event.getSource().empty()) actionName += " <" + event.getSource() + ">"; PerformanceMonitorOperation* pmo1 = sPerformanceMonitor.start(PERF_MON_ACTION, actionName, &aiObjectContext->performanceStack); if(action) action->setRelevance(relevance); if (!action) { if (sPlayerbotAIConfig.CanLogAction(ai, actionNode->getName(), false, "")) { ostringstream out; out << "try: "; out << actionNode->getName(); out << " unknown ("; out << std::fixed << std::setprecision(3); out << relevance << ")"; if (!event.getSource().empty()) out << " [" << event.getSource() << "]"; ai->TellPlayerNoFacing(ai->GetMaster(), out); } LogAction("A:%s - UNKNOWN", actionNode->getName().c_str()); } else { PerformanceMonitorOperation* pmo2 = sPerformanceMonitor.start(PERF_MON_ACTION, "isUsefull", &aiObjectContext->performanceStack); bool isUseful = action->isUseful(); if (pmo2) pmo2->finish(); if (isUseful && (!isStunned || action->isUsefulWhenStunned())) { for (list<Multiplier*>::iterator i = multipliers.begin(); i != multipliers.end(); i++) { Multiplier* multiplier = *i; if (relevance < 0) relevance = ((relevance + 200.0f) * multiplier->GetValue(action)) - 200.0f; else relevance *= multiplier->GetValue(action); action->setRelevance(relevance); if (!relevance) { LogAction("Multiplier %s made action %s useless", multiplier->getName().c_str(), action->getName().c_str()); break; } } if (queue.Size() && relevance < oldRelevance && queue.Peek()->getRelevance() > relevance) //Relevance changed. Try again. { PushAgain(actionNode, relevance, event); if (pmo1) pmo1->finish(); continue; } if (!skipPrerequisites) { LogAction("A:%s - PREREQ", action->getName().c_str()); if (MultiplyAndPush(actionNode->getPrerequisites(), relevance + 0.02, false, event, "prereq")) { PushAgain(actionNode, relevance + 0.01, event); if (pmo1) pmo1->finish(); continue; } } PerformanceMonitorOperation* pmo3 = sPerformanceMonitor.start(PERF_MON_ACTION, "isPossible", &aiObjectContext->performanceStack); bool isPossible = action->isPossible(); if (pmo3) pmo3->finish(); if (isPossible && relevance) { PerformanceMonitorOperation* pmo4 = sPerformanceMonitor.start(PERF_MON_ACTION, "Execute", &aiObjectContext->performanceStack); actionExecuted = ListenAndExecute(action, event); if (pmo4) pmo4->finish(); if (actionExecuted) { LogAction("A:%s - OK", action->getName().c_str()); MultiplyAndPush(actionNode->getContinuers(), 0, false, event, "cont"); lastRelevance = relevance; delete actionNode; if (pmo1) pmo1->finish(); break; } else { LogAction("A:%s - FAILED", action->getName().c_str()); MultiplyAndPush(actionNode->getAlternatives(), relevance + 0.03, false, event, "alt"); } } else { if (sPlayerbotAIConfig.CanLogAction(ai,actionNode->getName(), false, "")) { ostringstream out; out << "try: "; out << action->getName(); out << " impossible ("; out << std::fixed << std::setprecision(3); out << action->getRelevance() << ")"; if (!event.getSource().empty()) out << " [" << event.getSource() << "]"; ai->TellPlayerNoFacing(ai->GetMaster(), out); } LogAction("A:%s - IMPOSSIBLE", action->getName().c_str()); MultiplyAndPush(actionNode->getAlternatives(), relevance + 0.03, false, event, "alt"); } } else { if (sPlayerbotAIConfig.CanLogAction(ai,actionNode->getName(), false, "")) { ostringstream out; out << "try: "; out << action->getName(); out << " useless ("; out << std::fixed << std::setprecision(3); out << action->getRelevance() << ")"; if (!event.getSource().empty()) out << " [" << event.getSource() << "]"; ai->TellPlayerNoFacing(ai->GetMaster(), out); } lastRelevance = relevance; LogAction("A:%s - USELESS", action->getName().c_str()); } } delete actionNode; if (pmo1) pmo1->finish(); } } while (basket && ++iterations <= iterationsPerTick); /* if (!basket) { lastRelevance = 0.0f; PushDefaultActions(); if (queue.Peek() && depth < 2) return DoNextAction(unit, depth + 1, minimal, isStunned); } */ // MEMORY FIX TEST /* do { basket = queue.Peek(); if (basket) { // NOTE: queue.Pop() deletes basket delete queue.Pop(); } } while (basket);*/ if (time(0) - currentTime > 1) { LogAction("too long execution"); } if (!actionExecuted) LogAction("no actions executed"); queue.RemoveExpired(); return actionExecuted; } ActionNode* Engine::CreateActionNode(const string& name) { ActionNode* actionNode = nullptr; for (map<string, Strategy*>::iterator i = strategies.begin(); i != strategies.end(); i++) { Strategy* strategy = i->second; actionNode = strategy->GetAction(name); if (actionNode) { break; } } if (!actionNode) { actionNode = new ActionNode(name); } return actionNode; } bool Engine::MultiplyAndPush(NextAction** actions, float forceRelevance, bool skipPrerequisites, const Event& event, const char* pushType) { bool pushed = false; if (actions) { for (int j=0; actions[j]; j++) { NextAction* nextAction = actions[j]; if (nextAction) { ActionNode* actionNode = CreateActionNode(nextAction->getName()); InitializeAction(actionNode); float k = nextAction->getRelevance(); if (forceRelevance > 0.0f) { k = forceRelevance; } else if (strcmp(pushType, "default") == 0) { k -= 200.0f; } if (k > 0 || strcmp(pushType, "default") == 0) { LogAction("PUSH:%s - %f (%s)", actionNode->getName().c_str(), k, pushType); queue.Push(new ActionBasket(actionNode, k, skipPrerequisites, event)); pushed = true; } else { delete actionNode; } delete nextAction; } else break; } delete[] actions; } return pushed; } ActionResult Engine::ExecuteAction(const string& name, Event& event) { ActionResult actionResult = ACTION_RESULT_UNKNOWN; ActionNode* actionNode = CreateActionNode(name); if (actionNode) { Action* action = InitializeAction(actionNode); if (action) { if (action->isUseful()) { if (action->isPossible()) { action->MakeVerbose(); bool executionResult = ListenAndExecute(action, event); MultiplyAndPush(action->getContinuers(), 0.0f, false, event, "default"); actionResult = executionResult ? ACTION_RESULT_OK : ACTION_RESULT_FAILED; } else { actionResult = ACTION_RESULT_IMPOSSIBLE; } } else { actionResult = ACTION_RESULT_USELESS; } } delete actionNode; } return actionResult; } bool Engine::CanExecuteAction(const string& name, bool isUseful, bool isPossible) { bool result = true; ActionNode* actionNode = CreateActionNode(name); if (actionNode) { Action* action = InitializeAction(actionNode); if (action) { if (isUseful) { result &= action->isUseful(); } if (isPossible) { result &= action->isPossible(); } } delete actionNode; } return result; } void Engine::addStrategy(const string& name) { removeStrategy(name, initMode); Strategy* strategy = aiObjectContext->GetStrategy(name); if (strategy) { set<string> siblings = aiObjectContext->GetSiblingStrategy(name); for (set<string>::iterator i = siblings.begin(); i != siblings.end(); i++) { removeStrategy(*i, initMode); } LogAction("S:+%s", strategy->getName().c_str()); strategies[strategy->getName()] = strategy; strategy->OnStrategyAdded(state); } if(!initMode) { Init(); } } void Engine::addStrategies(string first, ...) { addStrategy(first); va_list vl; va_start(vl, first); const char* cur; do { cur = va_arg(vl, const char*); if (cur) addStrategy(cur); } while (cur); va_end(vl); } bool Engine::removeStrategy(const string& name, bool init) { map<string, Strategy*>::iterator i = strategies.find(name); if (i == strategies.end()) return false; LogAction("S:-%s", name.c_str()); i->second->OnStrategyRemoved(state); strategies.erase(i); if (init) { Init(); } return true; } void Engine::removeAllStrategies() { strategies.clear(); Init(); } void Engine::toggleStrategy(const string& name) { if (!removeStrategy(name)) addStrategy(name); } bool Engine::HasStrategy(const string& name) { return strategies.find(name) != strategies.end(); } Strategy* Engine::GetStrategy(const string& name) const { auto i = strategies.find(name); if (i != strategies.end()) { return i->second; } return nullptr; } void Engine::ProcessTriggers(bool minimal) { map<Trigger*, Event> fires; for (list<TriggerNode*>::iterator i = triggers.begin(); i != triggers.end(); i++) { TriggerNode* node = *i; if (!node) continue; Trigger* trigger = node->getTrigger(); if (!trigger) { trigger = aiObjectContext->GetTrigger(node->getName()); node->setTrigger(trigger); } if (!trigger) continue; Event& event = fires[trigger]; if (!event & (testMode || trigger->needCheck())) { if (minimal && node->getFirstRelevance() < 100) continue; PerformanceMonitorOperation* pmo = sPerformanceMonitor.start(PERF_MON_TRIGGER, trigger->getName(), &aiObjectContext->performanceStack); event = trigger->Check(); if (pmo) pmo->finish(); if (!event) continue; fires[trigger] = event; LogAction("T:%s", trigger->getName().c_str()); } } for (list<TriggerNode*>::iterator i = triggers.begin(); i != triggers.end(); i++) { TriggerNode* node = *i; Trigger* trigger = node->getTrigger(); Event& event = fires[trigger]; if (!event) continue; MultiplyAndPush(node->getHandlers(), 0.0f, false, event, "trigger"); } for (list<TriggerNode*>::iterator i = triggers.begin(); i != triggers.end(); i++) { Trigger* trigger = (*i)->getTrigger(); if (trigger) trigger->Reset(); } } void Engine::PushDefaultActions() { for (map<string, Strategy*>::iterator i = strategies.begin(); i != strategies.end(); i++) { Strategy* strategy = i->second; MultiplyAndPush(strategy->getDefaultActions(state), 0.0f, false, Event(), "default"); } } string Engine::ListStrategies() { string s; if (strategies.empty()) return s; for (map<string, Strategy*>::iterator i = strategies.begin(); i != strategies.end(); i++) { s.append(i->first); s.append(", "); } return s.substr(0, s.length() - 2); } list<string_view> Engine::GetStrategies() { list<string_view> result; for (const auto& strategy : strategies) { result.push_back(strategy.first); } return result; } void Engine::PushAgain(ActionNode* actionNode, float relevance, const Event& event) { NextAction** nextAction = new NextAction*[2]; nextAction[0] = new NextAction(actionNode->getName(), relevance); nextAction[1] = NULL; MultiplyAndPush(nextAction, relevance, true, event, "again"); delete actionNode; } bool Engine::ContainsStrategy(StrategyType type) { for (map<string, Strategy*>::iterator i = strategies.begin(); i != strategies.end(); i++) { Strategy* strategy = i->second; if (strategy->GetType() & type) return true; } return false; } Action* Engine::InitializeAction(ActionNode* actionNode) { Action* action = actionNode->getAction(); if (!action) { action = aiObjectContext->GetAction(actionNode->getName()); actionNode->setAction(action); } if (action) { action->SetReaction(false); } return action; } bool Engine::ListenAndExecute(Action* action, Event& event) { bool actionExecuted = false; Action* prevExecutedAction = lastExecutedAction; if (actionExecutionListeners.Before(action, event)) { actionExecuted = actionExecutionListeners.AllowExecution(action, event) ? action->Execute(event) : true; if (actionExecuted) { ai->SetActionDuration(action); lastExecutedAction = action; } } string lastActionName = prevExecutedAction ? prevExecutedAction->getName() : ""; if (sPlayerbotAIConfig.CanLogAction(ai, action->getName(), true, lastActionName)) { ostringstream out; out << "do: "; out << action->getName(); if (actionExecuted) out << " 1 ("; else out << " 0 ("; out << std::fixed << std::setprecision(2); out << action->getRelevance() << ")"; if(!event.getSource().empty()) out << " [" << event.getSource() << "]"; if (actionExecuted) { const uint32 actionDuration = action->GetDuration(); if (actionDuration > 0) { out << " (duration: " << ((float)actionDuration / IN_MILLISECONDS) << "s)"; } } ai->TellPlayerNoFacing(ai->GetMaster(), out, PlayerbotSecurityLevel::PLAYERBOT_SECURITY_ALLOW_ALL,true, false); } if (ai->HasStrategy("debug threat", BotState::BOT_STATE_NON_COMBAT)) { ostringstream out; AiObjectContext* context = ai->GetAiObjectContext(); float deltaThreat = LOG_AI_VALUE(float, "my threat::current target")->GetDelta(5.0f); float currentThreat = AI_VALUE2(float, "my threat", "current target"); float tankThreat = AI_VALUE2(float, "tank threat", "current target"); float relThreat = AI_VALUE2(uint8, "threat", "current target"); out << "threat: " << int32(currentThreat)<< "+" << int32(deltaThreat) << " / " << int32(tankThreat) << " ||| " << relThreat; ai->TellPlayerNoFacing(ai->GetMaster(), out); } actionExecuted = actionExecutionListeners.OverrideResult(action, actionExecuted, event); actionExecutionListeners.After(action, actionExecuted, event); return actionExecuted; } void Engine::LogAction(const char* format, ...) { char buf[1024]; va_list ap; va_start(ap, format); vsprintf(buf, format, ap); va_end(ap); lastAction += "|"; lastAction += buf; if (lastAction.size() > 512) { lastAction = lastAction.substr(512); size_t pos = lastAction.find("|"); lastAction = (pos == string::npos ? "" : lastAction.substr(pos)); } if (testMode) { FILE* file = fopen("test.log", "a"); fprintf(file, "%s",buf); fprintf(file, "\n"); fclose(file); } else { Player* bot = ai->GetBot(); if (sPlayerbotAIConfig.logInGroupOnly && !bot->GetGroup()) return; sLog.outDetail( "%s %s", bot->GetName(), buf); } } void Engine::ChangeStrategy(const string& names, string engineType) { vector<string> splitted = split(names, ','); for (vector<string>::iterator i = splitted.begin(); i != splitted.end(); i++) { const char* name = i->c_str(); switch (name[0]) { case '+': { addStrategy(name+1); break; } case '-': { removeStrategy(name+1); break; } case '~': { toggleStrategy(name+1); break; } case '?': { string engineStrategies = engineType; engineStrategies.append(" Strategies: "); engineStrategies.append(ListStrategies()); ai->TellPlayer(ai->GetMaster(), engineStrategies); break; } } } } void Engine::LogValues() { if (testMode) return; Player* bot = ai->GetBot(); if (sPlayerbotAIConfig.logInGroupOnly && !bot->GetGroup()) return; string text = ai->GetAiObjectContext()->FormatValues(); sLog.outDebug( "Values for %s: %s", bot->GetName(), text.c_str()); }
a0b458cb8643c081e524d427a1f508ada0a06f43
c70bf7c87a55b876bec7cfebe61ee0ca6f6ddf6b
/Chapter2/project6.cpp
85dc3d8e59c1b4fc52677121d58e39b06c4e6190
[]
no_license
jake-thewoz/savitch-cpp
46247c309317bb15b63f6bfb174430f7e69dc03f
417d54150adad7d3dd85b91665d63f4515b59af4
refs/heads/master
2023-01-14T17:40:05.798907
2020-11-05T20:08:10
2020-11-05T20:08:10
305,477,161
0
0
null
null
null
null
UTF-8
C++
false
false
2,966
cpp
project6.cpp
/* * This program calculates an hourly paycheck in a realistic manner. * * It takes as input: * 1. The employee's hourly rate * 2. The employee's worked hours * 3. The employee's amount of dependents * * The program outputs: * 1. The gross pay * 2. The amount witheld for each tax and deduction * 3. The net pay * * There will be a few constant variables for social security tax, * federal tax income, state income, union dues per week, dependent * limit, and dependent witholding (if employee has more dependents * than the limit). * * Special rules: overtime hours are any hours over 40 per two-week * period; overtime pay is also a constant variable. */ #include<iostream> using namespace std; int main() { // First we'll start laying down the constants const double SSTAX(0.06), FEDTAX(0.14), STTAX(0.05), UNION_DUES(10.00), DEPENDENT_PEN(35.00), OVERTIME_LIMIT(40), OVERTIME_RATE(1.5); const int DEPENDENT_LIMIT(2); // Now we'll create our other variables double hourlyRate, workedHours, grossPay, netPay, fedTax, stTax, ssTax, otPay; int dependents; char goAgain('y'); cout.setf(ios::fixed); cout.setf(ios::showpoint); cout.precision(2); while (goAgain == 'y' || goAgain == 'Y') { cout << "Enter the number of hours worked the past two weeks:" << endl; cin >> workedHours; cout << "Enter the hourly pay rate:" << endl; cin >> hourlyRate; cout << "Enter the number of dependents:" << endl; cin >> dependents; if (workedHours > (2 * OVERTIME_LIMIT)) { otPay = (workedHours - (OVERTIME_LIMIT * 2)) * hourlyRate * OVERTIME_RATE; grossPay = otPay + (OVERTIME_LIMIT * 2 * hourlyRate); } else { grossPay = workedHours * hourlyRate; otPay = 0.0; } netPay = grossPay; ssTax = grossPay * SSTAX; fedTax = grossPay * FEDTAX; stTax = grossPay * STTAX; netPay = netPay - ssTax - fedTax - stTax; netPay -= UNION_DUES; cout << "Here is your biweekly paycheck calculation." << endl; if (otPay >= 0.01) { cout << "\tRegular Hours:\t\t" << (2 * OVERTIME_LIMIT) << endl << "\tRegular Pay:\t\t$" << (2 * OVERTIME_LIMIT * hourlyRate) << endl; cout << "\tOvertime Hours:\t\t" << (workedHours -(2* OVERTIME_LIMIT)) << endl << "\tOvertime Pay:\t\t$" << otPay << endl << "\tGross Pay:\t\t$" << grossPay << endl; } else { cout << "\tHours Worked:\t\t" << workedHours << endl << "\tHourly Pay:\t\t$" << grossPay << endl; } cout << "\tSocial Security Tax:\t$(" << ssTax << ")\n" << "\tFederal Income Tax:\t$(" << fedTax << ")\n" << "\tState Income Tax:\t$(" << stTax << ")\n" << "\tUnion Dues:\t\t$(" << UNION_DUES << ")\n"; if (dependents > DEPENDENT_LIMIT) { netPay -= DEPENDENT_PEN; cout << "\tLess dependent penalty:\t$(" << DEPENDENT_PEN << ")\n"; } cout << "\tNet Pay:\t\t$" << netPay << endl; cout << "Would you like to run this again? (y|n)" << endl; cin >> goAgain; } return 0; }
8438f79821258c6c56e6f480445f09111fa91384
de70252e00ff90cf2202bb6fc5d25cae5a0b9a09
/Application/Application.cpp
3115f955cf6cc839a887155d5090334cff525f5d
[]
no_license
xjavorkas/Console
66d1dc51fac7a8dfc6b13c6bb3105d0ccfdfe408
fea010141bdf690fffc6aa95df39aba54f8e2488
refs/heads/master
2021-01-12T11:59:46.280909
2016-10-02T19:44:45
2016-10-02T19:44:45
68,852,815
0
0
null
2016-09-21T19:58:11
2016-09-21T19:58:11
null
UTF-8
C++
false
false
2,373
cpp
Application.cpp
// ConsoleApplication1.cpp : Defines the entry point for the console application. // Samuel Javorka, orezanie (cut) #include "stdafx.h" #include <stdlib.h> #include <string> #include "..\Library\Library.h" #include <iostream> void DisplayUsage(char * appPath) { char drive[_MAX_DRIVE]; char dir[_MAX_DIR]; char fname[_MAX_FNAME]; char ext[_MAX_EXT]; _splitpath_s(appPath, drive, dir, fname, ext); std::cout << fname << std::endl; std::cout << "\t-h - help" << std::endl; } /* max - kolko znakov/segmentov chceme vypísať delim - ak != 0, tak potom delitel segmentov */ void cut(unsigned int max, int delim, char *path); int main(int argc, char **argv) { int c; char *ptr; int delim = 0; int max = 0; char *path = NULL; if (argc == 1) { DisplayUsage(argv[0]); } else { while ((c = getopt(argc, argv, "hd:m:f:")) != EOF) { switch (c) { case 'h': DisplayUsage(argv[0]); return 0; case 'd': // prvý znak zo špecifikacie je oddelovať delim = optarg[0]; break; case 'f': path = optarg; break; case 'm': max = strtol(optarg, &ptr, 10); break; case '?': std::wcout << "Chybny parameter '" << argv[optind - 1] << "'" << std::endl; DisplayUsage(argv[0]); return -1; default: std::wcout << "Neznamy parameter '" << (char)c << "'" << std::endl; DisplayUsage(argv[0]); return -1; } } } cut(max, delim, path); return 0; } void cut(unsigned int max, int delim, char *path) { // ak nešpecifikujeme max, vypíše prvý segment/znak if (!max) max = 1; unsigned int charCounter = 0; unsigned int segmentCounter = 0; FILE *file = stdin; if (path != NULL) { file = fopen(path, "r"); if (file == NULL) { std::cout << "nepodarilo sa otvorit subor" << std::endl; return; } } // read vstup, znak po znaku for (int ch = 0; (ch = fgetc(file)) != EOF; ++charCounter) { if (ch == '\n') { charCounter = segmentCounter = 0; } if (ch == delim) { ++segmentCounter; // continue; //odkomentovat ak chceme vypisat bez delicu } if ((!delim && charCounter < max) || delim && segmentCounter < max) { putchar(ch); } // možme breaknut, nečitame dalej // else // break; } if (path != NULL) fclose(file); }
499ef02ccab0a8cbc367be9f585c70db8e9eaac4
baea902246e853956f78a3a17fcb76a42d4ec574
/Vertex.h
a3913cd082bd458d9fa8e8cc68ea57b34be549c7
[]
no_license
Keehyuklee/SpanningTree
9f2f4d8896a44389696f436e48b0aa9ce4fdcba4
1a86218d56f1051ab1538e54f091ee574702e5fd
refs/heads/master
2020-03-08T01:34:11.676448
2018-05-18T18:32:40
2018-05-18T18:32:40
127,834,275
0
0
null
null
null
null
UTF-8
C++
false
false
312
h
Vertex.h
#ifndef Vertex_H_ #define Vertex_H_ #include <iostream> #include "Edge.h" class Vertex { friend class SpanningTree; friend class Graph; friend class Edge; private: char name[15]; Vertex* vNext; Edge* adj; public: Vertex(void); ~Vertex(void); void setname(char* c); }; #endif
cad396e6935a7f8246fc8a76a3e7fe7acddfd814
fb44e5932fdb3e3c3695564bbbee8c4483e1b974
/src/parser/parser_std.cpp
14caa83ce130567655acc5c24b76b4b78e28e6bc
[]
no_license
EnguerrandPrebet/Projet-2
0a0dbee1fa7b54b91de88e8feb4185589b8b2ab9
e4fa3205b6d511454d78319d3db15189cccf46f3
refs/heads/master
2021-01-18T22:59:51.448664
2016-05-19T17:19:28
2016-05-19T17:19:28
52,955,278
1
0
null
null
null
null
UTF-8
C++
false
false
630
cpp
parser_std.cpp
#include <cstdio> #include <cstdlib> #include <iostream> #include "formula_input.hpp" #include "std.tab.hpp" #include "../DPLL/global.hpp" using namespace std; extern FILE *stddin; extern FILE *stddout; extern int stddparse(void); extern Formula_input *res_std; Formula_input* parser_std() { // parse through the input until there is no more: do { stddparse(); Global::DEBUG(1) << "Post-parser" << endl; Global::DEBUG(1) << res_std->to_string() << endl << endl; } while (!feof(stddin)); return res_std; } void stdderror(const char *s) { Global::ERROR() << "parse error! Message: " << s << endl; exit(0); }
9589859adf39d2b72c751bac2deae3da11deaf3a
f679bf935a00fad933fb6237ed486456b907d480
/debounce/examples/nano-debounce/nano-debounce.ino
33c90ae79c9f2eefd0d938ccf4996f5deaa81dbd
[]
no_license
LimeProgramming/rpi
da3b278578eae27c97bc70929be697fe2694fd9d
9bed84eeb518a0348ddefe1acaa403ccc490212e
refs/heads/master
2023-09-05T16:52:48.764546
2021-11-10T16:04:32
2021-11-10T16:04:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
247
ino
nano-debounce.ino
#include <debounce.h> #define led LED_BUILTIN Debounce sw(7); void setup() { Serial.begin(115200); pinMode(led, OUTPUT); } void loop() { if (sw.falling()){ Serial.println("Falling"); digitalWrite(led, 1 - digitalRead(led)); } }
49c3a4435735e0979bc192981eab147137cf0063
4f6fdd81ab8cc7c23aae58e42477f3eb3a35f71a
/Students/datadictionary.h
8d471e87a580d8377e8e0516159a1dc19fffb388
[ "Apache-2.0" ]
permissive
TmSakura/C-Qt-StudentManagementSystem-Multi-Users
58371591d3c799d7802938ec21ac9b7ae2f4de88
c0265e1ea2c675d461b03447e9af4ebfe4874723
refs/heads/main
2023-04-10T09:54:53.501416
2021-04-28T18:29:35
2021-04-28T18:29:35
347,852,291
23
3
null
null
null
null
UTF-8
C++
false
false
3,280
h
datadictionary.h
#ifndef DATADICTIONARY_H #define DATADICTIONARY_H #include <QMainWindow> #include <QtSql> #include <QDebug> #include <QMessageBox> #include <QInputDialog> namespace Ui { class DataDictionary; } class DataDictionary : public QMainWindow { Q_OBJECT public: explicit DataDictionary(QString username,QWidget *parent = nullptr); ~DataDictionary(); void updataData_nation(); void updataData_political(); void updataData_province(); void updataData_city(); void updataData_university(); void updataData_college(); void updataData_profession(); void updataData_status(); void updataData_socialStatus(); void updataData_blood(); void updataData_eye(); void updataData_skin(); void updataData_subject(); void updataData_year(); void updataData_semester(); void updataData_typeOfExam(); private: Ui::DataDictionary *ui; QSqlDatabase db; QSqlQuery *query; QString username; QString read; QString write; QString remove; QString search; QString print; QString import; QString admin; signals: void needUpdataData(); //接收者StudentInfo类 private slots: void clickPushButton_addNation(); void clickPushButton_editNation(); void clickPushButton_deleteNation(); void clickPushButton_addPolitical(); void clickPushButton_editPolitical(); void clickPushButton_deletePolitical(); void clickPushButton_addProvince(); void clickPushButton_editProvince(); void clickPushButton_deleteProvince(); void clickPushButton_addCity(); void clickPushButton_editCity(); void clickPushButton_deleteCity(); void clickPushButton_addUniversity(); void clickPushButton_editUniversity(); void clickPushButton_deleteUniversity(); void clickPushButton_addCollege(); void clickPushButton_editCollege(); void clickPushButton_deleteCollege(); void clickPushButton_addProfession(); void clickPushButton_editProfession(); void clickPushButton_deleteProfession(); void clickPushButton_addStatus(); void clickPushButton_editStatus(); void clickPushButton_deleteStatus(); void clickPushButton_addSocialStatus(); void clickPushButton_editSocialStatus(); void clickPushButton_deleteSocialStatus(); void clickPushButton_addBlood(); void clickPushButton_editBlood(); void clickPushButton_deleteBlood(); void clickPushButton_addEye(); void clickPushButton_editEye(); void clickPushButton_deleteEye(); void clickPushButton_addSkin(); void clickPushButton_editSkin(); void clickPushButton_deleteSkin(); void clickPushButton_addSubject(); void clickPushButton_editSubject(); void clickPushButton_deleteSubject(); void clickPushButton_addYear(); void clickPushButton_editYear(); void clickPushButton_deleteYear(); void clickPushButton_addSemester(); void clickPushButton_editSemester(); void clickPushButton_deleteSemester(); void clickPushButton_addTypeOfExam(); void clickPushButton_editTypeOfExam(); void clickPushButton_deleteTypeOfExam(); }; #endif // DATADICTIONARY_H
a3abec9ebadc82437cf7316895dcde87533cc784
e88f8d973fd9e725d6041670c57b016b95eb5571
/10361 - Automatic Poetry.cpp
d0f21e02ccde3c0d16d3dab47dffa86f388b0bd9
[]
no_license
rhasanrakib/UVA-Problem-Solved-
577a49ec041e7ab322e4413bac8b3bd93327f4b6
5bdf5fc284c80979f8018ecd9c5719895a0d2462
refs/heads/master
2023-03-13T04:21:03.762698
2021-02-28T10:03:24
2021-02-28T10:03:24
132,423,088
1
0
null
null
null
null
UTF-8
C++
false
false
1,445
cpp
10361 - Automatic Poetry.cpp
#include<bits/stdc++.h> using namespace std; int main() { char s1[500]; char s2[500]; stack<string>stk; queue<string>qe; int a,b,c,d,i,j,k,l,n,t; cin>>n; getchar(); string s3=""; char ch[100]; for(t=1; t<=n; t++) { gets(s1); gets(s2); int len=strlen(s1); int len2=strlen(s2); for(i=0;i<len;i++) { if(s1[i]=='<' || s1[i]=='>') continue; printf("%c",s1[i]); } printf("\n"); for(i=0;i<len2;i++) { if(s2[i]!='.') printf("%c",s2[i]); } for(j=0; j<len; j++) { if(s1[j]=='<') { k=j+1; l=0; while(s1[k]!='>') { ch[l++]=s1[k]; k++; } ch[l]='\0'; s3+=ch; stk.push(s3); s3=""; } if(s1[j]=='>') { k=j+1; l=0; while(s1[k]!='<') { if(s1[k]=='\0')break; ch[l++]=s1[k]; k++; } ch[l]='\0'; s3+=ch; qe.push(s3); s3=""; } } cout<<stk.top()<<qe.front(); stk.pop();qe.pop(); cout<<stk.top()<<qe.front(); stk.pop();qe.pop(); cout<<endl; } return 0; }
4d8c82feaae3bffe82337b3dc4b4f25e87c98402
49427f4ed9004ddadeca6f9b7a7a048a0381c257
/Software/gridMeter/indicator.cpp
ca4c76ef5d6eb51b0e61cce10500b4fc4f776c8e
[ "MIT" ]
permissive
re-innovation/gridMeter
e31e11f588be39e7feee5e88a17db2fd224cfbff
651c2d3036f411b4635e32f6e00f7829ef7a0c08
refs/heads/master
2021-01-17T12:49:10.141679
2017-03-30T07:42:12
2017-03-30T07:43:15
59,817,374
0
0
null
null
null
null
UTF-8
C++
false
false
5,752
cpp
indicator.cpp
/* * indicator.cpp * * Provides indicator functionality for the grid meter. * The current indicator is a BYJ48 geared stepper motor. * Homing is provided by an IR photoreflector. * */ /* * Arduino Includes */ #include <Arduino.h> #include <SoftwareSerial.h> #include "stepper.h" /* * Application Includes */ #include "indicator.h" /* * Defines and Typedefs */ #define MOTOR_PIN_1 (1) // Arduino digital pin 1 = physical pin 12, PA1) #define MOTOR_PIN_2 (2) // Arduino digital pin 2 = physical pin 11, PA2) #define MOTOR_PIN_3 (8) // Arduino digital pin 8 = physical pin 5, PB2) #define MOTOR_PIN_4 (7) // Arduino digital pin 7 = physical pin 6, PA7) #define HOME_OUT_PIN (9) // Arduino digital pin 9 = physical pin 3, PB1) #define HOME_IN_PIN (0) // Arduino digital pin 0 = physical pin 3, PA0) #define HOME_PHOTODETECT_THRESHOLD (150) /* * Module scope objects and variables */ static Stepper s_stepper(MOTOR_PIN_1, MOTOR_PIN_3, MOTOR_PIN_2, MOTOR_PIN_4); static const float STEPS_PER_DEGREE = (float)STEPS_PER_REV / 360.0; // Set the movement range and deadzone here static const int16_t STEPS_AT_MIN_FREQ_LIMIT = (int16_t)(-45.0 * STEPS_PER_DEGREE); static const int16_t STEPS_AT_MAX_FREQ_LIMIT = (int16_t)(45.0 * STEPS_PER_DEGREE); static const int16_t MOVEMENT_DEADZONE = (int16_t)(6.0 * STEPS_PER_DEGREE); static int16_t s_current_position = 0; static int16_t s_target_position = 0; static uint16_t s_us_per_step = 0; static uint16_t s_last_step_time = 0; static uint8_t s_pinStates[4] = {LOW, LOW, LOW, LOW}; extern SoftwareSerial s_serial; /* * Public Functions */ static void move_one_step_towards_target() { if (s_target_position > s_current_position) { s_stepper.step(1); s_current_position++; } else { s_stepper.step(-1); s_current_position--; } } static bool move_is_required() { return s_target_position != s_current_position; } static bool step_time_elapsed(uint32_t timer) { uint32_t us_since_last_step = timer - s_last_step_time; us_since_last_step *= 4; return (timer - s_last_step_time) >= s_us_per_step; } static void debug_home_pin_analog(int analog_value) { static unsigned long last_time = 0; if ((millis() - last_time) > 100) { last_time = millis(); s_serial.println(analog_value); } } void indicator_setup() { pinMode(MOTOR_PIN_1, OUTPUT); pinMode(MOTOR_PIN_2, OUTPUT); pinMode(MOTOR_PIN_3, OUTPUT); pinMode(MOTOR_PIN_4, OUTPUT); s_serial.print("Deadzone: "); s_serial.print(MOVEMENT_DEADZONE); s_serial.println("steps"); } void indicator_tick(uint16_t timer) { if(s_stepper.enabled() && move_is_required() && (step_time_elapsed(timer))) { move_one_step_towards_target(); s_last_step_time = timer; } } /* indicator_moveto_freq * Sets target needle location and movement speed. Does not block. */ int indicator_moveto_freq(uint16_t freq, uint16_t timer) { // Ensure the needle does not move beyond limits by constraining the input freq = constrain(freq, MIN_FREQ_LIMIT, MAX_FREQ_LIMIT); // Convert the input frequency to new position int16_t new_target = map(freq, MIN_FREQ_LIMIT, MAX_FREQ_LIMIT, STEPS_AT_MIN_FREQ_LIMIT, STEPS_AT_MAX_FREQ_LIMIT); // Only move if the new target is outside the deadzone if(abs(new_target - s_current_position) >= MOVEMENT_DEADZONE) { s_target_position = new_target; s_serial.print("Target: "); s_serial.print(freq); s_serial.print("("); s_serial.print(new_target); s_serial.print(" steps, d="); s_serial.print(new_target - s_current_position); s_serial.println(")"); // Make speed of movement is relative to distance to travel // More distance -> more speed // This means that time-to-move should be equal for all distance // this looks best as it avoids the needle quickly jumping between positions s_us_per_step = 1000000UL / abs(s_target_position - s_current_position); s_last_step_time = timer; if (!s_stepper.enabled()) { s_serial.println("Motor enable"); s_stepper.enable(); } } else { if (s_stepper.enabled()) { s_serial.println("Motor disable"); s_stepper.disable(); } } return s_us_per_step; } /* indicator_moveto_freq * Sets target needle location and moves until reached. */ void indicator_moveto_freq_blocking(uint16_t freq) { freq = constrain(freq, MIN_FREQ_LIMIT, MAX_FREQ_LIMIT); s_target_position = map(freq, MIN_FREQ_LIMIT, MAX_FREQ_LIMIT, STEPS_AT_MIN_FREQ_LIMIT, STEPS_AT_MAX_FREQ_LIMIT); while(s_target_position != s_current_position) { move_one_step_towards_target(); _delay_ms(3); } } void indicator_home() { // Turn on the IR LED in the photoreflector pinMode(HOME_OUT_PIN, OUTPUT); digitalWrite(HOME_OUT_PIN, HIGH); // Delay allows for response time of phototransistor // Otherwise the correct start state isn't found _delay_ms(10); // Get the initial state of phototransistor // Then move motor (forwards or backwards, depending) // until the state changes int start_state = analogRead(HOME_IN_PIN); int val; bool homed = false; int step_direction = start_state < HOME_PHOTODETECT_THRESHOLD ? 1 : -1; s_serial.print("Moving "); s_serial.println(step_direction > 0 ? "CW": "CCW"); while (!homed) { s_stepper.step(step_direction); _delay_ms(4); val = analogRead(HOME_IN_PIN); // Motor is homed if the value has passed the threshold (test both directions) homed = ((val >= HOME_PHOTODETECT_THRESHOLD) && (start_state < HOME_PHOTODETECT_THRESHOLD)); homed = homed || ((val <= HOME_PHOTODETECT_THRESHOLD) && (start_state > HOME_PHOTODETECT_THRESHOLD)); debug_home_pin_analog(val); } // Turn off the IR LED digitalWrite(HOME_OUT_PIN, LOW); pinMode(HOME_OUT_PIN, INPUT); // Now homed, so reset the current position s_current_position = 0; }
53bfac5066596f81548e16e6841bf7336945e5a4
2d9fe1e589fc95176d4e62f68ccb1afb476740c8
/Q5/client.cpp
2104bca8ff3b7caf67873c61cf401192696e7777
[]
no_license
pkc232/ComputerNetworksLab
450a20f47baf1075bf8e45112303d00b5c828719
8219720b9a266e07375d1f09b972186cd9a6868f
refs/heads/master
2020-04-07T07:00:52.060743
2018-11-19T04:04:41
2018-11-19T04:04:41
158,160,048
1
1
null
null
null
null
UTF-8
C++
false
false
2,093
cpp
client.cpp
#include <bits/stdc++.h> #include <sys/socket.h> #include <netinet/ip.h> #include <stdlib.h> #include <stdio.h> #include <string.h> #include <netinet/tcp.h> #include <arpa/inet.h> using namespace std; unsigned short csum(unsigned short *ptr,int nbytes) { register long sum; unsigned short oddbyte; register short answer; sum=0; while(nbytes>1) { sum+=*ptr++; nbytes-=2; } if(nbytes==1) { oddbyte=0; *((u_char*)&oddbyte)=*(u_char*)ptr; sum+=oddbyte;recvfrom(rsfd,buf,1 } sum = (sum>>16)+(sum & 0xffff); sum = sum + (sum>>16); answer=(short)~sum; return(answer); } int main() { int rsfd = socket(AF_INET,SOCK_RAW,IPPROTO_TCP); if(rsfd<0) { cout<<"Socket error!"<<endl; return 1; } struct sockaddr_in server,client; server.sin_family = AF_INET; server.sin_addr.s_addr = inet_addr("127.0.0.1"); int one = 1; setsockopt(rsfd,IPPROTO_IP, ,&one,sizeof(one)); struct iphdr* ip; char* buf = (char*)malloc(10000); strcpy((char*)(buf+sizeof(struct iphdr)),"Client"); ip = (struct iphdr*)buf; ip->saddr = inet_addr("127.0.0.1"); ip->daddr = inet_addr("127.0.0.1"); ip->protocol = 50; ip->tot_len = sizeof(struct iphdr)+7; ip->check = csum ((unsigned short *) buf, ip->tot_len); ip->ihl = 5; ip->ttl = 255; ip->version = 4; ip->tos = 0; ip->id = htonl(56789); int len = sizeof(struct iphdr)+7; int sent_bytes = sendto(rsfd,buf,len,0,(struct sockaddr*)&server,sizeof(server)); cout<<"Sent bytes: "<<sent_bytes<<endl; int nsfd = socket(AF_INET,SOCK_RAW,51); one = 0; while(true) { struct sockaddr_in client; char* rbuf = (char*)malloc(10000); strcpy(rbuf,""); socklen_t socklen = sizeof(struct sockaddr_in); while(true) { cout<<"before"<<endl; int recv_bytes = recvfrom(nsfd,rbuf,10000,0,(struct sockaddr*)&client,&socklen); cout<<"rb: "<<recv_bytes<<endl; if(recv_bytes>0) break; } char* data= (char*)(rbuf+sizeof(struct iphdr)); cout<<data<<endl; int port = atoi(data); cout<<"Server's port: "<<port<<endl; } return 0; }
28710321d80b3e77b3f70d9103d7f2bb0e8bd272
69b3067f21c45db9fd16cf825cdab8edf46bd0b3
/SDK-A13/usr/arm-obreey-linux-gnueabi/sysroot/usr/local/include/common_utilities/common_utilities.h
6a695a69a3293e457746558746b2027df21ddcd7
[]
no_license
c3pio-man/SDK_6.3.0
0d0b2bd3698bce00d82f64cdef3c06ac61b8f253
cb54259cac9cf20154c75e2aa5385c19f9cb2979
refs/heads/master
2023-07-06T10:07:03.739396
2019-10-23T08:24:43
2019-10-23T08:24:43
185,983,208
0
1
null
2019-05-10T12:18:12
2019-05-10T12:18:12
null
UTF-8
C++
false
false
372
h
common_utilities.h
#ifndef COMMON_UTILITIES_H #define COMMON_UTILITIES_H #include <string> namespace pocketbook { namespace utilities { // return 0 - successfull, 1 - error int RunAdobeScanner(const std::string& file_path, const std::string& png_path, int width = 0, int height = 0, bool metadata = true); } // namespace utilities } // namespace pocketbook #endif // COMMON_UTILITIES_H
0d465f15a276c22e1223b16dd35bb66bb1f9282c
2cd0803ba1e648d591cb3bae11e879de179f0f93
/Contests/_Archived/Old-Dell/Nowcoder/200b.cpp
6469cb30afc2be7e4018ce72410d4ed3a839c210
[ "MIT" ]
permissive
DCTewi/CodeWorkspace
62e323fc126d92c9e20c711cae4bac9220907e64
9904f8057ec96e21cbc8cf9c62a49658a0f6d392
refs/heads/master
2023-05-31T23:46:55.126704
2021-06-23T12:11:45
2021-06-23T12:11:45
175,194,197
0
0
null
null
null
null
UTF-8
C++
false
false
4,318
cpp
200b.cpp
#include<bits/stdc++.h> using namespace std; #define int long long const int maxn=100000+10; int n,m; struct Node { int l,r; int sum1,sum2,sum3; int add,mul,alt; void Update_Alt(int x) { sum1 = (r-l+1) * x; sum2 = (r-l+1) * x * x; sum3 = (r-l+1) * x * x * x; alt=x; add=0; mul=1; } void Update_Mul(int x) { sum1 = sum1 * x; sum2 = sum2 * x * x; sum3 = sum3 * x * x * x; mul = mul * x; add = add * x; } void Update_Add(int x) { sum3 = ( sum3 + 3*x*sum2 + 3*x*x*sum1 + (r-l+1)*x*x*x ); sum2 = ( sum2 + 2*x*sum1 + (r-l+1)*x*x ); sum1 = ( sum1 + (r-l+1)*x ); add=(add+x); } }node[4*maxn]; void Pushdown(int root) { int ls=root*2, rs=root*2+1; if(node[root].alt!=0) { node[ls].Update_Alt(node[root].alt); node[rs].Update_Alt(node[root].alt); node[root].alt=0; } if(node[root].mul!=1) { node[ls].Update_Mul(node[root].mul); node[rs].Update_Mul(node[root].mul); node[root].mul=1; } if(node[root].add!=0) { node[ls].Update_Add(node[root].add); node[rs].Update_Add(node[root].add); node[root].add=0; } } void Pushup(int root) { int ls=root*2, rs=root*2+1; node[root].sum1=(node[ls].sum1+node[rs].sum1); node[root].sum2=(node[ls].sum2+node[rs].sum2); node[root].sum3=(node[ls].sum3+node[rs].sum3); } void Build(int root,int l,int r) //对区间[l,r]建树 { if(l>r) return; node[root].l=l; node[root].r=r; node[root].sum1=0; node[root].sum2=0; node[root].sum3=0; node[root].alt=0; node[root].add=0; node[root].mul=1; if(l<r) { int mid=l+(r-l)/2; Build(root*2,l,mid); Build(root*2+1,mid+1,r); Pushup(root); } } void Alt(int root,int st,int ed,int val) //区间[st,ed]全部改成val { if(st>node[root].r || ed<node[root].l) return; if(st<=node[root].l && node[root].r<=ed) node[root].Update_Alt(val); else { Pushdown(root); Alt(root*2,st,ed,val); Alt(root*2+1,st,ed,val); Pushup(root); } } void Mul(int root,int st,int ed,int val) //区间[st,ed]全部加上val { if(st>node[root].r || ed<node[root].l) return; if(st<=node[root].l && node[root].r<=ed) node[root].Update_Mul(val); else { Pushdown(root); Mul(root*2,st,ed,val); Mul(root*2+1,st,ed,val); Pushup(root); } } void Add(int root,int st,int ed,int val) //区间[st,ed]全部加上val { if(st>node[root].r || ed<node[root].l) return; if(st<=node[root].l && node[root].r<=ed) node[root].Update_Add(val); else { Pushdown(root); Add(root*2,st,ed,val); Add(root*2+1,st,ed,val); Pushup(root); } } int Query(int root,int st,int ed,int p) //查询区间[st,ed]的p次方和 { if(st>node[root].r || ed<node[root].l) return 0; if(st<=node[root].l && node[root].r<=ed) { if(p==1) return node[root].sum1; if(p==2) return node[root].sum2; if(p==3) return node[root].sum3; } else { Pushdown(root); int ls=Query(root*2,st,ed,p); int rs=Query(root*2+1,st,ed,p); Pushup(root); return (ls+rs); } return 0; } signed main() { while (~scanf("%lld%lld",&n,&m) && n && m) { Build(1,1,n); for (int i = 1; i <= n; i++) { int no; scanf("%lld", &no); Add(1, i, i, no); } for(int i=1;i<=m;i++) { int op; scanf("%lld",&op); if(op==4) { int x,y,k; scanf("%lld%lld%lld",&x,&y,&k); Add(1,x,y,k); } if(op==3) { int x,y,k; scanf("%lld%lld%lld",&x,&y,&k); Mul(1,x,y,k); } if(op==2) { int l,r; scanf("%lld%lld",&l,&r); printf("%lld\n",Query(1,l,r,2)); } if(op==1) { int l,r; scanf("%lld%lld",&l,&r); printf("%lld\n",Query(1,l,r,1)); } } } }
634781b549e20ecab1962f09c45273f545171e78
6763bd19878c9be2570667103e4e074b0cf63985
/mainwindow.cpp
948f28b7ed825a79ba352ad9c14b7ef09124943c
[]
no_license
jonathanschilling/img_to_coord
7850ec2874aad814536af0e5ec2d81dabaab8a2f
e955201081939b0bb7438c06593c01e217ccee88
refs/heads/master
2020-05-21T08:09:51.577183
2019-05-10T11:18:16
2019-05-10T11:18:16
185,974,335
0
0
null
null
null
null
UTF-8
C++
false
false
3,280
cpp
mainwindow.cpp
#include "mainwindow.h" #include "ui_mainwindow.h" MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) { ui->setupUi(this); // x_start = 324; // x_end = 905; // y_start = 571; // y_end = 198; // x_dim = 60; // y_dim = 36; // dimensions of green rectangle => dimensions of electrode interspace x_start = 300; // px x_end = 905; // px y_start = 436; // px y_end = 118; // px x_dim = 60; // mm y_dim = 30; // mm //QPixmap empty(1600, 896); QPixmap empty(1280, 720); // image size label = new mouseLabel(this); label->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); ui->centralWidget->layout()->addWidget(label); label->setPixmap(empty); connect(label, SIGNAL(mousePressed(QMouseEvent*)), this, SLOT(slot_mouse_pressed(QMouseEvent*))); current_file=0; label->setCursor(QCursor(Qt::CrossCursor)); outfile.open("positions.dat", std::ios::out | std::ios::ate); if (!outfile.is_open()) { qDebug() << "error opening positions.dat!"; qApp->quit(); } } MainWindow::~MainWindow() { delete ui; outfile.close(); } void MainWindow::set_arguments(int _argc, char **_argv) { this->argc = _argc; this->argv = _argv; for (int i=1; i<argc; ++i) { files.append(QString(argv[i])); } if (files.size() > 0) { pm_temp = QPixmap(files.at(0)); ptr_tmp = new QPainter(&pm_temp); ptr_tmp->setPen(Qt::green); ptr_tmp->drawRect(x_start, y_start, (x_end-x_start), (y_end-y_start)); label->setPixmap(pm_temp); ptr_tmp->end(); this->setWindowTitle(files.at(0)); } } void MainWindow::slot_mouse_pressed(QMouseEvent *event) { double x_factor = x_dim/((double)x_start-(double)x_end); double y_factor = y_dim/((double)y_start-(double)y_end); //qDebug() << "mouse press position: " << event->pos(); //qDebug() << "current file: " << files.at(current_file); // calc next index if (event->button() == Qt::LeftButton) { // right mouse click appends clicked position and loads next image double realSpaceX = ((double)x_start - (double)event->pos().x())*x_factor; double realSpaceY = ((double)y_start - (double)event->pos().y())*y_factor; qDebug() << files.at(current_file) << " " << realSpaceX << " " << realSpaceY; outfile << files.at(current_file).toLatin1().data() << " " << realSpaceX << " " << realSpaceY << std::endl; outfile.flush(); if (current_file == files.size()-1) { current_file = 0; } else { ++current_file; } } else if (event->button() == Qt::RightButton) { // right mouse button brings you back one image if (current_file == 0) { current_file = files.size()-1; } else { --current_file; } } // show next pic pm_temp = QPixmap(files.at(current_file)); ptr_tmp = new QPainter(&pm_temp); ptr_tmp->setPen(Qt::green); ptr_tmp->drawRect(x_start, y_start, (x_end-x_start), (y_end-y_start)); label->setPixmap(pm_temp); ptr_tmp->end(); this->setWindowTitle(files.at(current_file)); }
bfe595e0c310c412d97fc7833ef42331b9dabb90
f9e8c2909077ae841354163cc113b4a6f1449b84
/Cpp/execrise/NumberOf1Between1AndN_Solution.cpp
d1f1c2855e801ba455ae4b5e9a90c8ecadbbb3c8
[]
no_license
roommmmmmmm/c_exercise
1cbd04a0c9e184cedbceee29fc6721cd0f8238eb
088506369b7b9e89afe0edc5829ddb57d7cb3a86
refs/heads/master
2020-05-21T15:02:33.321276
2016-11-14T10:26:08
2016-11-14T10:26:08
65,726,012
0
0
null
null
null
null
UTF-8
C++
false
false
944
cpp
NumberOf1Between1AndN_Solution.cpp
class Solution { public: int NumberOf1Between1AndN_Solution(int n){ /*int ones = 0; for (long long m = 1; m <= n; m *= 10) ones += (n/m + 8) / 10 * m + (n/m % 10 == 1) * (n%m + 1); return ones;*/ int count = 0; for(int i = 0; i <= n; i++){ int temp = i; while(temp){ if(temp % 10 == 1) count++; temp /= 10; } } return count; } }; // 题目描述 // 求出1~13的整数中1出现的次数,并算出100~1300的整数中1出现的次数?为此他特别数了一下1~13中包含1的数字有1、10、11、12、13因此共出现6次,但是对于后面问题他就没辙了。ACMer希望你们帮帮他,并把问题更加普遍化,可以很快的求出任意非负整数区间中1出现的次数。 // 答案出处 https://leetcode.com/discuss/44281/4-lines-o-log-n-c-java-python
6290a8395bb75708bfdc236c3bf711e5f1eaa9c7
5c8a0d7752e7c37e207f28a7e03d96a5011f8d68
/MapTweet/iOS/Classes/Native/AssemblyU2DCSharp_OnlineMapsTileSetControl3368302803.h
960e08c07198c301cf1ceaaff99ff8aaedcd3c17
[]
no_license
anothercookiecrumbles/ar_storytelling
8119ed664c707790b58fbb0dcf75ccd8cf9a831b
002f9b8d36a6f6918f2d2c27c46b893591997c39
refs/heads/master
2021-01-18T20:00:46.547573
2017-03-10T05:39:49
2017-03-10T05:39:49
84,522,882
1
0
null
null
null
null
UTF-8
C++
false
false
46,840
h
AssemblyU2DCSharp_OnlineMapsTileSetControl3368302803.h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> // System.Action`2<OnlineMapsTile,UnityEngine.Material> struct Action_2_t2903233652; // System.Predicate`1<OnlineMapsMarker> struct Predicate_1_t1935136797; // System.Action`2<UnityEngine.Vector2,UnityEngine.Vector2> struct Action_2_t3492767325; // System.Action struct Action_t3226471752; // System.Func`2<OnlineMapsMarker,System.Single> struct Func_2_t2022702331; // System.String struct String_t; // UnityEngine.GameObject struct GameObject_t1756533147; // UnityEngine.Shader struct Shader_t2430389951; // OnlineMapsRange struct OnlineMapsRange_t3791609909; // System.Collections.Generic.IComparer`1<OnlineMapsMarker> struct IComparer_1_t1446629804; // UnityEngine.Material struct Material_t193706927; // OnlineMapsVector2i struct OnlineMapsVector2i_t2180897250; // OnlineMapsBingMapsElevation struct OnlineMapsBingMapsElevation_t2714164788; // System.Int16[0...,0...] struct Int16U5BU2CU5D_t3104283264; // UnityEngine.MeshCollider struct MeshCollider_t2718867283; // UnityEngine.Mesh struct Mesh_t1356156583; // System.Int32[] struct Int32U5BU5D_t3030399641; // UnityEngine.Vector2[] struct Vector2U5BU5D_t686124026; // UnityEngine.Vector3[] struct Vector3U5BU5D_t1172311765; // System.Collections.Generic.List`1<OnlineMapsTileSetControl/TilesetFlatMarker> struct List_1_t2920006219; // UnityEngine.Color32[] struct Color32U5BU5D_t30278651; // UnityEngine.BoxCollider struct BoxCollider_t22920061; // System.Collections.Generic.List`1<UnityEngine.Vector3> struct List_1_t1612828712; // System.Func`2<OnlineMapsMarker,OnlineMapsMarker> struct Func_2_t3438359081; // System.Func`2<OnlineMapsMarker,System.Double> struct Func_2_t4024208080; // System.Func`2<OnlineMapsTileSetControl/TilesetSortedMarker,System.Single> struct Func_2_t1961126510; // System.Func`2<OnlineMapsTileSetControl/TilesetSortedMarker,OnlineMapsMarker> struct Func_2_t3376783260; #include "AssemblyU2DCSharp_OnlineMapsControlBase3D2801313279.h" #include "AssemblyU2DCSharp_OnlineMapsTilesetCheckMarker2DVi1564781124.h" #include "AssemblyU2DCSharp_OnlineMapsTileSetControl_OnlineM3256055626.h" #include "AssemblyU2DCSharp_OnlineMapsTilesetDrawingMode2982024227.h" #include "AssemblyU2DCSharp_OnlineMapsTileSetControl_Elevati1983507059.h" #include "UnityEngine_UnityEngine_Vector22243707579.h" #include "UnityEngine_UnityEngine_Vector32243707580.h" #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // OnlineMapsTileSetControl struct OnlineMapsTileSetControl_t3368302803 : public OnlineMapsControlBase3D_t2801313279 { public: // System.Action`2<OnlineMapsTile,UnityEngine.Material> OnlineMapsTileSetControl::OnChangeMaterialTexture Action_2_t2903233652 * ___OnChangeMaterialTexture_69; // System.Predicate`1<OnlineMapsMarker> OnlineMapsTileSetControl::OnCheckMarker2DVisibility Predicate_1_t1935136797 * ___OnCheckMarker2DVisibility_70; // System.Action`2<OnlineMapsTile,UnityEngine.Material> OnlineMapsTileSetControl::OnDrawTile Action_2_t2903233652 * ___OnDrawTile_71; // System.Action`2<UnityEngine.Vector2,UnityEngine.Vector2> OnlineMapsTileSetControl::OnGetElevation Action_2_t3492767325 * ___OnGetElevation_72; // System.Action OnlineMapsTileSetControl::OnElevationUpdated Action_t3226471752 * ___OnElevationUpdated_73; // System.Func`2<OnlineMapsMarker,System.Single> OnlineMapsTileSetControl::OnGetFlatMarkerOffsetY Func_2_t2022702331 * ___OnGetFlatMarkerOffsetY_74; // System.Action OnlineMapsTileSetControl::OnMeshUpdated Action_t3226471752 * ___OnMeshUpdated_75; // System.Action OnlineMapsTileSetControl::OnSmoothZoomBegin Action_t3226471752 * ___OnSmoothZoomBegin_76; // System.Action OnlineMapsTileSetControl::OnSmoothZoomFinish Action_t3226471752 * ___OnSmoothZoomFinish_77; // System.Action OnlineMapsTileSetControl::OnSmoothZoomInit Action_t3226471752 * ___OnSmoothZoomInit_78; // System.Action OnlineMapsTileSetControl::OnSmoothZoomProcess Action_t3226471752 * ___OnSmoothZoomProcess_79; // System.String OnlineMapsTileSetControl::bingAPI String_t* ___bingAPI_80; // OnlineMapsTilesetCheckMarker2DVisibility OnlineMapsTileSetControl::checkMarker2DVisibility int32_t ___checkMarker2DVisibility_81; // OnlineMapsTileSetControl/OnlineMapsColliderType OnlineMapsTileSetControl::colliderType int32_t ___colliderType_82; // UnityEngine.GameObject OnlineMapsTileSetControl::drawingsGameObject GameObject_t1756533147 * ___drawingsGameObject_83; // OnlineMapsTilesetDrawingMode OnlineMapsTileSetControl::drawingMode int32_t ___drawingMode_84; // UnityEngine.Shader OnlineMapsTileSetControl::drawingShader Shader_t2430389951 * ___drawingShader_85; // OnlineMapsRange OnlineMapsTileSetControl::elevationZoomRange OnlineMapsRange_t3791609909 * ___elevationZoomRange_86; // System.Single OnlineMapsTileSetControl::elevationScale float ___elevationScale_87; // OnlineMapsTileSetControl/ElevationBottomMode OnlineMapsTileSetControl::elevationBottomMode int32_t ___elevationBottomMode_88; // System.Int32 OnlineMapsTileSetControl::elevationResolution int32_t ___elevationResolution_89; // System.Int16 OnlineMapsTileSetControl::elevationMinValue int16_t ___elevationMinValue_90; // System.Int16 OnlineMapsTileSetControl::elevationMaxValue int16_t ___elevationMaxValue_91; // System.Boolean OnlineMapsTileSetControl::lockYScale bool ___lockYScale_92; // System.Collections.Generic.IComparer`1<OnlineMapsMarker> OnlineMapsTileSetControl::markerComparer Il2CppObject* ___markerComparer_93; // UnityEngine.Material OnlineMapsTileSetControl::markerMaterial Material_t193706927 * ___markerMaterial_94; // UnityEngine.Shader OnlineMapsTileSetControl::markerShader Shader_t2430389951 * ___markerShader_95; // System.Boolean OnlineMapsTileSetControl::smoothZoom bool ___smoothZoom_96; // System.Single OnlineMapsTileSetControl::smoothZoomMinScale float ___smoothZoomMinScale_97; // System.Single OnlineMapsTileSetControl::smoothZoomMaxScale float ___smoothZoomMaxScale_98; // System.Boolean OnlineMapsTileSetControl::smoothZoomStarted bool ___smoothZoomStarted_99; // UnityEngine.Material OnlineMapsTileSetControl::tileMaterial Material_t193706927 * ___tileMaterial_100; // UnityEngine.Shader OnlineMapsTileSetControl::tilesetShader Shader_t2430389951 * ___tilesetShader_101; // System.Boolean OnlineMapsTileSetControl::useElevation bool ___useElevation_102; // System.Single OnlineMapsTileSetControl::yScaleValue float ___yScaleValue_103; // System.Boolean OnlineMapsTileSetControl::_useElevation bool ____useElevation_104; // OnlineMapsVector2i OnlineMapsTileSetControl::_bufferPosition OnlineMapsVector2i_t2180897250 * ____bufferPosition_105; // OnlineMapsBingMapsElevation OnlineMapsTileSetControl::elevationRequest OnlineMapsBingMapsElevation_t2714164788 * ___elevationRequest_106; // System.Single OnlineMapsTileSetControl::elevationRequestX1 float ___elevationRequestX1_107; // System.Single OnlineMapsTileSetControl::elevationRequestY1 float ___elevationRequestY1_108; // System.Single OnlineMapsTileSetControl::elevationRequestX2 float ___elevationRequestX2_109; // System.Single OnlineMapsTileSetControl::elevationRequestY2 float ___elevationRequestY2_110; // System.Single OnlineMapsTileSetControl::elevationRequestW float ___elevationRequestW_111; // System.Single OnlineMapsTileSetControl::elevationRequestH float ___elevationRequestH_112; // System.Int16[0...,0...] OnlineMapsTileSetControl::elevationData Int16U5BU2CU5D_t3104283264* ___elevationData_113; // System.Single OnlineMapsTileSetControl::elevationX1 float ___elevationX1_114; // System.Single OnlineMapsTileSetControl::elevationY1 float ___elevationY1_115; // System.Single OnlineMapsTileSetControl::elevationW float ___elevationW_116; // System.Single OnlineMapsTileSetControl::elevationH float ___elevationH_117; // UnityEngine.MeshCollider OnlineMapsTileSetControl::meshCollider MeshCollider_t2718867283 * ___meshCollider_118; // System.Boolean OnlineMapsTileSetControl::ignoreGetElevation bool ___ignoreGetElevation_119; // UnityEngine.Mesh OnlineMapsTileSetControl::tilesetMesh Mesh_t1356156583 * ___tilesetMesh_120; // System.Int32[] OnlineMapsTileSetControl::triangles Int32U5BU5D_t3030399641* ___triangles_121; // UnityEngine.Vector2[] OnlineMapsTileSetControl::uv Vector2U5BU5D_t686124026* ___uv_122; // UnityEngine.Vector3[] OnlineMapsTileSetControl::vertices Vector3U5BU5D_t1172311765* ___vertices_123; // OnlineMapsVector2i OnlineMapsTileSetControl::elevationBufferPosition OnlineMapsVector2i_t2180897250 * ___elevationBufferPosition_124; // UnityEngine.Vector2 OnlineMapsTileSetControl::smoothZoomPoint Vector2_t2243707579 ___smoothZoomPoint_125; // UnityEngine.Vector3 OnlineMapsTileSetControl::smoothZoomOffset Vector3_t2243707580 ___smoothZoomOffset_126; // UnityEngine.Vector3 OnlineMapsTileSetControl::smoothZoomHitPoint Vector3_t2243707580 ___smoothZoomHitPoint_127; // System.Boolean OnlineMapsTileSetControl::firstUpdate bool ___firstUpdate_128; // System.Collections.Generic.List`1<OnlineMapsTileSetControl/TilesetFlatMarker> OnlineMapsTileSetControl::usedMarkers List_1_t2920006219 * ___usedMarkers_129; // UnityEngine.Color32[] OnlineMapsTileSetControl::overlayFrontBuffer Color32U5BU5D_t30278651* ___overlayFrontBuffer_130; // System.Boolean OnlineMapsTileSetControl::colliderWithElevation bool ___colliderWithElevation_131; // UnityEngine.BoxCollider OnlineMapsTileSetControl::boxCollider BoxCollider_t22920061 * ___boxCollider_132; // System.Int32 OnlineMapsTileSetControl::elevationDataWidth int32_t ___elevationDataWidth_133; // System.Int32 OnlineMapsTileSetControl::elevationDataHeight int32_t ___elevationDataHeight_134; // System.Boolean OnlineMapsTileSetControl::waitSetElevationData bool ___waitSetElevationData_135; // System.Int32 OnlineMapsTileSetControl::waitMapZoom int32_t ___waitMapZoom_136; // System.Boolean OnlineMapsTileSetControl::needRestoreGestureZoom bool ___needRestoreGestureZoom_137; // System.Collections.Generic.List`1<UnityEngine.Vector3> OnlineMapsTileSetControl::markersVerticles List_1_t1612828712 * ___markersVerticles_138; public: inline static int32_t get_offset_of_OnChangeMaterialTexture_69() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___OnChangeMaterialTexture_69)); } inline Action_2_t2903233652 * get_OnChangeMaterialTexture_69() const { return ___OnChangeMaterialTexture_69; } inline Action_2_t2903233652 ** get_address_of_OnChangeMaterialTexture_69() { return &___OnChangeMaterialTexture_69; } inline void set_OnChangeMaterialTexture_69(Action_2_t2903233652 * value) { ___OnChangeMaterialTexture_69 = value; Il2CppCodeGenWriteBarrier(&___OnChangeMaterialTexture_69, value); } inline static int32_t get_offset_of_OnCheckMarker2DVisibility_70() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___OnCheckMarker2DVisibility_70)); } inline Predicate_1_t1935136797 * get_OnCheckMarker2DVisibility_70() const { return ___OnCheckMarker2DVisibility_70; } inline Predicate_1_t1935136797 ** get_address_of_OnCheckMarker2DVisibility_70() { return &___OnCheckMarker2DVisibility_70; } inline void set_OnCheckMarker2DVisibility_70(Predicate_1_t1935136797 * value) { ___OnCheckMarker2DVisibility_70 = value; Il2CppCodeGenWriteBarrier(&___OnCheckMarker2DVisibility_70, value); } inline static int32_t get_offset_of_OnDrawTile_71() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___OnDrawTile_71)); } inline Action_2_t2903233652 * get_OnDrawTile_71() const { return ___OnDrawTile_71; } inline Action_2_t2903233652 ** get_address_of_OnDrawTile_71() { return &___OnDrawTile_71; } inline void set_OnDrawTile_71(Action_2_t2903233652 * value) { ___OnDrawTile_71 = value; Il2CppCodeGenWriteBarrier(&___OnDrawTile_71, value); } inline static int32_t get_offset_of_OnGetElevation_72() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___OnGetElevation_72)); } inline Action_2_t3492767325 * get_OnGetElevation_72() const { return ___OnGetElevation_72; } inline Action_2_t3492767325 ** get_address_of_OnGetElevation_72() { return &___OnGetElevation_72; } inline void set_OnGetElevation_72(Action_2_t3492767325 * value) { ___OnGetElevation_72 = value; Il2CppCodeGenWriteBarrier(&___OnGetElevation_72, value); } inline static int32_t get_offset_of_OnElevationUpdated_73() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___OnElevationUpdated_73)); } inline Action_t3226471752 * get_OnElevationUpdated_73() const { return ___OnElevationUpdated_73; } inline Action_t3226471752 ** get_address_of_OnElevationUpdated_73() { return &___OnElevationUpdated_73; } inline void set_OnElevationUpdated_73(Action_t3226471752 * value) { ___OnElevationUpdated_73 = value; Il2CppCodeGenWriteBarrier(&___OnElevationUpdated_73, value); } inline static int32_t get_offset_of_OnGetFlatMarkerOffsetY_74() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___OnGetFlatMarkerOffsetY_74)); } inline Func_2_t2022702331 * get_OnGetFlatMarkerOffsetY_74() const { return ___OnGetFlatMarkerOffsetY_74; } inline Func_2_t2022702331 ** get_address_of_OnGetFlatMarkerOffsetY_74() { return &___OnGetFlatMarkerOffsetY_74; } inline void set_OnGetFlatMarkerOffsetY_74(Func_2_t2022702331 * value) { ___OnGetFlatMarkerOffsetY_74 = value; Il2CppCodeGenWriteBarrier(&___OnGetFlatMarkerOffsetY_74, value); } inline static int32_t get_offset_of_OnMeshUpdated_75() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___OnMeshUpdated_75)); } inline Action_t3226471752 * get_OnMeshUpdated_75() const { return ___OnMeshUpdated_75; } inline Action_t3226471752 ** get_address_of_OnMeshUpdated_75() { return &___OnMeshUpdated_75; } inline void set_OnMeshUpdated_75(Action_t3226471752 * value) { ___OnMeshUpdated_75 = value; Il2CppCodeGenWriteBarrier(&___OnMeshUpdated_75, value); } inline static int32_t get_offset_of_OnSmoothZoomBegin_76() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___OnSmoothZoomBegin_76)); } inline Action_t3226471752 * get_OnSmoothZoomBegin_76() const { return ___OnSmoothZoomBegin_76; } inline Action_t3226471752 ** get_address_of_OnSmoothZoomBegin_76() { return &___OnSmoothZoomBegin_76; } inline void set_OnSmoothZoomBegin_76(Action_t3226471752 * value) { ___OnSmoothZoomBegin_76 = value; Il2CppCodeGenWriteBarrier(&___OnSmoothZoomBegin_76, value); } inline static int32_t get_offset_of_OnSmoothZoomFinish_77() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___OnSmoothZoomFinish_77)); } inline Action_t3226471752 * get_OnSmoothZoomFinish_77() const { return ___OnSmoothZoomFinish_77; } inline Action_t3226471752 ** get_address_of_OnSmoothZoomFinish_77() { return &___OnSmoothZoomFinish_77; } inline void set_OnSmoothZoomFinish_77(Action_t3226471752 * value) { ___OnSmoothZoomFinish_77 = value; Il2CppCodeGenWriteBarrier(&___OnSmoothZoomFinish_77, value); } inline static int32_t get_offset_of_OnSmoothZoomInit_78() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___OnSmoothZoomInit_78)); } inline Action_t3226471752 * get_OnSmoothZoomInit_78() const { return ___OnSmoothZoomInit_78; } inline Action_t3226471752 ** get_address_of_OnSmoothZoomInit_78() { return &___OnSmoothZoomInit_78; } inline void set_OnSmoothZoomInit_78(Action_t3226471752 * value) { ___OnSmoothZoomInit_78 = value; Il2CppCodeGenWriteBarrier(&___OnSmoothZoomInit_78, value); } inline static int32_t get_offset_of_OnSmoothZoomProcess_79() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___OnSmoothZoomProcess_79)); } inline Action_t3226471752 * get_OnSmoothZoomProcess_79() const { return ___OnSmoothZoomProcess_79; } inline Action_t3226471752 ** get_address_of_OnSmoothZoomProcess_79() { return &___OnSmoothZoomProcess_79; } inline void set_OnSmoothZoomProcess_79(Action_t3226471752 * value) { ___OnSmoothZoomProcess_79 = value; Il2CppCodeGenWriteBarrier(&___OnSmoothZoomProcess_79, value); } inline static int32_t get_offset_of_bingAPI_80() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___bingAPI_80)); } inline String_t* get_bingAPI_80() const { return ___bingAPI_80; } inline String_t** get_address_of_bingAPI_80() { return &___bingAPI_80; } inline void set_bingAPI_80(String_t* value) { ___bingAPI_80 = value; Il2CppCodeGenWriteBarrier(&___bingAPI_80, value); } inline static int32_t get_offset_of_checkMarker2DVisibility_81() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___checkMarker2DVisibility_81)); } inline int32_t get_checkMarker2DVisibility_81() const { return ___checkMarker2DVisibility_81; } inline int32_t* get_address_of_checkMarker2DVisibility_81() { return &___checkMarker2DVisibility_81; } inline void set_checkMarker2DVisibility_81(int32_t value) { ___checkMarker2DVisibility_81 = value; } inline static int32_t get_offset_of_colliderType_82() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___colliderType_82)); } inline int32_t get_colliderType_82() const { return ___colliderType_82; } inline int32_t* get_address_of_colliderType_82() { return &___colliderType_82; } inline void set_colliderType_82(int32_t value) { ___colliderType_82 = value; } inline static int32_t get_offset_of_drawingsGameObject_83() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___drawingsGameObject_83)); } inline GameObject_t1756533147 * get_drawingsGameObject_83() const { return ___drawingsGameObject_83; } inline GameObject_t1756533147 ** get_address_of_drawingsGameObject_83() { return &___drawingsGameObject_83; } inline void set_drawingsGameObject_83(GameObject_t1756533147 * value) { ___drawingsGameObject_83 = value; Il2CppCodeGenWriteBarrier(&___drawingsGameObject_83, value); } inline static int32_t get_offset_of_drawingMode_84() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___drawingMode_84)); } inline int32_t get_drawingMode_84() const { return ___drawingMode_84; } inline int32_t* get_address_of_drawingMode_84() { return &___drawingMode_84; } inline void set_drawingMode_84(int32_t value) { ___drawingMode_84 = value; } inline static int32_t get_offset_of_drawingShader_85() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___drawingShader_85)); } inline Shader_t2430389951 * get_drawingShader_85() const { return ___drawingShader_85; } inline Shader_t2430389951 ** get_address_of_drawingShader_85() { return &___drawingShader_85; } inline void set_drawingShader_85(Shader_t2430389951 * value) { ___drawingShader_85 = value; Il2CppCodeGenWriteBarrier(&___drawingShader_85, value); } inline static int32_t get_offset_of_elevationZoomRange_86() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationZoomRange_86)); } inline OnlineMapsRange_t3791609909 * get_elevationZoomRange_86() const { return ___elevationZoomRange_86; } inline OnlineMapsRange_t3791609909 ** get_address_of_elevationZoomRange_86() { return &___elevationZoomRange_86; } inline void set_elevationZoomRange_86(OnlineMapsRange_t3791609909 * value) { ___elevationZoomRange_86 = value; Il2CppCodeGenWriteBarrier(&___elevationZoomRange_86, value); } inline static int32_t get_offset_of_elevationScale_87() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationScale_87)); } inline float get_elevationScale_87() const { return ___elevationScale_87; } inline float* get_address_of_elevationScale_87() { return &___elevationScale_87; } inline void set_elevationScale_87(float value) { ___elevationScale_87 = value; } inline static int32_t get_offset_of_elevationBottomMode_88() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationBottomMode_88)); } inline int32_t get_elevationBottomMode_88() const { return ___elevationBottomMode_88; } inline int32_t* get_address_of_elevationBottomMode_88() { return &___elevationBottomMode_88; } inline void set_elevationBottomMode_88(int32_t value) { ___elevationBottomMode_88 = value; } inline static int32_t get_offset_of_elevationResolution_89() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationResolution_89)); } inline int32_t get_elevationResolution_89() const { return ___elevationResolution_89; } inline int32_t* get_address_of_elevationResolution_89() { return &___elevationResolution_89; } inline void set_elevationResolution_89(int32_t value) { ___elevationResolution_89 = value; } inline static int32_t get_offset_of_elevationMinValue_90() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationMinValue_90)); } inline int16_t get_elevationMinValue_90() const { return ___elevationMinValue_90; } inline int16_t* get_address_of_elevationMinValue_90() { return &___elevationMinValue_90; } inline void set_elevationMinValue_90(int16_t value) { ___elevationMinValue_90 = value; } inline static int32_t get_offset_of_elevationMaxValue_91() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationMaxValue_91)); } inline int16_t get_elevationMaxValue_91() const { return ___elevationMaxValue_91; } inline int16_t* get_address_of_elevationMaxValue_91() { return &___elevationMaxValue_91; } inline void set_elevationMaxValue_91(int16_t value) { ___elevationMaxValue_91 = value; } inline static int32_t get_offset_of_lockYScale_92() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___lockYScale_92)); } inline bool get_lockYScale_92() const { return ___lockYScale_92; } inline bool* get_address_of_lockYScale_92() { return &___lockYScale_92; } inline void set_lockYScale_92(bool value) { ___lockYScale_92 = value; } inline static int32_t get_offset_of_markerComparer_93() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___markerComparer_93)); } inline Il2CppObject* get_markerComparer_93() const { return ___markerComparer_93; } inline Il2CppObject** get_address_of_markerComparer_93() { return &___markerComparer_93; } inline void set_markerComparer_93(Il2CppObject* value) { ___markerComparer_93 = value; Il2CppCodeGenWriteBarrier(&___markerComparer_93, value); } inline static int32_t get_offset_of_markerMaterial_94() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___markerMaterial_94)); } inline Material_t193706927 * get_markerMaterial_94() const { return ___markerMaterial_94; } inline Material_t193706927 ** get_address_of_markerMaterial_94() { return &___markerMaterial_94; } inline void set_markerMaterial_94(Material_t193706927 * value) { ___markerMaterial_94 = value; Il2CppCodeGenWriteBarrier(&___markerMaterial_94, value); } inline static int32_t get_offset_of_markerShader_95() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___markerShader_95)); } inline Shader_t2430389951 * get_markerShader_95() const { return ___markerShader_95; } inline Shader_t2430389951 ** get_address_of_markerShader_95() { return &___markerShader_95; } inline void set_markerShader_95(Shader_t2430389951 * value) { ___markerShader_95 = value; Il2CppCodeGenWriteBarrier(&___markerShader_95, value); } inline static int32_t get_offset_of_smoothZoom_96() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___smoothZoom_96)); } inline bool get_smoothZoom_96() const { return ___smoothZoom_96; } inline bool* get_address_of_smoothZoom_96() { return &___smoothZoom_96; } inline void set_smoothZoom_96(bool value) { ___smoothZoom_96 = value; } inline static int32_t get_offset_of_smoothZoomMinScale_97() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___smoothZoomMinScale_97)); } inline float get_smoothZoomMinScale_97() const { return ___smoothZoomMinScale_97; } inline float* get_address_of_smoothZoomMinScale_97() { return &___smoothZoomMinScale_97; } inline void set_smoothZoomMinScale_97(float value) { ___smoothZoomMinScale_97 = value; } inline static int32_t get_offset_of_smoothZoomMaxScale_98() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___smoothZoomMaxScale_98)); } inline float get_smoothZoomMaxScale_98() const { return ___smoothZoomMaxScale_98; } inline float* get_address_of_smoothZoomMaxScale_98() { return &___smoothZoomMaxScale_98; } inline void set_smoothZoomMaxScale_98(float value) { ___smoothZoomMaxScale_98 = value; } inline static int32_t get_offset_of_smoothZoomStarted_99() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___smoothZoomStarted_99)); } inline bool get_smoothZoomStarted_99() const { return ___smoothZoomStarted_99; } inline bool* get_address_of_smoothZoomStarted_99() { return &___smoothZoomStarted_99; } inline void set_smoothZoomStarted_99(bool value) { ___smoothZoomStarted_99 = value; } inline static int32_t get_offset_of_tileMaterial_100() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___tileMaterial_100)); } inline Material_t193706927 * get_tileMaterial_100() const { return ___tileMaterial_100; } inline Material_t193706927 ** get_address_of_tileMaterial_100() { return &___tileMaterial_100; } inline void set_tileMaterial_100(Material_t193706927 * value) { ___tileMaterial_100 = value; Il2CppCodeGenWriteBarrier(&___tileMaterial_100, value); } inline static int32_t get_offset_of_tilesetShader_101() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___tilesetShader_101)); } inline Shader_t2430389951 * get_tilesetShader_101() const { return ___tilesetShader_101; } inline Shader_t2430389951 ** get_address_of_tilesetShader_101() { return &___tilesetShader_101; } inline void set_tilesetShader_101(Shader_t2430389951 * value) { ___tilesetShader_101 = value; Il2CppCodeGenWriteBarrier(&___tilesetShader_101, value); } inline static int32_t get_offset_of_useElevation_102() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___useElevation_102)); } inline bool get_useElevation_102() const { return ___useElevation_102; } inline bool* get_address_of_useElevation_102() { return &___useElevation_102; } inline void set_useElevation_102(bool value) { ___useElevation_102 = value; } inline static int32_t get_offset_of_yScaleValue_103() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___yScaleValue_103)); } inline float get_yScaleValue_103() const { return ___yScaleValue_103; } inline float* get_address_of_yScaleValue_103() { return &___yScaleValue_103; } inline void set_yScaleValue_103(float value) { ___yScaleValue_103 = value; } inline static int32_t get_offset_of__useElevation_104() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ____useElevation_104)); } inline bool get__useElevation_104() const { return ____useElevation_104; } inline bool* get_address_of__useElevation_104() { return &____useElevation_104; } inline void set__useElevation_104(bool value) { ____useElevation_104 = value; } inline static int32_t get_offset_of__bufferPosition_105() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ____bufferPosition_105)); } inline OnlineMapsVector2i_t2180897250 * get__bufferPosition_105() const { return ____bufferPosition_105; } inline OnlineMapsVector2i_t2180897250 ** get_address_of__bufferPosition_105() { return &____bufferPosition_105; } inline void set__bufferPosition_105(OnlineMapsVector2i_t2180897250 * value) { ____bufferPosition_105 = value; Il2CppCodeGenWriteBarrier(&____bufferPosition_105, value); } inline static int32_t get_offset_of_elevationRequest_106() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationRequest_106)); } inline OnlineMapsBingMapsElevation_t2714164788 * get_elevationRequest_106() const { return ___elevationRequest_106; } inline OnlineMapsBingMapsElevation_t2714164788 ** get_address_of_elevationRequest_106() { return &___elevationRequest_106; } inline void set_elevationRequest_106(OnlineMapsBingMapsElevation_t2714164788 * value) { ___elevationRequest_106 = value; Il2CppCodeGenWriteBarrier(&___elevationRequest_106, value); } inline static int32_t get_offset_of_elevationRequestX1_107() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationRequestX1_107)); } inline float get_elevationRequestX1_107() const { return ___elevationRequestX1_107; } inline float* get_address_of_elevationRequestX1_107() { return &___elevationRequestX1_107; } inline void set_elevationRequestX1_107(float value) { ___elevationRequestX1_107 = value; } inline static int32_t get_offset_of_elevationRequestY1_108() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationRequestY1_108)); } inline float get_elevationRequestY1_108() const { return ___elevationRequestY1_108; } inline float* get_address_of_elevationRequestY1_108() { return &___elevationRequestY1_108; } inline void set_elevationRequestY1_108(float value) { ___elevationRequestY1_108 = value; } inline static int32_t get_offset_of_elevationRequestX2_109() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationRequestX2_109)); } inline float get_elevationRequestX2_109() const { return ___elevationRequestX2_109; } inline float* get_address_of_elevationRequestX2_109() { return &___elevationRequestX2_109; } inline void set_elevationRequestX2_109(float value) { ___elevationRequestX2_109 = value; } inline static int32_t get_offset_of_elevationRequestY2_110() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationRequestY2_110)); } inline float get_elevationRequestY2_110() const { return ___elevationRequestY2_110; } inline float* get_address_of_elevationRequestY2_110() { return &___elevationRequestY2_110; } inline void set_elevationRequestY2_110(float value) { ___elevationRequestY2_110 = value; } inline static int32_t get_offset_of_elevationRequestW_111() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationRequestW_111)); } inline float get_elevationRequestW_111() const { return ___elevationRequestW_111; } inline float* get_address_of_elevationRequestW_111() { return &___elevationRequestW_111; } inline void set_elevationRequestW_111(float value) { ___elevationRequestW_111 = value; } inline static int32_t get_offset_of_elevationRequestH_112() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationRequestH_112)); } inline float get_elevationRequestH_112() const { return ___elevationRequestH_112; } inline float* get_address_of_elevationRequestH_112() { return &___elevationRequestH_112; } inline void set_elevationRequestH_112(float value) { ___elevationRequestH_112 = value; } inline static int32_t get_offset_of_elevationData_113() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationData_113)); } inline Int16U5BU2CU5D_t3104283264* get_elevationData_113() const { return ___elevationData_113; } inline Int16U5BU2CU5D_t3104283264** get_address_of_elevationData_113() { return &___elevationData_113; } inline void set_elevationData_113(Int16U5BU2CU5D_t3104283264* value) { ___elevationData_113 = value; Il2CppCodeGenWriteBarrier(&___elevationData_113, value); } inline static int32_t get_offset_of_elevationX1_114() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationX1_114)); } inline float get_elevationX1_114() const { return ___elevationX1_114; } inline float* get_address_of_elevationX1_114() { return &___elevationX1_114; } inline void set_elevationX1_114(float value) { ___elevationX1_114 = value; } inline static int32_t get_offset_of_elevationY1_115() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationY1_115)); } inline float get_elevationY1_115() const { return ___elevationY1_115; } inline float* get_address_of_elevationY1_115() { return &___elevationY1_115; } inline void set_elevationY1_115(float value) { ___elevationY1_115 = value; } inline static int32_t get_offset_of_elevationW_116() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationW_116)); } inline float get_elevationW_116() const { return ___elevationW_116; } inline float* get_address_of_elevationW_116() { return &___elevationW_116; } inline void set_elevationW_116(float value) { ___elevationW_116 = value; } inline static int32_t get_offset_of_elevationH_117() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationH_117)); } inline float get_elevationH_117() const { return ___elevationH_117; } inline float* get_address_of_elevationH_117() { return &___elevationH_117; } inline void set_elevationH_117(float value) { ___elevationH_117 = value; } inline static int32_t get_offset_of_meshCollider_118() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___meshCollider_118)); } inline MeshCollider_t2718867283 * get_meshCollider_118() const { return ___meshCollider_118; } inline MeshCollider_t2718867283 ** get_address_of_meshCollider_118() { return &___meshCollider_118; } inline void set_meshCollider_118(MeshCollider_t2718867283 * value) { ___meshCollider_118 = value; Il2CppCodeGenWriteBarrier(&___meshCollider_118, value); } inline static int32_t get_offset_of_ignoreGetElevation_119() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___ignoreGetElevation_119)); } inline bool get_ignoreGetElevation_119() const { return ___ignoreGetElevation_119; } inline bool* get_address_of_ignoreGetElevation_119() { return &___ignoreGetElevation_119; } inline void set_ignoreGetElevation_119(bool value) { ___ignoreGetElevation_119 = value; } inline static int32_t get_offset_of_tilesetMesh_120() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___tilesetMesh_120)); } inline Mesh_t1356156583 * get_tilesetMesh_120() const { return ___tilesetMesh_120; } inline Mesh_t1356156583 ** get_address_of_tilesetMesh_120() { return &___tilesetMesh_120; } inline void set_tilesetMesh_120(Mesh_t1356156583 * value) { ___tilesetMesh_120 = value; Il2CppCodeGenWriteBarrier(&___tilesetMesh_120, value); } inline static int32_t get_offset_of_triangles_121() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___triangles_121)); } inline Int32U5BU5D_t3030399641* get_triangles_121() const { return ___triangles_121; } inline Int32U5BU5D_t3030399641** get_address_of_triangles_121() { return &___triangles_121; } inline void set_triangles_121(Int32U5BU5D_t3030399641* value) { ___triangles_121 = value; Il2CppCodeGenWriteBarrier(&___triangles_121, value); } inline static int32_t get_offset_of_uv_122() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___uv_122)); } inline Vector2U5BU5D_t686124026* get_uv_122() const { return ___uv_122; } inline Vector2U5BU5D_t686124026** get_address_of_uv_122() { return &___uv_122; } inline void set_uv_122(Vector2U5BU5D_t686124026* value) { ___uv_122 = value; Il2CppCodeGenWriteBarrier(&___uv_122, value); } inline static int32_t get_offset_of_vertices_123() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___vertices_123)); } inline Vector3U5BU5D_t1172311765* get_vertices_123() const { return ___vertices_123; } inline Vector3U5BU5D_t1172311765** get_address_of_vertices_123() { return &___vertices_123; } inline void set_vertices_123(Vector3U5BU5D_t1172311765* value) { ___vertices_123 = value; Il2CppCodeGenWriteBarrier(&___vertices_123, value); } inline static int32_t get_offset_of_elevationBufferPosition_124() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationBufferPosition_124)); } inline OnlineMapsVector2i_t2180897250 * get_elevationBufferPosition_124() const { return ___elevationBufferPosition_124; } inline OnlineMapsVector2i_t2180897250 ** get_address_of_elevationBufferPosition_124() { return &___elevationBufferPosition_124; } inline void set_elevationBufferPosition_124(OnlineMapsVector2i_t2180897250 * value) { ___elevationBufferPosition_124 = value; Il2CppCodeGenWriteBarrier(&___elevationBufferPosition_124, value); } inline static int32_t get_offset_of_smoothZoomPoint_125() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___smoothZoomPoint_125)); } inline Vector2_t2243707579 get_smoothZoomPoint_125() const { return ___smoothZoomPoint_125; } inline Vector2_t2243707579 * get_address_of_smoothZoomPoint_125() { return &___smoothZoomPoint_125; } inline void set_smoothZoomPoint_125(Vector2_t2243707579 value) { ___smoothZoomPoint_125 = value; } inline static int32_t get_offset_of_smoothZoomOffset_126() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___smoothZoomOffset_126)); } inline Vector3_t2243707580 get_smoothZoomOffset_126() const { return ___smoothZoomOffset_126; } inline Vector3_t2243707580 * get_address_of_smoothZoomOffset_126() { return &___smoothZoomOffset_126; } inline void set_smoothZoomOffset_126(Vector3_t2243707580 value) { ___smoothZoomOffset_126 = value; } inline static int32_t get_offset_of_smoothZoomHitPoint_127() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___smoothZoomHitPoint_127)); } inline Vector3_t2243707580 get_smoothZoomHitPoint_127() const { return ___smoothZoomHitPoint_127; } inline Vector3_t2243707580 * get_address_of_smoothZoomHitPoint_127() { return &___smoothZoomHitPoint_127; } inline void set_smoothZoomHitPoint_127(Vector3_t2243707580 value) { ___smoothZoomHitPoint_127 = value; } inline static int32_t get_offset_of_firstUpdate_128() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___firstUpdate_128)); } inline bool get_firstUpdate_128() const { return ___firstUpdate_128; } inline bool* get_address_of_firstUpdate_128() { return &___firstUpdate_128; } inline void set_firstUpdate_128(bool value) { ___firstUpdate_128 = value; } inline static int32_t get_offset_of_usedMarkers_129() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___usedMarkers_129)); } inline List_1_t2920006219 * get_usedMarkers_129() const { return ___usedMarkers_129; } inline List_1_t2920006219 ** get_address_of_usedMarkers_129() { return &___usedMarkers_129; } inline void set_usedMarkers_129(List_1_t2920006219 * value) { ___usedMarkers_129 = value; Il2CppCodeGenWriteBarrier(&___usedMarkers_129, value); } inline static int32_t get_offset_of_overlayFrontBuffer_130() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___overlayFrontBuffer_130)); } inline Color32U5BU5D_t30278651* get_overlayFrontBuffer_130() const { return ___overlayFrontBuffer_130; } inline Color32U5BU5D_t30278651** get_address_of_overlayFrontBuffer_130() { return &___overlayFrontBuffer_130; } inline void set_overlayFrontBuffer_130(Color32U5BU5D_t30278651* value) { ___overlayFrontBuffer_130 = value; Il2CppCodeGenWriteBarrier(&___overlayFrontBuffer_130, value); } inline static int32_t get_offset_of_colliderWithElevation_131() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___colliderWithElevation_131)); } inline bool get_colliderWithElevation_131() const { return ___colliderWithElevation_131; } inline bool* get_address_of_colliderWithElevation_131() { return &___colliderWithElevation_131; } inline void set_colliderWithElevation_131(bool value) { ___colliderWithElevation_131 = value; } inline static int32_t get_offset_of_boxCollider_132() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___boxCollider_132)); } inline BoxCollider_t22920061 * get_boxCollider_132() const { return ___boxCollider_132; } inline BoxCollider_t22920061 ** get_address_of_boxCollider_132() { return &___boxCollider_132; } inline void set_boxCollider_132(BoxCollider_t22920061 * value) { ___boxCollider_132 = value; Il2CppCodeGenWriteBarrier(&___boxCollider_132, value); } inline static int32_t get_offset_of_elevationDataWidth_133() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationDataWidth_133)); } inline int32_t get_elevationDataWidth_133() const { return ___elevationDataWidth_133; } inline int32_t* get_address_of_elevationDataWidth_133() { return &___elevationDataWidth_133; } inline void set_elevationDataWidth_133(int32_t value) { ___elevationDataWidth_133 = value; } inline static int32_t get_offset_of_elevationDataHeight_134() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___elevationDataHeight_134)); } inline int32_t get_elevationDataHeight_134() const { return ___elevationDataHeight_134; } inline int32_t* get_address_of_elevationDataHeight_134() { return &___elevationDataHeight_134; } inline void set_elevationDataHeight_134(int32_t value) { ___elevationDataHeight_134 = value; } inline static int32_t get_offset_of_waitSetElevationData_135() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___waitSetElevationData_135)); } inline bool get_waitSetElevationData_135() const { return ___waitSetElevationData_135; } inline bool* get_address_of_waitSetElevationData_135() { return &___waitSetElevationData_135; } inline void set_waitSetElevationData_135(bool value) { ___waitSetElevationData_135 = value; } inline static int32_t get_offset_of_waitMapZoom_136() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___waitMapZoom_136)); } inline int32_t get_waitMapZoom_136() const { return ___waitMapZoom_136; } inline int32_t* get_address_of_waitMapZoom_136() { return &___waitMapZoom_136; } inline void set_waitMapZoom_136(int32_t value) { ___waitMapZoom_136 = value; } inline static int32_t get_offset_of_needRestoreGestureZoom_137() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___needRestoreGestureZoom_137)); } inline bool get_needRestoreGestureZoom_137() const { return ___needRestoreGestureZoom_137; } inline bool* get_address_of_needRestoreGestureZoom_137() { return &___needRestoreGestureZoom_137; } inline void set_needRestoreGestureZoom_137(bool value) { ___needRestoreGestureZoom_137 = value; } inline static int32_t get_offset_of_markersVerticles_138() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803, ___markersVerticles_138)); } inline List_1_t1612828712 * get_markersVerticles_138() const { return ___markersVerticles_138; } inline List_1_t1612828712 ** get_address_of_markersVerticles_138() { return &___markersVerticles_138; } inline void set_markersVerticles_138(List_1_t1612828712 * value) { ___markersVerticles_138 = value; Il2CppCodeGenWriteBarrier(&___markersVerticles_138, value); } }; struct OnlineMapsTileSetControl_t3368302803_StaticFields { public: // System.Func`2<OnlineMapsMarker,OnlineMapsMarker> OnlineMapsTileSetControl::<>f__am$cache0 Func_2_t3438359081 * ___U3CU3Ef__amU24cache0_139; // System.Func`2<OnlineMapsMarker,System.Double> OnlineMapsTileSetControl::<>f__am$cache1 Func_2_t4024208080 * ___U3CU3Ef__amU24cache1_140; // System.Func`2<OnlineMapsTileSetControl/TilesetSortedMarker,System.Single> OnlineMapsTileSetControl::<>f__am$cache2 Func_2_t1961126510 * ___U3CU3Ef__amU24cache2_141; // System.Func`2<OnlineMapsTileSetControl/TilesetSortedMarker,OnlineMapsMarker> OnlineMapsTileSetControl::<>f__am$cache3 Func_2_t3376783260 * ___U3CU3Ef__amU24cache3_142; public: inline static int32_t get_offset_of_U3CU3Ef__amU24cache0_139() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803_StaticFields, ___U3CU3Ef__amU24cache0_139)); } inline Func_2_t3438359081 * get_U3CU3Ef__amU24cache0_139() const { return ___U3CU3Ef__amU24cache0_139; } inline Func_2_t3438359081 ** get_address_of_U3CU3Ef__amU24cache0_139() { return &___U3CU3Ef__amU24cache0_139; } inline void set_U3CU3Ef__amU24cache0_139(Func_2_t3438359081 * value) { ___U3CU3Ef__amU24cache0_139 = value; Il2CppCodeGenWriteBarrier(&___U3CU3Ef__amU24cache0_139, value); } inline static int32_t get_offset_of_U3CU3Ef__amU24cache1_140() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803_StaticFields, ___U3CU3Ef__amU24cache1_140)); } inline Func_2_t4024208080 * get_U3CU3Ef__amU24cache1_140() const { return ___U3CU3Ef__amU24cache1_140; } inline Func_2_t4024208080 ** get_address_of_U3CU3Ef__amU24cache1_140() { return &___U3CU3Ef__amU24cache1_140; } inline void set_U3CU3Ef__amU24cache1_140(Func_2_t4024208080 * value) { ___U3CU3Ef__amU24cache1_140 = value; Il2CppCodeGenWriteBarrier(&___U3CU3Ef__amU24cache1_140, value); } inline static int32_t get_offset_of_U3CU3Ef__amU24cache2_141() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803_StaticFields, ___U3CU3Ef__amU24cache2_141)); } inline Func_2_t1961126510 * get_U3CU3Ef__amU24cache2_141() const { return ___U3CU3Ef__amU24cache2_141; } inline Func_2_t1961126510 ** get_address_of_U3CU3Ef__amU24cache2_141() { return &___U3CU3Ef__amU24cache2_141; } inline void set_U3CU3Ef__amU24cache2_141(Func_2_t1961126510 * value) { ___U3CU3Ef__amU24cache2_141 = value; Il2CppCodeGenWriteBarrier(&___U3CU3Ef__amU24cache2_141, value); } inline static int32_t get_offset_of_U3CU3Ef__amU24cache3_142() { return static_cast<int32_t>(offsetof(OnlineMapsTileSetControl_t3368302803_StaticFields, ___U3CU3Ef__amU24cache3_142)); } inline Func_2_t3376783260 * get_U3CU3Ef__amU24cache3_142() const { return ___U3CU3Ef__amU24cache3_142; } inline Func_2_t3376783260 ** get_address_of_U3CU3Ef__amU24cache3_142() { return &___U3CU3Ef__amU24cache3_142; } inline void set_U3CU3Ef__amU24cache3_142(Func_2_t3376783260 * value) { ___U3CU3Ef__amU24cache3_142 = value; Il2CppCodeGenWriteBarrier(&___U3CU3Ef__amU24cache3_142, value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif
94568caa1c059497188d394e63f10f7f4d2d9f2d
bf14719bbfbf1a7668420d4034d214c90ae72cfe
/prefs.h
d52478f03918ac24128b1912b048f75344b502a4
[]
no_license
showermat/libutil
0da35ec26625ce6b33f7b6b2ce46ae4c9b70c2a3
aba1365d5a1dfe32453c2a1c06619c8b9b8393cc
refs/heads/master
2020-04-18T19:18:59.456031
2019-10-16T02:10:38
2019-10-16T02:10:38
67,646,126
0
0
null
null
null
null
UTF-8
C++
false
false
4,263
h
prefs.h
#ifndef UTIL_PREFS_H #define UTIL_PREFS_H #include <string> #include <map> #include <vector> #include <memory> #include <iostream> #include <fstream> #include <sstream> #include <type_traits> #include <typeinfo> #include "util.h" class prefs // TODO Move code into a .cpp file { private: struct base_pref { std::string name; bool set; std::string desc; virtual void read(std::istream &in) = 0; virtual void write(std::ostream &out) const = 0; virtual std::string tostr() const = 0; virtual void fromstr(const std::string &newval) = 0; virtual ~base_pref() { } }; template <typename T> struct pref : public base_pref { T val, def; void read(std::istream &in) { throw std::runtime_error{"No rule to read preferences of type " + std::string{typeid(T).name()}}; } void write(std::ostream &out) const { throw std::runtime_error{"No rule to write preferences of type " + std::string{typeid(T).name()}}; } std::string tostr() const { return set ? util::t2s(val) : util::t2s(def); } void fromstr(const std::string &newval) { val = util::s2t<T>(newval); set = true; } }; std::map<std::string, std::unique_ptr<base_pref>> store; std::vector<base_pref *> order; std::string source; void read(std::istream &in) { for (base_pref *ptr : order) ptr->read(in); } void write(std::ostream &out) const { for (base_pref *ptr : order) ptr->write(out); } public: template <typename T> void addpref(const std::string &name, const std::string &desc, const T &def) { pref<T> *p = new pref<T>{}; p->name = name; p->desc = desc; p->def = def; p->set = false; store[name] = std::unique_ptr<base_pref>{p}; order.push_back(p); } template <typename T> void set(const std::string &name, const T &val) { pref<T> *p = dynamic_cast<pref<T> *>(store.at(name).get()); p->val = val; p->set = true; } template <typename T> T get(const std::string &name) const { pref<T> *p = dynamic_cast<pref<T> *>(store.at(name).get()); if (p->set) return p->val; return p->def; } std::string getstr(const std::string &name) const { return store.at(name)->tostr(); } void setstr(const std::string &name, const std::string &val) { store.at(name)->fromstr(val); } void unset(const std::string &name) { store.at(name)->set = false; } bool is_set(const std::string &name) const { return store.at(name)->set; } std::string desc(const std::string &name) const { return store.at(name)->desc; } std::vector<std::string> list() const { std::vector<std::string> ret{}; ret.reserve(store.size()); for (base_pref *ptr : order) ret.push_back(ptr->name); return ret; } prefs(const std::string &file) : store{}, order{}, source{file} { } void read() { if (source == "") return; std::ifstream in{source}; if (! in) return; read(in); } void write() { if (source == "") throw std::runtime_error{"No persistence specified for preferences"}; std::ofstream out{source}; if (! out) throw std::runtime_error{"Could not open persistent storage for preferences"}; write(out); } ~prefs() { if (source == "") return; std::ofstream out{source}; if (! out) return; write(out); } }; template <> void prefs::pref<int>::read(std::istream &in) // This and the next function could apply to any type without pointers, but I don't know enough about metaprogramming to implement it { in.read(reinterpret_cast<char *>(&set), sizeof(set)); if (! set) return; in.read(reinterpret_cast<char *>(&val), sizeof(val)); } template <> void prefs::pref<int>::write(std::ostream &out) const { out.write(reinterpret_cast<const char *>(&set), sizeof(set)); if (! set) return; out.write(reinterpret_cast<const char *>(&val), sizeof(val)); } template <> void prefs::pref<std::string>::read(std::istream &in) { in.read(reinterpret_cast<char *>(&set), sizeof(set)); if (! set) return; std::string::size_type len; in.read(reinterpret_cast<char *>(&len), sizeof(len)); val.resize(len); in.read(&val[0], len); } template <> void prefs::pref<std::string>::write(std::ostream &out) const { out.write(reinterpret_cast<const char *>(&set), sizeof(set)); if (! set) return; std::string::size_type len = val.size(); out.write(reinterpret_cast<const char *>(&len), sizeof(len)); out.write(&val[0], len); } #endif
1fc4c278304245a52e19b22c2a184e01958bd143
0577a46d8d28e1fd8636893bbdd2b18270bb8eb8
/update_notifier/thirdparty/wxWidgets/src/osx/core/colour.cpp
f3ecd7c624baa150f3afa39168a245162fe688fa
[ "BSD-3-Clause" ]
permissive
ric2b/Vivaldi-browser
388a328b4cb838a4c3822357a5529642f86316a5
87244f4ee50062e59667bf8b9ca4d5291b6818d7
refs/heads/master
2022-12-21T04:44:13.804535
2022-12-17T16:30:35
2022-12-17T16:30:35
86,637,416
166
41
BSD-3-Clause
2021-03-31T18:49:30
2017-03-29T23:09:05
null
UTF-8
C++
false
false
6,497
cpp
colour.cpp
///////////////////////////////////////////////////////////////////////////// // Name: src/osx/core/colour.cpp // Purpose: wxColour class // Author: Stefan Csomor // Modified by: // Created: 1998-01-01 // Copyright: (c) Stefan Csomor // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #include "wx/wxprec.h" #include "wx/colour.h" #ifndef WX_PRECOMP #include "wx/gdicmn.h" #endif #include "wx/osx/private.h" #include "wx/osx/private/available.h" CGColorSpaceRef wxMacGetGenericRGBColorSpace(); class wxCGColorRefData : public wxColourRefData { public: wxCGColorRefData(CGFloat r, CGFloat g, CGFloat b, CGFloat a = 1.0); wxCGColorRefData(CGFloat components[4]); wxCGColorRefData(CGColorRef); wxCGColorRefData(const wxCGColorRefData& other); virtual bool IsOk() const wxOVERRIDE{ return m_cgColour != NULL; } virtual CGFloat Red() const wxOVERRIDE { return m_red; } virtual CGFloat Green() const wxOVERRIDE { return m_green; } virtual CGFloat Blue() const wxOVERRIDE { return m_blue; } virtual CGFloat Alpha() const wxOVERRIDE { return m_alpha; } CGColorRef GetCGColor() const wxOVERRIDE { return m_cgColour; } virtual wxColourRefData* Clone() const wxOVERRIDE { return new wxCGColorRefData(*this); } private: void Init(CGFloat components[4]); wxCFRef<CGColorRef> m_cgColour; CGFloat m_red; CGFloat m_blue; CGFloat m_green; CGFloat m_alpha; wxDECLARE_NO_ASSIGN_CLASS(wxCGColorRefData); }; wxCGColorRefData::wxCGColorRefData(CGFloat r, CGFloat g, CGFloat b, CGFloat a) { CGFloat components[4]; components[0] = r; components[1] = g; components[2] = b; components[3] = a; Init(components); } wxCGColorRefData::wxCGColorRefData(CGFloat components[4]) { Init(components); } wxCGColorRefData::wxCGColorRefData(const wxCGColorRefData& other) { m_red = other.m_red; m_blue = other.m_blue; m_green = other.m_green; m_alpha = other.m_alpha; m_cgColour = other.m_cgColour; } void wxCGColorRefData::Init(CGFloat components[4]) { m_red = components[0]; m_green = components[1]; m_blue = components[2]; m_alpha = components[3]; m_cgColour = CGColorCreate(wxMacGetGenericRGBColorSpace(), components); } wxCGColorRefData::wxCGColorRefData(CGColorRef col) { wxASSERT_MSG(col != NULL, "Invalid CoreGraphics Color"); m_cgColour.reset(col); wxCFRef<CGColorRef> rgbacol; size_t noComp = CGColorGetNumberOfComponents(col); const CGFloat* components = CGColorGetComponents(col); // set default alpha m_alpha = 1.0; bool isRGB = true; CGColorSpaceModel model = CGColorSpaceGetModel(CGColorGetColorSpace(col)); if (model == kCGColorSpaceModelMonochrome) { wxASSERT_MSG(1 <= noComp && noComp <= 2, "Monochrome Color unexpected components"); m_red = components[0]; m_green = components[0]; m_blue = components[0]; if (noComp > 1) m_alpha = components[1]; isRGB = false; } else if (model != kCGColorSpaceModelRGB) { if ( WX_IS_MACOS_OR_IOS_AVAILABLE(10, 11, 9, 0) ) { rgbacol = CGColorCreateCopyByMatchingToColorSpace(wxMacGetGenericRGBColorSpace(), kCGRenderingIntentDefault, col, NULL); noComp = CGColorGetNumberOfComponents(rgbacol); components = CGColorGetComponents(rgbacol); } else { isRGB = false; } } if (isRGB) { wxASSERT_MSG(3 <= noComp && noComp <= 4, "RGB Color unexpected components"); m_red = components[0]; m_green = components[1]; m_blue = components[2]; if (noComp == 4) m_alpha = components[3]; } } #define M_COLDATA static_cast<wxColourRefData*>(m_refData) #if wxOSX_USE_COCOA_OR_CARBON wxColour::wxColour(const RGBColor& col) { CGFloat components[4] = { (CGFloat)(col.red / 65535.0), (CGFloat)(col.green / 65535.0), (CGFloat)(col.blue / 65535.0), (CGFloat)1.0 }; m_refData = new wxCGColorRefData(components); } #endif wxColour::wxColour(CGColorRef col) { wxASSERT_MSG(col != NULL, "Invalid CoreGraphics Color"); m_refData = new wxCGColorRefData(col); } wxColour::ChannelType wxColour::Red() const { wxCHECK_MSG( IsOk(), 0, "invalid colour" ); return wxRound(M_COLDATA->Red() * 255.0); } wxColour::ChannelType wxColour::Green() const { wxCHECK_MSG( IsOk(), 0, "invalid colour" ); return wxRound(M_COLDATA->Green() * 255.0); } wxColour::ChannelType wxColour::Blue() const { wxCHECK_MSG( IsOk(), 0, "invalid colour" ); return wxRound(M_COLDATA->Blue() * 255.0); } wxColour::ChannelType wxColour::Alpha() const { wxCHECK_MSG( IsOk(), 0, "invalid colour" ); return wxRound(M_COLDATA->Alpha() * 255.0); } bool wxColour::IsSolid() const { wxCHECK_MSG( IsOk(), false, "invalid colour" ); return M_COLDATA->IsSolid(); } #if wxOSX_USE_COCOA_OR_CARBON void wxColour::GetRGBColor(RGBColor* col) const { wxCHECK_RET( IsOk(), "invalid colour" ); col->red = M_COLDATA->Red() * 65535.0; col->blue = M_COLDATA->Blue() * 65535.0; col->green = M_COLDATA->Green() * 65535.0; } #endif CGColorRef wxColour::GetCGColor() const { wxCHECK_MSG( IsOk(), NULL, "invalid colour" ); return M_COLDATA->GetCGColor(); } #if wxOSX_USE_COCOA WX_NSColor wxColour::OSXGetNSColor() const { wxCHECK_MSG( IsOk(), NULL, "invalid colour" ); return M_COLDATA->GetNSColor(); } WX_NSImage wxColour::OSXGetNSPatternImage() const { wxCHECK_MSG( IsOk(), NULL, "invalid colour" ); return M_COLDATA->GetNSPatternImage(); } #endif void wxColour::InitRGBA(ChannelType r, ChannelType g, ChannelType b, ChannelType a) { CGFloat components[4] = { (CGFloat)(r / 255.0), (CGFloat)(g / 255.0), (CGFloat)(b / 255.0), (CGFloat)(a / 255.0) }; m_refData = new wxCGColorRefData(components); } bool wxColour::operator==(const wxColour& other) const { if (m_refData == other.m_refData) return true; if (!m_refData || !other.m_refData) return false; return CGColorEqualToColor(GetCGColor(), other.GetCGColor()); } wxGDIRefData* wxColour::CreateGDIRefData() const { // black return new wxCGColorRefData(0.0, 0.0, 0.0); } wxGDIRefData* wxColour::CloneGDIRefData(const wxGDIRefData* data) const { return static_cast<const wxColourRefData*>(data)->Clone(); }
f996be19a68babb691d5cb2ccb131a1f2feab3b9
a6859fceb57bb63abf52a237ef1aee6d49e6c898
/Vjezba6/Vjezba6_1/book.cpp
9352f5f415ad6d6aacb430ee9829fd082cf47bfa
[]
no_license
tina-dragicevic/VjezbeCPP
e0cff325dd2be725f5b0f048e947f80c5a3fe20c
312e35bb343a384e7cab6211b0f886c77b0d1a30
refs/heads/master
2021-03-01T19:27:19.867586
2020-06-04T16:39:08
2020-06-04T16:39:08
245,809,612
0
0
null
null
null
null
UTF-8
C++
false
false
5,900
cpp
book.cpp
#include <iostream> #include <string> #include <string.h> #include <fstream> #include <iterator> #include <vector> #include <cstdlib> #include <bits/stdc++.h> #include "book.hpp" Book::Book(){} Book::Book(std::string name, std::string book){ this->name = name; this-> book = book; this-> year = 0; } void Book::print(){ std::cout << " name " << name << std::endl; std::cout << " book " << book << std::endl; std::cout << " year " << year << std::endl; } //Book::~Book(){} /* Library::Library(const Book* b){ std::cout << "Lib" << std::endl; p.push_back(new Book()); for(int i = 0; i < p.size(); i++){ std::cout << "Library " << &(p[i]); } } */ /* void Library::Funk(std::string c){ std::string::iterator it = c.begin(); int count = 0; std::string a = ""; int hc = 0, eb = 0; std::string reverse = ""; std::string catchString = ""; for (std::string::iterator it = c.begin(); it != c.end(); it++){ if(*it != ';'){ a += *it; } else{ count ++; if(count == 1){ //std::cout << " aaa " << a << std::endl; name = a; //std::cout << " name " << name << std::endl; a = ""; } else if(count == 2 && isdigit(*it + 2)){ //std::cout << " bbbb " << a << std::endl; book = a; //std::cout << " book " << book << std::endl; a = ""; hc++; } else if(count == 2 && isalpha(*it + 2)){ eb++; } else if(count == 3){ book = a; a = ""; } } if(hc == 1){ catchString += a; a = ""; p.push_back(new HardCopyBook(name, book, catchString)); } else if(eb == 1){ catchString += a; a = ""; p.push_back(new EBook(name, book, catchString)); } } print(); } */ void HardCopyBook::print(){ /* std::cout << " name " << name << std::endl; std::cout << " book " << book << std::endl; std::cout << " year " << year << std::endl;*/ std::cout << " numb of pages " << NumbOfPages << std::endl; } void EBook::print(){ /* std::cout << " name " << name << std::endl; std::cout << " book " << book << std::endl; std::cout << " year " << year << std::endl;*/ std::cout << " size of book " << SizeMB << std::endl; } void Library::libre(Book* b){ p.push_back(b); } void Library::print(){ for(unsigned int i = 0; i < p.size(); i++){ p[i]->print(); } } /* std::string& Library::HCE(std::string c){ int count1 = 0; std::string reverse = ""; std::string catchString = ""; std:: cout << p[0]; for(std::string::reverse_iterator it = c.rbegin(); *it != ' '; it++){ if(isalpha(*it)){ count1 ++; catchString += *it; } std::cout << " count1 " << count1 << std::endl; for(int i = catchString.size(); i > 0; i--) reverse += catchString[i]; /* if(count > 0){ EB->num += reverse; //std::cout << EB->num; //p.push_back(new Book(num)); } else{ HC->num += reverse; //std::cout << HC->num; //p.push_back(num);} } } return num; } */ Library::~Library(){ std::cout << "dest" << std::endl; for(int i = 0; i < p.size(); i++){ // delete p.at(i); // delete p[i]; p.erase(p.begin() + i); } p.clear(); } void Funk(std::string& c, Library& lib){ std::string::iterator it = c.begin(); int count = 0; std::string a = ""; std::string name = ""; std::string book = ""; std::string catchString = ""; int hc = 0, eb = 0; for (std::string::iterator it = c.begin(); it != c.end(); it++){ if(*it != ';'){ a += *it; } else{ count ++; if(count == 1){ //std::cout << " aaa " << a << std::endl; name = a; //std::cout << " name " << name << std::endl; a = ""; } if(count == 2 || count == 3){ book = a; a = ""; lib.libre(new Book(name, book)); } if(isdigit(*it)){ if(count == 2){ lib.libre(new HardCopyBook(a)); } else { lib.libre(new EBook(a)); } } /* else if(count == 2 && isdigit(*it + 2)){ // std::cout << " bbbb " << a << std::endl; book = a; // std::cout << " book " << book << std::endl; a = ""; hc++; lib.libre(new Book(name, book)); } else if(count == 2 && isalpha(*it + 2)){ eb++; } else if(count == 3){ // std::cout << " ccc " << a << std::endl; book = a; //std:: cout << " Ebook " << book << std::endl; a = ""; lib.libre(new Book(name, book)); } */ //lib.libre(new Book(name, book)); } if(hc == 1){ catchString += a; a = ""; //std::cout << "catchString hc " << catchString << std::endl; lib.libre(new HardCopyBook(catchString)); } else if(eb == 1){ catchString += a; // std::cout << "catchString eb " << catchString << std::endl; a = ""; lib.libre(new EBook(catchString)); } } //lib.print(); }
04ac8e59d05de865d7f6dc767c4ae59bd5de3acb
c392cea360fa4c954ea3dc39b668a73bda54c327
/c++11_learning/template_arg/templat_arg.cpp
0f9fc43c5fc1b6c41c650f07198fe34850da52ab
[]
no_license
CCSHUN/working_fish
a1403333f925c4f50f3813178253c80a1197c8e3
38baa17bcd65aa3749f9c3a8ef99c353f7ef6800
refs/heads/master
2022-12-29T15:37:34.143294
2020-10-17T02:55:39
2020-10-17T02:55:39
281,035,924
0
0
null
2020-10-17T02:55:40
2020-07-20T06:42:37
C++
UTF-8
C++
false
false
186
cpp
templat_arg.cpp
#include <iostream> using namespace std; template<class ... T> void func(T ... args) { cout<<"num is"<<sizeof ...(args)<<endl; } int main() { func(); func(1, 2, 3); return 0; }
b2bd9d59908fa7b1501f12e7092b770dced3c3ff
edf233a2a8b960db7e11458031b812a3741459f6
/src/PortHandler.h
17dd66d1331983091a550474bca4b69b1e3c0bb9
[]
no_license
AliArdaGirgin/ulak
156b27ef1c02293d98ba53af797dbfddaf46bb10
e3853b348ca2f974e0911d409e3b1de5d455ca6a
refs/heads/master
2023-08-13T02:26:58.821197
2021-09-09T17:55:35
2021-09-09T17:55:35
404,062,154
0
0
null
null
null
null
UTF-8
C++
false
false
619
h
PortHandler.h
#ifndef PORT_HANDLER_H #define PORT_HANDLER_H #include <QObject> #include <QSerialPort> #include <QByteArray> #include <QTimer> #include "DataType.h" class PortHandler:public QObject{ Q_OBJECT public: PortHandler(QObject *parent=0); static bool commExists(); bool setPort(QSerialPort *port_in); bool removePort(); int write(QByteArray &data); signals: void read(QByteArray &data, DataType dtype); private slots: void run(); private: static QSerialPort *current_port; QTimer *timer; char read_data[1024]; }; #endif
39904060231695b16aa95b220588242788b9d080
f75d23537ad491a0e5ea456cad2bf2f3df747381
/source/discord/client.cpp
fb5a7ffe479ff7d83ed7a63e0011fe1a2caea72f
[ "MIT" ]
permissive
kociap/Discordpp
ae37efd80ab85226910557f038adaac389f1e47d
fcbf30d199ec217e0e6289aee96e365de383dbda
refs/heads/master
2020-04-02T17:36:03.081975
2019-01-14T09:55:00
2019-01-14T09:55:00
154,663,948
0
1
MIT
2019-01-15T07:44:18
2018-10-25T12:04:47
C++
UTF-8
C++
false
false
7,430
cpp
client.cpp
#include "client.hpp" #include "opcodes.hpp" #include "urls.hpp" #include "nlohmann/json.hpp" #include "rpp/rpp.hpp" #include "websocketpp/connection.hpp" #include <QDebug> #include <fstream> #include <map> // Timer namespace discord { Timer::Timer(Stop_Function const& stop) : stop(stop) {} void Timer::cancel() { stop(); } } // namespace discord // Client namespace discord { Client::Client(String const& token) : gateway(), token(token), heartbeat_timer([]() {}) {} Client::Client(String&& token) : gateway(), token(std::move(token)), heartbeat_timer([]() {}) {} Client::~Client() {} User Client::get_me() { rpp::Headers headers({{"Authorization", token}}); rpp::Request req; req.set_headers(headers); // req.set_verbose(true); req.set_verify_ssl(false); rpp::Response res = req.get(url::me); nlohmann::json json = nlohmann::json::parse(res.text); return User::from_json(json); } Guilds Client::get_my_guilds() { rpp::Headers headers({{"Authorization", token}}); rpp::Request req; req.set_headers(headers); // req.set_verbose(true); req.set_verify_ssl(false); rpp::Response res = req.get(url::my_guilds); nlohmann::json json = nlohmann::json::parse(res.text); Guilds guilds = json; return guilds; } Relationships Client::get_relationships() { rpp::Headers headers({{"authorization", token}}); rpp::Request req; req.set_headers(headers); req.set_verify_ssl(false); rpp::Response res = req.get(url::relationships); nlohmann::json json = nlohmann::json::parse(res.text); Relationships rels = json; return rels; } Channels Client::get_guild_channels(Snowflake const& guild_id) { rpp::Headers headers({{"Authorization", token}}); rpp::Request req; req.set_headers(headers); // req.set_verbose(true); req.set_verify_ssl(false); rpp::Response res = req.get(url::base + "/guilds/" + guild_id + "/channels"); nlohmann::json json = nlohmann::json::parse(res.text); Channels channels = json; return channels; } void Client::send_message(Snowflake const& channel_id, String const& message) { rpp::Body body; body.append({{"content", message}}); rpp::Headers headers({{"Authorization", token}}); rpp::Request req; req.set_headers(headers); // req.set_verbose(true); req.set_verify_ssl(false); rpp::Response res = req.post(url::base + "/channels/" + channel_id + "/messages", body); } void Client::connect(String const& url) { // Debug logging websocket.clear_access_channels(websocketpp::log::alevel::all); websocket.set_access_channels(websocketpp::log::alevel::connect); websocket.set_access_channels(websocketpp::log::alevel::disconnect); websocket.set_tls_init_handler([](websocketpp::connection_hdl) { return std::make_shared<websocketpp::lib::asio::ssl::context>(websocketpp::lib::asio::ssl::context::tlsv13_client); }); websocket.init_asio(); websocket.set_message_handler([this](websocketpp::connection_hdl handle, Websocket::message_ptr msg) -> void { websocket_message_handler(handle, msg); // force clang to format this line properly }); websocketpp::lib::error_code code; Websocket::connection_ptr connection = websocket.get_connection(url, code); if (code) { on_websocket_error(Websocket_Error::connection_failed, code.message()); // Let outside know it's not connected maybe? return; } handle = connection->get_handle(); websocket.connect(connection); thread.reset(new std::thread([this]() { websocket.run(); })); on_connect(); } void Client::disconnect(uint32 code, String const& reason) { heartbeat_timer.cancel(); websocket.close(handle, code, reason); on_disconnect(); if (thread) { thread->join(); } } void Client::websocket_message_handler(websocketpp::connection_hdl handle, Websocket::message_ptr msg) { nlohmann::json parsed_msg = nlohmann::json::parse(msg->get_payload()); int opcode = (parsed_msg.count("op") == 1 ? parsed_msg.at("op").get<int>() : -1); if (opcode == opcodes::gateway::hello) { heartbeat_interval = parsed_msg.at("d").at("heartbeat_interval").get<uint32>(); identify(); heartbeat(); } else if (opcode == opcodes::gateway::heartbeat_ack) { heartbeat_ack = true; } else if (opcode == opcodes::gateway::dispatch) { String type = parsed_msg.at("t").get<String>(); if (type == "READY") { on_ready(msg->get_payload()); } else if (type == "PRESENCE_UPDATE") { qDebug() << QString::fromStdString(msg->get_payload()); } else if (type == "TYPING_START") { } else if (type == "MESSAGE_CREATE") { qDebug() << QString::fromStdString(msg->get_payload()); on_message(Message::from_json(parsed_msg.at("d"))); } } else { // Unknown opcode on_websocket_message(handle, msg); } } void Client::websocket_send(websocketpp::connection_hdl handle, String const& payload) { websocketpp::lib::error_code ec; websocket.send(handle, payload, websocketpp::frame::opcode::text, ec); // TODO add error handling } Timer Client::set_timer(uint32 time, std::function<void()> callback) { Websocket::timer_ptr timer = websocket.set_timer(time, [callback](websocketpp::lib::error_code const& code) { if (code == websocketpp::transport::error::operation_aborted) { return; } callback(); }); return Timer([timer]() { timer->cancel(); }); } void Client::identify() { websocket_send(handle, "{\"op\":2,\"d\":{\"token\":\"" + token + "\",\"properties\":{\"os\":\"Windows\"}}}"); } void Client::heartbeat() { qDebug() << "heartbeat"; if (!heartbeat_ack) { // TODO // No ack, terminate connection } heartbeat_ack = false; websocket_send(handle, "{\"op\":1,\"d\":null}"); on_heartbeat(); heartbeat_timer = set_timer(heartbeat_interval, [this]() { heartbeat(); }); } // Discord events void Client::on_message(Message const&) {} void Client::on_reaction() {} void Client::on_presence_update() {} // Websocket events void Client::on_heartbeat() {} void Client::on_connect() {} void Client::on_ready(String const&) {} void Client::on_disconnect() {} void Client::on_websocket_error(Websocket_Error error, String const& message) { qDebug() << "websocket error: " << QString::fromStdString(message); } void Client::on_websocket_message(websocketpp::connection_hdl handle, websocketpp::connection<websocketpp::config::asio_tls_client>::message_ptr msg) { qDebug() << "Websocket message:" << QString::fromStdString(msg->get_payload()); } } // namespace discord
fe12aab07a3eada402442c080e833660d8492257
ca940a93d48feb14ab8ce3ec99d9c0c67668cd07
/kernel/CPU.cpp
19300b93b247924f4cc789656967e5641f13ed62
[]
no_license
cocoajunkie/vm
2583acb743c9438bed8a1d809cde8b595c1a9b28
dfce0cec1645ce4195c4f75b73910606ebe3033b
refs/heads/master
2021-01-01T05:52:08.707847
2009-01-10T19:06:16
2009-01-10T19:06:16
104,797
5
2
null
null
null
null
UTF-8
C++
false
false
2,058
cpp
CPU.cpp
#include <IOKit/IOBufferMemoryDescriptor.h> #include <IOKit/IOLocks.h> #include "CPU.h" #include "Log.h" #include "Registers.h" #include "VMX.h" #include "KernelExports.h" CPU* cpu_new() { CPU* cpu = (CPU*)IOMalloc(sizeof(CPU)); if (!cpu) { LOG_ERROR("cpu_new: can't allocate CPU"); return NULL; } memset(cpu, 0, sizeof(CPU)); cpu->regsMemoryDescriptor = IOBufferMemoryDescriptor::withOptions(kIOMemoryKernelUserShared, sizeof(Registers)); if (!cpu->regsMemoryDescriptor) { LOG_ERROR("cpu_new: can't allocate registers"); cpu_delete(cpu); return NULL; } cpu->regs = (Registers*)cpu->regsMemoryDescriptor->getBytesNoCopy(); memset(cpu->regs, 0, sizeof(Registers)); LOG("created CPU"); return cpu; } void cpu_delete(CPU* cpu) { if (cpu->regsMapping) cpu->regsMapping->release(); if (cpu->regsMemoryDescriptor) cpu->regsMemoryDescriptor->release(); IOFree(cpu, sizeof(CPU)); LOG("destroyed CPU"); } Registers* cpu_map_registers(CPU* cpu, task_t task) { if (!cpu->regsMapping) { cpu->regsMapping = cpu->regsMemoryDescriptor->createMappingInTask(task, 0, kIOMapAnywhere); if (!cpu->regsMapping) { LOG_ERROR("cpu_map_registers: can't create mapping"); return NULL; } LOG("mapped CPU registers"); } return (Registers*)cpu->regsMapping->getVirtualAddress(); } void cpu_run(CPU* cpu) { IOSimpleLock* lock = IOSimpleLockAlloc(); if (!lock) { LOG_ERROR("cpu_run: can't allocate simple lock"); return; } IOSimpleLockLock(lock); int host_cpu = cpu_number(); // vmxon if not already turned on if (!vmx_enable(host_cpu)) { goto cpu_run_exit; } /* TODO: init vmcs vmclear cpu's vmcs vmptrld cpu's vmcs init exit/entry/exec control fields vmclear cpu's vmcs */ /* TODO: vmptrld cpu's vmcs update vmcs update host state update guest state load guest registers vmlaunch vm exit: vmclear to flush cached info to vmcs in case next vm entry is on different host cpu */ LOG("running CPU"); cpu_run_exit: IOSimpleLockUnlock(lock); IOSimpleLockFree(lock); }
bf93cd9216679083506a1949a75795e6a565f13d
95efcbe634d1d8f8c8bbbe4496c91dc9053cac63
/Siv3D/src/Siv3D/Quaternion/SivQuaternion.cpp
c2457a8dd5e16efb4e61877bf966401d2a447ebd
[ "MIT" ]
permissive
Toshahiko/OpenSiv3D
74d9fc6dc219a92f6127c52cb1845241f8082668
26c2304fe8524a8fbb4e334b6108d8eeaf6438a5
refs/heads/master
2022-08-08T15:57:09.558623
2022-08-02T11:42:01
2022-08-02T11:42:01
220,251,401
0
0
MIT
2022-08-02T11:42:02
2019-11-07T14:08:25
null
UTF-8
C++
false
false
1,524
cpp
SivQuaternion.cpp
//----------------------------------------------- // // This file is part of the Siv3D Engine. // // Copyright (c) 2008-2022 Ryo Suzuki // Copyright (c) 2016-2022 OpenSiv3D Project // // Licensed under the MIT License. // //----------------------------------------------- # include <Siv3D/Quaternion.hpp> # include <Siv3D/Mat4x4.hpp> namespace s3d { Quaternion::Quaternion(const Mat4x4& m) noexcept : value{ DirectX::XMQuaternionRotationMatrix(m) } {} Quaternion Quaternion::Rotate(const Mat4x4& m) noexcept { return DirectX::XMQuaternionRotationMatrix(m); } Quaternion Quaternion::FromUnitVectorPairs(const std::pair<Vec3, Vec3>& from, const std::pair<Vec3, Vec3>& to) noexcept { // https://stackoverflow.com/questions/19445934/quaternion-from-two-vector-pairs // https://robokitchen.tumblr.com/post/67060392720/finding-a-quaternion-from-two-pairs-of-vectors const Vec3 u0 = from.first; const Vec3 v0 = from.second; const Vec3 u2 = to.first; const Vec3 v2 = to.second; const Quaternion q2 = Quaternion::FromUnitVectors(u0, u2); const Vec3 v1 = v2 * q2.conjugated(); const Vec3 v0_proj = v0.projectOnPlane(u0); const Vec3 v1_proj = v1.projectOnPlane(u0); double angleInPlane = v0_proj.angleTo(v1_proj); if (v1_proj.dot(u0.cross(v0)) < 0.0) { angleInPlane *= -1; } const Quaternion q1 = Quaternion::RotationAxis(u0, angleInPlane); return (q1 * q2); } void Formatter(FormatData& formatData, const Quaternion& value) { Formatter(formatData, value.value); } }
cab9bd892574d7b3c4a024a7115d8c1938d11adf
a46cc70583b0c11127dfa0fac9d44b52fb4821d3
/serial/crc32.cpp
79badcbc5b23b6b5b92365b752bf642ddcd25a01
[]
no_license
francescotosoni/crc
179185e4d7addd357361b29c6ea20296c6544b00
8703fc02250659d60b745397a49bb239433be412
refs/heads/main
2023-01-06T12:25:10.656199
2020-11-13T08:57:12
2020-11-13T08:57:12
303,300,395
0
0
null
null
null
null
UTF-8
C++
false
false
3,563
cpp
crc32.cpp
#include<iostream> static const uint32_t table[] = { 0x00000000, 0xF26B8303, 0xE13B70F7, 0x1350F3F4, 0xC79A971F, 0x35F1141C, 0x26A1E7E8, 0xD4CA64EB, 0x8AD958CF, 0x78B2DBCC, 0x6BE22838, 0x9989AB3B, 0x4D43CFD0, 0xBF284CD3, 0xAC78BF27, 0x5E133C24, 0x105EC76F, 0xE235446C, 0xF165B798, 0x030E349B, 0xD7C45070, 0x25AFD373, 0x36FF2087, 0xC494A384, 0x9A879FA0, 0x68EC1CA3, 0x7BBCEF57, 0x89D76C54, 0x5D1D08BF, 0xAF768BBC, 0xBC267848, 0x4E4DFB4B, 0x20BD8EDE, 0xD2D60DDD, 0xC186FE29, 0x33ED7D2A, 0xE72719C1, 0x154C9AC2, 0x061C6936, 0xF477EA35, 0xAA64D611, 0x580F5512, 0x4B5FA6E6, 0xB93425E5, 0x6DFE410E, 0x9F95C20D, 0x8CC531F9, 0x7EAEB2FA, 0x30E349B1, 0xC288CAB2, 0xD1D83946, 0x23B3BA45, 0xF779DEAE, 0x05125DAD, 0x1642AE59, 0xE4292D5A, 0xBA3A117E, 0x4851927D, 0x5B016189, 0xA96AE28A, 0x7DA08661, 0x8FCB0562, 0x9C9BF696, 0x6EF07595, 0x417B1DBC, 0xB3109EBF, 0xA0406D4B, 0x522BEE48, 0x86E18AA3, 0x748A09A0, 0x67DAFA54, 0x95B17957, 0xCBA24573, 0x39C9C670, 0x2A993584, 0xD8F2B687, 0x0C38D26C, 0xFE53516F, 0xED03A29B, 0x1F682198, 0x5125DAD3, 0xA34E59D0, 0xB01EAA24, 0x42752927, 0x96BF4DCC, 0x64D4CECF, 0x77843D3B, 0x85EFBE38, 0xDBFC821C, 0x2997011F, 0x3AC7F2EB, 0xC8AC71E8, 0x1C661503, 0xEE0D9600, 0xFD5D65F4, 0x0F36E6F7, 0x61C69362, 0x93AD1061, 0x80FDE395, 0x72966096, 0xA65C047D, 0x5437877E, 0x4767748A, 0xB50CF789, 0xEB1FCBAD, 0x197448AE, 0x0A24BB5A, 0xF84F3859, 0x2C855CB2, 0xDEEEDFB1, 0xCDBE2C45, 0x3FD5AF46, 0x7198540D, 0x83F3D70E, 0x90A324FA, 0x62C8A7F9, 0xB602C312, 0x44694011, 0x5739B3E5, 0xA55230E6, 0xFB410CC2, 0x092A8FC1, 0x1A7A7C35, 0xE811FF36, 0x3CDB9BDD, 0xCEB018DE, 0xDDE0EB2A, 0x2F8B6829, 0x82F63B78, 0x709DB87B, 0x63CD4B8F, 0x91A6C88C, 0x456CAC67, 0xB7072F64, 0xA457DC90, 0x563C5F93, 0x082F63B7, 0xFA44E0B4, 0xE9141340, 0x1B7F9043, 0xCFB5F4A8, 0x3DDE77AB, 0x2E8E845F, 0xDCE5075C, 0x92A8FC17, 0x60C37F14, 0x73938CE0, 0x81F80FE3, 0x55326B08, 0xA759E80B, 0xB4091BFF, 0x466298FC, 0x1871A4D8, 0xEA1A27DB, 0xF94AD42F, 0x0B21572C, 0xDFEB33C7, 0x2D80B0C4, 0x3ED04330, 0xCCBBC033, 0xA24BB5A6, 0x502036A5, 0x4370C551, 0xB11B4652, 0x65D122B9, 0x97BAA1BA, 0x84EA524E, 0x7681D14D, 0x2892ED69, 0xDAF96E6A, 0xC9A99D9E, 0x3BC21E9D, 0xEF087A76, 0x1D63F975, 0x0E330A81, 0xFC588982, 0xB21572C9, 0x407EF1CA, 0x532E023E, 0xA145813D, 0x758FE5D6, 0x87E466D5, 0x94B49521, 0x66DF1622, 0x38CC2A06, 0xCAA7A905, 0xD9F75AF1, 0x2B9CD9F2, 0xFF56BD19, 0x0D3D3E1A, 0x1E6DCDEE, 0xEC064EED, 0xC38D26C4, 0x31E6A5C7, 0x22B65633, 0xD0DDD530, 0x0417B1DB, 0xF67C32D8, 0xE52CC12C, 0x1747422F, 0x49547E0B, 0xBB3FFD08, 0xA86F0EFC, 0x5A048DFF, 0x8ECEE914, 0x7CA56A17, 0x6FF599E3, 0x9D9E1AE0, 0xD3D3E1AB, 0x21B862A8, 0x32E8915C, 0xC083125F, 0x144976B4, 0xE622F5B7, 0xF5720643, 0x07198540, 0x590AB964, 0xAB613A67, 0xB831C993, 0x4A5A4A90, 0x9E902E7B, 0x6CFBAD78, 0x7FAB5E8C, 0x8DC0DD8F, 0xE330A81A, 0x115B2B19, 0x020BD8ED, 0xF0605BEE, 0x24AA3F05, 0xD6C1BC06, 0xC5914FF2, 0x37FACCF1, 0x69E9F0D5, 0x9B8273D6, 0x88D28022, 0x7AB90321, 0xAE7367CA, 0x5C18E4C9, 0x4F48173D, 0xBD23943E, 0xF36E6F75, 0x0105EC76, 0x12551F82, 0xE03E9C81, 0x34F4F86A, 0xC69F7B69, 0xD5CF889D, 0x27A40B9E, 0x79B737BA, 0x8BDCB4B9, 0x988C474D, 0x6AE7C44E, 0xBE2DA0A5, 0x4C4623A6, 0x5F16D052, 0xAD7D5351, };//polinomial: 0x1EDC6F41 uint32_t crc32(uint8_t *data, unsigned int length) { uint32_t crc = 0xffffffff; while (length--) { crc = table[(crc ^ *data++) & 0xFF] ^ (crc>>8); } return crc^0xffffffff; } int main() { uint32_t crc; uint8_t data[] = "testcrc32c"; crc = crc32(data, sizeof(data)-1); printf("crc32c: 0x%x\n", crc); return 0; }
bc1369d42467f1e252f697c4dc0a9ae8c0e7038c
2307db20bbea63dae055ea9b9f73c6a0f812dacc
/Array/BinarySearch.cpp
cec3bbb9f3f31a3891f61cc24691d042b8956a70
[]
no_license
NeelayRaj/CPPNotes
4801d9d12b921f31059602e30b6abe98dc6b6a52
86582041dcb9a5666613bd05db43449e8d6df786
refs/heads/main
2023-08-16T12:17:32.697524
2021-10-11T12:55:28
2021-10-11T12:55:28
406,369,664
0
0
null
null
null
null
UTF-8
C++
false
false
694
cpp
BinarySearch.cpp
#include <iostream> using namespace std; int BinSearch(int n ,int arr[], int s) { if (n/2 <= s) { for(int i = n/2; i < n; i++) { if(arr[i]==s) return i; } }else { for (int i = 0; i < n/2; i++) { if (arr[i]==s) return i; } } return -1; } int main() { int n,s; cout << "Enter size of array "; cin >> n; int arr[n]; cout<<"Enter Elements of array in Ascending Order "; for(int i = 0 ; i < n; i++) cin>>arr[i]; cout << "Enter Value to search in array "; cin>>s; cout<<s<<" is present at position "<<BinSearch(n, arr ,s); return 0; }
de41c125e822a62a4841a9a8853c74417634ea71
dcb1f00dd38014e0e1d37bed60fa412e29f71140
/wrapper/Core/SWWebPage.h
8d7ee2e6bba528e77e758fe848a2007672900819
[]
no_license
hualaw/ServerWebkit
1ed5ac2845ec18ab9d7a7a08cdf610575938ad00
be4c9a47b7c4edaf40a195b058c75903016a45bb
refs/heads/master
2020-03-28T14:29:52.963519
2018-09-12T14:27:08
2018-09-12T14:27:08
148,492,820
0
0
null
null
null
null
UTF-8
C++
false
false
360
h
SWWebPage.h
#ifndef _SERVER_WEBKIT_WRAPPER_WEB_PAGE_H__ #define _SERVER_WEBKIT_WRAPPER_WEB_PAGE_H__ #include "qwebpage.h" class SWWebPage : public QWebPage { Q_OBJECT public slots: bool shouldInterruptJavaScript() {return true;}; public: SWWebPage(QObject* parent); virtual ~SWWebPage(); void clearHistory(); }; #endif // _SERVER_WEBKIT_WRAPPER_WEB_PAGE_H__
624157fed42e609a926759f3bbeadbc55b5cf7e3
b73f27ba54ad98fa4314a79f2afbaee638cf13f0
/projects/MainUI/TrayIconPosition.h
ff86c751c53fafaa9844962cfd03dda1ef95f786
[]
no_license
weimingtom/httpcontentparser
4d5ed678f2b38812e05328b01bc6b0c161690991
54554f163b16a7c56e8350a148b1bd29461300a0
refs/heads/master
2021-01-09T21:58:30.326476
2009-09-23T08:05:31
2009-09-23T08:05:31
48,733,304
3
0
null
null
null
null
UTF-8
C++
false
false
1,608
h
TrayIconPosition.h
// TrayIconPosition.h: interface for the CTrayIconPosition class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_TRAYICONPOSITION_H__9FD8A5A1_419F_11D7_B751_00304F20BD3B__INCLUDED_) #define AFX_TRAYICONPOSITION_H__9FD8A5A1_419F_11D7_B751_00304F20BD3B__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 class CTrayIconPosition { public: void Invalidate(); typedef enum Precision {Default=0,Low,Medium,High}; void RestoreTrayIcon(HICON icon); void SetPrecisionTimeOuts(INT_PTR iLowSec, INT_PTR iMedSec, INT_PTR iHighSec); BOOL GetTrayIconPosition(CPoint& point, Precision prPrec = Default); void InitializePositionTracking(HWND hwndOfIconOwner, INT_PTR iIconID); void SetDefaultPrecision(Precision newPrecision) { m_prDefaultPrecision = newPrecision; }; Precision GetDefaultPrecision(void) { return m_prDefaultPrecision; }; CTrayIconPosition(); virtual ~CTrayIconPosition(); protected: HICON m_hIconTemp; CRect m_rtRectangleOfTheTray; Precision m_prDefaultPrecision; CTime m_tLastUpdate; CPoint m_ptPosition; INT_PTR m_iTrayIconID; HWND m_hWndOfIconOwner; INT_PTR m_iPrecisions[3]; //This is table of time outs in seconds of low,med and high precision modes. OSVERSIONINFO m_osVer; BOOL FindOutPositionOfIcon(HICON icon); BOOL CheckIfColorIsBlackOrNearBlack(COLORREF crColor); CRect GetTrayWndRect(); static BOOL CALLBACK FindTrayWnd(HWND hwnd, LPARAM lParam); }; #endif // !defined(AFX_TRAYICONPOSITION_H__9FD8A5A1_419F_11D7_B751_00304F20BD3B__INCLUDED_)
c5737bafe1c0b16742c9d3624e9a0c8a2e71a26d
ea9fdab491ca277959f7dc59004d1a30c4ee6be4
/chromium/patches/patch-chrome_browser_download_download__prefs.h
8d1a2452e4eb48bdf42f3df4c314061df9b73a0f
[]
no_license
NetBSD/pkgsrc-wip
99f40fb6f56e2a5a11840a810e9cf8b6097e7f21
c94e923855e9515400435b2437a1659fdb26d2fb
refs/heads/master
2023-08-30T14:27:26.946664
2023-08-30T12:09:15
2023-08-30T12:09:15
42,824,785
81
59
null
2021-01-28T20:10:38
2015-09-20T18:44:07
Makefile
UTF-8
C++
false
false
996
h
patch-chrome_browser_download_download__prefs.h
$NetBSD$ --- chrome/browser/download/download_prefs.h.orig 2020-07-08 21:40:34.000000000 +0000 +++ chrome/browser/download/download_prefs.h @@ -110,7 +110,7 @@ class DownloadPrefs { // Disables auto-open based on file extension. void DisableAutoOpenByUserBasedOnExtension(const base::FilePath& file_name); -#if defined(OS_WIN) || defined(OS_LINUX) || defined(OS_MACOSX) +#if defined(OS_WIN) || defined(OS_LINUX) || defined(OS_MACOSX) || defined(OS_BSD) // Store the user preference to disk. If |should_open| is true, also disable // the built-in PDF plugin. If |should_open| is false, enable the PDF plugin. void SetShouldOpenPdfInSystemReader(bool should_open); @@ -167,7 +167,7 @@ class DownloadPrefs { std::unique_ptr<policy::URLBlacklist> auto_open_allowed_by_urls_; -#if defined(OS_WIN) || defined(OS_LINUX) || defined(OS_MACOSX) +#if defined(OS_WIN) || defined(OS_LINUX) || defined(OS_MACOSX) || defined(OS_BSD) bool should_open_pdf_in_system_reader_; #endif
0ae05a9f5bf63ff105aabc1ae6825b9d754313cc
7f31cefb537b8bdcc8c48bf39db0ade43f4b8aba
/BorderedCanvas.h
05f39e582ee68e3223ede98b0bc2317bf7745aed
[]
no_license
GeStanley/assignment4
3e0b071ce8ae5bd8367e4a0cdb97432847a0254c
90a3d55cac3cb5b07627ef7fa61f46d869bec241
refs/heads/master
2016-09-05T22:05:04.660325
2014-07-28T14:53:54
2014-07-28T14:53:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
484
h
BorderedCanvas.h
#ifndef BORDEREDCANVAS_H_ #define BORDEREDCANVAS_H_ #include <vector> #include "Canvas.h" using namespace std; class BorderedCanvas : public Canvas { public: //**** constructors ****// BorderedCanvas (const int & , const int &); //**** virtual functions ****// void clear(const char & = ' ') override; void put(const int & , const int & , const char & = '*') override; const char get(const int & , const int & ) const override; void decorate() override; }; #endif
afba4e66698dbb09471529d6ff5c1212f7d5dbb6
4fd8ac5f1931df93ffdbe1f568d514e0cc6ca92c
/build-projet_selimbenaich-Desktop_Qt_5_9_9_MinGW_32bit-Debug/ui_dialog.h
b6a3334e5a51e0bf72995c675240656e6673b1bb
[]
no_license
TheRealSumpark/QT_Project
4b0b5cf92de136be0ff933ba869094f5a81954b2
b58f722806a085d0e2662272fe9f53571f48654d
refs/heads/master
2021-05-21T14:02:17.330330
2020-04-23T14:47:28
2020-04-23T14:47:28
252,674,046
0
0
null
null
null
null
UTF-8
C++
false
false
5,632
h
ui_dialog.h
/******************************************************************************** ** Form generated from reading UI file 'dialog.ui' ** ** Created by: Qt User Interface Compiler version 5.9.9 ** ** WARNING! All changes made in this file will be lost when recompiling UI file! ********************************************************************************/ #ifndef UI_DIALOG_H #define UI_DIALOG_H #include <QtCore/QVariant> #include <QtWidgets/QAction> #include <QtWidgets/QApplication> #include <QtWidgets/QButtonGroup> #include <QtWidgets/QDateEdit> #include <QtWidgets/QDialog> #include <QtWidgets/QDoubleSpinBox> #include <QtWidgets/QHeaderView> #include <QtWidgets/QLabel> #include <QtWidgets/QLineEdit> #include <QtWidgets/QPushButton> #include <QtWidgets/QSpinBox> QT_BEGIN_NAMESPACE class Ui_Dialog { public: QPushButton *Ajouter_joueur; QPushButton *pushButton_2; QLineEdit *in_nom; QLineEdit *in_prenom; QLabel *label; QLabel *label_2; QDateEdit *in_date; QLabel *label_3; QDoubleSpinBox *in_poids; QLabel *label_4; QLabel *label_5; QDoubleSpinBox *in_taille; QLabel *image_2; QPushButton *b_image; QLabel *label_6; QLineEdit *in_id; QSpinBox *in_number; QLabel *label_7; void setupUi(QDialog *Dialog) { if (Dialog->objectName().isEmpty()) Dialog->setObjectName(QStringLiteral("Dialog")); Dialog->resize(475, 452); Ajouter_joueur = new QPushButton(Dialog); Ajouter_joueur->setObjectName(QStringLiteral("Ajouter_joueur")); Ajouter_joueur->setGeometry(QRect(260, 400, 75, 23)); pushButton_2 = new QPushButton(Dialog); pushButton_2->setObjectName(QStringLiteral("pushButton_2")); pushButton_2->setGeometry(QRect(370, 400, 75, 23)); in_nom = new QLineEdit(Dialog); in_nom->setObjectName(QStringLiteral("in_nom")); in_nom->setGeometry(QRect(60, 110, 113, 21)); in_prenom = new QLineEdit(Dialog); in_prenom->setObjectName(QStringLiteral("in_prenom")); in_prenom->setGeometry(QRect(60, 150, 113, 20)); label = new QLabel(Dialog); label->setObjectName(QStringLiteral("label")); label->setGeometry(QRect(10, 114, 47, 14)); label_2 = new QLabel(Dialog); label_2->setObjectName(QStringLiteral("label_2")); label_2->setGeometry(QRect(10, 153, 47, 14)); in_date = new QDateEdit(Dialog); in_date->setObjectName(QStringLiteral("in_date")); in_date->setGeometry(QRect(120, 210, 121, 41)); label_3 = new QLabel(Dialog); label_3->setObjectName(QStringLiteral("label_3")); label_3->setGeometry(QRect(10, 225, 91, 16)); in_poids = new QDoubleSpinBox(Dialog); in_poids->setObjectName(QStringLiteral("in_poids")); in_poids->setGeometry(QRect(60, 309, 64, 22)); label_4 = new QLabel(Dialog); label_4->setObjectName(QStringLiteral("label_4")); label_4->setGeometry(QRect(10, 313, 47, 14)); label_5 = new QLabel(Dialog); label_5->setObjectName(QStringLiteral("label_5")); label_5->setGeometry(QRect(10, 360, 47, 14)); in_taille = new QDoubleSpinBox(Dialog); in_taille->setObjectName(QStringLiteral("in_taille")); in_taille->setGeometry(QRect(60, 355, 64, 22)); image_2 = new QLabel(Dialog); image_2->setObjectName(QStringLiteral("image_2")); image_2->setGeometry(QRect(280, 100, 171, 261)); b_image = new QPushButton(Dialog); b_image->setObjectName(QStringLiteral("b_image")); b_image->setGeometry(QRect(170, 340, 75, 23)); label_6 = new QLabel(Dialog); label_6->setObjectName(QStringLiteral("label_6")); label_6->setGeometry(QRect(10, 73, 47, 14)); in_id = new QLineEdit(Dialog); in_id->setObjectName(QStringLiteral("in_id")); in_id->setGeometry(QRect(60, 70, 113, 21)); in_number = new QSpinBox(Dialog); in_number->setObjectName(QStringLiteral("in_number")); in_number->setGeometry(QRect(370, 41, 71, 41)); label_7 = new QLabel(Dialog); label_7->setObjectName(QStringLiteral("label_7")); label_7->setGeometry(QRect(320, 56, 47, 14)); retranslateUi(Dialog); QMetaObject::connectSlotsByName(Dialog); } // setupUi void retranslateUi(QDialog *Dialog) { Dialog->setWindowTitle(QApplication::translate("Ajouter", "Ajouter", Q_NULLPTR)); Ajouter_joueur->setText(QApplication::translate("Dialog", "Appliquer", Q_NULLPTR)); pushButton_2->setText(QApplication::translate("Dialog", "Annuler", Q_NULLPTR)); in_nom->setText(QString()); in_prenom->setText(QString()); label->setText(QApplication::translate("Dialog", "Nom:", Q_NULLPTR)); label_2->setText(QApplication::translate("Dialog", "Prenom:", Q_NULLPTR)); label_3->setText(QApplication::translate("Dialog", "Date de naissance:", Q_NULLPTR)); label_4->setText(QApplication::translate("Dialog", "poids", Q_NULLPTR)); label_5->setText(QApplication::translate("Dialog", "Taille", Q_NULLPTR)); image_2->setText(QString()); b_image->setText(QApplication::translate("Dialog", "image", Q_NULLPTR)); label_6->setText(QApplication::translate("Dialog", "Id:", Q_NULLPTR)); in_id->setText(QString()); label_7->setText(QApplication::translate("Dialog", "Numero:", Q_NULLPTR)); } // retranslateUi }; namespace Ui { class Dialog: public Ui_Dialog {}; } // namespace Ui QT_END_NAMESPACE #endif // UI_DIALOG_H
82a9f9f13c4f061666c94658842b9dfc4ca158b7
9fc7c8a1e1b6ca45a449cb509fa79dfe2bb14d43
/game_engine.cpp
1b6860e151d523fbb5eed7732b60df96fe66f4d3
[]
no_license
mikaevnikita/tic-tac-toe
cd16c27e888ebabc80be5df5f110cc24050df83d
f237643f12213a666d3fa8048830b74a085fc7cd
refs/heads/master
2021-09-02T02:30:07.799005
2017-12-29T18:57:03
2017-12-29T18:57:03
115,746,744
0
0
null
null
null
null
UTF-8
C++
false
false
4,600
cpp
game_engine.cpp
#include "game_engine.h" #include <stdexcept> using GameConstants::GameConstant; GameConstant GameEngine::whoseTurn(){ if(winner != GameConstant::CONTINUE) return GameConstant::EMPTY; return current_gamer; } GameEngine::GameEngine(const int& size, QObject* parent):QObject(parent) { pArray=nullptr; startNewGame(size); } int GameEngine::getSize(){ return _size; } void GameEngine::startNewGame(const int& size){ current_gamer=GameConstant::CROSS; if(size<0) throw std::invalid_argument("invalid size"); else{ if(pArray!=nullptr){ for(int i=0;i<_size;i++) delete[] pArray[i]; delete[] pArray; } _size=size; winner=GameConstant::CONTINUE; count_free_cells=size*size; pArray=new GameConstant*[size]; for(int i=0;i<size;i++){ pArray[i]=new GameConstant[size]; for(int j=0;j<size;j++) pArray[i][j]=GameConstant::EMPTY; } } } GameConstant GameEngine::whoWin(){ return winner; } GameConstant GameEngine::checkWin(const int& row, const int& col, const GameConstant& value){ /*Имеет смысл проверять только горизонталь, вертикаль содержащие поставленную клетку * и две диагонали * */ if(value==GameConstant::CROSS or value==GameConstant::ZERO){ int count=0; //Проверка по горизонтали for(int i=0;i<_size;i++){ if(pArray[row][i]!=value){ count=0; break; } else count++; } if(count==_size) return value; //Проверка по вертикали for(int i=0;i<_size;i++){ if(pArray[i][col]!=value){ count=0; break; } else count++; } if(count==_size) return value; //Проверка диагонали 1 for(int i=0;i<_size;i++){ if(pArray[i][i]!=value){ count=0; break; } else count++; } if(count==_size) return value; //Проверка диагонали 2 for(int i=0,j=0;i<_size;i++,j++){ if(pArray[_size-i-1][j]!=value){ count=0; break; } else count++; } if(count==_size) return value; } if(count_free_cells==0) return GameConstant::DRAW;//В конечном счете если ни одно из условий не выполнилось(нет победителя) else return GameConstant::CONTINUE; } GameConstant GameEngine::setPos(const int& row, const int& col, const GameConstant& value){ if( !(value==GameConstant::CROSS or value==GameConstant::ZERO) or row<0 or row>=_size or col<0 or col>=_size) throw std::invalid_argument("invalid arguments"); else{ if(winner!=GameConstant::CONTINUE or pArray[row][col]!=GameConstant::EMPTY or whoseTurn() != value) return GameConstant::EMPTY; else{ pArray[row][col]=value; current_gamer=(value == GameConstant::CROSS) ? GameConstant::ZERO : GameConstant::CROSS; count_free_cells--; GameConstant result=checkWin(row,col,value); winner = result; if(winner != GameConstant::CONTINUE) emit endOfGame(winner); return value; } } } GameConstant GameEngine::setPos(const Position& p, const GameConstant &value){ return setPos(p.getRow(),p.getCol(),value); } GameConstant GameEngine::getPos(const int& row, const int& col){ if(row<0 or row>=_size or col<0 or col>=_size) throw std::invalid_argument("invalid position"); else return pArray[row][col]; } GameEngine::GameEngine(GameEngine &engine){ startNewGame(engine._size); winner=engine.winner; count_free_cells=engine.count_free_cells; for(int i=0;i<_size;i++){ for(int j=0;j<_size;j++) pArray[i][j]=engine.pArray[i][j]; } } GameEngine::~GameEngine(){ for(int i=0;i<_size;i++) delete[] pArray[i]; delete[] pArray; } int GameEngine::countOfFreeCells(){ return count_free_cells; } GameConstant GameEngine::getPos(const Position& p){ return getPos(p.getRow(),p.getCol()); }
bcd97cab3f019ccaea897765acb4b5a4e987773c
185a45256591cf3e70e00bab721d966a4e71ca2c
/DirectX11 Engine/DirectX11 Engine/Src/Game Objects/Lights/AmbientLight.h
f9152b4b913a744980fcd0c66b02fa0a2ce369d6
[]
no_license
fourthskyinteractive/dx11-engine
f031c00a82002bf2d3cd18656d368f5af25891c0
a739725f91b5c39afc3306ac032cadde7f82eaec
refs/heads/master
2020-04-27T19:53:26.027730
2014-05-13T07:56:23
2014-05-13T07:56:23
39,148,228
1
0
null
null
null
null
UTF-8
C++
false
false
795
h
AmbientLight.h
#ifndef AMBIENTLIGHT_H #define AMBIENTLIGHT_H #include <d3d11.h> #include <d3d11shader.h> #include "../../Game/Definitions.h" class AmbientLight { private: XMFLOAT4 color; char* lightName; bool isLightOn; public: AmbientLight() : color(XMFLOAT4(1.0f, 1.0f, 1.0f, 1.0f)), isLightOn (false){} AmbientLight(const AmbientLight& _directionalLight){}; ~AmbientLight(){}; XMFLOAT4 GetLightColorF(){return color;} XMVECTOR GetLightColorV(){return XMLoadFloat4(&color);} char* GetLightName(){return lightName;} bool GetLightOn(){return isLightOn;} void SetLightColor(XMFLOAT4 _color){color = _color;} void SetLightName(char* _lightName){lightName = _lightName;} void SetIsLightOn(bool _isLightOn){isLightOn = _isLightOn;} }; #endif // !DIRECTIONALLIGHT_H
b9a6e4c536e47e779ca1ec89b9fba383e44d83e3
8cc6d6f590285ef00e0f30e0151c4d407847b651
/build_test/windows-build/Sources/src/kha/audio2/Audio1.cpp
c26356aeda162fbb81b8992e46b56f047cc25e8f
[]
no_license
piboistudios/ArmoryDeformIssues
e087d5097af74f958fd89dd8dd17ca57627bf6d1
84e8b14c5098a4a4db310c5177c5dcd46f40212d
refs/heads/master
2020-03-24T11:42:11.270376
2018-07-28T16:33:45
2018-07-28T16:33:45
142,692,926
0
0
null
null
null
null
UTF-8
C++
false
true
23,489
cpp
Audio1.cpp
// Generated by Haxe 3.4.4 (git build master @ 99b08bb) #include <hxcpp.h> #ifndef INCLUDED_c5728fd05c542abe #define INCLUDED_c5728fd05c542abe #include "cpp_float32array.h" #endif #ifndef INCLUDED_cpp_vm_Mutex #include <cpp/vm/Mutex.h> #endif #ifndef INCLUDED_haxe_io_Bytes #include <haxe/io/Bytes.h> #endif #ifndef INCLUDED_kha_Resource #include <kha/Resource.h> #endif #ifndef INCLUDED_kha_Sound #include <kha/Sound.h> #endif #ifndef INCLUDED_kha_arrays_Float32ArrayPrivate #include <kha/arrays/Float32ArrayPrivate.h> #endif #ifndef INCLUDED_kha_audio1_AudioChannel #include <kha/audio1/AudioChannel.h> #endif #ifndef INCLUDED_kha_audio2_Audio #include <kha/audio2/Audio.h> #endif #ifndef INCLUDED_kha_audio2_Audio1 #include <kha/audio2/Audio1.h> #endif #ifndef INCLUDED_kha_audio2_AudioChannel #include <kha/audio2/AudioChannel.h> #endif #ifndef INCLUDED_kha_audio2_Buffer #include <kha/audio2/Buffer.h> #endif #ifndef INCLUDED_kha_audio2_StreamChannel #include <kha/audio2/StreamChannel.h> #endif HX_LOCAL_STACK_FRAME(_hx_pos_54e6e67d0b7cf5ea_22__init,"kha.audio2.Audio1","_init",0x394948c4,"kha.audio2.Audio1._init","kha/audio2/Audio1.hx",22,0x063d6bfb) HX_LOCAL_STACK_FRAME(_hx_pos_54e6e67d0b7cf5ea_36_max,"kha.audio2.Audio1","max",0xdc426d39,"kha.audio2.Audio1.max","kha/audio2/Audio1.hx",36,0x063d6bfb) HX_LOCAL_STACK_FRAME(_hx_pos_54e6e67d0b7cf5ea_40_min,"kha.audio2.Audio1","min",0xdc427427,"kha.audio2.Audio1.min","kha/audio2/Audio1.hx",40,0x063d6bfb) HX_LOCAL_STACK_FRAME(_hx_pos_54e6e67d0b7cf5ea_43_mix,"kha.audio2.Audio1","mix",0xdc427431,"kha.audio2.Audio1.mix","kha/audio2/Audio1.hx",43,0x063d6bfb) HX_LOCAL_STACK_FRAME(_hx_pos_54e6e67d0b7cf5ea_89_play,"kha.audio2.Audio1","play",0xdfe10dbf,"kha.audio2.Audio1.play","kha/audio2/Audio1.hx",89,0x063d6bfb) HX_LOCAL_STACK_FRAME(_hx_pos_54e6e67d0b7cf5ea_108__playAgain,"kha.audio2.Audio1","_playAgain",0x44c12898,"kha.audio2.Audio1._playAgain","kha/audio2/Audio1.hx",108,0x063d6bfb) HX_LOCAL_STACK_FRAME(_hx_pos_54e6e67d0b7cf5ea_123_stream,"kha.audio2.Audio1","stream",0x3e03bd0b,"kha.audio2.Audio1.stream","kha/audio2/Audio1.hx",123,0x063d6bfb) HX_LOCAL_STACK_FRAME(_hx_pos_54e6e67d0b7cf5ea_9_boot,"kha.audio2.Audio1","boot",0xd6a263fd,"kha.audio2.Audio1.boot","kha/audio2/Audio1.hx",9,0x063d6bfb) namespace kha{ namespace audio2{ void Audio1_obj::__construct() { } Dynamic Audio1_obj::__CreateEmpty() { return new Audio1_obj; } void *Audio1_obj::_hx_vtable = 0; Dynamic Audio1_obj::__Create(hx::DynamicArray inArgs) { hx::ObjectPtr< Audio1_obj > _hx_result = new Audio1_obj(); _hx_result->__construct(); return _hx_result; } bool Audio1_obj::_hx_isInstanceOf(int inClassId) { return inClassId==(int)0x00000001 || inClassId==(int)0x7fc4c0c3; } int Audio1_obj::channelCount; ::Array< ::Dynamic> Audio1_obj::soundChannels; ::Array< ::Dynamic> Audio1_obj::streamChannels; ::Array< ::Dynamic> Audio1_obj::internalSoundChannels; ::Array< ::Dynamic> Audio1_obj::internalStreamChannels; ::kha::arrays::Float32ArrayPrivate Audio1_obj::sampleCache1; ::kha::arrays::Float32ArrayPrivate Audio1_obj::sampleCache2; ::cpp::vm::Mutex Audio1_obj::mutex; void Audio1_obj::_init(){ HX_GC_STACKFRAME(&_hx_pos_54e6e67d0b7cf5ea_22__init) HXLINE( 24) ::kha::audio2::Audio1_obj::mutex = ::cpp::vm::Mutex_obj::__alloc( HX_CTX ); HXLINE( 26) ::Array< ::Dynamic> this1 = ::Array_obj< ::Dynamic>::__new((int)16); HXDLIN( 26) ::kha::audio2::Audio1_obj::soundChannels = this1; HXLINE( 27) ::Array< ::Dynamic> this2 = ::Array_obj< ::Dynamic>::__new((int)16); HXDLIN( 27) ::kha::audio2::Audio1_obj::streamChannels = this2; HXLINE( 28) ::Array< ::Dynamic> this3 = ::Array_obj< ::Dynamic>::__new((int)16); HXDLIN( 28) ::kha::audio2::Audio1_obj::internalSoundChannels = this3; HXLINE( 29) ::Array< ::Dynamic> this4 = ::Array_obj< ::Dynamic>::__new((int)16); HXDLIN( 29) ::kha::audio2::Audio1_obj::internalStreamChannels = this4; HXLINE( 30) ::kha::arrays::Float32ArrayPrivate this5 = ::kha::arrays::Float32ArrayPrivate_obj::__alloc( HX_CTX ,(int)512); HXDLIN( 30) ::kha::audio2::Audio1_obj::sampleCache1 = this5; HXLINE( 31) ::kha::arrays::Float32ArrayPrivate this6 = ::kha::arrays::Float32ArrayPrivate_obj::__alloc( HX_CTX ,(int)512); HXDLIN( 31) ::kha::audio2::Audio1_obj::sampleCache2 = this6; HXLINE( 32) ::kha::audio2::Audio_obj::audioCallback = ::kha::audio2::Audio1_obj::mix_dyn(); } STATIC_HX_DEFINE_DYNAMIC_FUNC0(Audio1_obj,_init,(void)) Float Audio1_obj::max(Float a,Float b){ HX_STACKFRAME(&_hx_pos_54e6e67d0b7cf5ea_36_max) HXDLIN( 36) if ((a > b)) { HXDLIN( 36) return a; } else { HXDLIN( 36) return b; } HXDLIN( 36) return ((Float)0.); } STATIC_HX_DEFINE_DYNAMIC_FUNC2(Audio1_obj,max,return ) Float Audio1_obj::min(Float a,Float b){ HX_STACKFRAME(&_hx_pos_54e6e67d0b7cf5ea_40_min) HXDLIN( 40) if ((a < b)) { HXDLIN( 40) return a; } else { HXDLIN( 40) return b; } HXDLIN( 40) return ((Float)0.); } STATIC_HX_DEFINE_DYNAMIC_FUNC2(Audio1_obj,min,return ) void Audio1_obj::mix(int samples, ::kha::audio2::Buffer buffer){ HX_GC_STACKFRAME(&_hx_pos_54e6e67d0b7cf5ea_43_mix) HXLINE( 44) if ((::kha::audio2::Audio1_obj::sampleCache1->self.length() < samples)) { HXLINE( 45) ::kha::arrays::Float32ArrayPrivate this1 = ::kha::arrays::Float32ArrayPrivate_obj::__alloc( HX_CTX ,samples); HXDLIN( 45) ::kha::audio2::Audio1_obj::sampleCache1 = this1; HXLINE( 46) ::kha::arrays::Float32ArrayPrivate this2 = ::kha::arrays::Float32ArrayPrivate_obj::__alloc( HX_CTX ,samples); HXDLIN( 46) ::kha::audio2::Audio1_obj::sampleCache2 = this2; } HXLINE( 48) { HXLINE( 48) int _g1 = (int)0; HXDLIN( 48) int _g = samples; HXDLIN( 48) while((_g1 < _g)){ HXLINE( 48) _g1 = (_g1 + (int)1); HXDLIN( 48) int i = (_g1 - (int)1); HXLINE( 49) ::kha::audio2::Audio1_obj::sampleCache2->self.set(i,(int)0); } } HXLINE( 53) ::kha::audio2::Audio1_obj::mutex->acquire(); HXLINE( 55) { HXLINE( 55) int _g2 = (int)0; HXDLIN( 55) while((_g2 < (int)16)){ HXLINE( 55) _g2 = (_g2 + (int)1); HXDLIN( 55) int i1 = (_g2 - (int)1); HXLINE( 56) { HXLINE( 56) ::Array< ::Dynamic> this3 = ::kha::audio2::Audio1_obj::internalSoundChannels; HXDLIN( 56) ::kha::audio2::AudioChannel val = ( ( ::kha::audio2::AudioChannel)(_hx_array_unsafe_get(::kha::audio2::Audio1_obj::soundChannels,i1)) ); HXDLIN( 56) this3->__unsafe_set(i1,val); } } } HXLINE( 58) { HXLINE( 58) int _g3 = (int)0; HXDLIN( 58) while((_g3 < (int)16)){ HXLINE( 58) _g3 = (_g3 + (int)1); HXDLIN( 58) int i2 = (_g3 - (int)1); HXLINE( 59) { HXLINE( 59) ::Array< ::Dynamic> this4 = ::kha::audio2::Audio1_obj::internalStreamChannels; HXDLIN( 59) ::kha::audio2::StreamChannel val1 = ( ( ::kha::audio2::StreamChannel)(_hx_array_unsafe_get(::kha::audio2::Audio1_obj::streamChannels,i2)) ); HXDLIN( 59) this4->__unsafe_set(i2,val1); } } } HXLINE( 62) ::kha::audio2::Audio1_obj::mutex->release(); HXLINE( 65) { HXLINE( 65) int _g4 = (int)0; HXDLIN( 65) ::Array< ::Dynamic> _g11 = ::kha::audio2::Audio1_obj::internalSoundChannels; HXDLIN( 65) while((_g4 < _g11->length)){ HXLINE( 65) ::kha::audio2::AudioChannel channel = ( ( ::kha::audio2::AudioChannel)(_hx_array_unsafe_get(_g11,_g4)) ); HXDLIN( 65) _g4 = (_g4 + (int)1); HXLINE( 66) bool _hx_tmp; HXDLIN( 66) if (hx::IsNotNull( channel )) { HXLINE( 66) _hx_tmp = channel->get_finished(); } else { HXLINE( 66) _hx_tmp = true; } HXDLIN( 66) if (_hx_tmp) { HXLINE( 66) continue; } HXLINE( 67) channel->nextSamples(::kha::audio2::Audio1_obj::sampleCache1,samples,buffer->samplesPerSecond); HXLINE( 68) { HXLINE( 68) int _g31 = (int)0; HXDLIN( 68) int _g21 = samples; HXDLIN( 68) while((_g31 < _g21)){ HXLINE( 68) _g31 = (_g31 + (int)1); HXDLIN( 68) int i3 = (_g31 - (int)1); HXLINE( 69) { HXLINE( 69) int _g41 = i3; HXDLIN( 69) ::kha::arrays::Float32ArrayPrivate _g5 = ::kha::audio2::Audio1_obj::sampleCache2; HXDLIN( 69) { HXLINE( 69) float value = _g5->self.get(_g41); HXDLIN( 69) float value1 = ::kha::audio2::Audio1_obj::sampleCache1->self.get(i3); HXDLIN( 69) float value2 = (value + (value1 * channel->get_volume())); HXDLIN( 69) _g5->self.set(_g41,value2); } } } } } } HXLINE( 72) { HXLINE( 72) int _g6 = (int)0; HXDLIN( 72) ::Array< ::Dynamic> _g12 = ::kha::audio2::Audio1_obj::internalStreamChannels; HXDLIN( 72) while((_g6 < _g12->length)){ HXLINE( 72) ::kha::audio2::StreamChannel channel1 = ( ( ::kha::audio2::StreamChannel)(_hx_array_unsafe_get(_g12,_g6)) ); HXDLIN( 72) _g6 = (_g6 + (int)1); HXLINE( 73) bool _hx_tmp1; HXDLIN( 73) if (hx::IsNotNull( channel1 )) { HXLINE( 73) _hx_tmp1 = channel1->get_finished(); } else { HXLINE( 73) _hx_tmp1 = true; } HXDLIN( 73) if (_hx_tmp1) { HXLINE( 73) continue; } HXLINE( 74) channel1->nextSamples(::kha::audio2::Audio1_obj::sampleCache1,samples,buffer->samplesPerSecond); HXLINE( 75) { HXLINE( 75) int _g32 = (int)0; HXDLIN( 75) int _g22 = samples; HXDLIN( 75) while((_g32 < _g22)){ HXLINE( 75) _g32 = (_g32 + (int)1); HXDLIN( 75) int i4 = (_g32 - (int)1); HXLINE( 76) { HXLINE( 76) int _g42 = i4; HXDLIN( 76) ::kha::arrays::Float32ArrayPrivate _g51 = ::kha::audio2::Audio1_obj::sampleCache2; HXDLIN( 76) { HXLINE( 76) float value3 = _g51->self.get(_g42); HXDLIN( 76) float value4 = ::kha::audio2::Audio1_obj::sampleCache1->self.get(i4); HXDLIN( 76) float value5 = (value3 + (value4 * channel1->get_volume())); HXDLIN( 76) _g51->self.set(_g42,value5); } } } } } } HXLINE( 80) { HXLINE( 80) int _g13 = (int)0; HXDLIN( 80) int _g7 = samples; HXDLIN( 80) while((_g13 < _g7)){ HXLINE( 80) _g13 = (_g13 + (int)1); HXDLIN( 80) int i5 = (_g13 - (int)1); HXLINE( 81) { HXLINE( 81) ::kha::arrays::Float32ArrayPrivate this5 = buffer->data; HXDLIN( 81) int index = buffer->writeLocation; HXDLIN( 81) Float a = ::kha::audio2::Audio1_obj::sampleCache2->self.get(i5); HXDLIN( 81) Float a1; HXDLIN( 81) if ((a < ((Float)1.0))) { HXLINE( 81) a1 = a; } else { HXLINE( 81) a1 = ((Float)1.0); } HXDLIN( 81) float value6; HXDLIN( 81) if ((a1 > ((Float)-1.0))) { HXLINE( 81) value6 = a1; } else { HXLINE( 81) value6 = ((Float)-1.0); } HXDLIN( 81) this5->self.set(index,value6); } HXLINE( 82) ::kha::audio2::Buffer buffer1 = buffer; HXDLIN( 82) buffer1->writeLocation = (buffer1->writeLocation + (int)1); HXLINE( 83) if ((buffer->writeLocation >= buffer->size)) { HXLINE( 84) buffer->writeLocation = (int)0; } } } } STATIC_HX_DEFINE_DYNAMIC_FUNC2(Audio1_obj,mix,(void)) ::Dynamic Audio1_obj::play( ::kha::Sound sound,hx::Null< bool > __o_loop){ bool loop = __o_loop.Default(false); HX_GC_STACKFRAME(&_hx_pos_54e6e67d0b7cf5ea_89_play) HXLINE( 91) ::kha::audio2::Audio1_obj::mutex->acquire(); HXLINE( 93) ::kha::audio2::AudioChannel channel = null(); HXLINE( 94) { HXLINE( 94) int _g = (int)0; HXDLIN( 94) while((_g < (int)16)){ HXLINE( 94) _g = (_g + (int)1); HXDLIN( 94) int i = (_g - (int)1); HXLINE( 95) bool _hx_tmp; HXDLIN( 95) if (hx::IsNotNull( ( ( ::kha::audio2::AudioChannel)(_hx_array_unsafe_get(::kha::audio2::Audio1_obj::soundChannels,i)) ) )) { HXLINE( 95) _hx_tmp = ( ( ::kha::audio2::AudioChannel)(_hx_array_unsafe_get(::kha::audio2::Audio1_obj::soundChannels,i)) )->get_finished(); } else { HXLINE( 95) _hx_tmp = true; } HXDLIN( 95) if (_hx_tmp) { HXLINE( 96) channel = ::kha::audio2::AudioChannel_obj::__alloc( HX_CTX ,loop); HXLINE( 97) channel->data = sound->uncompressedData; HXLINE( 98) ::kha::audio2::Audio1_obj::soundChannels->__unsafe_set(i,channel); HXLINE( 99) goto _hx_goto_12; } } _hx_goto_12:; } HXLINE( 103) ::kha::audio2::Audio1_obj::mutex->release(); HXLINE( 105) return channel; } STATIC_HX_DEFINE_DYNAMIC_FUNC2(Audio1_obj,play,return ) void Audio1_obj::_playAgain( ::kha::audio2::AudioChannel channel){ HX_STACKFRAME(&_hx_pos_54e6e67d0b7cf5ea_108__playAgain) HXLINE( 110) ::kha::audio2::Audio1_obj::mutex->acquire(); HXLINE( 112) { HXLINE( 112) int _g = (int)0; HXDLIN( 112) while((_g < (int)16)){ HXLINE( 112) _g = (_g + (int)1); HXDLIN( 112) int i = (_g - (int)1); HXLINE( 113) bool _hx_tmp; HXDLIN( 113) bool _hx_tmp1; HXDLIN( 113) if (hx::IsNotNull( ( ( ::kha::audio2::AudioChannel)(_hx_array_unsafe_get(::kha::audio2::Audio1_obj::soundChannels,i)) ) )) { HXLINE( 113) _hx_tmp1 = ( ( ::kha::audio2::AudioChannel)(_hx_array_unsafe_get(::kha::audio2::Audio1_obj::soundChannels,i)) )->get_finished(); } else { HXLINE( 113) _hx_tmp1 = true; } HXDLIN( 113) if (!(_hx_tmp1)) { HXLINE( 113) _hx_tmp = hx::IsEq( ( ( ::kha::audio2::AudioChannel)(_hx_array_unsafe_get(::kha::audio2::Audio1_obj::soundChannels,i)) ),channel ); } else { HXLINE( 113) _hx_tmp = true; } HXDLIN( 113) if (_hx_tmp) { HXLINE( 114) ::kha::audio2::Audio1_obj::soundChannels->__unsafe_set(i,channel); HXLINE( 115) goto _hx_goto_14; } } _hx_goto_14:; } HXLINE( 119) ::kha::audio2::Audio1_obj::mutex->release(); } STATIC_HX_DEFINE_DYNAMIC_FUNC1(Audio1_obj,_playAgain,(void)) ::Dynamic Audio1_obj::stream( ::kha::Sound sound,hx::Null< bool > __o_loop){ bool loop = __o_loop.Default(false); HX_GC_STACKFRAME(&_hx_pos_54e6e67d0b7cf5ea_123_stream) HXLINE( 124) { HXLINE( 126) ::Dynamic hardwareChannel = ::kha::audio2::Audio_obj::stream(sound,loop); HXLINE( 127) if (hx::IsNotNull( hardwareChannel )) { HXLINE( 127) return hardwareChannel; } } HXLINE( 131) ::kha::audio2::Audio1_obj::mutex->acquire(); HXLINE( 133) ::kha::audio2::StreamChannel channel = null(); HXLINE( 134) { HXLINE( 134) int _g = (int)0; HXDLIN( 134) while((_g < (int)16)){ HXLINE( 134) _g = (_g + (int)1); HXDLIN( 134) int i = (_g - (int)1); HXLINE( 135) bool _hx_tmp; HXDLIN( 135) if (hx::IsNotNull( ( ( ::kha::audio2::StreamChannel)(_hx_array_unsafe_get(::kha::audio2::Audio1_obj::streamChannels,i)) ) )) { HXLINE( 135) _hx_tmp = ( ( ::kha::audio2::StreamChannel)(_hx_array_unsafe_get(::kha::audio2::Audio1_obj::streamChannels,i)) )->get_finished(); } else { HXLINE( 135) _hx_tmp = true; } HXDLIN( 135) if (_hx_tmp) { HXLINE( 136) channel = ::kha::audio2::StreamChannel_obj::__alloc( HX_CTX ,sound->compressedData,loop); HXLINE( 137) ::kha::audio2::Audio1_obj::streamChannels->__unsafe_set(i,channel); HXLINE( 138) goto _hx_goto_16; } } _hx_goto_16:; } HXLINE( 142) ::kha::audio2::Audio1_obj::mutex->release(); HXLINE( 144) return channel; } STATIC_HX_DEFINE_DYNAMIC_FUNC2(Audio1_obj,stream,return ) Audio1_obj::Audio1_obj() { } bool Audio1_obj::__GetStatic(const ::String &inName, Dynamic &outValue, hx::PropertyAccess inCallProp) { switch(inName.length) { case 3: if (HX_FIELD_EQ(inName,"max") ) { outValue = max_dyn(); return true; } if (HX_FIELD_EQ(inName,"min") ) { outValue = min_dyn(); return true; } if (HX_FIELD_EQ(inName,"mix") ) { outValue = mix_dyn(); return true; } break; case 4: if (HX_FIELD_EQ(inName,"play") ) { outValue = play_dyn(); return true; } break; case 5: if (HX_FIELD_EQ(inName,"mutex") ) { outValue = ( mutex ); return true; } if (HX_FIELD_EQ(inName,"_init") ) { outValue = _init_dyn(); return true; } break; case 6: if (HX_FIELD_EQ(inName,"stream") ) { outValue = stream_dyn(); return true; } break; case 10: if (HX_FIELD_EQ(inName,"_playAgain") ) { outValue = _playAgain_dyn(); return true; } break; case 12: if (HX_FIELD_EQ(inName,"sampleCache1") ) { outValue = ( sampleCache1 ); return true; } if (HX_FIELD_EQ(inName,"sampleCache2") ) { outValue = ( sampleCache2 ); return true; } break; case 13: if (HX_FIELD_EQ(inName,"soundChannels") ) { outValue = ( soundChannels ); return true; } break; case 14: if (HX_FIELD_EQ(inName,"streamChannels") ) { outValue = ( streamChannels ); return true; } break; case 21: if (HX_FIELD_EQ(inName,"internalSoundChannels") ) { outValue = ( internalSoundChannels ); return true; } break; case 22: if (HX_FIELD_EQ(inName,"internalStreamChannels") ) { outValue = ( internalStreamChannels ); return true; } } return false; } bool Audio1_obj::__SetStatic(const ::String &inName,Dynamic &ioValue,hx::PropertyAccess inCallProp) { switch(inName.length) { case 5: if (HX_FIELD_EQ(inName,"mutex") ) { mutex=ioValue.Cast< ::cpp::vm::Mutex >(); return true; } break; case 12: if (HX_FIELD_EQ(inName,"sampleCache1") ) { sampleCache1=ioValue.Cast< ::kha::arrays::Float32ArrayPrivate >(); return true; } if (HX_FIELD_EQ(inName,"sampleCache2") ) { sampleCache2=ioValue.Cast< ::kha::arrays::Float32ArrayPrivate >(); return true; } break; case 13: if (HX_FIELD_EQ(inName,"soundChannels") ) { soundChannels=ioValue.Cast< ::Array< ::Dynamic> >(); return true; } break; case 14: if (HX_FIELD_EQ(inName,"streamChannels") ) { streamChannels=ioValue.Cast< ::Array< ::Dynamic> >(); return true; } break; case 21: if (HX_FIELD_EQ(inName,"internalSoundChannels") ) { internalSoundChannels=ioValue.Cast< ::Array< ::Dynamic> >(); return true; } break; case 22: if (HX_FIELD_EQ(inName,"internalStreamChannels") ) { internalStreamChannels=ioValue.Cast< ::Array< ::Dynamic> >(); return true; } } return false; } #if HXCPP_SCRIPTABLE static hx::StorageInfo *Audio1_obj_sMemberStorageInfo = 0; static hx::StaticInfo Audio1_obj_sStaticStorageInfo[] = { {hx::fsInt,(void *) &Audio1_obj::channelCount,HX_HCSTRING("channelCount","\x0c","\x11","\x16","\x4f")}, {hx::fsObject /*Array< ::Dynamic >*/ ,(void *) &Audio1_obj::soundChannels,HX_HCSTRING("soundChannels","\x3f","\xda","\x0c","\x08")}, {hx::fsObject /*Array< ::Dynamic >*/ ,(void *) &Audio1_obj::streamChannels,HX_HCSTRING("streamChannels","\xf0","\xfa","\xb5","\x1f")}, {hx::fsObject /*Array< ::Dynamic >*/ ,(void *) &Audio1_obj::internalSoundChannels,HX_HCSTRING("internalSoundChannels","\xc2","\x40","\x9f","\xb5")}, {hx::fsObject /*Array< ::Dynamic >*/ ,(void *) &Audio1_obj::internalStreamChannels,HX_HCSTRING("internalStreamChannels","\x0d","\x47","\x3d","\x52")}, {hx::fsObject /*::kha::arrays::Float32ArrayPrivate*/ ,(void *) &Audio1_obj::sampleCache1,HX_HCSTRING("sampleCache1","\x79","\xaf","\x5e","\xf5")}, {hx::fsObject /*::kha::arrays::Float32ArrayPrivate*/ ,(void *) &Audio1_obj::sampleCache2,HX_HCSTRING("sampleCache2","\x7a","\xaf","\x5e","\xf5")}, {hx::fsObject /*::cpp::vm::Mutex*/ ,(void *) &Audio1_obj::mutex,HX_HCSTRING("mutex","\x7f","\x8f","\x5b","\x10")}, { hx::fsUnknown, 0, null()} }; #endif static void Audio1_obj_sMarkStatics(HX_MARK_PARAMS) { HX_MARK_MEMBER_NAME(Audio1_obj::__mClass,"__mClass"); HX_MARK_MEMBER_NAME(Audio1_obj::channelCount,"channelCount"); HX_MARK_MEMBER_NAME(Audio1_obj::soundChannels,"soundChannels"); HX_MARK_MEMBER_NAME(Audio1_obj::streamChannels,"streamChannels"); HX_MARK_MEMBER_NAME(Audio1_obj::internalSoundChannels,"internalSoundChannels"); HX_MARK_MEMBER_NAME(Audio1_obj::internalStreamChannels,"internalStreamChannels"); HX_MARK_MEMBER_NAME(Audio1_obj::sampleCache1,"sampleCache1"); HX_MARK_MEMBER_NAME(Audio1_obj::sampleCache2,"sampleCache2"); HX_MARK_MEMBER_NAME(Audio1_obj::mutex,"mutex"); }; #ifdef HXCPP_VISIT_ALLOCS static void Audio1_obj_sVisitStatics(HX_VISIT_PARAMS) { HX_VISIT_MEMBER_NAME(Audio1_obj::__mClass,"__mClass"); HX_VISIT_MEMBER_NAME(Audio1_obj::channelCount,"channelCount"); HX_VISIT_MEMBER_NAME(Audio1_obj::soundChannels,"soundChannels"); HX_VISIT_MEMBER_NAME(Audio1_obj::streamChannels,"streamChannels"); HX_VISIT_MEMBER_NAME(Audio1_obj::internalSoundChannels,"internalSoundChannels"); HX_VISIT_MEMBER_NAME(Audio1_obj::internalStreamChannels,"internalStreamChannels"); HX_VISIT_MEMBER_NAME(Audio1_obj::sampleCache1,"sampleCache1"); HX_VISIT_MEMBER_NAME(Audio1_obj::sampleCache2,"sampleCache2"); HX_VISIT_MEMBER_NAME(Audio1_obj::mutex,"mutex"); }; #endif hx::Class Audio1_obj::__mClass; static ::String Audio1_obj_sStaticFields[] = { HX_HCSTRING("channelCount","\x0c","\x11","\x16","\x4f"), HX_HCSTRING("soundChannels","\x3f","\xda","\x0c","\x08"), HX_HCSTRING("streamChannels","\xf0","\xfa","\xb5","\x1f"), HX_HCSTRING("internalSoundChannels","\xc2","\x40","\x9f","\xb5"), HX_HCSTRING("internalStreamChannels","\x0d","\x47","\x3d","\x52"), HX_HCSTRING("sampleCache1","\x79","\xaf","\x5e","\xf5"), HX_HCSTRING("sampleCache2","\x7a","\xaf","\x5e","\xf5"), HX_HCSTRING("mutex","\x7f","\x8f","\x5b","\x10"), HX_HCSTRING("_init","\xef","\x56","\xcc","\xf8"), HX_HCSTRING("max","\xa4","\x0a","\x53","\x00"), HX_HCSTRING("min","\x92","\x11","\x53","\x00"), HX_HCSTRING("mix","\x9c","\x11","\x53","\x00"), HX_HCSTRING("play","\xf4","\x2d","\x5a","\x4a"), HX_HCSTRING("_playAgain","\x8d","\xde","\xc3","\x9a"), HX_HCSTRING("stream","\x80","\x14","\x2d","\x11"), ::String(null()) }; void Audio1_obj::__register() { hx::Object *dummy = new Audio1_obj; Audio1_obj::_hx_vtable = *(void **)dummy; hx::Static(__mClass) = new hx::Class_obj(); __mClass->mName = HX_HCSTRING("kha.audio2.Audio1","\x83","\x94","\xaf","\x7e"); __mClass->mSuper = &super::__SGetClass(); __mClass->mConstructEmpty = &__CreateEmpty; __mClass->mConstructArgs = &__Create; __mClass->mGetStaticField = &Audio1_obj::__GetStatic; __mClass->mSetStaticField = &Audio1_obj::__SetStatic; __mClass->mMarkFunc = Audio1_obj_sMarkStatics; __mClass->mStatics = hx::Class_obj::dupFunctions(Audio1_obj_sStaticFields); __mClass->mMembers = hx::Class_obj::dupFunctions(0 /* sMemberFields */); __mClass->mCanCast = hx::TCanCast< Audio1_obj >; #ifdef HXCPP_VISIT_ALLOCS __mClass->mVisitFunc = Audio1_obj_sVisitStatics; #endif #ifdef HXCPP_SCRIPTABLE __mClass->mMemberStorageInfo = Audio1_obj_sMemberStorageInfo; #endif #ifdef HXCPP_SCRIPTABLE __mClass->mStaticStorageInfo = Audio1_obj_sStaticStorageInfo; #endif hx::_hx_RegisterClass(__mClass->mName, __mClass); } void Audio1_obj::__boot() { { HX_STACKFRAME(&_hx_pos_54e6e67d0b7cf5ea_9_boot) HXDLIN( 9) channelCount = (int)16; } } } // end namespace kha } // end namespace audio2
98b60a1e01f2c2e7def86f95d55b19075bcab74d
9fb3b82d5bf304d1420a3d314b4c7941a71cbc54
/vslamTypes.h
fd91daae7295e46bc3c62c0f44d7bd4ff298b7d6
[]
no_license
Halmoni100/vslam_utils
c3d0bd1714975053d66d0a57506c4f13378555a9
539fcf5d1cde1afb78494225bb36c1c24a34b01a
refs/heads/master
2020-06-15T11:24:40.294109
2019-07-08T00:59:05
2019-07-08T00:59:05
195,286,138
0
0
null
null
null
null
UTF-8
C++
false
false
113
h
vslamTypes.h
#pragma once #include <Eigen/Dense> using namespace Eigen; typedef Transform<float,3,Affine> AffineTransform;
d7669a094b82d67e4551ec298d3ace8970a51d83
51f2492a5c207e3664de8f6b2d54bb93e313ca63
/codechef/april21a/boolgame.cc
389858de8048cfca6b1861647ebe14d474107433
[ "WTFPL", "LicenseRef-scancode-unknown-license-reference" ]
permissive
abeaumont/competitive-programming
23c5aabd587d7bb15a61efd3428838cb934233dd
a24c9b89941a59d344b51dc1010de66522b1a0dd
refs/heads/master
2023-09-01T09:50:58.267361
2023-07-31T18:00:10
2023-07-31T18:00:10
117,589,708
618
262
WTFPL
2023-07-12T17:36:20
2018-01-15T20:00:56
C++
UTF-8
C++
false
false
1,415
cc
boolgame.cc
// https://www.codechef.com/APRIL21A/problems/BOOLGAME #include <bits/stdc++.h> using namespace std; using ll = long long; using vi = vector<ll>; using si = set<ll>; using vsi = vector<si>; using vvsi = vector<vsi>; int main() { cin.tie(0), ios::sync_with_stdio(0); ll t, n, m, k; cin >> t; while (t--) { cin >> n >> m >> k; vi g(n), u(m), v(m), d(m); for (int i = 0; i < n; i++) cin >> g[i]; for (int i = 0; i < m; i++) cin >> u[i] >> v[i] >> d[i], u[i]--, v[i]--; vvsi dp(n + 1, vsi(n + 1)); dp[0][0].insert(0); for (int i = 0; i < n; i++) { for (int j = 0; j <= i; j++) for (ll x : dp[i][j]) { x += g[i]; for (int o = 0; o < m; o++) if (u[o] >= j && v[o] == i) x += d[o]; dp[i + 1][j].insert(x); } dp[i + 1][i + 1].insert(0); for (int j = 0; j <= i; j++) for (auto it = dp[i][j].rbegin(); it != dp[i][j].rend(); it++) { if (dp[i + 1][i + 1].size() == k && *it <= *dp[i + 1][i + 1].begin()) break; dp[i + 1][i + 1].insert(*it); if (dp[i + 1][i + 1].size() > k) dp[i + 1][i + 1].erase(dp[i + 1][i + 1].begin()); } } vector<ll> ans; for (int i = 0; i <= n; i++) for (ll x : dp[n][i]) ans.push_back(x); sort(ans.rbegin(), ans.rend()); for (int i = 0; i < k; i++) cout << ans[i] << " \n"[i == k - 1]; } }
b52ef6c04f5ac8f34bc27d16d436fce2c708ee7b
7a5d3f49de8687fd6ab76c79b54fc457c3aa08d9
/include/death/entity_death_node.h
29574e147c09a96b61859d69f9ebf25eb986be73
[]
no_license
AntonyMoes/ACID
c97bc9cfe0fdeb4a2df6ecd1335d38c52f474515
51d76e6eaf60f956a077b4655b4e47dd2c8b9efb
refs/heads/master
2023-03-10T23:41:58.692939
2018-12-25T09:20:14
2018-12-25T09:20:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
318
h
entity_death_node.h
#ifndef ACID_INCLUDE_ENTITY_DEATH_NODE_H_ #define ACID_INCLUDE_ENTITY_DEATH_NODE_H_ #include <node.h> #include <death_component.h> class EntityDeathNode: public Node<EntityDeathNode> { public: EntityDeathNode() { add_component<DeathComponent>(); } }; #endif // ACID_INCLUDE_ENTITY_DEATH_NODE_H_
50cc7efa5ce81a5a60c2d12c152461fa570d6be4
bdd895cf51d292a9a6ca3da1655db1b5c616a44a
/cpp/cpp_meta_01.cpp
e68129f31a705969c3ec6cff7e634c18dd003f95
[]
no_license
jun20061588/codefeeling
e397fec519a1f386757d81a4e6aac4f1c95a01e3
3bef0b42e1217a8e1b2ab41e505ae550e165d381
refs/heads/master
2022-04-12T15:19:26.881768
2020-03-30T07:22:37
2020-03-30T07:23:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,323
cpp
cpp_meta_01.cpp
#include<time.h> #include <iostream> template<typename T, int i=1> class someComputing { public: typedef volatile T* retType; // 类型计算 enum { retValume = i + someComputing<T, i-1>::retValume }; // 数值计算,递归 static void f() { std::cout << "someComputing: i=" << i << '\n'; } }; template<typename T> // 模板特例,递归终止条件 class someComputing<T, 0> { public: enum { retValume = 0 }; }; template<typename T> class codeComputing { public: static void f() { T::f(); } // 根据类型调用函数,代码计算 }; int main(){ clock_t start,finish; double totaltime; someComputing<int>::retType a = 0; std::cout << sizeof(a) << '\n'; // 64-bit 程序指针 // VS2013 默认最大递归深度500,GCC6.3 默认最大递归深度900(-ftemplate-depth=n) codeComputing<someComputing<int, 99>>::f(); int total = 0; start=clock(); for(int i = 0; i < 10000; i++) { // total = someComputing<int, 500>::retValume; // 1+2+...+500 total = 0; for(int j = 1; j <= 500; j++) { total += j; } } finish=clock(); totaltime=(double)(finish-start); std::cout << "total clock:"<< totaltime << " total:" << total << std::endl; return 0; }
84f3e57dd73e95f4bddc81a7fb78d2d47748d1e3
eedebf357f678c1418c50c236b4bad1ef254c5be
/bench/Bigram.cpp
06a01f24b56f8cdf1250b77d532c11e8b4f08fcd
[ "BSD-3-Clause" ]
permissive
facebook/wdt
c915a71e42ea0d945015eff0140731856ab2d15d
3b52ef573129fb799319630bd438717761111f57
refs/heads/main
2023-09-05T07:25:03.544481
2023-07-11T18:42:54
2023-07-11T18:42:54
22,231,878
3,038
508
NOASSERTION
2023-04-16T13:37:33
2014-07-24T21:23:34
C++
UTF-8
C++
false
false
2,565
cpp
Bigram.cpp
/** * Copyright (c) 2014-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. */ /* * Bigram.cpp * * Created on: Jun 24, 2015 * Author: ldemailly */ #include "wdt/bench/Bigram.h" #include <glog/logging.h> /// Utility functions /** * Append to result a human readable/printable value for C code * \\ for \, \" for ", c if c is printable, \0octal otherwise */ void toPrintableString(char c, std::string &result) { if (!std::isprint(c)) { char buf[10]; snprintf(buf, sizeof(buf), "\\0%o", c); result.append(buf); return; } if (c == '\\') { result.append("\\\\"); return; } if (c == '\"') { result.append("\\\""); return; } result.push_back(c); } /** * Same as toPrintableString but returns the string. * Inefficient, for use in LOG() */ std::string Bigram::toPrintableString(char c) { std::string result; ::toPrintableString(c, result); return result; } std::ostream &operator<<(std::ostream &os, const Bigram &b) { os << b.toPrintableString(); return os; } /// Bigram definition void Bigram::toPrintableString(std::string &result) const { result.append("{\""); // result.append("Bigram(\""); ::toPrintableString(b_[0], result); ::toPrintableString(b_[1], result); result.append("\"}"); // result.append("\")"); } void Bigram::toBinary(std::string &result) const { result.push_back(b_[0]); result.push_back(b_[1]); } void Bigram::binarySerialize(std::ostream &os) const { os << b_[0] << b_[1]; } bool Bigram::binaryDeserialize(std::istream &is) { return !is.read(&b_[0], 2).fail(); } std::string Bigram::toPrintableString() const { std::string res; toPrintableString(res); return res; } Bigram::Bigram() : b_{0, 0} { VLOG(3) << "Empty constructor " << this << " " << *this; } Bigram::Bigram(char c1, char c2) : b_{c1, c2} { VLOG(3) << "2 Char Constructor called " << this << " " << *this; } Bigram::Bigram(const char (&in)[3]) : b_{in[0], in[1]} { VLOG(3) << "Array/string constructor called " << this << " " << *this; } /* Bigram::~Bigram() { VLOG(3) << "Destructor for " << this << " " << *this; } */ bool Bigram::operator==(const Bigram &o) const { return (b_[0] == o.b_[0]) && (b_[1] == o.b_[1]); } bool Bigram::operator<(const Bigram &o) const { if (b_[0] < o.b_[0]) { return true; } if (b_[0] > o.b_[0]) { return false; } // first byte is == so use 2nd byte return b_[1] < o.b_[1]; }